@font-face {
    font-family: 'CyGrotesk-WideMedium';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/CyGrotesk-WideMedium.woff') format('woff'),
    url('fonts/CyGrotesk-WideMedium.woff2') format('woff2'),
    url('fonts/CyGrotesk-WideMedium.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'CyGrotesk-GrandDemi';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/CyGrotesk-GrandDemi.woff') format('woff'),
    url('fonts/CyGrotesk-GrandDemi.woff2') format('woff2'),
    url('fonts/CyGrotesk-GrandDemi.otf') format('opentype');
    font-display: swap;
}

:root {
    --darkGraphite: #181F2D;
    --ligthGrey: #F4F4F4;
    --darkBlue: #0D3FBC;
    --secondBlue: #093983;
    --lightBlue: #4C6E8F;
    --marine: #181F2D;
    --muted: #828891;
    --gray: #323232;
    --scroll-width: 17px;
    --box: clamp(30px, 3.05vw, 44px);
    --menu-font-size: clamp(9px, 0.625vw, 13px);
    --header-height: clamp(30px, 4vw, 77px);
    --main-text: #282828;
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}

.dark-blue-text {
    color: var(--darkBlue);
}

.muted-text {
    color: var(--muted);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: var(--marine);
    opacity: 0;
    transition: opacity 150ms;
    display: none;
    z-index: 100;
}

.has-modal-open .overlay {
    opacity: 0.75;
}

html.has-modal-open {
    overflow: hidden;
    padding-right: var(--scroll-width, 17px)
}

html.has-modal-open .overlay {
    opacity: .75;
}


#akvantis-menu .header-container {
    align-items: center;
    background: #fff;
    border-radius: 3.475vw;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0.4rem auto 0;
    max-width: 1950px;
    width: clamp(10px, 93.2vw, 1950px);
    padding: 0 0.78vw;
    padding-left: clamp(10px, 1.45vw, 27px);
    padding-right: 0.88vw;
    box-shadow: 0 20px 64px 0 #A1ABB93B;
    position: relative;
    font-family: 'CyGrotesk-Wide', serif;
    font-weight: 500;
    color: var(--darkGraphite);
    font-size: var(--menu-font-size);
    border: 1px solid #E8EFF7;
}


#akvantis-menu .header-container.active, #akvantis-menu .header-container:hover {
    /*max-width: 97.9vw;*/
}

#akvantis-menu.header-inner {
    height: var(--header-height);
    left: 0;
    min-height: 30px;
    padding: 0 1.04vw;
    position: relative;
    top: 0;
    transition: height .1s;
    width: 100%;
    z-index: 10;
}

#akvantis-menu.header-inner.fixed {

    left: 0;
    min-height: 30px;
    padding: 0 1.04vw;
    position: absolute;
    top: 0;
    transition: height .1s;
    width: 100%;
    z-index: 10;
}

#akvantis-menu .menu-wrapper {
    align-items: stretch;
    display: flex;
    height: 100%;
    gap: 0.9em;
}

.services-menu-buttons {
    gap: 0.9em;
}

#akvantis-menu .menu, #akvantis-menu .menu-services {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 24px;
    list-style-type: none;
    padding: 0;
}

#akvantis-menu .menu .menu-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 100%;
    padding: 0 clamp(2px, .7vw, 10px);
    position: relative;
}

#akvantis-menu .desktop-logo {
    height: clamp(26px, 2.08vw, 40px);
    width: clamp(10rem, 10vw, 11.9rem);
}

#akvantis-menu .logo-wrapper {
    padding-right: 0.85rem;
    height: 3.2vw;
    display: flex;
    align-items: center;
    /*border-right: 2px solid var(--ligthGrey);*/
    max-height: 78%;
}

#akvantis-menu .site-switcher a {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    gap: 0.3rem;
}

#akvantis-menu .site-switcher .corp-text {
    color: #09398366;
    transition: color 0.2s ease;
}

#akvantis-menu .site-switcher:hover .corp-text {
    color: var(--darkBlue);
}

#akvantis-menu .site-switcher .shop-text {
    color: var(--darkBlue);
    transition: color 0.2s ease;
}

#akvantis-menu .site-switcher:hover .shop-text {
    color: #09398366;
}

#akvantis-menu .site-switcher .terminator {
    color: #09398366;
}

#akvantis-menu .site-switcher svg {
    width: clamp(18px, 2.5vw, 36px);
    height: clamp(10px, 1.388vw, 20px);
}

#akvantis-menu #oct-search-button i {
    font-size: clamp(6px, 1.1vw, 18px);
}

#akvantis-menu .site-switcher a svg {
    display: inline-block;
}

.search-wrapper {
    position: relative;
    width: var(--box);
    height: var(--box);
}

.akvantis-search-themed {
    width: var(--box);
    height: var(--box);
    background: #fff;
    border-radius: calc(var(--box) / 2);
    border: 1px solid var(--ligthGrey);
    position: absolute;
    top: 0;
    right: 0;
    max-width: 90vw;
    transition: width .2s, max-width .2s;
    z-index: 110;
    font-size: 14px;
    font-family: 'CyGrotesk-KeyRegular', serif;
}

.akvantis-search-themed .input_search_akvantis {
    flex: 1;
    padding: 0 10px;
    margin: 0;
    border: none;
    outline: none;
    height: 100%;
}

.akvantis-search-themed button[type=button] {
    min-width: calc(var(--box) - 2px);
    height: calc(var(--box) - 2px);
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--gray);
    cursor: pointer;
}

.akvantis-search-themed.active {
    justify-content: space-between;
}

.akvantis-search-themed .us_livesearch_close {
    min-width: var(--box);
    height: var(--box);
}

.us_livesearch.expanded {
    max-height: 400px;
    border-top: 1px solid #F9F9F9;
    padding: 1rem 0rem;
    overflow: hidden;
    border-radius: 22px;
}

.us_livesearch > div {
    padding: 15px;
    overflow-y: auto;
    min-height: 100px;
    max-height: 370px;
}

#akvantis-menu .oct-mm-link, .oct-mm-simple-link {
    position: inherit;
    height: var(--header-height);
    display: block;
    overflow: hidden;
}

#akvantis-menu .oct-mm-link > a:before, .oct-mm-simple-link > a:before {
    bottom: -.6vw;
    content: "";
    height: clamp(6px, .45vw, 8px);
    left: 0;
    margin: 0 .2vw;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: translateZ(0);
    transition: all .3s ease;
}

#akvantis-menu .oct-mm-link > a:hover:before, .oct-mm-simple-link > a:hover:before {
    bottom: 0;
    opacity: 1;
    background: #fd446e;
}

#akvantis-menu .oct-mm-link > a, .oct-mm-simple-link > a {
    font-size: var(--menu-font-size);
    letter-spacing: 0.05em;
    line-height: var(--header-height);
    vertical-align: middle;
    padding: 0 clamp(2px, .7vw, 10px);
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
}

#akvantis-menu .oct-mm-link > a i {
    font-size: clamp(5px, 0.45vw, 8px);
    margin-left: 0.6em;
    transition: transform .3s ease .05s;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#akvantis-menu #oct-menu-box:hover #oct-menu-dropdown-menu,
#akvantis-menu .oct-menu-li:hover > .oct-menu-child-ul {
    top: 100%;
}

#akvantis-menu .navbar {
    padding: 0;
    height: 100%;
    position: static;
}

#akvantis-menu #oct-menu-dropdown-menu, .oct-menu-child-ul, .oct-mm-dropdown {
    border-radius: 3.475vw;
}

#akvantis-menu .oct-mm-full-width {
    /* left: 0; */
    /* right: 0; */
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
    padding-top: calc(var(--header-height) + 2rem);

    background: white;
    border-radius: 0;
    box-shadow: 0 20px 64px 0 #A1ABB93B;
}

#akvantis-menu .oct-mm-link:hover > a, .oct-mm-simple-link:hover > a {
    background: transparent;
    color: var(--darkGraphite);
}

#akvantis-menu .oct-mm-hassubchild {
    margin-bottom: 0;
}

#akvantis-menu .oct-mm-brands-link {
    box-shadow: none;
}

#akvantis-menu .oct-mm-child a:hover,
#akvantis-menu .oct-mm-parent-link:hover .oct-mm-parent-title {
    color: #093983;
    text-decoration: none;
}

#akvantis-menu .oct-mm-brands-link img {
    transform: translateY(0);
    transition: all .3s ease, -webkit-transform .3s ease;
}

#akvantis-menu .oct-mm-brands-link:hover img {
    transform: translateY(-.35vw);
    opacity: .7;
}

body {
    background-color: rgb(255, 255, 255)
}

body:has(.oct-checkout) {
    background: #F7F7F7;
}

@media screen and (min-width: 1350px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1312px;
    }
}

#akvantis-menu button.language-select, .akv-footer .language-switch button.language-select {
    text-transform: uppercase;
    font-size: inherit;
    font-weight: inherit;
    padding: 0;
}

.cart-wrapper {
    display: flex;
    width: var(--box);
    height: var(--box);
    background: #fff;
    border-radius: calc(var(--box) / 2);
    border: 1px solid var(--ligthGrey);
    position: relative;
}

.cart-wrapper .us-cart-box {
    width: var(--box);
    height: var(--box);
}

