* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    font-size: 0;
    font-family: '~', sans-serif;
    color: #515151;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: #515151;
}

picture {
    display: block;
}

.input {
    color: #515151;
    border: none;
    width: 100%;
    font-size: 16px;
    border-radius: 0;
    font-family: '~', sans-serif;
}

.button {
    border: none;
    width: 100%;
    font-family: '~', sans-serif;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

.app img {
    pointer-events: none;
}

.loader {
    display: inline-block;
    animation: loader 2s linear infinite;
    width: 42px;
    height: auto;
}

.loader-circle {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    animation: loader-dash 1.5s ease-in-out infinite, loader-color 6s ease-in-out infinite;
}

@keyframes loader {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes loader-color {
    0% {
        stroke: #262626;
    }

    40% {
        stroke: #262626;
    }

    66% {
        stroke: #262626;
    }

    80%,
    90% {
        stroke: #262626;
    }
}

.slider-container {
    touch-action: pan-y;
}

.slider-wrapper {
    display: flex;
    transition-property: transform;
    transform: translate3d(0, 0, 0);
}

.slider-slide {
    flex-shrink: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform;
}

.tab:not(.tab-active) {
    display: none;
}

.tabs-panel {
    position: relative;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: inset 0 -1px 0 #e6e6e6;
}

.tabs-panel::-webkit-scrollbar {
    display: none;
}

.tab-item {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    height: 62px;
    padding: 0 24px;
    transition: color 300ms;
    cursor: pointer;
}

.tab-item-active {
    color: #262626;
}

.tab-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #262626;
    transition: left 300ms, width 300ms;
}

@media screen and (max-width: 1279px) {
    .tabs-panel {
        margin-right: -40px;
        padding-right: 40px;
    }

    .tab-item {
        font-size: 14px;
        height: 50px;
        padding: 0 16px;
    }
}

@media screen and (max-width: 767px) {
    .tabs-panel {
        margin-right: -16px;
        padding-right: 16px;
    }
}

.brcr {
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    color: #666666;
}

.brcr::-webkit-scrollbar {
    display: none;
}

.brcr a {
    font-size: 16px;
    line-height: 140%;
}

.brcr a:hover {
    text-decoration: underline;
}

.brcr-seperator {
    font-size: 16px;
    line-height: 140%;
    padding: 0 6px;
}

.brcr-last {
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

@media screen and (max-width: 1279px) {
    .brcr a {
        font-size: 14px;
        line-height: 130%;
    }

    .brcr-seperator {
        font-size: 14px;
        line-height: 130%;
    }

    .brcr-last {
        font-size: 14px;
        line-height: 130%;
    }
}

.pagination {
    text-align: center;
}

.pagination-wrapper {
    margin-top: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 12px;
}

.pagionation-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: none;
    color: #262626;
    transition: color 350ms;
}

.pagionation-nav svg {
    width: 10px;
    height: auto;
}

.pagionation-nav-disabled {
    color: #E6E6E6;
    cursor: not-allowed;
}

.pagionation-nav:not(.pagionation-nav-disabled):hover {
    color: #B3B3B3;
}

.pagionation-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.16px;
    color: #262626;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background-color: #ffffff;
    transition: color 350ms, border 350ms;
}

.pagionation-current {
    border-color: #262626;
}

a.pagionation-num:hover {
    border-color: #B3B3B3;
}

@media screen and (max-width: 767px) {
    .pagination-wrapper {
        margin-top: 56px;
        gap: 4px;
    }

    .pagionation-num {
        width: 28px;
        height: 28px;
        font-size: 14px;
        font-style: normal;
        line-height: 130%;
        letter-spacing: -0.14px;
    }

    .pagionation-nav {
        display: none;
    }
}

.wrapper {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: content-box;
}

