:root {
    --popup-main: #707070;
    --popup-blue: #64c2c8;
    --popup-black: #000;
    --popup-white: #fff;
    --popup-font-main: "Arial", sans-serif
}

#popup {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 8999
}

#popup.active {
    display: block
}

.popup__close-bg {
    animation-duration: .3s;
    animation-name: opacityPopupBg;
    background: rgba(0, 0, 0, .65);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .5s ease;
    z-index: -1
}

.popup__block {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-color: #dce1e4 #0e1127;
    scrollbar-color: var(--popup-light-gray) var(--popup-dark-blue);
    scrollbar-width: thin
}

/* .popup__block::-webkit-scrollbar {
    width: 5px
}

.popup__block::-webkit-scrollbar-track {
    background: #dce1e4;
    background: var(--popup-light-gray);
    border-radius: 5px
}

.popup__block::-webkit-scrollbar-thumb {
    border-radius: 5px
}

.popup__block::-webkit-scrollbar-thumb,
.popup__block::-webkit-scrollbar-thumb:hover {
    background: #0e1127;
    background: var(--popup-dark-blue)
} */

.popup__block {
    --popup-default-translate-x-from: -50%;
    --popup-default-translate-x-to: -50%;
    --popup-default-translate-y-from: -50%;
    --popup-default-translate-y-to: -50%;
    --popup-opacity-from: 0;
    --popup-opacity-to: 1;
    animation-duration: .6s;
    background: #fff;
    background: var(--popup-white);
    left: 50%;
    padding: 60px 40px 60px 50px;
    position: absolute;
    top: 50%;
    transform: translateY(var(--popup-default-translate-y-to)) translateX(var(--popup-default-translate-x-to));
    transition: all .3s ease-out;
    width: 756px
}

.popup__block.without-opacity {
    --popup-opacity-from: 1
}

.popup__block.pos-l,
.popup__block.pos-r {
    --popup-default-translate-x-from: 0;
    --popup-default-translate-x-to: 0
}

.popup__block.pos-b,
.popup__block.pos-t {
    --popup-default-translate-y-from: 0;
    --popup-default-translate-y-to: 0
}

.popup__block.pos-t {
    bottom: auto;
    top: 0
}

.popup__block.pos-r {
    left: auto;
    right: 0
}

.popup__block.pos-b {
    bottom: 0;
    top: auto
}

.popup__block.pos-l {
    left: 0;
    right: auto
}

.popup__block.full-height {
    --popup-default-translate-x-from: 0;
    --popup-default-translate-x-to: 0;
    height: 100%;
    left: auto;
    max-height: 100vh;
    right: 0
}

.popup__block.full-height .popup__container {
    max-height: 90vh
}

.popup__block.slide-l {
    --popup-default-translate-x-from: 100%
}

.popup__block.slide-r {
    --popup-default-translate-x-from: -100%
}

.popup__block.slide-t {
    --popup-default-translate-y-from: -100%
}

.popup__block.slide-b {
    --popup-default-translate-y-from: 100%
}

.popup__block.slide-b,
.popup__block.slide-l,
.popup__block.slide-r,
.popup__block.slide-t {
    animation-name: popupSlide
}

@media only screen and (max-width:1025px) {
    .popup__block {
        min-height: auto;
        padding: 45px 35px 45px 45px;
        width: 95%
    }

    .popup__block:not(.full-height) {
        max-height: 90%
    }
}

@media only screen and (max-width:550px) {
    .popup__block {
        padding: 45px 10px 25px 20px
    }
}

.popup__title {
    text-transform: uppercase;
    color: #0e1127;
    color: var(--popup-dark-blue);
    font-family: Arial, sans-serif;
    font-family: var(--popup-font-main);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: min(max(10px, 3.47vw), 16px)
}

@media only screen and (max-width:1025px) {
    .popup__title {
        font-size: 20px
    }
}

@media only screen and (max-width:550px) {
    .popup__title {
        font-size: 18px
    }
}

.popup__btn-close {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    right: min(max(15px, 1.74vw), 25px);
    top: min(max(15px, 1.74vw), 25px);
    transition: all .3s ease-out
}