.header-cart-index {
    background: #DE3618;
    color: #fff;
    border-radius: 10px;
    font-size: var(--menu-font-size);
    --size: clamp(10px, 1.38vw, 20px);
    height: var(--size);
    position: absolute;
    top: -10px;
    left: clamp(10px, 1.38vw, 20px);
    min-width: var(--size);
    line-height: 20px;
    text-align: center;
    transition: background .15s ease .05s;
    font-weight: 400;
    padding: 0 clamp(1px, 0.27vw, 4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.us-cart-img {
    --size: clamp(10px, 1.38vw, 20px);
    width: var(--size);
    height: var(--size);
}

.us-cart-img svg {
    --size-svg: clamp(10px, 1.38vw, 20px);
    width: var(--size-svg);
    height: var(--size-svg);
}

.cart-wrapper .us-cart-img {
    margin-right: 0;
}

#akvantis-menu .mobile-menu-logo {
    display: none;
    margin-left: 6px;
}

#akvantis-menu .mobile-logo {
    display: none;
}

.us-livesearch-list-item-name a {
    font-size: 14px;
    color: #181F2D;
    font-weight: 600;
    text-decoration: none;
}

.us_livesearch.expanded {
    max-height: 400px;
    border-top: 1px solid #F9F9F9;
}

.us_livesearch {
    width: 100%;
    background: #FFF;
    max-height: 0;
    transition: max-height .2s ease;
    z-index: 1021;
    position: relative;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.us-livesearch-list-item-price span {
    font-size: 14px !important;
    padding: 0 !important;
}

.us-livesearch-list-item-price .us-price-old {
    margin-left: 1rem;
}

.us-price-actual {
    color: var(--darkBlue);
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    background-color: transparent;
    margin-right: 0;
    letter-spacing: .3px;
}

.akvantis-search-themed.active {
    max-width: 44vw;
    width: 44vw;
}

#us_menu_mobile_box {
    left: -100dvw;
}

#us_menu_mobile_title {
    background: #fff;
    padding: 12px;
}

#common-home.container {
    max-width: 100%;
}

/*slideshow*/
.akv-slideshow-plus.slide-type-3 {
    margin-bottom: 80px;
}

.akv-slideshow-plus .col-lg-12.us-slideshow-plus-box {
    padding: 0;
}

#common-home .row-padding-top {
    padding-top: 0;
}

.akv-slideshow-plus .us-slideshow-plus-item-info {
    position: absolute;
    bottom: clamp(65px, 5.55vw, 110px);
    left: clamp(10px, 4.16vw, 70px);
    right: clamp(10px, 4.16vw, 70px);
    z-index: 1;
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-title {
    font-family: 'CyGrotesk-Grand', sans-serif;
    font-size: clamp(48px, 3.33vw, 63px);
    max-width: 50vw;
    font-weight: 500;
    line-height: 1.1;
}

.akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info {
    position: absolute;
    bottom: 50%;
    left: clamp(10px, 4.16vw, 70px);
    right: clamp(10px, 4.16vw, 70px);
    transform: translateY(50%);
    z-index: 1;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}



.us-slideshow-plus-item-btn {
    letter-spacing: 0.6px;
}

.akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info .us-slideshow-plus-item-title {
    font-size: 48px;
    text-transform: none;
    max-width: 432px;
    font-weight: 400;
    line-height: 1.1;
}

.us-slideshow-plus-item-text {
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding-left: 6px;
}

.akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-text {
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    position: static;
    /*top: 0;*/
    /*right: 0;*/
    line-height: 1.54;
    padding-right: 0;
    margin-bottom: 0;
    max-width: 338px;
}

.akv-slideshow-plus.slide-type-3 .row {
    margin: 0 !important;
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-btn,
.akv-themed-button {
    height: clamp(60px, 4.17vw, 79px);
    border-radius: calc(clamp(60px, 4.17vw, 79px) / 2);
    line-height: clamp(56px, 3.9vw, 76px);
    font-family: CyGrotesk-KeyRegular, sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 0.76vw, 13px);
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    padding: 0;
    position: relative;
    transform: translateZ(0);
    transition: all .3s ease;
    display: inline-block;
    min-width: 330px;
    border-style: solid;
    border-color: rgb(255 255 255 / 0%);
    border-width: 3px;
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-btn {
    width: clamp(330px, 20.4vw, 390px);
}

.akv-slideshow-plus .us-slideshow-plus-item-btn-elements,
.akv-themed-button .us-item-btn-elements {
    /*position: relative;*/
    display: inline-block;
    overflow: hidden;
    height: 100%;
    width: 100%;
    /*margin-left: 24px;*/
    /*margin-right: 24px;*/
    /*padding-right: 8px;*/
}

.akv-themed-button .us-item-btn-elements svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);

}

#button-ukrcredits.akv-themed-button {
    border-color: #b5bcd5;
    border-width: 1px;
}

#button-ukrcredits.akv-themed-button {
    line-height: 48px;
}

#button-ukrcredits.akv-themed-button:hover {
    border-color: var(--darkBlue);
}

.akv-themed-button .hidden-text,
.akv-slideshow-plus .hidden-text,
.akv-themed-button .default-text,
.akv-slideshow-plus .default-text {
    position: static;
    transform: translateY(0);
    top: 0;
    transition: all .3s ease;
    display: inline-block;
    z-index: 1;
    width: 100%;
}

.akv-themed-button .hidden-text > svg.next,
.akv-slideshow-plus .hidden-text > svg.next,
.akv-themed-button .default-text > svg.next,
.akv-slideshow-plus .default-text > svg.next {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
}

.akv-themed-button .hidden-text > svg.dribble,
.akv-slideshow-plus .hidden-text > svg.dribble,
.akv-themed-button .default-text > svg.dribble,
.akv-slideshow-plus .default-text > svg.dribble {
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
}

.akv-themed-button .hidden-text,
.akv-slideshow-plus .hidden-text {
    transform: translateY(100%);
}

.akv-themed-button.button-blue {
    color: var(--secondBlue) !important;
    border-color: rgba(9, 57, 131, 0.34) !important;
    border-width: 2px;
    border-style: solid;
}

.akv-themed-button.button-blue:hover {
    border-color: rgba(9, 57, 131, 1) !important;
}

.akv-themed-button.us-module-btn {
    background-color: transparent !important;
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-btn > svg,
.akv-themed-button > svg {
    left: 36px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.akv-categories-wall a.akv-themed-button.button-blue.d-none.d-lg-block .us-item-btn-elements svg {
    width: 15px;
    height: 15px;
}

.us-slideshow-plus-item-btn-elements .default-text > svg.dribble,
.us-slideshow-plus-item-btn-elements .hidden-text > svg.dribble {
    position: absolute;
    top: 50%;
    left: 11.3%;
    transform: translateY(-50%);
    height: 33px;
    width: 33px;
}

.us-slideshow-plus-item-btn-elements .default-text > svg.next,
.us-slideshow-plus-item-btn-elements .hidden-text > svg.next {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:hover:after {
    background-position-y: 50%;
    background-size: 120% 200%;
    transform: rotate(0) scale(1.8);
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:hover .default-text,
.akv-themed-button:not(:disabled):hover .default-text {
    transform: translateY(-100%);
}

.akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:hover .hidden-text,
.akv-themed-button:not(:disabled):hover .hidden-text {
    transform: translateY(-100%);
}

.akv-slideshow-plus.slide-type-2 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:active,
.akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:active,
.akv-themed-button:active {
    opacity: 0.8;
}

.akv-slideshow-plus.slide-type-1 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:after {
    background-image: url(/image/get-fill.png);
    background-position-y: -102%;
    background-repeat: no-repeat;
    background-size: 100% 200%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(11deg) scale(2.1);
    transition: all .3s linear;
    width: 100%;
    z-index: 0;
}

.akv-slideshow-plus.slide-type-2 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn,
.akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.34);
    border-width: 3px;
    width: clamp(330px, 20.4vw, 390px);
}

.akv-slideshow-plus.slide-type-2 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:hover,
.akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn:hover {
    border-style: solid;
    border-color: rgba(255, 255, 255, 1);
    border-width: 3px;
}

.akv-slideshow-plus .image-wrapper img {
    max-height: 100dvh;
    min-height: 100dvh;
    object-fit: cover;
}

.akv-slideshow-plus .image-wrapper:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vw;
    max-height: 460px;
    opacity: .78;
    background: linear-gradient(180deg, rgba(24, 31, 45, 0) 0%, rgba(24, 31, 45, 0.0891741) 18%, rgba(24, 31, 45, 0.34555) 46.5%, #181F2D 100%);
}

.us-slideshow-plus-box {
    max-height: 100dvh;
    /*min-height: 780px;*/
    overflow: hidden;
    /*height: 56.25vw;*/
    height: 100dvh;
}

.akv-slideshow-plus.slide-type-2 .us-slideshow-plus-item-info .us-slideshow-plus-item-title {
    font-size: clamp(48px, 6.25vw, 100px);
    max-width: 300px;
    font-weight: 500;
    line-height: 1.1;
}

/*advantages*/
.akv-advantages {
    padding: 5.556vw;
}

.row.akv-advantages {
    margin: 0;
}

.akv-advantages .us-advantages-box {
    flex-direction: column;
    border-left: 0;
    border-color: unset;
    box-shadow: none;
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
}

.akv-advantages .us-advantages-img {
    margin-right: 0;
    --adv-images-size: clamp(70px, 5.55vw, 90px);
}

.akv-advantages .us-advantages-img .image-container {
    margin-right: 0;
    width: var(--adv-images-size, 80px);
    height: var(--adv-images-size, 80px);
    background-size: cover;
}

#block-0-1 .us-advantages-img .image-container {
    background: url(/catalog/view/theme/oct_ultrastore/img/warranty.svg) no-repeat center center;
    width: var(--adv-images-size, 80px);
    height: var(--adv-images-size, 80px);
    background-size: cover;
}

#block-0-2 .us-advantages-img .image-container {
    background: url(/catalog/view/theme/oct_ultrastore/img/call-center.svg) no-repeat center center;
    width: var(--adv-images-size, 80px);
    height: var(--adv-images-size, 80px);
    background-size: cover;
}

