@import './reset.css';

.app-header {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.app-header .app-header__navigation {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .app-header .app-header__navigation {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        display: block;
        height: 100vh;
        background: #ffffff;
        z-index: 9;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.3s;
    }

    .app-header .app-header__navigation .app-header__navigation-listing {
        flex-direction: column;
        padding-top: 25px;
    }

    .app-header .app-header__navigation .app-header__navigation-listing .navigation-block__item {
        margin-right: 0px;
    }

    .app-header .app-header__navigation .app-header__navigation-listing .navigation-block__item:not(:first-child) {
        margin-top: 1.5vh;
    }
}

.app-header .app-header__navigation .app-header__navigation-listing {
    display: flex;
    display: flex;
    align-items: center;
}

.app-header .hamburger {
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.25s linear;
    user-select: none;
    display: none;
}

@media only screen and (max-width: 768px) {
    .app-header .hamburger {
        display: block;
    }
}

.app-header .hamburger.open .hamburger__item {
    background: 0 0;
}

.app-header .hamburger.open .hamburger__item:before {
    transform: rotate(45deg);
    background-color: #000000;
}

.app-header .hamburger.open .hamburger__item:after {
    transform: rotate(-45deg);
    background-color: #000000;
}

.app-header .hamburger .hamburger__item:before,
.app-header .hamburger .hamburger__item:after {
    content: "";
    position: absolute;
}

.app-header .hamburger .hamburger__item,
.app-header .hamburger .hamburger__item:after,
.app-header .hamburger .hamburger__item::before {
    border-radius: 10px;
    width: 25px;
    height: 3px;
    transition: all 0.15s linear;
    background-color: #000000;
}

.app-header .hamburger .hamburger__item:before {
    transform: translateY(-200%);
}

.app-header .hamburger .hamburger__item:after {
    transform: translateY(200%);
}

.navigation-block.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
    transition: all 0.3s;
}

.navigation-block .navigation-block__item:not(:last-child) {
    margin-right: 48px;
}

@media only screen and (max-width: 992px) {
    .navigation-block .navigation-block__item:not(:last-child) {
        margin-right: 24px;
    }
}

