﻿@font-face {
    font-family: 'IRANSans';
    src: url('../fonts/IRANSansWeb(FaNum).ttf') format('truetype');
}

@font-face {
    font-family: 'aviny';
    src: url('../fonts/aviny.ttf') format('truetype');
}
/*
@font-face {
    font-family: 'BYekan';
    src: url('../fonts/B Yekan.ttf') format('truetype');
}*/
@font-face {
    font-family: 'BYekan';
    src: url('../fonts/IRANYekanXFaNum-Light.woff2') format('woff2');
}

:root {
    --black: #292d35;
    --black-darker: #000003;
    --black-text: rgba(41,45,53,1);
    --black-light: rgba(41,45,53,.7);
    --gray: #F7F5F2;
    --gray-lighter: rgba(243,245,237,.5);
    --white: #FFFFFF;
    --white-text: rgba(255,255,255,.75);
    --main: #00bf6f;
    --main-darker: #70a21a;
    --main-lighter: rgba(142,192,56,.5);
    --second: #FF096A;
    --red: #da2424;
    --font-main: 'IRANSans';
    --font-headers: 'aviny';
    --font-Yekan: 'BYekan';
    --ColorProductDetails-text: #01bf6f;
    --ColorOldPrice: #8c8c8c;
    --ColorPercent: #f16422;
    --ColorHeader: #fab528;
    --ColorTitle: #FA532C;
    --footerColor: rgb(55, 63, 80);
    --footerBottom: #131a2f;
    --theme-color: #0da487;
    --theme-color-rgb: 13, 164, 135;
    --Purple: #6658a6;
    --Blue: #356493;
    --Yellow: #fef100;
    --BluePercent: #98c0e9;
    --color-primary-700: #ef394e;
}

body {
    font-family: IRANSans;
    font-size: 15px;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px !important;
    }
}
/**********************************Index***********************/

.SuggestBox {
    background-image: url(../images/promotion.jpg);
    border-radius: 10px;
    width: 100%;
    background-size: auto 100%;
    background-position: 74%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
    padding: 15px 0px;
}

    .SuggestBox .NotAvailable {
        color: var(--white) !important;
    }
    /*.SuggestBox1 .ProductPrice span {
        color: var(--white) !important;
    }
    .SuggestBox1 .ProductPrice del {
        color: var(--white) !important;
    }*/

@media (max-width: 1395px) {
    .SuggestBox {
        background-position: 85%;
    }
}

.SuggestBox2 {
    background-image: url(../images/news-product.jpg);
}

    .SuggestBox2 .NotAvailable {
        color: var(--red) !important;
    }

.SuggestBox3 {
    background-image: url(../images/top-sales.jpg);
}

    .SuggestBox3 .NotAvailable {
        color: var(--red) !important;
    }

.SuggestBoxImage {
    width: 225px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    margin-top: auto;
    text-align: center;
    font-family: var(--font-Yekan);
}

    .SuggestBoxImage p {
        width: 225px;
        text-align: center;
        font-weight: bold;
    }

    .SuggestBoxImage a {
        display: inline-block;
        margin-bottom: 30px;
        background-color: var(--white);
        color: var(--second);
        transition: 0.5s all ease-in-out;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
    }

        .SuggestBoxImage a:hover {
            background-color: var(--second);
            color: var(--white);
        }

.SuggestBoxAllProduct {
    width: calc(100% - 300px);
}
/**************************Header********************/
.HeaderTop {
    background-color: var(--footerBottom);
    padding: 10px 0px;
    color: var(--main);
}

    .HeaderTop .ColTwo {
        text-align: left;
    }

        .HeaderTop .ColTwo a {
            color: white;
        }

        .HeaderTop .ColTwo span {
            margin-right: 10px;
            margin-left: 10px;
        }

.HeaderMiddle {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* padding: 10px 0px;*/
    height: 60px;
    background-color: var(--footerBottom);
}

.LogoHeader {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.LogoImage {
    max-height: 40px;
    align-items: center;
}

.HeaderBottom .HeaderLogo {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
}

.HeaderBottom .MenuTop {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.HeaderBottom .HeaderBasket a {
    display: flex;
    height: 40px;
    width: 40px;
    font-size: 17px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: .5s ease;
    background-color: var(--main);
    color: var(--white);
}

    .HeaderBottom .HeaderBasket a:hover {
        background-color: var(--black);
    }

.HeaderBottom .HeaderDashboardProfile a {
    display: flex;
    height: 40px;
    width: 40px;
    font-size: 17px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: .5s ease;
    background-color: var(--black);
    color: var(--white);
}

    .HeaderBottom .HeaderDashboardProfile a:hover {
        background-color: var(--main);
    }

.HeaderBottom .HeaderFavorite a {
    display: flex;
    height: 40px;
    width: 40px;
    font-size: 17px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: .5s ease;
    background-color: var(--red);
    color: var(--white);
}

    .HeaderBottom .HeaderFavorite a:hover {
        background-color: var(--black);
    }

.HeaderBottom .HeaderTextLink {
    display: block;
    color: var(--white);
    font-size: 14px;
    padding-bottom: 5px;
    transition: .5s ease;
}

    .HeaderBottom .HeaderTextLink span {
        display: block;
        font-weight: bold;
        color: var(--black);
    }

    .HeaderBottom .HeaderTextLink:hover {
        color: var(--main);
    }

.HeaderMiddle .navbar-expand-lg .navbar-collapse {
    justify-content: space-evenly;
}

.HeaderBottom form {
    position: relative;
}

.HeaderBottom input[type=text] {
    padding: 10px 60px 10px 15px;
    background-color: var(--main);
    width: 100%;
    border: 0;
    border-radius: 5px;
    height: 45px;
    font-size: 15px;
}

    .HeaderBottom input[type=text]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: var(--white);
        opacity: 1; /* Firefox */
    }

    .HeaderBottom input[type=text]:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: var(--white);
    }

    .HeaderBottom input[type=text]::-ms-input-placeholder { /* Microsoft Edge */
        color: var(--white);
    }



.HeaderBottom .HeaderIconSearch {
    margin-top: 7px;
    margin-bottom: auto;
    color: var(--main);
    position: absolute;
    right: 20px;
    font-size: 20px;
}

    .HeaderBottom .HeaderIconSearch button {
        border: unset;
        background-color: transparent;
        color: var(--white);
    }

.HeaderBottom {
    display: flex;
    padding-bottom: 1px;
    padding-top: 1px;
    align-items: center;
    justify-content: space-around;
    background-color: var(--white);
}

    .HeaderBottom .MainMenu {
        display: flex;
        align-items: center;
    }

        .HeaderBottom .MainMenu .collapse {
            justify-content: flex-start;
        }

            .HeaderBottom .MainMenu .collapse ul {
                margin-right: 3px;
                padding: 0;
            }

                .HeaderBottom .MainMenu .collapse ul li a {
                    color: var(--footerBottom);
                    font-weight: unset;
                    display: flex;
                    height: 100%;
                    align-items: center;
                    margin-left: 10px;
                }

                    .HeaderBottom .MainMenu .collapse ul li a i {
                        margin-right: 5px;
                        font-size: 10px;
                        margin-left: 5px;
                    }


.HeaderMiddle .HeaderContactUs a {
    display: flex;
    color: var(--black);
    font-size: 20px;
    align-items: center;
    justify-content: flex-end;
}

    .HeaderMiddle .HeaderContactUs a i {
        color: var(--main);
        font-size: 45px;
        transition: .5s ease;
        margin-left: 10px;
    }

    .HeaderMiddle .HeaderContactUs a span {
        display: block;
        color: var(--white);
        font-size: 12px;
        padding-right: 10px;
        padding: 3px;
    }

    .HeaderMiddle .HeaderContactUs a:hover {
        color: var(--second);
    }

.HeaderMiddle .BtnCat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .HeaderMiddle .BtnCat nav,
    .HeaderMiddle .BtnCat .container-fluid {
        height: 100%;
    }

    .HeaderMiddle .BtnCat button {
        border: none;
        background-color: var(--main);
        color: var(--white);
        width: 250px;
        padding: 10px 0px;
        border-radius: 10px;
        font-family: var(--font-headers);
        font-size: 22px;
    }

        .HeaderMiddle .BtnCat button i {
            margin-left: 10px;
            font-size: 15px;
        }


.MenuCat {
    background-color: var(--white);
    width: 290px !important;
}

    .MenuCat .CatTitle {
        font-family: var(--font-headers);
        font-size: 40px;
        color: var(--main);
        margin: 10px 5px;
    }

    .MenuCat .offcanvas-body {
        direction: ltr;
        padding: 0;
    }

    .MenuCat .btn-close {
        opacity: 1;
        background-color: var(--gray);
    }

    .MenuCat .offcanvas-header {
        align-items: unset;
    }

.UlMenu {
    list-style: none;
    padding: 0;
}

    .UlMenu li {
        padding: 10px 5px;
        align-items: center;
    }



        .UlMenu li a {
            color: var(--black);
            transition: 0.5s all ease-out;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding-left: 15px;
            padding-right: 10px;
        }

            .UlMenu li a:hover {
                color: var(--main);
            }

        .UlMenu li img {
            width: 40px;
            margin-left: 10px;
        }

        .UlMenu li span {
            font-weight: bold;
            font-weight: unset;
            font-size: 14px;
            color: var(--footerBottom);
        }

        .UlMenu li i {
            color: var(--main);
            float: left;
        }

.ULItemSecond {
    margin: 0;
    padding-right: 5px;
    padding-left: 0;
    list-style: unset;
    direction: rtl;
}
/************************MegaMenu****************************************/
.DropContent {
    display: block;
    align-items: center;
    justify-content: space-evenly;
    transition: .5s ease;
}

    .DropContent:hover .MenuDrop {
        display: block;
        opacity: 1;
    }

.MenuDrop {
    display: none;
    position: absolute;
    background-color: var(--white);
    width: 100%;
    right: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 11;
    border-radius: 5px;
    transition: .5s ease;
    opacity: 0;
    padding: 15px;
}





.SubMenu {
    list-style: none;
    padding: 0;
    margin: 15px 10px;
}

    .SubMenu .MenuTitle {
        /*padding: 5px 0px;*/
        font-size: 16px;
        font-weight: bold;
        border-right: 3px solid var(--second);
        padding-right: 5px;
        color: var(--black);
        margin-bottom: 5px;
    }

        .SubMenu .MenuTitle a {
            transition: .5s ease;
        }

            .SubMenu .MenuTitle a:hover {
                color: var(--main) !important;
            }

    .SubMenu .MenuItemTwo {
        padding: 4px 0px;
        font-size: 14px;
    }

        .SubMenu .MenuItemTwo a {
            transition: .5s ease;
            color: var(--black);
        }

            .SubMenu .MenuItemTwo a:hover {
                color: var(--main) !important;
            }
/*.ULItemSecond .DivElement {
        display: none;
        position: absolute;
        right: calc(var(--bs-offcanvas-width) - 15px);
        top: 0;
        background-color: var(--gray);
        height: 100%;
        padding: 25px;
    }

    .ULItemSecond .ItemSecond:hover > .DivElement {
        display: block;
    }*/
.ImageMenu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: column;
}

    .ImageMenu img {
        border-radius: 50%;
        margin-bottom: 10px;
        transition: all ease-in-out 1s;
        border: 3px solid var(--footerBottom);
        padding: 3px;
    }

        .ImageMenu img:hover {
            cursor: pointer;
            opacity: 0.8;
            transform: scale(0.9);
            transition: all .5s;
        }

    .ImageMenu h2 {
        font-size: 18px;
        font-weight: bold;
        color: var(--footerBottom);
    }

.AdvertiseImage {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /*margin-top: 10px;*/
    margin-bottom: 10px;
    flex-direction: column;
}

    .AdvertiseImage img {
        transition: all ease-in-out 1s;
    }

.FirstLink {
    min-height: 50px;
}

.AFirstLink {
    color: var(--white);
    margin-left: 15px;
    transition: 0.5s all ease-in-out;
    font-family: var(--font-headers);
    font-weight: normal !important;
    font-size: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
}

    .AFirstLink:hover {
        color: var(--second);
    }

    .AFirstLink i {
        font-size: 12px;
        margin-right: 5px;
    }

.IndexMainMenu {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
}

.UlMainMenu {
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: flex-start !important;
}
/*********************Slider******************/
.SliderButtonRight {
    display: flex;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 2%;
    border: 1px solid var(--white);
    top: unset;
    color: var(--main);
    bottom: 5%;
    border-radius: 10%;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--white);
}

    .SliderButtonRight i {
        font-size: 22px;
    }

    .SliderButtonRight:hover {
        color: var(--black);
        border: 1px solid var(--main);
        background-color: var(--white);
    }

.SliderButtonLeft {
    display: flex;
    width: 45px;
    height: 45px;
    position: absolute;
    left: 2%;
    border: 1px solid var(--white);
    top: unset;
    color: var(--main);
    bottom: 5%;
    border-radius: 10%;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--white);
}

    .SliderButtonLeft i {
        font-size: 22px;
    }

    .SliderButtonLeft:hover {
        color: var(--black);
        border: 1px solid var(--main);
        background-color: var(--white);
    }