#block-0-3 .us-advantages-img .image-container {
    background: url(/catalog/view/theme/oct_ultrastore/img/warranty-return.svg) no-repeat center center;
    width: var(--adv-images-size, 80px);
    height: var(--adv-images-size, 80px);
    background-size: cover;
}

#block-0-4 .us-advantages-img .image-container {
    background: url(/catalog/view/theme/oct_ultrastore/img/clock-delivery.svg) no-repeat center center;
    width: var(--adv-images-size, 80px);
    height: var(--adv-images-size, 80px);
    background-size: cover;
}

.akv-advantages .us-advantages-title {
    color: var(--secondBlue) !important;
    font-size: clamp(14px, 1.111vw, 19px);
    text-align: center;
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 400;
}

.akv-advantages .us-advantages-cont {
    padding-right: 0;
}

.akv-advantages .us-advantages-text {
    color: var(--lightBlue) !important;
    font-size: clamp(14px, 1.111vw, 19px);
    text-align: center;
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    font-weight: 300;
    max-width: clamp(150px, 13.88vw, 200px);
    margin-top: clamp(10px, 0.83vw, 20px);
    margin-left: auto;
    margin-right: auto;
}

/*Categories wall*/
.akv-categories-wall {
    padding: clamp(64px, 5.556vw, 100px) 4.652vw clamp(64px, 9.17vw, 134px);
    margin-right: -15px;
    margin-left: -15px;
}

.akv-categories-wall .us-main-shop-title {
    color: var(--darkGraphite);
    text-transform: uppercase;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    letter-spacing: -0.5px;
}


.akv-categories-wall .us-main-shop-title:after {
    display: none
}

.akv-categories-wall .us-categories-wall-row {
    margin-top: 70px;
    margin-bottom: 0;
    grid-auto-rows: 1fr;
    row-gap: 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.akv-categories-wall .us-categories-wall-item {
    box-shadow: none;
    border-radius: 0;
    padding: 15px 15px;
    margin-bottom: 0;
    transition: all .2s ease;
    height: 100%;
    position: relative;
    border-left: 1px solid;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, transparent 0%, transparent 6%, #EBEFF4 33%, #EBEFF4 67%, transparent 94%, transparent 100%) 1 100%;
    /*width: 16.66666%;*/
    flex: 1;
}

.akv-categories-wall .us-categories-wall-item .us-categories-wall-img {
    transition: all .2s ease;
    /*max-width: 100%;*/
    max-width: 12.8vw;
}

.akv-categories-wall .us-categories-wall-item:hover .us-categories-wall-img {
    transform: translateY(-.35vw);
    opacity: .7;
}

.akv-categories-wall .us-categories-wall-item .us-categories-wall-top-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.akv-categories-wall .us-categories-wall-item .us-categories-wall-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--darkGraphite) !important;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    margin-bottom: 0;
    margin-top: 38px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.akv-categories-wall .us-categories-wall-item:hover .us-categories-wall-title {
    color: #093983 !important;
    text-decoration: none;
    transition: color .2s ease;
}


/*articles preview*/
.akv-featured-articles {
    padding: clamp(64px, 5.556vw, 100px) clamp(10px, 4.16vw, 70px) clamp(50px, 3.47vw, 70px);
    margin-right: -15px;
    margin-left: -15px;
}

.akv-featured-articles .us-module-item {
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    position: relative;
    margin-bottom: 0;
    transition: color .15s ease .05s;
    /*height: calc(100% - 30px);*/
}

.akv-featured-articles .us-main-shop-title {
    color: var(--darkGraphite);
    font-weight: 400;
    padding-left: 0;
    position: relative;
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-size: 20px;
    line-height: 1.46;
    letter-spacing: 0.065rem;
    text-transform: uppercase;
}

.akv-featured-articles .us-main-shop-title:after {
    display: none
}

.akv-featured-articles .us-featured-articles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2em;
    gap: 20px;
    row-gap: 48px;
}

.us-module-article-date {
    margin-top: 16px;
    margin-bottom: 0;
    display: block;
    text-align: left;
}

.akv-featured-articles .us-module-img img {
    opacity: 1;
    transition: all .15s ease;
    max-width: 100%;
    block-size: auto;
    width: 100%;
    object-fit: cover;
}

.akv-featured-articles .us-module-item:hover .us-module-img img {
    opacity: .9;
    transform: translateY(-.35vw);
}

.akv-featured-articles .ocs-article-item .us-module-title {
    color: var(--darkGraphite);
    text-transform: uppercase;
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    letter-spacing: -0.5px;
    text-align: left;
    padding: 0;
    height: auto;
    margin-top: 10px;
}

.akv-featured-articles .ocs-article-item .us-module-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.46;
    text-transform: none;
    letter-spacing: normal;
}

/*Typography*/
.us-html-box {
    padding-top: clamp(50px, 3.47vw, 70px);
    padding-right: clamp(10px, 4.16vw, 70px);
    padding-bottom: 0;
    padding-left: clamp(10px, 4.16vw, 70px);
    background: transparent;
    border-radius: 4px;
    box-shadow: none;
    transition: box-shadow .15s ease .05s;
}

.text-wrapper {
    overflow: hidden;
    max-height: 11em;
    position: relative;
    transition: all .5s ease;
}

.us-html-box:hover {
    box-shadow: none;
}

.us-html-box h1, .us-product-description-cont h1, h1 {
    color: var(--darkGraphite);
    margin-bottom: 1.0666667em;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.46;
}

h2,
.us-html-box h2,
.us-category-description-text h2,
.us-product-description-cont h2 {
    color: var(--darkGraphite);
    margin-bottom: 1.0666667em;
    margin-top: 1.8666667em;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.46;
}

h3,
.us-html-box h3,
.us-category-description-text h3,
.us-product-description-cont h3 {
    color: var(--darkGraphite);
    margin-bottom: .6666667em;
    margin-top: 1.6666667em;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.46;
}

h4, h5, h6,
.us-html-box h4,
.us-html-box h5,
.us-html-box h6,
.us-category-description-text h4,
.us-category-description-text h5,
.us-category-description-text h6,
.us-product-description-cont h4,
.us-product-description-cont h5,
.us-product-description-cont h6 {
    color: var(--darkGraphite);
    margin-bottom: .6666667em;
    margin-top: 1.6666667em;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.46;
}

ol, ul,
.us-html-box ul,
.us-html-box ol,
.us-category-description-text ul,
.us-category-description-text ol,
.us-product-description-cont ul,
.us-product-description-cont ol,
ol ol, ol ul, ul ol, ul ul {
    margin-bottom: 1.3333333em;
    margin-top: 1.3333333em;
    padding-inline-start: 1.5555556em;
}

li,
.us-html-box li,
.us-category-description-text li,
.us-product-description-cont li {
    margin-top: 0.28em;
    margin-bottom: 0.28em;
}

ol > li,
ul > li,
.us-html-box ol > li,
.us-html-box ul > li,
.us-category-description-text ol > li,
.us-category-description-text ul > li,
.us-product-description-cont ol > li,
.us-product-description-cont ul > li {
    padding-inline-start: 0.42em;
}

p,
.us-html-box p,
.us-category-description-text p,
.us-product-description-cont p {
    margin-bottom: 1.3333333em;
    margin-top: 1.3333333em;
    color: var(--main-text);
}

.us-html-box-text,
.us-category-description-text,
.us-product-description-cont {
    font-size: 14px;
    color: var(--main-text);
    font-weight: 400;
    line-height: 1.46;

}


.akv-read-more-btn {
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.46;
    text-align: left;
    border: none;
    padding: 0;
    background-color: transparent;
    margin-top: 24px;
    color: var(--secondBlue);
    transition: color .15s ease .05s;
}

.akv-read-more-btn:hover {
    color: var(--darkGraphite);
}

/*footer*/
.akv-footer {
    height: auto;
    position: relative;
    overflow: hidden;
    margin-top: clamp(80px, 5.55vw, 100px);
    background-color: var(--darkGraphite);
    --footer-font-size: clamp(9px, 0.625vw, 14px);
    padding-bottom: 0;
}

.akv-footer .akv-footer-image {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    opacity: .75;
    min-width: 100%;
}

