.product__sum .lower-price-black-friday {
	text-decoration: line-through;
	font-family: 'Single Day', cursive;
	font-size: 45px;
	font-weight: 400;
	line-height: 110%;
}

/*Search modify*/
.header .header__search .btn-search {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0;
    background-color: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 22px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    border: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background-color: transparent;
}

.header .header__search button {
    width: 0;
    height: 0;
}
/*End Search modify*/

.header__nav-parent {
    display: flex;
    align-items: center;
}

.header .header__nav-parent > a {
    padding: 30px 4px 30px 0 !important;
}

.header__nav-toggle {
    position: relative;
    width: 24px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header__nav-toggle::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 7px;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .15s ease, top .15s ease;
}

.header .menu-item-has-children:hover .header__nav-toggle,
.header .menu-item-has-children:focus-within .header__nav-toggle {
    color: #3b2ac0;
}

.header__mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    min-height: 400px;
    padding: 0;
    border-top: 1px solid #3b2ac0;
    background: rgba(255, 255, 255, .75);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.header .menu-item-has-children:hover > .header__mega-menu,
.header .menu-item-has-children:focus-within > .header__mega-menu,
.header .menu-item-has-children.is-open > .header__mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media screen and (min-width: 992px) {
    .header:has(.menu-item-has-children:hover > .header__mega-menu),
    .header:has(.menu-item-has-children:focus-within > .header__mega-menu),
    .header:has(.menu-item-has-children.is-open > .header__mega-menu) {
        background: #fff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .header.sticky:has(.menu-item-has-children:hover > .header__mega-menu),
    .header.sticky:has(.menu-item-has-children:focus-within > .header__mega-menu),
    .header.sticky:has(.menu-item-has-children.is-open > .header__mega-menu) {
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
}

.header__mega-menu-inner {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0 30px;
}

.header__mega-menu-inner.has-recommendations {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(480px, .8fr);
    gap: 52px;
}

.header__mega-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 28px;
    align-content: start;
}

.header .header__mega-category {
    min-width: 0;
}

.header .header__mega-menu .header__mega-category-title,
.header .header__mega-menu .header__mega-recommended-title {
    display: block;
    margin: 0 0 16px;
    padding: 0 !important;
    color: #c2c2c2;
    font-family: 'Klein', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.25;
    letter-spacing: .05em;
    text-transform: uppercase !important;
}

.header .header__mega-category ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.header .header__mega-category li {
    width: auto;
    margin: 0;
    padding: 0;
}

.header .header__mega-category li a {
    display: block;
    padding: 0 !important;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-transform: none;
}

.header .header__mega-category a:hover,
.header .header__mega-category a:focus {
    color: #3b2ac0;
}

.header__mega-recommended {
    min-width: 0;
}

.header__mega-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.header .header__mega-product {
    display: block;
    min-width: 0;
    padding: 0 !important;
    color: #2c2c2c;
    text-decoration: none;
}

.header .header__mega-product img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0 0 8px;
    object-fit: cover;
    object-position: center;
    background: #f4f4f4;
}

.header .header__mega-product span {
    display: block;
    padding: 0 !important;
    color: #2c2c2c;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
}

