/*#region General */

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/iransans/iransans/eot/IRANSansWeb(FaNum)_Bold.eot');
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/iransans/woff2/IRANSansWeb(FaNum)_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/iransans/woff/IRANSansWeb(FaNum)_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/iransans/ttf/IRANSansWeb(FaNum)_Bold.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_Medium.eot');
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/iransans/woff2/IRANSansWeb(FaNum)_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/iransans/woff/IRANSansWeb(FaNum)_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/iransans/ttf/IRANSansWeb(FaNum)_Medium.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_Light.eot');
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/iransans/woff2/IRANSansWeb(FaNum)_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/iransans/woff/IRANSansWeb(FaNum)_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/iransans/ttf/IRANSansWeb(FaNum)_Light.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_UltraLight.eot');
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum)_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/iransans/woff2/IRANSansWeb(FaNum)_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/iransans/woff/IRANSansWeb(FaNum)_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/iransans/ttf/IRANSansWeb(FaNum)_UltraLight.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum).eot');
    src: url('../fonts/iransans/eot/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/iransans/woff2/IRANSansWeb(FaNum).woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/iransans/woff/IRANSansWeb(FaNum).woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/iransans/ttf/IRANSansWeb(FaNum).ttf') format('truetype');
}

body {
    direction: rtl;
    font-family: IRANSans;
    background: #F5F5F5;
}

.OverflowHidden {
    overflow-x: hidden;
    overflow-y: hidden;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}

.InvalidMessages .validation-summary-errors {
    background: #C30000;
    width: 96%;
    margin: 10px auto;
    max-width: 400px;
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 5px 0px;
    font-size: 14px;
    line-height: 30px;
}

    .InvalidMessages .validation-summary-errors ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }
/*#endregion */

/*#region Loading */
#LoadingArea {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0,0.75);
    z-index: 10000000000;
    display: none;
    top: 0px;
    right: 0px
}

.centerFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top:0px;
    right:0px;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid #FF3D00;
        border-bottom: 4px solid transparent;
        animation: rotation 0.5s linear infinite reverse;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion */

/*#region Main Page */

.MainPageArea {
    position: relative;
}

.logo {
    position: absolute;
    width: 300px;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.MainPage {
    display: flex;
}

    .MainPage .rightSection {
        width: calc(100% - 300px);
        position: relative;
        height: 100vh;
    }

    .MainPage .leftSection {
        width: 300px;
        height: 100vh;
        position: relative;
    }

.circleHolder {
    width: 150vh;
    height: 150vh;
    background: #C30000;
    border-radius: 2000px;
    position: absolute;
    right: 0;
    animation: mymove 15s cubic-bezier(.57,.21,.69,1.25) infinite;
    transform: translateY(-50%);
    top: 50%;
}

    .circleHolder .slide {
        width: 400px;
    }

.slide1 {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateX(50%) translateY(-50%);
}

.slide2 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(50%) rotate(90deg);
}