.akv-footer .akv-footer-image:after {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: linear-gradient(180deg, rgba(24, 31, 45, 0) 0%, #181F2D 100%);
    transition: opacity .15s ease;
}

.akv-footer .akv-footer-image:hover:after {
    opacity: 0;
}

.akv-footer .akv-footer-image img {
    width: auto;
    height: auto;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

.akv-footer .akv-footer-content {
    background: #0F131C;
    width: clamp(10px, 93.2vw, 1950px);
    padding: 40px .58vw 72px;
    border-radius: 36px;
    position: relative;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.akv-footer .akv-footer-content .akv-footer-inner {
    width: 82.54%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    padding-bottom: 43px;
    position: relative;
    justify-content: center;
}

.akv-footer .akv-footer-content .akv-footer-inner .footer-logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
}

.akv-footer .akv-footer-content .akv-footer-copyrights {
    width: 82.54%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.39vw;
    padding-bottom: 1.39vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: clamp(10px, 48.61vw, 1350px);
    font-size: var(--footer-font-size);
}

.akv-footer .akv-footer-content .us-footer-phone-btn {
    font-size: var(--footer-font-size);
    line-height: 1.44;
    margin-bottom: 0;
    font-weight: 400;
    font-family: 'CyGrotesk-Wide', sans-serif;
    color: white;
    opacity: .8;
    transition: opacity .2s ease;
}

.akv-footer .us-footer-phone-btn:hover {
    color: white;
    opacity: 1;
}

.akv-footer .akv-footer-content .socials {
    display: grid;
    gap: 2.15vw;
    grid-auto-columns: min-content;
    grid-auto-flow: column;
    align-items: center;
}

.akv-footer .akv-footer-content a.social-link {
    font-size: 22px;
    opacity: .34;
    transition: opacity .2s ease;
}

.akv-footer .akv-footer-content a.social-link:hover {
    opacity: 1;
}

.akv-footer-terms {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.akv-footer .language-switch {
    opacity: .34;
    color: white;
    font-size: 14px;
    transition: opacity .2s ease !important;
    display: grid;
    grid-auto-columns: min-content;
    grid-auto-flow: column;
    gap: 10px;
    align-items: center;
}

.akv-footer .language-switch i {
    font-size: 8px;
}

.akv-footer .language-switch button.language-select {
    color: white;
    font-size: var(--footer-font-size);
    font-family: 'CyGrotesk-Wide', sans-serif;
}

.akv-footer .language-switch:hover {
    opacity: 1;
}

.akv-footer .language-switch:hover i {
    font-size: 10px;
    margin-left: -1px;
}

.akv-footer .akv-footer-terms-phone {
    flex-grow: 1;
    justify-content: center;
    display: inline-flex;
}

.akv-footer .akv-footer-inner {
    display: flex;
    gap: 15px;
}

.akv-footer .footer-menu-wrapper {
    display: flex;
    flex-grow: 1;
    max-width: clamp(10px, 48.61vw, 1350px);
}

.akv-footer .footer-menu-wrapper .us-footer-box {
    padding: 0 clamp(15px, 4vw, 70px);
}

.us-footer-bottom-payment-list {
    gap: 2.15vw;
}

.us-footer-bottom-payment-item {
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.akv-footer .footer-menu-wrapper .us-footer-box:first-of-type {
    padding-left: 0;
}

.akv-footer .footer-menu-wrapper a {
    opacity: .56;
    color: white;
    font-size: var(--footer-font-size);
    transition: opacity .2s ease;
    text-transform: uppercase;
    position: relative;
    font-family: 'CyGrotesk-Wide', sans-serif;
    text-decoration: none;
    line-height: 1.9;
    display: inline-block;
}

.us-footer-item {
    margin-bottom: 0px;
}

.akv-footer .footer-menu-wrapper a:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="9" viewBox="0 0 9 9" fill="none"><script xmlns=""/><g opacity="0.56"><path d="M3.5 6.5L5.5 4.47937L3.54084 2.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></g></svg>');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 13px;
    margin-top: 1px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
}

.akv-footer .footer-menu-wrapper a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: white;
    opacity: .56;
    transition: all .2s ease;
}

.akv-footer .footer-menu-wrapper a:hover:after {
    opacity: 1;
    right: 0;
}

.akv-footer .footer-menu-wrapper a:hover {
    opacity: 1;
}

.akv-footer .akv-footer-terms-terminator {
    display: none;
    width: 1px;
    background-color: white;
    opacity: 0.1;
    height: 36px;
}

.akv-footer .akv-footer-promo {
    padding: 140px 15px;
    color: white;
    opacity: 1;
    position: relative;
    text-align: center;
    font-size: 24px;
}

.akv-footer .akv-footer-promo .akv-footer-promo-head {
    font-size: clamp(48px, 3.33vw, 63px);
    font-family: 'CyGrotesk-Wide', sans-serif;
    line-height: 1.15;
}

.akv-footer .akv-footer-promo .akv-footer-promo-head span:first-of-type {
    display: inline-block;
    width: 100%;
}

.akv-footer .akv-footer-promo .akv-footer-promo-desc {
    margin-top: 32px;
}


/*Catalog page*/
.us-breadcrumb {
    padding: 32px 0 32px 0;
    margin-top: 0;
}

.us-breadcrumb-item {
    color: #181F2D80 !important;
    padding-inline-start: 0;
}

.us-breadcrumb-item a svg {
    margin-top: -4px;
}

.us-breadcrumb-item + .us-breadcrumb-item {
    padding-left: 0.5rem;
}

.us-breadcrumb-item + .us-breadcrumb-item::before {
    top: 0;
}

.us-breadcrumb-item + .us-breadcrumb-item::before {
    padding-right: 0.5rem;
}

.us-main-shop-title {
    color: var(--darkGraphite);
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-size: 28px;
    line-height: 1.46;
    letter-spacing: 0rem;
}

h1.us-main-shop-title {
    padding-left: 0;
}

#product-category .us-main-shop-title,
#product-special .us-main-shop-title {
    font-size: 20px;
}

.us-main-shop-title:after {
    height: 0;
    display: none;
}

.us-category-content {
    box-shadow: none;
    transition: box-shadow .15s ease .05s;
    border-radius: 0;
}

.us-category-content:hover {
    box-shadow: none;
}

.us-categories-box {
    background: transparent;
}

.us-categories-box {
    padding-left: 0;
}

.us-categories-item a {
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    text-decoration: none;
    font-weight: lighter;
    color: var(--muted);
}


.us-categories-item.active > span a, .us-categories-item a:hover {
    color: var(--darkGraphite) !important;
    text-decoration: none;
}

.us-categories-item.active > span a {
    color: var(--darkGraphite) !important;
    font-weight: bold;
}

.ocf-header {
    color: var(--darkGraphite);
    margin-bottom: 20px !important;
    font-family: "CyGrotesk-Wide", sans-serif;
    font-weight: 400;
    margin-top: 2rem;
}

.ocf-filter-name {
    font-size: 14px;
    color: var(--darkGraphite);
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.ocf-theme-light .ocf-search-btn-static, .ocf-btn.ocf-search-btn-popover {
    border-radius: 999px;
    font-size: 11px;
    padding: 0;
    line-height: 50px;
    background-color: #0D3FBC !important;
    color: white;
    font-family: CyGrotesk-KeyRegular, sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    transition: all .3s ease;
}

.ocf-popover {
    border-radius: 999px !important;
}

.ocf-theme-light .ocf-search-btn-static.ocf-disabled {
    background-color: #6a7275 !important;
}

.ocf-theme-light .ocf-search-btn-static:focus,
.ocf-theme-light .ocf-search-btn-static:active {
    background-color: #0D3FBC !important;
}

.ocf-theme-light .ocf-filter-header {
    color: var(--darkGraphite) !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.ocf-value-list {

}

.us-categories-box.us-module-column-box {
    padding-top: 0;
}

.us-category-products {
    overflow: hidden;
    row-gap: 15px;
}

.us-module-cart-btn {
    background: transparent;
    border-radius: 999px;
    color: var(--secondBlue) !important;
    border-color: rgba(9, 57, 131, 0.34);
    border-width: 2px;
    border-style: solid;
}

.content-block .form-control::placeholder {
    color: var(--darkGraphite);
    opacity: 0.2;
}

.us-module-cart-btn:hover {
    background: transparent;
    color: white !important;
    border-color: rgba(9, 57, 131, 0.8);
}

.product-grid .us-module-title {
    height: 50px;
    overflow-y: hidden;
    margin-bottom: 8px;
}

.us-module-title {
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.40;
    letter-spacing: 0px;
    vertical-align: middle;
}

.us-category-content .us-module-item {
    border: none;
    box-shadow: none;
}

.product-layout.product-grid {
    padding: 0;
    border-left: 1px solid;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, transparent 0%, transparent 6%, #EBEFF4 33%, #EBEFF4 67%, transparent 94%, transparent 100%) 1 100%;
    /*transform: translateX(-1px);*//*hide left border*/
}

.us-module-price-actual {
    color: var(--darkBlue);
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}

.ukrcreditsticker {
    position: absolute;
    text-align: left;
    color: var(--main-text);
    top: 5px;
    right: 30px;
    z-index: 99;
}

.content-top-box {
    margin-top: 0;
    margin-bottom: 0;
}

.us-categories-item {
    font-size: 14px;
}

.us-page-main-title {
    display: inline-block;
    color: var(--main-text);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    letter-spacing: 0.9px;
}

.us-page-main-title:after {
    display: none;
}

.us-product-attributes {
    padding: 0 0 48px 0;
    border-bottom: none;
    border-top: none;
    max-width: 868px;
    margin: 0 auto;
}

.us-product-attributes-title {
    color: var(--main-text);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    letter-spacing: 1.1px;
}

.us-product-attributes-cont .us-product-attr-item {
    color: var(--main-text);
    font-weight: 400;
    font-size: 14px;
}

.us-product-attributes-cont .us-product-attr-item span:last-of-type {
    font-weight: 600;
}

.us-product-attr-item:not(:last-child) {
    margin-bottom: 8px;
}

.us-product-top {
    border-bottom: none;
}

.us-module-img img {
    transition: all 0.2s ease-in-out;
}

.us-product-description-cont {
    max-width: 868px;
    margin: 0 auto;
    padding: 0 0 48px 0;
}

.us-product-attributes-cont {
    width: 100%;
}

.product-layout .us-module-item:hover .us-module-img img {

    transform: translateY(-.35vw);
    opacity: .7;
}

.us-module-item {
    background: #FFFFFF;
    box-shadow: none;
    border-radius: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    height: auto;
}

.oct-load-more-button {
    background-color: transparent;
}

.pagination li a, .pagination li span {
    color: var(--darkGraphite);
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 500;
    background: transparent;
}

.pagination li.active span {
    color: var(--darkBlue);
}

.pagination li.active span, .pagination li a:hover {
    color: var(--darkBlue);
}

.us-category-sort-block {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 12px !important;
    color: var(--darkGraphite);
    font-family: 'CyGrotesk-KeyRegular', sans-serif;

}

#us-subcat .subcat-item .subcat-item-title {
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--darkGraphite);
}

#us-subcat .subcat-item:hover {
    box-shadow: none;
}