.header .header__mega-product:hover,
.header .header__mega-product:focus {
    color: #3b2ac0;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .header__mega-menu-inner.has-recommendations {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr);
        gap: 32px;
    }

    .header__mega-categories {
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .header__nav-parent {
        justify-content: space-between;
        width: 100%;
    }

    .header .header__nav-parent > a {
        width: auto;
        padding: 0 !important;
    }

    .header__nav-toggle {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .header__nav-toggle::before {
        top: 14px;
        left: 14px;
        width: 10px;
        height: 10px;
    }

    .header .menu-item-has-children.is-open .header__nav-toggle::before {
        top: 19px;
        transform: rotate(225deg);
    }

    .header__mega-menu {
        position: static;
        display: none;
        width: 100%;
        min-height: 0;
        margin-top: 18px;
        border-top: 1px solid #dedede;
        background: transparent;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .header .menu-item-has-children:hover > .header__mega-menu,
    .header .menu-item-has-children:focus-within > .header__mega-menu {
        display: none;
    }

    .header .menu-item-has-children.is-open > .header__mega-menu {
        display: block;
    }

    .header__mega-menu-inner,
    .header__mega-menu-inner.has-recommendations {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        padding: 22px 0 30px;
    }

    .header__mega-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .header .header__mega-category-title,
    .header .header__mega-recommended-title {
        margin-bottom: 12px;
    }

    .header__mega-products {
        display: grid;
        grid-auto-columns: 118px;
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 10px;
        padding-bottom: 4px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .header__mega-products::-webkit-scrollbar {
        display: none;
    }

    .header .header__mega-product {
        scroll-snap-align: start;
    }

    .header .header__mega-product img {
        margin-bottom: 6px;
    }

    .header .header__mega-product span {
        display: -webkit-box;
        overflow: hidden;
        font-size: 13px !important;
        line-height: 1.25 !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

@media screen and (max-width: 576px) {
    .header__mega-categories {
        grid-template-columns: 1fr;
    }
}

.header-live-search {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-live-search__trigger {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-live-search__trigger img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.header-live-search__panel {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1003;
    display: none;
    width: 100vw;
    max-height: min(700px, calc(100vh - 100px));
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 0;
    background: #fff;
    transform: translateX(-50%);
}

.header-live-search.is-open .header-live-search__panel {
    display: block;
}

.header-live-search__form {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 36px;
    gap: 10px;
    align-items: center;
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 12px;
    border-bottom: 1px solid #e7e7e7;
}

.header-live-search__form-icon {
    width: 18px;
    height: 18px;
}

.header-live-search__input {
    min-width: 0;
    height: 42px;
    padding: 0 16px !important;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    outline: none;
    color: #2c2c2c;
    background: #fff;
    font-size: 16px;
}

.header-live-search__input:focus {
    border-color: #2c2c2c;
    box-shadow: 0 0 0 2px rgba(44, 44, 44, .12);
}

.header-live-search__close {
    position: relative;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-live-search__close::before,
.header-live-search__close::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 9px;
    width: 18px;
    height: 2px;
    background: #2c2c2c;
}

.header-live-search__close::before {
    transform: rotate(45deg);
}

.header-live-search__close::after {
    transform: rotate(-45deg);
}

.header-live-search__content {
    max-height: min(552px, calc(100vh - 245px));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #aaa transparent;
}

.header-live-search__content::-webkit-scrollbar {
    width: 7px;
}

.header-live-search__content::-webkit-scrollbar-track {
    background: transparent;
}

.header-live-search__content::-webkit-scrollbar-thumb {
    border: 2px solid #fff;
    border-radius: 8px;
    background: #aaa;
}

.header-live-search__status {
    margin: 0;
    padding: 28px 18px;
    color: #747474;
    text-align: center;
    font-size: 14px;
}

.header-live-search__status[hidden] {
    display: none;
}

.header-live-search__results {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(960px, 100%);
    margin: 0 auto;
    border-right: 1px solid #ededed;
    border-left: 1px solid #ededed;
}

.header-live-search__result {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 10px 16px;
    border-bottom: 1px solid #ededed;
    color: #2c2c2c;
    text-decoration: none;
    transition: background-color .15s ease;
}

.header-live-search__result:hover,
.header-live-search__result:focus {
    color: #2c2c2c;
    background: #f6f6f6;
}

.header-live-search__result-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #f6f6f6;
}

.header-live-search__result-name {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.3;
}

.header-live-search__result-stock {
    display: block;
    color: #b42318;
    font-size: 12px;
}

.header-live-search__result-price {
    min-width: 105px;
    text-align: right;
    white-space: nowrap;
    font-size: 15px;
}

.header-live-search__result-price del {
    margin-right: 6px;
    color: #888;
}

.header-live-search__all {
    display: block;
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 15px 20px;
    color: #2c2c2c;
    background: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.header-live-search__all:hover {
    color: #4129c7;
}

.header-live-search__all[hidden] {
    display: none;
}

.header-live-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .58);
}

body.admin-live-search-open {
    overflow: hidden;
}

body.admin-live-search-open .header {
    z-index: 1002;
    background: #fff;
}

body.admin-live-search-open .header-live-search-overlay {
    display: block;
}

@media screen and (max-width: 767px) {
    .header-live-search__panel {
        position: fixed;
        top: 82px;
        left: 10px;
        width: calc(100vw - 20px);
        max-height: calc(100vh - 94px);
        transform: none;
    }

    .header-live-search__form {
        grid-template-columns: 18px minmax(0, 1fr) 36px;
        gap: 8px;
        width: 100%;
        padding: 10px;
    }

    .header-live-search__content {
        max-height: calc(100vh - 220px);
    }

    .header-live-search__results {
        grid-template-columns: 1fr;
        border-right: 0;
        border-left: 0;
    }

    .header-live-search__result {
        grid-template-columns: 60px minmax(0, 1fr);
        min-height: 80px;
        padding: 10px;
    }

    .header-live-search__result-image {
        width: 60px;
        height: 60px;
    }

    .header-live-search__result-price {
        grid-column: 2;
        min-width: 0;
        text-align: left;
    }
}

.item__img {
    position: relative;
    overflow: hidden;
}

.item-gallery-swiper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.item-gallery-swiper .swiper-wrapper {
    height: 100%;
}

.item-gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

.item-gallery-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-user-drag: none;
}

.item-gallery-swiper__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 32px;
    height: 44px;
    margin-top: -22px;
    background: rgba(255, 255, 255, .75);
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s ease, background-color .2s ease;
}

.item__img:hover .item-gallery-swiper__nav {
    opacity: 1;
}

.item-gallery-swiper__nav:hover {
    background: #fff;
}

.item-gallery-swiper__nav--disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.item-gallery-swiper__nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #2C2C2C;
    border-right: 2px solid #2C2C2C;
}

.item-gallery-swiper__nav--prev {
    left: 0;
}

.item-gallery-swiper__nav--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.item-gallery-swiper__nav--next {
    right: 0;
}

.item-gallery-swiper__nav--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.item-gallery-swiper__pagination {
    bottom: 10px !important;
    left: 50% !important;
    display: inline-flex;
    width: auto !important;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    transform: translateX(-50%);
}

.item-gallery-swiper__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 3px !important;
    padding: 0;
    border: 0;
    background: #2C2C2C;
    opacity: .25;
    cursor: pointer;
}

.item-gallery-swiper__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .item-gallery-swiper__nav {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    html,
    body,
    #page {
        max-width: 100%;
        overflow-x: hidden;
    }

    .item-list {
        margin-left: 0;
        gap: 25px;
    }

    .item-list .item {
        width: calc(50% - 12.5px);
        margin-left: 0;
        margin-bottom: 25px;
    }

    .filter__btns {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
}


.contacts {
    margin-bottom: 100px;
}

.contacts h1 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.contacts-img {
    text-align: right;
}

.contacts-img img {
    width: 90%;
    border-radius: 30px;
}

.contacts-subtitle {
    margin-bottom: 70px;
}

.c-subtitle {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.cont-item p {
    font-size: 15px;
    margin-bottom: 20px;
}

.c-social a {
    margin-right: 10px;
}

.contact-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
    .contacts h1 {
        font-size: 30px;
    }
    .contacts-subtitle {
        margin-bottom: 30px;
    }
    .contacts-img img {
        width: 100%;
    }
    .contacts {
        margin-bottom: 50px;
    }
}



.address-field {
	width: 100%;
}

#billing_first_name_field {
	order: 1;
}
#billing_last_name_field {
	order: 2;
}
#billing_country_field {
	order: 5;
}
#billing_phone_field {
	order: 3;
}
#billing_email_field {
	order: 4;
}