.popup__btn-close .cross-clip {
    background: #0e1127;
    background: var(--popup-dark-blue);
    -webkit-clip-path: polygon(20% 0, 0 20%, 30% 50%, 0 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0, 50% 30%);
    clip-path: polygon(20% 0, 0 20%, 30% 50%, 0 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0, 50% 30%);
    height: 24px;
    width: 24px
}

.popup__btn-close:hover .cross-clip {
    background: #000;
    background: var(--popup-black);
    transform: scale(1.05)
}

.upload-input {
    border-bottom: 1px solid var(--black-pearl) !important;
    color: var(--black);
    cursor: pointer;
    display: block;
    margin-bottom: 17px;
    padding-bottom: 17px;
    width: 100%
}

.upload-input input {
    display: none
}

.checkBox {
    color: var(--black);
    display: flex;
    transition: color .3s
}

.checkBox input {
    display: none
}

.checkBox input:checked+span:before {
    background: var(--orange)
}

.checkBox:hover {
    color: var(--orange)
}

.checkBox span {
    cursor: pointer;
    position: relative
}

.checkBox span:before {
    border: 1px solid var(--black);
    border-radius: 2px;
    content: "";
    display: inline-block;
    flex-shrink: 0;
    height: 12px;
    margin-right: 8px;
    transition: background .3s;
    width: 12px
}

.checkBox span a {
    color: var(--black);
    text-decoration: underline;
    transition: color .3s
}

.checkBox span a:hover {
    color: var(--orange)
}

.old-popup-styles .title-popup {
    color: #64c2c8;
    color: var(--popup-blue);
    font-size: 50px;
    line-height: 130%;
    margin-bottom: 20px;
    text-transform: uppercase
}

.old-popup-styles .pf-flex {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px
}

@media only screen and (max-width:720px) {
    .old-popup-styles .pf-flex {
        display: block
    }
}

.old-popup-styles .pf-flex .pf-column {
    margin-left: 38px;
    width: 332px
}

@media only screen and (max-width:720px) {
    .old-popup-styles .pf-flex .pf-column {
        margin-left: 0
    }
}

.old-popup-styles .pf-flex .pf-column:first-child {
    margin-left: 0
}

.old-popup-styles .pf-row {
    margin-bottom: 18px
}

.old-popup-styles .pf-row .pf-label {
    color: #0e1127;
    color: var(--popup-dark-blue);
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 10px
}

.old-popup-styles .pf-row .pf-text-field {
    background: #fff;
    background: var(--popup-white);
    border: 1px solid #8b8b8b;
    box-sizing: border-box;
    color: #0e1127;
    color: var(--popup-dark-blue);
    display: block;
    font-size: 20px;
    height: 48px;
    line-height: 130%;
    padding: 0 17px;
    width: 100%
}

.old-popup-styles .pf-row .pf-text-field::-moz-placeholder {
    color: #d3d3d3;
    opacity: 1
}

.old-popup-styles .pf-row .pf-text-field::-webkit-input-placeholder {
    color: #d3d3d3;
    opacity: 1
}

.old-popup-styles .pf-row .pf-text-field:focus::-moz-placeholder {
    opacity: 0
}

.old-popup-styles .pf-row .pf-text-field:focus::-webkit-input-placeholder {
    opacity: 0
}

.old-popup-styles .checkBox {
    display: block;
    margin: 18px 0 42px;
    position: relative
}

.old-popup-styles .checkBox.col-span-full {
    grid-column: 1/-1
}

.old-popup-styles .checkBox input {
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0
}

.old-popup-styles .checkBox input:checked+.check-title:before {
    background: #0e1127;
    background: var(--popup-dark-blue)
}

.old-popup-styles .checkBox .check-title {
    color: #0e1127;
    color: var(--popup-dark-blue);
    cursor: pointer;
    font-size: 16px;
    line-height: 130%;
    padding-left: 40px;
    position: relative
}

@media only screen and (max-width:1025px) {
    .old-popup-styles .checkBox .check-title {
        font-size: 14px
    }
}

.old-popup-styles .checkBox .check-title:before {
    background: #fff;
    background: var(--popup-white);
    border: 1px solid #0e1127;
    border: 1px solid var(--popup-dark-blue);
    box-sizing: border-box;
    content: "";
    height: 25px;
    left: 0;
    position: absolute;
    top: 1px;
    transition: all .3s ease-out;
    width: 25px
}