#us-subcat .subcat-item {
    box-shadow: none;
}

#us-subcat .us-item {
    border-left: 1px solid;
    border-image: linear-gradient(to bottom, transparent 0%, transparent 6%, #EBEFF4 33%, #EBEFF4 67%, transparent 94%, transparent 100%) 1 100%;
}

.us-subcategory {
    border-bottom: none;
}

#us-subcat .us-item:last-child {
    border-right: 1px solid;
}

#product-category .heading-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
    gap: 17px;
}

.sort-limit select {
    background-color: transparent;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 8 5" id="include--input-sort"><path d="M3.577 4.83l-3.4-3.292a.565.565 0 010-.82L.74.17a.612.612 0 01.848 0L4 2.504 6.41.17a.612.612 0 01.849 0l.565.547a.565.565 0 010 .82L4.423 4.829a.609.609 0 01-.846 0z" fill="currentColor"/></svg>');
    border: none;
    color: var(--darkGraphite);
    max-width: 160px !important;
}

.sort-limit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 999px;
}

label[for="input-sort"] {
    margin-bottom: 0;
    color: #515661;
}

#product-category .sort-select {
    margin-right: 0;
}

.us-category-appearance.btn-group {
    margin-left: 15px;
    border-radius: 999px;
    padding: 0 13px;
    overflow: hidden;
    background: #F8F8F8;
}

.us-category-appearance.btn-group button {
    margin-left: 0;
}

.category-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F2F2F2;
    border-radius: 999px;
    padding: 12px 15px;
    width: 100%;
    background: transparent;
    font-size: 12px;
}

.image-additional-list .image-additional-item img,
.popup-additional-gallery-item img {
    border-color: transparent;
    border-radius: 4px;
    border-width: 2px;
}

.image-additional-list .image-additional-item:hover img,
.image-additional-item.slick-current img,
.popup-additional-gallery-item.active img {
    border-color: #0D3FBC;
    border-radius: 4px;
    border-width: 2px;
}

/*Product*/
.us-product-left {
    border-right: none;
    padding-top: 0;
    position: relative;
}

.us-product:hover {
    box-shadow: none;
}

.us-product {
    background-color: #FFF;
    box-shadow: none;

}

.us-product-photo-main {
    margin-left: 0 !important;
}

.oct-gallery {
    border-radius: 4px;
    padding: 0;
    max-width: 96.4%;
}

.oct-gallery img {
    padding: 0;
    border: 1px solid #E8EFF7;
    border-radius: 4px;
}

.image-additional-box {
    position: static !important;
    width: 100% !important;
}

.image-additional-list {
    padding: 0;
}


.image-additional-list:has(.slick-prev) .slick-list {
    max-width: calc(100% - 56px);
    margin: 0 auto;
}

.image-additional-box .slick-prev {
    left: 0;
    top: 0;
    right: auto;
    transform: rotate(0);
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.image-additional-box .slick-next {
    left: auto;
    right: 0;
    bottom: 0;
    transform: rotate(0deg);
    height: 100%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.us-product-stickers {
    left: 10px;
    top: 10px;
}

.us-product-info-list {
    color: var(--main-text);
    font-size: 13px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0;
}

.us-cart-item-desc .us-product-info-list {
    flex-direction: column;
    align-items: start;
}

.us-product-info-item {
    display: flex;
    font-weight: bold;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    padding-inline-start: 0;
}

.us-product-info-item a,
.us-product-info-item span {
    font-weight: normal;
    color: var(--main-text);
    font-size: 12px;
}

.us-product .us-main-shop-title {
    padding-left: 20px;
    padding-bottom: 23px;
    font-size: 28px;
}

.us-product-info {
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    padding-top: 25px;
    gap: 20px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
}

.us-product .us-price-block {
    padding-left: 20px;
    padding-bottom: 4px;
    color: var(--darkBlue);
}

.us-form-checkbox-group:first-child {
    margin-top: 10px;
}

.us-product .us-price-block .us-price-actual {
    font-size: 22px;
    color: var(--darkBlue);
}

.us-price-new {
    color: var(--darkBlue);
    font-size: 22px;
    font-weight: bold;
    background-color: transparent !important;
    margin-right: 0;
    letter-spacing: 0.3px;
    padding: 0 1rem 0 0;
}

.us-product-option .control-label {
    color: var(--main-text);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 13px;
    display: block;
}

.us-form-checkbox-input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.us-form-checkbox-input + label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;

}

.us-form-checkbox-input + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='16.5' height='16.5' rx='1.25' stroke='%23EAF2FB' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}

.us-form-checkbox-group label {
    color: var(--main-text);
    font-size: 12px;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}

.us-form-checkbox-input:checked + label:before {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='2' fill='%230D3FBC'/%3E%3Cpath d='M7.5 12.5L4 9L5 8L7.5 10.5L13 5L14 6L7.5 12.5Z' fill='white'/%3E%3C/svg%3E");
}

.us-form-checkbox-input:focus + label:before {
    box-shadow: 0 0 0 3px rgba(13, 63, 188, 0.3);
}

.us-form-checkbox-input:checked + label:after {
    display: none;
}

.btn-group.us-product-quantity,
.btn-group[aria-label="us-product-quantity"] {
    border: 1px solid #E8EFF7;
    border-radius: 999px;
    overflow: hidden;
    background: transparent;
    color: var(--main-text);
}

.us-content-inform {
    color: var(--main-text);
    font-size: 14px;
    /*text-align: center;*/
}

.us-content a.us-cart-item-link {
    display: inline-block;
    margin-bottom: 4px;
    transition: color .15s ease .05s;
    color: #181F2D;
    font-size: 14px;
    text-decoration: none;
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
}

.us-product-quantity-btn {
    font-size: 14px;
    color: var(--main-text);
    background-color: transparent;
    border: none;
    transition: all .15s ease .05s;
}

.product-quantity-label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--main-text);
}

.us-product-quantity input {
    width: 75px;
    height: 50px;
    font-size: 13px;
    text-align: center;
    background-color: #FFF;
    border: none;
}

.us-product-quantity-btn, .us-product-quantity input {
    color: var(--main-text);
    font-weight: 400;
    padding: 0 20px;
    border-radius: 0;
    cursor: pointer;
}

.us-product .buttons-holder {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.us-product .buttons-holder button, .akv-themed-button.us-module-btn {
    border-radius: 999px;
    background-color: transparent;
    color: #0D3FBC;
    font-size: 11px;
    font-weight: 500;
    padding: 0;
    line-height: 46px;
    height: 50px;
    min-width: unset;
    width: calc(50% - 20px);
}

.akv-themed-button.us-module-btn {
    color: white !important;
    background-color: #0D3FBC !important;
    width: auto;
}

div.kj-item {
    border-color: #E8EFF7;
}

#button-cart {
    background-color: #0D3FBC;
    color: white;
}

#button-cart:active, #button-ukrcredits:active {
    background-color: rgba(13, 63, 188, 0.22) !important;
    outline: none;
    box-shadow: none;
}

.buttons-holder button img {
    display: none;
}

div.kj-item.currentProduct, .kjseries-category-item.selected, .kj-item-ajax.selected {
    border-color: #0D3FBC;
}

