

#preloaderall {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none; }

#preloaderall:after,
#preloaderall:before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#afe6fe), to(#02b5ff));
  background: -webkit-linear-gradient(left, #afe6fe 0%, #02b5ff 100%);
  background: -o-linear-gradient(left, #afe6fe 0%, #02b5ff 100%);
  background: linear-gradient(to right, #afe6fe 0%, #02b5ff 100%);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

#preloaderall:before {
  top: 0; }

#preloaderall:after {
  bottom: 0; }

#preloaderall.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s; }

#preloaderall.isdone:after,
#preloaderall.isdone:before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s; }

.loading {
  position: fixed;
  left: 50%;
  top: calc(50% - 40px);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 10px;
  z-index: 9999999999; }

.loading.isdone {
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s; }

.loading span {
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate; }

.loading span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.loading span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.loading span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.loading span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.loading span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.loading span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.loading span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

@-webkit-keyframes loading {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes loading {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* --------------- End preloaderall --------------- */

.mfp-hide {
  display: none;
}
.popup {
    max-width: calc(100% - 20px);
    width: 570px;
    border-radius: 10px;
    background-color: #fff;
    position: fixed;
    top: 52%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100
}

.popup-exhibition {
    width: 890px
}

.popup-exhibition .popup__text {
    margin-bottom: 25px;
    color: #405066
}

.popup-exhibition .popup__btn {
    height: 50px;
   /* -webkit-box-shadow: 0px 0px 20px rgba(254, 44, 255, .5);
    box-shadow: 0px 0px 20px rgba(254, 44, 255, .5)*/
}

.popup-exhibition .popup__btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.popup .mfp-close {
    font-size: 0;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("../img/icons/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 100%;
    bottom: 100%;
    right: auto;
    top: auto;
    -webkit-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    opacity: 1
}

.popup__inner {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 30px 40px
}

.popup__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px
}

.popup__subtitle {
    font-size: 18px;
    margin-bottom: 15px
}

.popup__authorization {
    background-color: #f7fdff;
    border: 1px solid #ade6fe;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.popup__authorization-icon {
    margin-right: 15px
}

.popup__separator {
    margin-top: 7px;
    font-weight: 700;
    font-size: 18px
}

.popup__inputs {
    margin-top: 20px
}

.popup__inputs-item {
    margin-bottom: 30px;
    padding: 5px
}

.popup__inputs-item:last-child {
    margin-bottom: 0
}

.popup__inputs-item::-webkit-input-placeholder {
    color: #87929f
}

.popup__inputs-item::-moz-placeholder {
    color: #87929f
}

.popup__inputs-item:-ms-input-placeholder {
    color: #87929f
}

.popup__inputs-item::-ms-input-placeholder {
    color: #87929f
}

.popup__inputs-item::placeholder {
    color: #87929f
}

.popup__reset {
    display: inline-block;
    margin-top: 20px
}

.popup__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 25px;
    gap: 30px
}

.popup__btn {
    min-width: 260px;
    height: 70px;
    font-size: 18px;
    padding: 0 20px
}

.popup__text {
    font-size: 18px;
    margin-top: 20px
}

.popup__link {
    text-decoration: underline;
    font-size: 18px;
    color: #0d5767;
    font-weight: 700
}

.popup__link:hover {
    color: #0d5767
}

.popup__privacy {
    margin-top: 10px;
    text-align: center;
    opacity: .5;
    font-size: 14px;
    line-height: 1.2;
    -webkit-transition: .2s;
    transition: .2s
}

.popup__privacy:hover {
    opacity: 1
}

.popup__caption {
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px
}

.popup__caption-highlighted {
    color: #c730dc
}

.popup__caption-days {
    font-size: 44px;
    line-height: 1.1;
    display: inline-block;
    margin: 0 5px
}

.popup__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.popup__data-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f3f3f3;
    color: #000;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 18px;
    position: relative
}

.popup__data-item:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.popup__data-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 10px
}

.popup__data-status {
    display: inline-block;
    position: absolute;
    right: 4px;
    bottom: 0;
    line-height: 1.2;
    font-size: 12px
}

.popup__container {
/*    max-height: 460px;*/
    overflow-y: auto;
    padding-right: 10px
}

.popup__dropdown {
    background-color: #f7fdff;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative
}

.popup__dropdown:last-child {
    margin-bottom: 0
}

.popup__dropdown-heading {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 700
}

.popup__dropdown-body {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.popup__dropdown-item {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3
}

.popup__dropdown-item:last-child {
    margin-bottom: 0
}


@media only screen and (max-width: 1100px) {
    .popup {
        width: 430px
    }

    .popup-exhibition {
        width: 640px
    }

    .popup-exhibition .popup__text {
        font-size: 16px;
        margin-bottom: 20px
    }

    .popup__title {
        font-size: 24px;
        margin-bottom: 10px
    }

    .popup__inputs-item {
        margin-bottom: 25px
    }

    .popup__data-item {
        font-size: 16px
    }

    .popup__dropdown-heading {
        font-size: 18px
    }

    .popup__dropdown-item {
        font-size: 16px
    }
}

@media only screen and (max-width: 767px) {
    .popup-exhibition .popup__text {
        font-size: 14px
    }

    .popup .mfp-close {
        left: auto;
        right: 0;
        -webkit-transform: translate(0, -10px);
        -ms-transform: translate(0, -10px);
        transform: translate(0, -10px)
    }

    .popup__inner {
        padding: 30px 20px
    }

    .popup__authorization {
        font-size: 16px
    }

    .popup__authorization-icon {
        width: 32px;
        margin-right: 10px
    }

    .popup__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px
    }

    .popup__btn {
        width: 100%
    }

    .popup__container {
/*        max-height: 280px*/
    }

    .popup__dropdown-heading {
        font-size: 16px
    }

    .popup__caption {
        font-size: 16px;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto
    }

    .popup__caption-days {
        margin: 0
    }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  text-decoration: none;
  line-height: 1.3;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  padding: 0 20px;
  min-height: 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#D0F1FF), color-stop(48.96%, #99E0FE), to(#B1E7FE));
  background: linear-gradient(90deg, #D0F1FF 0%, #99E0FE 48.96%, #B1E7FE 100%);
  background-size: 100% 100%;
  color: #102540;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.lawlink {
  color: #000;
  font-size: 14px;
}
.lawlink:hover {
  text-decoration: underline !important;
  color: #5525a4;
}
.btn:hover {
  background-size: 300% 100%;
}