.old-popup-styles .checkBox .check-title a {
    color: inherit;
    font: inherit
}

.old-popup-styles .popup_btn,
.old-popup-styles a.popup_btn,
.old-popup-styles button.popup_btn {
    background: none;
    border: 1px solid #64c2c8;
    border: 1px solid var(--popup-blue);
    color: #64c2c8;
    color: var(--popup-blue);
    cursor: pointer;
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    text-transform: uppercase
}

.old-popup-styles .popup_btn:hover,
.old-popup-styles a.popup_btn:hover,
.old-popup-styles button.popup_btn:hover {
    background: #64c2c8;
    background: var(--popup-blue);
    color: #fff;
    color: var(--popup-white)
}

.old-popup-styles .file_img_block {
    cursor: pointer;
    margin-bottom: 40px;
    max-width: 502px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.old-popup-styles .file_img_block input {
    cursor: pointer;
    height: 100%;
    left: -150px;
    opacity: 0;
    position: absolute;
    top: 0;
    width: calc(100% + 150px)
}

.old-popup-styles .file_img_block .file_img_btn {
    align-items: center;
    background: #f0eef0;
    border-radius: 4px;
    color: #272727;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    height: 40px;
    justify-content: flex-start;
    padding: 0 15px
}

.old-popup-styles .file_img_block .file_img_btn span {
    cursor: pointer;
    margin-right: 12px
}

.old-popup-styles .img_grid_block {
    grid-gap: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 40px
}

.old-popup-styles .img_grid_block>div {
    position: relative
}

.old-popup-styles .img_grid_block>div:hover .igb-pic:before,
.old-popup-styles .img_grid_block>div:hover .img_del {
    opacity: 1
}

.old-popup-styles .img_grid_block>div .igb-pic {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    cursor: pointer;
    padding-top: 70%;
    position: relative
}

.old-popup-styles .img_grid_block>div .igb-pic:before {
    border: 2px solid #fe6b00;
    border-radius: 4px;
    bottom: 0;
    box-sizing: border-box;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s linear
}

.old-popup-styles .img_grid_block>div .igb-pic img {
    border-radius: 2px;
    cursor: pointer;
    width: 100%
}

.old-popup-styles .img_grid_block>div .img_del {
    background-color: #fff;
    border-radius: 50%;
    color: #272727;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    position: absolute;
    right: -5px;
    top: -5px;
    transition: all .3s linear;
    z-index: 2
}

.old-popup-styles .pc-inner {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%
}

.old-popup-styles .pc-field {
    display: flex;
    flex-direction: column
}

.old-popup-styles .pc-field .pc-label {
    margin-bottom: 10px
}

.old-popup-styles .pc-field input {
    border: 1px solid #dce1e4;
    border: 1px solid var(--popup-light-gray);
    border-radius: 5px;
    caret-color: #0e1127;
    caret-color: var(--popup-dark-blue);
    color: #0e1127;
    color: var(--popup-dark-blue);
    font-size: 15px;
    padding: 16px;
    width: 100%
}

.old-popup-styles .pc-field input:-webkit-autofill,
.old-popup-styles .pc-field input:-webkit-autofill:active,
.old-popup-styles .pc-field input:-webkit-autofill:focus,
.old-popup-styles .pc-field input:-webkit-autofill:hover {
    -webkit-text-fill-color: #0e1127;
    -webkit-text-fill-color: var(--popup-dark-blue);
    -webkit-box-shadow: inset 0 0 0 30px #fff !important;
    -webkit-box-shadow: 0 0 0 30px var(--popup-white) inset !important
}

.old-popup-styles .pc-cv-field {
    display: flex;
    flex-direction: column;
    grid-column: 1/span 2
}

.old-popup-styles .pc-cv-field input[type=file] {
    display: none
}

.old-popup-styles .pc-cv-field .cv_file_name {
    color: #64c2c8;
    color: var(--popup-blue)
}

.old-popup-styles .pc-label {
    color: #0e1127;
    color: var(--popup-dark-blue);
    display: inline-block;
    font: 16px/130% Arial, sans-serif;
    font: 16px/130% var(--popup-font-main), sans-serif
}

.old-popup-styles .pc-label.pc-cv-name {
    margin-bottom: 10px
}

.old-popup-styles .pc-btn {
    background-color: #0e1127;
    background-color: var(--popup-dark-blue);
    border: none;
    border-radius: 5px;
    color: #fff;
    color: var(--popup-white);
    cursor: pointer;
    font: 16px/130% Arial, sans-serif;
    font: 16px/130% var(--popup-font-main), sans-serif;
    outline: none;
    padding: 16px;
    position: relative;
    transition: all .3s ease-in-out
}

.old-popup-styles .pc-btn:after {
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: skew(45deg);
    width: 100%
}

.old-popup-styles .pc-btn:hover:after {
    animation: gradientPopupBtn .3s linear forwards;
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 40%, hsla(0, 0%, 100%, .7))
}