.ocs-article-item .us-module-title {
    color: var(--darkGraphite);
    text-transform: uppercase;
    font-family: 'CyGrotesk-GrandDemi', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.44;
    margin-bottom: 0;
    position: relative;
    letter-spacing: -0.5px;
    text-align: left;
    padding: 0;
    height: auto;
    margin-top: 10px;
}

.us-product-attr-title, .us-product-option-title {
    color: var(--main-text);
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 7px;
}


.us-product-one-click-text {

    color: var(--main-text);
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    font-weight: 500;
    font-size: 12px;
}

.us-product-one-click-icon {
    display: none;
}

.us-product-points {
    margin-top: 10px;
    font-size: 12px;
    color: var(--main-text);
    margin-left: 20px;
}

#oct_purchase_byoneclick_form_product {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
    margin-top: 21px;
    align-items: start;
    border-top: 1px solid #E8EFF7;
    padding-top: 30px;
}

.us-product-one-click-btn.akv-themed-button {
    max-width: 290px;
}

#one_click_input {
    border-radius: 999px;
    height: 50px;
    min-width: 100%;
}

.us-product-one-click-bottom {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
}

.input-group-btn .us-module-btn {
    padding: 0;
    border-radius: 999px;
    border: 0;
    text-transform: uppercase;
    margin-left: -1rem;
    z-index: 4;
    position: relative;
    font-size: 11px;
    font-weight: 500;
    line-height: 50px;
    min-width: unset;
    background-color: #1230D1 !important;
}

.us-product-one-click-btn:disabled {
    color: white !important;
    background-color: #aaabb1 !important;
    cursor: not-allowed;
}

b.ocf-btn-label {
    font-weight: 400;
}

.us-product-one-click-btn {
    padding: 0 !important;
    height: 50px;
}

.us-product-one-click-btn.akv-themed-button .us-item-btn-elements {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    padding-right: 5px;
    padding-left: 5px;
    height: 50px;
}

.us-product-one-click-btn.akv-themed-button svg {
    display: none;
}

#us-related-products-row .us-main-shop-title {
    padding-left: 0;
}

div#modal-going-to-corp-warning .modal-body {
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
}

div#modal-going-to-corp-warning .akv-themed-button {
    line-height: 49px;
    min-width: auto;
    background-color: transparent;
    color: #1230d1;
    font-size: 11px;
    font-weight: 500;
    padding: 0;
}

div#modal-going-to-corp-warning .akv-themed-button.cancel-button .us-item-btn-elements {
    padding-right: 0;
}

div#modal-going-to-corp-warning .modal-body p {
    text-align: center;
}

.akv-themed-button.back-blue {
    background-color: #1230D1 !important;
    color: white !important;
    border: 2px solid transparent;
}

div#modal-going-to-corp-warning .btn-group {
    gap: 1rem;
}

.us-content,
.oct-checkout {
    background-color: transparent;
    box-shadow: none;
    padding: 30px 0 0 0;
    height: auto;
    transition: unset;
    border-radius: 0;
}

.us-content:hover {
    box-shadow: unset;
}

#checkout-cart .us-main-shop-title {
    padding: 0;
    text-align: center;
}

.us-content .us-cart-item .us-cart-del {
    color: #B1B3B9;
    font-size: 16px;
    opacity: 1;
    background: transparent;
}

.us-product-option-name {
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    font-weight: 600;
    margin-top: 16px;
    color: var(--main-text);
    font-size: 12px;
    margin-bottom: 13px;
    display: block;
}

.us-cart-price-all {
    color: var(--darkGraphite);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
}

.required {
    color: #4D5562;
}

.navbar-nav {
    margin-bottom: 0;
    margin-top: 0;
    padding-inline-start: 0;
}

ul.navbar-nav li {
    padding-inline-start: 0;
    margin: 0;
}

.us-cart-item {
    flex-wrap: wrap;
    gap: 1rem;
}

.us-cart-item-right {
    justify-content: end;
    text-align: center;
    flex-grow: 1;
}


#us-cart-modal .modal-dialog {
    max-width: 440px;
    max-height: 100dvh;
    margin: 0 0 auto auto;
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
}

.modal-holder.opened #us-cart-modal .modal-dialog {
    transform: translateX(0);
}

.us-modal-body-cart {
    padding: 30px 0 0;
    max-height: unset;
    overflow-y: auto;
    margin-bottom: 30px;
    border-bottom: 1px solid #F6F6F6;
}

#us-cart-modal .modal-content {
    height: 100dvh;
}

#us-cart-modal .modal-header {
    background: white;
    border-bottom: 1px solid #E8EFF7;
    position: relative;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.modal-title {
    margin-top: 0;
}

#us-cart-modal .modal-header .modal-title {
    line-height: 95px;
    color: var(--darkGraphite);
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-size: 28px;
    letter-spacing: 0.065rem;
    text-align: left;
}

#us-cart-modal .modal-body {
    overflow-y: auto;
    padding: 0;
}

#us-cart-modal a.us-cart-item-link {
    color: #181F2D;
    font-weight: 600;
    font-family: 'CyGrotesk-KeyRegular', sans-serif;
    text-decoration: none;
    transition: color 0.2s ease;
}

#us-cart-modal .us-cart-item-right .us-product-quantity {
    margin-right: 15px;
    margin-left: 15px;
}

#us-cart-modal .us-product-quantity input {
    width: 30px;
    height: 50px;
    font-size: 13px;
    text-align: center;
    background-color: #FFF;
    border: none;
    padding-right: 3px;
    padding-left: 3px;
}

#us-cart-modal .us-product-quantity-btn {
    padding: 0 10px;
}

#us-cart-modal a.us-cart-item-link a {
    color: #0D3FBC;
    text-decoration: none;
}

.us-fixed-contact-dropdown.expanded {
    border-radius: 24px;
}

.us-fixed-contact-item-icon {
    border-radius: 999px;
}

#us_fixed_contact_button {
    border-radius: 999px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #E9EEF6;
    border-radius: 24px;
    padding: 12px 20px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.dropdown-header span {
    font-weight: 600;
    color: var(--main-text);
}

.dropdown-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdown-arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.dropdown-open .dropdown-arrow {
    transform: rotate(-135deg);
}

.dropdown-list {
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    padding-bottom: 10px;
    transition: max-height 0.3s, opacity 0.3s;
    border: 1px solid #E9EEF6;
}

.dropdown-open .dropdown-list {
    max-height: 310px;
    opacity: 1;
    overflow-y: auto;
}

.dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
}

.dropdown-item.selected {
    font-weight: bold;
    background-color: #f0f0f0;
}

.original-select {
    display: none;
}

.limit-select {
    display: none;
}

.custom-dropdown.dropdown-open .dropdown-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.us-module-stickers {
    left: 3px;
}

.us-module-stickers-sticker {
    color: #FFF;
    font-size: 10px;
    line-height: 18px;
    padding: 0 10px;
    margin-bottom: 4px;
    border-radius: 5px;

}

.us-product-stickers-item {
    margin-bottom: 4px;
    border-radius: 5px;
}

.us-product-btn-active, .us-product-btn:hover {
    background-color: #1230D1 !important;
}

.content-block.oct-checkout-block ul.dropdown-address {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    width: 93%;
}

.content-block .form-control {
    font-size: 14px;
}

.dropdown-address li a {
    transition: none;
    transition: background-color 0.1s ease;
}

.dropdown-address li:hover {
    background-color: #1230D1;
}

.us-footer-bottom-payment-item {
    padding-inline-start: 0;
}

.content-block.oct-checkout-block option:hover {
    background-color: #1230D1;
    box-shadow: 0 0 10px 100px #1230D1 inset;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
}

.us-categories-box > .us-categories-item > span > a {
    color: var(--darkGraphite) !important;
    font-weight: bold;
}

.us-module-buttons-list {
    display: none !important;
}

.us-product-minimum {
    background-color: rgba(0, 51, 255, 0.08) !important;
}

.ocf-selected-card {
    padding: 15px 0 !important;
}

.content-block-title.with-border-bottom {
    font-family: 'CyGrotesk-Wide', serif;
    font-weight: 400;
}

.us-category-content {
    padding: 15px 0 30px 15px;
}

.oct-checkout-block.shipping-method .form-check-item label {
    font-family: 'CyGrotesk-Wide', serif;
    font-weight: 400;
    font-size: 16px;
}

.ds-cart-item.oct-checkout-block .oct-checkout-cart-total, .ds-cart-column-total-item {
    font-family: 'CyGrotesk-Wide', serif;
    font-weight: 400;
}

.ds-cart-item-title a {
    font-weight: 400;
    font-family: 'CyGrotesk-Wide', sans-serif;
}

.fw-400 {
    font-weight: 400;
}

.dropdown-header-content .control-label {
    margin-bottom: 0;
}

.us-four-banners-item {
    height: auto;
}

.us-four-banners-item:hover {
    box-shadow: none;
}

.us-four-banners-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.us-notifier-wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

.us-notifier-wrapper .akv-themed-button {
    max-width: 300px;
}

.modal-header {
    background: white;
    border-bottom: 1px solid #E8EFF7;
    position: relative;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    padding: 0 30px;
}

.modal-body {
    border-radius: 0 0 4px 4px;
}

button.us-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    background: transparent;
    margin: 0;
    opacity: 0.34;
    transition: opacity 0.2s;
    padding: 0;
}