@media screen and (max-width: 767px) {
    .wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.header {
    position: sticky;
    top: 0;
    background-color: #fff;
    background-color: rgb(255 255 255 / 80%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #E6E6E6;
    z-index: 10;
}

.header-wrapper {
    display: flex;
    align-items: center;
    height: 77px;
}

.header-logo {
    flex: none;
    margin-right: 24px;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 300ms;
}

.header-logo a:hover {
    opacity: 0.7;
}

.header-logo img {
    width: 37px;
    height: auto;
    flex: none;
}

.header-logo span {
    font-size: 12px;
    line-height: 12px;
    color: #262626;
}

.header-panel {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding-left: 24px;
}

.header-login {
    display: inline-flex;
    align-items: center;
    height: 40px;
    font-weight: 500;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 16px;
    color: #262626;
    margin-right: 20px;
    flex: none;
    cursor: pointer;
    transition: border 300ms;
}

.header-fixed .header-login {
    border-color: #a9a9a9;
}

.header-menu-list {
    display: inline-flex;
    align-items: center;
    gap: 48px;
}

.header-menu-item a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #262626;
    transition: opacity 300ms, border 300ms;
}

.header-login:hover {
    border-color: #262626;
}

.header-icons {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.header-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 22px;
    height: 22px;
}

.header-icon-wrapper {
    position: relative;
}

.header-icon-wrapper svg {
    display: inline-block;
}

.header-icon-wrapper svg:first-child {
    width: 100%;
    height: auto;
}

.header-icon-wrapper svg:last-child {
    display: none;
}

.header-icon:hover svg:first-child {
    display: none;
}

.header-icon:hover svg:last-child {
    display: block;
}

.header-icon-count {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background-color: #EC1F1C;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    border-radius: 20px;
    left: 15px;
    top: -5px;
    padding: 0 4px;
}

.header-icon-count:empty {
    display: none;
}

.header-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
    width: 28px;
    height: 28px;
    flex: none;
    cursor: pointer;
}

.header-burger-button {
    display: inline-flex;
    position: relative;
    width: 22px;
    height: 14px;
}

.header-burger-button span {
    position: absolute;
    background-color: #262626;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    transition: all 200ms ease 200ms, transform 200ms ease;
}

.header-burger-button span:nth-child(1) {
    top: 0;
}

.header-burger-button span:nth-child(2) {
    top: calc(50% - 1px);
    right: 0;
}

.header-burger-button span:nth-child(3) {
    bottom: 0;
}

.header-open .header-burger-button span {
    transition: transform 200ms ease 200ms, top 200ms ease, bottom 200ms ease, opacity 200ms ease;
}

.header-open .header-burger-button span:nth-child(1) {
    transform: rotate(45deg);
    top: calc(50% - 1px);
}

.header-open .header-burger-button span:nth-child(2) {
    opacity: 0;
}

.header-open .header-burger-button span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: calc(50% - 1px);
}

.header-lk {
    position: relative;
}

.header-lk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    transition: background 300ms;
    cursor: pointer;
}

.header-lk-btn:hover {
    background-color: #F5F7F7;
}

.header-lk.open .header-lk-btn {
    background-color: #F5F7F7;
}

.header-lk-dropdown {
    display: block;
    position: absolute;
    top: 61px;
    right: 0;
    width: 263px;
    opacity: 0;
    transform: translatey(-10px);
    visibility: hidden;
}

.header-lk.open .header-lk-dropdown {
    transform: translatey(0);
    opacity: 1;
    visibility: visible;
}

.header-lk-wrapper {
    display: block;
    background: #FFFFFF;
    padding: 20px;
    box-shadow: 0px 8px 45px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.header-lk-name {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 16px;
    color: #262626;
}

.header-lk-logout a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 140%;
    gap: 8px;
    color: #515151;
    transition: color 300ms;
}

.header-lk-logout a:hover {
    color: #0F0F0F;
}

@media screen and (min-width: 1280px) {
    .header-menu {
        margin-left: auto;
    }

    .header-search {
        display: none;
    }

    .header-menu-item a {
        height: 78px;
        border-bottom: 3px solid transparent;
    }

    .header-menu-item a:not(.active):hover {
        opacity: 0.7;
    }

    .header-menu-item a.active {
        border-color: #262626;
    }

    .header-login:hover {
        border-color: #262626;
    }

    .header-burger,
    .header-back {
        display: none;
    }
}