.SliderImage {
    /* background-image: url('../Site/StaticImage/homepage-new-slide-bg.webp');*/
    padding: 0px 0px;
    background-color: var(--gray);
}

    .SliderImage img {
        border-radius: 10px;
    }

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000000;
    padding: 3px;
    margin: 2px;
    background-color: var(--main);
    margin-bottom: 10px;
}
/*******************popular******************/
.Wave {
    display: block;
    height: 64px;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    margin-top: -55px;
    background-color: var(--white);
    mask-image: url(../images/wave.svg);
    -webkit-mask-image: url(../images/wave.svg);
    mask-size: 1940px;
    -webkit-mask-size: 1940px;
    position: absolute;
    left: 0;
    width: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

    .Wave.WaveScale {
        transform: scaleX(-1);
    }

    .Wave.WaveGreen {
        background-color: var(--main);
    }

    .Wave.WaveGray {
        background-color: var(--gray);
    }

    .Wave.WaveBlack {
        background-color: var(--black);
    }

a {
    text-decoration: none;
}

.AlignRight {
    text-align: right;
}

.AlignLeft {
    text-align: left;
}

.BtnMain {
    padding: 10px 30px;
    border: none;
    font-size: 14px;
    background-color: var(--main);
    color: var(--white);
    border-radius: 5px;
    display: inline-block;
    transition: background-color 1s ease;
    transform: scale(1);
}

    .BtnMain.MarginLow {
        padding: 10px 40px;
    }

    .BtnMain:hover {
        background-color: var(--footerBottom);
    }

    .BtnMain.Delete {
        padding: 10px 30px;
        border-radius: 5px;
    }

        .BtnMain.Delete:hover {
            background-color: var(--black-darker);
            color: var(--main);
        }

    .BtnMain.Update {
        background-color: var(--main);
        color: var(--white);
        padding: 10px 30px;
        border-radius: 5px;
    }

        .BtnMain.Update:hover {
            background-color: var(--black-darker);
            color: var(--main);
        }

.BtnAddAddress {
    display: inline-block;
    padding: 15px;
    background-color: var(--black-darker);
    font-family: var(--font-headers);
    font-size: 30px;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .BtnAddAddress:hover {
        background-color: var(--main);
        color: var(--white);
    }

.BtnSendTicket {
    display: inline-block;
    padding: 15px;
    background-color: var(--main);
    color: var(--white);
    font-family: var(--font-headers);
    font-size: 30px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all ease 0.5s;
    border: unset;
}

    .BtnSendTicket:hover {
        background-color: var(--black-darker);
        color: var(--white);
    }

.BtnMain.HoverBlack:hover {
    background-color: var(--black);
}

.PaddingTop50 {
    padding-top: 50px;
}

.PaddingBottom50 {
    padding-Bottom: 50px;
}

.backGroundWhite {
    background: #ffffff !important;
}

.backGroundGray {
    background: #f5f5f5 !important;
}

.BackGroundGrayTwo {
    background: var(--gray) !important;
}

.WhatsAppFIxed {
    position: fixed;
    left: 10px;
    bottom: 150px;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .WhatsAppFIxed img {
        width: 40px;
        margin-bottom: 8px;
    }

.DateCounter .row {
    justify-content: flex-end;
}

.DateCounter .d-flex {
    justify-content: flex-end;
}

.AmazingDiscounts {
    margin-right: 15px;
    display: inline-block;
}

    .AmazingDiscounts p {
        margin: 0;
        margin-bottom: 10px;
        /*line-height: 20px !important;*/
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        min-width: 60px;
    }

        .AmazingDiscounts p.DateDay {
            color: var(--color-primary-700) !important;
            font-size: 45px;
        }
/*******************Subscribe******************/
.Subscribe {
    background-color: #183544;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

    .Subscribe .Title {
        font-size: 25px;
        color: var(--white);
        font-family: var(--font-headers);
        display: block;
    }

    .Subscribe span {
        color: var(--white);
        display: block;
        margin-bottom: 10px;
        font-size: 13px;
        text-align: right;
    }

.SubscribeForm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Subscribe .RightColumn {
    display: flex;
    align-items: center;
}

    .Subscribe .RightColumn i {
        font-size: 50px;
        color: var(--white);
        margin-left: 10px;
    }

.SubscribeForm input {
    padding: 13px;
    border: none;
    font-size: 15px;
    background-color: var(--white);
    color: var(--black);
    margin: 0;
    display: inline-block;
    border-radius: 5px;
    margin-left: 15px;
}

.SubscribeForm button {
    padding: 15px 25px;
    border: none;
    font-size: 15px;
    background-color: var(--second);
    color: var(--white);
    border-radius: 5px;
    transition: background-color 1s ease;
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

    .SubscribeForm button i {
        margin-right: 5px;
    }

    .SubscribeForm button:hover {
        background-color: var(--main);
    }

/******************************Advertising********************/
.Advertising {
    padding: 50px 0px;
    background-color: var(--white);
    color: var(--black);
}

    .Advertising .Title {
        color: var(--footerBottom);
        font-family: var(--font-headers);
        margin-bottom: 20px;
        font-size: 35px;
    }

    .Advertising a {
        display: block;
        color: var(--black);
        margin: 10px;
        position: relative;
    }

    .Advertising img {
        border-radius: 10px;
    }

    .Advertising .AllDescription {
        position: absolute;
        bottom: -10%;
        width: 100%;
    }

    .Advertising .Sale {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        margin-bottom: 10px;
    }

        .Advertising .Sale div {
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
            width: 50px;
            color: #3BB77E;
        }

    .Advertising .AdvertisingDescribe {
        -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
        box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
        background-color: var(--white);
        width: 90%;
        padding: 20px 10px;
        border-radius: 5px;
        margin: auto;
    }

        .Advertising .AdvertisingDescribe h5 {
            font-size: 15px;
            font-weight: bold;
        }

    .Advertising .owl-stage {
        padding-bottom: 20px;
    }

    .Advertising .RowTwo {
        display: flex;
        font-size: 15px;
        align-items: center;
        justify-content: space-between;
    }

        .Advertising .RowTwo .BtnVisit {
            background-color: #DEF9EC;
            color: #3BB77E;
            padding: 5px 15px;
            font-size: 15px;
            border-radius: 5px;
            font-family: var(--font-headers);
        }

        .Advertising .RowTwo .Percent {
            font-family: var(--font-headers);
            font-size: 18px;
        }
/*****************************footer*******************************************/
.Instagram {
    display: flex;
    overflow-y: scroll;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
}

    .Instagram::-webkit-scrollbar {
        display: none;
    }

.ImageInstagram {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all ease-in-out 1s;
    min-width: 207px;
}

    .ImageInstagram:hover {
        cursor: pointer;
        transition: all ease-in-out 1s;
    }

        .ImageInstagram:hover::before {
            content: "";
            display: block;
            position: absolute;
            right: 0;
            left: 0;
            top: 0;
            bottom: 0;
            background-color: #000;
            opacity: 0.5;
            transition: opacity 0.3s;
            z-index: 1;
        }

    .ImageInstagram i {
        visibility: hidden;
        position: absolute;
    }

    .ImageInstagram:hover i {
        visibility: visible;
        position: absolute;
        right: calc( 50% - 16px );
        top: calc( 50% - 16px );
        color: #ffffff;
        font-size: 32px;
        font-weight: 600;
        line-height: 1;
        opacity: 1;
        transition: opacity 0.3s;
        z-index: 1;
    }

    .ImageInstagram img {
        transition: all ease-in-out 1s;
    }

    .ImageInstagram:hover img {
        cursor: pointer;
        transform: scale(1.2);
        transition: all .5s;
    }

.TextAlignCenter {
    text-align: center;
}

.footer {
    background: #212121;
    z-index: 1;
    padding: 80px 0px;
    position: relative;
    color: var(--white);
    background-image: url('../images/borders_shape.png');
    font-family: var(--font-Yekan);
}

    .footer .SubScribeBg {
        border-bottom: 1px solid #393939;
        padding: 0 0 38px;
    }

    .footer .SubscribeTitle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .footer .SubscribeTitle h2 {
            font-size: 17px;
            font-weight: bold;
            color: #fff;
            text-align: center;
            display: inline-block;
        }

        .footer .SubscribeTitle p {
            font-size: 17px;
            color: #fff;
            text-align: center;
            display: inline-block;
        }

    .footer .ContactBoxSubscribe {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .footer .ContactForm .ContactBoxSubscribe input {
        font-size: 14px;
        height: 55px;
        width: 280px;
        outline: none;
        display: block;
        color: #ffffff;
        padding: 0px 30px;
        border: 1px solid #272727;
        background-color: transparent;
        transition: all 0.3s ease-in-out;
    }

    .footer .ContactForm .ContactBoxSubscribe button {
        margin: 0;
        color: #FFFFFF;
        background-color: var(--second);
        border: unset;
        width: 55px;
        height: 55px;
        font-size: 18px;
        border-radius: 0;
    }

    .footer .SubScribeBgMiddle {
        /*border-bottom: 1px solid #393939;*/
        /*padding: 38px 0 38px;*/
    }

.footerNewsletterBoxed {
    padding: 35px 50px;
    background-color: #171717;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.SubScribeBgMiddle .MenuUl ul {
    padding: 6px;
}

    .SubScribeBgMiddle .MenuUl ul li {
        display: block;
        list-style: none;
        padding: 0 0 18px;
    }

        .SubScribeBgMiddle .MenuUl ul li a {
            color: var(--white);
            background: linear-gradient( to right, var(--second), var(--second), 50%, #fff 50%);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            background-size: 200%, 100%;
            background-position: 100%;
            transition: 0.5s all ease-out;
        }

            .SubScribeBgMiddle .MenuUl ul li a:hover {
                background-position: 0;
            }

.footer .FooterLogo {
    display: flex;
    justify-content: center;
}

    .footer .FooterLogo img {
        max-height: 100px;
        margin-bottom: 10px;
    }

.footer .FooterDescription {
    margin-top: -80px;
    padding: 80px 45px 30px;
    background-color: #171717;
    text-align: justify;
}

.footer .FooterSocialMedia {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

    .footer .FooterSocialMedia a {
        font-size: 15px;
        width: 50px;
        height: 50px;
        background-color: rgb(33, 33, 33);
        line-height: 33px;
        text-align: center;
        color: #979797;
        margin-right: 6px;
        position: relative;
        z-index: 1;
        transition: 0.5s ease-in-out;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

        .footer .FooterSocialMedia a i {
            left: 50%;
            position: absolute;
            transform: translateX(-50%);
            transition: all 0.3s ease-in-out;
        }

        .footer .FooterSocialMedia a:hover i:nth-child(1) {
            top: -100%;
            opacity: 0;
            transform: translateX(-50%);
        }

        .footer .FooterSocialMedia a:hover i:nth-child(2) {
            top: 52%;
            opacity: 1;
            transform: translate(-50%, -52%);
        }

        .footer .FooterSocialMedia a i:nth-child(1) {
            top: 52%;
            transform: translate(-50%, -55%);
        }

        .footer .FooterSocialMedia a i:nth-child(2) {
            top: 100%;
            opacity: 0;
        }

        .footer .FooterSocialMedia a:hover {
            color: #fff;
            background-color: #007bb5;
            cursor: pointer;
        }

        .footer .FooterSocialMedia a.FooterWhatsapp:hover {
            background-color: #075e54;
        }

        .footer .FooterSocialMedia a.FooterInstagram:hover {
            background-color: #DD2A7B;
        }

        .footer .FooterSocialMedia a.FooterTelegram:hover {
            background-color: #0088CC;
        }

.footer .FooterContactus {
    display: flex;
}

    .footer .FooterContactus .FooterContactusIcon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .footer .FooterContactus .FooterContactusIcon i {
            font-size: 16px;
            color: var(--white);
            margin-left: 12px;
            background-color: #ff4328;
            width: 44px;
            height: 44px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
        }

    .footer .FooterContactus .FooterContactusContent {
        display: inline-block;
        font-size: 14px;
        line-height: 30px;
    }

.IconMap i {
    background-color: #209ffa !important;
}

.IconEmail i {
    background-color: #fec931 !important;
}

.footer .SubScribeBgEnd {
    color: #999999;
    margin-top: 28px;
}

.footer .FooterDesign {
    padding: 22px 35px;
    background-color: #212121;
}

    .footer .FooterDesign a {
        color: var(--white);
        text-decoration: none;
    }

.footer .FooterPolicy {
    text-align: left
}



    .footer .FooterPolicy span {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer .FooterPolicy a {
        text-decoration: none;
        background: linear-gradient( to right, var(--main), var(--main), 50%, #fff 50%);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-size: 200%, 100%;
        background-position: 100%;
        transition: 0.5s all ease-out;
        color: var(--white);
    }

        .footer .FooterPolicy a:hover:hover {
            background-position: 0;
        }

.footer .FooterPolicyLtr {
    text-align: right;
}

    .footer .FooterPolicyLtr span {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer .FooterPolicyLtr a {
        text-decoration: none;
        background: linear-gradient( to right, var(--main), var(--main), 50%, #fff 50%);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-size: 200%, 100%;
        background-position: 100%;
        transition: 0.5s all ease-out;
    }

        .footer .FooterPolicyLtr a:hover:hover {
            background-position: 0;
        }

.footer .ProductWarranty {
    padding: 0px 0px 35px 0px;
}

    .footer .ProductWarranty .ProductWarrantyItem {
        background-color: var(--gray);
        padding: 15px;
        border-radius: 15px;
    }

    .footer .ProductWarranty .ProductWarrantyItem {
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer .ProductWarranty .ProductWarrantyItem img {
            margin-left: 10px;
        }

        .footer .ProductWarranty .ProductWarrantyItem span {
            font-family: var(--font-headers);
            font-size: 20px;
        }

.footerAbove {
    background-color: var(--main);
    padding: 100px 20px;
    cursor: pointer;
}

    .footerAbove a {
        text-decoration: none;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        transition: all 1s ease-in-out;
    }

        .footerAbove a:hover {
            color: var(--white);
        }

    .footerAbove h3 {
        font-family: var(--font-headers);
        font-size: 30px;
        display: inline-block;
        padding-bottom: 10px;
        border-bottom: 2px solid;
        transition: all 1s ease-in-out;
        color: var(--white);
    }

        .footerAbove h3:hover {
            color: var(--black);
        }

    .footerAbove span {
        font-size: 13px;
    }

    .footerAbove.HasImage {
        background-position: top center;
    }

        .footerAbove.HasImage h3 {
            font-family: var(--font-headers);
            font-size: 30px;
            display: inline-block;
            padding-bottom: 10px;
            border-bottom: 2px solid;
            transition: all 1s ease-in-out;
            color: var(--black);
            background-color: var(--white);
            border: 1px solid var(--black);
            border-radius: 5px;
            padding: 10px 20px;
        }

            .footerAbove.HasImage h3:hover {
                color: var(--white);
                background-color: var(--black);
            }
/*************************AboutUs*******************/
.AboutUs {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--gray);
}

    .AboutUs .col-6 {
        padding: 30px;
    }

    .AboutUs img {
        border-radius: 25px;
    }

    .AboutUs .Play {
        position: relative;
    }

        .AboutUs .Play span {
            display: flex;
            width: 90px;
            height: 90px;
            position: absolute;
            top: -20px;
            right: calc(50% - 45px);
            color: white;
            background-color: var(--main);
            align-items: center;
            justify-content: space-evenly;
            border-radius: 50%;
            border: 10px solid white;
            font-size: 20px;
        }

            .AboutUs .Play span:hover {
                background-color: var(--second);
            }

    .AboutUs .IconAbout {
        display: flex;
    }

    .AboutUs .AputUsDescription {
        font-size: 15px;
        line-height: 35px;
        text-align: justify;
        margin-bottom: 15px;
    }

    .AboutUs .Title {
        font-size: 30px;
        color: var(--black);
        font-weight: bold;
        margin-bottom: 20px;
        display: block;
    }

    .AboutUs .IconAbout {
        margin-bottom: 15px;
    }

        .AboutUs .IconAbout i {
            font-size: 30px;
            color: var(--main);
            margin-left: 15px;
        }

        .AboutUs .IconAbout p {
            font-family: var(--font-headers);
            font-size: 25px;
            color: var(--black);
            font-weight: bold;
        }
/***************************Product**********************/
.BtnNextSliderProduct,
.BtnNextSliderProduct2,
.BtnNextSliderProduct3 {
    display: flex;
    width: 50px;
    height: 50px;
    color: var(--white);
    border: none;
    opacity: 1;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: transparent;
}

    .BtnNextSliderProduct,
    .BtnNextSliderProduct2,
    .BtnNextSliderProduct3 i {
        font-size: 25px;
    }

    .BtnNextSliderProduct,
    .BtnNextSliderProduct2,
    .BtnNextSliderProduct3:hover {
        cursor: pointer;
    }

.BtnPrevSliderProduct,
.BtnPrevSliderProduct2,
.BtnPrevSliderProduct3 {
    display: flex;
    width: 50px;
    height: 50px;
    border: none;
    color: var(--white);
    opacity: 1;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: transparent;
}

    .BtnPrevSliderProduct,
    .BtnPrevSliderProduct2,
    .BtnPrevSliderProduct3 i {
        font-size: 25px;
    }

    .BtnPrevSliderProduct,
    .BtnPrevSliderProduct2,
    .BtnPrevSliderProduct3:hover {
        cursor: pointer;
    }



.btnnextslider {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid var(--black);
    color: var(--main);
    border-radius: 5px;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: var(--black);
    margin-left: 15px;
}

    .btnnextslider i {
        font-size: 20px;
    }

    .btnnextslider:hover {
        color: var(--main);
        border: 1px solid var(--black);
        background-color: var(--white);
    }

.btnprevslider {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid var(--black);
    color: var(--main);
    border-radius: 5px;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: var(--black);
}

    .btnprevslider i {
        font-size: 25px;
    }

    .btnprevslider:hover {
        color: var(--main);
        border: 1px solid var(--black);
        background-color: var(--white);
    }

.Product {
    padding-top: 20px;
    padding-bottom: 50px;
}

    .Product .TitleProduct {
        position: relative;
        /*        display: flex;*/
        margin-bottom: 35px;
    }

        .Product .TitleProduct .ProductButton {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        .Product .TitleProduct p {
            color: var(--black);
            line-height: 35px;
        }

    .Product .Title {
        font-family: var(--font-headers);
        font-size: 25px;
        color: var(--footerBottom);
        display: block;
    }

    .Product .ProductDescription {
        font-size: 15px;
        color: var(--black);
        display: inline-block;
        text-align: center;
        padding: 0px 15px 15px 15px;
        background-color:white;
    }

        .Product .ProductDescription h5 {
            font-size: 14px;
            margin-bottom: 10px;
            margin-top: 10px;
            color: var(--black);
            font-weight: bold;
            text-align: center;
            line-height: 25px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
        }

        .Product .ProductDescription p {
            margin-bottom: 25px;
            color: var(--black);
            text-align: center;
            line-height: 25px;
        }

        .Product .ProductDescription img:hover {
            transform: scale(0.8);
            transition: all .5s;
        }

        .Product .ProductDescription .ImageProduct {
            background-color: var(--gray);
            border-radius: 5px;
            position: relative;
        }

            .Product .ProductDescription .ImageProduct img {
                border-radius: 5px;
            }

        .Product .ProductDescription .ProductPrice {
            margin-bottom: 10px;
        }

            .Product .ProductDescription .ProductPrice span {
                color: var(--red);
                font-weight:bold;
            }

.ProductPrice span {
    color: var(--main);
}

.Product .ProductDescription .ProductPrice del {
    color: var(--ColorOldPrice);
}

.ProductPrice del {
    display: block;
}


.Product .LeftLabel, .ProductTwo .LeftLabel {
    background-color: var(--second);
    border-radius: 5px;
    font-size: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 5px 10px;
}

.Product .RightLabel, .ProductTwo .RightLabel {
    background-color: var(--main);
    font-size: 14px;
    padding: 5px 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 5px;
}

.Product .BottomLabel, .ProductTwo .BottomLabel {
    background-color: var(--Yellow);
    font-size: 10px;
    padding: 5px 10px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    bottom: 5px;
    border-radius: 5px;
    /*right: calc(50% - 60px);*/
    left: 20px;
    font-weight: bold;
}

.ProductColumn {
    padding: 30px 0px;
}

    .ProductColumn .Title {
        position: relative;
        display: flex;
        margin-bottom: 15px;
        padding-bottom: 15px;
        color: var(--black);
        font-family: var(--font-headers);
        font-size: 30px;
        border-bottom: 1px solid var(--white);
    }

        .ProductColumn .Title:after {
            content: "";
            width: 80px;
            height: 2px;
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: var(--main);
        }

    .ProductColumn .ProductRow {
        display: flex;
        margin-top: 10px;
    }

        .ProductColumn .ProductRow h5 {
            color: var(--black);
            font-size: 14px;
            font-weight: bold;
        }

        .ProductColumn .ProductRow .ProductName {
            padding-top: 13px;
        }

        .ProductColumn .ProductRow del {
            color: var(--ColorOldPrice);
        }

        .ProductColumn .ProductRow img {
            width: 120px;
        }
/***************************Product**********************/
.IndexCat .btnnextSliderCat,
.btnnextSliderIndexImage {
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    color: var(--main);
    border-radius: 5px;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: var(--black);
    margin-left: 15px;
}

    .IndexCat .btnnextSliderCat i,
    .btnnextSliderIndexImage i {
        font-size: 20px;
    }

    .IndexCat .btnnextSliderCat:hover,
    .btnnextSliderIndexImage:hover {
        color: var(--black);
        border: 1px solid var(--black);
        background-color: var(--gray);
    }

.IndexCat .btnprevSliderCat,
.btnprevSliderIndexImage {
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    color: var(--main);
    border-radius: 5px;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: var(--black);
}

    .IndexCat .btnprevSliderCat i,
    .btnprevSliderIndexImage i {
        font-size: 20px;
    }

    .IndexCat .btnprevSliderCat:hover,
    .btnprevSliderIndexImage:hover {
        color: var(--black);
        border: 1px solid var(--black);
        background-color: var(--gray);
    }

.IndexCat {
    padding-top: 20px;
    padding-bottom: 0px;
}


    .IndexCat .TitleProduct {
        position: relative;
        display: flex;
        margin-bottom: 15px;
    }

        .IndexCat .TitleProduct .ProductButton {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        .IndexCat .TitleProduct p {
            color: var(--black);
            line-height: 35px;
        }

    .IndexCat .Title {
        font-family: var(--font-headers);
        font-size: 35px;
        color: var(--footerBottom);
    }

    .IndexCat .ProductDescription {
        font-size: 15px;
        color: var(--black);
        display: inline-block;
        text-align: center;
        padding: 0px 5px 5px 5px;
    }

        .IndexCat .ProductDescription h5 {
            font-size: 20px;
            color: var(--white);
            font-weight: normal;
            text-align: center;
            line-height: 25px;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            background-color: var(--main);
            border-radius: 5px;
            padding: 10px 15px;
            font-family: var(--font-headers);
        }

        .IndexCat .ProductDescription p {
            margin-bottom: 25px;
            color: var(--black);
            text-align: center;
            line-height: 25px;
        }

        .IndexCat .ProductDescription img:hover {
            transform: scale(0.8);
            transition: all .5s;
        }

        .IndexCat .ProductDescription .ImageProduct {
            background-color: var(--gray);
            border-radius: 5px;
            position: relative;
            padding: 25px 25px;
        }

        .IndexCat .ProductDescription img {
            background-color: var(--gray);
            border-radius: 5px;
            position: relative;
            max-height: 100px;
            max-width: 100px;
        }

        .IndexCat .ProductDescription .ProductPrice {
            margin-bottom: 10px;
        }

            .IndexCat .ProductDescription .ProductPrice span {
                color: var(--main);
            }

/*****************************************/
.AdvertisingImage {
    background-color: var(--gray);
    padding-bottom: 50px;
    padding-top: 50px;
}

    .AdvertisingImage h5 {
        font-size: 30px;
        color: var(--footerBottom);
        margin-top: 15px;
        text-align: center
    }

    .AdvertisingImage .Title {
        font-family: var(--font-headers);
        font-size: 35px;
        color: var(--footerBottom);
    }

    .AdvertisingImage .ProductDescription {
        font-family: var(--font-headers);
        padding: 5px 10px;
        color: var(--black);
        display: block;
    }

    .AdvertisingImage .TitleProduct .ProductButton {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
    }

    .AdvertisingImage .ImageProduct {
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 15px;
    }

    .AdvertisingImage img:hover {
        transform: scale(1.2);
        transition: all .5s;
    }
/*************************Blog****************/
.Blog {
    padding-top: 20px;
}

    .Blog .BlogIndex {
        display: block;
        background-color: var(--white);
        border-radius: 5px;
        padding-top: 5px;
    }

        .Blog .BlogIndex .BlogDescribe {
            padding: 20px 15px;
        }

    .Blog .Title {
        font-size: 40px;
        color: var(--main);
        font-weight: bold;
        font-family: var(--font-headers);
        display: block;
        text-align: center;
        margin-bottom: 10px
    }

    .Blog .ImageWithLabel {
        position: relative;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-evenly;
    }

    .Blog .BigBlog {
        position: relative;
        padding: 5px;
    }

        .Blog .BigBlog .Date {
            font-size: 14px;
            color: var(--main);
            font-family: var(--font-main);
        }

            .Blog .BigBlog .Date i {
                color: var(--main);
                font-size: 15px;
                margin-left: 5px;
            }

        .Blog .BigBlog h5 {
            margin-bottom: 15px;
            text-align: center;
            font-size: 18px;
            color: var(--black);
        }

        .Blog .BigBlog p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 15px;
            line-height: 30px;
            color: var(--black);
        }

        .Blog .BigBlog .Label {
            position: absolute;
            color: var(--main);
            background-color: var(--footerBottom);
            display: inline-block;
            padding: 5px 20px;
            border-radius: 20px;
            z-index: 2;
            bottom: -20px;
            /*right: calc(50% - 70px);*/
            font-family: var(--font-headers);
            font-size: 18px;
        }

        .Blog .BigBlog .Image {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: 15px;
        }

            .Blog .BigBlog .Image img {
                border-radius: 15px;
                width: 100%;
            }

                .Blog .BigBlog .Image img:hover {
                    transform: rotate(5deg) scale(1.2);
                    transition: all .5s;
                    border-radius: 15px;
                }

    .Blog .Image {
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 15px;
    }

    .Blog .SmallBlog {
        padding: 5px;
        margin-bottom: 20px;
    }

    .Blog .Button {
        text-align: left;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .Blog .SmallBlog img {
        border-radius: 15px;
        width: 100%;
    }

    .Blog .SmallBlog.BorderTop {
        border-top: 1px solid rgba(13, 164, 135,.1);
        padding-top: 30px;
    }

    .Blog .SmallBlog img:hover {
        transform: rotate(5deg) scale(1.2);
        transition: all .5s;
        border-radius: 15px;
    }

    .Blog .SmallBlog .Label {
        font-size: 12px;
        color: var(--main);
    }

    .Blog .SmallBlog h5 {
        font-size: 15px;
        color: var(--black);
        font-weight: bold;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .Blog .SmallBlog p {
        font-size: 14px;
        color: var(--black);
        text-align: justify;
        margin-bottom: 5px;
    }

    .Blog .SmallBlog .Date {
        font-size: 12px;
        color: rgba(0,0,0,.4);
    }
/**************************AllBrand**************************/


.AllBrand .BrandName {
    font-size: 20px;
    color: var(--white);
    font-weight: normal;
    text-align: center;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--black);
    border-radius: 5px;
    padding: 10px 15px;
    font-family: var(--font-Yekan);
    flex-direction: column;
}

.AllBrand .BrandA {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

    .AllBrand .BrandA img {
        border-radius: 5px;
        border: 7px solid var(--gray);
        margin-bottom: 5px;
        padding: 10px;
    }

.AllBrand .BrandAlphabet {
    background-color: var(--gray);
    padding: 15px 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.BrandTextAlphabet {
    width: 40px;
    height: 40px;
    border: 2px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    background-color: var(--footerBottom);
    margin-right: 5px;
    font-weight: bold;
    color: var(--white);
    margin-top: 5px;
    margin-bottom: 5px;
}

.BoxAlphabet {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    margin-bottom: 10px;
}



/*********************IndexMain*************/
.Comment {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--gray);
    /*background-image: url(../Site/StaticImage/overview-bg.jpg);*/
    background-image: url(../images/inner-page.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .Comment .ButtonDiv {
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: space-evenly;
    }

    .Comment .CommentBlockquote {
        background-color: var(--black);
        color: var(--white);
        padding: 20px 15px;
        border-radius: 15px;
        opacity: 0.9;
    }

        .Comment .CommentBlockquote .Image {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            margin-bottom: 20px;
        }

        .Comment .CommentBlockquote i {
            font-size: 35px;
            color: var(--main);
            margin-bottom: 50px;
        }

        .Comment .CommentBlockquote p {
            color: var(--white);
            line-height: 35px;
            margin-bottom: 20px;
        }

        .Comment .CommentBlockquote img {
            max-width: 80px;
            border-radius: 50%;
        }

.btnnextslidercomment {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid var(--black);
    color: var(--black);
    border-radius: 5px;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: var(--white);
}

    .btnnextslidercomment i {
        font-size: 20px;
    }

    .btnnextslidercomment:hover {
        color: var(--main);
        border: 1px solid var(--black);
        background-color: var(--black);
    }

.btnprevslidercomment {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid var(--black);
    color: var(--black);
    border-radius: 5px;
    opacity: 1;
    font-weight: bold;
    transition: 0.5s all ease-out;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1;
    background-color: var(--white);
}

    .btnprevslidercomment i {
        font-size: 20px;
    }

    .btnprevslidercomment:hover {
        color: var(--main);
        border: 1px solid var(--black);
        background-color: var(--black);
    }

#IndexTapProduct {
    border: unset;
}

    #IndexTapProduct .nav-link.active {
        border-bottom: unset;
        font-size: 20px;
        font-family: var(--font-headers);
        font-weight: normal;
        color: var(--main);
    }

    #IndexTapProduct .nav-link {
        font-size: 20px;
        font-family: var(--font-headers);
        font-weight: normal;
        border-bottom: unset;
    }

.TitleCarasoul {
    font-size: 25px;
    font-family: var(--font-headers);
    font-weight: normal;
    border-bottom: unset;
}
/***************************HeaderTwo******************/
.HeaderTwo {
    background-image: url(../images/inner-page.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 20px 0 20px;
    position: relative;
    margin-bottom: 15px;
}

    .HeaderTwo:after {
        background-color: var(--black);
        content: "";
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        pointer-events: none;
        zoom: 1;
        filter: alpha(opacity=60);
        -webkit-opacity: 0.6;
        -moz-opacity: 0.6;
        opacity: 0.6;
    }

    .HeaderTwo .Main {
        position: relative;
        z-index: 2;
    }

    .HeaderTwo .HeaderTitle {
        text-align: center;
        margin-bottom: 15px;
        color: var(--white);
        font-family: var(--font-headers);
        font-size: 30px;
    }

    .HeaderTwo .NavBreadcrumb {
        display: flex;
        justify-content: space-evenly;
    }

        .HeaderTwo .NavBreadcrumb a {
            color: var(--main);
        }

        .HeaderTwo .NavBreadcrumb li {
            color: #FFFFFF;
        }

        .HeaderTwo .NavBreadcrumb .BreadItem {
            font-size: 18px;
            font-weight: bold
        }

        .HeaderTwo .NavBreadcrumb .BreadSplit {
            font-size: 22px;
            margin-left: 15px;
            margin-right: 15px;
        }
/*****************************ContactUs*************************/
.ConatctUs {
    background-color: var(--gray);
}

.ConatctUsRight {
    background-color: var(--white);
    padding: 31px 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

    .ConatctUsRight h4 {
        font-weight: bold;
        margin-bottom: 15px;
    }

    .ConatctUsRight .Location {
        display: flex;
        padding-bottom: 5px;
    }

        .ConatctUsRight .Location .LocationIcon {
            display: flex;
            align-items: center;
            margin-left: 7px;
            font-size: 30px;
            color: var(--white);
            background-color: var(--main);
            border-radius: 50%;
            justify-content: space-evenly;
            width: 80px;
            height: 80px;
        }

            .ConatctUsRight .Location .LocationIcon i {
                color: var(--white);
            }

        .ConatctUsRight .Location .LocationText span {
            display: block;
            margin-top: 10px;
        }

.ConatctUsLeft {
    background-color: var(--white);
    padding: 48px 20px;
    background-image: url("../images/contact-bg.png");
    height: 100%;
    margin-bottom: 25px;
}


    .ConatctUsLeft .InputText input {
        height: 54px;
        background-color: #fff;
        border-color: transparent;
        transition: .5s;
        border: 1px solid #e6e6e6;
        padding: 6px 20px;
        border-radius: 5px;
        display: block;
        width: 100%;
        color: #00132b;
        margin-bottom: 16px;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

    .ConatctUsLeft .InputText select {
        height: 54px;
        background-color: var(--white);
        border-color: transparent;
        transition: .5s;
        border: 1px solid #e6e6e6;
        padding: 6px 20px;
        border-radius: 5px;
        display: block;
        width: 100%;
        color: #00132b;
        margin-bottom: 16px;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

    .ConatctUsLeft textarea {
        background-color: #fff;
        border-color: transparent;
        transition: .5s;
        border: 1px solid #e6e6e6;
        padding: 6px 20px;
        border-radius: 5px;
        display: block;
        width: 100%;
        color: #00132b;
        margin-bottom: 16px;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

    .ConatctUsLeft .Location {
        display: flex;
        padding-bottom: 5px;
        color: var(--black);
    }

        .ConatctUsLeft .Location .LocationIcon {
            display: flex;
            align-items: center;
            margin-left: 7px;
            font-size: 30px;
            color: var(--white);
            border: 2px solid var(--main);
            border-radius: 50%;
            justify-content: space-evenly;
            width: 60px;
            height: 60px;
        }

            .ConatctUsLeft .Location .LocationIcon i {
                color: var(--black);
            }

        .ConatctUsLeft .Location .LocationText span {
            display: block;
            color: var(--black);
        }

    .ConatctUsLeft hr {
        color: var(--black);
    }

    .ConatctUsLeft .Button {
        text-align: left;
        margin-bottom: 20px;
        margin-top: 20px;
    }
/********************************FAQ*************************/

.FAQ .accordion-button::after {
    margin-left: unset;
    margin-right: auto;
}

.FaqQuestion {
    text-align: right !important;
    background-color: var(--main-lighter);
    color: var(--black);
    padding: 15px;
    border-radius: 35px;
    text-align: right !important;
    margin-bottom: 5px !important;
    background-color: var(--main-lighter);
    color: var(--black);
    padding: 10px;
    border-radius: 15px;
}

    .FaqQuestion a {
        background: transparent;
        border: unset;
        color: var(--black);
        font-weight: bold;
        display: block;
        text-align: right;
    }

        .FaqQuestion a:hover {
            color: var(--main-darker);
        }

.FaqAnswer {
    margin-bottom: 30px
}

    .FaqAnswer div {
        color: var(--black);
        border: unset !important;
        background-color: var(--gray) !important;
        border-radius: 0 0 15px 15px;
        text-align: justify;
        box-shadow: unset !important;
        direction: rtl;
        line-height: 30px;
        padding: 8px 15px;
    }
/********************AboutUsTwo************************/
.AboutUsTwo .container {
    background-color: var(--gray);
    padding-bottom: 50px;
    padding-top: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
}

    .AboutUsTwo .container p {
        line-height: 35px;
    }
/***********************************************Paging********************************/
.PagingNav {
    margin-top: 30px;
}

    .PagingNav .pagination {
        justify-content: center;
    }

        .PagingNav .pagination .page-item {
            background-color: transparent;
            margin-left: 10px;
        }

            .PagingNav .pagination .page-item a {
                background-color: var(--gray);
                color: var(--black);
                font-weight: bold;
                font-size: 18px;
                border: unset;
                border-radius: 50%;
                width: 70px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: space-evenly;
            }

            .PagingNav .pagination .page-item.active a {
                background-color: var(--main);
                color: var(--white);
            }

            .PagingNav .pagination .page-item a:hover {
                background-color: var(--main);
                color: var(--white);
            }
/****************************ProductTwo**********************************************/
.ProductTwo {
    padding-bottom: 50px;
}

    .ProductTwo .ImageProduct {
        position: relative;
    }

    .ProductTwo .TitleProduct {
        position: relative;
        display: flex;
        margin-bottom: 35px;
    }

        .ProductTwo .TitleProduct .ProductButton {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        .ProductTwo .TitleProduct p {
            color: var(--black);
            line-height: 35px;
        }

    .ProductTwo .Title {
        font-family: var(--font-headers);
        font-size: 35px;
        color: var(--main);
    }

    .ProductTwo .ProductDescription {
        font-size: 15px;
        color: var(--black);
        display: inline-block;
        text-align: center;
        padding: 15px;
    }

        .ProductTwo .ProductDescription h5 {
            font-size: 15px;
            margin-bottom: 20px;
            color: var(--black);
            font-weight: normal;
            text-align: center;
            line-height: 30px;
            min-height: 70px;
        }

    .ProductTwo .BorderProduct {
        border: 1px solid #efefef;
    }

    .ProductTwo .ProductDescription p {
        margin-bottom: 25px;
        color: var(--black);
        text-align: center;
        line-height: 25px;
    }

    .ProductTwo .ProductDescription img:hover {
        transform: scale(0.8);
        transition: all .5s;
    }

/******************************************Login***************************/
.Login {
    margin-top: 50px;
    margin-bottom: 100px;
}

    .Login .row {
        justify-content: space-evenly;
    }

    .Login .Main {
        background-color: var(--gray);
        border-radius: 25px;
        padding: 20px;
    }

    .Login .Button {
        text-align: left;
        padding: 15px;
    }

    .Login p {
        font-size: 12px;
    }

    .Login input {
        margin-top: 15px;
        border: 1px solid var(--main);
        padding: 7px;
        font-size: 16px;
    }

    .Login label {
        font-family: var(--font-headers);
        display: block;
        text-align: center;
        font-size: 25px;
    }
/****************************************Checkout**********************************/
.CheckoutCart {
    margin-top: 50px;
    margin-bottom: 100px;
}

    .CheckoutCart .TableMain {
        width: 100%;
    }

    .CheckoutCart i {
        font-size: 30px;
        color: var(--second);
    }

    .CheckoutCart td {
        border: 1px solid rgba(0,0,0,.1);
        text-align: center;
        padding: 15px 5px;
    }

    .CheckoutCart .TableMain thead {
        background-color: var(--black-text);
        color: var(--white);
    }

    .CheckoutCart th {
        padding: 20px 10px;
        text-align: center;
    }

    .CheckoutCart img {
        max-width: 80px;
    }

    .CheckoutCart .TableMain .First {
        border-top-right-radius: 25px;
    }

    .CheckoutCart .TableMain .Last {
        border-top-left-radius: 25px;
    }

    .CheckoutCart input {
        border: 1px solid var(--black-darker);
        margin: auto;
    }

    .CheckoutCart .TablePayment {
        margin-top: 50px;
    }

        .CheckoutCart .TablePayment .First {
            border-top-right-radius: 5px;
            border-top-left-radius: 5px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
        }

        .CheckoutCart .TablePayment thead {
            background-color: var(--second);
            color: var(--white);
        }

        .CheckoutCart .TablePayment td {
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            padding: 25px 40px;
        }

    .CheckoutCart .Button {
        text-align: left;
        margin-top: 50px;
        margin-bottom: 20px;
    }

        .CheckoutCart .Button .BtnMain {
            font-size: 18px;
            font-weight: bold;
        }
/***********************************************BlogTwo***************************/
.BlogTwo {
    margin-top: 20px;
    margin-bottom: 100px;
}

    .BlogTwo .ImageWithLabel {
        position: relative;
        margin-bottom: 20px;
    }

    .BlogTwo .Image {
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .BlogTwo .BigBlog {
        position: relative;
        background-color: var(--gray);
        border-radius: 15px 15px 5px 25px;
        margin-bottom: 20px;
    }

        .BlogTwo .BigBlog .Date {
            color: var(--black);
            font-size: 12px;
            margin-right: 10px;
        }

            .BlogTwo .BigBlog .Date i {
                color: var(--main);
                font-size: 16px;
                margin-left: 5px;
            }

        .BlogTwo .BigBlog .Manager {
            color: var(--black);
            font-size: 12px;
            margin-right: 10px;
        }

            .BlogTwo .BigBlog .Manager i {
                color: var(--main);
                font-size: 16px;
                margin-left: 5px;
            }

        .BlogTwo .BigBlog h5 {
            margin-bottom: 15px;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: var(--black);
        }

        .BlogTwo .BigBlog p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 14px;
            line-height: 25px;
            color: var(--black);
        }

        .BlogTwo .BigBlog .Label {
            position: absolute;
            color: var(--white);
            background-color: var(--main);
            display: inline-block;
            padding: 10px 35px;
            border-radius: 20px;
            z-index: 2;
            bottom: -20px;
            right: calc(50% - 70px);
        }

        .BlogTwo .BigBlog .Image {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

            .BlogTwo .BigBlog .Image img {
                border-top-left-radius: 15px;
                border-top-right-radius: 15px;
                width: 100%;
            }

                .BlogTwo .BigBlog .Image img:hover {
                    transform: rotate(5deg) scale(1.2);
                    transition: all .5s;
                    border-radius: 15px;
                }

    .BlogTwo .Description {
        padding: 15px;
    }

    .BlogTwo .Bottom {
        border-top: 1px solid var(--white);
        padding: 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
/***************************DetailsBlog**************************/
.DetailsBox {
    padding: 110px 0 100px;
}

    .DetailsBox h2 {
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .DetailsBox p {
        text-align: right;
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 1.8rem;
    }

    .DetailsBox h3 {
        text-align: center;
        font-weight: bold;
        margin: 2px 15px;
        line-height: 2rem;
    }

    .DetailsBox .NewsPublisher {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: 15px;
    }

        .DetailsBox .NewsPublisher span {
            display: inline-block;
            font-size: 15px;
        }

        .DetailsBox .NewsPublisher i {
            display: inline-block;
            color: #CDA274;
            font-size: 17px;
            margin-left: 7px;
        }

    .DetailsBox.NewsFlexCenter {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }


.DetailsSearch .ContactBoxSubscribe {
    position: relative;
    display: flex;
    justify-content: center;
}

    .DetailsSearch .ContactBoxSubscribe input {
        font-size: 18px;
        border: 0;
        padding: 15px 20px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: var(--gray);
    }

    .DetailsSearch .ContactBoxSubscribe button {
        margin: 0;
        color: var(--black-darker);
        background-color: var(--main);
        border: unset;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.DetailsCat {
    margin-top: 30px;
    background-color: var(--gray);
    border-radius: 5px;
    color: #424242;
    padding: 25px 15px;
}

    .DetailsCat .DetailsCatHead {
        font-size: 27px;
        display: block;
        font-weight: bold;
        font-family: var(--font-headers);
    }

    .DetailsCat ul {
        list-style: none;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .DetailsCat .icon p {
        display: inline-block;
        margin-right: 5px;
        font-size: 15px;
        color: var(--black);
    }

    .DetailsCat .icon span {
        display: inline-block;
        border: 3px solid var(--main);
        position: relative;
        z-index: 1;
        margin: 12px 18px 0 0px;
    }

        .DetailsCat .icon span:before {
            position: absolute;
            content: "";
            z-index: -1;
            border: 2px solid var(--main);
            width: 15px;
            height: 15px;
            line-height: 15px;
            text-align: center;
            left: -7px;
            top: -8px;
        }

.DetailsPost {
    margin-top: 30px;
    background-color: var(--gray);
    border-radius: 5px;
    color: #424242;
    padding: 25px 15px;
}

    .DetailsPost .DetailsCatHead {
        font-size: 27px;
        display: block;
        font-weight: bold;
        margin-bottom: 25px;
        font-family: var(--font-headers);
    }

    .DetailsPost img {
        margin-left: 10px;
        border-radius: 10px;
        max-height: 60px;
    }

    .DetailsPost p {
        color: var(--black);
        direction: rtl;
        text-align: right;
        margin-bottom: 10px;
    }

    .DetailsPost .DetailsDate i {
        color: var(--main);
        margin-left: 5px;
    }

    .DetailsPost .DetailsPostBody {
        margin-bottom: 20px;
    }

.DetailsDescription {
    background-color: var(--gray);
    margin-top: 35px;
    border-radius: 5px;
    color: var(--black);
    padding: 25px 15px;
}

    .DetailsDescription h1 {
        font-size: 22px;
        color: var(--black);
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .DetailsDescription p {
        color: var(--black);
    }

.DetailsShare {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .DetailsShare .FooterSocialMedia a,
    .DetailsFollowUs .FooterSocialMedia a {
        font-size: 15px;
        height: 33px;
        width: 33px;
        line-height: 33px;
        background: var(--black);
        text-align: center;
        display: inline-block;
        color: var(--main);
        margin-right: 6px;
        position: relative;
        z-index: 1;
        transition: 0.5s ease-in-out;
        border-radius: 5px;
    }

        .DetailsShare .FooterSocialMedia a:hover,
        .DetailsFollowUs .FooterSocialMedia a:hover {
            color: var(--white);
            background-color: var(--main);
        }

.DetailsComment {
    background-color: var(--gray);
    margin-top: 25px;
    padding: 25px 15px;
    border-radius: 5px;
}

    .DetailsComment .Button {
        text-align: left;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .DetailsComment input {
        height: 54px;
        background-color: var(--white);
        transition: .5s;
        border: 1px solid var(--main);
        padding: 6px 20px;
        border-radius: 5px;
        display: block;
        width: 100%;
        color: var(--black);
        margin-bottom: 16px;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

    .DetailsComment textarea {
        background-color: var(--white);
        border: 1px solid var(--main);
        padding: 6px 20px;
        border-radius: 5px;
        display: block;
        width: 100%;
        color: var(--black);
        margin-bottom: 16px;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

.DetailsCommentList {
}

    .DetailsCommentList .HeaderCommentList {
        margin-top: 25px;
        color: var(--black);
        border-bottom: 2px solid var(--main);
        font-weight: bold;
        font-size: 27px;
        padding-bottom: 15px;
        display: inline-block;
        font-family: var(--font-headers);
    }

.DetailsComment .DetailsCommentUser {
    margin-top: 25px;
    display: flex;
}

    .DetailsComment .DetailsCommentUser .ImageUser {
        font-size: 45px;
    }

    .DetailsComment .DetailsCommentUser .DetailsCommentName {
        color: var(--black);
        text-align: right;
        font-weight: bold;
        display: block;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .DetailsComment .DetailsCommentUser .DetailsCommentP {
        color: var(--black);
        text-align: right;
        display: block;
        margin-right: 15px;
    }

    .DetailsComment .DetailsCommentUser .DetailsCommentDate {
        color: var(--main);
        text-align: right;
        display: block;
        margin-right: 15px;
        font-weight: bold;
        margin-bottom: 10px;
    }

.DetailsTag {
    background-color: var(--gray);
    margin-top: 25px;
    padding: 25px 15px;
    border-radius: 5px;
    color: var(--black);
}

    .DetailsTag .DetailsTagHead {
        font-size: 27px;
        display: block;
        font-weight: bold;
        color: var(--black);
        margin-bottom: 20px;
        font-family: var(--font-headers);
    }

    .DetailsTag a {
        display: inline-block;
        color: var(--main);
        border: 1px solid var(--gray);
        padding: 10px 25px;
        text-decoration: none;
        margin-bottom: 10px;
        margin-left: 10px;
        border-radius: 25px;
        background-color: var(--black-text);
    }

.DetailsFollowUs {
    background-color: var(--gray);
    margin-top: 25px;
    padding: 25px 15px;
    border-radius: 5px;
    color: var(--black);
}

    .DetailsFollowUs .DetailsFollowUsHead {
        font-size: 27px;
        display: block;
        font-weight: bold;
        color: var(--black);
        margin-bottom: 20px;
        font-family: var(--font-headers);
    }
/*************************************ImageThumbnail********************/
.ProductDetails {
    margin-bottom: 10px;
}

    .ProductDetails .LabelPercent {
        display: flex;
        position: absolute;
        top: 0;
        right: 0px;
        color: var(--white);
        background-color: var(--second);
        border-radius: 10%;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        direction: ltr;
    }

    .ProductDetails .BottomLabel {
        background-color: var(--Yellow);
        font-size: 10px;
        padding: 5px 10px;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        bottom: 70px;
        border-radius: 5px;
        /*right: calc(50% - 60px);*/
        left: 0px;
        font-weight: bold;
    }

    .ProductDetails .LeftLabel {
        background-color: var(--second);
        border-radius: 5px;
        font-size: 15px;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 5px 10px;
    }

    .ProductDetails .RightLabel {
        background-color: var(--main);
        font-size: 14px;
        padding: 5px 15px;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        top: 0px;
        left: 0px;
        border-radius: 5px;
    }

    .ProductDetails .ContainerImage {
        position: relative;
        margin-top: 25px;
    }

        .ProductDetails .ContainerImage .ImageThumbnail {
            width: 25%;
        }

    .ProductDetails .Buy {
        color: var(--black);
        background-color: var(--gray);
        padding: 15px;
        border-radius: 15px;
        margin-top: 25px;
    }

        .ProductDetails .Buy .Brand {
            font-size: 25px;
            color: var(--black);
            font-family: var(--font-headers);
            display: block;
            margin-top: 15px;
            margin-bottom: 25px;
        }

        .ProductDetails .Buy h1 {
            font-size: 16px;
            color: var(--black);
            display: block;
            font-weight: bold;
            margin-top: 15px;
            margin-bottom: 15px;
            line-height:30px;
        }

        .ProductDetails .Buy .Cat {
            color: var(--black);
            display: block;
            margin-top: 10px;
            margin-bottom: 10px;
        }

            .ProductDetails .Buy .Cat .Coloring {
                color: var(--main);
                margin-right: 10px;
                display: inline-block;
                font-weight: bold;
            }

        .ProductDetails .Buy .PercentPrice {
            display: flex;
            align-items: flex-start;
        }

            .ProductDetails .Buy .PercentPrice .AllPrice {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .ProductDetails .Buy .PercentPrice del {
                color: #aaa;
                font-size: 17px;
                font-weight: bold;
                display: inline-block;
            }

        .ProductDetails .Buy .NotAvailable {
            color: var(--second);
            display: block;
            margin-bottom: 20px;
            font-family: var(--font-headers);
            font-size: 30px;
        }


        .ProductDetails .Buy .PercentPrice span {
            color: var(--white);
            margin-right: 0px;
            background-color: var(--main);
            padding: 7px 10px;
            border-radius: 5px;
            display: inline-block;
        }

        .ProductDetails .Buy .AllPercent span {
            margin-right: 0px;
            background-color: var(--main);
            padding: 7px 8px;
            border-radius: 25px;
            display: inline-block;
            font-size: 12px;
            margin-right: 10px;
        }

        .ProductDetails .Buy .Price {
            color: var(--main);
            padding: 5px 5px;
            display: block;
            font-weight: bold;
            font-size: 17px;
            margin-bottom: 15px;
            margin-top: 5px;
        }

        .ProductDetails .Buy .Color span {
            font-size: 15px;
        }

        .ProductDetails .Buy .Color ul {
            list-style: none;
        }

            .ProductDetails .Buy .Color ul li {
                display: inline-block;
            }

                .ProductDetails .Buy .Color ul li .CircleColor {
                    float: left;
                    height: 40px;
                    width: 40px;
                    border-radius: 50%;
                    border: 2px solid var(--black);
                    margin-left: 5px;
                    display: flex;
                    align-items: center;
                    justify-content: space-evenly;
                }

        .ProductDetails .Buy .Color .BtnBuy {
            margin-bottom: 15px;
            margin-top: 15px;
            padding-bottom: 15px;
            padding-top: 15px;
            text-align: left;
        }

            .ProductDetails .Buy .Color .BtnBuy button {
                background-color: var(--main);
                color: var(--white);
                width: 60%;
                padding: 10px 0;
                display: block;
                font-size: 28px;
                border: unset;
                border-radius: 10px;
                font-family: var(--font-headers);
            }

        .ProductDetails .Buy .Color i {
            margin-left: 10px;
            font-size: 20px;
        }

    .ProductDetails .ProductWarranty {
        margin-top: 50px;
    }

        .ProductDetails .ProductWarranty .ProductWarrantyItem {
            display: inline-block;
            width: calc(25% - 15px);
            margin-left: 10px
        }

            .ProductDetails .ProductWarranty .ProductWarrantyItem img {
                margin-left: 15px
            }

            .ProductDetails .ProductWarranty .ProductWarrantyItem a {
                font-size: 12px;
                text-decoration: none;
                color: var(--black);
                display: flex;
                align-items: center;
                justify-content: space-evenly;
            }

        .ProductDetails .ProductWarranty a span {
            font-size: 20px;
            text-decoration: none;
            color: var(--black);
            display: inline-block;
            font-family: var(--font-headers);
        }

    .ProductDetails .DetailsProductDescription {
        margin-top: 50px;
    }

        .ProductDetails .DetailsProductDescription ul {
            border: unset;
        }

        .ProductDetails .DetailsProductDescription button {
            color: var(--black-light);
            font-size: 18px;
            font-weight: bold;
        }

        .ProductDetails .DetailsProductDescription .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
            color: var(--black);
            border: unset;
        }

        .ProductDetails .DetailsProductDescription .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
            border: unset;
            border-bottom: 4px solid var(--main);
            color: var(--black);
        }

    .ProductDetails .DetailsProductDescriptionMain {
        background-color: var(--gray);
        border-radius: 15px;
        padding: 25px;
    }

        .ProductDetails .DetailsProductDescriptionMain p {
            line-height: 30px;
        }

        .ProductDetails .DetailsProductDescriptionMain table {
            border-collapse: separate;
        }

        .ProductDetails .DetailsProductDescriptionMain button {
            font-family: var(--font-headers);
            font-size: 28px;
            padding: 5px 60px;
        }

    .ProductDetails .ProductDetailsColorText div {
        border: 1px solid var(--main);
        padding: 8px;
        border-radius: 5px;
        background-color: white;
    }

        .ProductDetails .ProductDetailsColorText div.selected {
            border: 1px solid var(--main);
            padding: 8px;
            border-radius: 5px;
            background-color: var(--gray);
        }

            .ProductDetails .ProductDetailsColorText div.selected i {
                color: var(--main);
            }

    .ProductDetails #expandedImg {
        margin-bottom: 15px;
    }

    .ProductDetails .AddrssBar.breadcrumb {
        background-color: var(--gray);
        padding: 10px 5px;
        border-radius: 5px;
        margin-top: 10px;
    }

        .ProductDetails .AddrssBar.breadcrumb a {
            margin-left: 5px;
            margin-right: 5px;
        }

.NotAvailable {
    color: var(--second);
    display: block;
    font-family: var(--font-headers);
    font-size: 25px;
}

.PriceBottom {
    text-align: center;
    font-size: 13px;
}
.PriceBottom span{
    text-align: center;
    font-size: 18px;
    font-weight:bold;
    color:var(--second);
}

.ShareProduct {
}

    .ShareProduct span {
        font-size: 13px;
        font-weight: bold;
    }

    .ShareProduct img {
        max-width: 30px;
        margin-right: 7px;
    }
/********************************************************************************** استایل های سایت قبلی OldCss*************************************************************/
html {
    height: 100%;
}



h3 {
    color: #333333;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}


a {
    color: var(--main);
    transition: all ease-in 0.5s;
}

    a:hover {
        color: var(--main-darker);
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}


/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 15px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

/***********************************************OrderStyle***********************************/
.Order {
    background-color: #EC2A75;
    padding-bottom: 10px;
    padding-top: 10px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
    margin-bottom: 70px;
    margin-top: 70px;
}

    .Order .container {
        max-width: 1440px;
        position: relative
    }

    .Order .OrderTitle {
        display: flex;
        align-items: center;
    }

        .Order .OrderTitle span {
            font-size: 22px;
            color: #FFFFFF;
            font-weight: bold;
            border-bottom: 5px solid #FFFFFF;
        }

    .Order .OrderInput {
        margin-right: 20px;
        margin-left: 15px;
        border: none;
        border-radius: 25px;
        background-color: #ebebeb;
        margin-bottom: 15px;
        margin-top: 15px;
        height: 50px;
        padding: 13px 45px;
        max-width: 350px;
    }

    .Order .OrderBtn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Order .OrderBtn button {
            border: none;
            border-radius: 25px;
            background-color: #00aefb;
            color: #FFFFFF;
            padding: 13px 55px;
            display: inline-block;
            height: fit-content;
        }

    .Order .OrderLabel {
        font-size: 15px;
        color: #FFFFFF;
        font-weight: bold;
        min-width: 100px;
    }

    .Order img {
        /*position: absolute;*/
        max-height: 100px;
        /*top: -55px;
        left: 0;*/
        display: block;
        margin-right: auto;
    }

.owl-carousel .owl-stage-outer {
    z-index: 2000;
    padding: 15px 0px;
}

.IndexDivBuy {
    display: flex;
    align-items: center;
}

    .IndexDivBuy span {
        background-color: #EC2A75;
        color: #FFFFFF;
        padding: 3px 8px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
    }
/************************************SigninStyle*************************************************/
.SignIn {
    margin-top: 35px;
    padding: 25px 25px 25px 25px;
    border-radius: 25px;
    background-color: #FFFFFF;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.Login img {
    max-height: 100px;
    display: block;
    margin: 10px auto 10px auto;
}

.Login .SignInHead {
    font-size: 25px;
    color: #000000;
    display: block;
    margin-bottom: 25px;
    font-weight: bold;
}

.Login .SignInLabel {
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
}

.Login .ABtn {
    font-size: 20px;
    color: #fff;
    background-color: #EC2A75;
    height: 60px;
    font-weight: bolder;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.Login .ABtn2 {
    font-size: 20px;
    color: #FFFFFF;
    background-color: var(--main);
    /*background-color: #1a3c57;*/
    height: 60px;
    font-weight: bolder;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.form-control::-webkit-input-placeholder { /* Edge */
    color: #959595;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #959595;
}

.form-control::placeholder {
    color: #959595;
}

.SignIn .SignInFooter {
    color: #252525;
    font-size: 13px;
    margin-top: 25px;
    display: block;
    text-align: center;
}

.SignIn .SignInLabel {
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
}

.SignIn input {
    border: 1px solid #EC2A75;
    height: 60px !important;
    width: 100%;
    font-size: 20px;
    border-radius: 10px;
}

.SignIn button {
    font-size: 25px;
    color: #fff;
    background-color: #EC2A75;
    height: 60px;
    font-weight: bolder;
    border-radius: 10px;
}

.SignIn .SigninCode {
    display: block;
    color: #EC2A75;
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
}

.SignIn .ABtn {
    font-size: 20px;
    color: #fff;
    background-color: #EC2A75;
    height: 60px;
    font-weight: bolder;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.SignIn .ABtn2 {
    font-size: 20px;
    color: #FFFFFF;
    background-color: #1a3c57;
    height: 60px;
    font-weight: bolder;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}


/******************************NotFoundPage***************************************************/
.Page404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

    .Page404 span {
        margin-bottom: 15px;
        margin-top: 15px;
        font-family: var(--font-headers);
        color: var(--main);
        font-size: 45px;
    }
/***************************************************CartEmpty**************************/
.CartEmpty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

    .CartEmpty img {
        max-width: 150px;
    }

    .CartEmpty p {
        font-size: 30px;
        font-family: var(--font-headers);
        color: var(--main);
    }

    .CartEmpty span {
        display: block;
        margin-bottom: 15px;
    }
/*********************************************************************************/
.BoxContainer {
    /*background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;*/
    /*padding: 15px;*/
    max-width: 1440px;
    /* border: 1px solid #f1f1f1;
    box-shadow: 2px 1px 5px 3px rgba(0,0,0,.1),0 2px 2px 0 rgba(0,0,0,.07),0 3px 1px -2px rgba(0,0,0,.06) !important;*/
}

.BoxStyle {
    margin: auto;
    background-color: #FFFFFF;
    /*border-radius: 25px;*/
    padding: 15px !important;
    /*padding-bottom: 50px;
    padding-right:50px;
    padding-left:50px;*/
    max-width: 1440px;
    /*border: 2px solid #1a3c57;*/
    /*box-shadow: 2px 1px 5px 3px rgba(0,0,0,.1),0 2px 2px 0 rgba(0,0,0,.07),0 3px 1px -2px rgba(0,0,0,.06) !important;*/
}

.IndexcatImage {
    /*background-color: #FCD6E5;*/
    min-width: 90px;
    border-radius: 15px;
    padding: 5px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

    .IndexcatImage img {
        max-width: 50px;
    }

.BoxStyleDecotools {
    margin-left: auto;
    margin-right: auto;
    /*z-index: 2;*/
    background-image: linear-gradient(#ffbe18, #ffcb46);
    border-radius: 25px;
    padding: 25px 50px !important;
    max-width: 1440px;
    box-shadow: 2px 1px 5px 3px rgba(0,0,0,.1),0 2px 2px 0 rgba(0,0,0,.07),0 3px 1px -2px rgba(0,0,0,.06) !important;
}

    .BoxStyleDecotools .row div.col-3 {
        position: relative;
    }

.BoxStyleDecotoolsImgLeft {
    max-height: 250px;
}

.tagABoxStyle {
    display: inline-block;
    background-color: #1a3c57;
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: bold;
    padding: 15px;
    transform: rotate( 45deg);
    position: absolute;
    right: -50px;
    top: 35px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.arrow-up {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 20px solid #070f16;
    bottom: -17px;
    right: -55px;
    transform: rotate( 45deg);
    z-index: -2;
}

.arrow-down {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #070f16;
    top: 65px;
    right: 243px;
    /*transform: rotate( 45deg);*/
    z-index: -2;
}

.tagABoxStyle:hover {
    color: #ffbe18;
}

.tagABoxStyle .before,
.tagABoxStyle .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: -1;
    /* demo-only decoration */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 5px;
    /*border-bottom-right-radius: 5px;*/
    background-color: #1a3c57;
}

.tagABoxStyle .before {
    transform: skew(25deg);
    left: 25px;
}

.tagABoxStyle .after {
    transform: skew(-25deg);
    right: 25px;
    left: auto;
}

.BoxShadow {
    box-shadow: 2px 1px 5px 3px rgba(0,0,0,.1),0 2px 2px 0 rgba(0,0,0,.07),0 3px 1px -2px rgba(0,0,0,.06) !important;
}

.ImageBorderRadiusBottom25 {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.ImageBorderRadius25 {
    border-radius: 25px;
}

.ImageBorderRadius10 {
    border-radius: 10px;
}

.IndexImage {
    border-radius: 25px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.h5Index {
    text-align: right
}

/*.BoxStyleHeader {
    position: absolute;
    top: 35px;
    right: -45px;
    transform: rotate( 45deg);
    color: white;
    background-color: #1a3c57;
    z-index: 200;
}
    .BoxStyleHeader a {
        text-decoration: none;
        color: white;
        padding: 15px 25px 15px 25px;
        font-size: 20px;
        display:inline-block;
        font-weight:bold;
    }*/


/**
 * trapezoid without pseudo-elements
 */

.BoxStyleHeader {
    /* position: absolute;
    top: 35px;
    right: -45px;*/
    /*transform: rotate( 45deg);*/
    /*display: inline-block;*/
    /*z-index: 1;*/
    /* custom sizes */
    /*width: 200px;
    height: 50px;*/
    /* demo-only decoration */
    /*margin: 100px auto;*/
    font-size: 20px;
    /*text-transform: uppercase;*/
    text-align: center;
    background-color: #ffbe18;
    position: relative;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

    .BoxStyleHeader a {
        text-decoration: none;
        color: #000000;
        padding: 15px 25px 15px 25px;
        font-size: 20px;
        display: inline-block;
        font-weight: bold;
    }



    .BoxStyleHeader .before,
    .BoxStyleHeader .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        bottom: 0;
        z-index: -1;
        /* demo-only decoration */
        border-radius: 12px;
        background-color: #ffbe18;
    }

    .BoxStyleHeader .before {
        transform: skew(25deg);
        left: 25px;
    }

    .BoxStyleHeader .after {
        transform: skew(-25deg);
        right: 25px;
        left: auto;
    }

.BoxDecotoolsBorderHead {
    /*border-bottom: 2px solid #EC2A75;
    margin-bottom: 15px;*/
}

.HeaderBoxTwo {
    display: block;
    font-size: 25px;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.BoxDecotools {
    font-size: 20px;
    text-align: center;
    position: relative;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    color: #1a3c57;
    /*margin-bottom: 20px;*/
}

    .BoxDecotools a {
        text-decoration: none;
        color: #1a3c57;
        font-size: 25px;
        font-weight: bold;
    }

.BoxStyleTwo {
    background-color: #FFFFFF;
    border-radius: 25px;
    max-width: 1440px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.BoxImgColVip {
    right: 2%;
    position: absolute;
    top: -4.4%;
    z-index: 100;
}

.BoxImgColVipTwo {
    right: 0%;
    position: absolute;
    top: -10%;
    z-index: 1000000;
}

.BoxImgColVipThree {
    left: 0%;
    position: absolute;
    top: -10%;
    z-index: 1000000;
}

@media only screen and (max-width: 1450px) {

    .BoxImgColVip {
        right: 2%;
        position: absolute;
        top: -4%;
        z-index: 100;
    }
}

@media only screen and (max-width: 1190px) {

    .BoxImgColVip {
        right: 2%;
        position: absolute;
        top: -3.3%;
        z-index: 100;
    }
}


.IconDetails {
    color: #1a3c57 !important;
    border: none;
}


.ImgDetails {
    border-radius: 25px;
}

.ImgDetailsTumbnail {
    border-radius: 15px;
}

.w1440 {
    max-width: 1440px !important;
}
/************************************  Index  ************************************/
.IndexSvgSlider {
    width: 1.875rem;
    height: 1.875rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -13px 0 0 -13px;
    color: #000;
}

.IndexBtnPrevSliderTop {
    z-index: 1;
    width: 49px;
    height: 85px;
    background-color: #ffbe18;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
}

.IndexBtnNextSliderTop {
    z-index: 1;
    color: #000000;
    border-radius: 0 10px 10px 0;
    background-color: #ffbe18;
    cursor: pointer;
    display: inline-block;
    padding: 25px;
}


.IndexBtnPrevSlider {
    z-index: 1;
    right: 25px;
    width: 49px;
    height: 85px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #FFFFFF;
    background-image: unset;
    color: #a8a8a8;
    -webkit-box-shadow: -1.5px 0 4px 0 rgb(0 0 0 / 15%);
    box-shadow: -1.5px 0 4px 0 rgb(0 0 0 / 15%);
    border-radius: 10px 0 0 10px;
    cursor: pointer;
}

.IndexBtnNextSlider {
    left: 15px;
    z-index: 1;
    color: #000000;
    -webkit-box-shadow: 1.5px 0 4px 0 rgb(0 0 0 / 15%);
    box-shadow: 1.5px 0 4px 0 rgb(0 0 0 / 15%);
    border-radius: 0 10px 10px 0;
    width: 49px;
    height: 85px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #FFFFFF;
    background-image: unset;
    cursor: pointer;
}

.IndexBtnPrevSliderDecoTools {
    z-index: 1;
    width: 80px;
    /*height: 60px;*/
    position: absolute;
    top: 50%;
    right: -4.5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /*background-color: #FFFFFF;*/
    background-image: unset;
    color: #a8a8a8;
    /*-webkit-box-shadow: -1.5px 0 4px 0 rgb(0 0 0 / 15%);
    box-shadow: -1.5px 0 4px 0 rgb(0 0 0 / 15%);
    border-radius: 20px 0 0 20px;*/
    cursor: pointer;
    /*opacity: 0.9;*/
}

.IndexBtnNextSliderDecoTools {
    left: -4.5%;
    z-index: 1;
    color: #000000;
    /* -webkit-box-shadow: 1.5px 0 4px 0 rgb(0 0 0 / 15%);
    box-shadow: 1.5px 0 4px 0 rgb(0 0 0 / 15%);
    border-radius: 0 20px 20px 0;*/
    width: 80px;
    /*height: 60px;*/
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /*background-color: #FFFFFF;*/
    background-image: unset;
    cursor: pointer;
    /* opacity: 0.9;*/
}

.IndexHeaderSlider {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 15px 0px;
    position: relative;
    padding-left: 5px;
}

    .IndexHeaderSlider::after {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #dfdfdf;
        height: 1px;
        content: "";
        z-index: 0;
    }

    .IndexHeaderSlider span {
        padding: 8px 0;
        min-height: 49px;
        font-size: 18px;
        font-size: 1.286rem;
        line-height: 31px;
        white-space: nowrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        color: #333;
    }

        .IndexHeaderSlider span a {
            text-decoration: none;
            color: #333;
        }

    .IndexHeaderSlider > span::before {
        content: "";
        position: absolute;
        right: 0;
        left: -40px;
        bottom: 0;
        background-color: #c29642;
        height: 1px;
        z-index: 1;
    }

    .IndexHeaderSlider > span::after {
        content: "";
        position: absolute;
        left: -45px;
        width: 15px;
        height: 1px;
        background-color: #fff;
        bottom: 0;
        z-index: 1;
    }

/*.IndexReadmore {
    text-align: left;
}

    .IndexReadmore a {
        text-decoration: none;
        color: #000000;
        font-size: 12px;
    }*/

.IndexHeaderSlider3 {
    /*display: flex;*/
    /* -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
    position: relative;
    /*padding-left: 5px;*/
    margin-top: 15px;
    margin-block: 25px;
    background-color: #EC2A75;
}

.IndexHeaderSlider10 span {
    display: block;
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid #EC2A75;
    color: #1a3c57;
    font-weight: bold;
}
/************************************  Details  ************************************/
.h1Index {
    text-align: right;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #252525;
}

.svgDetails {
    width: 1.875rem;
    height: 1.875rem;
}

.percentDetailsCheckout {
    color: #fff;
    width: 35px;
    height: 35px;
    display: inline-flex;
    direction: ltr;
    font-size: 14px;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background-color: red;
    color: white;
    font-weight: bold;
}

.percentDetails {
    color: #fff;
    width: 35px;
    height:35px;
    display: inline-flex;
    direction: ltr;
    font-size: 14px;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background-color: red;
    color: white;
    font-weight:bold;
}

.percentDetailsOnImage {
    color: #fff;
    width: 80px;
    display: inline-flex;
    direction: ltr;
    font-size: 1.1rem;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 10px;
    border-bottom-left-radius: 75%;
    justify-content: center;
    background-color: #0d6efd;
    position: absolute;
    z-index: 10;
}

.DivImage {
    position: relative;
    top: -10px;
}

.DivAllPrice {
    display: flex;
}

.priceDelDetails {
    font-size: 1rem;
    font-weight: bold;
    color: #aaaaaa;
}

.DetailsUlProperty li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #252525;
}

.DetailsImgStaticBanner {
    text-align: center;
}

    .DetailsImgStaticBanner img {
        max-width: 100px;
    }

    .DetailsImgStaticBanner span {
        text-align: center;
        font-size: 15px;
        color: #252525;
        display: block;
        margin-top: 15px;
    }

.FontSize16 {
    font-size: 16px !important;
}

.FontSize25 {
    font-size: 25px !important;
}


.priceMainDetails {
    color: #252525;
    font-size: 1.5rem;
    display: inline-block;
}

.priceDetails {
    color: rgb(196, 49, 47);
    line-height: 2rem;
}

.NumberInput {
    margin: 0;
    width: 40px;
    text-align: center;
    border: 1px solid #EC2A75;
    padding: 0;
    height: 41px;
    font-size: 25px;
}

.DetailsInputPlus {
    font-size: 25px;
    background-color: #EC2A75;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-left: 10px;
    padding-right: 15px;
    margin: 0;
}

.DetailsInputMinus {
    font-size: 25px;
    background-color: #EC2A75;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-left: 15px;
    padding-right: 10px;
    margin: 0;
}

.ButtonCart {
    color: #FFFFFF;
    width: 95%;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    border-radius: 45px;
    background-color: #EC2A75;
    border: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.DetailsBoxPriceLeft {
    position: relative;
    background-color: white;
    border-radius: 25px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.DetailsColorText {
    color: #252525;
    font-size: 20px;
}

.DetailsSpanText {
    color: #252525;
    font-size: 12px;
}

.DetailsUnavailableTitle {
    color: #252525;
    font-size: 20px;
    font-weight: bold;
}

.DetailsUnavailableText {
    color: #252525;
    font-size: 15px;
}

.UlStyle {
    margin-top: 10px;
    text-align: right;
}

    .UlStyle ul {
        display: flex;
        list-style: none;
    }

        .UlStyle ul li {
            margin: 4px 0 4px 8px;
            width: 32px;
            height: 32px;
            display: inline;
        }

            .UlStyle ul li label {
                width: 100%;
                height: 100%;
                display: inline-block;
                position: relative;
            }

                .UlStyle ul li label input {
                    display: none;
                }

                .UlStyle ul li label span {
                    border: 2px solid #d8d8d8;
                    position: absolute;
                    display: block;
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    top: 4px;
                    right: 4px;
                }




/* The side navigation menu */
/*.sidenav {
    height: 100%;*/ /* 100% Full-height */
/*width: 0;*/ /* 0 width - change this with JavaScript */
/*position: fixed;*/ /* Stay in place */
/*z-index: 100;*/ /* Stay on top */
/*top: 0;*/ /* Stay at the top */
/*right: 0;
    background-color: #fff;*/ /* Black*/
/*overflow-x: hidden;*/ /* Disable horizontal scroll */
/*transition: 0.5s;*/ /* 0.5 second transition effect to slide in the sidenav */
/*z-index: 10;
    box-shadow: 0px 2px 4px -1px rgb(0, 0, 0, 20%), 0px 4px 5px 0px rgb(0, 0,0, 14%), 0px 1px 10px 0px rgb(0, 0,0, 12%);
}*/

/* The navigation menu links */
.sidenav a {
    display: flex;
    padding: 10px 16px 10px 16px;
    text-decoration: none;
    font-size: 13px;
    color: #111;
    transition: 0.3s;
}

    .sidenav a span {
        margin-top: auto;
        margin-right: 16px;
        margin-left: auto;
        margin-bottom: auto;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
        background-color: rgba(0, 0, 0, .05);
        cursor: pointer;
    }

/* Position and style the close button (top right corner) */
/*.sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        width: 100%;
    }*/
.sidenav img {
    max-width: 40px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {


    .sidenav a {
        font-size: 18px;
    }
}

.menuHeader {
    background-color: #c29642;
}


.svgmenu {
    fill: currentColor;
    width: 1.875rem;
    height: 1.875rem;
    display: inline-block;
    font-size: 1.7142857142857142rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.svgmenuForwars {
    fill: currentColor;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    font-size: 1.7142857142857142rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
    margin-top: auto;
    margin-bottom: auto;
    /*left: 15px;
    position: absolute;*/
    /*margin-right: auto;*/
}

.MenuA {
    display: block;
    color: #505050;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

/*.pMenuName {
    font-size: 1rem;
}

.ulMenu {
    list-style: none;
    padding-right: 10px;
}

    .ulMenu li {
        margin-left: auto;
    }

.MenuButton {
    background-color: transparent;
    border-radius: 8px;
}

.MenuOpen {
    width: 256px;
}

.MenuClose {
    width: 0px;
}
*/




/*************************************header***************************************/
.HeaderTel {
    font-weight: bold;
}

    .HeaderTel img {
        max-height: 40px;
        margin-right: 10px;
    }

.HeaderIcon {
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
}

.header input[type=text] {
    padding: 5px 15px 5px 50px;
    background-color: #ebebeb;
    width: 100%;
    border: 0;
    border-radius: 35px;
    height: 50px;
    font-size: 17px;
    /*border: 1px solid #c29642;*/
}

.W1660 {
    max-width: 1660px;
}

.HeaderInputSearchIcon {
    margin-top: 10px;
    margin-bottom: auto;
    color: #EC2A75;
    /*transform: translatex(-300%);*/
    position: absolute;
    left: 20px;
    font-size: 25px;
}

    .HeaderInputSearchIcon button {
        color: #EC2A75;
        border: none;
        background-color: transparent;
    }

.headerPhone {
    color: #ffbe18;
    font-size: 25px;
}

.ColorPrimaryTwo {
    color: #1a3c57;
}

.HeaderMainMenu {
    color: #fff;
    padding: 10px 15px;
    border-left: 1px solid #FFFFFF
}



.HeaderBasket {
    position: relative
}

.cart-icon:before {
    content: '';
    /* position: absolute;*/
    background: transparent;
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}



.header {
    background-color: #FFFFFF;
    /*box-shadow: 0px 2px 4px -1px rgb(0, 0, 0, 20%), 0px 4px 5px 0px rgb(0, 0,0, 14%), 0px 1px 10px 0px rgb(0, 0,0, 12%);*/
    /* max-width: 1440px !important;*/
}

.HeaderOne {
    background-color: #FFFFFF;
}


.FormSearch {
    border-radius: 25px;
    border: none;
}

@media (min-width: 600px) {
    .header {
        min-height: 64px;
    }
}

.HeaderA {
    text-decoration: none;
    color: black;
}

    .HeaderA:hover {
        cursor: pointer;
        color: white;
    }

.HeaderImgLogo {
    max-height: 80px;
}

.HeaderSignIn {
    border-left: 1px solid #FFFFFF;
    margin-left: 10px;
    padding-left: 10px;
}

    .HeaderSignIn a {
        text-decoration: none;
        color: #FFFFFF;
        font-size: 17px;
        display: inline-block;
        padding: 10px 15px;
        border-radius: 6px;
        background-color: #43f635;
    }

        .HeaderSignIn a i {
            color: #FFFFFF;
        }

.ImgOpacity {
    opacity: 0.7;
}

    .ImgOpacity:hover {
        opacity: 1;
    }

.cart-icon span {
    position: absolute;
    top: 2px;
    left: 25px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    color: #EC2A75;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    border: 1px solid #EC2A75;
}

.AShopingcard {
    margin: auto;
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 17px;
    border-radius: 6px;
    background-color: #EC2A75;
}

    .AShopingcard i {
        color: #FFFFFF !important;
    }

.ColorWhite {
    color: white;
}

/************************menu**************/
.nav-link {
    /* font-size: 18px;
    color: #FFFFFF;
    padding: 10px 20px !important;
    line-height: 20px;*/
    font-weight: bold;
}

/* .nav-link:hover {
        color: #faf1f1;
    }*/

.mega-dropdown:hover .mega-dropdown-menu {
    display: block;
}


.mega-dropdown-menu ul.col {
    border-right: 1px solid #eee;
    max-height: 350px;
    list-style: none;
}

    .mega-dropdown-menu ul.col .menu-title {
        font-size: 13px;
    }

.header .dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: right;
    min-width: 250px;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 3px solid #1a3c57;
    border-radius: 2px;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 6%);
}

.header .mega-dropdown-menu {
    width: 100%;
    margin-top: 0;
}

.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    padding: 20px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}

    .mega-dropdown-menu > li > ul {
        padding: 0;
        margin: 0;
    }

        .mega-dropdown-menu > li > ul > li {
            list-style: none;
        }

            .mega-dropdown-menu > li > ul > li > a {
                display: block;
                color: #222;
                padding: 3px 5px;
            }

    .mega-dropdown-menu > li ul > li > a:hover,
    .mega-dropdown-menu > li ul > li > a:focus {
        text-decoration: none;
    }

    .mega-dropdown-menu .dropdown-header {
        font-size: 18px;
        color: #ff3546;
        padding: 5px 60px 5px 5px;
        line-height: 30px;
    }

/*dropmenu************************************************/
.dropdown-menu-Head:hover .dropdown-menu-1 {
    display: block;
}


.dropdown-menu-1 ul.col {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .dropdown-menu-1 ul.col .menu-title {
        font-size: 17px;
    }

.dropdown-menu-Head {
    position: static !important;
}

.dropdown-menu-1 {
    margin-top: 0;
    padding: 0px;
    width: 220px;
    box-shadow: none;
    -webkit-box-shadow: none;
}

    .dropdown-menu-1 > li > ul {
        padding: 0;
        margin: 0;
    }

        .dropdown-menu-1 > li > ul > li {
            list-style: none;
        }

            .dropdown-menu-1 > li > ul > li > a {
                display: block;
                color: #222;
                padding: 3px 5px;
            }

    .dropdown-menu-1 > li ul > li > a:hover,
    .dropdown-menu-1 > li ul > li > a:focus {
        text-decoration: none;
    }

    .dropdown-menu-1 .dropdown-header {
        font-size: 18px;
        color: #ff3546;
        padding: 5px 60px 5px 5px;
        line-height: 30px;
    }

.dropdown-menu-2 {
    width: 220px !important;
    margin: 0;
    list-style: none;
    float: right;
    position: absolute;
    right: 246px;
    z-index: 9999;
    background: #fff;
    padding: 10px 0;
    transition: all .2s,width 0s;
    box-shadow: rgb(0 0 0 / 10%) 0 2px 5px;
    border: 1px solid #ececec;
    height: auto;
    overflow: hidden;
    transition: all 300ms ease-in;
    opacity: 0;
    visibility: hidden;
    display: block;
    top: 0;
    /*border:4px solid #EC2A75;*/
    border: 4px solid #78C3AF;
}

.LiMenuHasCat {
    position: relative;
}

    .LiMenuHasCat:hover .dropdown-menu-2 {
        visibility: visible;
        opacity: 100;
    }

.dropdown-menu-2 ul.col {
    border-right: 1px solid #eee;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgb(238, 238, 238);
    max-height: 350px;
    list-style: none;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: #78c3af;
    /*background-color: #EC2A75;*/
}

.dropdown-item {
    display: flex;
    width: 100%;
    padding: 10px 10px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-bottom: 1px solid #ebebeb;
    align-items: center;
    justify-content: space-between;
}






/************************************* UserMobile *********************************/
.UserMobileInput {
    color: #111;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.UserMobileInput:focus {
    box-shadow: none !important;
    border-bottom-color: #c29642;
}

.UserMobileLabelFloating {
    color: #505050;
    right: 0;
}

    .UserMobileLabelFloating :focus {
        /*color: #c29642;*/
        color: #505050;
    }

.UserMobileButton {
    color: #111;
    background-color: var(--main);
    padding-top: 7px;
    padding-bottom: 7px;
    color: white;
    font-size: 15px;
}

/*******************************ConfirmUserMobile*************************/
.ConfirmUserMobileInput {
    color: #111;
    font-size: 2rem;
    margin-right: 10px;
    margin-left: 10px
}


    .ConfirmUserMobileInput:focus {
        box-shadow: none !important;
        border-bottom-color: #c29642;
    }

/************************************* Product *********************************/
.ProductNav {
    background-color: #f0f4fd;
    border-radius: 5px;
}

.ProductUl {
    padding: 0;
}

    .ProductUl li a {
        color: #EC2A75;
        text-decoration: none;
        cursor: pointer;
        padding: 3px 5px 3px 5px;
    }

        .ProductUl li a:hover {
            background-color: #f1f1f1;
            border-radius: 5px
        }

    .ProductUl li span {
        margin-right: 5px;
        margin-left: 5px;
    }

/************************************* Profile *********************************/


.ProfileUl {
    margin: 0px;
    padding: 0;
    list-style: none;
}

    .ProfileUl li {
        color: black;
        text-decoration: none;
        cursor: pointer;
        padding: 15px 10px 15px 0px;
    }

        .ProfileUl li:hover {
            background-color: #f1f1f1;
        }

.Profilesvg {
    fill: currentColor;
    width: 1.875rem;
    height: 1.875rem;
    display: inline-block;
    font-size: 1.7142857142857142rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
    margin-right: auto;
    float: left;
    margin-left: 10px;
}

/************************************* cart *********************************/
.CartEmptyCart {
    fill: currentColor;
    width: 3rem;
    height: 3rem;
    display: inline-block;
    font-size: 1.7142857142857142rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
    margin-right: auto;
    float: left;
    margin-left: 10px;
}

.qty .count {
    margin: 0;
    width: 40px;
    text-align: center;
    border: 1px solid var(--main);
    padding: 0;
    height: 41px;
    font-size: 25px;
    display: inline-block;
    vertical-align: top;
}

.qty .plus {
    font-size: 25px;
    background-color: var(--main);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-left: 10px;
    padding-right: 15px;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    font-family: arial;
    color: var(--white);
}

.qty .minus {
    font-size: 25px;
    background-color: var(--main);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 15px;
    padding-right: 10px;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    background-clip: padding-box;
    font-family: arial;
    color: var(--white);
}

.minus:hover {
    background-color: #717fe0 !important;
}

.plus:hover {
    background-color: #717fe0 !important;
}
/*Prevent text selection*/
/*span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}*/

/*input {
    border: 0;
    width: 2%;
}*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:disabled {
    background-color: white;
}

.BottomBox {
    background-color: #eeeeee;
    vertical-align: middle;
}

    .BottomBox p {
        color: #333333;
        margin: 0px;
        text-align: center;
    }

.BottomBoxCount {
    display: inline-block;
    min-width: 28px;
    min-height: 28px;
    text-align: center;
    align-items: center;
    font-weight: 400;
    line-height: normal;
    padding-right: 2px;
    border-radius: 50%;
    padding-left: 2px;
    justify-content: center;
    background-color: #c29642;
}

    .BottomBoxCount span {
        color: black;
    }

.BottomBoxTextHorizontal {
    display: inline-block;
    font-size: 1rem;
    /*transform: rotate( 270deg );*/
}






/******************************************** breadcrumb *******************/
.Detailsbreadcrumb a {
    text-decoration: none;
    color: black;
}

    .Detailsbreadcrumb a:hover {
        color: #5a5656;
    }


.DetailsSurveyQuestion a {
    text-decoration: none;
    color: black;
}

.CoupenStyle {
    position: fixed;
    bottom: 20%;
    left: 0px;
    z-index: 1030;
    text-align: left;
}
/********************************************DashBoard***********************************************************/
.HeaderDashboard {
    background-color: var(--main);
    padding: 15px;
    display: block;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center
}

    .HeaderDashboard i {
        display: block;
        font-size: 30px;
        margin-bottom: 15px;
        color: var(--white);
    }

    .HeaderDashboard span {
        display: inline-block;
        font-size: 35px;
        margin-bottom: 10px;
        color: var(--white);
        font-family: var(--font-headers);
    }


/*************************profile*********************************/
#ProfileMenu {
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
    border-radius: 25px;
}

    #ProfileMenu ul {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

        #ProfileMenu ul li {
            border-bottom: 2px solid #1a3c57;
        }

    #ProfileMenu a.HeaderMenu {
        color: #535353;
    }

    #ProfileMenu a {
        color: #000000;
        border: none;
        font-size: 18px;
    }

        #ProfileMenu a span {
            font-size: 25px;
            color: #1a3c57;
        }

        #ProfileMenu a.ActiveTag {
            background-color: #EC2A75;
            color: #1a3c57;
        }

        #ProfileMenu a:hover {
            background-color: #EC2A75;
            cursor: pointer;
        }

.ProfilePenEdit {
    text-decoration: dashed;
    font-size: 14px;
    color: #00bfd6;
    font-weight: 500;
    border-bottom: 1px dashed #00bfd6;
    padding: 5px 0;
}

    .ProfilePenEdit:hover {
        cursor: pointer;
        color: #00bfd6;
        background-color: white;
    }

.ProfilePenEditAddress {
    text-decoration: dashed;
    font-size: 14px;
    color: #00bfd6;
    font-weight: 500;
    padding: 5px 0;
}

    .ProfilePenEditAddress:hover {
        cursor: pointer;
        color: #00bfd6;
    }

.TextHeader {
    color: #ccc
}

.TextInformation {
    text-align: right;
    color: var(--main);
    font-size: 20px;
    font-weight: bold;
}

.TextInformationBlack {
    text-align: right;
    color: var(--black);
    font-size: 15px;
}


.ProfileHeadline {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: block;
    font-size: 35px;
    color: var(--main);
    font-family: var(--font-headers);
    padding: 10px 30px 0 0;
    text-align: right;
}

.table-orders .table {
    text-align: center;
    font-size: 13px;
    background-color: white;
}

    .table-orders .table .thead-light th {
        color: #fff !important;
        background-color: var(--main) !important;
        border-color: var(--white) !important;
        text-align: center;
    }

    .table-orders .table th, .table-orders .table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
        border-right: 1px solid #efefef;
        border-bottom: 1px solid #f5f5f5;
        text-align: right;
        color: #535353;
        text-align: center;
    }

    .table-orders .table td {
        font-size: 14px;
        padding-top: 0.90rem;
        padding-bottom: 0.90rem;
        border: unset;
    }

.ProfiletrashIcon {
    color: #e6007e;
}

.ProfiletrashButton {
    border-radius: 25px;
    padding: 10px 15px 10px 30px;
    background-color: #ff7373;
    color: white;
    text-decoration: none;
    float: left
}

    .ProfiletrashButton:hover {
        cursor: pointer;
        color: white;
    }



.Profiletext14 {
    font-size: 14px;
    color: #424750;
    line-height: 1.833;
}

.Profiletext16 {
    font-size: 15px;
    color: #424750;
    line-height: 1.833;
}

.Profiletext12 {
    font-size: 12px;
    color: #424750;
    font-size: 12px;
    line-height: 1.833;
    color: #81858b;
}



.dropdown-menu .show {
    text-align: right;
}


/*********************************Faq**************************************/
.FaqDescribeTagA {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #56c7da;
    float: left;
    text-decoration: none;
    margin-bottom: 20px;
}

.TagAToggle::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    background: #56c7da;
    left: 40px;
    top: 10px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.TagAToggle::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 20px;
    background: #56c7da;
    left: 49px;
    top: 1px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.TagAToggle.Open::after {
    transform: rotate( 45deg );
    background: #f05662;
}

.TagAToggle.Open::before {
    transform: rotate( 45deg );
    background: #f05662;
}

/*************************************blog****************************/

.page-item.active .page-link {
    z-index: 3;
    color: #FFFFFF;
    background-color: #EC2A75;
    border-color: transparent;
}


/*********************************  dropdown*****************************/

.custom-radio-button div {
    display: inline-block;
}

.custom-radio-button input[type="radio"] {
    display: none;
}

    .custom-radio-button input[type="radio"] + label {
        color: #333333;
        font-family: Arial, sans-serif;
        font-size: 14px;
    }

        .custom-radio-button input[type="radio"] + label span {
            display: inline-block;
            width: 35px;
            height: 35px;
            margin: -1px 4px 0 0;
            vertical-align: middle;
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid #ffffff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
            background-repeat: no-repeat;
            background-position: center;
            text-align: center;
            line-height: 44px;
        }

            .custom-radio-button input[type="radio"] + label span img {
                opacity: 0;
                transition: all 0.3s ease;
            }

    .custom-radio-button input[type="radio"]#color-red + label span {
        background-color: var(--main);
    }

    .custom-radio-button input[type="radio"]#color-blue + label span {
        background-color: var(--main);
    }

    .custom-radio-button input[type="radio"]#color-orange + label span {
        background-color: var(--main);
    }

    .custom-radio-button input[type="radio"]#color-pink + label span {
        background-color: var(--main);
    }

    .custom-radio-button input[type="radio"]#color-yellow + label span {
        background-color: var(--main);
    }

    .custom-radio-button input[type="radio"]:checked + label span {
        opacity: 1;
        background: url("../Site/images/tick.png") center center no-repeat;
        width: 35px;
        height: 35px;
        display: inline-block;
    }
/******************************************SignIn**************************/
.SignInHeader {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background-color: #c29642;
    color: white;
    font-size: 15px;
    text-align: center;
    margin: 0px;
}

.FormSignin {
    box-shadow: 5px 10px 8px 10px #d9d9d9;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-color: #c29642;
    background-color: white;
    padding-top: 20px;
}

.BtnSignIn {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-color: #F4F4F5;
    color: black;
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
}

    .BtnSignIn:hover {
        color: #c29642;
    }
/***********************************************Register**********************/
.BtnRegisterRight {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom-right-radius: 25px;
    background-color: #F4F4F5;
    color: black;
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
    border-left: 1px solid #c29642;
}

    .BtnRegisterRight :hover {
        color: #c29642;
    }

.BtnRegisterLeft {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom-left-radius: 25px;
    background-color: #F4F4F5;
    color: black;
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
}

    .BtnRegisterLeft:hover {
        color: #c29642;
    }

/*****************************************FactorShow****************************/

.FactorShowCode {
    color: #c29642;
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/**********************CartBorder*********************/
.Boxblog {
    background-color: #FFFFFF !important;
    border-radius: 15px;
    padding-bottom: 25px !important;
    /*border: 3px solid #1a3c57 !important;*/
}

    .Boxblog a {
    }

    .Boxblog img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border: none !important;
        border-bottom-right-radius: 0px !important;
    }

    .Boxblog h3 {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 17px;
        font-weight: bold;
    }

    .Boxblog h4 {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
        font-weight: bold;
    }

.BoxBlogDate {
    color: black;
    display: inline-block;
    position: absolute;
    background: orange;
    font-size: 15px;
    padding: 15px;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    right: 5px;
    top: 5px;
    border: 3px solid #1a3c57 !important;
}

.BlogStyleTitle {
    color: #FFFFFF;
    padding: 10px;
    background-color: #EC2A75;
    /*border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;*/
    display: block;
    font-size: 20px;
    font-weight: bold;
    /*margin-right: 15px;*/
    /* box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;*/
}

.BlogStyleReadMore {
    color: white;
    background-color: #1a3c57;
    display: inline-block;
    margin-top: 25px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 100%;
    padding: 35px 65px 35px 35px;
    text-decoration: none;
    font-size: 15px;
}
/*.carousel-control-next{
    display: inline-block;
    top: 0px;
    width: fit-content;
    background-color: #1a3c57;
    opacity: 0.7;
    padding: 30px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border: 3px solid #ffbe18;
    bottom:unset;
}
.carousel-control-prev {
    display: inline-block;
    top: 0px;
    width: fit-content;
    background-color: #1a3c57;
    opacity: 0.7;
    padding: 30px;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border: 3px solid #ffbe18;
    bottom: unset;
}*/
.AForProduct {
    color: #333333;
    text-decoration: none;
}

    .AForProduct:hover {
        color: #333333;
    }

.card {
    margin-top: 1px;
    border: none; /* !important*/
    /* border: 2px solid #1a3c57;*/
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

@media screen and (max-width: 993px) {
    .card {
        border: none !important;
        background-color: transparent !important;
        border-radius: unset;
        box-shadow: unset !important;
    }

    .card-body {
        /* min-height: 100px; */
        padding-bottom: 5px;
        padding-top: 5px;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 0px;
        border: 1px solid #ccffff;
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        background-color: white;
        min-height: 80px;
    }

    .IndexHeaderSlider3 {
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 0 15px 0px;
        position: relative;
        padding-left: 5px;
        background-color: transparent;
    }
}

.card-img-top {
    /*border: 4px solid #ffbe18;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    max-height: 250px;
    max-width: 250px;
}

.card-body {
    min-height: 80px;
    /* border: none !important; */
    /*border: 4px solid #ffbe18;*/
    padding-bottom: 5px;
    padding-top: 5px;
    margin-right: 5px;
    margin-left: 5px;
    /*margin-top: 10px;*/
    /*border-bottom-right-radius: 25px;*/
    /* border-top-left-radius: 15px; */
    /*border-bottom-left-radius: 25px;*/
    min-height: 100px;
    text-align: center;
    /* background-color: #FFFFFF;*/
}

.card-bodyProduct {
    min-height: 100px;
    padding-bottom: 5px;
    /*padding-top: 5px;*/
    margin-right: 5px;
    margin-left: 5px;
    /*margin-top: 10px;*/
    border-bottom-right-radius: 15px;
    /* border-top-left-radius: 15px; */
    border-bottom-left-radius: 15px;
    min-height: 100px;
    text-align: center;
    background-color: #ffbe18;
}

.card-body .SpanPrice {
    color: #231f20;
    font-size: 12px;
    /*border: 3px solid #EC2A75;*/
    border-radius: 25px;
    padding: 6px;
    display: inline-block;
    font-weight: bolder;
}

.DelPrice {
    font-size: 14px;
    font-weight: normal;
    color: #aaaaaa;
}

.Indexcard-title {
    font-size: 15px;
    color: #231f20;
    margin-top: 3px;
    text-align: right;
    min-height: 40px;
}

.CardShoppingIcon {
    display: flex;
    justify-content: space-between;
}

    .CardShoppingIcon img {
        max-width: 40px;
    }
/***************************DetailsNews**************************/
.DateNews {
    text-align: start;
    position: absolute;
    top: 0px;
    left: 35px;
    background-color: deeppink;
    padding: 10px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 1px 3px 0 #eee;
}

/***************************DetailsNews**************************/

.StyleTel {
    margin-left: 10px;
    text-decoration: none;
    color: black;
}


.BoxCatDesctop {
    background-color: #c29642;
    min-width: 90px;
}

.BoxCatDesctopTwo {
    /*background-color: #FCD6E5;*/
    min-width: 90px;
    border-radius: 50%;
}

.GotToProductType {
    min-height: 315px;
    border: none;
    text-decoration: none;
}

    .GotToProductType img {
        border-radius: 15px;
    }

    .GotToProductType span {
        border-radius: 50%;
        /*border: 1px solid #c29642;
    padding: 8px;*/
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .GotToProductType span i {
            color: #c29642;
            font-size: 25px;
        }

@media screen and (max-width: 1200px) {
    .GotToProductType {
        min-height: 297px;
        border: none;
        text-decoration: none;
    }
}

@media screen and (max-width: 993px) {
    .GotToProductType {
        min-height: 297px;
        border: none;
        text-decoration: none;
    }
}

@media screen and (max-width: 600px) {
    .GotToProductType {
        min-height: 248px;
        border: none;
        text-decoration: none;
    }
}

.brandbox {
    background-color: #ededed;
    padding-bottom: 25px;
    padding-top: 25px;
    border-radius: 15px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.BrandNav {
    background-color: #c29642;
    border-radius: 5px;
    text-align: left;
}

    .BrandNav li a {
        color: white !important;
        font-size: 25px;
    }

.FeregraneFamily {
    margin-right: 10px;
}

.FeregraneFamilyH2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 40px;
}

.Mil {
    color: rgb(56, 102, 223);
}

    .Mil div {
        float: right;
        padding: 15px;
        border-radius: 5px;
        border: 2px solid rgb(56, 102, 223);
        margin-left: 5px;
        display: flex;
    }

.spec-list {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.MenuText {
    color: black;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 15px;
    display: block;
    font-size: 18px;
}

.MenuBackGround {
    background-color: #ffbe18;
    border-bottom: 3px solid #1a3c57;
}

.TagACart .fa-shopping-cart {
    color: #FFFFFF;
}

.BtnSearch {
    font-size: 20px;
    color: white;
    background-color: #999999;
    opacity: 0.7;
}

.BackgroundColorGold {
    background-color: #ffbe18 !important;
}

#demo {
    margin-bottom: 0;
    font-size: 25px;
    color: red;
}

.ColorPrice {
    color: rgb(196, 49, 47);
}
/************************************BrandCss*****************************************/
.BrandDescription {
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: var(--gray);
    border-radius: 5px;
}

    .BrandDescription h1 {
        text-align: center;
        font-size: 22px;
        margin-top: 15px;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .BrandDescription h2 {
        text-align: justify;
        font-size: 15px;
        line-height: 2;
    }

#TableOrder thead tr th {
    background-color: var(--ColorHeader);
    border: 1px solid var(--black) !important;
}

.CardTrash {
    color: #1a3c57;
    font-size: 25px;
}

.CardElement {
    position: relative;
    background-color: #FFFFFF;
    padding: 25px 0px;
    border-radius: 25px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
    margin-bottom: 15px;
}

    .CardElement h5 {
        font-weight: bold;
    }

    .CardElement .BoxVip {
        position: absolute;
        top: -6.5%;
        z-index: 10;
        right: -4.6%;
    }

.CardColoring {
    border:2px solid #babcbb;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-left: 5px;
}

 /*   .CardColoring div {
        border: 2px solid #babcbb;
        float: left;
        height: 15px;
        width: 15px;
        border-radius: 50%;
        display: flex;
    }*/

.CardColoringSpan {
    font-size: 17px;
    display: flex;
    align-items: center;
}

.CardColoringPrice {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    border: 2px solid #EC2A75;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 40px;
}

.CardPricing {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
}

    .CardPricing span {
        color: var(--main);
        font-size: 22px;
        font-weight: bold;
    }

.CartBoxTotalPrice {
    display: flex !important;
    justify-content: space-between;
}

.CardEmptyTitle {
    color: #1a3c57;
    font-size: 25px;
    font-weight: bold;
}

.CardEmptyButton {
    background-color: #EC2A75;
    border: none;
    padding: 20px 35px;
    color: #ffffff;
    border-radius: 35px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.CardBox {
    max-height: 50px;
    display: flex;
    margin-top: 10px;
}

    .CardBox img {
        max-height: 30px;
        margin-left: 10px;
    }

    .CardBox span {
        font-size: 17px;
    }
/************************************Productbox**********************/
.ProductBoxStar {
    color: #000000;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 5px;
}

    .ProductBoxStar i {
        color: #ffbe18;
    }

.SeeAll {
    border: 3px solid #FFFFFF;
    padding: 10px 20px;
    text-decoration: none;
    color: #FFFFFF;
    margin-top: 10px;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    bottom: 0;
    display: block;
    right: calc(50% - 75px);
}

.BoxCommercial {
    padding: 15px;
}

    .BoxCommercial span {
        display: block;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        margin-top: 25px;
    }

    .BoxCommercial div {
        padding: 20%;
        background-color: #FFFFFF;
        box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
        border-radius: 50%;
    }

.IndexcatImage div {
    display: flex;
    justify-content: space-around;
}

.IndexcatImage span {
    display: block;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}


.BoxProductImgColVip {
    position: absolute;
    top: -1.7%;
    z-index: 10;
    right: 6%;
}

    .BoxProductImgColVip img {
        max-width: 75px;
    }

@media (max-width: 1300px) {
    .BoxProductImgColVip {
        position: absolute;
        top: -2%;
        z-index: 10;
        right: 6%;
    }
}

.BoxProductOff {
    text-align: left;
}

    .BoxProductOff span {
        background-image: url(../StaticImage/off.svg);
        color: #ff0000;
        background-repeat: no-repeat;
        position: absolute;
        left: -11px;
        background-position: center;
        padding: 30px 20px 35px 25px;
        top: 55%;
    }

.ShadowOrange {
    box-shadow: 0px 0px 10px 0px #EC2A75 !important;
}

.CartDescribe span {
    text-align: center;
    border-bottom: 1px solid #959595;
    width: auto;
    display: block;
    padding-bottom: 15px;
    font-size: 25px;
    font-weight: bold;
    color: #1a3c57;
    margin-bottom: 25px;
}

.CartTotalPrice {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    color: #1a3c57;
}

    .CartTotalPrice div {
        border: 3px solid #EC2A75;
        border-radius: 25px;
        padding: 10px 15px;
    }

.CartBtn {
    color: #FFFFFF;
    background-color: #EC2A75;
    text-align: center;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 30px;
    margin: auto;
    font-weight: bold;
    font-size: 20px;
    margin-top: 25px;
}

.AddressInsert {
    position: relative;
    background-color: var(--white);
    padding: 25px 25px;
    border-radius: 5px;
}

    .AddressInsert .form-control {
        border: 2px solid #EC2A75;
    }

.AddressInsertPrice {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .AddressInsertPrice span {
        color: #1a3c57;
        font-size: 20px;
    }

.AddressInsertChange .TagAAddressInsert {
    color: var(--second);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px dashed;
    margin-right: 5px;
}

.AddressInsertChange a {
    color: #ffbe18;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.AddressInsertChange button {
    color: var(--second);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    background: none;
    border: none;
}

.AddressInsertInformation {
    font-size: 18px;
}

    .AddressInsertInformation i {
        font-size: 25px;
    }

    .AddressInsertInformation span {
        font-size: 20px;
        font-weight: bold;
    }

.AddressInsertSelectBox {
    border: 2px solid #EC2A75;
    margin-top: 15px;
    border-radius: 15px;
    padding: 15px;
}

    .AddressInsertSelectBox button {
        border: none;
        background-color: transparent;
        padding: 0;
        text-align: right;
    }

.Checkout .Describe {
    width: 100%;
    border: none;
    background-color: #eeeeee;
    padding: 15px;
    border-radius: 10px;
}

.AddressInsertSelectBoxformation span {
    font-size: 18px;
    font-weight: bold;
}

.AddressInsertSelectBoxformation i {
    font-size: 22px;
}

.AddressInsertSelected {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

    .AddressInsertSelected span {
        width: 25px;
        height: 25px;
        border: 1px solid;
        display: inline-block;
        border-radius: 50%;
        margin-left: 10px;
    }

        .AddressInsertSelected span.Active {
            width: 25px;
            height: 25px;
            border: 1px solid #EC2A75;
            display: inline-block;
            border-radius: 50%;
            margin-left: 10px;
            background-color: #EC2A75;
        }

.AddressInsertTab {
    color: #1a3c57;
    font-size: 18px;
    font-weight: bold;
}

    .AddressInsertTab.Active {
        border-bottom: 3px solid #ffbe18;
        border-top: none;
        border-right: none;
        border-left: none;
        color: #1a3c57;
    }

    .AddressInsertTab:hover {
        border-bottom: 3px solid #ffbe18;
        border-top: none;
        border-right: none;
        border-left: none;
        color: #1a3c57;
    }

.AddressInsertHide {
    visibility: hidden;
    display: none;
}

.ProfileAddressTitle {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-size: 25px;
    line-height: 1.375;
    font-weight: bold;
    border-bottom: 2px solid var(--main);
    color: #1a3c57;
    margin-bottom: 30px;
}

.AddressInsert label {
    font-size: 18px;
    font-weight: bold;
}

.AddressInsert abbr {
    font-size: 25px;
    color: var(--second);
    border: none;
    text-decoration: none;
    margin-left: 7px;
}

.AddressInsertButtonNext {
    color: #fff;
    padding: 20px 40px;
    position: relative;
    border-radius: 15px;
    background-color: #EC2A75;
    border: 0;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: bold;
}

.AddressInsertBack a {
    color: #1a3c57;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

    .AddressInsertBack a:hover {
        color: #ffbe18;
    }

.AddressInsertBack i {
    margin-left: 10px;
    font-weight: 500;
}

#myTab {
    border: unset !important;
}

#AllAddress .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid var(--main);
    color: var(--black);
    font-size: 18px;
}

.nav-tabs .nav-link {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid var(--white);
    color: var(--black);
    font-size: 18px;
}

    #AllAddress .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 2px solid var(--second);
        color: var(--black);
    }

#AllAddress .BtnClose {
    display: flex;
    justify-content: space-between;
}

    #AllAddress .BtnClose span i {
        font-size: 30px;
        cursor: pointer;
    }

.Checkout {
    position: relative;
    background-color: var(--white);
    padding: 25px 25px;
    border-radius: 5px;
    margin-top: 15px;
    /*box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;*/
}

.FactorSuccess {
}

    .FactorSuccess img {
        max-height: 80px;
    }

    .FactorSuccess .FactorSuccessGreen {
        display: block;
        font-size: 25px;
        color: #4ec571;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .FactorSuccess .FactorSuccessRed {
        display: block;
        font-size: 25px;
        color: #fb3951;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .FactorSuccess p {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .FactorSuccess .CheckoutDescribe span {
        color: #f8951d;
        font-size: 15px;
        font-weight: bold;
    }

    .FactorSuccess .FactorSuccessShowCode {
        font-size: 18px;
        font-weight: bold;
        color: #1a3e58;
        border: none;
    }

    .FactorSuccess .RepeatPayment {
        color: #1a3c57;
        padding: 20px 40px;
        position: relative;
        border-radius: 15px;
        background-color: #ffbe18;
        border: 0;
        margin-bottom: 15px;
        font-size: 25px;
        font-weight: bold;
    }

    .FactorSuccess .ChangePayment {
        color: #1a3c57;
        padding: 20px 40px;
        position: relative;
        border-radius: 15px;
        background-color: transparent;
        border: 3px solid #ffbe18;
        margin-bottom: 15px;
        font-size: 25px;
        font-weight: bold;
    }

    .FactorSuccess .DivBtnRepeat {
        display: flex !important;
        justify-content: space-evenly;
    }

.CheckoutBorderOrange {
    border: 4px solid var(--main);
}

.ChekoutPayment {
    display: flex !important;
    align-items: center;
    flex-grow: 1;
}

    .ChekoutPayment img {
        max-width: 60px;
        margin-left: 10px
    }

    .ChekoutPayment label {
        margin-left: 10px
    }

    .ChekoutPayment .SpanTitle {
        font-size: 20px;
        font-weight: bold;
        display: block;
    }

    .ChekoutPayment .SpanDescribe {
        font-size: 15px;
        display: inline-block;
    }

#Payment1 {
    cursor: pointer;
    margin-bottom: 15px;
}

#Payment2 {
    cursor: pointer;
    margin-bottom: 15px;
}

#Payment3 {
    cursor: pointer;
    margin-bottom: 15px;
}

#Payment4 {
    cursor: pointer;
    margin-bottom: 15px;
}

#Payment5 {
    cursor: pointer;
}

.CheckOutBtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .CheckOutBtn button {
        color: #fff;
        padding: 20px 40px;
        position: relative;
        border-radius: 10px;
        background-color: var(--black-darker);
        border: 0;
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: bold;
    }

.CheckoutShort span {
    font-size: 18px;
    margin-bottom: 5px;
}

.CheckoutPrice {
    font-size: 25px !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #1a3c57;
    justify-content: space-between;
}

    .CheckoutPrice span {
        border: 2px solid var(--main);
        padding: 10px 20px;
        border-radius: 25px;
    }

.CheckoutDescribe {
    font-size: 18px;
    color: #1a3c57;
}

    .CheckoutDescribe i {
        font-size: 20px;
        color: #ffbe18;
    }

.Checkout h5 {
    font-weight: bold;
    display:flex;
}

.CheckoutFormCard {
    border: 1px solid var(--main);
    border-radius: 25px;
    display: flex !important;
    padding: 5px 10px;
}

    .CheckoutFormCard input {
        border: none;
        width: 100%;
        background-color: var(--gray);
    }

    .CheckoutFormCard button {
        border-radius: 25px;
        background-color: unset;
        border: 1px solid var(--main) !important;
        width: 90px !important;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        color: #1a3c57;
    }

.qty span {
    font-size: 17px;
}


.custom-radio-button div {
    display: inline-block;
}

/*.custom-radio-button input[type="radio"] {
    display: none;
}

    .custom-radio-button input[type="radio"] + label {
        color: #333333;
        font-family: Arial, sans-serif;
        font-size: 14px;
    }

        .custom-radio-button input[type="radio"] + label span {
            display: inline-block;
            width: 40px;
            height: 40px;
            margin: -1px 4px 0 0;
            vertical-align: middle;
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid #ffffff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
            background-repeat: no-repeat;
            background-position: center;
            text-align: center;
            line-height: 44px;
        }

            .custom-radio-button input[type="radio"] + label span img {
                opacity: 0;
                transition: all 0.3s ease;
            }

    .custom-radio-button input[type="radio"]#NoticeMe1 + label span {
        background-color: green;
    }

    .custom-radio-button input[type="radio"]#NoticeMe2 + label span {
        background-color: blue;
    }

   

    .custom-radio-button input[type="radio"]:checked + label span {
        opacity: 1;
        background: url("../images/tick.png") center center no-repeat;
        width: 40px;
        height: 40px;
        display: inline-block;
    }*/

.DetailsH6 {
    font-weight: bold;
    /*border-bottom:3px solid #ffbe18;*/
    margin-bottom: 15px;
    margin-top: 30px;
}



#nav-home-tab {
    color: #000000;
}

#nav-profile-tab {
    color: #000000;
}

.HiddenItem {
    display: none;
}

.modal {
    z-index: 10060 !important;
}

/*************************************صفحه دانلود****************************************************/
.DWBackground {
    /*background-image: url( https://static.filmnet.ir/images/c1/d9/c1d909d8e89e4076a71d87d244878375.jpg?w=1125);*/
    background-image: url(../../Big/blog1.jpg);
    position: relative;
    background-repeat: no-repeat
}

.DWShadowImageRight {
    background: linear-gradient(to top, hsl(0, 0%, 11%), rgba(0,0,0,0));
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 31%;
    z-index: 1;
}

.DWShadowImageBottom {
    background: linear-gradient(to left, hsl(0, 0%, 11%), rgba(0,0,0,0));
    height: 100%;
    width: 60%;
    position: absolute;
    bottom: 0;
    right: -1px;
    z-index: 1;
}

.DWColRight {
    text-align: right;
    margin-top: 35px;
    padding: 0 3.5rem;
}

.DWTitle {
    position: relative;
    text-align: right;
}

    .DWTitle span {
        display: inline-block;
        background-color: hsl(158, 100%, 43%);
        color: white;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-radius: 0.25rem;
        font-size: 0.625rem;
        font-weight: 500;
        line-height: 1;
        border: none;
        padding: 0.25em 0.5em;
        position: absolute;
        top: -10px;
    }

    .DWTitle h1 {
        color: white;
        font-size: 35px;
        margin-top: 10px;
        display: inline-block;
    }

.DWSpan {
    color: hsl(0, 0%, 100%);
    display: block;
    margin-top: 15px;
    font-size: 15px;
}

    .DWSpan i {
        margin-left: 10px;
    }

.DWLabel {
    margin-top: 15px;
}

    .DWLabel a {
        display: inline-block;
        margin-right: 10px;
        text-decoration: none;
        color: hsl(0, 0%, 100%);
        background-color: hsl(0, 0%, 26%);
        font-size: 15px;
        padding: 10px 15px;
        border-radius: 5px;
    }

.DWBoxBuy {
    color: hsl(0, 0%, 100%);
}

    .DWBoxBuy a {
        background-color: rgb(0, 219, 139);
        display: inline-block;
        padding: 10px 30px;
        font-size: 20px;
        color: rgb(28, 28, 28)
    }

    .DWBoxBuy p {
        font-size: 18px;
        margin: 20px 0;
        text-align: center;
        text-align: right;
        color: rgb(0, 219, 139);
    }

        .DWBoxBuy p span {
            font-weight: bold;
            color: red;
            font-size: 30px;
        }

.DWDescribe {
    color: hsl(0, 0%, 100%);
    margin-top: 15px;
}

    .DWDescribe h2 {
        font-size: 20px;
    }

    .DWDescribe p {
        font-size: 15px;
        text-align: justify;
        direction: rtl;
        line-height: 30px;
    }

.DWMain {
    background-color: #1c1c1c;
}

.DWHeader {
    text-align: right;
    padding: 15px;
    color: hsl(0, 0%, 100%);
    direction: rtl;
}

    .DWHeader h5 {
        border-radius: 5px;
        border: 2px solid;
        display: inline-block;
        padding: 15px 25px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .DWHeader .DWSummery {
        color: rgb(0, 219, 139);
        width: fit-content;
        display: inline-block;
        padding: 10px 26px;
        font-size: 15px;
        background: rgb(34, 35, 39);
        border-radius: 5px;
        margin-bottom: 36px;
    }

.DWDownloadTitle {
    text-decoration: none;
    text-align: center;
    margin-bottom: 7px;
    display: block;
    position: relative;
    cursor: pointer;
}

    .DWDownloadTitle h6 {
        font-size: 18px;
        padding: 5px;
        text-align: right;
        color: hsl(0, 0%, 100%);
        margin-top: 10px
    }

    .DWDownloadTitle img {
        border-radius: 15px
    }

.DWIDownloadStyle {
    opacity: 0.75;
    font-size: 35px;
    padding: 20px;
    background-color: rgb(0, 219, 139);
    color: white;
    border-radius: 20px 20px 20px 0px;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
}

.DWDownloadTitle .DWDownloadDescribe {
    color: rgb(170, 170, 170);
    font-size: 15px;
    margin-top: 10px;
    line-height: 2;
    text-align: justify;
    direction: rtl
}

.DWDivImage {
    position: relative;
}

.DWISpanDownloadStyleDesctop {
    position: absolute;
    right: 0px;
    top: 0px;
}

.DWTime {
    position: absolute;
    left: 20px;
    bottom: 40px;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    color: white;
}

.ISpanDownloadStyleDesctop {
    position: absolute;
    right: 10px;
    background-color: rgb(0, 219, 139);
    display: inline-block;
    padding: 5px 10px;
    font-size: 15px;
    color: rgb(28, 28, 28);
    border-radius: 5px;
    top: 10px;
}
/******************************Searchbox*******************************************/
#DivSearchBox {
    position: absolute;
    background-color: white;
    width: 100%;
    box-shadow: 2px 1px 5px 3px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 7%), 0 3px 1px -2px rgb(0 0 0 / 6%) !important;
    border-radius: 5px;
    height: 400px;
    overflow-x: auto;
    overflow-y: scroll;
    padding: 25px 10px;
    z-index: 100000;
}

    #DivSearchBox ul {
        list-style: none;
    }

        #DivSearchBox ul li {
            display: flex;
            display: flex;
            flex-direction: row;
            align-items: center;
            font-size: 18px;
        }

            #DivSearchBox ul li a {
                display: block;
                padding: 7px 10px;
                text-decoration: none;
            }
/*******************SearchBoxMobile*************/

.SearchBox {
    padding: 5px 15px 5px 50px;
    background-color: #ebebeb;
    width: 100%;
    border: 0;
    border-radius: 35px;
    height: 50px;
    font-size: 17px;
}

.offcanvas-bottom {
    z-index: 10000 !important;
    height: 100% !important;
}

.SearchBoxButton {
    background-color: white;
    z-index: 16 !important;
    border: 2px solid #00AEB9;
    color: #ced4da;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: space-between;
    padding: 6px;
    align-items: center;
}

    .SearchBoxButton:hover {
        color: #ced4da !important;
        background-color: white !important;
        border-color: #00AEB9 !important;
        box-shadow: unset !important;
    }

    .SearchBoxButton:focus {
        color: #ced4da !important;
        background-color: white !important;
        border-color: #00AEB9 !important;
        box-shadow: unset !important;
    }

/*******************************Loading********************/
#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    /*display:none;*/
}

.OpenLoader {
    display: none;
}

.CloseLoader {
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}


/***********************************Dashboard********************/
.ProfileProductFavoriteDiv {
    display: flex;
    border-bottom: 1px solid var(--main);
    justify-content: space-between;
}

.Dashboard .BtnDelete {
    color: var(--second);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

    .Dashboard .BtnDelete:hover {
        color: var(--main);
    }

.Dashboard {
    display: flex;
}

    .Dashboard .MenuRight {
        background-color: var(--gray) !important;
    }

    .Dashboard .MenuDashboard {
        width: 350px;
        /*max-height: calc(100% - 80px);*/
        max-height: calc(100%);
        /*-webkit-box-shadow: 0 8px 10px 0 rgb(183 192 206 / 10%) !important;
        box-shadow: 0 8px 10px 0 rgb(183 192 206 / 10%) !important;*/
        background-color: var(--gray);
        overflow: hidden;
        z-index: 1;
    }

        .Dashboard .MenuDashboard ul {
            padding: 0;
            width: 100%;
            display: block;
        }

            .Dashboard .MenuDashboard ul li {
                border: 0;
                padding: 0;
            }

                .Dashboard .MenuDashboard ul li a {
                    display: block;
                    text-decoration: none;
                    color: var(--black);
                    padding: 16px 20px 16px;
                    font-size: 18px;
                    background-color: var(--gray);
                    transition: all 0.5s ease-in;
                }

                    .Dashboard .MenuDashboard ul li a:hover {
                        background-color: #fafafa;
                        color: var(--main);
                    }

                    .Dashboard .MenuDashboard ul li a i {
                        color: var(--main);
                        margin-left: 7px;
                    }

                    .Dashboard .MenuDashboard ul li a.Active i {
                        color: var(--white);
                        margin-left: 7px;
                    }

                    .Dashboard .MenuDashboard ul li a.Active {
                        background-color: var(--main);
                        color: var(--white);
                    }

.BodyDashboard {
    background-color: var(--white);
    min-height: 200px;
    width: -webkit-fill-available;
    padding: 20px;
}

.stats-fun-fact-box {
    position: relative;
    display: block;
    padding: 45px 90px 45px 10px;
    border-radius: 15px;
    margin-bottom: 10px;
}

    .stats-fun-fact-box .icon-box {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: #FFFFFF;
        color: #ff4838;
        position: absolute;
        right: 15px;
        top: 48%;
        -webkit-transform: translateY(-48%);
        transform: translateY(-48%);
        -webkit-box-shadow: 1px 5px 24px 0 rgb(14 198 198 / 15%);
        box-shadow: 1px 5px 24px 0 rgb(14 198 198 / 15%);
        text-align: center;
        font-size: 35px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .stats-fun-fact-box .sub-title {
        display: block;
        margin-bottom: 5px;
        color: var(--white);
        font-family: var(--font-headers);
        font-size: 35px;
    }

    .stats-fun-fact-box p {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #FFFFFF;
        font-size: 25px;
    }

.DashboardBg1 {
    background-color: #00CA99 !important;
    color: #00CA99 !important;
}

.DashboardBg2 {
    background-color: #64bc36 !important;
    color: #64bc36 !important;
}

.DashboardBg3 {
    background-color: #ffae00 !important;
    color: #ffae00 !important;
}

.DashboardBg4 {
    background-color: #f3103c !important;
    color: #f3103c !important;
}

.Dashboard .BoxDashboard {
    margin-bottom: 30px;
    background-color: #FFFFFF;
    /* -webkit-box-shadow: 1px 5px 24px 0 rgb(68 102 242 / 5%);
    box-shadow: 1px 5px 24px 0 rgb(68 102 242 / 5%);*/
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
    background-color: var(--gray);
}

    .Dashboard .BoxDashboard input[type=text] {
        border-radius: 5px;
        background-color: var(--white);
        -webkit-box-shadow: unset;
        box-shadow: unset;
        -webkit-transition: var(--transition);
        transition: var(--transition);
        border: 1px solid var(--main);
        height: 50px;
        padding: 10px 20px;
        color: var(--black);
        font-size: 15px;
        margin-bottom: 10px;
    }

    .Dashboard .BoxDashboard textarea {
        border-radius: 5px;
        background-color: var(--white);
        -webkit-box-shadow: unset;
        box-shadow: unset;
        -webkit-transition: var(--transition);
        transition: var(--transition);
        border: 1px solid var(--main);
        height: 60px;
        padding: 10px 20px;
        color: #808080;
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .Dashboard .BoxDashboard .form-group label {
        margin-bottom: 10px;
    }

.scroll-area {
    position: relative;
    z-index: 999;
}

    .scroll-area .go-top {
        position: fixed;
        cursor: pointer;
        top: 0;
        right: 30px;
        color: #ffffff;
        background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
        background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
        background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
        z-index: 9999;
        width: 45px;
        text-align: center;
        height: 45px;
        line-height: 42px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.9s ease-out 0s;
        -moz-transition: all 0.9s ease-out 0s;
        -ms-transition: all 0.9s ease-out 0s;
        -o-transition: all 0.9s ease-out 0s;
        transition: all 0.9s ease-out 0s;
        border-radius: 10px;
    }

        .scroll-area .go-top i {
            position: absolute;
            top: 50%;
            left: -4px;
            right: 0;
            margin: 0 auto;
            font-size: 15px;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            -webkit-transition: all 0.5s ease-out 0s;
            -moz-transition: all 0.5s ease-out 0s;
            -ms-transition: all 0.5s ease-out 0s;
            -o-transition: all 0.5s ease-out 0s;
            transition: all 0.5s ease-out 0s;
        }

            .scroll-area .go-top i:last-child {
                opacity: 0;
                visibility: hidden;
                top: 60%;
            }

        .scroll-area .go-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
            background-image: linear-gradient(to right, #00132b 0%, #00132b 100%);
            background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.5s ease-out 0s;
            -moz-transition: all 0.5s ease-out 0s;
            -ms-transition: all 0.5s ease-out 0s;
            -o-transition: all 0.5s ease-out 0s;
            transition: all 0.5s ease-out 0s;
            border-radius: 100%;
        }

        .scroll-area .go-top:focus, .scroll-area .go-top:hover {
            color: #fff;
        }

            .scroll-area .go-top:focus::before, .scroll-area .go-top:hover::before {
                opacity: 1;
                visibility: visible;
            }

            .scroll-area .go-top:focus i:first-child, .scroll-area .go-top:hover i:first-child {
                opacity: 0;
                top: 0;
                visibility: hidden;
            }

            .scroll-area .go-top:focus i:last-child, .scroll-area .go-top:hover i:last-child {
                opacity: 1;
                visibility: visible;
                top: 50%;
            }

        .scroll-area .go-top.active {
            top: 85%;
            transform: translateY(-98%);
            opacity: 1;
            visibility: visible;
            border-radius: 0;
            right: 30px;
            border-radius: 100%;
        }

.top-wrap {
    position: relative;
}

    .top-wrap .go-top-button {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 40px;
        text-align: center;
        color: #fff;
        top: 3px;
        z-index: 1;
        background: var(--main);
    }

        .top-wrap .go-top-button i {
            font-size: 20px;
            font-weight: 700;
            padding-left: 4px;
            color: #fff;
        }

        .top-wrap .go-top-button::after {
            z-index: -1;
            content: "";
            position: absolute;
            left: 3px;
            top: 3px;
            width: 45px;
            height: 45px;
            -webkit-animation: ripple 1.6s ease-out infinite;
            -moz-animation: ripple 1.6s ease-out infinite;
            -o-animation: ripple 1.6s ease-out infinite;
            animation: ripple 1.6s ease-out infinite;
            opacity: 0;
            background-image: -webkit-linear-gradient(0deg, #F86F03 0%, #F86F03 100%);
            border-radius: 100%;
        }

        .top-wrap .go-top-button:hover {
            background-color: #222;
            color: #fff;
        }

/**********************mobilestyle*****************/
/*************************************************Mobile*********************/
.MarginTopMobile {
    /*margin-top: 46px;*/
}

.PaddingBottomMobile {
    padding-bottom: 75px;
}

@media (max-width: 992px) {
    body {
        padding-top: 3px;
        font-size: 14px;
    }

    .AboutUs {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .SliderButtonRight {
        width: 30px;
        height: 30px;
        border: unset;
        color: var(--white);
        bottom: 5%;
        border-radius: 5px;
        background-color: var(--main);
    }

        .SliderButtonRight i {
            font-size: 15px;
        }

        .SliderButtonRight:hover {
            color: var(--black);
            border: unset;
            background-color: var(--white);
        }

    .SliderButtonLeft {
        width: 30px;
        height: 30px;
        border: unset;
        color: var(--white);
        bottom: 5%;
        border-radius: 5px;
        background-color: var(--main);
    }

        .SliderButtonLeft i {
            font-size: 15px;
        }

        .SliderButtonLeft:hover {
            color: var(--black);
            border: unset;
            background-color: var(--white);
        }

    /****************************MenuMobile***************************/
    .DivMenuMobileHeader {
        background-color: var(--black);
        height: 50px;
        position: sticky;
        /*top: 0;*/
        width: 100%;
        z-index: 100;
    }

        .DivMenuMobileHeader .MainLogo {
            display: flex;
            height: 50px;
            align-items: center;
            justify-content: space-evenly;
        }

            .DivMenuMobileHeader .MainLogo img {
                max-height: 35px;
            }

        .DivMenuMobileHeader .MainUser {
            display: flex !important;
            justify-content: flex-end;
            align-items: center;
        }

        .DivMenuMobileHeader .MenuRegister {
            text-decoration: none;
            color: var(--white);
            display: block;
            margin-left: 5px;
            text-align: left;
            background-color: var(--main);
            padding: 8px 12px 8px 12px;
            border-radius: 5px;
            margin-top: auto;
            margin-bottom: auto;
            font-size: 14px;
        }

    .DivMenuMobile {
        background-color: var(--white);
        height: 75px;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100;
        border-top: 2px solid var(--black);
        z-index:1000;
    }

    .MenuTopMobile {
        width: 100%;
        height: 75px;
        display: flex;
        top: 0;
    }

    .MenuMobile {
        list-style: none;
        margin: 0px 0 0 0 !important;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
    }

        .MenuMobile li {
            margin: 0;
            width: 19%;
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: space-evenly;
        }

            .MenuMobile li a {
                text-decoration: none;
                color: var(--black);
                display: flex;
                flex-direction: column;
                align-items: center;
                font-size: 14px;
                height: 100%;
                position: relative;
                justify-content: space-evenly;
            }

                .MenuMobile li a i {
                    font-size: 20px;
                }

    /********************************************************/
    .AboutUs .Title {
        font-family: var(--font-headers);
        text-align: center;
    }

    .btnnextslider {
        width: 40px;
        height: 40px;
        border: unset;
        color: var(--white);
        bottom: 5%;
        border-radius: 5px;
        background-color: var(--main);
    }

        .btnnextslider i {
            font-size: 18px;
        }

        .btnnextslider:hover {
            color: var(--white);
            border: unset;
            background-color: var(--black);
        }

    .btnprevslider {
        width: 40px;
        height: 40px;
        border: unset;
        color: var(--white);
        bottom: 5%;
        border-radius: 5px;
        background-color: var(--main);
    }

        .btnprevslider i {
            font-size: 18px;
        }

        .btnprevslider:hover {
            color: var(--white);
            border: unset;
            background-color: var(--black);
        }

    .SubscribeForm {
        display: flex;
        flex-direction: column;
    }

        .SubscribeForm button {
            margin-right: unset;
            border-radius: 5px;
            margin-top: 15px;
        }

        .SubscribeForm input {
            border-radius: 5px;
        }

    .Product {
        padding-top: 20px;
    }

        .Product .Title {
            font-size: 20px;
            height: 100%;
            display: flex;
            align-items: center;
        }

    .btnnextslidercomment {
        width: 30px;
        height: 30px;
        border: unset;
        color: var(--white);
        bottom: 5%;
        border-radius: 5px;
        background-color: var(--main);
    }

        .btnnextslidercomment i {
            font-size: 15px;
        }

        .btnnextslidercomment:hover {
            color: var(--white);
            border: unset;
            background-color: var(--black);
        }

    .btnprevslidercomment {
        width: 30px;
        height: 30px;
        border: unset;
        color: var(--white);
        bottom: 5%;
        border-radius: 5px;
        background-color: var(--main);
    }

        .btnprevslidercomment i {
            font-size: 15px;
        }

        .btnprevslidercomment:hover {
            color: var(--white);
            border: unset;
            background-color: var(--black);
        }

    #IndexTapProduct .nav-link.active {
        font-size: 15px;
    }

    #IndexTapProduct .nav-link {
        font-size: 15px;
    }

    #IndexTapProduct ul {
        padding: 0 !important;
        margin: 0 !important;
    }

    #IndexTapProduct li {
        padding: 0 !important;
        margin: 0 !important;
    }

    .BtnMain {
        border-radius: 5px;
        padding: 10px 30px;
    }

    .Blog .Button {
        text-align: center;
    }

    .Blog .Title {
        margin-bottom: 15px;
        font-size: 35px;
    }

    .Blog .BigBlog .Label {
        color: var(--white);
        background-color: var(--main);
        padding: 5px 20px;
        border-radius: 5px;
        font-family: var(--font-headers);
        font-size: 18px;
    }
    /*************************************Footer************************/
    .footer {
        padding: 20px 0px 0;
    }

    .FooterBottom .AlignRight {
        text-align: center;
    }

    .FooterBottom .AlignLeft {
        text-align: center;
        margin-top: 10px;
    }

    .Footer .FooterTitle {
        margin-top: 10px;
        font-family: var(--font-headers);
    }

    .footer .ProductWarranty {
        padding: 0px 0px 35px 0px;
    }

        .footer .ProductWarranty .ProductWarrantyItem {
            background-color: var(--gray);
            padding: 15px 5px;
            border-radius: 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

            .footer .ProductWarranty .ProductWarrantyItem img {
                margin-left: 5px;
                max-height: 35px;
            }


            .footer .ProductWarranty .ProductWarrantyItem span {
                font-family: var(--font-headers);
                font-size: 15px;
            }

    .footer footerNewsletterBoxed {
        display: flex;
        flex-direction: column;
    }

    .footer .SubscribeTitle {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .footer .SubscribeTitle h2 {
            font-size: 18px;
        }

    .footer .ContactForm .ContactBoxSubscribe input {
        font-size: 14px;
        height: 55px;
        width: 200px;
        outline: none;
        display: block;
        color: #ffffff;
        padding: 0px 30px;
        border: 1px solid #272727;
        background-color: transparent;
        transition: all 0.3s ease-in-out;
    }

    .footer .ContactBoxSubscribe {
        /*flex-direction: column;*/
    }

    .footer .ContactForm .ContactBoxSubscribe button {
        width: 55px;
        height: 55px;
        font-size: 18px
    }

    .footer .FooterLogo {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .footer .FooterDescription {
        margin-top: 10px;
        font-size: 14px;
        text-align: justify;
    }

    .footer .FooterDesign {
        text-align: center;
    }

    .footer .FooterPolicy {
        text-align: center;
        margin-bottom: 10px;
    }

    .footerNewsletterBoxed {
        flex-direction: column;
    }

    .BackGroundColor {
        background-color: var(--gray);
        min-height: 100%;
    }



    .PagingNav .pagination .page-item a {
        font-weight: unset;
        font-size: 14px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }

    .DetailsProductBackGroundColor {
        background-color: var(--gray);
        min-height: 100%;
    }

    .AddToCartBtnDetails {
        background-color: var(--main);
        z-index: 1;
        margin-bottom: auto;
        margin-top: auto;
        margin-right: auto;
    }

    ol.breadcrumb {
        display: flex;
        align-items: center;
    }

    .HeaderTwo .NavBreadcrumb .BreadItem {
        font-size: 14px;
    }

    .ProductDetails {
        /*background-color: var(--gray);*/
    }

        .ProductDetails .ProductWarranty .ProductWarrantyItem {
            width: calc(50% - 15px);
        }

        .ProductDetails .ProductWarranty a span {
            font-size: 15px;
        }

        .ProductDetails .DetailsProductDescription button {
            font-size: 14px;
        }

    .MenuTopMobile {
        width: 100%;
        height: 75px;
        display: flex;
        top: 0;
    }

    .MenuMobile {
        list-style: none;
        margin: 0px 0 0 0 !important;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
    }

        .MenuMobile li {
            margin: 0;
            width: 19%;
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: space-evenly;
        }

            .MenuMobile li a {
                text-decoration: none;
                color: var(--main);
                display: flex;
                flex-direction: column;
                align-items: center;
                font-size: 14px;
                height: 100%;
                position: relative;
                justify-content: space-evenly;
            }

                .MenuMobile li a i {
                    font-size: 20px;
                }
    /*************************Cart********************/
    .CartBadgeMobile {
        position: absolute;
        top: 1px;
        background: var(--second);
        color: #fff;
        border-radius: 50%;
        font-size: 12px;
        text-align: center;
        padding: 5px 10px 5px 10px;
        right: 1px;
    }

    .HeaderTwo .HeaderTitle {
        font-size: 20px;
    }

    .NextBtn {
        font-size: 18px;
        margin: auto;
        text-align: center;
        padding: 10px 30px 10px 30px;
        background-color: var(--second);
        border-radius: 10px;
    }

    .qty .plus {
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        color: white;
        font-size: 20px;
        text-align: center;
        border-radius: 5px;
        background-color: var(--second);
        padding-left: 7px;
        padding-right: 7px;
        font-family: arial;
    }

    .qty .minus {
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        color: black;
        font-size: 20px;
        text-align: center;
        border-radius: 5px;
        background-clip: padding-box;
        background-color: #DCDCDC;
        padding-left: 9px;
        padding-right: 9px;
        font-family: arial;
    }

    .qty .count {
        margin: 0;
        width: 40px;
        text-align: center;
        border: 1px solid var(--main);
        padding: 0;
        height: 41px;
        font-size: 25px;
        display: inline-block;
        vertical-align: top;
        border-radius: 3px;
    }

    .Login label {
        font-size: 18px;
    }

    .Login .Button {
        text-align: center;
    }
    /******************checkout*******************/
    .BackGroundColorCard {
        background-color: transparent;
        padding-top: 10px !important;
        min-height: 100%;
    }

    .Checkout {
        position: relative;
        background-color: var(--gray);
        padding: 10px 10px;
        border-radius: 5px;
        color: var(--black);
    }

    .ChekoutPayment {
        display: flex !important;
        align-items: center;
    }

        .ChekoutPayment .SpanDescribeMobile {
            font-size: 13px;
            display: inline-block;
            text-align: justify
        }



    .custom-radio-button input[type="radio"]#color-redMobile + label span {
        background-color: var(--second);
    }

    .custom-radio-button input[type="radio"]#color-blueMobile + label span {
        background-color: var(--second);
    }

    .custom-radio-button input[type="radio"]#color-orangeMobile + label span {
        background-color: var(--second);
    }

    .custom-radio-button input[type="radio"]#color-pinkMobile + label span {
        background-color: var(--second);
    }

    .custom-radio-button input[type="radio"]#color-yellowMobile + label span {
        background-color: var(--second);
    }

    .AddressInsertButtonNext {
        color: #FFFFFF;
        padding: 13px 50px;
        position: relative;
        border-radius: 10px;
        background-color: var(--second);
        border: 0;
        margin-bottom: 5px;
        margin-top: 5px;
        font-size: 15px;
        font-weight: bold;
    }

    .ProfileAddressTitle {
        position: relative;
        display: inline-block;
        padding: 8px 0;
        font-size: 15px;
        line-height: 1;
        font-weight: bold;
        border-bottom: 2px solid var(--second);
        color: #1a3c57;
        margin-bottom: 10px;
    }

    .ColorText {
        color: var(--main);
        text-decoration: none;
    }

        .ColorText:hover {
            color: var(--black);
        }
    /**********************************************ChechAddressInCart***************************/
    .CehckOutBtn {
        color: white;
        background-color: var(--second);
        border-radius: 10px;
        z-index: 1001;
        font-size: 18px;
    }
    /**************************Dashboard****************************/


    .UlMenuProfileMobile {
        padding: 25px 25px 25px 25px;
        border-radius: 25px;
        background-color: var(--gray);
        list-style: none;
    }

        .UlMenuProfileMobile li {
            padding-bottom: 15px;
            padding-top: 15px;
            font-size: 17px;
            border-bottom: 1px solid #e4e4e4;
            display: flex;
        }

            .UlMenuProfileMobile li a {
                text-decoration: none;
                width: 100%;
            }

                .UlMenuProfileMobile li a i {
                    margin-left: 15px;
                }

    .BodyDashboard {
        padding: 0px;
    }
    /*************************Profile********************/
    .DivMenuProfileMobile {
        /* margin: 15px;*/
    }
    /**********************Product****************/
    .Product .ProductDescription {
        font-size: 13px;
    }

        .Product .ProductDescription h5 {
            font-size: 12px;
            font-weight: unset;
        }

    /*****************ProductDetails************/
    .NotAvailable {
        margin-bottom: unset;
        font-family: var(--font-headers);
        font-size: 23px;
    }
    /**************************Product***********/
    .ProductTwo {
        /*background-color: var(--gray);*/
    }

        .ProductTwo .ProductDescription h5 {
            font-size: 14px;
            font-weight: unset;
        }
    /*****************************SearchBox*******************/
    .SearchHeader {
        background-color: var(--footerBottom);
        align-items: center;
        padding: 5px 10px;
    }

        .SearchHeader .btn-close {
            background-color: var(--main);
            opacity: 1;
            margin-right: 5px;
        }

        .SearchHeader form {
            width: 100%;
            padding-right: 5px;
            display: flex;
            border-radius: 5px;
            justify-content: space-between;
            align-items: center;
        }

    .BtnSearchMobile {
        background-color: transparent;
        border: none;
        display: inline-block;
        height: 100%;
        margin-right: 5px;
    }

        .BtnSearchMobile i {
            font-size: 30px;
            color: var(--main);
            align-items: center;
        }

    .SearchTextBox {
        background-color: white;
        z-index: 16 !important;
        border: unset;
        height: 45px;
    }

    .DivSearchBox {
        background-color: #DCDCDC;
        top: 75px;
        position: fixed;
        z-index: 10000;
        padding: 5px;
    }

    .SearchTextBox input {
        outline: none;
    }

    .SearchSlider {
        display: flex;
        overflow: scroll;
    }

        .SearchSlider .SearchSliderProduct {
            border: 1px solid #DCDCDC;
            border-radius: 15px;
            margin: 10px 5px;
            display: flex;
            padding: 10px;
            align-items: center;
        }

        .SearchSlider a {
            text-decoration: none;
            color: #000000 !important;
        }

        .SearchSlider .SearchSliderProduct img {
            max-width: 70px;
        }

        .SearchSlider .SearchSliderProduct span {
            width: 100px;
            display: inline-block;
            font-size: 12px;
        }
    /************************Slider***************/

    .SliderImage {
        /*padding: 25px 0px;*/
    }

    .carousel-indicators [data-bs-target] {
        width: 5px;
        height: 5px;
        margin-bottom: 5px;
    }
    /***********************Index***********************************/
    .IndexCat .Title {
        font-size: 28px;
    }

    .IndexCat .btnnextSliderCat, .btnnextSliderIndexImage {
        width: 35px;
        height: 35px;
    }

        .IndexCat .btnnextSliderCat i, .btnnextSliderIndexImage i {
            font-size: 17px;
        }

    .IndexCat .btnprevSliderCat, .btnprevSliderIndexImage {
        width: 35px;
        height: 35px;
    }

        .IndexCat .btnprevSliderCat i, .btnprevSliderIndexImage i {
            font-size: 17px;
        }

    .AmazingDiscounts {
        margin-right: 5px;
        display: inline-block;
    }

        .AmazingDiscounts p {
            margin: 0;
            margin-bottom: 5px;
            min-width: 30px;
            font-size: 10px;
            line-height: unset !important;
        }

            .AmazingDiscounts p.DateDay {
                font-size: 20px;
            }
    /************************AboutUs********************/
    .AboutUs .Play span {
        width: 60px;
        height: 60px;
        right: calc(50% - 30px);
        border: 4px solid white;
        font-size: 15px;
    }
}
/********************************Layput***********************/

.toast-body {
    color: var(--black);
}

.footer .Enamad {
    margin-top: 15px;
    width: 75px;
    height: 75px;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid var(--main);
    z-index: 1000;
    margin-bottom: 15px;
}

    .footer .Enamad img {
        width: 65px;
        height: 65px;
        display: inline-block;
    }

.PIndexImage {
   text-align:center;
   color:var(--black);
   font-weight:bold;
}