.navigation-block .navigation-block__item .navigation-block__link {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.search-block {
    max-width: 243px;
    width: 100%;
    position: relative;
}

.search__icon {
    display: none;
}

.search__icon.typed {
    display: block;
}

.search-block .search-block__input {
    padding: 10px 40px 10px 20px;
    background-color: #F5F5F5 !important;
    border: 0;
    outline: 0;
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
}

.search-block .search-block__input::placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.search-block .search-block__icon {
    right: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-bar {
    padding: 16px 0 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12.5px;
}

.custom-select {
    position: relative;
}

.custom-select .custom-select__input-overlay {
    position: relative;
    cursor: pointer;
}

.custom-select .custom-select__input-overlay::after {
    content: " ";
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4277 11.1169L7.47772 16.0669L6.06372 14.6529L12.4277 8.2889L18.7917 14.6529L17.3777 16.0669L12.4277 11.1169Z' fill='black'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    cursor: pointer;
}

.custom-select .custom-select__input-overlay .custom-select__input {
    padding: 8.5px 54px 8.5px 20px;
    border: 1px solid #F5F5F5;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}

.custom-select .custom-select__input-overlay .custom-select__input textarea:focus,
.custom-select .custom-select__input-overlay .custom-select__input input:focus {
    border-color: #58997F;
}

.custom-select .custom-select__list {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 5px 10px 15px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #ffffff;
    padding: 16px;
    z-index: 99;
    display: none;
    max-height: 550px;
    overflow: auto;
}

.custom-select .custom-select__list.open {
    display: block;
}

.custom-select .custom-select__list .custom-select__item {
    position: relative;
    padding: 2px 0;
}

.custom-select .custom-select__list .custom-select__item label {
    cursor: pointer;
    position: relative;
    display: block;
}

.custom-select .custom-select__list .custom-select__item label::after {
    content: " ";
    right: 0;
    width: 20px;
    height: 20px;
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2917 2.2334C5.70837 2.2334 1.95837 5.9834 1.95837 10.5667C1.95837 15.1501 5.70837 18.9001 10.2917 18.9001C14.875 18.9001 18.625 15.1501 18.625 10.5667C18.625 5.9834 14.875 2.2334 10.2917 2.2334ZM13.7917 9.15007L9.79171 13.1501C9.45837 13.4834 8.95837 13.4834 8.62504 13.1501L6.79171 11.3167C6.45837 10.9834 6.45837 10.4834 6.79171 10.1501C7.12504 9.81673 7.62504 9.81673 7.95837 10.1501L9.20837 11.4001L12.625 7.9834C12.9584 7.65006 13.4584 7.65006 13.7917 7.9834C14.125 8.31673 14.125 8.81673 13.7917 9.15007Z' fill='%2358997F'/%3E%3C/svg%3E");
}

.custom-select .custom-select__list .custom-select__item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.custom-select .custom-select__list .custom-select__item input:checked + label::after {
    display: block;
}

.custom-select .custom-select__list .custom-select__item:not(:first-child) {
    margin-top: 5px;
}

.custom-select .custom-select__list .custom-select__item input:checked + label {
    font-weight: bold;
}

.app-footer {
    background-color: #000000;
    padding: 40px 0;
}

.app-footer .footer-container {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.app-footer .footer-container .app-footer__main-panel {
    align-items: flex-start;
}

@media only screen and (max-width: 576px) {
    .app-footer .footer-container .app-footer__main-panel {
        flex-direction: column;
        gap: 20px;
    }
}

.app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__headline {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
}

@media only screen and (max-width: 576px) {
    .app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__headline {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.4444444444;
    }
}

.app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay {
    margin-top: 24px;
}

@media only screen and (max-width: 576px) {
    .app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay {
        margin-top: 16px;
    }
}

.app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item, .app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 576px) {
    .app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item {
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.5714285714;
    }
}

.app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item.text-sm {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item.flex--elements, .app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item a.flex--elements {
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-footer .footer-container .app-footer__main-panel .footer-listing .footer-listing__overlay .footer-listing__item:not(:first-child) {
    margin-top: 16px;
}

.app-footer .copyright {
    margin-top: 76px;
    text-align: center;
}

.app-footer .copyright .copyRightIcon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.app-footer .copyright * {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

@media only screen and (max-width: 576px) {
    .app-footer .copyright * {
        font-size: 0.6875rem;
        font-weight: 400;
        line-height: 1.8181818182;
    }
}

.single-section {
    padding-top: 50px;
    background-color: #F5F5F5;
}

.single-section .swiper-slide {
    background-size: cover;
    background-position: center;
    background-color: #fff;
}

@media only screen and (max-width: 576px) {
    .single-section {
        padding-top: 25px;
    }
}

.swiper-container {
    overflow: hidden;
}

.swiper-container-wrapper {
    display: flex;
    flex-flow: column nowrap;
    max-width: 720px;
    width: 100%;
}

@media only screen and (max-width: 1250px) {
    .swiper-container-wrapper {
        max-width: 540px;
    }
}

@media only screen and (max-width: 992px) {
    .swiper-container-wrapper {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .swiper-container-wrapper {
        flex-flow: row nowrap;
    }
}

@media (max-width: 768px) {
    .swiper-container-wrapper {
        flex-flow: column-reverse wrap;
    }
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
}

.heroSwiper .swiper-button-next, .heroSwiper .swiper-button-prev {
    width: auto;
    height: auto;
}

.heroSwiper .swiper-button-next:after, .heroSwiper .swiper-button-prev:after {
    content: " ";
    background: url("data:image/svg+xml;charset=utf8,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 40L21.9 37.85L34.25 25.5H8V22.5H34.25L21.9 10.15L24 8L40 24L24 40Z' fill='white'/%3E%3C/svg%3E");
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
}

.heroSwiper .swiper-button-prev:after {
    transform: rotate(180deg);
}

.submenu {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.5);
    transition: .3s all;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 260px;
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
    padding-top: 35px;
    z-index: 9999;
    overflow: hidden;
    box-shadow: rgb(17 12 46 / 15%) 0px 40px 10px 0px;
}

.menu__item-has-child {
    position: relative;
}

.menu__item-has-child:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: .3s all;
}

.menu__item-has-child > a {
    z-index: 99999;
    position: relative;
}

.submenu li {
    padding: 3px 0;
    background-color: #fff;
}

.submenu li:last-child {
    padding-bottom: 10px;
}

.submenu li a {
    padding: 2px 15px;
    display: block;
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.submenu li a:hover {
    background-color: #f5f5f5;
}

.gallery-top {
    position: relative;
    width: 100%;
    height: 75vh;
}

@media (min-width: 769px) {
    .gallery-top {
        width: 80%;
        height: 550px;
    }
}

@media only screen and (max-width: 1250px) {
    .gallery-top {
        height: 400px;
    }
}

@media only screen and (max-width: 992px) {
    .gallery-top {
        height: 610px;
    }
}

@media only screen and (max-width: 768px) {
    .gallery-top {
        width: 100%;
        height: 600px;
    }
}

@media only screen and (max-width: 576px) {
    .gallery-top {
        height: 380px;
    }
}

.gallery-thumbs {
    width: 100%;
    height: 25vh;
    padding-top: 10px;
    margin-right: 30px;
}

@media (min-width: 769px) {
    .gallery-thumbs {
        width: 20%;
        height: 550px;
        padding: 0;
    }
}

@media only screen and (max-width: 1250px) {
    .gallery-thumbs {
        height: 400px;
    }
}

@media only screen and (max-width: 992px) {
    .gallery-thumbs {
        height: 610px;
    }
}

@media only screen and (max-width: 768px) {
    .gallery-thumbs {
        height: 206px;
    }
}

@media only screen and (max-width: 576px) {
    .gallery-thumbs {
        height: 112px;
    }
}

.gallery-thumbs .swiper-wrapper {
    flex-direction: row;
}

@media (min-width: 769px) {
    .gallery-thumbs .swiper-wrapper {
        flex-direction: column;
    }
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    flex-flow: row nowrap;
    height: 100%;
    opacity: 0.75;
    cursor: pointer;
}

@media (min-width: 769px) {
    .gallery-thumbs .swiper-slide {
        flex-flow: column nowrap;
        width: 100%;
    }
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.single-product {
    width: 100%;
    max-width: 100%;
    flex: 1;
    padding-left: 50px;
}

@media only screen and (max-width: 992px) {
    .single-product {
        padding-left: 0px;
        margin-top: 50px;
    }
}

@media only screen and (max-width: 576px) {
    .single-product {
        margin-top: 25px;
    }
}

.single-product .single-products__tags {
    display: flex;
    align-items: center;
}

.single-product .single-products__tags .product-item_badge:first-child {
    margin-left: 0px;
}

.single-product .single-product__name {
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
}

.single-product .single-product__stock-status {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 16px;
}

.single-product .single-product__price {
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: #000000;
}

.single-product .single-product__desc {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5019607843);
}

.single-product .single-product__delivery-status {
    padding: 24px 16px 24px 72px;
    border: 1px solid rgba(0, 0, 0, 0.5019607843);
    margin-top: 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    color: #000;
    text-decoration: none;
    display: block;
}

@media only screen and (max-width: 992px) {
    .single-product .single-product__delivery-status {
        max-width: 400px;
    }
}

.single-product .single-product__delivery-status::after {
    content: " ";
    background-image: url("/assets/images/global/Cart.svg");
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.login-page {
    background-color: #F5F5F5;
}

.login-page .login-section {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.login-page .login-section .login-panel .form-overlay {
    width: 100%;
    max-width: 100%;
    flex: 1;
    padding-right: 129px;
}

@media only screen and (max-width: 1250px) {
    .login-page .login-section .login-panel .form-overlay {
        padding-right: 45px;
    }
}

@media only screen and (max-width: 768px) {
    .login-page .login-section .login-panel .form-overlay {
        padding-right: 0;
    }
}

.login-page .login-section .login-panel .form-overlay .form-group {
    margin-top: 48px;
}

.login-page .login-section .login-panel .form-overlay .form-group .login-input {
    border: none;
    outline: none;
    display: block;
    width: 100%;
    max-width: 100%;
    padding-bottom: 8px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    border-bottom: 1px solid #000000;
    background-color: transparent;
}

.login-page .login-section .login-panel .form-overlay .form-group .login-input::-webkit-outer-spin-button, .login-page .login-section .login-panel .form-overlay .form-group .login-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.login-page .login-section .login-panel .form-overlay .form-group .login-input:not(:first-child) {
    margin-top: 24px;
}

.login-page .login-section .login-panel .form-overlay .form-group .login-input:focus {
    border-color: #58997F;
}

.login-page .login-section .login-panel .form-overlay .form-group .login-input.error {
    border-color: #DB3831;
}

.login-page .login-section .login-panel .form-overlay .form-group .error-message {
    color: #DB3831;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
}

.login-page .login-section .login-panel .form-overlay .form-headline {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    font-family: "Inter";
    color: #000000;
}

@media only screen and (max-width: 992px) {
    .login-page .login-section .login-panel .form-overlay .form-headline {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1;
    }
}

.login-page .login-section .login-panel .form-overlay .form-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-top: 24px;
}

.login-page .login-section .login-panel .form-overlay .form-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.login-page .login-section .login-panel .form-overlay .form-actions .btn {
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.cart__product-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #000;
}

.login-page .login-section .login-panel .form-actions .login-btn, .login-page .login-section .login-panel .form-overlay .form-actions .login-btn {
    padding: 10px 48px;
    background-color: #DB3831;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    transition: all 0.1s;
}

@media only screen and (max-width: 992px) {
    .login-page .login-section .login-panel .form-overlay .form-actions .login-btn {
        padding: 8px 24px;
    }
}

.login-page .login-section .login-panel .form-overlay .form-actions .login-btn:hover {
    color: #DB3831;
    border: 1px solid #DB3831;
    transition: all 0.1s;
    background-color: #ffffff;
}

.login-page .login-section .login-panel .form-overlay .form-actions .signUp-btn {
    margin-left: 35px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #DB3831;
    transition: all 0.1s;
}

.login-page .login-section .login-panel .form-overlay .form-actions .signUp-btn:hover {
    color: #000000;
}

.login-page .login-section .login-panel .section-image {
    max-width: 805px;
    width: 100%;
    min-height: 781px;
    position: relative;
}

@media only screen and (max-width: 1250px) {
    .login-page .login-section .login-panel .section-image {
        max-width: 650px;
        min-height: 630px;
    }
}

@media only screen and (max-width: 992px) {
    .login-page .login-section .login-panel .section-image {
        max-width: 450px;
        min-height: 430px;
    }
}

@media only screen and (max-width: 768px) {
    .login-page .login-section .login-panel .section-image {
        display: none;
    }
}

.login-page .login-section .login-panel .section-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-hero__section {
    position: relative;
    padding-top: 80px;
    min-height: 609px;
}

@media only screen and (max-width: 992px) {
    .about-hero__section {
        padding-top: 60px;
        padding-right: 15px;
    }
}

.about-hero__section .about-panel {
    padding-top: 42px;
}

.about-hero__section .about-panel .about-hero__descs {
    flex: 1;
    padding-right: 75px;
}

@media only screen and (max-width: 992px) {
    .about-hero__section .about-panel .about-hero__descs {
        flex: auto;
        padding-right: 0px;
    }
}

.about-hero__section .about-panel .about-hero__descs .about-hero__headline {
    font-size: 3.375rem;
    font-weight: 600;
    line-height: 1.1851851852;
    color: #000000;
}

@media only screen and (max-width: 992px) {
    .about-hero__section .about-panel .about-hero__descs .about-hero__headline {
        font-size: 2.125rem;
        font-weight: 600;
        line-height: 1.2941176471;
    }
}

.about-hero__section .about-panel .about-hero__descs .about-hero__desc {
    margin-top: 40px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
}

@media only screen and (max-width: 992px) {
    .about-hero__section .about-panel .about-hero__descs .about-hero__desc {
        margin-top: 20px;
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.7142857143;
    }
}

.about-hero__section .about-panel .section-image {
    max-width: 840px;
    width: 100%;
    min-height: 610px;
    position: relative;
}

@media only screen and (max-width: 1250px) {
    .about-hero__section .about-panel .section-image {
        max-width: 600px;
        min-height: 560px;
    }
}

@media only screen and (max-width: 992px) {
    .about-hero__section .about-panel .section-image {
        max-width: 100%;
        margin-top: 15px;
    }
}

.about-hero__section .about-panel .section-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-settings {
    padding-top: 140px;
}

@media only screen and (max-width: 992px) {
    .section-settings {
        padding-top: 30px;
    }
}

.section-settings .setting-panel {
    gap: 25px;
}

@media only screen and (max-width: 576px) {
    .section-settings .setting-panel {
        gap: 15px;
    }
}

.section-settings .setting-panel .settings-widget {
    width: 100%;
    max-width: calc(25% - 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3019607843);
    transition: all 0.1s;
}

@media only screen and (max-width: 1250px) {
    .section-settings .setting-panel .settings-widget {
        padding: 15px 25px;
    }
}

@media only screen and (max-width: 992px) {
    .section-settings .setting-panel .settings-widget {
        max-width: calc(50% - 12.5px);
    }
}

@media only screen and (max-width: 576px) {
    .section-settings .setting-panel .settings-widget {
        max-width: 100%;
    }
}

.section-settings .setting-panel .settings-widget:hover {
    transition: all 0.1s;
    background-color: #DB4444;
    border-color: transparent;
}

.section-settings .setting-panel .settings-widget:hover .settings-widgets__count {
    transition: all 0.1s;
    color: #ffffff;
}

.section-settings .setting-panel .settings-widget:hover .settings-widgets__desc {
    transition: all 0.1s;
    color: #ffffff;
    text-align: center;
}

.section-settings .setting-panel .settings-widget:hover .settings-widgets__icon svg {
    transition: all 0.1s;
}

.section-settings .setting-panel .settings-widget:hover .settings-widgets__icon svg .shadow {
    fill: #ffffff;
}

.section-settings .setting-panel .settings-widget:hover .settings-widgets__icon svg .circle {
    fill: #ffffff;
}

.section-settings .setting-panel .settings-widget:hover .settings-widgets__icon svg .icon {
    stroke: #000000;
}

.section-settings .setting-panel .settings-widget .settings-widgets__count {
    margin-top: 24px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 0.9375;
    color: #000000;
}

.section-settings .setting-panel .settings-widget .settings-widgfets__desc {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-align: center;
}

@media only screen and (max-width: 1250px) {
    .section-settings .setting-panel .settings-widget .settings-widgfets__desc {
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.5714285714;
    }
}

.team-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

@media only screen and (max-width: 992px) {
    .team-section {
        padding-top: 30px;
    }
}

.team-section .teamSwipe {
    padding-bottom: 56px;
}

.team-section .teamSwipe .swiper-pagination__team {
    text-align: center;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}

.team-section .teamSwipe .swiper-pagination__team .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.team-section .teamSwipe .swiper-pagination__team .swiper-pagination-bullet-active {
    background-color: #DB3831;
    outline: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 0px 1.5px #fff;
}

.team-section .team-widget .team-widget__image {
    width: 100%;
    max-width: 100%;
    min-height: 370px;
    position: relative;
}

.team-section .team-widget .team-widget__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section .team-widget .team-widget__name {
    margin-top: 32px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 0.9375;
    color: #000000;
}

.team-section .team-widget .team-widget__pos {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

.team-section .team-widget .team-widget__social {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container.small {
    max-width: 1200px;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.swiper-grid-column > .swiper-wrapper {
    flex-direction: row;
    row-gap: 30px;
}

.swiper-grid-column > .swiper-wrapper .swiper-slide {
    margin-top: 0px !important;
}

.swiper-custom-navigation {
    max-width: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-button-next-cat, .swiper-button-prev-cat {
    width: 46px;
    height: 46px;
    background-color: #F5F5F5;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    cursor: pointer;
}

.swiper-button-next-cat.swiper-button-disabled,
.swiper-button-prev-cat.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.swiper-button-next-new:after, .swiper-button-prev-new:after {
    content: none;
}

.swiper-button-next-new, .swiper-button-prev-new {
    z-index: 10;
    width: 46px;
    height: 46px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    cursor: pointer;
    border: 1px solid #000;
}

.swiper-button-next-cat,.swiper-button-next-new {
    transform: rotate(180deg);
}

.main-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-panel.product--panel {
    margin: 0 -10px;
    align-items: stretch;
    justify-content: flex-start;
}

.main-panel.single--panel {
    padding-top: 50px;
    align-items: flex-start;
}

.single-product__desc * {
    word-break: break-word;
}

@media only screen and (max-width: 576px) {
    .main-panel.single--panel {
        padding-top: 25px;
    }
}

#page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page .wrapper {
    flex: 1 1 auto;
}

.section-bagde {
    color: #DB3831;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 10px 0 10px 36px;
    position: relative;
}

.section-bagde::after {
    content: " ";
    width: 20px;
    height: 100%;
    background-color: #DB3831;
    border-radius: 4px;
    left: 0;
    top: 0;
    position: absolute;
}

.section-headline {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3333333333;
    color: #000000;
}

.section-headline__items {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3333333333;
    color: #DB3831;
    text-align: center;
}

.section-headline__partners {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3333333333;
    color: #000000;
    margin-top: 20px;
}

@media only screen and (max-width: 768px) {
    .section-headline {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.5;
    }
}

.hero-sectiopn {
    padding: 40px 0 60px 0;
}

@media only screen and (max-width: 768px) {
    .hero-sectiopn {
        padding: 20px 0 30px 0;
    }
}

.heroSwiper__content {
    min-height: 530px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 65px;
    border-radius: 4px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 992px) {
    .heroSwiper__content {
        min-height: 370px;
        background-position: center;
        padding-left: 35px;
    }
}

.heroSwiper__content .heroSwiper__descriptions {
    max-width: 593px;
    width: 100%;
}

.heroSwiper__content .heroSwiper__descriptions .heroSwiper__small-text {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
    text-align: left;
    color: #ffffff;
}

.heroSwiper__content .heroSwiper__descriptions .heroSwiper__headline {
    margin-top: 14px;
    font-family: "Inter";
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.0625;
    letter-spacing: 0.05em;
    text-align: left;
    color: #ffffff;
}

@media only screen and (max-width: 768px) {
    .heroSwiper__content .heroSwiper__descriptions .heroSwiper__headline {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2083333333;
    }
}

@media only screen and (max-width: 576px) {
    .heroSwiper__content .heroSwiper__descriptions .heroSwiper__headline {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2777777778;
    }
}

@media only screen and (max-width: 576px) {
    .heroSwiper__content .heroSwiper__descriptions .heroSwiper__headline {
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1.3571428571;
    }
}

.heroSwiper__content .heroSwiper__descriptions .heroSwiper__link {
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    display: block;
    position: relative;
    padding-right: 32px;
    max-width: 110px;
    color: #ffffff;
}

.heroSwiper__content .heroSwiper__descriptions .heroSwiper__link::after {
    content: " ";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.98828 12.1035H20.4883M20.4883 12.1035L13.4883 5.10352M20.4883 12.1035L13.4883 19.1035' stroke='%23FAFAFA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
}

.swiper-pagination {
    bottom: 28px !important;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #DB3831;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0px 1px #000000;
}

.quick-links {
    padding-top: 20px;
}

.quick-links .quick-links__listing {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-links .quick-links__listing .quick-links__item:not(:last-child) {
    margin-right: 30px;
}

.quick-links .quick-links__listing .quick-links__item .quick-links__link {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-decoration: none;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .quick-links .quick-links__listing .quick-links__item .quick-links__link {
        font-size: 0.8125rem;
        font-weight: 400;
        line-height: 1.5384615385;
    }
}

.quick-links .quick-links__listing .quick-links__item .quick-links__link::after {
    content: " ";
    height: 1px;
    width: 0%;
    max-width: 100%;
    background-color: #000000;
    transition: all 0.1s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.quick-links .quick-links__listing .quick-links__item .quick-links__link:hover::after {
    width: 100%;
    transition: all 0.1s;
}

.popular-products {
    padding: 60px 0;
    background-color: #F5F5F5;
}

@media only screen and (max-width: 768px) {
    .popular-products {
        padding: 30px 0;
    }
}
.popular-slider-overlay{
    padding: 0 60px;
    position: relative;

}
.popular-products .popularProducts {
    margin-top: 30px;
}

.popular-products .popularProducts .swiper-slide {
    height: auto;
}

.popular-products .popularProducts .swiper-slide .product-item {
    max-width: 100%;
    height: 100%;
    padding: 0;
}

.product-item {
    max-width: 25%;
    width: 100%;
    padding: 10px;
    background-color: #F5F5F5;
    cursor: pointer;
    text-decoration: none;
}

@media only screen and (max-width: 1250px) {
    .product-item {
        max-width: 33.333%;
    }
}

@media only screen and (max-width: 768px) {
    .product-item {
        max-width: 50%;
    }
}

@media only screen and (max-width: 576px) {
    .product-item {
        max-width: 100%;
    }
}

.product-item .product-item__content {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1019607843);
    border-radius: 10px;
    padding: 10px;
    height: 100%;
}

.product-item .product-item__content .product-item__image {
    position: relative;
    max-width: 100%;
    width: 100%;
    min-height: 250px;
    background-color: #fff;
}

.product-item .product-item__content .product-item__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item .product-item__content .product-item__footer {
    flex-grow: 1;
    padding-bottom: 10px;
}

.product-item .product-item__content .product-item__footer .product-item__name {
    margin-top: 16px;
    color: #363738;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.product-item .product-item__content .product-item__footer .product-item__info {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.product-item .product-item__content .product-item__footer .product-item__info .product-item__price {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: #000000;
}

.product-item_badge {
    padding: 2px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    border-radius: 10px;
    margin-left: 15px;
}

.product-item_badge.green--badge {
    background-color: rgba(0, 255, 102, 0.1019607843);
}

.product-item_badge.red--badge {
    background-color: rgba(219, 56, 49, 0.1019607843);
}

.product-item_badge.yelow--badge {
    background-color: rgba(251, 188, 4, 0.1019607843);
}

.product-item_badge.gray--badge {
    background: rgba(160, 188, 224, 0.1019607843);
}

.categories-section {
    padding: 30px 0;
}

.categories-section .categories--actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categoriesSwiper {
    margin-top: 60px;
}

@media only screen and (max-width: 768px) {
    .categoriesSwiper {
        margin-top: 30px;
    }
}

.category-item {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.5s;
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
}

.category-item .category-item__icon {
    width: 24px;
    height: 24px;
}

.category-item:hover {
    background-color: #DB3831;
    transition: all 0.5s;
}

.category-item:hover .category-item__icon img {
    filter: invert(1);
}

.category-item:hover .category-item__name {
    color: #ffffff;
}

.category-item .category-item__name {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-align: center;
}

.branding-section {
    padding-top: 60px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .branding-section {
        padding-top: 30px;
    }
}

.branding-section .textSwiper {
    padding: 21px 0;
    background-color: #DB3831;
    transform: rotate(-2.5deg);
}

.branding-section .textSwiper.second-slider {
    background-color: #6C6D70;
    transform: rotate(2.5deg) translateY(-80px);
}

@media only screen and (max-width: 768px) {
    .branding-section .textSwiper.first-slider {
        transform: rotate(-2.5deg) translateY(30px);
    }
}

.branding-section .textSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.branding-section .textSwiper .swiper-wrapper .swiper-slide img {
    transform: rotate(-3.5deg);
}

.featured-section {
    padding: 40px 0;
}

.featured-section .section-headline {
    margin-top: 20px;
}

.featured-section .grid-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 30px;
    margin-top: 60px;
    min-height: 600px;
}

@media only screen and (max-width: 768px) {
    .featured-section .grid-area {
        margin-top: 30px;
        display: flex;
        grid-row-gap: 15px;
        flex-direction: column;
    }
}

.featured-section .grid-area .grid-area__item {
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

@media only screen and (max-width: 768px) {
    .featured-section .grid-area .grid-area__item {
        min-height: 350px;
    }
}

.featured-section .grid-area .grid-area__item .grid-item__image {
    max-width: 418px;
    width: 100%;
    position: absolute;
    right: 0;
    min-height: 285px;
    height: 100%;
}

.featured-section .grid-area .grid-area__item .grid-item__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.featured-section .grid-area .grid-area__item .grid-area__item-infos {
    max-width: 290px;
    padding: 0 0 32px 32px;
    width: 100%;
}

.featured-section .grid-area .grid-area__item .grid-area__item-name {
    font-family: "Inter";
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: left;
    color: #ffffff;
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.featured-section .grid-area .grid-area__item .grid-area__item-desc {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    position: relative;
    z-index: 3;
    margin-top: 16px;
}

.featured-section .grid-area .grid-area__item .grid-area__item-link {
    display: block;
    color: #ffffff;
    position: relative;
    z-index: 3;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 16px;
}

.featured-section .grid-area .grid-area__big-element {
    grid-area: 1/1/3/2;
}

.featured-section .grid-area .grid-area__first-element {
    grid-area: 1/2/2/3;
}

.featured-section .grid-area .grid-area__second-element {
    grid-area: 2/2/3/3;
}

.featured-section .grid-area .grid-area__first-element::after,
.featured-section .grid-area .grid-area__second-element::after {
    content: " ";
    width: 100%;
    height: 100%;
    background: linear-gradient(266.16deg, rgba(0, 0, 0, 0) 24.18%, rgba(0, 0, 0, 0.962417) 60.35%, #000000 75.22%);
    position: absolute;
    top: 0;
    left: 0;
}

.services-section {
    padding: 60px 0;
}

@media only screen and (max-width: 768px) {
    .services-section {
        padding: 30px 0;
    }
}

.services-section .service-item {
    max-width: calc(33.33% - 88px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .services-section .service-item {
        max-width: calc(33.33% - 24px);
    }
}

.services-section .service-item .service-item__name {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin-top: 24px;
    text-align: center;
}

@media only screen and (max-width: 1250px) {
    .services-section .service-item .service-item__name {
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.4444444444;
    }
}

.services-section .service-item .service-item__desc {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    max-width: calc(100% - 100px);
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .services-section .service-item .service-item__desc {
        font-size: 0.6875rem;
        font-weight: 400;
        line-height: 1.6363636364;
    }
}

@media only screen and (max-width: 992px) {
    .services-section .service-item .service-item__desc {
        max-width: 100%;
    }
}

.calalog-products {
    background-color: #F5F5F5;
    padding: 60px 0;
}

@media only screen and (max-width: 768px) {
    .calalog-products {
        padding-top: 30px;
    }
}

.pagination__overlay {
    margin-top: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagination button {
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.pagination .pagination__item:not(:last-child) {
    margin-right: 7px;
}

.pagination .pagination__item a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4375;
    color: #000000;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
}

.pagination .pagination__item.current--item a {
    color: rgba(0, 0, 0, 0.3019607843);
}

.pagination .pagination__arrows {
    width: 24px;
    height: 24px;
}

.pagination .pagination__infos {
    color: rgba(0, 0, 0, 0.3019607843);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4375;
    margin-right: 24px;
}

.bred-crumbs .bred-crumb__list {
    display: flex;
    align-items: center;
}

.bred-crumbs .bred-crumb__list .bred-crumb__item.item--prev {
    padding-right: 30px;
    position: relative;
}

.bred-crumbs .bred-crumb__list .bred-crumb__item.item--prev::after {
    content: "/";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
}

.bred-crumbs .bred-crumb__list .bred-crumb__item.item--prev a {
    color: rgba(0, 0, 0, 0.5);
}

.bred-crumbs .bred-crumb__list .bred-crumb__item a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

/*# sourceMappingURL=global.css.map */
/*search*/
span.twitter-typeahead .tt-menu,
span.twitter-typeahead .tt-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

span.twitter-typeahead .tt-suggestion {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
    cursor: pointer;
}

span.twitter-typeahead .tt-suggestion.tt-cursor,
span.twitter-typeahead .tt-suggestion:hover,
span.twitter-typeahead .tt-suggestion:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7;
}

.input-group.input-group-lg span.twitter-typeahead .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.input-group.input-group-sm span.twitter-typeahead .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

span.twitter-typeahead {
    width: 100%;
}

.input-group span.twitter-typeahead {
    display: block !important;
    height: 34px;
}

.input-group span.twitter-typeahead .tt-menu,
.input-group span.twitter-typeahead .tt-dropdown-menu {
    top: 32px !important;
}

.input-group span.twitter-typeahead:not(:first-child):not(:last-child) .form-control {
    border-radius: 0;
}

.input-group span.twitter-typeahead:first-child .form-control {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group span.twitter-typeahead:last-child .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.input-group.input-group-sm span.twitter-typeahead {
    height: 30px;
}

.input-group.input-group-sm span.twitter-typeahead .tt-menu,
.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
    top: 30px !important;
}

.input-group.input-group-lg span.twitter-typeahead {
    height: 46px;
}

.input-group.input-group-lg span.twitter-typeahead .tt-menu,
.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
    top: 46px !important;
}

.tt-highlight {
    font-weight: bold !important;
}

.search-block input[type="submit"] {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4277 11.1169L7.47772 16.0669L6.06372 14.6529L12.4277 8.2889L18.7917 14.6529L17.3777 16.0669L12.4277 11.1169Z' fill='black'/%3E%3C/svg%3E");
    outline: none;
    -webkit-appearance: none;
    border: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
    cursor: pointer;
    background-position: center;
}

/*search*/
/*modal*/
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

#cart table img {
    height: 50px;
}

.alert.alert-success, .alert.alert-danger {
    font-weight: 700;
    margin-top: 12px;
    position: relative;
    padding: 12px 0px 11px 6px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.mobile__view {
    display: none !important;
}

.cart {
    position: relative;
    padding: 6px 6px 0 0;
}

.simpleCart_total {
    position: absolute;
    /*width: 16px;*/
    /*height: 16px;*/
    /*background-color: #DB3831;*/
    /*border-radius: 50%;*/
    top: -8px;
    right: -4px;
    /*padding: 2px;*/
    display: flex;
    /*align-items: center;*/
    /*justify-content: center;*/
    /*font-size: 12px;*/
    /*line-height: 12px;*/
    color: #000;
}

.login__actions .app-header__navigation-listing .navigation-block__item:not(:last-child) {
    margin-right: 12px;
}

@media only screen and (max-width: 768px) {
    .mobile__view {
        display: flex !important;
    }

    .cart {
        margin-left: auto;
        margin-right: 12px;
    }
}

@media only screen and (max-width: 1250px) {
    .navigation-block .navigation-block__item:not(:last-child) {
        margin-right: 24px;
    }
}

@media only screen and (max-width: 992px) {
    .search-block {
        max-width: 200px;
    }

    .navigation-block .navigation-block__item .navigation-block__link {
        font-size: 14px;
    }

    .brand {
        max-width: 130px;
        position: relative;
        z-index: 999;
    }

    .search-block.visibility {
        z-index: 9999;
    }

    .search-block .search-block__input {
        padding: 6px 40px 6px 9px;
    }

    .search-block {
        max-width: 186px;
    }

    .navigation-block .navigation-block__item:not(:last-child) {
        margin-right: 15px;
    }
}

/* Cart */
.cart__item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 12.5px 57px 12.5px 20px;
    border: 0.5px solid #000000;
    border-radius: 4px;
}

.cart__headline {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #000000;
}

.cart__desc {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.1px;
    color: #000000;
}

.cart__items-overlay {
    display: flex;
    flex-direction: column;
    margin-top: 14px;
}

.cart__product-image {
    width: 75px;
    height: 75px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.cart__product-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.cart__product-infos .product-item_badge {
    margin-left: 0px;
    margin-top: 10px;
    display: inline-block;
}

.cart__product-infos {
    margin-left: 10px;
    max-width: 278px;
    width: 100%;
}

.cart__product-price {
    margin-left: auto;
    margin-right: 13px;
}

.delete__icon {
    cursor: pointer;
    border-radius: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.delete__icon:hover {
    background-color: #DB38311A;

}

.cart__item:not(:first-child) {
    margin-top: 14px;
}

.cart__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding: 0 15px 15px 15px;
}

.btn {
    background-color: transparent;
    display: block;
    padding: 18px 25px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn__filled {
    background-color: #DB3831;
    border-radius: 4px;
    font-size: 14.67px;
    font-weight: 500;
    line-height: 18.41px;
    color: #fff;
    max-width: calc(33.33% - 15px);
    width: 100%;
    transition: all .3s;
    text-align: center;
    text-decoration: none;
}

.total__info {
    gap: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;

}

.btn__outlined {
    border: 1px solid #000;
    border-radius: 4px;
    max-width: calc(33.33% - 15px);
    width: 100%;
}

.btn__outlined:hover {
    background-color: #000;
    color: #fff;
}

.btn__filled:hover {
    border-color: #DB3831;
    background-color: #fff;
    color: #DB3831;
}

.login-panel .cart__items-overlay {
    max-height: 500px;
    overflow: auto;
    min-height: 500px;
}

.cart__infos {
    max-width: 700px;
    width: 100%;
}

.login-panel .cart__items-overlay::-webkit-scrollbar {
    width: 10px;
}

.form-control {
    min-height: 150px;
    max-height: 150px;
    resize: none;
    display: block;
    width: 100%;
    max-width: 100%;
    border: 1px solid #000000;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: transparent;
    margin-top: 24px;
    border-radius: 6px;
    padding: 15px;
}

/* scrollbar itself */
.login-panel .cart__items-overlay::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 2px solid #fff;
}

.login-panel .cart__items-overlay {
    margin-top: 0px;
}

.login-page .login-section .login-panel.checkout__panel .form-overlay {
    padding-right: 80px;
}

.cart__product-price.mobile__view {
    display: none;
}

.checkout__panel .form-actions.mobile_view {
    display: none !important;
}

@media only screen and (max-width: 1024px) {
    .login-page .login-section .login-panel.checkout__panel .cart__infos {
        max-width: 500px;
    }

    .login-page .login-section .login-panel.checkout__panel .form-overlay {
        padding-right: 25px;
    }
}

.text__right-bold {
    font-weight: bold;
}

.app-header .app-header__navigation .app-header__navigation-listing.login__actions-toggle {
    display: none;
}

@media only screen and (max-width: 768px) {
    .app-header .app-header__navigation .app-header__navigation-listing.login__actions-toggle {
        display: flex;
    }

    .main-panel.login-panel.checkout__panel {
        flex-direction: column;
        row-gap: 25px;
    }

    .login-page .login-section .login-panel.checkout__panel .form-overlay {
        padding-right: 0px;
    }

    .login-page .login-section .login-panel.checkout__panel .cart__infos {
        max-width: 100%;
        min-height: auto;
    }

    .cart__items-overlay {
        min-height: auto !important;
    }

    .checkout__panel .form-actions.mobile_view {
        display: block !important;
    }

    .cart__product-price.mobile__view {
        display: block !important;
        margin-top: 5px;
    }

    .cart__product-price, .checkout__panel .form-actions {
        display: none !important;
    }

    .app-header .search-block {
        max-width: 52px;
        margin-right: 70px;
        display: flex;
        margin-left: auto;
    }

    .main-panel {
        position: relative;
    }

    .app-header .search-block .search-block__input {
        padding-right: 31px;
    }


    .search-block__input {
        width: 0px !important;
        transition: .3s;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto;
    }

    .twitter-typeahead {
        display: flex !important;
    }

    .search-block__icon {
        cursor: pointer;
    }

    .search-block {
        position: absolute !important;
        right: 15px;
        width: 100%;
        max-width: calc(100% - 100px) !important;
        padding-left: 35px;
        z-index: 99;
    }

    .search-block__input.show {
        width: 100% !important;
        padding-right: 40px !important;
        padding-left: 20px !important;
    }

    #typeahead_listbox {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .tt-dataset-products > div {
        text-overflow: ellipsis;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

.search-block form {
    width: 100%;
}

@media only screen and (max-width: 576px) {
    .cart__product-name {
        font-size: 14px;
        line-height: 20px;
    }

    .cart__item {
        padding: 8.5px 50px 8.5px 10px;
    }

    .cart__product-image img {
        object-fit: contain;
    }

    .total__info {
        align-items: center;
    }

    .btn {
        padding: 7px 5px;
    }
}

.partners .swiper-slide {
    height: auto;
}

.partner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.date-picker {
    width: 100%;
    max-height: 50px;
    background: white;
    position: relative;
    transition: all 0.3s 0s ease-in-out;
    margin-top: 10px;
}

.date-picker .input {
    width: 100%;
    height: 50px;
    font-size: 0;
    cursor: pointer;
    background-color: #f5f5f5;
    border-bottom: 1px solid #000;
}

.date-picker .input .result,
.date-picker .input button {
    display: inline-block;
    vertical-align: top;
}

.date-picker .input .result {
    width: calc(100% - 50px);
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    padding: 0 10px;
    color: grey;
    box-sizing: border-box;
}

.date-picker .input button {
    width: 50px;
    height: 47px;
    background-color: #f5f5f5;
    color: white;
    line-height: 50px;
    border: 0;
    font-size: 18px;
    padding: 10px;
}

.date-picker .input button:hover {
    background-color: #f5f5f5;
}

.date-picker .input button:focus {
    outline: 0;
}

.date-picker .calendar {
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    z-index: 999;
}

.date-picker .calendar .ui-datepicker-inline {
    position: relative;
    width: 100%;
}

.date-picker .calendar .ui-datepicker-header {
    height: 100%;
    line-height: 50px;
    background: #000000;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
}

.ui-datepicker-title {
    width: 100%;
    max-width: 100%;
}

a.ui-datepicker-next {
    order: 3;
}

.date-picker .calendar .ui-datepicker-prev,
.date-picker .calendar .ui-datepicker-next {
    width: 23px;
    height: 20px;
    text-indent: 9999px;
    border: 2px solid transparent;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4277 11.1169L7.47772 16.0669L6.06372 14.6529L12.4277 8.2889L18.7917 14.6529L17.3777 16.0669L12.4277 11.1169Z' fill='white'/%3E%3C/svg%3E");
    background-position: center;
    outline: 2px solid #fff;
}

.date-picker .calendar .ui-datepicker-next {
    transform: rotate(90deg);
}

.date-picker .calendar .ui-datepicker-prev {
    transform: rotate(-90deg);
}

.date-picker .calendar .ui-datepicker-prev:hover,
.date-picker .calendar .ui-datepicker-next:hover,
.date-picker .calendar .ui-datepicker-prev:hover:after,
.date-picker .calendar .ui-datepicker-next:hover:after {
    border-color: #68768A;
}

.date-picker .calendar .ui-datepicker-title {
    text-align: center;
}

.date-picker .calendar .ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}

.date-picker .calendar .ui-datepicker-calendar thead tr th span {
    display: block;
    width: 100%;
    color: #8392A7;
    margin-bottom: 5px;
    font-size: 13px;
}

.date-picker .calendar .ui-state-default {
    display: block;
    text-decoration: none;
    color: #b5b5b5;
    line-height: 40px;
    font-size: 12px;
}

.date-picker .calendar .ui-state-default:hover {
    background: rgba(0, 0, 0, 0.02);
    color: #000;
}

.date-picker .calendar .ui-state-highlight {
    color: #68768A;
}

.date-picker .calendar .ui-state-active {
    color: #fff;
    background-color: #000;
    font-weight: 600;
}

.date-picker .calendar .ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent;
}

.date-picker.open .calendar {
    display: block;
}

.date-picker.open .input button {
    background: #f5f5f5;
}


/* checkout qty */
.quantity__container {
    display: flex;
    align-items: flex-end;
    gap: 7px;
}


.quantity__overlay {
    max-width: 114px;
    width: 100%;
    padding: 4px 5px;
    display: flex;
    align-items: center;
    border: 0.5px solid #000000;
    border-radius: 4px;
    background-color: #f5f5f5;
    margin-top: 7px;
}

.quantity__overlay input {
    width: 100%;
    max-width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: #000000;
    border: 0;
    outline: 0;
    background-color: #f5f5f5;
    padding: 0 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.quantity__overlay input::placeholder {
    text-align: center;
}

.quantity__overlay input::-webkit-inner-spin-button,
.quantity__overlay input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.button__decrement, .button__increment {
    outline: none;
    border: 0;
    width: 24px;
    height: 24px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
}

.button__decrement img, .button__increment img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 576px) {
    .product-item_badge {
        font-size: 12px;
        line-height: 16px;
    }
    .popular-slider-overlay{
        padding: 0 50px;
    }
    .swiper-button-next-new{
        right: 0;
    }
    .swiper-button-prev-new{
        left: 0;
    }
    .map iframe{
        width: 350px;
    }
}
