@font-face {
    font-family: 'iransans';
    font-weight: 100;
    src: url('../../dist/fonts/sansx/static/IRANSansX-Thin.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 200;
    src: url('../../dist/fonts/sansx/static/IRANSansX-UltraLight.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 300;
    src: url('../../dist/fonts/sansx/static/IRANSansX-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 400;
    src: url('../../dist/fonts/sansx/static/IRANSansX-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 500;
    src: url('../../dist/fonts/sansx/static/IRANSansX-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 600;
    src: url('../../dist/fonts/sansx/static/IRANSansX-DemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 700;
    src: url('../../dist/fonts/sansx/static/IRANSansX-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 800;
    src: url('../../dist/fonts/sansx/static/IRANSansX-ExtraBold.woff2') format('woff2');
}
@font-face {
    font-family: 'iransans';
    font-weight: 900;
    src: url('../../dist/fonts/sansx/static/IRANSansX-Black.woff2') format('woff2');
}


@font-face {
    font-family: 'iransansxv';
    src: url('../../dist/fonts/sansx/IRANSansXV.woff') format('woff-variations'),
    url('../../dist/fonts/sansx/IRANSansXV.woff') format('woff');
    font-weight: 100 900;
    font-display: fallback;
}
/*---------------------------------- End of fonts ---------------------------------- */

body {
    font-family: 'iransans' !important;
    min-height: 100vh;
    margin: 0px!important;
    background: #fefefe;
}

@supports (font-variation-settings: normal) {
    body {
        font-family: 'iransansxv' !important;
    }
}

*{
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6{
    margin-bottom: unset;
    margin-top: unset;
}

h1{
    font-size: 21px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 17px;
}

h6 {
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
background-color: #f3f3f3;
border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: #cdcdcd; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1; 
}

.ltr{
    direction: ltr;
}

.nowrap{
    white-space: nowrap;
}

.fontfa{
    font-feature-settings: "ss02";
}

.switch3 {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-left: 5px;
    margin-bottom: 0px;
    margin-right: 5px;
}

/* Hide default HTML checkbox */
.switch3 input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */
.slider3 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f6f6f6;
    border: 1px solid #9dadbc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider3:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 3px;
    background-color: #bcbfc3;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider3:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
    background-color: #2c9e58;
}

input:checked+.slider3 {
    background-color: #87e1b424;
    border: 1px solid #7eab8acc;
}

/* Rounded sliders */
.slider3.round {
    border-radius: 34px;
}

.slider3.round:before {
    border-radius: 50%;
}


button{
    font-family: 'iransansxv';
}

html {
    scroll-behavior: smooth;
    background: #ffff;
    min-height: 100vh;
}

a{
    text-decoration: none;
}

a.pointer{
    cursor: pointer;
}

input {
    font-family: 'iransans';
}

::placeholder {
    color: #7a7a7a87;
    opacity: 1;
}

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

.wrapper{
    display: flex;
    flex-direction: column;
}

.opc70{
    opacity: 70%;
}

.header-mother-wrapper{
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    flex-direction: column;
    align-items: center;
    border-bottom: 1.5px solid #7a7a7a30;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0px 2px 4px #00000007;
}

.main-header-container{
    width: 100%;
    max-width: 1676px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px;
}
@media (max-width: 768px) {
    .main-header-container{
        padding: 12px 2px 12px;
    }
}

@media (max-width: 480px) {
    .mh-logo{
        width: 100px!important;
    }
    .mh-added-btn .mh-added-btn-text{
        display:none!important;
    }
}

.mh-sec1{
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 768px) {
    .mh-sec1{
        gap: 5px;
    }
}

.mh-logo-a-tag{
    display: flex;
    align-items: center;
}
.mh-sec2{
    display: flex;
    align-items: center;
    gap: 5px;
    padding-inline-end: 4px;
}
@media (max-width: 768px) {
    .mh-sec2{
        gap: 3px;
    }
}

.mh-search-box{
    display: flex;
    align-items: center;
    gap: 5px;
    height: 35px;
    width: 300px;
    border-radius: 5px;
    background: #b1babe2b;
    padding: 0px 10px 0px 0px;
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .mh-search-box{
        width: 210px;
    }
}

@media (max-width: 768px) {
    .mh-search-box{
        width: 185px;
    }
}

@media (max-width: 912px) {
    .mh-search-box{
        display: none;
    }
}
.search-ic-mobile{
    display: none;
}
@media (max-width: 912px) {
    .search-ic-mobile{
        display: block;
    }
}

.mh-search-box i{
    color: #3d3e40c4;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.mh-search-box i:hover{
    background: #00000014;
}

.mh-search-input{
    height: 100%;
    width: 100%;
    border: none;
    background: #fff0;
    padding: 0px 5px;
}

.mh-search-input:focus,.mh-search-input:active{
    outline: none;
}

.mobile-sidebar-ic{
    display: none;
    padding: 5px 10px;
}
@media (max-width: 768px) {
    .mobile-sidebar-ic{
        display: block;
    }
}

.mobile-sidebar-ic i{
    font-size: 25px;
    vertical-align: middle;
}

.megamenu-container{
    display: block;
    width: 100%;
}
@media (max-width: 768px) {
    .megamenu-container{
        display: none;
    }
}

.megamenu-inside{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1676px;
    padding: 0 12px;
    margin: auto;
}

.mm-sec1{
    display: flex;
    align-items: center;
    gap: 2px;
}

.mm-sec2{
    display: flex;
    align-items: center;
    padding-inline-end: 5px;
}

.mm-root-item-button{
    height: 36px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    padding: 0 12px;
    border-radius: 5px;
    border: 1px solid #fff0;
    color: #252525;
    cursor: pointer;
    background-color: unset;
    transition: all 0.15s ease-in-out;
}

.mm-root-item-button>i{ 
    font-size: 18px;
}

.mm-root-item-button:hover{
    background-color: #6f6f6f0d;
}

.mh-primary-icon{
    font-size: 26px;
    padding: 5px 10px;
    display: flex;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    align-items: center;
}
@media (max-width: 768px) {
    .mh-primary-icon{
        font-size: 24px;
        padding: 5px 7px;
    }
}

.cart-float-wrapper{
    position: relative;
}

.cart-float-bubble{
    font-feature-settings: "ss02";
    position: absolute;
    font-size: 11px;
    top: 0;
    right: 5px;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: #c61616;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-primary-icon:hover{
    background-color: #a9a9a914;
}

.mh-account-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 5px;
    border: 1.5px solid #3031332e;
    color: #000000bd;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}
.mh-account-btn:hover{
    background: #8e8e8e12;
}

.mh-account-btn .mh-account-ic{
    font-size: 18px;
}
@media (max-width: 768px) {
    .mh-account-btn .mh-account-ic{
        font-size: 20px;
    }
    .mh-account-btn .mh-account-text{
        display: none;
    }
}

.mh-added-btn,
.mm-added-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}
.mh-added-btn .mh-added-btn-ic,
.mm-added-btn .mm-added-btn-ic{
    font-size: 18px;
}
.mh-added-btn:hover,
.mm-added-btn:hover{
    filter: saturate(0.75);
}

.whp-item-root{
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.whp-item-wrapper{
    width: 100%;
    max-width: 1376px;
    overflow: hidden;
    border-radius: 8px;
}

.whp-img{
    display: block;
}

.whp-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.whp-grid-item-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.whp-grid-item{
    height: 100%;
    border-radius: 5px;
    display: block;
}

.whp-grid-container{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
}

.whp-grid-container::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.whp-grid-wrapper::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.whp-grid-wrapper{
    display: flex;
}

.whp-grid-inner-center{
    margin: 0 auto;
    min-width: max-content;
}
/* .whp-grid-center{
    justify-content: center;
} */

.whp-grid-inner-left{
    flex-wrap: nowrap;
    min-width: max-content;
    justify-content: left;
}
.whp-grid-left{
    display: block;
    overflow-x: auto;
    width: 100%;
}

.whp-grid-inner-right{
    min-width: max-content;
}
.whp-grid-right{
    width: 100%;
    justify-content: right;
}

.whp-grid-inner-start{
    min-width: max-content;
}
.whp-grid-start{
    width: 100%;
    justify-content: flex-start;
}

.whp-grid-inner-end{
    flex-wrap: nowrap;
    min-width: max-content;
    justify-content: flex-end;
}
.whp-grid-end{
    display: block;
    overflow-x: auto;
    width: 100%;
}

/* grid scroll */
.whp-grid-theme0{
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 5px;
}

/* grid next line */
.whp-grid-theme1{
    flex-wrap: wrap;
    min-width: unset;
}

.swiper-whp .swiper-slide img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.swiper-whp{
    position: relative;
}

.swiper-whp .swiper-pagination{
    left: 0;
    right: 0;
    bottom: 8px;
    width: 100%;
}


.swiper-whp .swiper-prev-next-wrapper{
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    gap: 10px;
}

.swiper-whp:hover .swiper-prev-next-wrapper{
    display: flex;
}

.swiper-whp .swiper-button-prev,
.swiper-whp .swiper-button-next{
    position: unset;
    color: #000;
    width: 40px;
    height: 40px;
    background: #ffffffcf;
    border-radius: 50%;
}

.swiper-whp .swiper-pagination-bullet-active{
    background-color: #fff;
}

.swiper-whp .swiper-button-prev:after, .swiper-whp .swiper-button-next:after {
    font-size: 18px;
}

.swiper-whp .swiper-slide > a {
    display: block;
    height: 100%;
    width: 100%;
}

.swsl-text{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 15px;
    text-align: right;
}

.content-mother-wrapper{
    min-height: 80vh;
    padding-top: 100px;
}
    
@media (max-width: 768px) {
    .content-mother-wrapper{
        padding-top: 65px; 
    }
}

.whp-text{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
}

.whp-notif-box{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 5px;
}

.whp-notif-box>i{
    font-size: 20px;
}

.whp-img-dual{
    display: flex;
    flex-wrap: nowrap;
}

.whp-img-dual .hppidi1,.whp-img-dual .hppidi2{
    display: block;
}

.whp-img-dual .hppidi1 img, .whp-img-dual .hppidi2 img{
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.whp-text-button{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whp-ictxt{
    display: flex;
    align-items: center;
    gap: 10px;
}

.whp-btn{
    display: block;
    color: #fff;
    padding: 5px 14px;
    border-radius: 5px;
    cursor: pointer;
}

.whp-ictxt i{
    font-size: 19px;
}

.whp-img-quad{
    display: flex;
    flex-wrap: nowrap;
}

.whpiqi{
    flex: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
@media (max-width: 768px) {
    .whp-img-quad {
        flex-wrap: wrap;
    }
    .whpiqi{
        flex: 45%;
    }
}

.whpiqi>img{
    border-radius: 5px;
    width: 100%;
    display: block;
    object-fit: cover;
}

.wfi-container{
    padding: 16px 0px;
}

.wf-root{
    display: flex;
    justify-content: center;
}

.wf-items-root{
    width: 100%;
    max-width: 1676px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0px 10px;
}

.wfi-subitems-container{
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    line-height: 23px;
    flex-wrap: wrap;
}

.wfi-subitem-wrapper,
.wfi-subitem-wrapper-nolink{
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.15s ease-in-out;
}

.wfi-subitem-wrapper:hover{
    background-color: #81818112;
}

.wfi-subitem-wrapper i,
.wfi-subitem-wrapper-nolink i{
    font-size: 19px;
}

.wfi-title-container{
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    margin-bottom: 12px;
    padding: 0px 10px;
}

.wfi-title-container i{
    font-size: 21px;
}

.col-count1{
    width: 100%;
}
.col-count2{
    width: 50%;
}
.col-count4{
    width: 25%;
}
.col-count6{
    width: 16.666666666%;
}
@media (max-width: 768px) {
    .col-count1{
        width: 100%;
    }
    .col-count2{
        width: 100%;
    }
    .col-count4{
        width: 50%;
    }
    .col-count6{
        width: 25%;
    }
}
@media (max-width: 520px) {
    .col-count1{
        width: 100%;
    }
    .col-count2{
        width: 100%;
    }
    .col-count4{
        width: 100%;
    }
    .col-count6{
        width: 50%;
    }
}

.not-found-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10px;
    flex-direction: column;
    gap: 10px;
}

.nfp-header{
    font-size: 75px;
    font-weight: 700;
}

.mm-mother-wrapper{
    display: none;
    position: fixed;
    top: 95px;
    right: 0;
}

.mm-mother-float{
    right: auto;
    left: auto;
}

.mm-main-wrapper{
    display: flex;
    background: #fff;
    padding: 15px 15px 15px 30px;
    gap: 5px;
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 5px 2px #69696952, 0px 199999px 0px 200000px #0000005e;
}

.mm-mother-float .mm-main-wrapper{
    margin-left: 0px;
    margin-right: 0px;
    box-shadow: 0px 4px 5px 2px #69696952, 0px 299998px 0px 300000px #0000002e;
}

.mm-root-item:hover .mm-mother-wrapper{
    display: block;
}

.mm-root-item:hover .mm-root-item-button{
    background-color: #6f6f6f0d;
}

.mm-root-item:hover #shadow-view{
    display: block;
}

.mm-sub1-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 2px 4px;
}

.mm-sub1-item{
    display: flex;
    gap: 6px;
    align-items: center;
    color: #252525;
    min-width: 150px;
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: default;
}

.mm-sub1-item>i{
    font-size: 18px;
}

.mm-section-box{
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.mm-section-box:has(.zero-sub3-items){
    flex-direction: column;
    max-height: 500px;
}

.mm-other-subs-wrapper{
    flex: 1;
}

.mm-final-section-box{
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 2px;
}

.mm-sub2-item{
    display: flex;
    gap: 6px;
    align-items: center;
    color: #252525;
    padding: 3px 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: default;
}

.mm-sub3-item{
    display: flex;
    gap: 6px;
    align-items: center;
    color: #252525;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: default;
}

.mm-sub2-item>i,
.mm-sub3-item>i{
    font-size: 18px;
}

.mm-subs-divider{
    width: 1.5px;
    height: auto;
    display: block;
    background: #7a7a7a1a;
}

.mobile-sidebar{
    display: none;
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.mobile-sidebar.visible .ms-shadow{
    opacity: 1;
}

.mobile-sidebar.visible .ms-wrapper{
    right: 0;
}

.ms-shadow{
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.25s ease-in-out;
    background: #777b7e45;
}

.ms-wrapper{
    width: 80%;
    right: -80%;
    display: block;
    padding: 10px;
    overflow: auto;
    overscroll-behavior: contain;
    position: absolute;
    background-color: #fff;
    transition: all 0.25s ease-in-out;
    z-index: 3;
    height: 100%;
}

.ms-root-item{
    padding: 10px;
}

.ms-title-btn{
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 6px 5px;
    justify-content: space-between;
}

.ms-title{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2e2e2e;
    padding: 6px 4px;
    flex: 1;
    border-radius: 5px;
}

.ms-title:hover{
    background-color: #7b7b7b0f;
}

.ms-title>i{
    font-size: 18px;
}

.ms-sub1-items-wrapper{
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #72727240;
    background: #7c7c7c05;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ms-sub2-expand-ic,
.ms-sub3-expand-ic{
    padding: 4px 10px;
    border-radius: 5px;
    background: #7b7b7b14;
}

.ms-sub1-btn{
    font-weight: 500;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.ms-sub2-btn{
    font-size: 15px;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.ms-sub3-btn{
    font-size: 14px;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.ms-sub2-items-wrapper{
    display: none;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #72727240;
    background: #7c7c7c05;
    flex-direction: column;
    gap: 2px;
    transition: all 0.5s ease-in-out;
}

.ms-sub3-items-wrapper{
    display: none;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #72727240;
    background: #7c7c7c05;
    flex-direction: column;
    gap: 2px;
    transition: all 0.5s ease-in-out;
}

.mss-visible{
    display: flex;
}

@media (max-width: 768px) {
    .large_screen{
        display: none;
    }
}
@media (min-width: 768px) {
    .small_screen{
        display: none;
    }
}


.ms-sub1-items-wrapper:has(.zero-sub1-items){
    display: none;
}

.ms-sub1-item:has(.zero-sub2-items) .ms-sub2-expand-ic{
    display: none;
}

.ms-sub2-item:has(.zero-sub3-items) .ms-sub3-expand-ic{
    display: none;
}

.lpi-post-wrapper{
    padding: 10px;
    border-radius: 5px;
    height: 100%;
    border: 1px solid #7878782b;
}

.lpi-post-wrapper .lpi-img{
    width: 100%;
    border-radius: 5px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.lpi-title{
    font-size: 14px;
    color: #252627;
}

.lpi-desc{
    font-size: 12px;
    color: #4a4d509c;
}

.lpi-top-wrapper{
    position: relative;
    margin-bottom: 10px;
}

.p-label-wrapper{
    position: absolute;
    top: 8px;
    left: 8px;
}

.subscribe-tag{
    padding: 4px 5px;
    display: flex;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.swiper-line-posts .swiper-wrapper{
    align-items: stretch;
}

.swiper-line-posts .swiper-wrapper .swiper-slide{
    height: auto;
}

.normal-line-posts .swiper-wrapper{
    flex-direction: column;
    gap: 12px;
}

.normal-line-posts .swiper-wrapper .lpi-post-wrapper{
    display: flex;
    gap: 15px;
}

.lpi-bottom-wrapper{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
}

.normal-line-posts .swiper-wrapper .lpi-bottom-wrapper{
    flex: 1;
    justify-content: center;
}

.price-wrapper{
    font-feature-settings: "ss02";
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.pmd-main-section .price-wrapper{
    font-size: 19px;
    flex-direction: column-reverse;
    padding: 10px 0px;
}

.price-wrapper .price-old{
    display: flex;
    color: #b9211ed4;
    font-size: 13px;
    justify-content: flex-end;
}

.pmd-main-section .price-wrapper .price-old{
    font-size: 16px;
    justify-content: flex-start;
    color: #5858587d;
}

.price-wrapper .price-final{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000000;
    font-weight: 600;
    justify-content: flex-end;
}

.pmd-main-section .price-wrapper .price-final{
    justify-content: flex-start;
}

.price-wrapper .price-discount-box{
    font-size: 12px;
    color: #fff;
    background: #e20707;
    border-radius: 5px;
    padding: 1px 3px 0px;
    font-weight: 800;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
}

.pmd-main-section .price-wrapper .price-discount-box{
    font-size: 14px;
    padding: 2px 5px 0px;
}

.price-wrapper .price-final > .currency-ic{
    font-size: 8px;
    font-weight: 450;
}

.pmd-main-section .price-wrapper .price-final > .currency-ic{
    font-size: 12px;
}

.lpfiai-wrapper{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.lpfiai-img{
    width: 100%;
}

.lpi-final-data .amazing-discount-wrapper{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lpi-final-data .currency_svg{
    width: 13px;
    height: 13px;
}

.pmd-main-section .amazing-discount-wrapper{
    display: inline-flex;
    flex-direction: row;
    gap: 4px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    background: #f6f0f0;
}

@media (max-width: 768px) {
    .pmd-main-section .amazing-discount-wrapper{
        display: flex;
        justify-content: space-between;
    }
}

.ad-label-wrapper{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #d50e0e;
}

.pmd-main-section .ad-label-wrapper{
    font-size: 16px;
}

.ad-label-wrapper > i{
    line-height: 18px;
    font-size: 18px;
}

.pmd-main-section .ad-label-wrapper > i{
    line-height: 20px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .pmd-main-section .ad-label-wrapper{
        font-size: 14px;
    }
    .pmd-main-section .ad-label-wrapper > i{
        line-height: 17px;
        font-size: 17px;
    }
}

.ad-timer-wrapper{
    display: flex;
    font-feature-settings: "ss02";
    letter-spacing: 0.5px;
    font-size: 16px;
    color: #d50e0e;
    align-items: center;
    justify-content: flex-start;
    direction: ltr;
}

.pmd-main-section .ad-timer-wrapper{
    font-size: 17px;
    min-width: 160px;
}

@media (max-width: 768px) {
    .pmd-main-section .ad-timer-wrapper{
        font-size: 15px;
        min-width: unset;
    }
}

.web-page-root{
    display: flex;
    justify-content: center;
}

.web-page-wrapper{
    width: 100%;
    max-width: 1676px;
    overflow: hidden;
    padding: 15px;
}

.wp-breadcrumb{
    padding: 1px 10px 15px;
    border-radius: 5px;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    margin-bottom: 12px;
    color: #2a2a2a9c;
}

.product-main-data-wrapper{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #63636329;
}

@media (max-width: 768px) {
    .product-main-data-wrapper{
        flex-direction: column;
    }
}

.pmd-gallery-section .pmd-main-img{
    width: 360px;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pmd-gallery-section .pmd-main-img{
        width: 100%;
        border-radius: 5px;
    }
}

.pmd-gallery-section{
    display: flex;
    padding: 10px 18px;
    flex-direction: column;
}

.pmd-main-section{
    padding: 10px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid #7e7e7e29;
    border-left: 1px solid #7e7e7e29;
}

.pmd-info-section{
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    min-width: 170px;
    color: #4a4a4ad9;
}

@media (max-width: 768px) {
    .pmd-main-section{
        padding: 10px 0px;
        border: 0;
    }
    .pmd-gallery-section{
        padding: 10px 0px;
        justify-content: center;
    }
    .pmd-info-section{
        padding: 10px 0px;
    }
}

.pmd-main-section .product-title{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
}

.pmd-main-section .product-summary{
    font-size: 14px;
    font-weight: 400;
    color: #24242461;
}

.pmd-info-section .pis-item{
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
}

.pmd-info-section .pis-item-sb{
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 9px;
    gap: 15px;
}

.pis-item-sb .pc-link > a{
    color: #436293;
}

.product-share-btn{
    border-radius: 5px;
    cursor: pointer;
}

.product-share-btn:hover{
    background: #7f7f7f14;
}

.product-fav-btn{
    border-radius: 5px;
    cursor: pointer;
}

.product-fav-btn:hover{
    background: #7f7f7f14;
}

.pmd-info-section .pis-item > i{
    font-size: 15px;
}

.pmd-add-to-cart-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 60px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    background-color: #22b773;
    border: 0px;
    transition: all 0.15s ease-in-out;
}

.pmd-add-to-cart-btn:hover{
    filter: saturate(0.75);
}

.pmd-add-to-cart-btn > i {
    font-size: 20px;
}

.product-trust-ics-wrapper{
    padding: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-bottom: 1px solid #63636329;
}

.product-trust-ics-wrapper .pti-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    gap: 8px;
    font-size: 14px;
}

.product-trust-ics-wrapper .pti-item > i{
    font-size: 30px;
}

.pfc-headings-wrapper{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 1px;
}

.product-full-content-wrapper{
    padding: 20px;
}

.pfc-headings-wrapper .pfc-head-item{
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
}

.pfc-item-active{
    background: #eee;
    font-weight: 600;
}

.pfc-content-item{
    padding: 15px 0px;
    border-top: 1px solid #7f7f7f30;
}

.strikethrough {
    position: relative;
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    opacity: 0.7;
    border-top: 1px solid;
    border-color: inherit;
    -webkit-transform:rotate(-4deg);
    transform:rotate(-4deg);
}

.pgs-other-images{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px;
    justify-content: center;
}

.pgs-other-images .pgs-other-img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #0003;
    cursor: pointer;
}

.breadcrumb-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    color: #808080b0;
}

.breadcrumb-wrapper > a{
    color: #696969b0;
}

.breadcrumb-wrapper > a:hover{
    color: #3f3f3fd7;
}

.pfc-spec-table{
    font-size: 13px;
    border: 1px solid #5e5e5e0f;
    width: 100%;
}

.pfc-spec-table td{
    padding: 7px 18px;
}

.pfc-spec-table tr:nth-child(even) {
    background-color: #cdd4d54a;
}
.pfc-spec-table tr:nth-child(odd) {
    background-color: #7f7f7f08;
}

.pfc-spec-table td.spec-title{
    font-weight: 500;
}

.related-products-wrapper{
    padding: 25px 15px;
}

.related-products-wrapper .rp-title{
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.comments-wrapper{
    padding: 20px;
    display: flex;
    justify-content: center;
}

.guarantee-root-container{
    padding: 5px 0;
}

.guarantee-wrapper{
    display: inline-flex;
    padding: 12px 12px;
    border-radius: 5px;
    background: #f4f6f6;
    flex-direction: column;
}

.pgitem{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding-bottom: 7px;
    border-bottom: 1px solid #8b8b8b1f;
    margin-bottom: 7px;
}

.pgitem:last-child{
    padding-bottom: 0px;
    border-bottom: unset;
    margin-bottom: 0px;
}

.pgitem > i{
    font-size: 16px;
}

.vi-item .color-circle{
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #83838326;
}

.var-head-wrapper{
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
}

.var-head-wrapper > i {
    font-size: 17px;
}

.var-head-wrapper .vh-title{
    font-weight: 600;
}

.var-items-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.vi-item{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1.5px solid #7070702b;
    cursor: pointer;
}

.vi-item:hover{
    background-color: #e1e1e169;
}

.variables-root{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vi-active{
    border: 1.5px solid #4192e9;
    background: #e8f3f678;
}

.out-of-stock-wrapper{
    display:flex;
    padding-top: 15px;
}

.out-of-stock-box{
    display: flex;
    padding: 8px 50px;
    border-radius: 5px;
    background: #eef0f2;
    font-size: 17px;
    font-weight: 600;
    color: #242527b0;
}

.lp-out-of-stock{
    color: #2f2c2cc9;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    background: #f1f1f1;
    display: inline-flex;
}

.category-title-wrapper{
    padding: 2px 15px 12px;
    border-bottom: 1px solid #eee;
}

.sub-categories-wrapper{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.sub-cat-item-wrapper{
    border-radius: 5px;
    border: 1px solid #3030302b;
    display: flex;
    flex-direction: row;
    gap: 0px;
    align-items: center;
}

.sci-title{
    color: #000;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

.sci-image{
    padding: 10px;
    display: flex;
}

.sci-image > img{
    border-radius: 5px;
    width: 60px;
}

.sort-items-wrapper{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5px;
    font-size: 13px;
    padding: 10px 15px;
    align-items: center;
}

.sort-items-wrapper .smi-head{
    font-weight: 600;
}

.sort-items-wrapper .srt-mtd-item{
    padding: 4px 6px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #e0e0e08c;
}

.sort-items-wrapper .srt-mtd-active{
    background-color: #e5f1f3b0;
    border: 1px solid #50a2e0ab;
    font-weight: 600;
}

.post-list-warpper{
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
}

.plw-grid{
    flex-direction: row;
}

.plw-list{
    flex-direction: column;
}

.plw-list .pl-item-conitaner{
    flex-direction: row;
    gap: 12px;
}

.plw-list .pl-item-wrapper{
    width: 100%;
}

.plw-list .pl-img{
    width: 100%;
}

.plw-list .pl-top-wrapper > a{
    width: 120px;
    display: block;
}

.pl-item-wrapper{
    width: 25%;
    padding: 5px;
}

@media (max-width: 768px) {
    .pl-item-wrapper{
        width: 50%;
    }
}

.pl-item-conitaner{
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 5px;
    border: 1px solid #76767630;
    overflow: hidden;
    height: 100%;
    padding: 10px;
}

.pl-top-wrapper{
    position: relative;
}

.pl-img{
    width: 100%;
    display: block;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.pl-bottom-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pl-title{
    color: #373434;
    font-size: 15px;
}

.pl-desc{
    color: #373434b3;
    font-size: 13px;
}

.sort-method-warpper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.availability-switch-wrapper{
    font-size: 14px;
    font-weight: 400;
}

.cat-list-tools-wrapper{
    display: flex;
    padding: 10px;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pagination-data-wrapper{
    font-size: 14px;
    font-feature-settings: "ss02";
    display: flex;
    gap: 5px;
}

.pgd-page,.pgd-range{
    border-radius: 5px;
    border: 1px solid #7979793d;
    padding: 3px 6px;
    display: inline-flex;
}

.pagination-page-items-wrapper{
    font-feature-settings: "ss02";
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    gap: 5px;
}

.pagination-page-items-wrapper .ppi-page-link{
    padding: 5px 0px;
    min-width: 32px;
    color: #212121;
    border-radius: 5px;
    border: 1px solid #66666657;
    background-color: #edf0f133;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-page-items-wrapper .ppi-active .ppi-page-link{
    border: 1px solid #1b77dd;
    color: #fff;
    background-color: #1b77dd;
}

.ppi-page-dots{
    padding: 1px 5px;
    font-size: 20px;
    color: #413e3e6b;
}

.category-posts-list-empty-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 10px;
    color: #6c727778;
    font-size: 18px;
}

.category-posts-list-empty-wrapper>i{
    font-size: 50px;
    color: #70767a42;
}

.login-page-root{
    display: flex;
    justify-content: center;
    padding-top: 85px;
    padding-bottom: 50px;
}
@media (max-width: 768px) {
    .login-page-root{
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.login-box{
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    border-radius: 15px;
    border: 1.5px solid #80828526;
    gap: 8px;
    align-items: center;
}
@media (max-width: 768px) {
    .login-box{
        padding: 30px 20px;
        border: unset;
        width: 100%;
    }
}

.login-head-image{
    max-height: 90px;
    object-fit: contain;
    max-width: 160px;
    padding: 5px;
    display: block;
}

.login-inner-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 330px;
    max-width: 380px;
}
@media (max-width: 768px) {
    .login-inner-wrapper{
        width: 100%;
        min-width: 200px;
        max-width: unset;
    }
}

.majoris-input-warpper{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.majoris-input-warpper .input-label{
    font-size: 12px;
}

.majoris-input-warpper .majoris-input{
    padding: 0px 10px;
    background: #fff;
    border-radius: 5px;
    border: 1.5px solid #7c808245;
    font-size: 17px;
    text-align: center;
    height: 42px;
}

.majoris-input:focus,.majoris-input:active{
    outline: none;
    border: 1.5px solid #a4b6c5!important;
}

.majoris-input:disabled{
    background-color: #e3e8e854;
}

.majoris-button{
    border: 0px;
    border-radius: 5px;
    color: #fff;
    background-color: #179297;
    font-size: 16px;
    font-weight: 500;
    height: 45px;
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.majoris-button:hover{
    filter: saturate(0.75);
}

.login-bottom-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0px 8px;
    gap: 15px;
}

.majoris-secondary-button{
    display: inline-block;
    padding: 4px 18px;
    font-size: 13px;
    border-radius: 5px;
    font-weight: 600;
    border: 1.5px solid #74787a17;
    background-color: #d4e0e124;
    color: #212223;
    cursor: pointer;
}

.majoris-secondary-button:hover{
    border: 1.5px solid #53666f52;
}

.login-switch-container > span{
    font-size: 12px;
}

.login-button-wrapper{
    padding-top: 10px;
}

button .majoris-loading{
    display: none;
    height: 26px;
    width: 26px;
    margin: auto;
}

.xtm-error{
    text-align: center;
    padding: 30px 0px;
    font-size: 18px;
    color: #b30909;
}

.login-text-data{
    margin: unset;
    font-size: 14px;
}

.phone-number-box{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1px;
}

.otp-resend-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.otp-timer-wrapper{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.otp-timer{
    font-feature-settings: "ss02";
}

.otp-send-notif{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 5px;
    background: #d8efe1;
    color: #065917;
}

.otp-send-notif > i{
    font-size: 21px;
}

.password-input-wrapper{
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper > input{
    width: 100%;
}

.password-input-wrapper > i.password-reveal-ic{
    position: absolute;
    left: 8px;
    right: auto;
    font-size: 18px;
    color: #3a3a3ca6;
    padding: 3px;
    cursor: pointer;
}

.rules-cb-warpper{
    display: flex;
    align-items: center;
    padding-top: 15px;
    font-size: 12px;
    justify-content: center;
}

.rules-cb-warpper a{
    text-decoration: underline;
    cursor: pointer;
}

.account-title-wrapper{
    padding: 2px 15px 12px;
    border-bottom: 1px solid #eee;
}

.account-content-wrapper{
    display: flex;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
@media (max-width: 768px) {
    .account-content-wrapper{
        padding-top: 0px;
        gap: 18px;
    }
}

.account-top-bar-wrapper{
    min-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 38px 10px;
}
@media (max-width: 768px) {
    .account-top-bar-wrapper{
        min-width: 250px;
        width: 100%;
    }
}

.account-head-data{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.account-head-data .acp-head-ic{
    font-size: 40px;
}

.account-head-data .acp-showname{
    font-size: 20px;
    font-weight: 600;
}

.account-items-wrapper{
    min-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 2.5px solid #6b6c7026;
}
@media (max-width: 768px) {
    .account-items-wrapper{
        min-width: 250px;
        width: 100%;
    }
}

.account-item-container{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 0px 18px;
    border-bottom: 1px solid #7c7c811f;
    cursor: pointer;
}
.account-item-container:last-child{
    border-bottom: unset;
}
.account-item-container:hover{
    background: #85878a0a;
}

.aci-title-wrapper{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0px;
    color: #1f1f20;
}

.aci-arrow-wrapper{
    padding: 15px 0px;
    color: #676a6c75;
    display: flex;
    align-items: center;
}

.aci-title-wrapper > i {
    font-size: 22px;
}
.aci-title-wrapper .aci-title{
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .aci-title-wrapper > i {
        font-size: 20px;
    }
    .aci-title-wrapper .aci-title{
        font-size: 13px;
    }
}

.wallet-info-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
}

.wlti-head-data{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.wlti-head-data > i{
    font-size: 16px;
}

.wlti-balance-data{
    font-feature-settings: "ss02";
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.wlti-currency-ic .currency_svg{
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.bubble-data-wrapper{
    font-feature-settings: "ss02";
    border-radius: 15px;
    padding: 2px 10px;
    font-size: 12px;
}


.cart-sidebar{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

.cart-sidebar.visible .cs-shadow{
    opacity: 1;
}

.cart-sidebar.visible .cs-wrapper{
    left: 0;
}

.cs-shadow{
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.25s ease-in-out;
    background: #777b7e45;
}

.cs-wrapper{
    width: 400px;
    left: -400px;
    display: block;
    overflow: auto;
    overscroll-behavior: contain;
    position: absolute;
    background-color: #fff;
    transition: all 0.25s ease-in-out;
    z-index: 3;
    height: 100%;
}
@media (max-width: 768px) {
    .cs-wrapper{
        width: 85%;
        left: -85%;
    }
}

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

.cs-bottom-wrapper{
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #eee;
}

.csd-head{
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.cs-action-data{
    flex: 1;
}

.cs-total-data{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
}

.cstd-action-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    color: #fff;
    background-color: #225eb7;
    border: 0px;
    justify-content: center;
    transition: all 0.15s ease-in-out;
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}
.cstd-action-btn.cstd-active{
    pointer-events: unset;
    cursor: pointer;
    opacity: 1;
}

.cstd-price{
    font-feature-settings: "ss02";
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
}

.cstd-price .price-amount-box{
    font-weight: 600;
}

.cstd-price .currency-ic{
    font-size: 11px;
    font-weight: 500;
}

.cs-close-btn{
    display: flex;
    align-items: center;
    padding: 5px;
    color: #86898cb0;
    cursor: pointer;
    border-radius: 50%;
}
.cs-close-btn:hover{
    background: #84858712;
}

.cs-data-wrapper{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.csd-data-parent{
    flex: 1 0 0;
    max-width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-float-data{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.cart-float-empty{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-float-empty > i {
    font-size: 35px;
    color: #84878ac4;
}

.csd-login-box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.csd-login-box > i {
    font-size: 35px;
    color: #84878ac4;
}

.csd-login-btn{
    background: #0c8cde;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.csd-login-btn:hover{
    background: #007bc9;
}

.csh-title{
    font-weight: 600;
    font-size: 16px;
}

.cstd-text{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
}

.cart-float-loading{
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff85;
    z-index: 102;
}

.cart-float-list{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cfl-wrap{
    height: 35px;
    width: 35px;
}

.cidw-img{
    width: 85px;
    height: 85px;
    object-fit: cover;
}

.cart-item-wrapper{
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #81838547;
    gap: 8px;
}

.cart-item-data-wrapper{
    display: flex;
    gap: 8px;
}

.cidw-title{
    font-weight: 500;
    font-size: 15px;
}

.cidw-vars-detail-wrapper{
    font-size: 13px;
    color: #6a6c6ee3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.cart-item-action-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ciaw-quantity-container{
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 4px;
    border-radius: 5px;
    border: 1px solid #888a8d54;
}

.cqc-q-minus,.cqc-q-plus{
    font-size: 15px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.cqc-q-minus:hover,.cqc-q-plus:hover{
    background-color: #eee;
}

.cqc-q{
    font-feature-settings: "ss02";
    font-size: 14px;
    min-width: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 4px 6px;
    cursor: pointer;
}

.cqc-q:hover{
    background-color: #eee;
}

.cqc-custom-box{
    display: flex;
    direction: ltr;
    align-items: center;
    gap: 4px;
    padding: 4px;
}

.cqc-c-input{
    height: 30px;
    width: 65px;
    padding: 1px 6px;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #06060687;
    font-feature-settings: "ss02";
}

.cqc-c-submit{
    height: 29px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #225eb7;
    color: #fff;
    cursor: pointer;
}

.cqc-c-input:active,.cqc-c-input:focus{
    outline: none;
    border: 1px solid #0072c4c4;
}

.ciaw-price-container{
    font-feature-settings: "ss02";
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cpc-dis-price{
    font-size: 13px;
    color: #d30808;
}

.cpc-currency{
    font-size: 11px;
    font-weight: 500;
}

.cidw-type{
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 5px;
    background: #8285880d;
    border: 1px solid #8081841f;
}

.cidw-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cidw-var-detail{
    display: flex;
    align-items: center;
    gap: 5px;
}

.var-map-warpper{
    display: flex;
    align-items: center;
    gap: 4px;
}

.var-map-warpper .vm-var-ic{
    font-size: 16px;
}

.var-map-warpper .vm-var-title{
    font-size: 13px;
    font-weight: 500;
}


.cart-title-wrapper{
    padding: 2px 15px 12px;
    border-bottom: 1px solid #eee;
}

.cart-content-wrapper{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
@media (max-width: 768px) {
    .cart-content-wrapper{
        padding-top: 0px;
        gap: 18px;
    }
}

.cart-content-box{
    width: 680px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
}
@media (max-width: 768px) {
    .cart-content-box{
        min-width: 250px;
        width: 100%;
    }
}

.shipping-content-box{
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #85858533;
}
@media (max-width: 768px) {
    .shipping-content-box{
        padding: 0px;
        border-radius: 0px;
        border: unset;
    }
}

.cart-main-data{
    width: 100%;
}


.cart-main-action-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    font-weight: 500;
    color: #fff;
    background-color: #225eb7;
    border: 0px;
    justify-content: center;
    transition: all 0.15s ease-in-out;
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
    flex: 1;
}
.cart-main-action-btn.cstd-active{
    pointer-events: unset;
    cursor: pointer;
    opacity: 1;
}

.cart-main-action-data{
    width: 100%;
    padding: 15px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.cart-main-total-data{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
    flex: 1;
}

.cart-main-total-data .cstd-text{
    justify-content: flex-start;
}
.cart-main-total-data .cstd-price{
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .cart-main-action-data{
        flex-direction: column;
    }
    .cart-main-total-data{
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        padding: 8px;
    }
}

.cart-main-loading{
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff85;
    z-index: 2;
}

.cart-main-empty{
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-main-empty > i {
    font-size: 38px;
    color: #84878ac4;
}

.cart-main-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-main-login-box{
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-main-list .cart-item-wrapper{
    display: flex;
    flex-direction: row;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #81838547;
    gap: 8px;
    justify-content: space-between;
}
.cart-main-list .cart-item-action-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column-reverse;
}
@media (max-width: 768px) {
    .cart-main-list .cart-item-wrapper{
        flex-direction: column;
        justify-content: unset;
    }
    .cart-main-list .cart-item-action-wrapper{
        flex-direction: row;
    }
}

.cart-main-list .cidw-img{
    width: 95px;
    height: 95px;
}

.ccb-title{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ccb-title i{
    font-size: 22px;
}

.ccb-no-address-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 5px;
    width: 100%;
}

.ccb-shipping-box{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 5px;
    border: 1.5px solid #8686861f;
    background: #7c828403;
    width: 100%;
}

.ccb-no-address-box i{
    font-size: 40px;
}

.btn-primary-small{
    border: 0px;
    border-radius: 5px;
    padding: 5px 16px;
    cursor: pointer;
    background: #1287f8;
    color: #fff;
}

.btn-primary {
    border: 0px;
    border-radius: 5px;
    padding: 8px 20px;
    cursor: pointer;
    min-width: 40%;
    background: #1287f8;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.ccb-address-box{
    padding: 18px 0px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid #7676761f;
    align-items: flex-start;
    margin-bottom: 18px;
}

.cab-multiple{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 520px) {
    .cab-multiple{
        gap: 15px;
    }
}

.ccb-data{
    display: flex;
    flex-direction: row;
    gap: 8px;
    line-height: 26px;
}

.ccb-data .ccbd-h{
    color: #3d3e419e;
}

.ccb-data .ccbd-t{
    color: #1d1d1e;
    font-weight: 500;
    font-feature-settings: "ss02";
}

.ccb-data .ccbd-bold{
    font-weight: 700;
}

.edit-address-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 4px 0px;
}

.shipping-method-item-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #7c7c7c40;
    border-radius: 5px;
    gap: 10px;
    cursor: pointer;
}

.shipping-method-item-wrapper:hover{
    background-color: #cad9ec0d;
}

.smiw-s1{
    display: flex;
    align-items: center;
    gap: 10px;
}

.smiw-s2{
    font-feature-settings: "ss02";
    display: flex;
    align-items: center;
    flex-direction: column;
}

.smiw-titledesc{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shipping-methods-container{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 15px;
    gap: 12px;
}

.smiw-title{
    font-size: 15px;
    font-weight: 500;
}

.smiw-desc{
    font-size: 12px;
    color: #6a6a6ae3;
}

.smiw-price-old{
    font-size: 13px;
    white-space: nowrap;
    color: #d32525;
    text-decoration: line-through;
}

.smiw-price{
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    color: #1c9346;
}

.smiw-price .currency_svg{
    background-color: #1c9346;
}

.smiw-cb{
    display: flex;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    border: 1px solid #70737452;
    color: #fff0;
    align-items: center;
    justify-content: center;
}

.smiw-active{
    border: 1px solid #0677d3;
    background-color: #8cbfff0f;
}

.smiw-active .smiw-cb{
    color: #fff;
    background-color: #fff;
    border: 6px solid #248ef4;
}

.majorisbox-root {
    position: fixed;
    z-index: 103;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    right: 0;
    height: auto;
    justify-content: center;
    align-items: center;
    background: #6b6f7363;
}

.majorisbox-root .majorisbox-wrapper {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    height: 92%;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    box-shadow: 2px 2px 8px #00000024;
}

.majorisbox-root .majorisbox-wrapper-large {
    width: 96%;
    height: 94%;
}

.majorisbox-root .majorisbox-wrapper-medium {
    width: 65%;
    height: 75%;
}

.majorisbox-root .majorisbox-wrapper-small {
    width: 50%;
    height: 65%;
}

.majorisbox-root .majorisbox-wrapper-dialog {
    width: 58%;
    height: 88%;
}

.majorisbox-root .majorisbox-wrapper-micro {
    width: 40%;
    height: 80%;
}

.majorisbox-root .majorisbox-wrapper-long {
    width: 40%;
    height: 90%;
}

.majorisbox-root .majorisbox-wrapper-microlong {
    width: 500px;
    height: auto;
}

.majorisbox-root .majorisbox-wrapper-nano {
    width: 40%;
    height: 280px;
}

.majorisbox-root .majorisbox-wrapper-video-dialog{
    width: 70%;
    max-width: 850px;
    height: auto;
}

@media (max-width: 768px) {
    .majorisbox-root .majorisbox-wrapper {
        width: 98%;
        height: 94%;
    }
    .majorisbox-root .majorisbox-wrapper-medium {
        width: 98%;
        height: 85%;
    }
    .majorisbox-root .majorisbox-wrapper-small {
        width: 98%;
        height: 76%;
    }
    .majorisbox-root .majorisbox-wrapper-dialog {
        width: 98%;
        height: 88%;
    }
    .majorisbox-root .majorisbox-wrapper-large {
        width: 98%;
        height: 95%;
    }
    .majorisbox-root .majorisbox-wrapper-micro {
        width: 60%;
        height: 80%;
    }
    .majorisbox-root .majorisbox-wrapper-microlong {
        width: 400px;
        height: auto;
    }
    .majorisbox-root .majorisbox-wrapper-long {
        width: 65%;
        height: 90%;
    }
    .majorisbox-root .majorisbox-wrapper-nano {
        width: 60%;
        height: 280px;
    }
    .majorisbox-root .majorisbox-wrapper-video-dialog{
        width: 98%;
        max-width: unset;
        height: auto;
    }
}
@media (max-width: 520px) {
    .majorisbox-root .majorisbox-wrapper-micro {
        width: 80%;
        height: 70%;
    }
    .majorisbox-root .majorisbox-wrapper-long {
        width: 90%;
        height: 95%;
    }
    .majorisbox-root .majorisbox-wrapper-nano {
        width: 80%;
        height: 280px;
    }
    .majorisbox-root .majorisbox-wrapper-microlong {
        width: 340px;
        height: auto;
    }
}

.majorisbox-wrapper-video-dialog .majorisbox-content{
    height: auto!important;
}
.majorisbox-wrapper-microlong .majorisbox-content{
    min-height: 400px;
    height: auto!important;
}

.majorisbox-final-content {
    border: 0px;
}

.majorisbox-header {
    padding: 8px 18px;
    border-bottom: 2px solid #2c2e320d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px 0px;
    justify-content: space-between;
}

.majorisbox-header .header-main {
    display: flex;
    align-items: center;
}

.majorisbox-header .header-tools {
    display: flex;
    align-items: center;
}

.majorisbox-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 90vh;
    overflow-y: auto;
}

.majorisbox-final-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.majorisbox-final-content iframe {
    flex-grow: 1;
    border: 0px;
}

.majorisbox-title {
    margin-left: 10px;
    font-weight: 500;
}

.majorisbox-close {
    cursor: pointer;
    display: flex;
    font-size: 16px;
    width: 34px;
    height: 34px;
    color: #767676ab;
    min-width: 34px;
    transition: all 0.15s;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.float-close-ic{
    left: 6px;
    top: 6px;
    position: absolute;
    background: #ffffffab;
    z-index: 99;
}

.majorisbox-close:hover {
    background-color: #81818115;
    color: #410505cf;
}

.majorisbox-loading {
    display: none;
    text-align: center;
    margin-top: 35vh;
}

.majorisbox-loading .majoris-loading{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 30px;
    width: 30px;
}

.loading-cc-wrapper{
    width: 100%;
    height: 100%;
}

.dialog-mother{
    position: absolute;
    height: 100%;
    width: 100%;
}

.camd-dual{
    display: flex;
    padding: 12px 20px;
    gap: 20px;
    flex-direction: row;
    width: 100%;
}

.camd-single{
    display: flex;
    padding: 12px 20px;
    gap: 20px;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 520px) {
    .camd-dual{
        flex-direction: column;
    }
}

.camd-dual .majoris-input-warpper{
    flex: 1;
}

.change-address-main-data{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.camd-main-content{
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #7b7b7b02;
}

.camd-footer-content{
    display: flex;
    align-items: center;
    padding: 10px 18px 16px;
    border-top: 1px solid #eee;
    justify-content: flex-end;
}

.change-address-main-data .majoris-input{
    font-size: 15px;
    text-align: initial;
}

.majoris-select{
    padding: 0px 10px;
    background: #fff;
    border-radius: 5px;
    border: 1.5px solid #7c808245;
    font-size: 15px;
    height: 42px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.empty-select .majoris-select-data{
    color: #aaa;
}

.majoris-select-data{
    flex-grow: 1;
}

.majoris-textarea {
    font-family: inherit;
    padding: 8px 10px;
    background: #fff;
    border-radius: 5px;
    border: 1.5px solid #7c808245;
    font-size: 15px;
}

.majoris-textarea:focus,.majoris-textarea:active{
    outline: none;
    border: 1.5px solid #a4b6c5;
}

.save-address-btn{
    width: 100%;
}

.majrois-select-dialog{
    display: flex;
    flex-direction: column;
    overflow: auto;
    overscroll-behavior: contain;
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
}

.msd-top-bar {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid #eee;
}

.msd-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.msd-items-list{
    flex-grow: 1;
    overflow-y: scroll;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.msd-item{
    padding: 10px 15px;
    font-size: 15px;
    cursor: pointer;
    user-select: none;
}

.msd-item:hover{
    background: #7e7e7e0a;
}

.msd-item2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 15px;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.msd-item2:hover{
    background: #7e7e7e0a;
}

.msdiv{
    font-feature-settings: "ss02";
    display: flex;
    align-items: center;
    gap: 8px;
}

.msdiv .fvv{
    font-weight: 600;
    font-size: 15px;
}

.msdiv .pho{
    font-size: 13px;
}

.msdiv .currency_svg{
    width: 14px;
}

.msd-title-text{
    font-size: 16px;
    font-weight: 500;
}

.msd-search .majoris-input{
    padding: 0px 10px;
    background: #7c808205;
    border-radius: 3px;
    border: 1.5px solid #7c808233;
    font-size: 15px;
    height: 35px;
    width: 100%;
}

.csb-cart-items{
    display: flex;
    flex-direction: column;
}

.csb-c-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 3px;
    border-bottom: 1px solid #76767614;
}
@media (max-width: 768px) {
    .csb-c-item{
        align-items: unset;
        gap: 8px;
        flex-direction: column;
    }
}

.csbci-img{
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 3px;
    border: 1px solid #76767612;
}

.csbci-main{
    display: flex;
    align-items: center;
    gap: 7px;
}

.csbci-prices{
    font-feature-settings: "ss02";
    display: flex;
    font-size: 15px;
    flex-direction: column;
    align-items: flex-end;
}

.csbci-name{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.csbcip-quantity{
    font-feature-settings: "ss02";
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    background: #7272720a;
    border-radius: 50%;
}

.csbci-vars{
    font-size: 13px;
    color: #787878db;
}

.csbci-details{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkout-summery-box{
    width: 100%;
    padding: 15px 0px 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.csbci-price-old{
    font-size: 12px;
    color: #787878e3; 
}

.csbci-price{
    font-feature-settings: "ss02";
    display: flex;
    font-size: 14px;
    gap: 7px;
    align-items: center;
}

.odc-final-price .csbci-price .cpo-symbol .currency_svg{
    width: 14px;
    height: 14px;
    background-color: #1da300;
}

.csbci-price .cpo-symbol .currency_svg{
    width: 12px;
    height: 12px;
    background-color: #000;
}

.csb-cart-details{
    padding: 18px 0px 5px;
}

.csb-d-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    border-bottom: 1px solid #7a7a7a21;
}

.csb-d-item:last-child{
    border-bottom: unset;
}

.csbdi-main{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 450;
}

.csbdi-main i{
    font-size: 17px;
    color: #787b7ec7;
}

.cpo-val{
    display: flex;
    gap: 8px;
}

.checkout-smiw-price-old{
    color: #787878e3;
    font-size: 13px;
}

.checkout-smiw-price-old .currency_svg{
    background-color: #787878e3;
    width: 13px;
    height: 13px;
}

.csb-d-item-bold .csbdi-main span {
    font-weight: 600;
}

.csb-d-item-bold .csbci-price .cpo-val{
    font-weight: 600;
}

.csb-d-item-bold .csbci-price{
    color: #05a354;
}

.csb-d-item-bold .csbci-price .currency_svg{
    background-color: #05a354;
}


.checkout-delivery-box{
    padding: 10px 0px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cdb-head-text{
    font-size: 13px;
    color: #818181cf;
}

.cdb-full-address{
    padding: 5px 0px;
    font-size: 14px;
}

.cdb-name-phone{
    font-feature-settings: "ss02";
    font-size: 14px;
}

.cdb-end-note{
    padding: 20px 0px 25px;
    font-size: 12px;
    color: #6c6c6cc4;
}

.checkout-note-box{
    padding: 15px 0px 0px;
}

.checkout-note-box .majoris-textarea{
    width: 100%;
}

.order-content-wrapper{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.payment-content-wrapper{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.order-content-box{
    width: 680px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
}
@media (max-width: 768px) {
    .order-content-box{
        min-width: 250px;
        width: 100%;
        padding: 10px 0px;
    }
}

.order-details-container{
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #85858533;
}
@media (max-width: 768px) {
    .order-details-container{
        padding: 5px 8px;
    }
}

.odc-order-data{
    padding: 10px;
    border-bottom: 1px solid #76767624;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.odc-order-data:last-child{
    border-bottom: unset ;

}

.odc-order-data-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.odc-odr-desc{
    font-size: 13px;
    color: #6f6f6fe0;
    padding: 8px 0px;
}

.odc-number-bold{
    font-feature-settings: "ss02";
    font-weight: 600;
}

.odc-status{
    display: flex;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}

.odc-status-waiting{
    background: #feda67;
    color: #0f0f0f;
}

.odc-status-finished{
    background: #0CAF23;
    color: #fff;
}

.odc-status-working{
    background: #833BFA;
    color: #fff;
}

.odc-status-refunded{
    background: #E02F89;
    color: #fff;
}

.odc-status-checking{
    background: #6BA91C;
    color: #fff;
}

.odc-status-canceled{
    background: #f6dede;
    color: #3c0404;
}

.odc-status-canceled_byuser{
    background: #E26410;
    color: #fff;
}

.odc-status-return_req_byuser{
    background: #A428B5;
    color: #fff;
}

.odc-status-need_changes {
    background: #ec554c;
    color: #ffffff;
}

.odc-status-receiving {
    background: #b1e4dc;
    color: #202020;
}

.odc-status-need_resubmit {
    background: #f48700;
    color: #fff;
}

.odc-status-submitted {
    background: #c33737;
    color: #fff;
}

.odc-date{
    font-size: 14px;
}

.odc-odr-cart-data .csb-c-item:last-child{
    border-bottom: unset;
}

.odc-oi-title{
    font-size: 15px;
}

.odc-final-price .odc-oi-title{
    font-weight: 600;
}

.odc-final-price .csbci-price{
    font-size: 16px;
    font-weight: 600;
    color: #1da300;
}

.odc-final-price .csbci-price .cpo-symbol{
    font-size: 12px;
    font-weight: 700;
}

.odc-order-pay-now{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0px;
}

.btn-pay-now{
    padding: 8px 15px;
    border-radius: 5px;
    background: #00b27d;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.payment-content-box{
    padding: 18px 0px 18px;
    border-radius: 8px;
    border: 1.5px solid #78787833;
    width: 100%;
    max-width: 1100px;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .payment-content-box{
        padding: 5px;
        border: unset;
    }
}

.payment-main-wrapper{
    display: flex;
}
@media (max-width: 768px) {
    .payment-main-wrapper{
        flex-direction: column;
        gap:14px;
    }
}

.payment-footer-wrapper{
    padding: 35px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-section1-container,.payment-section2-container{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px 24px;
}

.payment-section2-container{
    border-right: 1.5px solid #78787830;
}
@media (max-width: 768px) {
    .payment-section2-container{
        border-right: unset;
    }
    .payment-section1-container,.payment-section2-container{
        padding: 0px 5px;
    }
}

.pdb-data-row{
    display: flex;
    gap: 15px;
}

.pdb-data-row-p{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-data-box{
    display: flex;
    gap: 8px;
    flex-direction: column;
    padding: 10px 0px;
}

.payment-data-infos-box{
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
}
.payment-data-infos-box > div{
    border-bottom: 1px solid #6b6b6b1c;
    padding: 7px 0px;
}
.payment-data-infos-box > div:last-child{
    border-bottom: unset;
}

.payment-data-infos-box .pdb-title-bold{
    font-weight: 500;
}

.payment-data-infos-box .pdb-data-row-p{
    font-size: 15px;
}

.pdb-price-data{
    display: flex;
    gap: 5px;
    align-items: center;
}

.pdb-price-val{
    color: #00852e;
    font-size: 15px;
    font-weight: 500;
}

.pdb-price-symbol .currency_svg{
    background-color: #00852e;
}

.pdb-price-symbol{
    color: #00852e;
    font-size: 11px;
    font-weight: 600;
}

.pdb-coupon-row{
    display: flex;
    gap: 10px;
}

.majoris-input-coupon{
    padding: 0px 5px;
    background: #fff;
    width: 100%;
    border-radius: 3px;
    border: 1.5px solid #7c808245;
    font-size: 14px;
    text-align: center;
    height: 36px;
}
.majoris-input-coupon:focus,.majoris-input-coupon:active{
    outline: none;
    border: 1.5px solid #a4b6c5;
}

.btn-small{
    padding: 0px 18px;
    background: #3181dc;
    border: unset;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    height: 36px;
}

.goto-gateway-box{
    display: flex;
    align-items: center;
    gap: 25px;
}
@media (max-width: 520px) {
    .goto-gateway-box{
        gap: 15px;
        flex-direction: column;
    }
}

.ggb-final-price{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    gap: 2px;
}

.ggb-price-val{
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #008c4a;
    font-weight: 600;
}

.ggb-price-val .currency_svg{
    background-color: #008c4a;
}

.ggb-final-price .ggb-title{
    font-size: 15px;
}

.info-gateway-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    color: #737373c9;
    padding: 15px 0px;
}

.goto-gateway-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    font-weight: 500;
    color: #fff;
    background-color: #07ad8c;
    border: 0px;
    justify-content: center;
    transition: all 0.15s ease-in-out;
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
    flex: 1;
}
.goto-gateway-btn.cstd-active{
    pointer-events: unset;
    cursor: pointer;
    opacity: 1;
}

.payment-enamads{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 25px 0px 0px;
}

.payment-enamads .p-enamad-img{
    width: 70px;
}

.payment-method-item-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #7c7c7c40;
    border-radius: 5px;
    gap: 10px;
    cursor: pointer;
}

.payment-method-item-wrapper:hover{
    background-color: #cad9ec0d;
}

.pmiw-s1{
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmiw-s2{
    font-feature-settings: "ss02";
    display: flex;
    align-items: center;
    flex-direction: column;
}

.pmiw-titledesc{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-methods-container{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 15px;
    gap: 12px;
}

.pmiw-title{
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pmiw-title > i{
    font-size: 18px;
}

.pmiw-desc{
    font-size: 12px;
    color: #6a6a6ae3;
}

.pmiw-cb{
    display: flex;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    border: 1px solid #70737452;
    color: #fff0;
    align-items: center;
    justify-content: center;
}

.pmiw-active{
    border: 1px solid #0677d3;
    background-color: #8cbfff0f;
}

.pmiw-active .pmiw-cb{
    color: #fff;
    background-color: #fff;
    border: 6px solid #248ef4;
}

.smiw-wallet-data{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.smiw-wallet-data .currency_svg{
    width: 12px;
    height: 12px;
}

.pmwd-head{
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 5px;
}

.btn-pmwd-wallet{
    padding: 3px 18px;
    background: #3181dc;
    border: unset;
    display: block;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    font-size: 11px;
    cursor: pointer;
}

.pmwd-head .pmwd-c{
    font-size: 10px;
    font-weight: 600;
}

.pmwd-head .pmwd-v{
    font-size: 13px;
}

.coupon-box{
    border-bottom: 1px solid #72727233;
}

.coupon-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
}

.ccb-toggle .switch3{
    margin-left: 0px;
    margin-right: 0px;
}

.coupon-data{
    padding: 0px 0px 18px;
}

.pdb-setted-coupon-row{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.scr-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.scr-text-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
}

.scr-val-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
}

.scr-text-wrapper > i{
    font-size: 17px;
}

.gtg-text > i {
    font-size: 20px;
}

.gtg-text{
    display: flex;
    align-items: center;
    gap: 5px;
}

.success-payment-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 45px;
    padding-bottom: 35px;
}

.success-payment-container > i{
    font-size: 45px;
    color: #59ca9c;
}

.success-payment-container .spc-head-title{
    font-size: 18px;
    font-weight: 600;
    color: #0aaa4b;
}

.success-payment-container .spc-desc-text{
    font-size: 13px;
}

.failure-payment-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 25px;
    padding-bottom: 15px;
}

.failure-payment-container > i{
    font-size: 45px;
    color: #e03d3d;
}

.failure-payment-container .spc-head-title{
    font-size: 18px;
    font-weight: 600;
    color: #d01010;
}

.failure-payment-container .spc-desc-text{
    font-size: 13px;
}

.checking-payment-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 45px;
    padding-bottom: 35px;
}

.checking-payment-container > i{
    font-size: 45px;
    color: #e0b800;
}

.checking-payment-container .spc-head-title{
    font-size: 18px;
    font-weight: 600;
    color: #e0b800;
}

.checking-payment-container .spc-desc-text{
    font-size: 13px;
}

.btn-payment-return-wrapper{
    padding: 10px 0px;
}

.btn-payment-return-wrapper .btn-payment-return{
    display: block;
}

.paid-order-notif-wrapper{
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
    border-radius: 5px;
    background: #e7f5ef;
    align-items: center;
    margin-top: 5px;
    gap: 6px;
}
@media (max-width: 520px) {
    .paid-order-notif-wrapper{
        flex-direction: column;
    }
}

.paid-order-notif-wrapper > span{
    font-size: 15px;
    color: #006d1f;
    font-weight: 600;
}

.paid-order-notif-wrapper .btn-show-purchase{
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 5px;
    background: #047859ab;
    color: #fff;
}

.orders-list-container{
    width: 100%;
    border-radius: 8px;
    border: 1px solid #85858533;
}

.ticket-btn-container{
    display: flex;
    margin-bottom: 18px;
}

.order-item-row-wrapper,.purchase-item-row-wrapper {
    padding: 18px 16px;
    border-bottom: 1px solid #76767624;
    display: flex;
    color: #000;
    flex-direction: column;
    gap: 8px;
}
.purchase-item-row-wrapper:last-child,.order-item-row-wrapper:last-child{
    border-bottom: unset;
}
.purchase-item-row-wrapper:hover,.order-item-row-wrapper:hover {
    background-color: #74747405;
}

.oir-data-top{
    display: flex;
    justify-content: space-between;
}

.oir-data-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ood-title{
    font-size: 13px;
    color: #545454;
}

.oir-date {
    font-size: 12px;
    color: #737373d9;
    white-space: nowrap;
}

.oir-t-num{
    direction: ltr;
    display: inline-block;
    padding: 1px 8px;
    border-radius: 5px;
    background: #8383830d;
}

.oir-arrow{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #777;
}

.oir-data-top .oir-title{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.oir-data-top .oir-real-title{
    font-size: 14px;
    color: #3f3f3f;
}

.pir-status{
    display: flex;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}

.pir-status-paid{
    background: #0CAF23;
    color: #fff;
}

.pir-status-pending{
    background: #ffce14;
    color: #0f0f0f;
}

.pir-status-expired{
    background: #c4cdc4;
    color: #0f0f0f;
}

.pir-data-top{
    display: flex;
    justify-content: space-between;
}

.pir-data-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pir-data-tracking{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 520px) {
    .pir-data-tracking{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.oir-track-code{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.oir-track-code > i{
    font-size: 19px;
    color: #3f8971d6;
}

.pir-amount-price{
    font-size: 16px;
    font-weight: 600;
    color: #108741;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pir-currency .currency_svg{
    width: 12px;
    height: 12px;
    background-color: #108741;
}

.pir-dt-s1{
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 520px) {
    .pir-dt-s1{
        align-items: flex-start;
        gap: 5px;
        flex-direction: column;
    }
}

.barcode-row-title{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.barcode-row-title > i {
    font-size: 19px;
    color: #3f8971d6;
}

.wallet-content-box{
    width: 680px;
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
}
@media (max-width: 768px) {
    .wallet-content-box{
        min-width: 250px;
        width: 100%;
        padding: 10px 0px;
    }
}

.wallet-info-box{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #6f6f6f29;
}

.wallet-items-list-container{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #6f6f6f29;
}

.wib-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wibb-title{
    font-size: 15px;
    font-weight: 600;
}

.wibb-val{
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wibb-val .pmwd-c{
    font-size: 12px;
}

.wallet-item-row-wrapper {
    padding: 8px 0px;
    border-bottom: 1px solid #76767624;
    display: flex;
    color: #000;
    flex-direction: column;
    gap: 8px;
}
.wallet-item-row-wrapper:last-child{
    border-bottom: unset;
}

.wirw-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.wallet-charge-btn {
    display: flex;
    padding: 10px 18px;
    gap: 8px;
    background: #0bb195;
    border: unset;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
}

.wallet-charge-btn .wbtn-t{
    font-weight: 400;
}

.wallet-charge-btn .wbtn-p{
    font-weight: 600;
}

.wallet-charge-btn .wbtn-c .currency_svg{
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.odc-odr-tracking{
    padding: 15px;
    margin-bottom: 5px;
    color: #6c4308;
    border-radius: 5px;
    background: #ede6d087;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cdct-data{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cdct-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.btn-post-tracking{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    background: #733c08a8;
    color: #fff;
}

.post-main-data-wrapper{
    display: flex;
    flex-direction: column;
}

.piw-title{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
}

.piw-title > i{
    font-size: 21px;
}

.piw-btn{
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 8px 25px;
    border-radius: 5px;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.piw-btn > i{
    font-size: 18px;
}

.piw-button-container{
    display: flex;
    justify-content: center;
}

.piw-text-paragraph{
    font-size: 15.5px;
}

.piw-audio-container{
    display: flex;
    width: 100%;
    justify-content: center;
}

.piw-video-container{
    display: flex;
    width: 100%;
    justify-content: center;
}

.piw-video-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .piw-video-wrapper > video{
        width: 100%;
        height: auto;
    }
}

.piw-audio-wrapper{
    min-width: 650px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 768px) {
    .piw-audio-wrapper{
        min-width: unset;
        width: 100%;
    }
}

.piw-audio-wrapper > audio{
    width: 100%;
}

.piw-audio-title-box{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
}

.piw-audio-title-box > i{
    font-size: 18px;
}

.piw-img{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.piw-img > img{
    width: 100%;
    border: 1px solid #76767600;
    border-radius: 5px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .piw-img > img{
        width: 100%;
    }
}

.piw-button-dual-container{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.piw-img-dual-wrapper{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.piw-img-di > img{
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 1px solid #7676763b;
}

.piw-table{
    width: 100%;
}

.piw-table-container{
    overflow: auto;
}

.piw-table-container::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.piw-table,.piw-table td,.piw-table tr{
    border: 1px solid #8585851f;
    border-collapse: collapse;
}

.piw-table td{
    padding: 6px 12px;
}

.piw-table tr:nth-child(even) {
    background-color: #70707012;
}

.search-title-wrapper{
    padding: 2px 15px 12px;
    border-bottom: 1px solid #eee;
}

.stw-headers{
    display: flex;
    align-items: center;
    gap: 20px;
}

.stw-headers .search-desc{
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 5px;
    background: #e7eaebbf;
}

.stw-input-wrapper{
    padding: 10px 0px 0px;
}

.stwiw-box{
    display: flex;
    align-items: center;
    width: 40%;
    border-radius: 5px;
    background: #f6f8f8;
    border: 1px solid #d2dce0a6;
}
@media (max-width: 768px) {
    .stwiw-box{
        width: 100%;
    }
}

.stwiw-search-input{
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff00;
    padding: 8px 12px;
}

.stwiw-search-input:focus,.stwiw-search-input:active{
    outline: none;
}

.stwiw-search-button{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.stwiw-search-button:hover{
    background: #00000014;
}

.edit-profile-items-wrapper{
    min-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .edit-profile-items-wrapper{
        min-width: 250px;
        width: 100%;
    }
}

.ed-require{
    vertical-align: middle;
    margin-right: 3px;
    color: #d60000;
    font-size: 12.5px;
}

.etp-phone-email-box{
    width: 100%;
}

.edp-phone-email-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px 10px;
}

.edp-phone-email-actions .edp-sts-text{
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
}

.edp-phone-email-actions .edp-sts-text > i{
    font-size: 17px;
}

.est-red{
    color: #da0000;
}

.est-green{
    color: #068d3d;
}

.btn-smaller {
    padding: 0px 17px;
    background: #3181dc;
    border: unset;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    height: 30px;
}

.modify-main-data{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.mmd-main-content{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.save-mofiy-btn{
    width: 100%;
}

.mmd-footer-content{
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #eee;
}

.mmd-dialog-data{
    display: flex;
    padding: 15px 18px;
    flex-direction: column;
    gap: 10px;
}

.mmdd-text{
    color: #626262;
    font-size: 14px;
}

.otp-wrapper{
    align-items: center;
}

.otp-wrapper > input{
    width: 220px;
    height: 50px!important;
    font-size: 25px!important;
    letter-spacing: 2px;
}

.messages-items-list-container{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #6f6f6f29;
}

.message-item-row-wrapper {
    padding: 8px 0px 14px;
    border-bottom: 1px solid #76767624;
    display: flex;
    color: #000;
    flex-direction: column;
    gap: 8px;
}
.message-item-row-wrapper:last-child{
    border-bottom: unset;
}

.mirw-title{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mirw-title > i{
    font-size: 20px;
}

.message-top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mirw-text{
    font-size: 15px;
}

.mirw-btn-wrapper .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mirw-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.subscribes-items-list-container{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #6f6f6f29;
}

.subscribe-item-row-wrapper {
    padding: 8px 0px 14px;
    border-bottom: 1px solid #76767624;
    display: flex;
    color: #000;
    flex-direction: column;
    gap: 8px;
}
.subscribe-item-row-wrapper:last-child{
    border-bottom: unset;
}


.sirw-title{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sirw-title > i{
    font-size: 20px;
}

.sirw-text{
    color: #232323b3;
    font-size: 15px;
}

.subscribe-buy-btn {
    display: flex;
    padding: 10px 18px;
    gap: 8px;
    background: #04947c;
    border: unset;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
}

.sirw-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.sirw-price-duration-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sirw-duration{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    background: #2f96fd;
    color: #fff;
    padding: 2px 8px;
}

.ex-btn-wrapper{
    display: flex;
    justify-content: flex-start;
}

.amazdis-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.btn-subscribe-explain{
    display: flex;
    padding: 6px 18px;
    gap: 8px;
    background: #d2dcda;
    border: unset;
    border-radius: 5px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
}

.sessions-items-list-container{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #6f6f6f29;
}

.sessions-item-row-wrapper {
    padding: 8px 0px 14px;
    border-bottom: 1px solid #76767624;
    display: flex;
    color: #000;
    flex-direction: column;
    gap: 8px;
}
.sessions-item-row-wrapper:last-child{
    border-bottom: unset;
}

.si-title{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.si-title > i{
    font-size: 20px;
}

.session-top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.si-device-id{
    font-size: 13px;
    color: #303133db;
}

.si-btn-wrapper .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.si-btn-wrapper .btn > i{
    font-size: 16px;
}

.si-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}

.btn-danger{
    background: #c30404!important;
}

.majoris-button-text{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.si-current-device{
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    padding: 3px 8px;
    background-color: #d0dce0e3;
    display: inline-block;
}

.contact-us-items-wrapper{
    min-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .contact-us-items-wrapper{
        min-width: 250px;
        width: 100%;
    }
}

.ctcus-note{
    padding: 12px 20px;
    width: 100%;
}

.general-main-login-box{
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.general-main-login-box > i{
    font-size: 25px;
}

.no-access-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10px;
    flex-direction: column;
    gap: 10px;
}

.puc-icon{
    font-size: 70px;
    color: #ffac10;
}

.puc-header{
    font-size: 28px;
    font-weight: 700;
    color: #ffac10;
}

.ppp-icon{
    font-size: 70px;
    color: #326de4;
}

.ppp-header{
    font-size: 28px;
    font-weight: 700;
    color: #326de4;
}

.pol-icon{
    font-size: 70px;
    color: #2db495;
}

.pol-header{
    font-size: 28px;
    font-weight: 700;
    color: #2db495;
}


.ofa-icon{
    font-size: 70px;
    color: #14b876;
}

.ofa-header{
    font-size: 28px;
    font-weight: 700;
    color: #14b876;
}


.majoris-float-content-box{
    width: 680px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #85858533;
    gap: 10px;
}
@media (max-width: 768px) {
    .majoris-float-content-box{
        min-width: 250px;
        width: 100%;
        padding: 10px 0px;
    }
}

.majoris-float-content-wrapper{
    display: flex;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.need-subscribe-box{
    background: #42464a0d;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 4px;
}

.need-subscribe-box > i{
    font-size: 20px;
}

.need-subscribe-box .nsb-name{
    font-size: 16px;
    font-weight: 500;
}

.need-sub-parent{
    align-items: center;
    padding: 25px;
    gap: 15px;
}

.need-sub-header{
    font-size: 18px;
    font-weight: 600;
}

.need-sub-buttons-wrapper{
    padding: 22px 0px 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-goto-subscribes{
    border: 0px;
    border-radius: 5px;
    padding: 8px 5px;
    cursor: pointer;
    min-width: 40%;
    width: 100%;
    background: #12ad4f;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    display: flex;
    justify-content: center;
}

.majoris-post-header-box{
    margin-bottom: 18px;
    padding: 0px 10px;
}

.post-preview-notif-wrapper{
    padding: 15px;
}

.majoris-post-title{
    margin-bottom: 10px;
    padding: 0px 10px;
}

.majoris-post-header-box{
    margin-bottom: 20px;
    padding: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mphb-actions-box{
    display: flex;
    align-items: center;
    gap: 5px;
}

.mphb-actions-box .mab-item{
    font-size: 25px;
    display: flex;
    padding: 6px 8px;
}

.post-fav-btn{
    border-radius: 5px;
    cursor: pointer;
}

.post-fav-btn:hover{
    background: #7f7f7f14;
}

.post-share-btn{
    border-radius: 5px;
    cursor: pointer;
}

.post-share-btn:hover{
    background: #7f7f7f14;
}

.ppnw-box{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    width: 100%;
    background: #089e4ce6;
    color: #fff;
    font-size: 17px;
    justify-content: center;
}

.ppnw-back-btn{
    cursor: pointer;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #e7edf06b;
    background: #ffffff21;
}

.single-buy-purchase-wrapper{
    display: flex;
    justify-content: center;
    padding: 15px 0px 30px;
}

.single-buy-purchase-box{
    width: 680px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #a1d2b766;
    background: #eff8f4;
    gap: 12px;
}
@media (max-width: 768px) {
    .single-buy-purchase-box{
        min-width: 250px;
        width: 100%;
        padding: 10px 0px;
    }
}

.single-buy-purchase-box .price-old{
    justify-content: flex-start;
}

.sbpb-title{
    color: #1e8c4b;
    font-size: 16px;
    font-weight: 500;
}

.btn-sbpb-pay{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 17px;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    color: #fff;
    background: #0ea24b;
    transition: all 0.15s ease-in-out;
    justify-content: center;
}

.btn-sbpb-pay:hover{
    filter: saturate(0.75);
}

.you-already-purchased-this-wrapper{
    display: flex;
    justify-content: center;
    padding: 10px 0px 20px;
}

.yapt-box{
    padding: 8px 25px;
    border-radius: 5px;
    background: #1a4de2;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.post-redirect-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 120px 10px;
}

.prb-loading-box{
    display: block;
    width: 30px;
    height: 30px;
}

.prb-loading-box .majoris-loading{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}

.prb-header{
    font-size: 18px;
    font-weight: 500;
}

.io-aparat-video-view{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ioavv{
    display: block;
    width: 100%;
    height: auto;
}

.subscribe-order-item-row-wrapper {
    padding:16px;
    border-bottom: 1px solid #76767624;
    width: 100%;
    display: flex;
    color: #000;
    flex-direction: column;
    gap: 8px;
}
.subscribe-order-item-row-wrapper:last-child{
    border-bottom: unset;
}

.asoi-status-wrapper{
    display: flex;
    align-items: center;
    gap: 12px;
}

.asoiw-status-active{
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    background: #1bbf7a;
    color: #fff;
}

.asoiw-status-expired{
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    background: #bd3b7c;
    color: #fff;
}

.asoiw-exdate{
    font-feature-settings: "ss02";
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
    background: #eeeeee8a;
}

.sirw-sub-order-status-box{
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 2px 0px;
    gap: 5px;
}

.ssos1{
    font-size: 13px;
    color: #24910d;
}

.ssos2{
    font-size: 13px;
    color: #bd3b7c;
}

.ssos-date{
    font-feature-settings: "ss02";
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.info-cancel-gateway-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #d60000d4;
    padding: 0px 0px 15px;
}

.version-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10px;
    flex-direction: column;
    gap: 10px;
}

.verb-ver{
    font-size: 30px;
}


.transfer-money-main-data{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.tmmd-main-content{
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #7b7b7b02;
}

.tmmd-footer-content{
    display: flex;
    align-items: center;
    padding: 10px 18px 16px;
    border-top: 1px solid #eee;
    justify-content: flex-end;
    flex-direction: column;
    gap: 10px;
}

.tmmdmc-data{
    flex: 1 0 0;
    overflow-y: auto;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tmmdmc-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.tmmdmc-header > span{
    font-size: 16px;
    font-weight: 600;
}

.tmmd-close-btn{
    display: flex;
    align-items: center;
    padding: 5px;
    color: #86898cb0;
    cursor: pointer;
    border-radius: 50%;
}
.tmmd-close-btn:hover{
    background: #84858712;
}

.tmmdmc-exp{
    font-size: 13px;
    line-height: normal;
    color: #000000b8;
}

.tmmdmc-exp > .tpr{
    font-feature-settings: "ss02";
    color: #038241;
}

.tmmd-footer-content > .majoris-input-warpper{
    width: 100%;
}

.tmd-bank-box{
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    border: 1px solid #0000002b;
    border-radius: 5px;
    background: #e8efef0f;
}

.tbb-data{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tbb-title{
    font-size: 14px;
    font-weight: 400;
}

.tbb-owner{
    font-size: 14px;
    font-weight: 400;
}

.tbb-data > .pt-data{
    font-size: 18px;
    font-weight: 250;
    padding-top: 3px;
}

@media (max-width: 520px) {
    .tbb-data > .pt-data{
        font-size: 16px;
    }
}

.line-dash {
    width: auto;
    height: 1px;
    border-bottom: 1px dashed #0000002b;
    flex-grow: 1;
    margin: 0px 6px;
}

.tm-copy-btn{
    padding: 1px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 3px;
    background: #ddf3ff91;
    border: 1px solid #375db675;
    cursor: pointer;
}

.tm-copy-btn:hover{
    background: #b1e4ff91;
}

.confirm-transfer-money-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    font-weight: 500;
    color: #fff;
    background-color: #07ad8c;
    border: 0px;
    justify-content: center;
    transition: all 0.15s ease-in-out;
}

.mphb-details-box{
    font-feature-settings: "ss02";
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 13px;
}

.mphb-details-box .mdbi{
    display: flex;
    align-items: center;
    gap: 1px;
}

.mphb-details-box .mdbi > i{
    font-size: 19px;
    padding: 4px 6px;
    border-radius: 5px;
}

.post-like-icon:hover{
    background: #7f7f7f14;
}

.piw-text-boxed .piw-text-paragraph {
    margin-top: 0px;
    margin-bottom: 0px;
}

.ticket-subject{
    font-weight: 500;
    margin-bottom: 8px;
}

.ticket-status-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-status{
    display: flex;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}

.ticket-status-waiting{
    background: #f4a107;
    color: #fff;
}

.ticket-status-working{
    background: #114aff;
    color: #fff;
}

.ticket-status-answered{
    background: #0CAF23;
    color: #fff;
}

.ticket-status-useranswered{
    background: #e37a16;
    color: #fff;
}

.ticket-status-closed{
    background: #585f65;
    color: #fff;
}


.ticket-content-wrapper{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ticket-content-box{
    width: 680px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px;
}
@media (max-width: 768px) {
    .ticket-content-box{
        min-width: 250px;
        width: 100%;
        padding: 10px 0px;
    }
}

.ticket-details-container{
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #85858533;
}
@media (max-width: 768px) {
    .ticket-details-container{
        padding: 5px 8px;
    }
}

.tdc-data-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tdc-subject-title{
    font-weight: 600;
    font-size: 18px;
}

.tdc-divider{
    border-bottom: 1px solid #7f7f7f38;
    padding-top: 15px;
    margin-bottom: 15px;
}

.btn-add-ticket-reply{
    min-width: unset;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
}

.tdc-actions{
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.btn-close-ticket{
    border: 0px;
    border-radius: 5px;
    padding: 8px 20px;
    cursor: pointer;
    background: #ffe3e3;
    color: #303030;
    font-size: 15px;
}

.tdc-replys-container{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
}

.tdc-reply-item{
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #dbe9ef;
}

.ticket-reply-admin{
    background: #cdeef2;
    margin-left: 15%;
}

.ticket-reply-user{
    background: #e9eafe;
    margin-right: 15%;
}

.tri-header{
    font-size: 13px;
    color: #353535c2;
    margin-bottom: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.btn-add-ticket{
    display: flex;
    align-items: center;
    gap: 8px;
}

.dialog-main-data{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.dmd-main-content{
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #7b7b7b02;
}

.dmd-footer-content{
    display: flex;
    align-items: center;
    padding: 10px 18px 16px;
    border-top: 1px solid #eee;
    justify-content: flex-end;
}

.dialog-main-data .majoris-input{
    font-size: 15px;
    text-align: initial;
}

.dmd-input-wrapper{
    display: flex;
    padding: 12px 20px;
    gap: 20px;
    flex-direction: column;
    width: 100%;
}

.dmd-input-wrapper select.majoris-input{
    font-family: 'iransans';
}

.dmd-input-wrapper select.majoris-input option{
    font-family: 'iransans';
}


.dmd-head-title{
    padding: 12px 20px 5px;
    font-weight: 600;
}

.form-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-box{
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #6e6e6e1f;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 650px;
}

.poll-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poll-box{
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #6e6e6e1f;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 650px;
}

@media (max-width: 768px) {
    .form-box{
        width: 100%;
    }
    .poll-box{
        width: 100%;
    }
}

.form-title-box{
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.form-title-box > .ftbi{
    font-size: 20px;
    display: flex;
}

.form-desc{
    font-size: 13px;
    color: #414141de;
}

.poll-title-box{
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    justify-content: space-between;
}

.ptbtw{
    display: flex;
    gap: 8px;
    align-items: center;
}

.poll-title-box .ptbtw > .ptbi{
    font-size: 20px;
    display: flex;
}

.poll-question{
    font-size: 13px;
    color: #414141de;
    margin-bottom: 10px;
}

.poll-refresh:hover{
    background: #7d7d7d26;
}

.poll-refresh {
    font-size: 20px;
    padding: 3px;
    border-radius: 50%;
    cursor: pointer;
    color: #7b7b7bde;
}

.poll-selection-item{
    border-radius: 5px;
    border: 1px solid #7777772e;
    cursor: pointer;
    background: #73787d38;
    position: relative;
    overflow: hidden;
}

.poll-selection-item:hover{
    border: 1px solid #009bff;
}

.psi-inner-width-box{
    height: 65px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    border-left: 1px solid #5656569e;
}

.psi-inner-data{
    padding: 0px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 65px;
    position: relative;
    z-index: 1;
    background: #ffffffa3;
}

.poll-items-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-footer-container{
    display: flex;
    justify-content: space-between;
    padding: 14px 2px 2px;
    align-items: center;
}

.psi-details{
    font-feature-settings: "ss02";
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.psi-details .psid-c{
    font-size: 11px;
    color: #626262;
}

.psi-text{
    display: flex;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
}

.psicheck{
    font-size: 22px;
}

.normal-loading{
    font-size: 19px;
    opacity: 0.8;
    display: none;
    animation: rotate 2s linear infinite;
}

.btn-poll-show-result{
    color: #fff;
    background: #0065df;
    border: 0px;
    border-radius: 5px;
    padding: 4px 10px;
    cursor: pointer;
}

.poll-status-text{
    font-weight: 500;
    font-size: 14px;
}

.pst-active{
    color: #00af4d;
}

.pst-not-active{
    color: #c80000;
}

.fiw-title-box{
    display: flex;
    align-items: center;
    gap: 5px;
}

.fiw-title{
    font-size: 14px;
    font-weight: 500;
}

.fiw-description{
    font-size: 11px;
    color: #3b3b3beb;
}

.form-input-wrapper{
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.form-inputs-box{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.form-footer-wrapper{
    width: 60%;
}

.form-footer-wrapper .btn{
    width: 100%;
}

.form-inputs-box{
    width: 100%;
}
.form-footer-wrapper{
    width: 100%;
}


.fiw-input-container{
    padding-top: 6px;
}

.form-footer-wrapper{
    padding-top: 15px; 
}

.fiw-forced{
    color: #cd0000;
}

.ffw-not-active-note{
    font-size: 14px;
    padding-top: 10px;
}

.form-radio-group-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 12px;
}

.frgw-item-box{
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #73737321;
    background: #e4ebef1f;
}

.frgw-item-box > input{
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0px 10px 0px 0px;
}

.frgw-item-box > label{
    font-size: 15px;
    cursor: pointer;
    padding: 5px 6px 5px 10px;
}


.form-checkbox-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 12px;
}

.form-radio-group-wrapper-cb2,
.form-checkbox-wrapper-cb2{
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 12px;
}

.form-radio-group-wrapper-cb2 .fcw-item-box,
.form-checkbox-wrapper-cb2 .fcw-item-box{
    width: 100%;
}

.cb2-label{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    align-items: center;
    padding: 10px 14px !important;
}

.msdiv-dual{
    display: flex;
    align-items: center;
    gap: 10px;
    font-feature-settings: "ss02";
}

.msdiv-dual .fvv{
    font-weight: 600;
    font-size: 15px;
}

.msdiv-dual .pho{
    font-size: 13px;
}

.msdiv-dual .currency_svg{
    width: 14px;
}

.cb2-qty-input{
    width: 70px;
    padding: 5px 0px 5px 15px;
    font-size: 15px;
    border-radius: 3px;
    background: #ffffff63;
    border: 1px solid #76767654;
    direction: ltr;
    text-align: center;
}

.cb2-pbox{
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: flex-end;
}

.fcw-item-box{
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #73737321;
    background: #e4ebef1f;
}

.fcw-item-box > input{
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0px 10px 0px 0px;
}

.fcw-item-box > label{
    font-size: 15px;
    cursor: pointer;
    padding: 5px 6px 5px 10px;
}

.form-container .form-input-wrapper input.rtl{
    text-align: right;
    direction: rtl;
}
.form-container .form-input-wrapper input.ltr{
    text-align: left;
    direction: ltr;
}

.form-footer-wrapper .btn-primary{
    padding: 12px 20px;
}

.form-data-box{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.btn-mini{
    padding: 0px 18px;
    background: #3181dc;
    border: unset;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    height: 36px;
    align-items: center;
}

.form-sent-ic{
    font-size: 35px;
    color: #1ebd57;
}

.currency_svg{
    display: inline-flex;
    vertical-align: middle;
    background-color: #000;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-position:center;
    -webkit-mask-position:center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    width: 15px;
    height: 15px;
}

.smiw-price-old .currency_svg{
    background-color: #d32525;
    width: 13px;
    height: 13px;
}

.line-post-wrapper{
    border-radius: 10px;
}

.mm-label{
    color: #fff;
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 500;
}

.mm1-label, .mm2-label, .mm3-label{
    color: #fff;
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 10px;
    font-weight: 400;
}

.cws-comment-item{
    border: 1px solid #7171715c;
    padding: 10px 15px;
    border-radius: 12px;
    background: #deeaee17;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.cws-ci-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cwsci-showname{
    font-weight: 500;
    font-size: 17px;
}

.cwsci-date{
    font-feature-settings: "ss02";
    font-size: 13px;
    color: #565656ab;
}

.cwsci-comment-text{
    font-size: 14px;
}

.cws-ci-footer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cwsci-reply-btn-text{
    color: #3d566df2;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
}

.cwsci-reply-btn-text:hover{
    background: #75757524;
}

.pmd-disabled-button{
    cursor: not-allowed;
    opacity: 0.7;
}

.virtual-product-dl-box{
    display: inline-flex;
    padding: 15px 18px;
    border-radius: 5px;
    background: #f4f6f6;
    flex-direction: column;
    gap: 8px;
}

.vpdb-button{
    display: flex;
    justify-content: center;
}

.send-comment-box{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 8px;
    background: #dce3e847;
    border: 1px solid #82828236;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.send-comment-box .majoris-input{
    padding: 0px 10px;
    background: #fff;
    border-radius: 5px;
    border: 1.5px solid #7c808245;
    font-size: 17px;
    text-align: right;
    height: 42px;
}

.scb-send-btn-wrapper{
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-bottom: 2px;
}

.scb-title{
    display: flex;
    align-items: center;
    gap: 10px;
}

.scb-title > i {
    font-size: 20px;    
}

.scb-title > span {
    font-weight: 600;
    font-size: 17px;
}

.new-comment-send-btn{
    border: 0px;
    border-radius: 5px;
    padding: 8px 50px;
    cursor: pointer;
    background: #1287f8;
    color: #fff;
    font-size: 16px;
}

.comments-inner-wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 1000px;
}

@media (max-width: 768px) {
    .comments-inner-wrapper{
        width: 100%;
    }
    .comments-wrapper {
        padding: 0px;
    }
}

.majoris-input-wrapper{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.majoris-input-wrapper .majoris-input-label{
    font-size: 14px;
    font-feature-settings: "ss02";
}

.replyof-box{
    padding: 12px;
    background: #fff0;
    border: 1px solid #bec3c8e8;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rob-title{
    font-weight: 600;
}

.rob-comment{
    font-size: 15px;
    font-weight: 400;
}

.rob-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rob-cancel-reply{
    font-size: 12px;
    padding: 4px 9px;
    border-radius: 5px;
    background: #ff000024;
    color: #5a0000;
    cursor: pointer;
}

.cws-replys-list-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cws-reply-comment-item{
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #76767657;
    background: #8080800d;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cwsci-reply-showname{
    font-weight: 600;
    font-size: 14px;
}

.cwsci-reply-date {
    font-size: 11px;
    font-feature-settings: "ss02";
    color: #565656ab;
}

.cwsci-reply-comment-text{
    font-size: 13px;
}

.cws-replys-list-wrapper > div:first-child{
    margin-top: 10px;
}

.cws-replys-list-wrapper > div:last-child{
    margin-bottom: 10px;
}

.user-purchased-label-comment{
    font-weight: 500;
    font-size: 12px;
    padding: 3px 6px 3px 8px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #08854a;
    background: #06a56717;
}

.user-purchased-label-comment > i {
    font-size: 15px;
}

.cwsci-title-data ,.cwsci-replay-title-data{
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-comments-container{
    border-top: 1px solid #7e7e7e29;
    margin-top: 25px;
    padding-top: 20px;
}

.pcc-comments-title{
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcc-comments-title > i {
    font-size: 22px;
}

.pcc-comments-title > span {
    font-size: 17px;
    font-weight: 600;
}

.jump-to-comments-ic{
    border-radius: 5px;
    cursor: pointer;
}

.jump-to-comments-ic:hover{
    background: #7f7f7f14;
}

.majoris-file-notes{
    font-size: 11px;
    color: #00000073;
    margin-bottom: 5px;
}

.majoris-file-input{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 2px;
    background: #e4ebef1f!important;
}

.majoris-file-input-warpper{
    position: relative;
}

.mfi-start , .mfi-end{
    display: flex;
    align-items: center;
    gap: 10px;
}

.mfi-file-check{
    font-size: 21px;
    color: #00a729;
}

.mfi-file-loading{
    font-size: 21px;
    animation: rotate 3s linear infinite;
}

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

.mfi-file-ic{
    font-size: 21px;
}

.mfi-file-text{
    font-size: 14px;
}

.mfi-file-delete{
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #c30000;
    border-radius: 50%;
    top: 3px;
    left: 2px;
    position: absolute;
    cursor: pointer;
}

.mfi-file-delete:hover{
    background: #ff000014;
}

.majoris-file-status{
    color: #e90000;
    font-size: 11px;
}




.mugfi-file-notes{
    font-size: 11px;
    color: #00000073;
    margin-bottom: 5px;
}

.majoris-general-file-input-ui{
    display: flex;
    height: 42px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 2px;
    background: #e4ebef1f !important;
    padding: 0px 10px;
    border-radius: 5px;
    border: 1.5px solid #7c808245;
}

.majoris-general-file-input-wrapper{
    position: relative;
}

.mugfi-file-check{
    font-size: 21px;
    color: #00a729;
}

.mugfi-file-loading{
    font-size: 21px;
    animation: rotate 3s linear infinite;
}

.mugfi-file-ic{
    font-size: 21px;
}

.mugfi-file-text{
    font-size: 14px;
}

.mugfi-file-delete{
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #c30000;
    border-radius: 50%;
    top: 3px;
    left: 2px;
    position: absolute;
    cursor: pointer;
}

.mugfi-file-delete:hover{
    background: #ff000014;
}

.mugfi-file-status{
    color: #e90000;
    font-size: 11px;
}

.tri-footer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
}

.dl-attachment-btn{
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 2px 8px;
    border-radius: 5px;
    background: #00000008;
    color: #0c2fad;
}

.slider-post-wrapper .psi-wrapper{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 100%;
    width: 100%;
    gap: 15px;
}

.psi-mini-post-box{
    flex: 35;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    gap: 15px;
}

.psi-main-post-box{
    flex: 65;
    overflow: hidden;
}

.psimpb-item{
    flex: 1;
    overflow: hidden;
}

.psi-post-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.psi-top-wrapper{
    width: 100%;
    height: 100%;
}

.psi-top-wrapper > a{
    width: 100%;
    height: 100%;
    display: block;
}

.psi-top-wrapper .psi-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.psi-bottom-wrapper{
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    top: auto;
    padding: 10px 15px;
    background: #00000047;
    pointer-events: none;
    color: #fff;
}

.psi-main-post-box .swiper-wrapper{
    height: 100%!important;
}

.swiper-post-slider{
    height: 100%;
}


.swiper-post-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-post-slider .swiper-slide{
    border-radius: 10px;
    overflow: hidden;
}

.swiper-post-slider{
    position: relative;
}

.swiper-post-slider .swiper-pagination{
    left: 14px;
    top: 12px;
    bottom: auto;
    width: auto;
}

.swiper-post-slider .swiper-prev-next-wrapper{
    display: none;
    position: absolute;
    top: 35px;
    right: 15px;
    gap: 10px;
    height: 30px;
}

.swiper-post-slider:hover .swiper-prev-next-wrapper{
    display: flex;
}

.swiper-post-slider .swiper-button-prev,
.swiper-post-slider .swiper-button-next{
    position: unset;
    color: #000;
    width: 30px;
    height: 30px;
    background: #ffffffcf;
    border-radius: 50%;
}

/* .swiper-post-slider .swiper-pagination-bullet{
    border: 1px solid #b3b3b38c;
} */

.swiper-post-slider .swiper-pagination-bullet-active{
    background-color: #fff;
}

.swiper-post-slider .swiper-button-prev:after, .swiper-post-slider .swiper-button-next:after {
    font-size: 12px;
}

.psi-title{
    color: #fff;
    font-weight: 600;
    font-size: 19px;
    text-shadow: -1px 2px 5px #000000a3;
}

.spssi-text{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    font-weight: 600;
    background: #00000047;
    font-size: 19px;
    padding: 15px;
    color: #fff;
    text-align: right;
    text-shadow: -1px 2px 5px #000000a3;
}

@media (max-width: 768px) {
    .slider-post-wrapper .psi-wrapper {
        flex-direction: column-reverse;
    }
    .psi-mini-post-box {
        flex-direction: row;
    }
    .psi-title, .spssi-text {
        font-size: 15px;
    }
    .psi-bottom-wrapper {
        padding: 10px 8px;
    }
}

.homepage-web-wrapper .piw-item-wrapper{
    width: 100%;
    max-width: 1376px;
    overflow: hidden;
    border-radius: 8px;
}

.homepage-web-wrapper .post-item-root{
    display: flex;
    justify-content: center;
}

.count-down-timer-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    gap: 15px;
    padding: 10px 8px;
    border-radius: 10px;
}

.count-down-timer-wrapper .ad-timer-wrapper{
    font-size: 25px!important;
    color: unset!important;
}

.count-down-timer-wrapper .ad-label-wrapper{
    color: unset!important;
}

.count-down-timer-wrapper .ad-label-wrapper > i{
    font-size: 25px!important;
}

.piw-date-wrapper,
.piw-account-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 10px;
}

.piw-date-start,
.piw-account-start{
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 18px;
}

.piw-date-start > i,
.piw-account-start > i {
    font-size: 29px;
}

.piw-date-end,
.piw-account-end{
    direction: ltr;
    font-size: 17px;
}

.piw-account-namebox{
    display: flex;
    flex-direction: row;
    gap: 6px;
}

@media (max-width: 768px) {
    
    .piw-date-wrapper{
        padding: 14px 15px;
    }
    .piw-date-start{
        gap: 8px;
        font-size: 15px;
    }
    .piw-date-start > i{
        font-size: 17px;
    }
    .piw-date-end{
        direction: ltr;
        font-size: 13px;
    }
    .piw-account-namebox{
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .piw-account-end{
        direction: ltr;
        font-size: 13px;
    }
    .piw-account-wrapper{
        padding: 14px 15px;
    }
    .piw-account-start{
        gap: 10px;
        font-size: 15px;
    }
    .piw-account-start > i {
        font-size: 22px;
    }
    .pan-after{
        font-size: 12px;
    }
}


@media (min-width: 768px) {
    .web-page-root .piw-img > img{
        margin: 0px 22%;
    }
}


.post-password-form-input{
    height: 36px;
    width: 250px;
    direction: ltr;
    padding: 2px 10px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #00000036;
    background: #ebf1f22b;
    margin-bottom: 8px;
}

.post-password-form-input:focus,.post-password-form-input:active{
    outline: none;
    border: 1px solid #0086d9b1;
}

.img-text-float{
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 5px;
    margin-left: 10px;
}

.soirw-atag{
    display: block;
    width: 100%;
}

.form-init-price-box{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
}

.fpb-val{
    font-feature-settings: "ss02";
}

.fpb-value-box{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 19px;
    font-weight: 600;
}

.form-price-parent-box{
    font-feature-settings: "ss02";
    font-size: 17px;
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-price-parent-box .form-price-old{
    font-size: 16px;
    justify-content: flex-start;
    color: #5858587d;
}

.form-price-parent-box .form-init-price{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000000;
    font-weight: 600;
}

.form-price-parent-box .price-discount-box {
    font-size: 14px;
    color: #fff;
    background: #e20707;
    border-radius: 5px;
    padding: 2px 5px 0px;
    font-weight: 800;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
}

.form-added-price-box{
    font-feature-settings: "ss02";
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.form-final-price-box{
    font-feature-settings: "ss02";
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.form-added-price{
    font-size: 17px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
}

.form-final-price{
    font-size: 17px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
}

.form-price-mother-container{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 18px;
    border: 1px solid #0b6e3880;
    border-radius: 5px;
}

.line-dash {
    width: auto;
    height: 1px;
    border-bottom: 1px dashed #47817a21;
    flex-grow: 1;
    margin: 0px 6px;
}

.fpb-title{
    font-size: 15px;
    font-weight: 500;
    color: #063a1c;
}

.s2dp{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.fcw-item-box:hover{
    border: 1px solid #4183db9c;
}

.form-radio-group-wrapper-cb2 .frgw-item-box {
    width: 100%;
}

.order-response-container{
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #85858533;
    display: flex;
    flex-direction: column;
}

.gap15 {
    gap: 15px;
}

.orc-bc{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.orc-mtitle{
    font-size: 16px;
    font-weight: 500;
}

.order-response-container .dmd-input-wrapper{
    padding: 12px 0px;
}

.form-order-logs-container{
    width: 100%;
    padding: 10px 14px 20px;
    border-radius: 8px;
    border: 1px solid #85858533;
    display: flex;
    flex-direction: column;
}

.orc-logtitle{
    margin-right: 5px;
    font-size: 15px;
    font-weight: 500;
    padding: 6px;
    border-bottom: 1px solid #76767624;
    margin-bottom: 15px;
}

.orc-minitext{
    margin-right: 5px;
    font-size: 13px;
}

.fo-reply-box{
    display: flex;
}

.repbox-admin{
    justify-content: flex-start;
}

.repbox-system{
    justify-content: flex-start;
}

.repbox-user{
    justify-content: flex-end;
}

.fo-reply-box-inner{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    padding: 10px 15px;
    border: 1px solid #aaaaaa69;
    border-radius: 8px;
    max-width: 580px;
    min-width: 220px;
}

.repbox-admin > .fo-reply-box-inner{
    background: #cce3ea14;
}

.repbox-system > .fo-reply-box-inner{
    background: #f8efd436;
}

.repbox-user > .fo-reply-box-inner{
    background: #e1f0db4a;
}

.repbox-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #7b7b7b1c;
    margin-bottom: 3px;
}

.repbox-header > .rep-title{
    font-weight: 600;
}

.rsfrb{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.fo-reply-box-inner > table.table {
    margin-bottom: 8px;
}

.rsfrb .d{
    padding: 1px 4px;
    border-radius: 3px;
    border: 1px solid #158f35;
}

.rsfrb .qty{
    padding: 1px 3px;
    border-radius: 3px;
    border: 1px solid #6d839f;
    background: #d6eaee5c;
}

.rep-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.rep-footer{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 4px 0px;
}

.fo-visibilty{
    padding: 4px;
    border-radius: 3px;
    background: #374c8012;
    color: #6675da;
}

.form-order-log-box-inner{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rep-date{
    font-size: 14px;
}

.rep-btn-box{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.table {
    border-collapse: collapse;
    width: 100%;
}

.table, .table th, .table td {
    border: 1px solid #7a7a7a45;
}

.table th, .table td {
    padding: 6px;
    text-align: right;
}

.form-log-img-preview{
    display: block;
    max-height: 220px;
}

.rep-file-box{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rep-dl-parent{
    display: flex;
    justify-content: flex-end;
}

.form-dl-link{
    padding: 2px 5px;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #334a95;
    color: #334a95;
}

.form-resubmit-notif-box{
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    background: #ffecb8;
    margin-bottom: 10px;
}

.resubmit-price-class{
    opacity: 0.3;
}

.need-resubmit-form-box{
    border: 1px solid #e1c6a7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: 5px;
    background: #fff2dd;
    gap: 10px;
    margin-bottom: 8px;
    margin-top: 5px;
}

.nrfb-desc{
    font-size: 14px;
    color: #c54500;
}

.nrfb-bw{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.nrfb-btn{
    background: #f37000;
}

.fo-auto-redirect-text{
    font-size: 15px;
    font-weight: 500;
    color: #2c75d3;
}

.form-preview{
    max-width: 300px;
}

.fiw-camd-dual {
    display: flex;
    gap: 20px;
    flex-direction: row;
    width: 100%;
}

@media (max-width: 520px) {
    .fiw-camd-dual{
        flex-direction: column;
    }
}

.fiw-camd-dual .majoris-input-warpper{
    flex: 1;
}

.majoris-fmc{
    border-radius: 5px;
    border: 1.5px solid #7c808245;
    overflow: hidden;
    width: 100%;
    height: 280px;
    z-index: 50;
}

.leaflet-control-attribution{
    font-size: 10px;
    color: #000000b5;
}

.leaflet-control-attribution > a,
.leaflet-control-attribution > span{
    display: none;
}

.form-loc-text{
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 5px;
    background: #ffffff78;
    border: 1px solid #7d7d7d5e;
    display: inline-block;
    margin-bottom: 5px;
}

.form-loc-btn-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.form-loc-btn{
    font-size: 14px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 3px;
    background: #b4e2cd;
    color: #1b1f1c;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-loc-btn:hover{
    background: #1db06a;
    color: #fff;
}

.pcc-please-login{
    display: flex;
    flex-direction: row;
    padding: 25px 10px;
    border-radius: 8px;
    background: #dce3e847;
    border: 1px solid #82828236;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}