:root{
    --modal-width: 400px;
}
.pointer-none *{
    pointer-events: none;
    touch-action: none !important;
}
.notyf__toast{
    border-radius: 10px;
}
.notyf__message {
    font-size: 16px;
}

.styled-scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px
}

.styled-scrollbar::-webkit-scrollbar-track {
    background-color: transparent
}

.styled-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ccc;
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;
    background-clip: content-box
}

.styled-scrollbar::-webkit-scrollbar-thumb:hover {
    border-width: 0;
    background-color: #c2c2c2
}

.styled-scrollbar::-webkit-scrollbar-thumb:active {
    border-width: 0;
    background-color: #858585
}
.modal .fancybox__backdrop {
    --fancybox-bg: rgba(0, 0, 0, .7490196078)
}

.modal .fancybox__slide {
    overflow: visible
}

.modal .card:before {
    left: 0;
    right: 0
}

.modal__title {
    margin-bottom: 8px;
    flex-shrink: 0
}

.modal__content {
    --fancybox-content-color: rgba(25, 28, 48, .9019607843);
    max-height: 100%;
    max-width: 100%;
    width: var(--modal-width);
    padding: 24px
}

.modal__content_visible {
    display: flex!important;
    flex-direction: column
}

.modal__body {
    min-height: 0;
    display: flex;
    flex-direction: column
}

.modal__scroll {
    overflow-y: auto
}

.modal__about {
    font: var(--font-text-s)
}

.modal__about:not(:last-child) {
    margin-bottom: 16px
}

.modal__form {
    display: flex;
    flex-direction: column;
    row-gap: 12px
}
.modal__legal {
    font: var(--font-text-xs);
    letter-spacing: .4px;
    color: #1b1f3b80
}

.modal__legal a {
    color: #526ed3
}

.modal__legal a:hover {
    text-decoration: underline;
    color: #6c86e2
}

.modal__btn-complete {
    width: 100%
}

.modal__products {
    margin-bottom: 24px
}

.modal__footer {
    margin-top: 12px;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

@media (max-width: 479.98px) {
    .modal-show {
        animation:.5s ease both modalMobileShow
    }

    .modal-hide {
        animation: .5s ease both modalMobileHide
    }

    .modal .fancybox__content {
        align-self: stretch
    }

    .modal .fancybox__slide {
        padding: 24px 0 0
    }

    .modal .fancybox__slide:after {
        display: none
    }

    .modal__content {
        border-radius: 24px 24px 0 0;
        width: 100%
    }

    .modal__footer>* {
        flex-grow: 1
    }

    .modal__close-mobile.btn {
        position: absolute;
        top: 8px;
        right: 8px
    }

    .modal__close-desktop.btn {
        display: none
    }
}

@media (min-width: 480px) {
    .modal-show {
        animation:var(--f-transition-duration, .2s) ease .1s both f-zoomInUp
    }

    .modal-hide {
        animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown
    }

    .modal .fancybox__slide {
        padding-left: 56px;
        padding-right: 56px
    }

    .modal__content {
        border-radius: 24px;
        width: var(--modal-width);
    }

    .modal__legal {
        margin-top: 16px
    }

    .modal__footer {
        justify-content: flex-end
    }

    .modal__close-desktop.btn {
        position: fixed;
        top: 12px;
        right: 12px
    }

    .modal__close-mobile.btn {
        display: none
    }
}

@keyframes modalMobileShow {
    0% {
        transform: translate3d(0,100%,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes modalMobileHide {
    to {
        transform: translate3d(0,100%,0)
    }
}

.btn-loading-panel{
    position: relative;
}
.btn-loading-panel:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255, 0.7);
    z-index: 99;
}

.btn-loading:after {
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    z-index: 100;
    border-radius: 50%;
    border-top-color: transparent;
    animation: rotating 1s linear infinite
}

.btn-loading:not(.btn-loading-panel) * {
    visibility: hidden;
}



@keyframes rotating {
    to {
        transform: rotate(360deg)
    }
}
@media (hover: hover) {
    .btn:not(:active,:disabled,.btn_disabled):hover {
        background: #ccc
    }
}

.cookieAcceptPanel{
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    visibility: hidden;
    z-index: -50;
    transition: all ease 0.2s;
    opacity: 0;
}
.cookieAcceptPanelInner{
    padding: 40px;
    background: #ffffff;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 10px;
    border-left: 1px solid #ccc;
    box-shadow: 0 12px 40px 0 rgba(0,0,0, 0.1);
}
.cookieAcceptPanel.showPanelCookie{
    visibility: visible;
    z-index: 10;
    opacity: 1;
}



.containerTabs{
    position: relative;
    z-index: 4;
}
.navTabsBlock{
    text-align: center;
}
.containerTabs .navTabs {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style-type: none;
    gap: 10px 0;
    flex-wrap: wrap;
    background: #F3F3F3;
    border-radius: 10px;
}

.containerTabs .navTabs > li{
    margin-bottom: -1px;
}
.containerTabs .navTabs > li > a {
    transition: all ease 0.2s;
    display: block;
}
.containerTabs .navTabs > li > a.active,
.containerTabs .navTabs > li > a:hover,
.containerTabs .navTabs > li > a:focus {
    background: var(--main-color);
    color: #fff;
}
.containerTabs .tabContent {
    width: 100%;
}
.containerTabs .tabContent > .tabPane {
    display: none;
}
.containerTabs .tabContent > .tabPane.active {
    display: block;
    margin: 20px 0;
}
/*.containerTabs .tabContent > .active {
    display: block;
}*/
