@import url(flaticon.css);
@import url(bootstrap.min.css);
@import url(main-support.css);
@import url(support.css);
@import url(all.min.css);
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /*--main-color: #4e7661;*/
    --main-color: #11a94e;
    --font: 'Urbanist', sans-serif;
    --font-butler: 'Butler', sans-serif;
    --font-weight: 400;
    --black: #000000;
    --white: #ffffff;
    --text: #7e7e7e;
    --transition: .3s ease-in-out;
    --transition2: 1s ease-in-out;
}

body {
    overflow-x: hidden;
}

.visibleMobile {
    display: none;
}

.visibleDestop {
    display: block;
}

.primaryButton {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 25px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--main-color);
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.65;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none !important;
}

.primaryButtonMedium {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
}

.primaryButton:hover {
    color: var(--white);
    transition: var(--transition);
    background: var(--black);
}

.buttonDark {
    background: var(--black);
    color: var(--white);
}

.buttonDark:hover {
    background: var(--main-color);
    color: var(--white);
    transition: var(--transition);
}

.buttonOrange {
    background: #f05a28;
    color: var(--white);
}

.buttonOrange:hover {
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
}

.buttonLight {
    background: var(--white);
    color: var(--black);
}

.buttonLight:hover {
    background: var(--black);
    color: var(--white);
    transition: var(--transition);
}

.buttonDelete {
    background: #e32b2b !important;
    color: var(--white) !important;
}

.buttonDelete:hover {
    background: #d51717 !important;
    color: var(--white) !important;
    transition: var(--transition) !important;
}

.buttonBuyying {
    background: #FF7F00 !important;
    color: var(--white) !important;
}

.buttonDelete:hover {
    background: #cc6a09 !important;
    color: var(--white) !important;
    transition: var(--transition) !important;
}

.innerTitle {
    color: var(--black);
    font-weight: 400;
    font-size: 34px;
    width: 100%;
    font-family: var(--font-butler);
    position: relative;
    z-index: 1;
}

.innerTitleWhite {
    color: var(--white);
}

.innerText {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.innerLink {
    flex: none;
}

.innerLink a {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.innerLink a svg {
    width: 20px;
    height: 15px;
    margin-left: 5px;
}

.innerLink a:hover {
    color: var(--main-color);
    transition: var(--transition);
}


@media only screen and (min-width: 900px) {
    .innerText {
        width: 60%;
    }
}

@media only screen and (min-width: 1100px) {
    .innerText {
        width: 50%;
    }
}

@media only screen and (min-width: 1300px) {
    .innerText {
        width: 40%;
    }
}

@media only screen and (min-width: 1400px) {
    .innerText {
        width: 35%;
    }
}

body {
    font-family: var(--font);
    font-weight: var(--font-weight);
}

.headerTopArea {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    font-family: var(--font);
    color: #555555;
    border-bottom: solid 1px #eee;
}

.headerBodyAreaMenu {
    display: flex;
}

.headerBodyAreaMenu > ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.headerBodyAreaMenu > ul > li {
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 15px;
    text-align: center;
}

.headerBodyAreaMenu > ul > li > span a {
    font-size: 14px;
    font-weight: 600;
    color: black;
    letter-spacing: .1em;
    text-decoration: none;
    position: relative;
    display: block;
}

.headerBodyAreaMenu > ul > li > span a.subMenu::after {
    display: inline-block;
    margin-left: 0.25rem;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

}

.headerBodyAreaMenu > ul > li > ul {
    position: absolute;
    margin-top: 3.5rem;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    z-index: 99;
    max-width: 300px;
    width: max-content;
    visibility: hidden;
    opacity: 0;
    background: #fff;
}

@media only screen and (min-width: 867px) {
    .headerBodyAreaMenu > ul > li:hover > ul {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
        margin-top: 15px;
    }
}

.headerBodyAreaMenu > ul > li > ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.headerBodyAreaMenu > ul > li > ul li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 10px;
}

.headerBodyAreaMenu > ul > li > ul li:last-child a {
    margin-bottom: 0;
}

.headerBodyAreaMenu > ul > li > ul li a:hover {
    color: black;
    transition: var(--transition);
}

.headerBodyAreaIcons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.headerBodyAreaIcons a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: inherit;
    margin-left: 30px;
    position: relative;
}

.headerBodyAreaIcons a span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: black;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -5px;
    top: 0;
}

.headerBodyAreaIcons a svg {
    width: 28px;
    height: 28px;
}

.headerBodyAreaIcons a i {
    display: flex;
    font-size: 22px;
}


.basketSidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.basketSidebar.active {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
}

.basketOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.basketDetail {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 450px;
    background: white;
    padding: 1.5rem;
    z-index: 99999;
}