.us-modal-close-icon {
    position: absolute;
    left: 50%;
    bottom: 0;
    border: 1px solid #FFFFFF;
    height: 16px;
    top: 50%;
}

.us-modal-close-left {
    transform: translateY(-50%) rotate(135deg);
}

.us-modal-close-right {
    transform: translateY(-50%) rotate(45deg);
}

.us-modal-body-one-click-left {
    border-right: 1px solid #E8EFF7;
}

.product_title {
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    color: var(--darkGraphite);
    font-weight: 500;
}

.modal-content .us-price-block {
    margin-top: 1rem;
}

.modal-content .us-price-block .control-label.control-label-price {
    font-weight: 400;
}

.modal-content .us-price-block .us-module-price-actual {
    color: var(--darkBlue);
    font-family: 'CyGrotesk-Wide', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}

button.us-close:hover {
    opacity: 1;
    background-color: transparent;
}

.us-modal-close-icon {
    border-color: #010006 !important;
}

.modal-header .modal-title {
    color: var(--darkGraphite);
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-size: 24px;
    text-align: center;
    width: 100%;
    line-height: 85px;
}

#notifier-main-block p {
    text-align: center;
    width: 100%;
}

.akv-themed-button:disabled {
    opacity: 70%;
    cursor: not-allowed;
}


.oct-menu-item-name {
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 400;
}

.oct-menu-back {
    font-weight: 400;
    font-family: 'CyGrotesk-WideMedium', sans-serif;
}

.phone-wrapper.text-center.phone-mobile-menu {
    font-family: 'CyGrotesk-WideMedium', sans-serif;
    font-weight: 400;
    color: var(--darkGraphite);
    font-size: 18px;
}

.menu-group-wrapper {
    display: flex;
    align-items: center;
}

.menu-services li {
    padding-inline-start: 0;
}
div#ukrcredit-popup {
    border-radius: 4px;
    color: var(--darkGraphite);
    padding: 0;
    max-width: 900px;
    padding-bottom: 30px;
}
div#ukrcredit-popup .credithead {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E9EEF6;
    font-family: CyGrotesk-WideMedium, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}
.mfp-close-btn-in .mfp-close {
    height: 70px;
    width: 70px;
    font-size: 0;
    background: url('/catalog/view/theme/oct_ultrastore/image/cross.svg') no-repeat center;
    color: transparent;
}
div#ukrcredit-popup .proposition {
    margin-bottom: 0;
    border: none;
    display: flex;
    flex-direction: row;
    padding: 40px 70px;
    justify-content: space-between;
    border-bottom: none;
}
div#ukrcredit-popup .prop_name, .prop_info {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    width: calc(30% - 10px);
}
div#ukrcredit-popup .proposition:hover {
    background: none;
}

#ukrcredit-popup .credit-content:has(.proposition) {
    border-bottom: 1px solid #E9EEF6;
}

#ukrcredit-popup .credit-content:last-of-type{
    border-bottom: none;
}

#ukrcredit-popup .credit-content:not(:has(.proposition)){
    display: none;
}
#ukrcredit-popup .prop_calc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem!important;
}
.prop_info {
    width: calc(70% - 10px);
    flex-direction: column;
    align-items: end;
}
.prop_name, .prop_info {
    width: calc(30% - 4px);
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
 }
div#ukrcredit-popup .prop_total {
    text-align: unset;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    justify-content: space-between;
}

.credit-content {
    display: flex;
    flex-direction: column;
}

div#ukrcredit-popup .ds-product-main-cart-button {
    border-color: #b5bcd5;
    line-height: 60px;
    border-width: 2px;
    border-style: solid;
    cursor: pointer;
    border-radius: 999px;
    background-color: transparent;
    color: #0D3FBC;
    font-weight: 600;
    padding: 0;
    height: 62px;
    min-width: unset;
    font-size: 11px;
    text-transform: uppercase;
    width: 300px;
    font-family: CyGrotesk-KeyRegular, sans-serif;
    transition: border-color 0.3s ease;
    max-width: 188px;
    user-select: none;

}
div#ukrcredit-popup .ds-product-main-cart-button:hover{
    border-color: var(--darkBlue);
}
div#ukrcredit-popup .progress {
    height: 6px;

    background-color: #E9EEF6;
    border-radius: 0;
    -webkit-box-shadow:none;
    box-shadow: none;
}
div#ukrcredit-popup .progress-bar {
    height: 6px;
    box-shadow: none;
    background-color: var(--darkBlue);
}
div#ukrcredit-popup .prop_total .prop_price,
div#ukrcredit-popup .prop_permounth {
    font-family: CyGrotesk-Wide, sans-serif;
    font-size: 16px;
}
div#ukrcredit-popup span.ui-slider-handle.ui-state-default.ui-corner-all {
    width: 0.1em;
    top: -0.6em;
    transform: translateX(-50%);
    cursor: w-resize;
    margin-left: 0;
    border-color: var(--darkBlue);
}
div#ukrcredit-popup .prop_paymentsCount{
    color: #46526C;
}
span.ui-slider-handle.ui-state-default.ui-corner-all:active,
span.ui-slider-handle.ui-state-default.ui-corner-all:hover,
span.ui-slider-handle.ui-state-default.ui-corner-all:focus{

    cursor: w-resize;
}

div#content .us-content img {
    max-width: 100%;
}

/*media*/
@media screen and (min-width: 1200px) {
    .product-layout:not(:nth-child(3n)):not(:last-child) {
        border-right: none;
    }

    .akv-categories-wall .us-categories-wall-item:not(:nth-child(6n)):not(:last-child) {
        border-right: none;
    }

    .us-featured-articles {
        max-width: 580px;
    }

    .us-featured-articles-row .us-featured-articles:nth-child(2) {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }

    .us-featured-articles-row .us-featured-articles:nth-child(3) {
        margin-left: auto;
        width: 100%;
    }
}

@media screen and (min-width: 576px) and (max-width: 1199px) {
    .product-layout:not(:nth-child(2n)):not(:last-child) {
        border-right: none;
    }

}

@media (min-width: 1620px) {
    .product-grid {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media screen and (min-width: 1441px) {
    .akv-featured-articles .us-featured-articles-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1440px) {
    #akvantis-menu .desktop-logo {
        height: 32px;
        width: 150px;
    }
}


@media (max-width: 1199px) {

    .akv-featured-articles .us-featured-articles-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .us-product .buttons-holder {
        flex-wrap: wrap;
    }

    #oct_purchase_byoneclick_form_product {
        flex-direction: column;
    }

    #one_click_input {
        max-width: unset;
    }

    .akv-categories-wall .us-categories-wall-row {
        flex-wrap: wrap;
    }

    .akv-categories-wall .us-categories-wall-item:not(:nth-child(3n)):not(:last-child) {
        border-right: none;
    }

    .akv-categories-wall .us-categories-wall-item {
        width: 33.3333%;
        flex: auto;
    }

    .akv-categories-wall .us-categories-wall-item .us-categories-wall-img {
        max-width: 26.75vw;

    }
}

