@font-face {
    font-family: GHEAHelveticaGeo;
    src: url(../font/GHEAHelveticaGeo-Regular.ttf)
}

@font-face {
    font-family: GHEAHelveticaGeo-Bold;
    src: url(../font/GHEAHelveticaGeo-Bold.ttf)
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: GHEAHelveticaGeo;
    letter-spacing: 0.04em;
    outline: none;
}

body {
    background: #eef0eb;
}

button {
    background: transparent;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #1a274e;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.max-width {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    padding: 0 69px;
}

.rotate {
    transform: rotate(180deg);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

/* Product item */
.product-item {
    width: 292px;
    position: relative;
}

.product-img {
    background: #FFFFFF;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 48px;
    margin-bottom: 16px;
    max-height: 235px;
    min-height: 100px;
    min-width: 100px;
}


.product-name {
    display: -webkit-box;
    word-break: break-word;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    height: 38px;
    letter-spacing: 0.04em;
    color: #1a274e;
}

.main-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #24337A;
    margin: 14px 0;
}

.price {
    display: block;
    margin-right: 10px;
    font-family: GHEAHelveticaGeo-Bold;
}

.product-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto auto;
    grid-template-columns: auto auto auto auto;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 56px;
}

.add-product {
    padding: 14px 16px 13px;
    position: relative;
    width: 56px;
    height: 56px;
    color: #fff;
    background: #1a274e;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: .3s ease-in-out;
    overflow: hidden;
}

.add-product:hover {
    background: #3550a1;
}

.product-discount {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-decoration: line-through;
    color: #E95E26;
}

.product-item .discount {
    position: absolute;
}

.discount-item {
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    padding: 8px 10px 4px 10px;
    background: #D61518;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

.prod-footer {
    height: auto;
}

.minus, .plus {
    padding: 20px 16px;
    background: #1a274e;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
    border: none;
    font-size: 17px;
    color: #fff;
    z-index: 10;
    cursor: pointer;
    width: 56px;
    min-width: 56px;
}

.minus {
    background: #E95E26;
    border-radius: 100px;
}

.plus {
    background: #1a274e;
    border-radius: 100px;
}

.add-product .addToCartIcon {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    width: 32px;
}

.add-product .addToCartBasket {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -50%;
    color: #fff;
    transform: translate(-50%, -50%);
    width: 32px;
}

.add-product .addToCartBox {
    position: absolute;
    z-index: 3;
    top: -50%;
    left: 52%;
    color: #fff;
    transform: translate(-50%, -50%);
    width: 14px;
}

.add-product.sendToCart {
    background: #3550a1;
}

.add-product.sendToCart .addToCartBasket {
    animation: cart 1.5s ease-in-out forwards;
}

.add-product.sendToCart .addToCartBox {
    animation: box 1.5s ease-in-out forwards;
}

.add-product.sendToCart .addToCartIcon {
    animation: txt1 1.5s ease-in-out forwards;
}

@keyframes cart {
    0% {
        left: -10%;
    }
    40%, 60% {
        left: 50%;
    }
    100% {
        left: 150%;
    }
}

@keyframes box {
    0%, 40% {
        top: -20%;
    }
    60% {
        top: 40%;
        left: 52%;
    }
    100% {
        top: 40%;
        left: 152%;
    }
}

@keyframes txt1 {
    0% {
        opacity: 1;
    }
    20%, 100% {
        opacity: 0;
    }
}

.counter-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.counter-content input {
    line-height: 56px;
    margin: 0 16px;
    border: none;
    background: transparent;
    padding: 0 5px;
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    color: #1a274e;
}


.counter {
    display: none;
}

.red {
    color: #D61518;
    position: relative;
    top: 2px;
}

.search-result-txt {
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    color: #647481;
}

.result-name {
    color: #393E41;
    font-weight: 700;
}

.privacy-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #1a274e;
    margin-top: 55px;
    margin-bottom: 30px;
}

.privacy-mini-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #1a274e;
    margin: 40px 0 32px;
}

.privacy-txt {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #1a274e !important;
}