.closeBasket {
    display: flex;
    justify-content: flex-end;
}

.closeBasket i {
    cursor: pointer;
    color: var(--main-color);
    display: flex;
    font-size: 18px;
    line-height: 15px;

}

.basketDetailTitle {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .125);

}

.basketDetailRow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basketDetailRowDelete {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.basketDetailRowTitle a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.basketDetailRowTitle:hover {
    text-decoration: double;
    transition: var(--transition);
}

.basketDetailRowPrice {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.basketDetailRowDelete a {
    text-decoration: none;
}

.basketDetailRowDelete a i {
    color: var(--main-color);
    font-size: 15px;
    line-height: 12px;
    display: flex;
}

.basketDetailRow {
    margin-bottom: 15px;
}

.basketDetailRow:last-child {
    margin-bottom: 0;
}

.basketButton {
    text-decoration: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    color: white !important;
    background: black;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}

.basketFooter {
    margin-top: 20px;
}

.basketFooterTotalPrice {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basketFooterTotalPrice span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.basketFooterTotalPrice span:last-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.basketButton:hover {
    background: var(--main-color);
    transition: var(--transition);
}

.swiperAreaInner {
    position: relative;
}

.swiperAreaContent {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.swiperAreaContenTopTitle {
    color: var(--black);
    font-size: 22px;
    font-weight: 600;
}

.swiperAreaContenTopTitle2 {
    font-size: 25px;
}

.goldColor {
    color: #e0b13f !important;
}

.swiperAreaContenTitle {
    color: var(--black);
    font-weight: bold;
    font-size: 75px;
    line-height: 85px;
}

.swiperAreaContenTitle span {
    color: var(--main-color) !important;
}

.swiperAreaContenTitle2 {
    font-size: 35px;
    line-height: 45px;
}

.swiperAreaContenTitle3 {
    font-size: 50px;
    line-height: 60px;
}

.swiperAreaContenText {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
}

.swiperAreaArrows {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    transition: var(--transition);
}

.swiperAreaArrows > div {
    opacity: 0;
    visibility: hidden;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.sliderArea:hover .swiperAreaArrows > div {
    opacity: 1;
    visibility: visible;
}

.sliderArea:hover .swiperAreaArrows {
    width: 94%;
    transition: var(--transition);
}

.swiperAreaArrows > div:hover {
    color: var(--white);
    background: var(--black);
    transition: var(--transition);
}

.swiperAreaArrows > div i {
    display: flex;
    font-size: 20px;
    line-height: 15px;
}

.swiperAreaPagination {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    z-index: 99 !important;
    bottom: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiperAreaPagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--main-color);
    opacity: 0.3;
    transition: var(--transition);
}

.swiperAreaPagination .swiper-pagination-bullet:hover {
    width: 15px;
    height: 15px;
    background: var(--main-color);
    transition: var(--transition);
    opacity: 1;
}

.swiperAreaPagination .swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    transition: var(--transition);
    opacity: 1;
}

.productBox {
    position: relative;
}

.productBoxButton {
    position: absolute;
    gap: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    bottom: 0;
}

.productBox:hover .productBoxButton {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
    bottom: 15px;
}

.productBoxButton a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 0 12px rgba(63, 63, 63, 0.1);
}

.productBoxButton a:hover {
    transition: var(--transition);
    background: var(--black) !important;
    color: var(--white) !important;
}

.productBoxButton a i {
    display: flex;
    line-height: 14px;
}

.productBoxImage {
    position: relative;
    overflow: hidden;
}

.productBoxImage img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;

}

.productBoxPrice {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}

.productBoxPrice strike {
    margin-right: 5px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
}

.productBoxTitle a {
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.productBoxTitle a:hover {
    color: var(--main-color);
}

.productBoxLabel {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.productBoxLabel span {
    padding: 5px 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 5px;
    z-index: 2;
    margin-right: 5px;
    margin-bottom: 5px;
}

.productBoxLabel span:last-child {
    margin-right: 0;
}

.productBoxLabelSale {
    background: rgba(78, 118, 97);
}

.productBoxLabelNew {
    background: #d3bf0b;
}

.productBoxLabelRp {
    background: rgb(13, 202, 240);
}

.productBoxLabelHotSelling {
    background: #dc3545;
}

.productBoxLabelFreeCargo {
    background: #fd7e14;
}

.productBoxLabelPoint1 {
    background: #0fa94d;
}

.productBoxLabelPoint2 {
    background: #8cc344;
}

.informationBoxIcon {
    display: flex;
    justify-content: center;
    height: 75px;
}

.informationBoxIcon svg {
    width: 1em;
    height: 1em;
    fill: var(--black);

}

.informationBoxIcon svg use {
    fill: var(--black);
}

.informationBoxTitle {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
}

.informationBoxText {
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--text);
    font-size: 18px;
}

.bannerArea {
    position: relative;
}

.bannerArea img {
    max-height: 600px;
    object-fit: cover;
}

.bannerAreaContent {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.blogBox {
    position: relative;
}

.blogBoxImage {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.blogBoxImage img {
    max-height: 450px;
    object-fit: cover;
}

.blogBoxImage::after {
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    visibility: hidden;
    opacity: 0;
}

.blogBoxImage:hover::after {
    -webkit-animation: shine 2s;
    animation: shine 2s;
}

.blogBoxTitle {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.blogBoxButton a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.blogBoxButton a:hover i {
    right: -15px;
    transition: var(--transition);
}

.blogBoxButton a i {
    right: 0;
    position: relative;
    display: flex;
    margin-left: 10px;
    transition: var(--transition);
}

.instagramBox {
    border-radius: 15px;
    overflow: hidden;
}

.instagramBox:hover img {
    transform: scale(1.15);
    transition: var(--transition);
}

.instagramBox img {
    transition: var(--transition);
}

.instagramBox::after {
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    visibility: hidden;
    opacity: 0;
}

.instagramBox:hover::after {
    -webkit-animation: shine 2s;
    animation: shine 2s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
        visibility: visible;
        opacity: 1;
    }
}

@keyframes shine {
    100% {
        left: 125%;
        visibility: visible;
        opacity: 1;
    }
}

.footerArea {
    background: #f8f8f8;
    padding: 75px 0;
}

.footerTitle {
    color: var(--black);
    font-weight: 600;
    font-size: 20px;
}

.footerText {
    margin-top: 30px;
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
}

.footerList {
    margin-top: 30px;
}

.footerList ul {
    padding: 0;
    margin: 0;
}

.footerList ul li {
    list-style-type: none;
}

.footerList ul li a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 15px;
}

.footerList ul li:last-child a {
    margin-bottom: 0;
}

.footerForm form {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.footerForm input {
    all: unset;
    width: 100%;
    background: white;
    padding: 0 20px;
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(63, 74, 60, .2);
    height: 48px;
}

.footerForm button {
    all: unset;
    height: 50px;
    flex: none;
    cursor: pointer;
    background: var(--black);
    color: var(--white);
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footerForm button:hover {
    transition: var(--transition);
    background: var(--main-color);
    color: var(--white);
}

.copyright {
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
}

.footerSocial {
    color: var(--black);
    display: flex;
}

.footerSocial a {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: var(--black);
    text-decoration: none;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerSocial a i {
    display: flex;
}

.mobileMenuLogo {
    display: none;
}

.mobileMenuClose {
    display: none;
}

.basketDetailRowIamge {
    width: 50px;
    flex: none;
}


.buying__box-body select {
    width: 100%;
    height: 40px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    padding: 0 10px;
}

.basket-content {
    border: 1px solid #e1e1e1;
    padding: 15px;
    height: 100%;
}

.basket-content .sumary:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.searchBox.active {
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
}

.searchBox form {
    display: flex;
    align-items: center;
}

.searchBox input {
    width: 100%;
    height: 50px;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.searchBox button {
    height: 50px;
    width: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    outline: none;
    cursor: pointer;
    color: white;
    box-shadow: none;
    margin-left: 10px;
    border: none;
}

.searchBox button i {
    font-size: 25px;
    line-height: 20px;
    display: flex;
}

.searchBox input::placeholder {
    color: #bcbcbc;
}

.closeSearchBox {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
}

.closeSearchBox {
    color: red;
    font-size: 25px;
    line-height: 20px;
    display: flex;
}

.memberLogout {
    display: flex;
    align-items: center;
    width: auto !important;
}

.memberLogout b {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400;
}

.memberLogout i {
    display: flex;
}

.headerSearchBox form {
    display: flex;
    align-items: center;
    position: relative;
}

.headerSearchBox input {
    height: 47px;
    width: 100%;
    padding: 0 60px 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #7e7e7e;
    border: solid 2px #d9dbd8;
    border-radius: 5px;
}

.headerSearchBox button {
    height: 47px;
    width: 47px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    right: 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    flex: none;
    padding: 0;
    margin: 0;
}

.headerSearchBox button svg {
    height: 20px;
}

.headerSearchBox input:focus {
    border-color: var(--main-color);
    background: #f5f5f5;
}

.hoverShine {
    position: relative;
    overflow: hidden;
}

.hoverShine:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition-duration: .5s;
}

.hoverShine:hover:before {
    left: 125%;
}

.hoverImageSize {
    overflow: hidden;
    position: relative;
}

.hoverImageSize img {
    transition: var(--transition);
    transform-origin: center center;
}

.hoverImageSize:hover img {
    transform: scale(1.1);
    transition: var(--transition);
}

.bannerBox {
    position: relative;
    cursor: pointer;
    transition: .3s ease-in-out;
    z-index: 1;
}

.bannerBox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .4);
}

.bannerBoxContent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    z-index: 1;
}

.bannerBoxContent a {
    color: var(--white);
    text-decoration: underline;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.bannerBoxContent a:hover {
    text-decoration: none;
    transition: var(--transition);
}

.bannerBoxContent {
    padding: 35px;
}

.bannerBoxContentTopTitle {
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    line-height: 44px;
    font-family: var(--font-butler);
    text-align: center;
    width: 100%;
}

.bannerBoxContentTopText {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    line-height: 29px;
}

.bannerBoxContentTopTitle1 {
    color: var(--white);
}

.swiperProductArrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
}

.swiperProductArrows .swiperProductArrowPrev,
.swiperProductArrows .swiperProductArrowNext {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.swiperProductArrows .swiperProductArrowPrev:hover,
.swiperProductArrows .swiperProductArrowNext:hover {
    color: var(--black);
    box-shadow: 0 3px 10px 0 rgba(126, 126, 126, 0.15);
}

.swiperProductArrows .swiperProductArrowPrev {
    position: absolute;
    left: -65px;
}

.swiperProductArrows .swiperProductArrowNext {
    position: absolute;
    right: -65px;
}

.swiperProductArrows .swiperProductArrowPrev svg,
.swiperProductArrows .swiperProductArrowNext svg {
    width: 17px;
    height: 17px;
}

.swiperProductArrows .swiperProductArrowPrev.swiper-button-disabled,
.swiperProductArrows .swiperProductArrowNext.swiper-button-disabled {
    opacity: 0.3;
}

.goToTop {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0.5rem 1rem rgba(126, 126, 126, 0.15);
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
}

.goToTop.active {
    transition: var(--transition);
    visibility: visible;
    opacity: 1;
}

.goToTop:hover {
    background: var(--main-color);
    transition: var(--transition);
    color: var(--white);
}

.goToTop i {
    display: flex;
    font-size: 15px;
    line-height: 13px;
    transition: .15s ease-in-out;
}

.breadcrumbBox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: rgb(245, 245, 245);
}

.breadcrumbBox ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumbBox ul li {
    list-style: none;
}

.breadcrumbBox ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: rgba(126, 126, 126, 0.75);
    transition: var(--transition);
    position: relative;
    margin-left: 35px;
}

.breadcrumbBox ul li a:after {
    content: '';
    height: 1px;
    width: 20px;
    background: rgba(126, 126, 126, 0.75);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 7.5px;
}

.breadcrumbBox ul li:last-child a:after {
    display: none;
    padding-right: 0;
    margin-right: 0;
}

.breadcrumbBox ul li:first-child a {
    margin-left: 0;
}

.breadcrumbBox ul li a.active,
.breadcrumbBox ul li a:hover {
    color: #000;
    transition: var(--transition);
}

.swiperProductDetail {
    width: 100%;
}

.swiperProductDetail img {
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.productDetail .thumbsSlider {
    margin-top: 15px;
}

.productDetail .thumbsSlider img {
    border-radius: 10px;
    width: 100%;
    height: 150px;
    opacity: 0.7;
    transition: var(--transition);
}

.productDetail .thumbsSlider .swiper-slide-thumb-active img {
    transition: var(--transition);
    opacity: 1;
}

.productDetailLabels span {
    padding: 5px 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 5px;
    z-index: 2;
    margin-right: 5px;
    margin-bottom: 5px;
}

.productDetailPrice {
    font-weight: 700;
    color: var(--black);
    font-size: 18px;
}

.productDetailPrice strike {
    font-size: 15px;
    font-weight: 500;
    color: #7e7e7e;
}

.productDetailPoints div span:first-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    min-width: 75px;
    display: inline-block;
}

.productDetailPoints div span:last-child {
    font-size: 16px;
    font-weight: bold;
    color: var(--black);
}

.productDetailTitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

.productDetailDescription {
    font-size: 15px;
    font-weight: 500;
    color: #7e7e7e;
}

.pieceBox {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: none;
    border: 1px solid #1e1e1e;
    border-radius: 5px;
}

.pieceBox button {
    height: 50px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.pieceBox button i {
    display: flex;
    font-size: 17px;
    line-height: 15px;
}

.pieceBox input {
    height: 50px;
    background: none;
    border: none;
    outline: none;
    width: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.productDetailTag div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.productDetailTag div:last-child {
    margin-bottom: 0;
}

.productDetailTag div span {
    font-size: 16px;
}

.productDetailTag div span:first-child {
    min-width: 100px;
    font-weight: bold;
}

.productDetailTag a {
    font-size: 20px;
    text-decoration: none;
    margin-right: 10px;
    color: black;
}

.productDetailTag a:last-child {
    margin-right: 0;
}

.primaryButtonHeart {
    padding: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.primaryButtonHeart i {
    display: flex;
    font-size: 20px;
}

.tabHead {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabHead button {
    cursor: pointer;
    font-size: 34px;
    font-weight: 600;
    color: #ababab;
    outline: none;
    background: none;
    border: none;
    transition: var(--transition);
    margin-right: 35px;
    padding: 0;
}

.tabHead button:last-child {
    margin-right: 0;
}

.tabHead button.active,
.tabHead button:hover {
    color: var(--black);
    transition: var(--transition);
}

.tabBody {
    margin-top: 50px;
}

.tabBody .tabBodyContent {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    height: 0;
}

.tabBody .tabBodyContent.active {
    visibility: visible;
    opacity: 1;
    position: relative;
    height: auto;
}

.cartBox {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-top: 0;
    padding: 15px;
    position: relative;
}

.cartBox:first-child {
    border-top: 1px solid #eee;
}


.cartBoxImage {
    width: 7%;
}

.cartBoxTitle {
    width: 43%;
}

.cartBoxTitle a {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}

.cartBoxPiece {
    width: 20%;
}

.cartBoxPrice {
    width: 17%;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
}

.cartBoxTrash {
    width: 5%;
}

.cartBoxTrash a {
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    color: #7e7e7e;
    text-decoration: none;
    transition: var(--transition);
}

.cartBoxTrash a:hover {
    color: #ba0404;
    transition: var(--transition);
}

.cartBoxTrash i {
    display: flex;
}

.cartBoxColumn {
    margin-left: 2%;
}

.cartBoxColumn:first-child {
    margin-left: 0;
}

.pageTitle {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.basketDetailRows {
    padding-right: 10px;
    height: calc(100vh - 260px);
    overflow-y: scroll;
}

.basketDetailRows::-webkit-scrollbar {
    width: 3px;
}

.basketDetailRows::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.basketDetailRows::-webkit-scrollbar-thumb {
    background: #c8c8c8;
}

.basketDetailRows::-webkit-scrollbar-thumb:hover {
    background: #a4a4a4;
}

.swiper-slide {
    position: relative;
}

.swiperAreaContenLogo {
    transform: scale(0.5);
    transition: var(--transition2);
    transform-origin: left;
    opacity: 0;
}

.swiperAreaContenTopTitle {
    transform: scale(0.5);
    transition: var(--transition2);
    transform-origin: left;
    opacity: 0;
}

.swiperAreaContenTitle {
    transform: scale(0.5);
    transition: var(--transition2);
    transform-origin: left;
    opacity: 0;
}

.swiperAreaContenText {
    transform: scale(0.5);
    transition: var(--transition2);
    transform-origin: left;
    opacity: 0;
}

.swiperAreaContenButton {
    transform: scale(0.5);
    transition: var(--transition2);
    transform-origin: left;
    opacity: 0;
}

.swiper-slide-active .swiperAreaContenLogo {
    transition: var(--transition2);
    transform: scale(1);
    opacity: 1;
}

.swiper-slide-active .swiperAreaContenTopTitle {
    transition: var(--transition2);
    transform: scale(1);
    opacity: 1;
}

.swiper-slide-active .swiperAreaContenTitle {
    transition: var(--transition2);
    transform: scale(1);
    opacity: 1;
}

.swiper-slide-active .swiperAreaContenText {
    transition: var(--transition2);
    transform: scale(1);
    opacity: 1;
}

.swiper-slide-active .swiperAreaContenButton {
    transition: var(--transition2);
    transform: scale(1);
    opacity: 1;
}


.headerSelectionBox {
    position: relative;
}

.headerSelectionBoxTitle {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.headerSelectionBoxTitle img {
    margin-right: 10px;
    flex: none;
}

.headerSelectionBoxTitle i {
    display: flex;
    margin-left: 5px;
    font-size: 8px;
    line-height: 7px;
}

.headerSelectionBoxList {
    position: absolute;
    right: 0;
    top: 35px;
    min-width: 120px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .35);
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.headerSelectionBoxList.active {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
}

.headerSelectionBoxList a {
    font-size: 15px;
    display: block;
    font-weight: 600;
    padding: 5px 10px;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
}

.headerSelectionBoxList a:hover {
    background: #e6e6e6;
    transition: var(--transition);
}

.headerSelectionBoxList img {
    margin-right: 5px;
}

.bannerAreaCategories {
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.bannerAreaCategories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  linear-gradient(90deg, rgba(8, 1, 129, 1) 0%, rgba(21, 7, 150, 1) 53%, rgba(0, 212, 255, 1) 100%);
    opacity: 0.5;
}

.bannerAreaCategories .bannerBoxContentTopTitle {
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: "Montserrat", sans-serif !important;
}

.bannerAreaCategories .bannerBoxContent {
    padding: 20px;
}

.bannerAreaCategories .bannerBoxContent i {
    width: 100%;
    justify-content: center;
    display: flex;
    text-align: center;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 15px;
}

.bannerAreaCategories .bannerBox {
    border: 1px solid #e4e4ff;
}

.bannerAreaTwo .bannerBoxContentTopTitle {
    text-align: left;
}

.siteLoaderBox {
    transition: .3s ease-in-out;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
}

.siteLoaderBox.active {
    overflow: visible;
    opacity: 1;
    z-index: 99;

}

.siteLoader {
    box-sizing: border-box;
    display: inline-block;
    width: 50px;
    height: 80px;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    position: relative;
    background: linear-gradient(var(--main-color) 30px, transparent 0) no-repeat;
    background-size: 2px 40px;
    background-position: 50% 0px;
    animation: spinx 5s linear infinite;
}

.siteLoader:before, .siteLoader:after {
    content: "";
    width: 40px;
    left: 50%;
    height: 35px;
    position: absolute;
    top: 0;
    transform: translatex(-50%);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0 0 20px 20px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0px;
    animation: lqt 5s linear infinite;
}

.siteLoader:after {
    top: auto;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    animation: lqb 5s linear infinite;
}

@keyframes lqt {
    0%, 100% {
        background-image: linear-gradient(var(--main-color) 40px, transparent 0);
        background-position: 0% 0px;
    }
    50% {
        background-image: linear-gradient(var(--main-color) 40px, transparent 0);
        background-position: 0% 40px;
    }
    50.1% {
        background-image: linear-gradient(var(--main-color) 40px, transparent 0);
        background-position: 0% -40px;
    }
}

@keyframes lqb {
    0% {
        background-image: linear-gradient(var(--main-color) 40px, transparent 0);
        background-position: 0 40px;
    }
    100% {
        background-image: linear-gradient(var(--main-color) 40px, transparent 0);
        background-position: 0 -40px;
    }
}

@keyframes spinx {
    0%, 49% {
        transform: rotate(0deg);
        background-position: 50% 36px;
    }
    51%, 98% {
        transform: rotate(180deg);
        background-position: 50% 4px;
    }
    100% {
        transform: rotate(360deg);
        background-position: 50% 36px;
    }
}


.breadcrumbBox2 {
    padding: 100px 0;
    position: relative;
}

.breadcrumbBox2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.66);
}

.breadcrumbBox2Title {
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.breadcrumbBox2 ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.breadcrumbBox2 ul li {
    list-style: none;
}

.breadcrumbBox2 ul li a {
    text-decoration: none !important;
    display: block;
    font-weight: 600;
    font-size: 17px;
    color: var(--white);
    padding-right: 25px;
    margin-right: 25px;
    position: relative;
}

.breadcrumbBox2 ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -6.5px;
    width: 13px;
    height: 1px;
    background: var(--white);
}

.breadcrumbBox2 ul li a.active {
    color: var(--main-color);
    padding: 0;
    margin: 0;
}

.breadcrumbBox2 ul li a.active::after {
    display: none;
}

.couponArea form {
    margin-top: 20px;
}

.couponArea form input {
    border: 1px solid #f5f5f5;
    outline: none;
    height: 50px;
    background: #f5f5f5;
    color: #7e7e7e;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    border-radius: 5px;
    padding: 0 15px;
    transition: var(--transition);
}

.couponArea form input:focus {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
    transition: var(--transition);
}

.couponArea form button {
    margin-top: 15px;
}

.couponAreaTitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

.couponAreaText {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #7e7e7e;
}

.cartAreaSumary {
    padding: 30px;
    background: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.cartAreaSumaryRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #7e7e7e;
}

.cartAreaSumaryRow span:last-child {
    font-weight: 700;
    color: var(--black);
}

.cartAreaSumaryTotal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.175);

}

.cartAreaSumaryTotal span:first-child {
    font-weight: 700;
    color: var(--black);
}

.cartAreaSumaryTotal span:last-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

@media only screen and (min-width: 880px) {
    .productSwiper2 .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .productSwiper2 .swiper-slide {
        width: calc(100% / 3 - 15px);
        height: auto;
        margin-bottom: 30px;
    }

    .sticky {
        position: fixed;
        width: 100%;
        z-index: 9;
        background: var(--white);
        top: 0;
        left: 0;
        box-shadow: 0 0 10px rgba(69, 69, 69, 0.31);
    }
}

@media only screen and (max-width: 879px) {

    .headerBodyAreaLogo img {
        width: 150px;
    }

    .visibleMobile {
        display: block;
    }

    .visibleDestop {
        display: none;
    }

    .headerBodyAreaMenu::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 100%;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, .6);
    }

    .headerBodyAreaMenu {
        position: fixed;
        width: 80%;
        height: 100%;
        background: var(--white);
        left: 0;
        top: 0;
        z-index: 9;
        display: block;
        visibility: hidden;
        opacity: 0;
    }

    .headerBodyAreaMenu.active {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
    }

    .headerBodyAreaMenu > ul {
        display: block;
        width: 100%;
        padding: 30px;
    }

    .headerBodyAreaMenu ul {
        height: calc(95vh - 115px);
        overflow: hidden;
        overflow-y: scroll;
        overflow-scrolling: touch;
    }

    .headerBodyAreaMenu > ul > li {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .headerBodyAreaMenu > ul > li > span a {
        font-size: 18px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .headerBodyAreaMenu > ul > li > ul {
        margin: 0;
        visibility: hidden;
        opacity: 0;
        background: none;
        box-shadow: none;
        padding: 15px 0;
        height: 0;
        border-bottom: 1px solid #a0a0a0;
        margin-bottom: 10px;
    }

    .headerBodyAreaMenu > ul > li > ul.active {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
        height: 100%;
        position: relative;
        margin-top: 0;
    }

    .headerBodyAreaMenu > ul > li > ul > li > a {
        margin-bottom: 10px;
        display: block;
        color: var(--black);
        font-size: 15px;
    }

    .headerBodyAreaMenu > ul > li > ul > li:last-child > a {
        margin-bottom: 0;
    }

    .headerBodyAreaMenu > ul > li > span a::before {
        content: '';
        display: none;
    }

    .headerBodyAreaMenu > ul > li > span a.subMenu::after {
        display: none;
    }

    .headerBodyAreaMenu > ul > li > span {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .headerBodyAreaMenu > ul > li > span i {
        flex: none;
        display: flex;
        height: 50px;
        width: 50px;
        align-items: center;
        justify-content: flex-end;
        font-size: 20px;
        line-height: 17px;
        transition: .3s ease-in-out;
        position: relative;
        z-index: 1;
    }

    .mobileMenuLogo {
        display: block;
        padding: 30px;
        border-bottom: 1px solid #1e1e1e;
    }

    .mobileMenuLogo img {
        width: 120px;
    }

    .mobileMenuClose {
        position: absolute;
        top: 34px;
        display: flex;
        right: 30px;
        font-size: 17px;
        line-height: 10px;
    }

    .headerBodyAreaIcons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        flex: none;
    }


    .headerBodyAreaIcons a svg {
        width: 25px;
        height: 25px;
    }

    .headerBodyAreaIcons {
        padding-right: 0;
    }

    .mobileMenuOpen i {
        display: flex;
        font-size: 25px;
        line-height: 20px;
    }

    .swiperArea img {
        width: 100%;
        object-fit: cover;
    }

    .swiperAreaContenText {
        display: none;
    }

    .swiperAreaContenTitle {
        font-size: 20px;
        line-height: 24px;
        text-shadow: 0px 4px 4px #e1e1e1;
    }

    .pb-50 {
        padding-bottom: 25px;
    }

    .pt-50 {
        padding-top: 25px;
    }

    .pb-75 {
        padding-bottom: 37.5px;
    }

    .pt-75 {
        padding-top: 37.5px;
    }

    .bannerArea img {
        height: auto;
        max-height: 500px;
        width: 100%;
        object-fit: contain;
    }

    .innerTitle {
        font-size: 32px;
    }

    .innerText {
        width: 85%;
    }

    .instagramArea {
        padding: 0 15px;
    }

    .footerArea {
        padding: 37.5px 0;
    }

    .productBoxButton {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

    .basketDetail {
        width: 100%;
    }

    .productDetail {
        margin-top: 15px;
    }

    .productDetail .thumbsSlider img {
        height: 80px;
        object-fit: cover;
    }

    .tabHead button {
        font-size: 20px;
        margin-right: 15px;
    }

    .tabBody {
        margin-top: 30px;
    }

    .breadcrumbBox ul li a {
        margin-left: 20px;
    }

    .breadcrumbBox ul li a:after {
        width: 10px;
        margin-left: 5px;
    }

    .cartBox {
        border: 1px solid #ebebeb;
        padding: 15px;
        border-radius: 10px;
        position: relative;
        margin-bottom: 30px;
    }

    .cartBox:last-child {
        margin-bottom: 0;
    }

    .cartBoxImage {
        width: 20%;
    }

    .cartBoxImage img {
        border-radius: 5px;
    }

    .cartBoxTitle {
        width: 100%;
    }

    .cartBoxTitle a {
        font-size: 20px;
    }

    .cartBoxPiece {
        margin-top: 10px;
        width: 50%;
    }

    .cartBoxPrice {
        margin-top: 10px;
        width: 50%;
        font-size: 20px;
    }

    .cartBoxTrash {
        position: absolute;
        top: -15px;
        right: 5px;
        z-index: 9;
    }

    .cartBoxTrash a {
        border-radius: 50%;
        background: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        transition: var(--transition);
    }

    .cartBoxTrash a:hover {
        color: red;
        transition: var(--transition);
    }

    .cartBoxTrash a i {
        font-size: 20px;
        color: black;
        line-height: 19px;
    }

    .cartBoxColumn {
        margin-left: 0px;
    }

    .cartBox .pieceBox {
        height: 45px;
    }

    .cartBox .pieceBox button {
        height: 45px;
    }

    .cartBox .pieceBox input {
        height: 45px;
    }

    .mobileMl-15 {
        margin-left: 15px;
    }

    .swiperAreaContenLogo img{
        width: 150px;
    }

}

.footerCard img {
    width: 40px;
    object-fit: contain;
    margin-left: 10px;
}

.form-control {
    height: 45px;
}


@media (min-width: 800px) and (max-width: 1300px) {
    .bannerBoxContent {
        width: 100% !important;
    }

    .bannerBoxContentTopTitle {
        font-size: 22px;
    }

    .bannerBoxContentTopTitle1 {
        font-size: 12px;
    }

    .primaryButton {
        height: 40px;
        padding: 0 20px;
        font-size: 12px;
    }
    .bannerAreaCategories .bannerBoxContentTopTitle{
        font-size: 20px;
        line-height: 25px;
    }
    .informationBoxText {
        margin-top: 5px;
        font-size: 11px;
    }
    .informationBoxTitle {
        margin-top: 20px;
    }
    .innerTitle{
        font-size: 25px;
    }
    .blogBoxTitle{
        font-size: 15px;
    }
    .blogBoxButton a{
        font-size: 12px;
    }
    .footerTitle{
        font-size: 15px;
    }
    .footerList{
        font-size: 12px;
    }
    .footerList ul li a{
        font-size: 12px;
    }
    .copyright{
        font-size: 12px;
    }
    .swiperAreaContenTitle {
        font-size: 30px;
        line-height: 40px;
    }
    .swiperAreaContenTopTitle{
        font-size: 20px;
    }
    .swiperAreaContenText{
        font-size: 12px;
    }
    .swiperAreaContenTopTitle2{
        font-size: 15px;
    }
    .swiperAreaContenTitle2{
        font-size: 22px;
        line-height: 30px;
    }
    .headerTopArea{
        font-size: 12px;
    }
    .headerSelectionBoxTitle{
        font-size: 12px;
    }
    .headerSelectionBoxTitle img{
        width: 25px;
    }
    .headerBodyAreaMenu > ul > li > span a{
        font-size: 12px;
        letter-spacing: 0;
    }
    .headerBodyAreaMenu > ul > li > ul li a{
        font-size: 11px;
    }
    .headerBodyAreaLogo img{
        width: 100%;
    }
    .bannerAreaOne .bannerBoxContentTopTitle{
        font-size: 15px;
    }
    .bannerAreaOne .bannerBoxContent a{
        font-size: 12px;
    }
    .productBoxTitle a{
        font-size: 10px;
    }
    .productDetailTitle{
        font-size: 15px;
    }
    .productDetailDescription{
        font-size: 12px;
    }
    .productDetailTag div span{
        font-size: 11px;
    }
    .breadcrumbBox ul li a{
        font-size: 11px;
    }
    .headerBodyAreaIcons a i{
        font-size: 15px;
    }
    .headerBodyAreaIcons a svg{
        width: 20px;
        height: 20px;
    }
    .headerBodyAreaIcons a span {
        width: 12px;
        height: 12px;
        font-size: 8px;
    }
    .pieceBox button{
        height: 40px;
        font-size: 13px;
    }
    .pieceBox{
        height: 40px;
    }
    .pieceBox input{
        height: 40px;
    }
    .pageTitle{
        font-size: 25px;
    }
}

.memberInfo a{
    color: var(--black);
    font-size: 17px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.memberInfo a i{
    display: flex;
}