/*----------------------- Default ------------------------ */
/*----------------------- Vars ------------------------ */
/*----------------------- Helpers ------------------------ */
.left {
  float: left; }

.right {
  float: right; }

.clear {
  clear: both; }

.nowrap {
  white-space: nowrap; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.hidden {
  overflow: hidden; }

.center {
  text-align: center; }

.readmore__title {
  font-size: 22px;
  color: #000;
  margin-top: 0.5em;
  margin-bottom: 1.5em; }

.readmore__link ul li {
  margin-bottom: 0.7em; }
  .readmore__link ul li:last-child {
    margin-bottom: 0; }
  .readmore__link ul li a {
    font-size: 18px;
    color: #000;
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all; }
    .readmore__link ul li a:hover {
      border-bottom: 1px solid #000;
      -webkit-transition: 0.5s ease all;
      -moz-transition: 0.5s ease all;
      -ms-transition: 0.5s ease all;
      -o-transition: 0.5s ease all;
      transition: 0.5s ease all; }

.js-hidden-opacity {
  opacity: 0; }

.dropdown.open > .dropdown-menu {
  animation-name: slidenavAnimation;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  -webkit-animation-name: slidenavAnimation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: slidenavAnimation;
  -moz-animation-duration: 0.5s;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease;
  -moz-animation-fill-mode: forwards; }

@keyframes slidenavAnimation {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes slidenavAnimation {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/*----------------------- Birthday ------------------------ */
.birthday.out {
  display: none;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all; }

.birthday {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #f3f3f3;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all; }
  .birthday--overlay {
    z-index: 10;
    background-color: #f3f3f3;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px; }
  .birthday--label {
    font-size: 12px;
    font-style: italic;
    position: absolute;
    bottom: 0;
    top: 9px;
    left: 10px;
    color: rgba(0, 0, 0, 0.38);
    z-index: 11;
    pointer-events: none;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all; }
  .birthday--label.changed {
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    margin-top: -3em;
    bottom: 3em;
    font-size: 0.6em;
    color: rgba(0, 0, 0, 0.38); }
  .birthday-date {
    background-color: #f3f3f3;
    border: 1px solid transparent;
    position: absolute;
    width: 43px;
    left: 0;
    top: 0;
    height: 34px;
    line-height: 34px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    font-size: 13px;
    padding-left: 10px; }
    .birthday-date:focus {
      outline: none; }
  .birthday-year {
    padding-right: 10px;
    background-color: #f3f3f3;
    border: 1px solid transparent;
    position: absolute;
    width: 45px;
    right: 0;
    top: 0;
    height: 34px;
    line-height: 34px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    font-size: 13px; }
    @media screen and (max-width: 768px) {
      .birthday-year {
        width: 50px; } }
    .birthday-year:focus {
      outline: none; }
  .birthday--month {
    font-size: 13px; }

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 83%;
  height: 34px;
  left: 48px; }
  .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f3f3f3;
    padding: 8px 15px;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: #000;
    font-size: 13px;
    line-height: 19px; }
    .select-styled:after {
      display: block;
      content: "";
      background-image: url("../../../assets/img/cabinet/arrow-dropdown.svg");
      background-repeat: no-repeat;
      background-position: center center;
      -webkit-background-size: contain;
      background-size: contain;
      width: 14px;
      height: 20px;
      position: absolute;
      top: 8px;
      right: 10px;
      -webkit-transition: 0.5s ease all;
      -moz-transition: 0.5s ease all;
      -ms-transition: 0.5s ease all;
      -o-transition: 0.5s ease all;
      transition: 0.5s ease all; }
  .select-styled.active {
    background-color: #f3f3f3; }
    .select-styled.active:after {
      top: 9px;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
      -webkit-transition: 0.5s ease all;
      -moz-transition: 0.5s ease all;
      -ms-transition: 0.5s ease all;
      -o-transition: 0.5s ease all;
      transition: 0.5s ease all; }
  .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #f3f3f3;
    height: 150px;
    overflow-y: scroll;
    font-size: 13px; }
    .select-options li {
      color: rgba(0, 0, 0, 0.38);
      margin: 0;
      padding: 12px 0;
      text-indent: 15px;
      -moz-transition: all 0.15s ease-in;
      -o-transition: all 0.15s ease-in;
      -webkit-transition: all 0.15s ease-in;
      transition: all 0.15s ease-in; }
      .select-options li:hover {
        margin-left: 5px;
        margin-right: 5px;
        color: #fff;
        background: #18ab9f;
        -webkit-transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -ms-transition: 0.3s ease all;
        -o-transition: 0.3s ease all;
        transition: 0.3s ease all; }
      .select-options li[rel="hide"] {
        display: none; }

.message-error {
  position: absolute;
  top: 36px;
  font-size: 12px;
  background-color: #629fae;
  color: #fff;
  padding: 0.3em 0.7em;
  z-index: 10;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  left: 0;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all; }

.js-label {
  position: absolute;
  z-index: 9;
  font-size: 13px;
  top: 11px;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all; }
  .js-label-date {
    left: 12px; }
  .js-label-year {
    right: 25px; }
  .js-label .out {
    opacity: 0;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all; }

.birthday .select {
  left: 41px;
  width: 60%;
}

.birthday--overlay {
  height: 38px;
}

.birthday .select-styled {
  background-color: #efefef;
  top: 1px;
}

.birthday .select-styled:after {
  background-image: url("../img/arrow.png");
}

.birthday .js-label {
  font-weight: normal;
}

label.birthday--label {
  top: 13px;
  font-style: normal;
  left: 14px;
}
.birthday-year {
  padding-left: 4px;
  padding-right: 6px;
}
.js-label-year {
  right: 20px;
}

@media screen and (max-width: 991px) {
  .birthday .select {
    width: 82%;
  }
}

@media screen and (max-width: 930px) {
  .birthday .select {
    width: 80%;
  }
}

@media screen and (max-width: 840px) {
  .birthday .select {
    width: 76%;
  }
}
@media screen and (max-width: 768px) {
  .birthday {
    margin-bottom: 2em;
  }
  .birthday .select {
    width: 88%;
  }
}
@media screen and (max-width: 725px) {
  .birthday .select {
    width: 87%;
  }
}
@media screen and (max-width: 680px) {
  .birthday .select {
    width: 86%;
  }
}
@media screen and (max-width: 645px) {
  .birthday .select {
    width: 85%;
  }
}
@media screen and (max-width: 600px) {
  .birthday .select {
    width: 84%;
  }
}
@media screen and (max-width: 567px) {
  .birthday .select {
    width: 83%;
  }
}
@media screen and (max-width: 520px) {
  .birthday .select {
    width: 82%;
  }
}
@media screen and (max-width: 500px) {
  .birthday .select {
    width: 80%;
  }
}
@media screen and (max-width: 470px) {
  .birthday .select {
    width: 78%;
  }
}
@media screen and (max-width: 430px) {
  .birthday .select {
    width: 76%;
  }
}
@media screen and (max-width: 400px) {
  .birthday .select {
    width: 74%;
  }
}
@media screen and (max-width: 370px) {
  .birthday .select {
    width: 72%;
  }
}
@media screen and (max-width: 350px) {
  .birthday .select {
    width: 68%;
  }
}