@media screen and (max-width: 1279px) {
    .header-open {
        overflow: hidden;
    }

    .header-open .header {
        background-color: #fff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .header-wrapper {
        height: 58px;
    }

    .header-back {
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        background-color: rgb(0 0 0 / 50%);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        z-index: 10;
    }

    .header-open .header-back {
        opacity: 1;
        visibility: visible;
    }

    .header-logo img {
        width: 32px;
    }

    .header-logo span {
        font-size: 10px;
        line-height: 10px;
    }

    .header-search {
        display: block;
    }

    .header-search-input {
        position: relative;
        margin-bottom: 32px;
    }

    .header-search-input svg {
        position: absolute;
        width: 20px;
        height: auto;
        top: 50%;
        transform: translatey(-50%);
        pointer-events: none;
    }

    .header-search-input input {
        height: 44px;
        padding-left: 28px;
        border-bottom: 1px solid #CFCFCF;
        transition: border 300ms;
    }

    .header-search-input input:focus {
        border-color: #262626;
    }

    .header-menu {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 59px;
        left: 0;
        width: 100%;
        max-width: 580px;
        height: calc(100vh - 59px);
        height: calc(var(--vh, 1vh) * 100 - 59px);
        padding: 40px;
        background-color: #fff;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .header-menu::-webkit-scrollbar {
        display: none;
    }

    .header-open .header-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .header-menu-item a {
        font-weight: 500;
    }

    .header-menu-item a:hover {
        opacity: 0.7;
    }

    .header-login-button {
        margin-top: auto;
        padding-top: 32px;
    }

    .header-login-button a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #262626;
        border-radius: 12px;
        font-weight: 500;
        font-size: 14px;
        height: 45px;
        width: 100%;
        padding: 0 24px;
        color: #fff;
        cursor: pointer;
        transition: background 300ms;
    }

    .header-login-button a:hover {
        background-color: #515151;
    }

    .header-login {
        display: none;
    }

    .header-icon-search {
        display: none;
    }

    .header-lk-btn {
        width: 36px;
        height: 36px;
    }

    .header-lk-dropdown {
        top: 54px;
    }

    .header-lk-name {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 12px;
    }

    .header-lk-logout a {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .header-menu {
        max-width: 260px;
        padding: 20px;
    }

    .header-search-input {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 428px) {
    .header-lk {
        position: unset;
    }

    .header-lk-dropdown {
        top: 66px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

.footer {
    position: relative;
    background-color: #0F0F0F;
    padding: 50px 0 80px;
    margin-top: auto;
}

.footer:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #E3164D 19%, #FECC00 39%, #98BF26 58%, #4AC0EB 79%);
    inset: 0 0 auto 0;
}

.footer-wrapper {
    display: flex;
    gap: 24px;
}

.footer-column {
    flex: 1;
}

.footer-column:last-child {
    display: none;
}

.footer-logo {
    margin-bottom: 28px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: opacity 300ms;
}

.footer-logo a:hover {
    opacity: 0.7;
}

.footer-logo img {
    width: 56px;
    height: auto;
    flex: none;
}

.footer-logo span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #fff;
}

.footer-copy {
    font-size: 14px;
    line-height: 135%;
    color: #B3B3B3;
}

.footer-politic {
    margin-top: 4px;
    font-size: 14px;
    line-height: 135%;
    color: #fff;
}

.footer-politic a {
    color: #fff;
}

.footer-politic a:hover {
    text-decoration: underline;
}

.footer-label {
    font-size: 16px;
    line-height: 115%;
    font-weight: 500;
    margin-bottom: 8px;
    color: #B3B3B3;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-link a {
    font-size: 16px;
    line-height: 140%;
    color: #fff;
}

.footer-link a:hover {
    text-decoration: underline;
}

.footer-link-phone a {
    font-weight: 500;
    font-size: 18px;
    line-height: 115%;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 12px;
}

.footer-socials-group {
    display: flex;
    gap: 12px;
}

.footer-social {
    flex: none;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: opacity 300ms;
}

.footer-social a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1279px) {
    .footer {
        padding: 40px 0;
    }

    .footer-logo a {
        gap: 12px;
    }

    .footer-logo img {
        width: 47px;
    }

    .footer-logo span {
        font-size: 12px;
        line-height: 14px;
    }

    .footer-copy {
        font-size: 12px;
    }

    .footer-politic {
        font-size: 12px;
    }

    .footer-label {
        font-size: 14px;
    }

    .footer-link a {
        font-size: 14px;
    }

    .footer-link-phone a {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 32px 0;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-info {
        display: none;
    }

    .footer-column:last-child {
        display: block;
    }

    .footer-links {
        gap: 9px;
    }

    .footer-link-phone {
        padding-bottom: 2px;
    }
}

@media screen and (max-width: 428px) {
    .footer-socials {
        gap: 8px;
    }

    .footer-socials-group {
        gap: 8px;
    }
}

@media screen and (max-width: 767px) {
    .b24-widget-button-position-bottom-right {
        right: 20px !important;
        bottom: 20px !important;
    }
}

@media screen and (max-width: 375px) {
    .header-logo {
        margin-right: 0;
    }
}

@media screen and (max-width: 374px) {
    .header-auth .header-icons {
        gap: 12px;
    }

    .header-auth .header-burger {
        margin-left: 20px;
    }

    .header-auth .header-panel {
        padding-left: 0;
    }

    .header-auth .header-logo {
        margin-right: 0;
    }
}