@media screen and (max-width: 1024px) {
    :root {
        --box: 44px;
    }

    #us_menu_mobile_box.expanded {
        transform: translateX(100%);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    }

    #us_menu_mobile_box {
        max-width: 100dvw;
    }

    #akvantis-menu .mobile-menu-logo, #akvantis-menu .mobile-logo {
        display: block;
    }

    #akvantis-menu .mobile-menu-logo {
        height: 47px;
        display: flex;
        align-items: center;
        padding-left: 6px;
        padding-right: 18px;
        border-right: 1px solid var(--ligthGrey);
        margin-right: 18px;
    }

    .desktop-logo {
        display: none;
    }

    #akvantis-menu .logo-wrapper {
        padding-right: 0;
        height: auto;
        display: flex;
        align-items: center;
        border-right: none;
        max-height: 78%;
    }

    #akvantis-menu .site-switcher {
        display: none;
    }

    #akvantis-menu .phone-wrapper {
        display: none;
    }

    #akvantis-menu .header-container {
        align-items: center;
        background: #fff;
        border-radius: 16px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        display: flex;
        height: 100%;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
        width: calc(100vw - var(--scroll-width));
        padding: 0 12px;
        border: none;
    }

    .akvantis-search-themed.active {
        max-width: 100dvw;
        width: 100dvw;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        padding: 12px 21px;
        height: 68px;
        max-height: unset;
    }

    .akvantis-search-themed.active .us_livesearch.expanded {
        top: 21px;
    }

    #akvantis-menu .menu-wrapper {
        display: none;
    }

    #akvantis-menu.header-inner {
        height: 68px;
        left: 0;
        padding: 0;
        position: relative;
        top: 0;
        transition: height .3s;
        width: 100%;
        z-index: 10;
    }

    .search-wrapper {
        position: relative;
    }

    #akvantis-menu #oct-search-button i {
        font-size: 16px;
    }

    .akvantis-search-themed {
        max-width: 90vw;
        transition: width .2s, max-width .2s;
        z-index: 110;
        font-size: 14px;
        font-family: 'CyGrotesk-WideMedium', serif;
    }

    .akvantis-search-themed button[type="button"] {
        padding: 0;
        border: none;
        background: transparent;
        font-size: 1rem;
    }

    .cart-wrapper {
        align-items: center;
        justify-content: center;
    }

    .cart-wrapper #cart.us-cart-box {
        display: block !important;
    }

    .us-cart-img {
        --size: 44px;
    }

    .us-cart-img svg {
        --size-svg: 20px;
    }

    .header-cart-index {
        --size: 12px;
        left: auto;
        right: 0;
        top: 0;
        --menu-font-size: 9px;
        padding: 0 2px;
    }

    .oct-menu-li > a, .oct-menu-li > div > a {
        font-size: 17px;
        font-weight: 600;
        color: var(--darkGraphite);
    }

    .site-switcher.mobile {
        margin-top: 46px;
        text-align: center;
        font-size: 17px;
        font-family: 'CyGrotesk-WideMedium', sans-serif;
        font-weight: 400;
    }

    .site-switcher.mobile svg {
        margin-top: -2px;
    }

    #oct-menu-ul {
        margin-top: 37px;
    }

    .oct-menu-li > a, .oct-menu-li > div > a {
        height: 41px;
        display: flex;
        align-items: center;
    }

    .akv-slideshow-plus .image-wrapper:before {
        height: 100%;
    }

    .akv-slideshow-plus .us-slideshow-plus-item-info {
        text-align: left;
    }

    .akv-slideshow-plus .us-slideshow-plus-item-info .us-slideshow-plus-item-title {
        font-size: 48px;
        line-height: 1.1;
        max-width: 100%;
        text-align: left;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphenate-character: "-";
    }

    .akv-categories-wall .us-categories-wall-row {
        justify-content: center;
    }

    .mobile-button-holder {
        margin-top: 54px;
    }

    .mobile-button-holder .akv-themed-button {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        min-width: auto;
    }

    .akv-footer {
        --footer-font-size: 14px;
    }

    .akv-footer-copyrights {
        flex-direction: column-reverse;
        align-items: normal;
    }

    .akv-footer-copyright {
        padding-top: 15px;
        padding-bottom: 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .akv-footer .akv-footer-terms {
        padding-bottom: 15px;
        width: 100%;
    }

    .akv-footer .akv-footer-terms-phone {
        justify-content: start;
    }

    .akv-footer .akv-footer-content .akv-footer-copyrights {
        padding: 15px 0;
        font-size: 14px;
        width: 90%;
        max-width: 90%;
    }

    .akv-footer .akv-footer-content .akv-footer-inner {
        width: 90%;
        padding-bottom: 32px;
    }

    .akv-footer .akv-footer-content .us-footer-phone-btn {
        font-size: var(--footer-font-size);
        line-height: 1.44;
        margin-bottom: 0;
        color: white;
        opacity: .8;
        transition: opacity .2s ease;
    }

    .akv-footer .akv-footer-content a.social-link {
        font-size: 24px;
    }

    .akv-footer .language-switch button.language-select {
        font-size: var(--footer-font-size);
    }

    .akv-footer .footer-menu-wrapper a {
        font-size: var(--footer-font-size);
    }

    .akv-footer .akv-footer-image {
        left: auto;
        right: 0;
    }
}

@media screen and (max-width: 991px) {
    body.top {
        padding-top: 0;
    }

    #language, #currency, #us_info_mobile .mobile-shedule-box, #us_info_mobile .mobile-phones-box {
        border-bottom: none;
        padding: 0;
        margin: 0;
    }


    .akv-footer {
        --footer-font-size: 10px;
    }

    .akv-footer .akv-footer-content {
        width: 100%;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .akv-footer .akv-footer-content a.social-link {
        opacity: 1;

    }

    .akv-footer .language-switch {
        opacity: 1;
    }

    .akv-footer .akv-footer-content .us-footer-phone-btn {
        opacity: 1;
    }

    .akv-footer .footer-menu-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: 70px;
    }

    .us-footer-list, .us-footer-contact-list {
        margin-bottom: 0;
        display: block;
    }

    .us-footer-box {
        border-bottom: none;
    }

    .akv-footer .footer-menu-wrapper .us-footer-box {
        padding: 0 clamp(15px, 4vw, 70px);
    }

    .akv-footer .akv-footer-content a.social-link {
        order: 2;
    }

    .akv-footer .akv-footer-terms-terminator {
        display: block;
    }

    .akv-footer .akv-footer-content .akv-footer-inner {
        border-bottom: 0;
    }

    .akv-footer .akv-footer-promo {
        padding: 124px 15px;
        color: white;
        opacity: 1;
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .akv-footer .akv-footer-promo .akv-footer-promo-head {
        font-size: 30px;

    }

    .akv-footer .akv-footer-promo .akv-footer-promo-head span {
        display: inline-block;
        width: 100%;
    }

    .akv-footer .akv-footer-promo .akv-footer-promo-head span:first-of-type {
        width: 265px;
    }

    .akv-footer .akv-footer-promo .akv-footer-promo-desc {
        margin-top: 24px;
    }

    #product-category .heading-block {
        flex-direction: column;
        gap: 24px;
    }

    .sort-limit select {
        max-width: 100% !important;
    }

    #column-left, #column-right {
        display: none !important;
    }

    #column-left.opened {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        bottom: auto;
        display: block !important;
        visibility: visible;
        overflow: visible;
        z-index: 2147483648;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        text-indent: 0;
        opacity: 0;
        background: white;
        height: auto;
        transform: translateY(-50%);
        padding: 30px;
        width: 100dvw;
        max-width: 100dvw;
        transition: all 0.2s ease-in-out;
        padding-left: 30px !important;
    }

    .us-category-content #column-left > .ocf-container.ocf-mobile-1 {
        display: none !important;
    }

    .us-category-sort-block {
        width: 100%;
    }


    .us-product-left, .us-product-right, .us-blog-category-cont .us-news-block {
        width: 100%;
    }

    .akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-text {
        text-align: center;
        padding-left: 22px;
        padding-right: 22px;
        max-width: 100%;
        order: 3;
        position: static;

    }

    .akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info {
        order: 2;
        position: static;
        text-align: center;
        padding-bottom: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 48px;
        transform: translateY(0%);
    }

    .akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info .us-slideshow-plus-item-title {
        font-family: 'CyGrotesk-Wide', sans-serif;
        font-size: 22px;
        text-align: center;
        padding-left: 16px;
        padding-right: 16px;
        text-transform: none;
        max-width: 100%;
        font-weight: 600;
        line-height: 1.1;
        order: 1;
        margin-bottom: 0;
    }

    .akv-slideshow-plus.slide-type-3 .col-lg-12.us-slideshow-plus-box {
        padding: 0;
        max-height: none;
        height: auto;
    }

    .akv-slideshow-plus.slide-type-3 .us-slideshow-plus-item-info .us-slideshow-plus-item-btn {
        margin: 0 auto;
        order: 2;
    }

    .us-main-shop-title {
        font-size: 20px;
    }

    #us-cart-modal .modal-header .modal-title {
        font-size: 20px;
        line-height: 70px;
    }

    .us-product-info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-header .modal-title {
        font-size: 20px;
        line-height: 26px;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .akv-categories-wall .us-categories-wall-item:not(:nth-child(2n)):not(:last-child) {
        border-right: none;
    }

    .akv-categories-wall .us-categories-wall-item {
        width: 50%;

        flex: auto;
    }

    .akv-categories-wall .us-categories-wall-item .us-categories-wall-img {
        transition: all .2s ease;
        max-width: 100%;

    }
}

@media screen and (min-width: 768px) {
    .us-product-one-click {
        padding-right: 0;
    }

    #us-subcat .us-item {
        border-right: 1px solid;
    }

    #us-subcat .us-item:not(:nth-child(4n)):not(:last-child) {
        border-right: none;
    }

    .ocf-value-slider {
        padding: 10px 19px 0 !important;
    }

    .ocf-theme-light .ocf-selected-card {
        box-shadow: none !important;
    }

    .ocf-selected-header {
        font-size: 14px !important;
        font-family: 'CyGrotesk-KeyRegular', sans-serif;
        color: var(--darkGraphite);
    }

    .ocf-content {
        margin-bottom: 25px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 575px) {
    .product-grid .us-module-title, .product-grid .us-product-list-description {
        height: auto;
    }

    .us-product .buttons-holder button, .akv-themed-button.us-module-btn {
        width: auto;
    }

    .us-product-one-click-bottom {
        width: 100%;
    }

    .us-product-one-click-btn.akv-themed-button {
        max-width: 100%;
        width: 100%;
    }

    .us-product .buttons-holder {
        flex-wrap: wrap;
        flex-direction: column;
    }

    div#modal-going-to-corp-warning .btn-group {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .akv-featured-articles .us-featured-articles-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .us-breadcrumb {
        padding: 24px 0 24px 0;
    }

    .us-product-one-click-btn.akv-themed-button {
        max-width: 220px;
    }

    .akv-footer .footer-menu-wrapper {
        flex-direction: column;
    }

    .akv-footer .footer-menu-wrapper .us-footer-box {
        padding: 0;
    }
}

@media screen and (max-width: 450px) {
    .akv-footer-terms {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .akv-footer .akv-footer-content .socials {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }

}

iframe {
    max-width: 100%;
}

iframe[src*='youtube.com'], iframe[src*='youtu.be'] {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.max-h-50 {
    max-height: 50px;
}