.old-popup-styles .pc-captcha {
    grid-column: 1/span 2
}

.old-popup-styles .custom-file-upload {
    border: 1px dashed #dce1e4;
    border: 1px dashed var(--popup-light-gray);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 19px;
    position: relative;
    transition: all .3s ease-in-out
}

.old-popup-styles .custom-file-upload span {
    transition: all .3s ease-in-out
}

.old-popup-styles .custom-file-upload:hover {
    background-color: #0e1127;
    background-color: var(--popup-dark-blue);
    border: 1px solid #0e1127;
    border: 1px solid var(--popup-dark-blue)
}

.old-popup-styles .custom-file-upload:hover span {
    color: #fff;
    color: var(--popup-white)
}

@media only screen and (max-width:1024px) {
    .old-popup-styles .pc-inner {
        grid-gap: 20px
    }

    .old-popup-styles .pc-btn,
    .old-popup-styles .pc-field input {
        padding: 12px
    }

    .old-popup-styles .custom-file-upload {
        padding: 15px
    }
}

@media only screen and (max-width:720px) {
    .old-popup-styles .pc-captcha {
        transform: scale(.8);
        transform-origin: 0
    }

    .old-popup-styles .pc-captcha .g-recaptcha,
    .old-popup-styles .pc-captcha>div {
        height: 110px;
        width: 100%
    }

    .old-popup-styles .pc-captcha .g-recaptcha>div {
        height: 100% !important;
        width: 100% !important
    }

    .old-popup-styles .pc-captcha iframe {
        height: 100%;
        width: 304px
    }
}

@media only screen and (max-width:550px) {
    .old-popup-styles .pc-inner {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }

    .old-popup-styles .pc-field input {
        padding: 11px
    }

    .old-popup-styles .pc-field .pc-label {
        margin-bottom: 7px
    }

    .old-popup-styles .pc-label {
        font-size: 15px
    }

    .old-popup-styles .pc-cv-field {
        grid-column: 1;
        margin-top: 10px
    }

    .old-popup-styles .pc-btn {
        margin-top: 20px;
        padding: 15px
    }

    .old-popup-styles .pc-captcha {
        grid-column: 1;
        transform-origin: center
    }

    .old-popup-styles .pc-captcha .g-recaptcha>div>div {
        display: flex;
        justify-content: center
    }

    .old-popup-styles .custom-file-upload {
        padding: 19px
    }
}

@media only screen and (max-width:420px) {
    .old-popup-styles .img_grid_block {
        grid-gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr
    }
}

@media only screen and (max-width:360px) {
    .old-popup-styles .pc-captcha {
        overflow: hidden;
        transform: scale(.7)
    }

    .old-popup-styles .pc-captcha .g-recaptcha,
    .old-popup-styles .pc-captcha>div {
        height: 110px
    }

    .old-popup-styles .pc-captcha iframe {
        width: 300px
    }
}

@media only screen and (max-width:1024px) {
    .popup-center {
        height: 90%;
        max-height: none;
        min-height: auto;
        padding: 45px;
        width: 95%
    }

    .popup-center .title-popup {
        margin-bottom: 30px
    }

    .popup-center .checkBox {
        margin: 0
    }

    .pc-inner {
        grid-gap: 20px
    }

    .pc-btn,
    .pc-field input {
        padding: 12px
    }

    .custom-file-upload {
        padding: 15px
    }
}

@media only screen and (max-width:720px) {
    .pc-captcha {
        transform: scale(.8);
        transform-origin: 0
    }

    .pc-captcha .g-recaptcha,
    .pc-captcha>div {
        height: 110px;
        width: 100%
    }

    .pc-captcha .g-recaptcha>div {
        height: 100% !important;
        width: 100% !important
    }

    .pc-captcha iframe {
        height: 100%;
        width: 304px
    }
}