/*General*/
body {
    font-family: Ubuntu;
    font-size: 15px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.25;
}

:root {
    --black: #2C2C2C;
    --orange: #E3592A;
}



@font-face {
    font-family: Ubuntu;
    src: url(/wp-content/themes/animalism/fonts/Ubuntu-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Ubuntu;
    src: url(/wp-content/themes/animalism/fonts/Ubuntu-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: MontserratAlternates;
    src: url(/wp-content/themes/animalism/fonts/MontserratAlternates-SemiBold.ttf);
    font-weight: 500;
}

@font-face {
    font-family: MontserratAlternates;
    src: url(/wp-content/themes/animalism/fonts/MontserratAlternates-Bold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: SingleDay;
    src: url(/wp-content/themes/animalism/fonts/SingleDay-Regular.ttf);
    font-weight: 400;
}

@font-face {
  font-family: 'Klein';
  src: local("KleinText-ExtraBold"), local("KleinText-ExtraBold"), url("../fonts/KleinText-ExtraBold.woff2") format("woff2"), url("../fonts/KleinText-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}











body {
        margin: 0;
    }
    .post, .page {
        margin: 0;
    }
    .temp-screen-box {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .temp-screen {
        background-color: #EFEEF1;
        text-align: center;
        border-radius: 25px 25px 0 0;
        margin: 0px 20px 0 20px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 90vh;
        width: 95%;
    }
    .logo-img {
        height: 80vh;
    }
    .mobile-screen-box {
        display: none;
    }
    @media screen and (max-width: 767px) {
        .temp-screen-box {
            display: none !important;
        }
        .mobile-screen-box {
            height: 100vh;
            display: flex;
            align-items: flex-end;
            position: fixed;
            padding-bottom: 70px;
            background-color: #EFEEF1;
        }
        .mobile-screen {
            height: 100vh;
            display: flex;
            align-items: flex-end;
        }
        .logo-img-m {
            width: 100%;
        }
    }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.woocommerce-notices-wrapper .woocommerce-message {
	background-color: transparent;
	padding: 15px 10px;
}

.woocommerce-notices-wrapper .woocommerce-message a {
	color: #E3592A;
	text-decoration: underline;
}

.product .calc .rewish-logo.animalism-rewish-wrap {
    position: absolute !important;
    top: 50% !important;
    left: auto !important;
    right: -12px !important;
    width: auto !important;
    height: auto !important;
    transform: translateY(calc(-50% - 1px)) !important;
    transition: none !important;
    z-index: 4 !important;
    display: block !important;
}

.product .calc .rewish-logo.animalism-rewish-wrap .animalism-rewish-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box !important;
    line-height: 1;
}

.product .calc .rewish-logo.animalism-rewish-wrap .animalism-rewish-btn.rewish-logo-icon {
    background-image: none !important;
}

.product .calc .rewish-logo.animalism-rewish-wrap .animalism-rewish-btn img {
    width: 20px;
    height: 20px;
    display: block;
}

@media screen and (max-width: 767px) {
    .product .calc .rewish-logo.animalism-rewish-wrap {
        right: -10px !important;
    }

    .product.product-type-simple .summary form.cart {
        position: relative;
        padding-bottom: 62px;
    }

    .product.product-type-simple .calc .rewish-logo.animalism-rewish-wrap {
        top: auto !important;
        right: auto !important;
        bottom: -58px !important;
        left: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .product.product-type-simple .calc .rewish-logo.animalism-rewish-wrap .animalism-rewish-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.animalism-admin-product-gallery-layout {
    display: block;
    width: min(100%, 496px);
    min-width: 0;
    margin: 0 auto;
}

.animalism-admin-product-gallery-layout.has-thumbnails {
    display: grid;
    grid-template-columns: 78px minmax(0, 496px);
    gap: 12px;
    width: min(100%, 586px);
}

.animalism-admin-product-gallery {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #f4f4f4;
}

.animalism-admin-product-gallery-thumbs {
    width: 78px;
    height: 596px;
    overflow: hidden;
}

.product .animalism-admin-product-gallery-thumbs .swiper-wrapper {
    flex-wrap: nowrap;
}

.product .animalism-admin-product-gallery-thumbs .swiper-slide {
    flex-shrink: 0;
    width: 78px;
    height: 88px;
    border: 1px solid transparent;
    background: #f4f4f4;
    cursor: pointer;
    opacity: .58;
    overflow: hidden;
    transition: border-color .2s ease, opacity .2s ease;
}

.product .animalism-admin-product-gallery-thumbs .swiper-slide-thumb-active {
    border-color: #2c2c2c;
    opacity: 1;
}

.product .animalism-admin-product-gallery-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product .animalism-admin-product-gallery-thumbs .animalism-admin-product-gallery-thumbs__video {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product .animalism-admin-product-gallery .swiper-wrapper {
    flex-wrap: nowrap;
}

.product .animalism-admin-product-gallery .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 596px;
    overflow: hidden;
}

.product .animalism-admin-product-gallery .animalism-admin-product-gallery__image,
.product .animalism-admin-product-gallery video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.animalism-admin-product-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(44, 44, 44, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    cursor: pointer;
    transform: translateY(-50%);
}

.animalism-admin-product-gallery__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #2c2c2c;
    border-right: 2px solid #2c2c2c;
}

.animalism-admin-product-gallery__nav--prev {
    left: 18px;
}

.animalism-admin-product-gallery__nav--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.animalism-admin-product-gallery__nav--next {
    right: 18px;
}

.animalism-admin-product-gallery__nav--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.animalism-admin-product-gallery__nav.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}

.animalism-admin-product-gallery__pagination {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: auto !important;
    z-index: 5;
    width: auto !important;
    padding: 5px 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .88);
    color: #2c2c2c;
    font-size: 13px;
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .animalism-admin-product-gallery-layout.has-thumbnails {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: 100%;
    }

    .animalism-admin-product-gallery-layout.has-thumbnails .animalism-admin-product-gallery {
        order: 1;
    }

    .animalism-admin-product-gallery-thumbs {
        order: 2;
        width: 100%;
        height: 76px;
    }

    .product .animalism-admin-product-gallery-thumbs .swiper-slide {
        width: 64px;
        height: 76px;
    }

    .product .animalism-admin-product-gallery .swiper-slide {
        height: auto;
        aspect-ratio: 496 / 596;
    }

    .animalism-admin-product-gallery__nav {
        width: 40px;
        height: 40px;
    }

    .animalism-admin-product-gallery__nav--prev {
        left: 12px;
    }

    .animalism-admin-product-gallery__nav--next {
        right: 12px;
    }

    .animalism-admin-product-gallery__pagination {
        right: 12px;
        bottom: 12px;
    }
}