.slide3 {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.slide4 {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(270deg);
}


@keyframes mymove {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    12.5% {
        transform: translateY(-50%) rotate(0deg);
    }

    25% {
        transform: translateY(-50%) rotate(90deg);
    }

    37.5% {
        transform: translateY(-50%) rotate(90deg);
    }

    50% {
        transform: translateY(-50%) rotate(180deg);
    }

    62.5% {
        transform: translateY(-50%) rotate(180deg);
    }

    75% {
        transform: translateY(-50%) rotate(270deg);
    }

    87.5% {
        transform: translateY(-50%) rotate(270deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.FormBox {
    width: 500px;
    max-width: 90%;
    background: white;
    border-radius: 15px;
    position: absolute;
    top: calc(50% - 240px);
    right: calc(50% - 250px);
    padding: 50px 0px 20px 0px;
    box-shadow: 0px 26.0769px 20.8615px rgba(0, 0, 0, 0.07), 0px 10.8943px 8.71545px rgba(0, 0, 0, 0.0503198), 0px 5.82462px 4.6597px rgba(0, 0, 0, 0.0417275), 0px 3.26523px 2.61219px rgba(0, 0, 0, 0.035), 0px 1.73414px 1.38731px rgba(0, 0, 0, 0.0282725), 0px 0.721615px 0.577292px rgba(0, 0, 0, 0.0196802);
}

    .FormBox .InputGroup {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .FormBox label {
        margin-right: calc(10% + 30px);
        color: #565656;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .FormBox a {
        display: block;
        text-align: center;
        width: 140px;
        margin: 13px auto 0px auto;
        color: #C30000;
        font-size: 14px;
        padding: 5px 0px;
    }

.inputArea {
    position: relative;
}

    .inputArea input {
        width: 80%;
        margin: 0px auto;
        display: block;
        border: none;
        box-shadow: inset 0px 3px 6px #00000029;
        border-radius: 100px;
        height: 53px;
        padding: 20px;
        background: #F5F5F5;
        font-size: 15px;
        text-align: center;
    }

    .inputArea img {
        position: absolute;
        width: 64px;
        left: calc(10% - 2px);
        top: -5px;
    }

.FormBox button {
    box-shadow: -8px -6px 15px 0 #fff, 6px 8px 15px 0 rgba(0, 0, 0, 0.15);
    background-color: #FAFAFA;
    border-radius: 200px;
    color: #8B8B8B;
    border: 2px solid hsla(0, 0%, 100%, 0);
    height: 50px;
    width: 150px;
    margin: 15px auto 0px auto;
    display: block;
}

    .FormBox button:hover {
        border-color: hsla(0, 0%, 100%, 0);
        box-shadow: inset -8px -7px 10px 0 #fff, inset 7px 8px 10px 0 rgba(0, 0, 0, 0.15);
    }

.FormBox .title {
    background: #C30000;
    border-radius: 10px;
    color: white;
    text-align: center;
    width: 250px;
    margin: 0px auto;
    padding: 10px 0px;
    margin-top: -72px;
}

    .FormBox .title.green {
        background: #00A324;
    }

.MainPage .leftSection .RedCard {
    width: 200px;
    height: 100vh;
    position: absolute;
    top: 0px;
    right: calc(50% - 100px);
    background: #C30000;
}

.socials {
    position: absolute;
    bottom: 40px;
    right: calc(50% - 120px);
    width: 240px;
}

.social {
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    float: right;
    margin-left: 10px;
    /*box-shadow: -8px -6px 15px 0 #fff, 6px 8px 15px 0 rgba(0, 0, 0, 0.15);*/
    box-shadow: 0px 26.0769px 20.8615px rgba(0, 0, 0, 0.07), 0px 10.8943px 8.71545px rgba(0, 0, 0, 0.0503198), 0px 5.82462px 4.6597px rgba(0, 0, 0, 0.0417275), 0px 3.26523px 2.61219px rgba(0, 0, 0, 0.035), 0px 1.73414px 1.38731px rgba(0, 0, 0, 0.0282725), 0px 0.721615px 0.577292px rgba(0, 0, 0, 0.0196802);
    background: white;
}

    .social img {
        width: 70%;
        margin: 0px auto;
        display: block;
    }

.socials span {
    color: #CFCFCF;
    margin-top: 10px;
    display: block;
}

.errorMsg {
    margin-top: 10px;
}

    .errorMsg ul {
        padding: 0px;
        margin: 0px;
    }

        .errorMsg ul li {
            margin: 5px auto 0px auto;
            background: #fa3636;
            color: white;
            list-style: none;
            padding: 3px 0px;
            text-align: center;
            border-radius: 5px;
            font-size: 13px;
            max-width: 250px;
        }

            .errorMsg ul li:first-child {
                margin-top: 0px;
            }

.CompletedArea .WareImg {
    max-width: 200px;
    max-height: 200px;
    display: block;
    margin: 10px auto;
}

.CompletedArea .PrName {
    background: #F0F0F0;
    border-radius: 15px;
    width: 90%;
    margin: 5px auto;
    padding: 7px 0px;
}

    .CompletedArea .PrName p {
        margin-bottom: 0px;
        text-align: center;
        font-size: 14px;
    }

    .CompletedArea .PrName span {
        font-size: 13px;
        margin-top: 5px;
    }


.CompletedArea > p {
    background: #F0F0F0;
    border-radius: 15px;
    width: 90%;
    margin: 5px auto;
    padding: 7px 0px;
    text-align: center;
    color: black;
    font-size: 14px;
}

.CompletedArea p.halfLine {
    width: 44%;
    float: right;
}

.CompletedArea > a {
    background: rgb(195, 0, 0);
    color: white;
    border-radius: 15px;
    margin: 5px auto;
    padding: 7px 0px;
    text-align: center;
    font-size: 14px;
    width: 44%;
    float: right;
}

.CompletedArea span {
    font-size: 14px;
    font-weight: 300;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/*#endregion */

/*#region Login Page */
#loginWrapper {
    display: none;
}

.loginBackground, .CatalogBackground {
    background: #000000ab;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 110;
    top: 0px;
    right: 0px;
}

.loginBox {
    width: 400px;
    max-width: 95%;
    padding: 32px;
    position: fixed;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 8px;
    left: 50%;
    box-sizing: border-box;
    background: white;
    z-index: 1000;
    box-shadow: 0px 26.0769px 20.8615px rgba(0, 0, 0, 0.07), 0px 10.8943px 8.71545px rgba(0, 0, 0, 0.0503198), 0px 5.82462px 4.6597px rgba(0, 0, 0, 0.0417275), 0px 3.26523px 2.61219px rgba(0, 0, 0, 0.035), 0px 1.73414px 1.38731px rgba(0, 0, 0, 0.0282725), 0px 0.721615px 0.577292px rgba(0, 0, 0, 0.0196802);
}

    .loginBox img {
        width: 120px;
        display: block;
        margin: 0 auto;
        max-width: 95%;
    }

    .loginBox h2 {
        color: #3e3e3e;
        text-align: center;
        font-family: IRANSans;
        font-weight: 500;
        margin-top: 13px;
        font-size: 19px;
    }

    .loginBox p {
        color: #3e3e3e;
        text-align: center;
        direction: rtl;
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .loginBox input {
        width: 100%;
        height: 60px;
        border-radius: 9px;
        border: 2px solid #2B2B2B;
        margin-top: 20px;
        padding: 10px;
        text-align: right;
        font-family: IRANSans;
        box-sizing: border-box;
        font-size: 15px;
    }

    .loginBox button {
        border: none;
        width: 100%;
        margin-top: 15px;
        padding: 17px;
        border-radius: 10px;
        background: #C30000;
        color: white;
        font-family: IRANSans;
        cursor: pointer;
    }

.alertMessage ul {
    list-style: none;
    padding: 0;
    margin: 10px 0px 0px 0px;
}

    .alertMessage ul li {
        text-align: center;
        color: red;
        font-size: 15px;
    }

.ActionLinkInLogin {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    color: #ff1010;
    font-size: 14px;
    font-weight: bold;
}
/*#endregion */

/*#region Profile */

.PHeader {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

    .PHeader img {
        width: 300px;
    }

.ProfileContainer {
    display: flex;
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    flex-wrap: wrap;
}

.PSideBar {
    width: 220px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.TopSidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.PMain {
    width: calc(100% - 240px);
    background: white;
    border-radius: 20px;
    padding-bottom: 20px;
    position: relative;
}

.ProfileImage {
    width: 150px;
    height: 150px;
    border-radius: 1000px;
    background-position: center;
    background-size: cover;
}

.TopSidebar p {
    color: #515151;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.SidberPoint {
    width: 220px;
}

    .SidberPoint > span, .SidberPoint > a {
        background: #C30000;
        border-radius: 10px;
        margin-top: 15px;
        color: white;
        text-align: center;
        display: block;
        width: 100%;
        padding: 7px 0px;
        max-width: 220px;
    }

.PSidebarSection {
    background: white;
    border-radius: 20px;
    width: 100%;
    margin-top: 20px;
    padding: 0px 10px;
}

    .PSidebarSection a {
        padding: 10px 20px;
        display: block;
        transition: all 0.3s ease-in-out;
        border-radius: 100px;
        margin: 10px 0px;
    }

        .PSidebarSection a span {
            color: #A8A8A8;
            font-size: 14px;
            transition: all 0.3s ease-in-out;
        }

        .PSidebarSection a img {
            max-width: 22px;
            max-height: 22px;
            margin-left: 10px;
        }

        .PSidebarSection a.active, .PSidebarSection a:hover {
            background: #F3F3F3;
        }

            .PSidebarSection a.active span, .PSidebarSection a:hover span {
                color: #515151;
            }

.PMainMetas {
    width: 96%;
    margin-right: 2%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.PMainMeta {
    width: 20%;
    background: #F5F5F5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 140px;
}

    .PMainMeta.BigElement {
        width: 36%;
        height: unset;
    }

        .PMainMeta.BigElement p {
            font-size: 14px;
            margin-top: 15px;
            margin-bottom: 0px;
        }


    .PMainMeta img {
        max-width: 60px;
        max-height: 60px;
        height: 49px;
    }

    .PMainMeta p {
        color: #323232;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .PMainMeta span {
        color: #9C9A9A;
        font-size: 14px;
    }

.ActionLink, .submitButton {
    background: #FAFAFA;
    border-radius: 100px;
    padding: 10px 20px;
    text-align: center;
    color: black;
    box-shadow: 5px 5px 11px #e1e1e1;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

    .ActionLink:hover, .submitButton:hover {
        background: #C30000;
        color: white;
        box-shadow: none;
    }

.AddedProducts, .Orders, .AdvertiseArea {
    margin-top: 50px;
    width: 96%;
    display: flex;
    flex-wrap: wrap;
    margin-right: 2%;
    justify-content: space-between;
    /*align-items: center;*/
}

    .AddedProducts h3, .Orders h3 {
        color: #1D1D1D;
        width: 100%;
        font-size: 17px;
        font-weight: normal;
    }

.AddedProduct {
    width: 15%;
    border: 1px solid #EFEEEE;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 5px;
}

    .AddedProduct span {
        color: #C30000;
        font-size: 12px;
        margin-bottom: 15px;
    }

.AddedPImage {
    width: 80%;
    padding-top: 80%;
    background-position: center;
    background-size: cover;
    display: block;
    margin: 0px auto;
}

.AddedProduct p {
    margin-top: 20px;
    color: #1D1D1D;
    font-size: 14px;
}

.OrderStatus {
    border: 1px solid #EFEEEE;
    border-radius: 20px;
    display: flex;
    width: 20%;
    padding: 10px 25px
}

    .OrderStatus img {
        max-width: 40px;
        max-height: 40px;
        margin-left: 10px;
    }

.OrderMeta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .OrderMeta p {
        color: #323232;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .OrderMeta span {
        color: #9C9A9A;
        font-size: 12px;
    }

.socials.generaly {
    position: unset;
    margin: 20px auto;
}

.Notice {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 0px 10px;
}

    .Notice img {
        width: 20px;
        margin-left: 10px;
    }

.formSection {
    width: 90%;
    margin-right: 5%;
    margin-top: 30px;
}

.UploadWrapper {
    width: 100%;
}

.UploadFile {
    border-radius: 20px;
    background: #F5F5F5;
    padding: 10px 30px;
    display: flex;
    float: right;
    cursor: pointer;
    margin-top: 17px;
}

    .UploadFile img {
        width: 45px;
        margin-left: 10px;
    }

    .UploadFile p {
        color: #565656;
        margin-bottom: 0px;
        margin-top: 11px;
    }

    .UploadFile span {
        color: #A3A3A3;
        font-size: 14px;
        margin-right: 5px;
        margin-top: 15px;
    }

.UploadImg {
    width: 100px;
    height: 100px;
    float: left;
    border-radius: 1000px;
    background-position: center;
    background-size: cover;
}

.FormElements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.formGroup {
    width: 48%;
    margin-bottom: 30px;
}

    .formGroup label {
        width: 100%;
        color: #565656;
        padding-right: 20px;
        font-size: 15px
    }

    .formGroup > label > span {
        color: #A3A3A3;
        font-size: 14px;
        margin-right: 5px;
        position: relative;
    }

    .formGroup input {
        width: 100%;
        margin-top: 10px;
        background: #F5F5F5;
        border: none;
        border-radius: 100px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .formGroup textarea {
        width: 100%;
        margin-top: 10px;
        background: #F5F5F5;
        border: none;
        border-radius: 20px;
        padding: 12px 20px;
        font-size: 15px;
        resize: none;
        height: 150px;
    }

.EditProfile .formGroup p {
    width: 100%;
    margin-top: 10px;
    background: #F5F5F5;
    border: none;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 15px;
}

.EditProfile .select2-container {
    margin-right: 0px !important;
    margin-top: 10px;
}

.select2-container--default .select2-selection--single {
    background-color: #F5F5F5 !important;
    border: none !important;
    height: 48.8px !important;
    padding-top: 10px;
    font-size: 14px;
    padding-right: 12px;
    border-radius: 100px !important;
}

    .select2-selection__rendered, .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 48.8px !important;
    }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 10px !important;
}

.BigFormGroup {
    width: 100%;
}

.EditProfile .submitButton {
    float: left;
}

.PurchaseProducts {
    width: 96%;
    margin: 30px 2%;
    display: flex;
    flex-wrap: wrap;
}

    .PurchaseProducts .AddedProduct {
        width: 19%;
        margin: 10px 0.5%;
    }

        .PurchaseProducts .AddedProduct p {
            margin-bottom: 5px;
        }

.AvailableProducts {
    display: flex;
    flex-wrap: wrap;
}

.Product {
    width: 19%;
    margin: 10px 0.5%;
    padding: 0px 1%;
}

.ProductImage {
    width: 100%;
    padding-top: 100%;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
overflow:hidden;
cursor:zoom-in;
}
    .ProductImage img{
        width:100%;
    }
    .Product p {
        font-size: 15px;
        margin-top: 10px;
        text-align: center;
        margin-bottom: 5px;
        height: 45px;
        overflow: hidden;
    }

.Product .Price {
    background: #C30000;
    width: 100%;
    display: block;
    text-align: center;
    color: white;
    border-radius: 100px;
    padding: 8px 0px;
    font-size: 13px;
}

.AddToCartbtn {
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid #E4E4E4;
    padding: 8px 0px;
    border-radius: 100px;
    margin-top: 10px;
    color: #585858;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

    .AddToCartbtn img {
        transition: all 0.3s ease-in-out;
        width: 21px;
        margin-left: 5px;
    }

.CartBtnHover:hover {
    background: #C30000;
    color: white;
}

    .CartBtnHover:hover img {
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    }

.OrderItem {
    justify-content: space-between;
    align-items: center;
}

    .OrderItem p {
        margin-bottom: 0px;
        padding: 0px 10px;
        text-align: center;
    }

.cartProductThumbs {
    display: flex;
    justify-content: center;
    gap: 3px;
    width: 300px;
    overflow: hidden;
}

.cartProductThumb {
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: cover;
    border-radius: 3px;
    border: 1px solid lightgray;
}

.ActionTable {
    background: blue;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.oLevel1 {
    width: 100px;
}

.oLevel2 {
    width: 300px;
}

.oLevel3 {
    width: 175px;
}

.oLevel4 {
    width: 100px;
}

.oLevel5 {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .oLevel5 .ActionTable {
        width: 120px;
    }

.PurchaseHistory .oLevel1, .PurchaseHistory .oLevel4 {
    width: 235px;
}

.headerRow {
    background: #C30000;
    color: white;
    font-size: 14px;
    border: none !important;
}

.CartBasket {
    position: absolute;
    top: -30px;
    left: 50px;
}

    .CartBasket a {
        background: #C30000;
        width: 50px;
        height: 50px;
        border-radius: 100px;
        text-align: center;
        padding-top: 9px;
        box-shadow: 3px 3px 5px lightgray;
        display: block;
    }

    .CartBasket img {
        width: 28px;
    }

    .CartBasket span {
        background: white;
        color: #C30000;
        width: 17px;
        height: 17px;
        text-align: center;
        position: absolute;
        top: 7px;
        right: 6px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: bold;
    }

.CouponCart.CartItem {
    flex-direction: column;
    width: 320px;
    margin-right: 20px;
    margin-left: 20px;
}

.CouponCart .title {
    text-align: center;
}

.CouponCart .submitButton {
    margin: 15px auto 6px auto;
    display: block;
    width:100%;
    max-width:320px;
}

.CouponCart input {
    max-width: 320px;
    width: 100%;
    background: #F5F5F5;
    border: none;
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 15px;
    margin: 0px auto;
    display: block;
    text-align: center;
}

.CartWrapper {
    display: flex;
    align-items:start;
}

.CartProducts {
    flex-grow: 1;
    margin-right:20px;
}

.CheckoutProducts{
    margin-left:20px;
}

.PurchaseHistory {
    margin-left: 20px;
}
.messageCoupon {
    width: 80%;
    display: block;
    margin: 10px auto;
    text-align: center;
    color: white;
    font-size: 13px;
    border-radius: 5px;
    padding: 3px;
}

.errorCoupon {
    background: red;
}

.successCoupon {
    background: green;
}

.MoneyBagForm{
    margin:40px 20px;
    padding:0px 40px;
}
    .MoneyBagForm form{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    .MoneyBagForm .formGroup {
        width: 300px;
        display: flex;
        align-items: center;
        margin-bottom:0px;
    }

        .MoneyBagForm .formGroup label{
            width:120px;
            padding-right:0px;
        }
            .MoneyBagForm .formGroup input{
                width:calc(100% - 120px);
                margin-top:0px;
                text-align:center;
            }

.warning {
    width: 50%;
    display: block;
    margin: 10px auto;
    text-align: center;
    border: 1px solid #ffeeba;
    color: #856404;
    background-color: #fff3cd;
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    min-width: 320px;
}

.MessageWrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-top:30px;
    gap:40px;
}

.ConfirmEmailWrapper {
    margin: 40px 20px;
    padding: 0px 40px;
    width:100%;
}

    .ConfirmEmailWrapper .warning{
        margin-bottom:40px;
    }
.AdvertiseArea{
    margin-block:40px;
}
.Advertise {
    width: 49%;
    margin-bottom: 20px;
}

.AdvertiseImg {
    width: 100%;
    padding-top: 50%;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.ImageModal{
    position:fixed;
    z-index:1000;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    display:none;
}

.BackImageModal{
    width:inherit;
    height:inherit;
    background:rgba(0,0,0,0.5);
}
.FullImage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius:10px;
    width:600px;
    height:600px;
    max-width:95%;
    background-position:center;
    background-size:cover;
    background-color:white;
}

.CloseModal {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 25px;
    height: 25px;
    background: red;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    cursor: pointer;
    padding-top: 3px;
}
/*#endregion */

/*#region MobileMenu */
.mobile_menu {
    display: none;
}

.stick_bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 105;
}

.btnSection {
    background: #C30000;
    width: calc(100% - 70px);
    border-top-right-radius: 15px;
    height: 60px;
    float: left;
    transition: all 0.5s ease-in-out;
}

.btnItem {
    float: left;
    width: 31%;
    margin-left: 1.15%;
    margin-right: 1.15%;
    text-align: center;
}

.btnItem1 {
    padding-top: 16px;
    transition: all 0.5s ease-in-out;
}


.btnItem2, .btnItem3, .btnItem4 {
    padding-top: 15px;
}

.btnMenu {
    float: left;
    text-align: center;
    width: 70px;
}

    .btnMenu i {
        background: #C30000;
        border-radius: 10px;
        padding: 6px 9px 5px 9px;
        margin-top: 9px;
        cursor: pointer;
    }

.stick_menu {
    position: fixed;
    background: #C30000;
    height: 100%;
    width: 180px;
    z-index: 50;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    right: -180px;
    transition: all 0.5s ease-in-out;
}

.stick_menu_Userimg {
    width: 60px;
    height: 72px;
    background-position: center !important;
    background-size: cover !important;
    margin: 50px auto 20px auto;
}

.stick_menu span {
    color: white;
    text-align: center;
    display: block;
}

.stick_menu > a {
    background: white;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    color: #4A4A4A;
    text-decoration: none;
    display: block;
    width: 110px;
    margin: 8px auto;
    font-size: 14px;
    box-shadow: 6px 8px 15px 0 rgba(0, 0, 0, 0.15);
}

.stick_menu ul {
    list-style: none;
    margin-top: 35px;
}

    .stick_menu ul li {
        text-align: center;
        margin-bottom: 15px;
        margin-top: 15px;
    }

        .stick_menu ul li a {
            color: white !important;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            padding-top: 5px;
            padding-bottom: 5px;
            font-size: 17px;
        }

.stickWrapper {
    position: fixed;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    z-index: 49;
    display: none;
}

.CartItem {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid lightgray;
    display: flex;
}



.cartItemImg {
    width: 100px;
    height: 100px;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid lightgray;
    margin-left: 40px;
}

.cartItemDetails {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0px;
}

    .cartItemDetails h2 {
        font-size: 16px;
        font-weight: normal;
        color: rgb(29, 29, 29);
    }

    .cartItemDetails span {
        color: rgb(29, 29, 29);
    }

.FinalCartItem {
    width: 100%;
    border-radius: 10px;
    background: white;
    text-align: center;
    padding: 10px;
    border: 2px solid #C30000;
    color: rgb(29, 29, 29);
}

.checkoutCartItemsWrapper{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:10px;
}

.checkoutCartItems {
    flex-grow: 1;
    width: 32%;
    margin-bottom: 0px;
    min-width: 300px;
}

.NoPayment {
    text-align: center;
    margin-top: 20px;
}

.cartAction {
    position: relative;
    flex-grow: 1;
}

    .cartAction a {
        position: absolute;
        top: 52px;
        left: 20px;
        margin-right: -25px;
        margin-top: -25px;
        width: 45px;
        height: 45px;
        border: 2px solid #EF394E;
        border-radius: 100px;
        color: red;
        text-align: center;
        font-size: 21px;
        padding-top: 9px;
        cursor: pointer;
    }

.CouponCartItem .cartAction a{
    top:35px;
}

.CartActionWrapper .ActionLink {
    float: left;
    margin-left: 2%;
    margin-top: 20px;
}

.CartBilingAddress {
    width: 96%;
    margin-right: 2%;
    margin-top: 10px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid lightgray;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .CartBilingAddress .formGroup {
        margin-bottom: 10px;
    }

        .CartBilingAddress .formGroup input {
            margin-top: 0px;
        }

.massage {
    text-align: center;
    width: 300px;
    border-radius: 5px;
    padding: 10px;
    margin: 0px auto;
}

.errorMSG {
    background: #C30000;
    color: white;
}
/*#endregion */

/*#region Loading */
@keyframes ldio-c3e11cu2eq9 {
    0%, 100% {
        animation-timing-function: cubic-bezier(0.45,0,0.9,0.55)
    }

    0% {
        transform: translate(0,0)
    }

    50% {
        transform: translate(0,116px);
        animation-timing-function: cubic-bezier(0,0.45,0.55,0.9);
    }

    100% {
        transform: translate(0,0);
    }
}

.ldio-c3e11cu2eq9 div {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4A4A4A;
    left: calc(50% - 22px);
    top: calc(50% - 80px);
    animation: ldio-c3e11cu2eq9 1s linear infinite;
}

.loadingio-spinner-ball-rd8liqklqbg {
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
    background: #ffffff8f;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    border-radius: 20px;
}

.ldio-c3e11cu2eq9 {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
}

    .ldio-c3e11cu2eq9 div {
        box-sizing: content-box;
    }


/*#endregion */

/*#region Rules */

.LevelsArea {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    margin-left: 30px;
    margin-right: 30px;
}

.Level {
    width: 32%;
    border-radius: 20px;
    box-shadow: 0px 4px 28.2px -7px #CD7F32;
    padding: 50px 10px 10px 10px;
    position: relative;
    border: 1px solid #CD7F32;
}

    .Level span {
        background: #2fa82f;
        text-align: center;
        display: block;
        margin: 20px auto;
        width: 130px;
        color: white;
        border-radius: 5px;
        padding: 7px 0px;
    }

    .Level > span {
        position: absolute;
        width: 80%;
        margin: 0px auto;
        display: block;
        height: 50px;
        border-radius: 100px;
        padding: 10px 0px;
        color: white;
        background: #CD7F32;
        max-width: 180px;
        text-align: center;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 19px;
        font-weight: 500;
    }

    .Level p {
        width: 80%;
        display: block;
        border-bottom: 0.5px solid #E5E5E5;
        text-align: center;
        margin-right: 10%;
        padding-block: 20px;
        margin-bottom: 0px;
    }

    .Level a {
        background: #C30000;
        color: white !important;
        width: 120px;
        height: 32px;
        border-radius: 100px;
        text-align: center;
        padding: 5px 0px;
        display: block;
        margin: 30px auto 20px auto;
        cursor: pointer;
    }

.LevelSpecs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.Level.silver {
    border-color: #C0C0C0;
    box-shadow: 0px 4px 28.2px -7px #C0C0C0;
}

    .Level.silver > span {
        background: #C0C0C0;
    }

.Level.gold {
    border-color: #FFD700;
    box-shadow: 0px 4px 28.2px -7px #FFD700;
}

    .Level.gold > span {
        background: #FFD700;
    }

/*#endregion */

/*#region Rules */

.RulesContent {
    margin-left: 30px;
    margin-right: 30px;
    color: #515151;
    text-align:justify;
    line-height:34px;
    margin-top:50px;
}

.RulesContent h2{
    font-size:22px;
    margin-bottom:10px;
}

/*#endregion */




