.header-after {
  height: var(--header-height);
}
.header-public-after{
  height: var(--header-height);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: var(--header-height);
  border-bottom: 1px solid #dbdbdb;
  width: 100%;
  background: var(--coralinio_primary_light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;

}

.header-content {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.middle-part {}

.middle-part .input-wrapper {
  height: 28px;
  min-width: 125px;
  width: 215px;
  box-sizing: border-box;
  display: flex;
}

.middle-part input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  -webkit-appearance: none;
  background: #fafafa;
  border: solid 1px #dbdbdb;
  border: solid 1px rgba(var(--b6a, 219, 219, 219), 1);
  background: rgba(var(--b3f, 250, 250, 250), 1);
  border-radius: 3px;
  color: #262626;
  color: rgba(var(--i1d, 38, 38, 38), 1);
  outline: 0;
  padding: 0;
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
}

.header .main-menu {
  display: flex;
}

.header .main-menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.header .main-menu ul li {
  margin-left: 10px;
}

.header .main-menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

@media screen and (min-width: 780px) {
  .header-content {
    max-width: 1200px;
  }
}

@media screen and (min-width: 1024px) {
  .header-after {
    height: var(--header-height);
  }
  .header-public-after{
    height: var(--header-height);
  }
}

@media screen and (max-width: 780px) {

  .header .main-menu ul {
    flex-direction: column;
  }

  .header .main-menu ul li {
    margin-left: 0;
  }
}


.header .left-menu {
  display: flex;
}

.header .right-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .right-menu a {
  color: #c96ca3;
  font-size: 22px;
  line-height: 25px;
  text-decoration: none;
}

.header .right-menu p {
  white-space: nowrap;
  margin-right: 15px;
}

.header .right-menu .button-primary {
  background: #c96ca3;
  border-radius: 6px;
  font-weight: bold;
  border: 1px solid #c96ca3;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: #fff;
  padding: 3px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.header .logo {
  width: auto;
  height: 100%;
  display: flex;
}

.header .logo img {
  height: 35px;
}

@media all and (max-width: 960px) {
  .header .logo {
    margin-left: 16px;
  }

  .header .right-menu {
    margin-right: 16px;
    margin-left: 16px;
  }
}

@media all and (max-width: 550px) {
  .header {
    height: 75px;
  }

  .header .logo img {
    width: 75px;
  }

  .header .right-menu .button-primary {
    font-size: 16px;
  }

  .header .logo {
    width: auto;
  }

  .header-content {
    justify-content: space-between;
  }
}

.header .profie-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.header .profie-dropdown ul {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  list-style: none;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-end;

  box-sizing: border-box;
}

.header .profie-dropdown ul li {
  line-height: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}

.header .profie-dropdown ul li:hover {
  background-color: #fafafa;
}

.header .profie-dropdown ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  text-align: right;
  font-size: 16px;
  line-height: 35px;
  width: 100%;
  height: 100%;
}

.header .profie-dropdown hr {
  background-color: #dbdbdb;
  background-color: rgba(var(--b38, 219, 219, 219), 1);
  border: 0;
  height: 1px;
  margin: 0;
  width: 100%;
}

.header .profie-dropdown .logout-form {
  justify-content: center;
}

.header .profie-dropdown .logout-form form {
  margin: 0;
  padding: 0;
}

.header .left-side {
  display: flex;
  align-items: center;
}

.header .profie-dropdown button {
  background: none;
  border: none;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  line-height: 40px;
  padding: 0;
  cursor: pointer;
}

.dd {
  z-index: 1;
  position: relative;
  display: inline-block;
}

.dd-a {
  padding: 10px;
  position: relative;
  transition-duration: 0.2s;
  height: 20px;
}

.dd input:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  display: block;
  background: #c63d0f;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition-duration: 0.2s;
  -webkit-transform: scaleX(0);
  -webkit-transform-origin: bottom left;
  -webkit-transition-duration: 0.2s;
}

.dd input {
  top: 0;
  opacity: 0;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}

.dd input:hover {
  cursor: pointer;
}

.dd input:hover~.dd-a {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
}