.privacy-txt * {
    line-height: 24px;
    letter-spacing: 0.01em;
}

.privacy-txt h1,
.privacy-txt h2,
.privacy-txt h3,
.privacy-txt h4,
.privacy-txt h5,
.privacy-txt h6 {
    line-height: 30px;
}

.privacy-content {
    margin-bottom: 124px;
}

.select .list {
    z-index: 11 !important;
}

.hide-header .top-header, .hide-header .main-header {
    transform: translateY(-56px);
}

.footer-menu .icon {
    margin-right: 8px;
}

.footer-top > div:last-child > ul a {
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.t-price {
    font-weight: bolder;
}

.hover, .hoverMinus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: bolder;
    font-size: 21px;
}

.hover {
    background: #1a274e;
    border: 1px solid #1a274e;
}

.hover:hover {
    background: #FFFFFF;
    color: #1a274e;
}

.hoverMinus {
    background: #D61518;
    border: 1px solid #D61518;
}

.hoverMinus:hover {
    background: #FFFFFF;
    color: #D61518;
}

.product-btns {
    position: relative;
}

.product-btns.locationSelect {
    height: 56px;
}

.product-btns .counter-content input {
    width: 100%;
}

.product-btns .counter-content {
    width: 0;
    overflow: hidden;
    transition: 0.3s;
}

.product-btns .add-product {
    position: absolute;
    top: 0;
    right: 0;
}

.product-btn {
    width: 56px;
    min-width: 56px;
    height: 56px;
}

.showBtns {
    width: 100% !important;
}

.hideBtn {
    display: none !important;
}

.show-modal {
    opacity: 0.2 !important;
    visibility: visible !important;
}

.show-modal-content {
    opacity: 1 !important;
    visibility: visible !important;
}

#locationModal .address-map {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#locationModal .address-map .addresses-form {
    width: 100%;
    margin-right: 0;
}

#locationModal .header-address-select .select {
    width: 100%;
    max-width: unset;
}

#locationModal .modal-button {
    margin-top: 20px;
    padding: 5px 30px;
}

@media (max-width: 1370px) {
    .max-width {
        max-width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 1025px) {
    .main-price {
        font-size: 18px;
        line-height: 19px;
    }

    .product-discount {
        font-size: 12px;
    }

    .mini-banner a {
        margin-bottom: 0;
    }

    .product-img {
        max-height: 200px;
    }
}

@media (max-width: 900px) {
    max-height: 160px;
}

@media (max-width: 820px) {
    .product-btn {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

@media (max-width: 780px) {
    .logo {
        margin-right: 35px;
    }

    .search-result-txt {
        font-size: 18px;
        line-height: 21px;
    }

    .product-img {
        background: #FFFFFF;
        padding: 16px;
    }

    .privacy-title {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 15px;
    }

    .privacy-mini-title {
        margin: 34px 0 32px;
    }

    .privacy-content {
        margin-bottom: 92px;
    }

    .hide-header .top-header, .hide-header .main-header {
        transform: translateY(-63px);
    }

    .mini-banner img {
        border-radius: 24px;
    }

    .product-img {
        height: 152px;
    }

    .product-btn {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .main-header {
        padding: 12px;
    }

    .price {
        margin-right: 4px;
        font-size: 16px;
    }

    .main-price span {
        font-size: 14px;
    }

    .main-price {
        font-size: 16px;
        line-height: 18px;
    }

    .add-product {
        width: 32px;
        height: 32px;
    }

    .add-product img {
        min-width: 20px;
        height: 20px;
    }

    .add-product .addToCartBox {
        min-width: 7px;
        width: 8px;
    }

    .prod-footer {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .main-price {
        margin: 0;
    }

    .product-price {
        height: 44px;
    }

    .product-name {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .product-btn {
        width: 32px;
        min-width: 32px;
        height: 32px;
    }

    .product-btns .counter-content input {
        line-height: 20px;
    }

    .product-btn {
        min-height: 32px;
    }
}

#body .widget-visible iframe {
    top: unset !important;
    bottom: 25px;
}

