@media only screen and (max-width:550px) {
    .popup-center {
        height: 80%;
        padding: 20px 15px;
        width: 95%
    }

    .popup-center .title-popup {
        font-size: 18px;
        margin-bottom: 40px
    }

    .popup-center .checkBox {
        grid-column: 1;
        margin: 0
    }

    .popup-center .checkBox .check-title {
        font-size: 15px
    }

    .popup-center .close-popup {
        font-size: 20px;
        right: 15px;
        top: 20px
    }

    .pc-inner {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }

    .pc-field input {
        padding: 11px
    }

    .pc-field .pc-label {
        margin-bottom: 7px
    }

    .pc-label {
        font-size: 15px
    }

    .pc-cv-field {
        grid-column: 1;
        margin-top: 10px
    }

    .pc-btn {
        margin-top: 20px;
        padding: 15px
    }

    .pc-captcha {
        grid-column: 1;
        transform-origin: center
    }

    .pc-captcha .g-recaptcha>div>div {
        display: flex;
        justify-content: center
    }

    .custom-file-upload {
        padding: 19px
    }
}

@media only screen and (max-width:420px) {
    .popup.popup_height_full {
        padding: 40px 20px
    }

    .img_grid_block {
        grid-gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr
    }
}

@media only screen and (max-width:360px) {
    .pc-captcha {
        overflow: hidden;
        transform: scale(.7)
    }

    .pc-captcha .g-recaptcha,
    .pc-captcha>div {
        height: 110px
    }

    .pc-captcha iframe {
        width: 300px
    }
}

@keyframes popupSlide {
    0% {
        opacity: var(--popup-opacity-from);
        transform: translateY(var(--popup-default-translate-y-from)) translateX(var(--popup-default-translate-x-from))
    }

    to {
        opacity: var(--popup-opacity-to);
        transform: translateY(var(--popup-default-translate-y-to)) translateX(var(--popup-default-translate-x-to))
    }
}

@keyframes opacityPopupBg {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes gradientPopupBtn {
    0% {
        transform: translateX(-100%) skew(45deg)
    }

    to {
        transform: translateX(100%) skew(45deg)
    }
}

#popup-ad {
    bottom: 20px;
    height: 400px;
    position: fixed;
    right: 20px;
    transform: translateX(calc(100% + 20px));
    transition: .3s ease-in-out;
    width: 400px;
    z-index: 99
}

#popup-ad.active {
    transform: translateX(0)
}

.popup-advert {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%
}

.popup-ad__close-btn {
    align-items: center;
    background: #fff;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: .3s ease-in-out;
    width: 48px;
    z-index: 4
}

.popup-ad__close-btn:hover {
    border-radius: 10px
}

.popup-ad__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
    z-index: 2
}

.popup-ad__title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px
}

.popup-ad__sub-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700
}

.popup-ad__text {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    @include max-line-leng(4)
}

.popup-ad__text.bold {
    font-weight: 700
}

.popup-ad__text.location {
    margin-bottom: 20px
}

.popup-ad__btn,
.popup-ad__btn-wrap {
    align-items: center;
    display: flex;
    justify-content: center
}

.popup-ad__btn {
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    height: 42px;
    margin-top: 20px;
    text-decoration: none;
    transition: .3s ease-in-out;
    width: calc(50% - 8px)
}

.popup-ad__btn:not(:last-child) {
    margin-right: 16px
}

.popup-ad__btn:hover {
    background: #fff;
    border-radius: 8px;
    color: #707070
}