.dd input:checked:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}

.dd input:checked~.dd-c {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
}

.dd-a span {
  color: #000;
  font-size: 16px;
  line-height: 22px;
}

.dd-c {
  display: block;
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  height: auto;
  transform: scaleY(0);
  transform-origin: top right;
  transition-duration: 0.2s;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: top right;
  -webkit-transition-duration: 0.2s;
  box-shadow: 0 0 5px 1px rgba(var(--jb7, 0, 0, 0), 0.0975);
  border-radius: 6px;
}

.dd-c ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.dd-c li {
  margin-bottom: 5px;
  word-break: keep-all;
  white-space: nowrap;
  display: block;
  position: relative;
}




/* .language-switcher */
.header .language-switcher {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.header .language-switcher .language-switcher-content {

  flex-direction: column;
}

.header .language-switcher .language-switcher-content[aria-expanded="false"] {
  display: none;
}

.header .language-switcher .language-switcher-content[aria-expanded="true"] {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 100;
  display: block;
  margin-top: 0;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid var(--btns_bg);
  box-shadow: 0 .5em 1em rgba(0, 0, 0, 0.175);
  max-width: 10em;
}

.header .language-switcher .language-switcher-content .li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header .language-switcher .language-switcher-content .li a {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 14px;
  color: #000;
  line-height: 25px;
  flex-direction: row;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.header .language-switcher .language-switcher-content .li a svg {
  margin-right: 5px;
  width: calc(35px);
}

.header .language-switcher .language-switcher-content.li a span {
  width: calc(100% - 40px);
}

.header .language-switcher .btn-select-lang {
  border: none;
  background: none;
  padding: 0;
  width: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.header .language-switcher .btn-select-lang svg.flag {
  width: 30px;
  height: 20px;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.header .language-switcher .btn-select-lang svg.arrow {
  width: 25px;
  height: 7px;
  margin-left: 0;
  margin-right: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.header .language-switcher .btn-select-lang svg.arrow path,
.header .language-switcher .btn-select-lang svg.arrow g {
  fill: #000;
  stroke: #000;
}

.header .language-switcher .sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}




/* currency-switcher */


.header .currency-switcher {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.header .currency-switcher .currency-switcher-content {
  display: flex;
  flex-direction: column;
}

.header .currency-switcher .currency-switcher-content[aria-expanded="false"] {
  display: none;
}

.header .currency-switcher .currency-switcher-content[aria-expanded="true"] {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 100;
  display: block;
  margin-top: 0;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid var(--btns_bg);
  box-shadow: 0 .5em 1em rgba(0, 0, 0, 0.175);
  max-width: 10em;
  overflow: auto;
  max-height: 185px;
}

.header .currency-switcher .currency-switcher-content .li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header .currency-switcher .currency-switcher-content .li a {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 14px;
  color: #000;
  line-height: 25px;
  flex-direction: row;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.header .currency-switcher .currency-switcher-content .li a svg {
  margin-right: 5px;
  width: calc(35px);
}

.header .currency-switcher .currency-switcher-content .li a span {
  width: 100%;
}


.header .currency-switcher .btn-select {
  border: none;
  background: none;
  padding: 0;
  width: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  height: 50px;
}

.header .currency-switcher .btn-select svg.flag {
  width: 30px;
  height: 20px;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.header .currency-switcher .btn-select svg.arrow {
  width: 25px;
  height: 7px;
  margin-left: 0;
  margin-right: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.header .currency-switcher .btn-select svg.arrow path,
.header .currency-switcher .btn-select svg.arrow g {
  fill: #000;
  stroke: #000;
}

.header .currency-switcher .sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}



@media all and (max-width: 860px) {
  div.header {
    overflow: visible;
    min-height: 75px;
  }

  .header .language-switcher {
    position: absolute;
    top: 75px;
    right: 70px;
    background: white;
  }

  .header .language-switcher .language-switcher-content {
    top: 105px;
  }

  .header .currency-switcher {
    position: absolute;
    top: 75px;
    right: 10px;
    background: white;
  }

  .header .currency-switcher .language-switcher-content {
    top: 105px;
  }
}