.popup-ad__blog img,
.popup-ad__blog:after {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.popup-ad__blog:after {
    background: rgba(0, 0, 0, .4);
    content: "";
    z-index: 1
}

.popup-ad__job {
    background: #f2b825
}

.popup-ad__job .icons-wrap {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
    -webkit-mask-image: -webkit-gradient(linear, 90% 100%, 100% bottom, from(#000), to(transparent));
    overflow: hidden
}

.popup-ad__job .icons-wrap img {
    height: 52px;
    margin-right: 10px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    width: 52px
}

.popup-ad__job__btn-wrap {
    margin-top: auto
}

:root {
    --secondary: #088ded;
    --popup-dark-blue: #0e1127;
    --popup-dark-gray: #343434;
    --popup-light-gray: #dce1e4;
    --white: #fff
}

.cookies-popup {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.cookies-popup.active {
    display: flex;
    transition: all .3s ease
}

.cookies-popup.active .cookies-popup__block {
    animation-duration: .6s;
    animation-name: transformPopupCookies
}

.cookies-popup__close {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 13px;
    position: absolute;
    right: 14px;
    top: 15px;
    transition: .3s ease;
    width: 13px
}

.cookies-popup__close:after,
.cookies-popup__close:before {
    background-color: #0e1127;
    background-color: var(--popup-dark-blue);
    border-radius: 2px;
    content: "";
    height: 2px;
    position: absolute;
    transition: all .3s ease-in-out;
    width: 100%
}

.cookies-popup__close:before {
    transform: rotate(-45deg)
}

.cookies-popup__close:after {
    transform: rotate(45deg)
}

.cookies-popup__close:hover {
    transform: scale(1.2) rotate(90deg);
    transition: all .3s ease
}

.cookies-popup__bg {
    background-color: transparent;
    height: 100%;
    position: absolute;
    width: 100%
}

.cookies-popup__block {
    align-items: center;
    background-color: #fff;
    background-color: var(--white);
    border-radius: 4px;
    bottom: 40px;
    box-shadow: 0 2px 10px #343434;
    box-shadow: 0 2px 10px var(--popup-dark-gray);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 20px;
    position: absolute;
    right: 40px;
    transition: all .3s ease;
    width: 270px
}

.cookies-popup__block h4 {
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px
}

.cookies-popup__block p {
    color: inherit;
    font-size: 14px;
    padding-bottom: 20px;
    text-align: center
}

.cookies-popup__block a {
    color: #088ded;
    color: var(--secondary);
    font-size: inherit;
    font-weight: inherit;
    position: relative
}

.cookies-popup__block a:before {
    background: #088ded;
    background: var(--secondary);
    bottom: 0;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    transition: .3s ease;
    width: 0
}

.cookies-popup__block a:hover:before {
    left: 0;
    right: auto;
    width: 100%
}

.cookies-popup__block:before {
    background: url(../images/panel/cookies-logo.svg) no-repeat 50%;
    content: "";
    display: block;
    height: 96px;
    margin-bottom: 10px;
    width: 96px
}

@media only screen and (max-width:550px) {
    .cookies-popup__block {
        bottom: 25px;
        left: 25px;
        right: 25px;
        width: auto
    }
}

.cookies-popup__btn {
    background-color: #088ded;
    background-color: var(--secondary);
    border-radius: 6px;
    color: #fff;
    color: var(--white);
    cursor: pointer;
    font-size: 15px;
    padding: 11px 40px;
    transition: all .3s ease-in-out
}

.cookies-popup__btn:hover {
    transform: scale(1.1)
}

@media only screen and (max-width:550px) {
    .cookies-popup {
        padding: 20px
    }
}

@keyframes transformPopupCookies {
    0% {
        opacity: 0;
        transform: translateX(150%) translateY(50%) scale(.5) skewX(30deg)
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) skewX(0deg)
    }
}

#global-loader {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(31, 41, 55, .6);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition-duration: .15s;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    z-index: 9999
}

#global-loader,
#global-loader [role=status] {
    align-items: center;
    bottom: 0;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    width: 100%
}

#global-loader [role=status] svg {
    fill: #fff;
    animation: spin 1s linear infinite;
    color: hsla(0, 0%, 100%, .4);
    display: inline;
    height: 3rem;
    width: 3rem
}

#global-loader span {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.disabled-btn-loader {
    cursor: not-allowed;
    opacity: .8;
    pointer-events: none;
    position: relative
}

.disabled-btn-loader [role=status] {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.disabled-btn-loader [role=status] svg {
    fill: #fff;
    animation: spin 1s linear infinite;
    color: hsla(0, 0%, 100%, .4);
    display: inline;
    height: 1.5rem;
    width: 1.5rem
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.disabled-btn-loader .disabled-btn-content {
    display: flex;
    opacity: 0
}

.disabled-btn-loader .disabled-btn-sr-only {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

/*# sourceMappingURL=additional_styles.css.map */

    