@charset "UTF-8";
@import url("fonts.css");
@import url("../fonts/icons/font/bootstrap-icons.css");

body {
    font-family: 'Tajawal-Regular';
    /* font-weight: 400; */
    color: var(--black);
    background-color: #ffffff;
    font-size: 16px;
}

input,
button,
select,
textarea {
    outline: 0 !important;
}

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

input[type="number"] {
    -moz-appearance: textfield;
}

/* Variables Start */

:root {
    --dark: #3f3f3f;
    --black: #000000;
    --red: #990000;
    --red2: #CB0000;
    --red3: #f20303;
    --lightRed: #FEF0F4;
    --purple: #40214d;
    --grey: #aaaaaa;
    --grey2: #B9B9B9;
    --grey3: #8d8d8d;
    --grey4: #9F9F9F;
    --grey5: #F5F5F5;
    --grey6: #F7F7F7;
    --grey7: #636363;
    --grey8: #EBEBEB;
    --grey9: #F1F1F1;
    --grey10: #d9d9d9;
    --green: #24989c;
    --greenHover: #3cb5b9;
    --dark-red: #c91e1e;
    --pink: #ED1C62;
    --pinkHover: #ff528c;
    --pink-light: #FCF5F2;
    --peach: #FFA58F;
    --peach2: #F1CCBC;
    --border: #E6E6E6;
    --white: #FFFFFF;
    --bg-gray: #f7f7f7;
    --lt-grey: rgb(143 143 143 / 16%);

    --brown: #D0A066;
    --yellowishBeige: #CDCB7C;
    --brownDark: #896123;
    --pinkDark: #CC5260;

    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");


    --light: "Tajawal-Light";
    --regular: "Tajawal-Regular";
    --medium: "Tajawal-Medium";
    --bold: "Tajawal-Bold";
    --extraBold: "Tajawal-ExtraBold";

    --popLight: "Poppins-Light";
    --popRegular: "Poppins-Regular";
    --popMedium: "Poppins-Medium";
    --popSemiBold: "Poppins-SemiBold";
    --popBold: "Poppins-Bold";


}



/* Variables end */
.bg-purple {
    background-color: var(--purple);
}

.bg-red {
    background-color: var(--red);
}

.bg-pink {
    background-color: var(--pink);
}

.text-dred {
    color: var(--dark-red);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-peach {
    background-color: var(--peach);
}

.bg-white {
    background-color: var(--white);
}

.light-red {
    background-color: var(--lt-grey);
}

.text-red {
    color: var(--red);
}

.bg-green {
    background-color: var(--green);
}

.text-grey {
    color: var(--grey);
}

.text-green {
    color: var(--green) !important;
}

.c-white {
    color: #fff !important;
}

.c-pink {
    color: var(--pink) !important;
}

.c-black {
    color: var(--black) !important;
}

.c-dark {
    color: var(--dark) !important;
}

*::-moz-selection {
    background: var(--pink);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--pink);
    color: #fff;
    text-shadow: none;
}

::placeholder {
    color: var(--grey2);
}

::-moz-placeholder {
    color: var(--grey2);
}

input[type="text"],
input[type="number"],
select.form-control{
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 45px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
textarea.form-control{
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 130px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
input[type="file"]{
    height: 45px;
    padding-bottom: 0;
}
input::file-selector-button{
    height: 43px;
}
.nowrap {
    white-space: nowrap;
}
.form-elements-wrap{
    position: relative;
    
}
.form-elements-wrap .enterPrice{
    padding-left: 80px;
}
.element-currency{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-right: 1px solid var(--border);
    display: flex;
    height: fit-content;
    padding: 0 15px 0 15px;
    font-family: var(--medium);
    font-size: 18px;
    color: var(--grey2);
}

.field-dataset select,
.field-dataset textarea,
.field-dataset input {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
}

.field-dataset select {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 48px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.field-dataset label,
.upload-section h6 {
    font-weight: 500;
    font-size: 23px;
    line-height: 24px;
    color: var(--purple);
    margin-bottom: 15px;
}

.field-dataset textarea {
    border: 1px solid var(--border);
    border-radius: 4px;
    height: 99px;
    resize: none;
    padding: 14px;
}

.field-dataset button {
    background: var(--red);
    border-radius: 4px;
    height: 50px;
    font-size: 22px;
    color: #ffffff;
    border: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

hr {
    background-color: var(--border);
    opacity: 1;
}

.section-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.02em;
}

#bannerSlider .swiper-pagination-bullet {
    width: 42px;
    height: 7px;
    background: rgba(218, 218, 218, 0.48);
    border-radius: 7px;
}

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


select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background-image: url(../images/angle-down.png);
    background-repeat: no-repeat;
    background-position: left 12px center;
    color: #898989;
    background-size: 14px;
}

.language-dropdown {
    width: 50px;
    background-position: right 0px center;
    padding-right: 20px;
}


.subscriber-box {
    background-image: url(../images/subscribe-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    height: 477px;
    background-color: #ffd13d;
    border-radius: 12px;
}

.dir-ltr {
    direction: ltr;
}

.dir-rtl {
    direction: rtl;
}

.flex-1 {
    flex: 1;
}

img {
    max-width: 100%;
}

.seprator-border {
    width: 1px;
    height: 23px;
}



.wishlist-btn {
    background-color: rgba(201, 30, 30, 0.06);
    width: 49px;
    height: 49px;
    padding-top: 5px;
}

.wishlist-btn i {
    font-size: 20.5px;
    display: block;
}

.elipsis-services {
    width: 90px;
    height: 90px;
    background: rgba(36, 36, 36, 0.69);
    transition: 0.3s ease-in-out all;
}

.services a {
    margin-right: 160px;
    font-weight: 500;
    font-size: 18px;
    color: var(--grey);
    transition: 0.3s ease-in-out all;
}

.services a:hover .elipsis-services {
    filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.18));
    -webkit-filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.18));
    -o-filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.18));
    -moz-filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.18));
    background: rgba(255, 43, 106, 0.44);
}

.services a:hover img {
    opacity: 1;
}

.services a:hover {
    color: var(--green);
}

.services a img {
    opacity: 0.7;
}

.banner-data-caption h1 {
    font-family: initial;
    font-size: 77px;
    font-weight: 700;
    margin-top: 20px;
}

.banner-data-caption p {
    color: #f4325a;
    font-weight: 700;
    font-size: 24px;
}

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

.slider-content-wrapper>.cards-main-wrapper {
    width: 100%;
}

.cards-section .cards-main-wrapper>* {
    margin-bottom: 30px !important;
}

.cards-section .cards-main-wrapper {
    margin-bottom: 20px;
}

.similar-section {
    direction: ltr !important;
}

.events-section {
    background-color: var(--pink-light);
    direction: ltr !important;
}

.event_date_time {
    display: flex;
    align-items: center;
}

.event_date_time>* {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event_date {
    margin-left: 15px;
    margin-bottom: 7px;
}

.event_date img {
    width: 14px;
}

.event_time {
    margin-bottom: 7px;
}

.event_date_time span {
    font-family: var(--popRegular);
    font-size: 12px;
    color: var(--grey4);
    white-space: nowrap;
}

.cards-main-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* .cards-main-wrapper > * {
    margin-bottom: 15px;
    position: relative;
    margin-top: 16px;
} */

.cmn-main-wrapper {
    display: flex;
    /* padding-top: 60px;
    padding-bottom: 60px; */
    flex-wrap: wrap;
}

.product-card {
    /* border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(17, 5, 44, 0.07);
    border: 1px solid #ededf4; */
    position: relative;
    /* cursor:pointer; */
    height: 100%;
    direction: rtl;
}

.product-image {
    height: 370px;
    display: flex;
    justify-content: center;
    /* border-radius: 8px 8px 0 0; */
    overflow: hidden;
    position: relative;
}

.blog-image {
    height: 240px;
}

.product-image a {
    width: 100%;
}

.product-image button,
.product-image a.btn {
    position: absolute;

}

.product-image a.btn-ex {
    bottom: 20px;
    width: fit-content;
    left: 0;
    right: 0;
    margin: auto;
}

.pdtBtns{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 16px;
    display: flex;
    gap: 16px;
    justify-content: center;
}
.pdtBtns button,
.pdtBtns a{
    position: relative;
    z-index: 5;
}

.pdtBtns:after {
    content: "";
    width: 100%;
    bottom: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    z-index: 1;
    height: 80px;
    left: 0px;
    right: 0px;
    opacity: .4;
}

.pdtBtnsCenter{
    position: absolute;
    bottom: 0;
    width: fit-content;
    height: fit-content;
    left: 0;
    right: 0;
    top: calc(0px - 30px);
    margin: auto;
    /* padding: 16px; */
    display: flex;
    gap: 16px;
    justify-content: center;
}

.product-content {
    padding: 23px 0 14px 0px;
    display: flex;
    flex-wrap: wrap;
}

.product-card .product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    /* Align the image to the top */
}

.product-card .product-title {
    display: flex;
    width: 100%;
}

.product-card .product-title a {
    font-size: 20px;
    margin-bottom: 2px;
    margin-top: 0;
    color: var(--black);
    text-decoration: none;
    font-family: var(--medium);
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* width: 100%; */
}

.product-card .pr-name {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: var(--grey);
    font-family: var(--medium);
    margin-bottom: 10px;
}

.product-price-status {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;

}

.product-card .product-title a.text_no_flow {
    text-overflow: unset;
    overflow: unset;
    white-space: unset;
}

.product-price-location {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
}

.product-card .product-price span {
    float: left;
    font-family: var(--bold);
    color: var(--pink);
    line-height: 20px;
}

.product-card .product-price span.p-price {
    font-size: 20px;
}

.product-card .product-price span.p-currency {
    font-size: 16px;
    padding-bottom: 2px;
}

.product-card .product-status {
    font-size: 16px;
    font-family: splart;
}

.product-tag {
    position: absolute;
    top: 25px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: 16px;
    padding-left: 12px;
    padding-right: 16px;
    line-height: 20px;
    padding-bottom: 3px;
    z-index: 5;
}

.product-tag:before {
    content: '';
    background-image: url(../images/svg/tag-cut.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 8px;
    height: 8px;
}

.vl-icon {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
}

.product-address {
    margin-top: 12px;
    margin-bottom: 4px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;

    font-weight: 500;
    font-size: 16px;
    color: #9D9D9D;
}

.product-price-location .product-city {
    font-family: var(--medium);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: var(--grey);
}

.product-address .product-city i {
    font-size: 12px;
    color: #9D9D9D;
}

.product-address .product-days span {
    font-family: splart;
}

.product-print {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 3px 0 5px 0;
}

.product-print a {
    font-size: 16px;
    font-family: splart;
    color: var(--purple);
    text-decoration: underline;
}

.load-more-btn {
    width: 250px;
    height: 49px;
    background-color: #ffffff;
    border: 1px solid #b9b9b9;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s ease-in-out all;
}

.product-action {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 10px 0 10px 0;
}

.product-action a {
    color: #fff;
    font-size: 16px;
    font-family: splart;
    text-decoration: none;
}

.product-content-deav {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
}

.product-content-deav-img {
    min-width: 45px;
    max-width: 45px;
    height: 45px;
}

.product-content-tina {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.product-content-deav_img .product-content-tina {
    display: flex;
    width: calc(100% - 57px);
    flex-wrap: wrap;
}

.site_title {
    display: flex;
    width: 100%;
    color: var(--black);
    font-family: var(--medium);
    font-size: 30px;
}

.pdt_nm_txt {
    display: flex;
    width: 100%;
    color: var(--grey2);
    font-family: var(--medium);
    font-size: 16px;
}

.like_share_delivery {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.delivery_fast {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status_badge {
    display: flex;
    width: fit-content;
    padding: 0 10px 0 10px;
    color: var(--white);
    font-family: var(--regular);
    white-space: nowrap;
}

.status_badge_sm {
    font-size: 16px;
    line-height: 16px;
    border-radius: 10px;
    padding-top: 2px;
    padding-bottom: 4px;
}

.like_share_wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

button.btn_ls {
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--grey4);
}

.bi-heart-fill {
    color: var(--pink);
}

.btn_ls i {
    display: flex;
}

.btn_ls i:hover {
    color: var(--pink);
}

.delivery_fast_icon svg {
    width: 35px;
}

.delivery_fast_icon svg path {
    fill: var(--pink);
}

.pdt_desc {
    display: flex;
    width: 100%;
    color: var(--grey3);
    line-height: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.txtAll {
    display: flex;
    width: 100%;
    color: var(--grey3);
    line-height: 25px;
    font-size: 16px;
}
.txtcdntl{
    display: flex;
    width: 100%;
    color: var(--grey3);
    line-height: 25px;
    font-size: 18px;
}
.pdt_cdntl {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    gap: 15px;
    align-items: center;
}

.pdt_cdntl_title {
    font-family: var(--medium);
    font-size: 18px;
    min-width: 90px;
    max-width: 90px;
    display: flex;
    align-items: center;
}
.pdt_cdntl_title{
    min-width: 120px;
    max-width: 120px;
}
.pdt_cdntl_cs {
    display: flex;
    width: 100%;
    gap: 24px;
}

.pdt_cdntl_blocks {
    display: flex;
    width: 48px;
    height: 46px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 5px;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--medium);
    color: var(--grey2);
    cursor: pointer;
}

.pdt_cdntl_blocks:hover,
.pdt_cdntl_blocks.active {
    border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white);
}

.pdt_cdntl_blocks.active:before,
.pdt_cdntl_blocks:hover:before {
    content: '';
    width: 62px;
    height: 60px;
    border: 1px solid var(--black);
    position: absolute;
    left: -8px;
    top: -8px;
    border-radius: 8px;
    background-color: transparent;
}

.pdt_cdntl_blocks.col_brown {
    background-color: var(--brown);
    border: 1px solid var(--brown);
}

.pdt_cdntl_blocks.col_brown.active:before,
.pdt_cdntl_blocks.col_brown:hover:before {
    border: 1px solid var(--brown);
}

.pdt_cdntl_blocks.col_yellowish_beige {
    background-color: var(--yellowishBeige);
    border: 1px solid var(--yellowishBeige);
}

.pdt_cdntl_blocks.col_yellowish_beige.active:before,
.pdt_cdntl_blocks.col_yellowish_beige:hover:before {
    border: 1px solid var(--yellowishBeige);
}

.pdt_cdntl_blocks.col_brown_dark {
    background-color: var(--brownDark);
    border: 1px solid var(--brownDark);
}

.pdt_cdntl_blocks.col_brown_dark.active:before,
.pdt_cdntl_blocks.col_brown_dark:hover:before {
    border: 1px solid var(--brownDark);
}

.pdt_cdntl_blocks.col_pink_dark {
    background-color: var(--pinkDark);
    border: 1px solid var(--pinkDark);
}

.pdt_cdntl_blocks.col_pink_dark.active:before,
.pdt_cdntl_blocks.col_pink_dark:hover:before {
    border: 1px solid var(--pinkDark);
}

.pdt_cdntl_blocks.col_purple {
    background-color: var(--purple);
    border: 1px solid var(--purple);
}

.pdt_cdntl_blocks.col_purple.active:before,
.pdt_cdntl_blocks.col_purple:hover:before {
    border: 1px solid var(--purple);
}

.pdt_cdntl_pop {
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: center;
}

.pdt_cdntl_pop_link {
    display: flex;
    text-decoration: underline;
    color: var(--grey2);
    font-size: 16px;
    font-family: var(--medium);
}

.pdt_cdntl_pop_link:hover {
    color: var(--pink);
}


.svc_pr_tg_title {
    font-family: var(--medium);
    font-size: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.svc_pr_tg_dl {
    display: flex;
    width: 100%;
}






.load-more-btn:hover {
    background-color: var(--red);
    color: #fff;
}

.store-img {
    max-width: 170px;
}

.mockup-display {
    height: 500px;
    width: auto;
}

.download-app-section h3 {
    font-size: 48px;
    line-height: 96px;
    margin-bottom: 30px;
}

footer ul.helper-links {
    padding-right: 0;
}

footer ul.helper-links-cols {
    display: flex;
    gap: 15px;
}

footer ul.helper-links-cols .hlc-lst {
    width: calc(50% - 10px);
}

.helper-links li a {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin-bottom: 20px;
    display: inline-block;
}

.helper-links li a:hover {
    color: var(--pink);
}

footer ul.social-links {
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.social-links li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    background-color: var(--white);
    box-shadow: 0px 10px 12px -6px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 10px 12px -6px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 10px 12px -6px rgba(0, 0, 0, 0.25);
}

.social-links li a i {
    font-size: 22px;
    line-height: 2;
}

.social-links li a:hover {
    transform: scale(1.1);
}

.social-links li a.facebook {
    color: #1877f2;
}

.social-links li a.twitter {
    color: #1d9bf0;
}

.social-links li a.instagram {
    color: #c13584;
}

.site-rights-bar {
    padding: 18px 13px 18px 13px;
    /* line-height: 1; */
    background-color: var(--black);
    font-size: 14px;
}

.pkg-card {
    border-radius: 14px;
    padding: 32px 40px;
}

footer {
    background-color: var(--pink-light);
    padding-top: 40px;
    padding-bottom: 40px;
}

footer a {
    display: block;
}

footer .footer_description {
    display: flex;
    width: 100%;
    color: var(--black);
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.01em;
}

.footer_menu_h {
    font-size: 20px;
    font-family: var(--bold);
    color: var(--pink);
    margin-bottom: 15px;
}

.ent-em {
    display: flex;
    width: 100%;
    padding-left: 80px;
    color: var(--black);
    margin-bottom: 12px;
}

.main-app-wrap {
    padding-top: 100px;
}

header {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f3f3;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header-logo-btn{
    display: flex;
    gap: 10px;
    align-items: center;
}
.navbar-single-btn {
    display: none;
}

.navbar-toggler {
    padding: .25rem 0.45rem;
}

.header-logo {
    margin-left: 50px;
}

.navbar-header {
    margin-right: 0;
    margin-left: auto;
}

.search_header_wrapper {
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    margin: auto;
    width: 280px;
    background-image: url(../images/svg/searchBg.svg);
    height: 50px;
}

.addCommFloat{
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 50;
    /* width: 200px; */
    display: none;
}
.addCommFloatIcon{
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background-color: var(--pink);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.22);
}
.addCommFloatIcon svg{
    width: 30px;
    height: auto;
}

.addCommFloatCart{
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 50;
    /* width: 200px; */
}
.addCommFloatIconCart{
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.22);
}
.addCommFloatIconCart svg{
    width: 30px;
    height: auto;
}


.btn-community{
    position: absolute;
    top: -105px;
    left: 0;
    display: none !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.22);
}
.dropdown-add{
    position: absolute;
    top: -52px;
    left: 0;
    display: none !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.22);
}
.addCommFloat .btn-medium{
    width: 110px;
}
.addCommFloat.active .btn-community,
.addCommFloat.active .dropdown-add{
    display: flex !important;
}
.addCommFloat .dropdown-item{
    text-align: right;
    font-family: var(--medium);
}
.addCommFloatIcon path{
    color: var(--white);
    fill: var(--white);
    stroke: var(--white);
}
.comIco{
    display: flex;
}
.addCommFloat .crossIco{
    width: 24px;
    display: none;
}

.addCommFloat.active .comIco{
    display: none;
}
.addCommFloat.active .crossIco{
    display: flex;
}





.search_trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10px;
    font-size: 16px;
    color: var(--grey4);
    cursor: pointer;
    margin: 5px 40px 0 0;
}

.svg_Srach_Bg {
    position: absolute;
    top: 0;
    left: 0;
}

.search_trigger:hover {
    color: var(--pink);
}

.search_trigger:hover svg path {
    fill: var(--pink);
}

body.modal-search-b header {
    z-index: 1060;
}

.modal-search {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 100px 0 0 0;
    border-radius: none;
}

.modal.fade .modal-dialog {
    transition: transform .7s ease-out;
    transform: translate(0, -100px);
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-search .modal-content {
    border: none;
    border-radius: 0;
}

#search-header.modal {
    z-index: 1050;
}

.btn-close.search-close {
    padding: 0;
    left: 1.5rem;
    background-color: transparent;
    width: 16px;
    height: 16px;
    top: 10px;
}

.search-modal-body {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
}

.search-section {
    padding-left: 30px;
}

.search-modal-body {
    background-color: var(--pink-light);
}

.search_header_full {
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    height: 84px;
    display: none;
    background-image: url(../images/elements/search-full-bg.png);
    background-repeat: no-repeat;
    background-size: 1399px 84px;
    background-position: center;
}

.search_header_full .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 19px;
}

.search-for-products {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-row-f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.location-selection select {
    padding-right: 15px;
    padding-left: 34px;
    border: none;
    background-color: var(--grey5);
    box-sizing: border-box;
    border-radius: 4px;
    width: 297px;
    height: 36px;
    background-position: left 12px center;
    font-size: 14px;
}

.location-selection select option {
    font-family: var(--regular);
}

.search-icon-input {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.search-icon-h {
    height: 100%;
    align-items: center;
    padding: 0 10px 0 10px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.search-icon-input input {
    padding: 0 45px 0 15px;
    width: 100%;
    color: var(--dark);
    font-size: 15px;
    font-family: var(--regular);
    background-color: var(--grey5);
    border-radius: 4px;
    height: 36px;
    border: none;
}

.search-for-products button {
    border-radius: 4px;
    min-width: 76px;
    font-size: 16px;
    line-height: 36px;
    padding: 0 0 0 0;
    height: 100%;
    font-family: var(--medium);
}

.search_close {
    position: absolute;
    top: 10px;
    left: 96px;
    width: 16px;
    height: 16px;
    display: flex;
    cursor: pointer;
}

.search_close svg {
    width: 18px;
}

.search_close:hover svg path {
    stroke: var(--red2);
}

.modal-backdrop.fade.search-backdrop {
    z-index: 990;
    top: 100px;
    display: none;
}

.modal-backdrop.fade.search-backdrop.show {
    display: block;
}

.modal-search-b .modal-backdrop.fade.search-backdrop {
    top: 100px;
}

.search-close {
    z-index: 5;
    position: absolute;
}









.navbar-toggler:focus {
    box-shadow: 0 0 0 0;
}

.header-container {
    justify-content: space-between;
}

header a {
    font-size: 16px;
    line-height: 27px;
    color: var(--purple);
    font-family: 'Tajawal-Medium';
}

header a:hover {
    color: var(--red);
}

ul.navbar-nav {
    padding-left: 0px;
    padding-right: 0px;
    gap: 5px;
}

li.list-inline-item {
    margin: 0 !important;
}

ul.navbar-nav li.list-inline-item {
    margin: 0;
}

ul.navbar-nav li .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

ul.navbar-nav li .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    margin-right: .255em;
    vertical-align: 0;
    content: "";
    border: none;
    width: 13px;
    height: 7px;
    background-image: url(../images/drop-down-arrow-light.svg);

}

.right-side-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .right-side-nav li{
    display: ;
} */
.right-side-nav>ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-side-nav>ul li {
    position: relative;
}

.right-side-nav>ul>li a,
.right-side-nav>ul>li a img {
    float: left;
}

header a#nonotifound {
    display: flex;
    width: 100%;
    justify-content: center;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .90);
}

.pkg-header .pkg-duration {
    font-weight: 600;
    font-size: 40px;
    line-height: 72px;
    letter-spacing: 0.02em;
}

.pkg-header .pkg-duration span {
    letter-spacing: 0.02em;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.pkg-header {
    border-bottom: 1px solid #e0e0e0;
}

.pkg-body {
    padding-top: 14px;
}

.pkg-btn {
    height: 49px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    background: #ffbd12;
    border-radius: 4px;
}

/**********************
    Commons Start
**********************/
/* .main-app-wrap > *{
    padding-left: 15px;
    padding-right: 15px;
} */
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1500px;
    position: relative;
}

section {
    display: block;
    width: 100%;
    direction: rtl;
}

.common-section {
    padding-top: 60px;
    padding-bottom: 60px;
    direction: rtl;
}

.products-section {
    padding-bottom: 20px;
}

.primary-heading {
    display: flex;
    font-size: 35px;
    color: var(--black);
    line-height: 45px;
    width: 100%;
}

/* .btn.btn-primary{
    display: flex;
    padding: 4px 24px 4px 24px;
    font-family: var(--medium);
    font-size: 20px;
    line-height: 40px;
    background-color: var(--pink);
    border-radius: 8px;
    border: 1px solid var(--pink);
    white-space: nowrap;
} */

/*******************Button Styling********************/


.btn {
    padding: 8px 24px 8px 24px;
    color: var(--white);
    border: transparent;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    /* min-width: 130px; */
    white-space: nowrap;
    gap: 7px;
    font-family: var(--medium);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    white-space: nowrap;
    text-align: center;
}

.btn.btn-primary {
    background-color: var(--pink);
    border: 1px solid var(--pink);
}

.btn.btn-primary:hover {
    background-color: var(--pinkHover);
}

.btn:focus {
    box-shadow: none;
}

.btn.btn-secondary {
    background-color: var(--green);
    border: 1px solid var(--green);
}

.btn.btn-secondary:hover {
    background-color: var(--greenHover);
}

.btn.btn-white-green {
    background-color: var(--white);
    color: var(--green);
    border: 1px solid var(--white)
}

.btn.btn-white-green:hover {
    background-color: var(--green);
    color: var(--white);
}

.btn.btn-peach {
    background-color: var(--peach);
    color: var(--white);
    border: 1px solid var(--peach);
}

.btn.btn-peach:hover {
    background-color: var(--peach2);
}

.btn.btn-white-peach {
    background-color: var(--white);
    color: var(--peach);
    border: 1px solid var(--white)
}

.btn.btn-white-peach:hover {
    background-color: var(--peach);
    color: var(--white);
}

.btn.btn-white-grey {
    background-color: var(--white);
    color: var(--grey);
    border: 1px solid var(--border)
}

.btn.btn-white-grey:hover {
    border: 1px solid var(--pink);
    background-color: var(--pink);
    color: var(--white);
}

.btn.btn-white-black {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.btn.btn-white-black:hover {
    border: 1px solid var(--pink);
    background-color: var(--pink);
    color: var(--white);
}

.btn.btn-peach-white {
    background-color: var(--peach);
    color: var(--white);
    border: 1px solid var(--peach);
}

.btn.btn-peach-white:hover {
    border: 1px solid var(--pink);
    background-color: var(--pink);
    color: var(--white);
}

.btn.btn-white-pink {
    background-color: var(--white);
    color: var(--pink);
    border: 1px solid var(--pink);
}

.btn.btn-white-pink:hover {
    border: 1px solid var(--pink);
    background-color: var(--pink);
    color: var(--white);
}

.btn.btn-red-white {
    background-color: var(--red2);
    color: var(--white);
    border: 1px solid var(--red2);
}

.btn.btn-red-white:hover {
    border: 1px solid var(--red3);
    background-color: var(--red3);
    color: var(--white);
}

.btn.btn-grey {
    background-color: var(--grey8);
    color: var(--grey4);
    border: transparent;
}

.btn.btn-grey:hover {
    opacity: 0.9;
}

.btn.btn-transparent-green {
    color: var(--green);
}

.btn.btn-transparent-green:hover {
    color: var(--pink);
}


/* .btn-primary-back {
    padding: 6px 15px 6px 6px;
}

.btn-box-reverse {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.btn.text-center {
    text-align: center !important;
    justify-content: unset !important;
    display: block;
    line-height: 34px;
}

.btn.text-center.btn-small {
    line-height: 28px;
}

.btn.btn-center-wa {
    text-align: center !important;
    justify-content: unset !important;
    display: block;
    line-height: 42px;
    padding: 0px 15px 0px 15px;
}

.btn.btn-center-img img {
    margin-right: 10px;
    max-width: 28px;
    max-height: 28px;
}

.btn.text-center .btn-box {
    float: right;
} */


.btn.text-center span {
    position: relative;
}


.btn-box {
    max-width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.btn-box img {
    max-width: 18px;
    max-height: 18px;
}

.btn-small {
    padding: 3px 13px 3px 13px;
    font-size: 16px;
    border-radius: 5px;
}
.btn-ex-small {
    padding: 2px 10px 2px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.btn-medium {
    padding: 6px 15px 6px 15px;
    font-size: 18px;
    border-radius: 5px;
}

/* .add-on-add button {
    height: 32px;
    width: 125px;
    font-size: 15px;
    
} */
/*****************************************************/
/**********************
    Commons End
**********************/
.add-on-add {
    display: flex;
    gap: 7px;
}

/**********************
   Card Design Start
**********************/

.property-view-col {
    position: relative;
    margin-bottom: 30px;
}

.property-detail-area {
    /* display: flex; */
    flex-wrap: wrap;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
}

.property-thumb-area {
    width: 100%;
    position: relative;
    height: 200px;
}

.rate-property-thumb-area {
    max-width: 285px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
}

.favorite-property {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.favorite-property a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.favorite-property a img {
    width: 18px;
    margin-top: 1px;
}

.favorite-property .p-heart {
    display: flex;
}

.favorite-property .p-heart-o {
    display: none;
}

.favorite-property.active .p-heart {
    display: none;
}

.favorite-property.active .p-heart-o {
    display: flex;
}

.rating-property {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 11px;
    color: var(--white);
    z-index: 5;
    gap: 5px;
}

.rating-property img {
    width: 15px;
}

.badge-property {
    position: absolute;
    top: 16px;
    left: 4px;
    width: 83px;
    height: 41px;
    background-repeat: no-repeat;
    background-size: 100%;
    color: var(--white);
    z-index: 5;
    font-size: 12px;
    padding: 15px 5px 9px 10px;
}

.badge-p-green {
    background-image: url(../images/icons/badgeGreen.svg);
}

.badge-l-green.badge-property {
    background-image: url(../images/icons/badgeGreenLarge.svg);
    width: 114px;
}

.badge-p-orange {
    background-image: url(../images/icons/badgeOrange.svg);
}

.property-content-area {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

a.property-title {
    font-size: 15px;
    color: var(--orange);
    text-decoration: none;
}

a.property-title:hover {
    color: var(--orangeHover);
}

.property-sub-gy {
    font-size: 12px;
    color: var(--grey2);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 3px 0 3px 0px;
}

.property-sub-gy img {
    width: 15px;
}

.property-price-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 13px;
    color: var(--blue);
}

/**********************
   Card Design End
**********************/


/**********************
    Banner Start
**********************/

.banner-section {
    height: 500px;
    width: 100%;
    overflow: hidden;
    /* direction: rtl; */
}

.banner-section .slick-slide {
    direction: ltr;
}

.banner-wrap {
    /* display: flex; */
    width: 100%;
    height: 500px;
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 !important;
    overflow: hidden;
}

.banner-wrap-1 {
    background-image: url(../images/banner-bg.png);
}

.banner-wrap-2 {
    background-image: url(../images/banner-bg-2.png);
}

.banner-wrap-3 {
    background-image: url(../images/banner-bg-3.png);
}

.element {
    position: absolute;
}

.element1 {
    left: -120px;
    bottom: -55px;
}

.element2 {
    right: -94px;
    top: 50px;
}

.element3 {
    left: 30px;
    bottom: 0px;
}

.banner-wrap-1 .element3 {
    width: 380px;
}

.banner-wrap-2 .element3 {
    width: 400px;
}

.banner-content-row {
    height: 100%;
}

.banner-content-row>* {
    position: relative;
}

.banner-content {
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
    direction: rtl;
}

.banner-content-inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    max-width: 500px;

}

.banner-wrap-3 .banner-content-inner {
    max-width: 100%;
    justify-content: center;
}

.banner-heading-1 {
    display: flex;
    width: 100%;
    font-family: var(--light);
    font-size: 40px;
    color: var(--black);
    padding-left: 180px;
    line-height: 50px;
}

.banner-heading-2 {
    display: flex;
    width: 100%;
    font-family: var(--light);
    font-size: 40px;
    color: var(--pink);
    line-height: 50px;
}

.banner-h-2 {
    padding-left: 0;
    color: var(--white);
}

.banner-h-3 {
    width: 100%;
    padding-left: 300px;
    padding-right: 300px;
    text-align: center;
    justify-content: center;
}

.ag-stores {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/**********************
    Banner End
**********************/

/**********************
 Main Categories Start
**********************/

.categories-main-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.categories-grid-row {
    /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px; */
    /* display: flex; */
    margin-top: 40px;
    width: 100%;
    direction: ltr;
    /* padding-left: 22px;
    padding-right: 22px; */
}

.col-categories-grid {
    /* max-width: 300px; */
}

.main-cates-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.cates-icon {
    display: flex;
    width: 100%;
    justify-content: center;
}

.cates-title {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 24px;
    font-family: var(--medium);
}


/**********************
 Main Categories End
**********************/



/**********************
    Explore Start
**********************/

.explore-section {
    margin-top: 80px;
    direction: rtl;
}

.explore-section .explore-wrapper {
    display: flex;
    width: 100%;
    height: 277px;
    background-image: url(../images/explore-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.explore-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1050px;
}

.explore-girl {
    position: absolute;
    bottom: 0;
    left: 275px;
}

/**********************
    Explore End
**********************/

/**********************
 Designer Makeup Slider Start
**********************/
.sq-sdr-section {
    direction: ltr;
}

.sq-sdr-main-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
}

.sq-sdr-grid-row {
    /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px; */
    /* display: flex; */
    margin-top: 40px;
    width: 100%;
    direction: ltr;
}

.col-sq-sdr-grid {
    position: relative;
}

.col-sq-sdr-grid:after {
    content: "";
    width: 100%;
    bottom: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.73) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    z-index: 1;
    height: 80px;
    left: 0px;
    right: 0px;
}

.main-sq-sdr-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.main-sq-sdr-wrapper>a {
    width: 100%;
}

.sq-sdr-img {
    display: flex;
    width: 100%;
    justify-content: center;
}

.sq-sdr-img img {
    width: 100%;
}

.sq-sdr-title {
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-family: var(--medium);
    position: absolute;
    bottom: 25px;
    left: 7px;
    right: 7px;
    color: var(--white);
    text-align: center;
    z-index: 5;
}

.sq-sdr-title a {
    font-size: 18px;
    font-family: var(--medium);
    color: var(--white);
    text-decoration: none;
}

.col-cl-sdr-grid .sq-sdr-title {
    bottom: 15px;
}

/**********************
 Designer Makeup Slider End
**********************/


/**********************
 Clients Slider Start
**********************/

.boutique-section {
    background-color: var(--pink-light);
    direction: ltr !important;
}

.cl-sdr-main-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
}

.cl-sdr-grid-row {
    margin-top: 40px;
    width: 100%;
    direction: ltr;
}

.grid-row-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    width: 100%;
}

.grid-row-boutique {
    margin-top: 40px;
}

.col-cl-sdr-grid {
    /* max-width: 300px; */
    position: relative;
}

.main-cl-sdr-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.main-cl-sdr-wrapper>a {
    width: 100%;
}

.cl-sdr-img {
    display: flex;
    width: 100%;
    justify-content: center;
}

.cl-sdr-img>img {
    width: 100%;
}

.cl-sdr-title {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 24px;
    font-family: var(--medium);
}

.cl-sdr-img-clients {
    position: relative;
}

.cl-sdr-title-clients {
    margin-top: 20px;
    font-size: 20px;
}

.cl-sdr-title a {
    font-size: 20px;
    font-family: var(--medium);
    color: var(--black);
    text-decoration: none;
}

.cl-sdr-title a:hover {
    color: var(--pink);
}

.cl-sdr-img-clients .cl-sdr-img-bq {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/**********************
 Clients Slider End
**********************/


/**********************
    Spotlight Start
**********************/

.spotlight-section {
    margin-top: 20px;
    margin-bottom: 60px;
    direction: rtl;
}

.spotlight-section .spotlight-wrapper {
    display: flex;
    width: 100%;
    height: 277px;
    background-image: url(../images/elements/spotlight-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0 30px;
}

.spotlight-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1050px;
    justify-content: center;
}

.spotlight-content>* {
    text-align: center;
    justify-content: center;
}

.spotlight-girl {
    position: absolute;
    bottom: 0;
    left: 275px;
}

/**********************
    Spotlight End
**********************/






/***************************
  Premium Categories Start
****************************/

.premium-category-section {
    background-color: var(--pink-light);
    direction: ltr;
}

.premium-categories-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.premium-categories-Tabs-list {
    width: 100%;
    display: flex;
    margin-top: 60px;
}

.premium-categories-list {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--peach);
    padding: 0 40px 20px 40px;
    margin-bottom: 60px;
    justify-content: space-between;
    direction: rtl;
}

.premium-categories-list li button.nav-link {
    padding: 0;
    background-color: transparent;
    margin: 0;
    border: 0;
    font-size: 20px;
    font-family: var(--medium);
    color: var(--black);
    position: relative;
}

.premium-categories-list li button.nav-link.active {
    font-family: var(--bold);
    color: var(--pink);
}

.premium-categories-list li button.nav-link:hover {
    color: var(--pink);
}

.premium-categories-list li button.nav-link.active::after {
    content: '';
    width: 16px;
    height: 5px;
    background-color: var(--pink);
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
}

.premium-categories-list li button.nav-link:hover::after {
    content: '';
    width: 16px;
    height: 5px;
    background-color: var(--pink);
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
}

.premium-categories-Tabs-list .tab-content {
    direction: ltr;
}

.slick-slide {
    margin-left: 10px;
    margin-right: 10px;
    direction: rtl;
}

/***************************
  Premium Categories End
****************************/

.modal_following .modal-body {
    padding: 0;
}

.modal-content {
    border-radius: 20px;
    /* border: 0; */
}

.followers_search {
    padding: 1rem;
}

.input_with_icon {
    display: flex;
    width: 100%;
    position: relative;

}

.input_with_icon input {
    padding-left: 45px;
}

.input_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
}

.input_with_icon_right input {
    padding-left: 15px;
    padding-right: 45px;
}

.input_with_icon_right .input_icon {
    left: auto;
    right: 0;
}

input[type="text"].bg_grey_input {
    background: var(--grey5);
}

.svc_pr_tg_tsw {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 16px;
}

.svc_pr_tg_ts {
    display: flex;
    width: 100%;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 10px 8px 10px;
    text-align: center;
    direction: ltr;
    justify-content: center;
    color: var(--grey2);
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.svc_pr_tg_ts.active,
.svc_pr_tg_ts:hover {
    background-color: var(--green);
    color: var(--white);
    border: 1px solid var(--green);
}

.followers_container {
    display: flex;
    width: 100%;
    padding: 1rem;
    flex-wrap: wrap;
}

.followers_wrapper {
    display: flex;
    width: 100%;
    padding: 16px 0 16px 0;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.followers_wrapper:last-child {
    border: 0;
}

.followers_avatar {
    min-width: 48px;
    max-width: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
}

.followers_content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;

}

.followers_name_status {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.followers_name_status * {
    display: flex;
    width: 100%;
}

.followers_name {
    font-size: 16px;
    font-family: var(--medium);
}

.followers_status {
    font-size: 14px;
    font-family: var(--medium);
    color: var(--grey4);
}

.community_profile_box {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    padding-left: 15px;
    padding-right: 26px;
    padding-bottom: 32px;
}

.community_avatar {
    display: flex;
    min-width: 70px;
    max-width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.community_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts_col {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 60px;
}

.post_about_user_wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.post_about_user_wrapper:last-child {
    border-bottom: none;
}

.post_about_user {
    display: flex;
    width: 100%;
    margin-bottom: 16px;
}

.post_about_avatar {
    display: flex;
    min-width: 46px;
    max-width: 46px;
    border-radius: 50%;
    overflow: hidden;
}

.post_about_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post_about_user {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
}

.post_about_detail {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 22px;
}

.post_about_detail>* {
    display: flex;
    align-items: center;

}

.post_about_name {
    display: flex;
    font-size: 16px;
    color: var(--black);
    font-family: var(--medium);
}

.post_about_time {
    display: flex;
    font-size: 16px;
    color: var(--grey2);
    font-family: var(--medium);
}

.post_cover_wrapper {
    display: flex;
    width: 100%;
    max-height: 310px;
    align-items: center;
}

.post_cover_img {
    padding-bottom: 69px;
    position: relative;
    max-height: 372px;
}

.post_cover_wrapper img {
    /* max-width: 100%;
    max-height: 100%; */
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.post_cover_wrapper video {
    width: 100%;
    height: auto;
}

.post_detail_wrapper {
    position: absolute;
    bottom: 0;
    display: flex;
    background-color: var(--grey6);
    width: 100%;
    padding: 12px 16px 12px 16px;
    align-items: center;
    justify-content: space-between;
}

.post_title_desc {
    display: flex;
    width: calc(100% - 115px);
    flex-wrap: wrap;
}

.post_title {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: var(--black);
    font-family: var(--medium);
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post_desc {
    display: flex;
    width: 100%;
    font-size: 14px;
    color: var(--grey2);
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post_desc_location {
    align-items: center;
    gap: 7px;
}

.suggest-col .card-translate {
    border-right: 1px solid var(--border);
    /* padding: 24px; */
}

.suggest_head_title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-right: 24px;
}

.suggest_title {
    font-size: 20px;
    font-family: var(--medium);
}

.suggest_view a {
    display: block;
    font-size: 16px;
    font-family: var(--medium);
    color: var(--grey4);
    text-decoration: none;
}

.suggest_view a:hover {
    color: var(--pink);
}

.suggest_wrapper {
    display: flex;
    width: 100%;
    padding: 16px 24px 16px 0;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.suggest_avatar {
    min-width: 48px;
    max-width: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
}

.suggest_content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.suggest_name_status {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.suggest_name_status * {
    display: flex;
    width: 100%;
}

.suggest_name {
    font-size: 16px;
    font-family: var(--medium);
}

.suggest_status {
    font-size: 14px;
    font-family: var(--medium);
    color: var(--grey4);
}

.btn-tiny {
    padding: 0;

}

.common-price {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
}

.common-price span {
    float: left;
    font-family: var(--medium);
    color: var(--pink);
    line-height: 20px;
}

.common-price span.p-price {
    font-size: 20px;
}

.common-price span.p-currency {
    font-size: 16px;
    padding-bottom: 2px;
}




.features-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #565656;
    padding-bottom: 14px;
}

.pkg-features {
    border-right: 1px dashed #a5a5a5;
}

.pkg-features ul li {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #757575;
    margin-bottom: 20px;
}

.pkg-features ul li:last-child {
    margin-bottom: 0;
}

.pkg-features ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #464646;
    right: -5px;
    top: 7px;
    position: absolute;
}

.detail-wrapper {
    border-radius: 8px;
}

.detail-wrapper h5 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.product-detail h6 {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.product-detail h1 {
    font-size: 54px;
    line-height: 66px;
    letter-spacing: 0.02em;
    padding-bottom: 15px;
}

.border-bottom-grey {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-captions {
    margin-top: 18px;
}

.detail-captions p {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.6);
}

.detail-captions h4 {
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
    letter-spacing: 0.02em;
    color: var(--purple);
}

.comments-list h3 {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.02em;
}

.comments-list p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #707070;
}

.comments-list .dropdown i {
    color: #959595;
    font-size: 18px;
}

.comments-list .dropdown-menu a {
    font-size: 14px;
}

.comments-list textarea {
    background: #fafafa;
    border: 1px solid #b6b6b6;
    height: 124px;
    border-radius: 8px;
    resize: none;
    font-size: 14px;
    line-height: 32px;
    text-align: right;
    letter-spacing: 0.01em;
    color: #cdcdcd;
}

.post-green-btn {
    border-radius: 8px;
    width: 201px;
    height: 49px;
    display: block;
}

/* Gallery Slider */

.gallery-slider.swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-slider-container .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-slider-container .gallery-slider .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.gallery-slider .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
}

.gallery-slider .swiper-pagination-bullet-active {
    background: var(--theme-green);
}

.gallery-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    border: 2px solid var(--theme-green);
    background: transparent;
}

.gallery-slider-container .gallery-slider .swiper-slide img {
    height: 350px !important;
    object-fit: contain;
}

.gallery-slider-thumbnail {
    width: 100%;
}

.gallery-slider-container .gallery-thumbnail-slider .swiper-slide-thumb-active img {
    border-color: var(--red) !important;
}

.gallery-slider-container {
    border-radius: 25px;
}

.detail-card {
    box-shadow: 6px 10px 60px #0000001a;
    border-radius: 40px;
}

.gallery-slider-container .gallery-thumbnail-slider .swiper-slide {
    height: 100%;
    opacity: 0.5;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-slider-container .gallery-thumbnail-slider .swiper-slide img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    object-fit: contain;
    height: 70px;
    border-radius: 4px;
}

.gallery-thumbnail-slider {
    margin-top: 25px;
}

.gallery-slider-container .gallery-thumbnail-slider .swiper-slide-thumb-active {
    opacity: 1 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    text-shadow: 0px 0px 4px #000;
}

.gallery-slider-container img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    display: none !important;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 30px;
    font-weight: bold;
}

.gallery-slider .swiper-button-next {
    right: 20px;
    top: 50%;
}

.gallery-slider .swiper-button-prev {
    left: 20px;
    top: 50%;
}

/* Gallery Slider end */

.bg-whatsapp-green {
    background-color: #00e676;
}

.btn-outline-red {
    border: 1px solid var(--red);
    border-radius: 8px;
    transition: 0.3s all ease-in-out;
}

.btn-outline-red:hover {
    background: var(--red);
    color: #fff;
}

.w-fit-content {
    width: fit-content;
}

.shadow-card {
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.16);
}

.card-wishlist {
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.card-wishlist:hover {
    background: #fff;
}

.card-translate {
    border-radius: 8px;
}

.card-translate h5 {
    font-size: 24px;
    line-height: 37px;
    margin-top: 10px;
    color: var(--purple);
    font-family: var(--medium);
}

.user-profile-box h6 {
    font-size: 16px;
    font-family: var(--regular);
    color: var(--grey);
}

.card-translate p {
    font-size: 16px;
    font-family: var(--regular);
    line-height: 30px;
    /* color: rgba(0, 0, 0, 0.4); */
}

.rating-span span {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #29252d;
}

.upload-btn-label {
    /* background: #fcfcfc; */
    border: 1px solid var(--border);
    width: 105px;
    height: 105px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    cursor: pointer;
}
.upload-btn-label-width {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.vidUplIcon{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.video-f-width{
    width: 100%;
}
.upload-btn-label-width > div{
    width: 100%;
    height: 100%;
}
.upload-btn-label-width video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-rounded-close {
    width: 25px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    font-size: 12px;
    box-shadow: none !important;
}

#after_register ul li:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #59b33c;
    border-radius: 50%;
}

#after_register ul li {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.02em;
    color: #6a6a6a;
}

#after_register button.submit {
    width: 343px;
    height: 40px;
    background: #ffbd12;
    border-radius: 4px;
    border: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

.category-section {
    background: rgba(23, 23, 23, 0.65);
    backdrop-filter: blur(30px);
    top: 0;
    z-index: 1;
    width: 419px;
    right: 80px;
}

.drop-btn {
    padding: 0px 22px 0px 22px;
}

.category-section ul li .hover-droplist p {
    font-weight: 500;
    font-size: 14px;
    line-height: 27px;
    color: #ffffff;
    text-decoration: none;
}

.category-section ul li .hover-droplist {
    border-radius: 4px;
    padding: 7px 24px;
}

.category-section ul li:hover .hover-droplist {
    background: #ffffff;
}

.category-section ul li:hover .hover-droplist p,
.droplist-content a:hover {
    color: #64b904;
}

.droplist-content {
    display: none;
    width: 200px;
    z-index: 2;
    top: 0px;
    left: -48%;
    box-shadow: 9px 4px 18px rgba(0, 0, 0, 0.22);
}

.droplist-content a {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 24px;
    display: block;
    padding-left: 24px;
    padding-right: 24px;
    text-align: right;
}

.category-section ul li:hover .droplist-content {
    display: block;
}

.card-translate {
    background-color: var(--bg-gray);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 100%;
}

.best-choice-section h1 {
    size: 56px;
}

#hotSliderItems img {
    border-radius: 4px;
}

.status-pill.success {
    background: #21d1b1;
}

.status-pill.hold {
    background: #f4ba24;
}

.ads-title {
    font-size: 40px;
    line-height: 60px;
    color: var(--purple);
    font-family: var(--regular);
}

.status-pill {
    min-width: 80px;
    height: 26px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    padding-left: 15px;
    padding-right: 15px;
    color: var(--white);
    font-family: var(--medium);
    width: fit-content;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.tabs-links li a {
    padding: 10px 14px;
    transition: 0.2s ease-in-out all;
    font-size: 22px;
    font-family: var(--regular);
    line-height: 30px;
    color: #9e9e9e;
}

.tabs-links li a:hover,
.tabs-links li a.active {
    background-color: #f7f7f7;
    color: #141414;
}

.tabs-links li a:hover svg path,
.tabs-links li a.active svg path {
    fill: var(--red);
}

/* The container */
.container-checkbox {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 23px;
    line-height: 25px;
    color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-checkbox {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
}

.container-checkbox:hover input~.checkmark-checkbox {
    background-color: #ccc;
}

.container-checkbox input:checked~.checkmark-checkbox {
    background-color: var(--pink);
}

.checkmark-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.container-checkbox input:checked~.checkmark-checkbox:after {
    display: block;
}

.container-checkbox .checkmark-checkbox:after {
    left: 10px;
    top: 3px;
    width: 6px;
    height: 15px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/************************Radio***********************/

/* The container */
.container-radio {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: fit-content;
    cursor: pointer;
    font-size: 23px;
    line-height: 25px;
    color: var(--purple);
}

.container-radio label {
    cursor: pointer;
    padding-left: 8px;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    top: 0;
    right: 0;
}

/* Create a custom radio button */
.container-radio .checkmark-radio {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    border: 1px solid var(--grey2);
    border-radius: 50%;
    z-index: 1;
}

.container-radio input.checkmark-radio {
    z-index: 2;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input~.checkmark-radio {
    border: 2px solid var(--red);
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked~.checkmark-radio {
    /*background-color: var(--orange);*/
    border: 7px solid var(--red);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.container-radio .checkmark-radio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked~.checkmark-radio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
/*.container-radio .checkmark-radio:after {
    background-color: var(--red);
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
*/





.price-content-box {
    background-color: var(--grey6);
    padding: 30px 25px 30px 25px;
}

.cmn_icon_text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cmn_icon_text_ico {
    display: flex;
    align-items: center;
}

.cmn_icon_text_txt {
    display: flex;
    width: fit-content;
    font-size: 18px;
    line-height: 20px;
    color: var(--grey7);
    font-family: var(--medium);
}

.cmn_icon_text_ico svg path {
    fill: var(--grey4);
}

.price-content-box button,
.price-content-box a.btn {
    margin-bottom: 15px;
}

.price-content-box button.red {
    background-color: var(--red);
    color: #fff;
}

.price-content-box button.success {
    border: 1px solid var(--green);
    color: var(--green);
    background-color: transparent;
}

.price-content-box button.success:hover {
    background-color: var(--green);
    color: #fff;
}

.detail_price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.detail_digit {
    display: flex;
    align-items: center;
    gap: 10px;

}

.detail_digit span {
    display: flex;
    margin-top: 50px;
}

.detail_digit span.detail_digit_number {
    font-size: 45px;
    line-height: 60px;
    font-family: var(--popSemiBold);
}

.detail_digit span.detail_digit_currency {
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 12px;
    color: var(--black);
    font-family: var(--medium);
}


.price-content-box p,
.price-content-box address {
    font-size: 19px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
}

.price-content-box p i,
.price-content-box address i {
    font-size: 18px;
}

.status-badge {
    width: 46px;
    height: 23px;
    font-size: 16px;
    color: #fff;
    background-color: #ed9c93;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
    color: #949494;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    text-shadow: none !important;
}

.chat-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.search-chat input {
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 0px 0px 1px 0px;
    height: 50px;
    padding-left: 20px;
    padding-right: 40px;
    color: var(--grey);
    font-size: 22px;
    line-height: 27px;
    color: rgba(0, 0, 0, 0.4);
}

.search-chat input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.chat-side-area {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.search-chat-icon {
    top: 13px;
    right: 10px;
    color: var(--grey);
    font-size: 18px;
}

.chat-users h5 {
    font-size: 22px;
    line-height: 20px;
    color: #141414;
}

.chat-users p {
    font-size: 19px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.4);
}

.chat-users li {
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-users li:hover {
    background-color: #fcf3f2;
}

.chat-users time {
    font-size: 14px;
    line-height: 17px;
    color: rgba(20, 20, 20, 0.4);
}

.chat-avatar {
    width: 49px;
    height: 49px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-user-info {
    width: 100%;
}

a.cht-title-link {
    text-decoration: none;
}

.chat-user-info h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0px;
    color: var(--purple);
}

.chat-user-info p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    color: var(--red);
}

.chat-user-info p span {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
}

ul.chatbox {
    padding: 10px 20px 10px 20px;
    height: 100%;
}

.chat-body {
    height: 304px;
    background: #fcf3f2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    width: 100%;
    /* overflow-y: scroll; */
}

.chat-body.chat-body-admin {
    height: 299px;
}

.select-a-chat {
    position: absolute;
    max-width: 230px;
    max-height: 127px;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    margin: auto;
    text-align: center;
}

.select-a-chat img {
    width: 100%;
    height: auto;
}

.select-a-chat-txt {
    font-size: 18px;
    color: #736767;
    font-weight: 400;
    display: inline-block;
    margin-top: 10px;
}

.chat-body .sender>div {
    background: rgba(36, 152, 156, 0.12);
    min-width: 100px;
    display: inline-block;
    border-radius: 15px 0px 15px 15px;
    padding: 12px;
    max-width: 550px;
}

.chat-body li {
    margin-bottom: 15px;
}

.chat-body .receiver>div {
    background-color: #ffffff;
    min-width: 100px;
    display: inline-block;
    border-radius: 0px 15px 15px 15px;
    padding: 12px;
    max-width: 550px;
}

.chat-body p {
    font-size: 22px;
    line-height: 24px;
    color: #141414;
    margin-bottom: 0;
    word-wrap: break-word;
    white-space: normal;
}

.chat-body li.receiver,
.chat-body li.sender {
    width: 100%;
}

.chat-footer input[type="text"] {
    height: 60px;
    flex: 1;
    font-size: 24px;
    line-height: 30px;
    text-align: right;
    color: rgba(20, 20, 20, 0.4);
}

.chat-footer input[type="text"]::placeholder {
    color: rgba(20, 20, 20, 0.4);
}

.chat-footer button {
    background: var(--red);
    border-radius: 8px;
    width: 40px;
    height: 40px;
}

.chat-footer label {
    font-size: 24px;
    color: var(--green);
}


.chat-body time {
    display: block;
    text-align: left;
    font-size: 13px;
    line-height: 17px;
    color: rgba(20, 20, 20, 0.4);
}

.chat-body .sender time {
    text-align: right;
}

.head-chat {
    font-size: 26px;
    line-height: 35px;
    color: #ffffff;
}

.dropdown-action button {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
}

.dropdown-action li a {
    font-size: 13px;
}

.radius-del-btn {
    background: rgba(166, 32, 32, 0.1);
    width: 30px;
    height: 30px;
    top: 12px;
    position: absolute;
    right: 12px;
    line-height: 1;
}

.user-nav-info p {
    font-size: 22px;
    line-height: 24px;
    color: rgba(64, 33, 77, 0.6);
}

.user-nav-info h5 {
    font-size: 22px;
    line-height: 24px;
    color: var(--purple);
}

.notify-btn:before {
    content: attr(data-counter);
    background: var(--red2);
    position: absolute;
    top: -8px;
    right: -6px;
    border-radius: 50%;
    color: #fff;
    min-width: 16px;
    height: 16px;
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    padding-right: 3px;
}

.notify-count:before {
    content: attr(data-counter);
    background: var(--red2);
    position: absolute;
    top: -10px;
    right: -8px;
    border-radius: 50%;
    color: #fff;
    min-width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    padding-right: 3px;
}

.chat-btn {
    font-size: 30px;
    color: var(--purple);
}

.notify-btn i {
    font-size: 30px;
    color: var(--purple);
}

.notify-menu .dropdown-menu {
    width: 360px;
    max-height: 350px;
    /* height: 350px; */
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    transform: inherit !important;
    inset: unset !important;
    right: auto !important;
    top: 50px !important;
    padding-top: 10px;
    padding-bottom: 10px;
    left: -62px !important;
}

.notify-menu .dropdown-menu a h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.notify-menu .dropdown-menu a h4 {
    font-size: 18px;
    line-height: 22px;
    color: #5d001e;
}

.notify-menu .dropdown-menu a time {
    font-size: 14px;
    line-height: 17px;
    color: rgba(20, 20, 20, 0.4);
}

.notify-menu .dropdown-menu a:hover {
    background: rgba(237, 156, 147, 0.12);
}

.avatar-wrapper {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.avatar-wrapper a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--medium);
    color: var(--black);
}

.avatar-header {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-header img {
    width: 100%;
    height: 100%;
}

header .dropdown-menu {
    right: 0 !important;
}

header .dropdown-menu[data-bs-popper] {
    right: 0 !important;
}

.dropdown-new .dropdown-toggle::after {
    display: none;
}

.loader {
    position: absolute;
    right: 25px;
    width: 49px;
}

.hold {
    background: #f4ba24;
    font-family: splart;
}

.cross-img {
    position: absolute;
    top: 43px;
    left: 171px;
    right: 311px;
    display: none
}

.notii {
    cursor: pointer
}


.error {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #dc3545;
}

.editupload {
    position: absolute;
    top: 77px;
    right: 372px;
}

.deleteadbtn {
    position: absolute;
    right: 25px;
    top: 12px;
    color: red;
    cursor: pointer;
    z-index: 1;
    font-size: 22px !important;
}

.replaceImg {
    cursor: pointer;
}

.editImg {
    position: relative;
    bottom: 48px;
    right: 9px;
    cursor: pointer;
}

.fill-heart {
    color: red;
}

.chatuser {
    width: 150px;
    height: 45px;
    background: #990000;
    border: 1px solid #990000;
    border-radius: 4px;
    font-weight: 400;
    font-size: 23px;
    line-height: 18px;
    color: #FFFFFF;
    font-family: splart;
}

#previewdiv {
    /* padding: -3px;
    margin-top: 24px; */
    border: 1px solid rgb(181, 181, 181);
    width: 100%;
    height: 100%;
    position: relative;
}

#previewdiv #preview {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.roundbtn {
    min-width: 80px;
    height: 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0DCAF0;
    padding-left: 15px;
    padding-right: 15px;
}

.datalist-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
}

.datalist-wrapper select {
    width: 100%;
}

.cursor {
    cursor: pointer;
}

.hide {
    display: none
}

.payment>.form-group {
    padding: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-bar .br-theme-fontawesome-stars .br-widget {
    height: 20px;
}

.ad-btn-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 5px;
}

header .dropdown-menu .dropdown-item {
    text-align: right;
}

header .dropdown-menu .dropdown-item .notify-ico-ty {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
}

header .dropdown-menu .dropdown-item .notify-txt-ty {
    width: calc(100% - 30px);
}

.dir-rtl {
    direction: rtl;
}

ul.upl-list-item {
    width: 100%;
    display: flex;
    direction: rtl;
    gap: 8px;
    flex-wrap: wrap;
}

ul.upl-list-item li.list-inline-item {
    position: relative;
    margin: 0;
}

ul.upl-list-item li.list-inline-item i {
    position: absolute;
    top: 5px;
    right: 5px;
}

.comment-div-main {
    margin-top: 15px;
}

ul.check-list-item {
    gap: 20px;
}

.notify-detail-main {
    gap: 10px;
}

.notify-detail-col {
    display: flex;
    align-items: center;
    max-width: 234px;
    align-items: flex-start;
}

.notify-menu .dropdown-menu a h5 {
    /*white-space: break-spaces;*/
    padding-top: 5px;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notify-detail-main time {
    padding-top: 7px;
}

#bannerSlider {
    height: 400px;
    border-radius: 12px;
}

.commission-warning {
    color: #AAAAAA;
    font-size: 14px;
    padding-top: 5px;
    line-height: 18px;
}

ul.policyChList {
    padding-top: 20px !important;
}

.postaddrow {
    display: none;
}

button:disabled,
button[disabled] {
    background-color: #E1E1E1 !important;
    color: #898989 !important;
}

.policyTextRow {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}
.checkRadRow {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.policyDetail {
    cursor: pointer;
    font-size: 23px;
    line-height: 25px;
    color: #000000;
}

.policyLabel {
    padding-right: 0;
    width: 25px;
    height: 25px;
    margin-bottom: 0;
}

ul.policyDetailList {
    padding: 0 0 0 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

ul.policyDetailList li {
    padding: 0 30px 0 0;
    margin-bottom: 15px;
    font-size: 23px;
    line-height: 27px;
    color: #000000;
    position: relative;
    font-family: "splart";

}

.pp-body>span {
    display: flex;
    padding: 0 0px 10px 0;
    font-size: 23px;
    line-height: 27px;
    color: #000000;
    position: relative;
    font-family: "splart";
}

ul.policyDetailList li::before {
    content: url(../images/policyListArrow.png);
    position: absolute;
    top: 4px;
    right: 0;
    width: 24px;
    height: 24px;

}

ul.policyDetailList li.no-arr::before {
    content: '';
}

li.walletList {
    position: relative;
}

li.walletList button {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--red);
    border-radius: 4px;
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    border: 0;
    font-family: "splart";
}

li.walletList button span.fonteng {
    font-size: 16px;
    font-weight: 500;
}

li.walletList button span.walletListAr {
    padding-bottom: 3px;
    display: inline-block;
}

.colWalletBG {
    /* background-image: url(../images/walletRectangleBG.png);
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    background-color: var(--green);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    height: 100%;
}

.walletDetailRow {
    padding: 30px 20px 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* .walletDetailIcon{
    width: 60px;
    min-width: 60px;
} 
.walletDetailIcon svg{ 
    width: 100% !important;
}*/

.walletDetailText {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0px;
}

.walletDetailText>* {
    width: 100%;
}

.walletDetailTitle {
    font-family: "splart";
    font-size: 21px;
    color: #fff;
}

.walletDetailBalance {
    font-family: "splart";
    font-size: 40px;
    color: #fff;
    line-height: 28px;
    padding-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.walletDetailBalance span.fonteng {
    font-size: 33px;
    font-weight: 500;
    padding-top: 15px;
}

.withdrawalRequestRow {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 40px 20px 40px 10px;
    font-family: "splart";
}

.withdrawalRequestTitle {
    display: flex;
    width: 100%;
    font-size: 30px;
    line-height: 37px;
    color: var(--purple);
}

.withdrawalRequestDetail {
    display: flex;
    width: 100%;
    font-size: 22px;
    line-height: 27px;
    margin-top: 10px;
    color: var(--purple);
    margin-bottom: 25px;
}

button#WRbtn {
    background: var(--red);
    border-radius: 4px;
    height: 46px;
    font-size: 20px;
    color: #ffffff;
    border: 0;
    font-family: "splart";
    margin-bottom: 20px;
}

table.tableMrRow {
    border-collapse: collapse !important;
    border-spacing: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
}

table.tableMrRow th {
    color: var(--black);
    font-size: 16px;
    font-family: var(--bold);
    padding: 10px 20px 10px 20px;
    white-space: nowrap;
}

table.tableMrRow td {
    color: #9E9E9E;
    font-size: 16px;
    font-family: var(--medium);
    padding: 10px 20px 10px 20px;
}
table.tableMrRow td.sl-td {
    padding-left: 50px;
}

table.tableMrRow tr {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
table.pd-cart-tbl tr,
table.pd-cart-tbl tr td {
    border: none;
}

table.tableMrRow td .tblCalendar {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

table.tableMrRow td .tblCalendar .tblCalendarDate {
    /* padding-top: 8px; */
    font-size: 16px;
    font-family: var(--regular);
}

table.tableMrRow td .tblCalendar .tblIcon svg path {
    /* fill: var(--red); */
}

.fonteng {
    font-family: 'Poppins' !important;
}

table.tableMrRow td.amount {
    display: flex;
    align-items: center;
    /* color: var(--red); */
    gap: 10px;
}

table.tableMrRow td.amount span:last-child {
    padding-bottom: 6px;
}

.col-delivery-block {
    display: none;
    padding-right: 30px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.row-dimension {
    display: none;
}




/*******************Steps******************/
/*Hide all except first fieldset*/
#onboarding .step-container:not(:first-of-type) {
    display: none;
}


/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    margin-top: 30px;
    /* overflow: hidden; */
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: flex;
    direction: rtl;
}

#progressbar li {
    list-style-type: none;
    width: 33.2%;
    /* float: left; */
    position: relative;
}

#progressbar li span.prog-number {
    /* content: counter(step);
      counter-increment: step; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    font-size: 18px;
    color: #FFA58F;
    background-color: #FAF2F2;
    border-radius: 50%;
    border: 2px solid #FAF2F2;
    margin: -12px auto 5px auto;
    position: relative;
    z-index: 2;
}

#progressbar li.active span.prog-number {
    background-color: var(--red);
    border: 2px solid var(--red);
    color: #fff;
}

#progressbar li span.prog-title {
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 0 70px 0 70px;
    text-align: center;
}

#progressbar li.active span.prog-title {
    color: var(--red);
}

/* #progressbar li span.prog-title-f{
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 0 10px 0 10px;
    text-align: center;
} */
span.prog-title-f {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */
    width: 100%;
    padding: 0 10px 0 10px;
    /* text-align: center; */
    margin-bottom: 25px;
}

/* #progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 45px;
    height: 45px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #FFF;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid var(--border);
    margin: 0 auto 5px auto;
  } */
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #D9D9D9;
    position: absolute;
    right: -50%;
    top: 6px;
    z-index: 1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: #DA4453;
    color: white;
}

.step-container {
    direction: rtl;
    font-family: 'splart';
}

.step-main-title {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}

.shipping-address-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    padding: 18px 15px 18px 15px;
    border-radius: 4px;
    border: 1px solid var(--grey2);
    margin-bottom: 10px;
    position: relative;
}

.shipping-address-wrapper.active,
.shipping-address-wrapper:hover {
    border: 1px solid var(--red);
    background-color: #FEF0F4;
}

.select-shipping {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 20px;
    top: 20px;
}

.shipping-address-content {
    display: flex;
    gap: 10px;
}

.shipping-address-location {
    min-width: 20px;
}

.shipping-address-location i {
    font-size: 20px;
    color: var(--red);

}

.shipping-address-ttr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.shipping-address-title {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
}

.shipping-address-text {
    font-size: 19px;
    width: 100%;
    font-weight: 500;
}

/* #current_address{
    margin-bottom: 20px;
} */
.add-address {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    /* margin-bottom: 20px; */
    width: fit-content;
    cursor: pointer;
}

.add-address-icon {
    width: 25px;
    min-width: 25px;
    height: 25px;
}

.add-address-icon i {
    font-size: 25px;
    color: var(--red);
    line-height: 25px;
}

.add-address-title {
    color: var(--red);
    font-size: 21px;
    width: 100%;
    font-weight: 500;
    line-height: 25px;
}

.shipping-product-detail {
    border: 1px solid var(--grey2);
    border-radius: 4px;
    padding: 30px 30px 0 30px;
    margin-top: 176px;
}

.shipping-product-img {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey2);
    padding: 15px 15px 15px 15px;
}

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

.shipping-order-summary {
    display: flex;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 30px;

}

.shipping-order-content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.shipping-order-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}

.shipping-order-col {
    font-size: 22px;
}

.shipping-order-col-amount {
    font-size: 20px;
    color: var(--red);
}

.shipping-order-total {
    padding: 15px 0 20px 0;
    margin-top: 25px;
    border-top: 1px solid var(--grey2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shipping-order-col-total {
    font-size: 30px;
}

.shipping-order-col-amount-total {
    font-size: 25px;
    color: var(--red);
}

.shipping-order-total-title {
    color: var(--red);
}

.shipping-address-ttr-sb {
    justify-content: space-between;
}

.select-shipping-right {
    right: 15px;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
}

.shipping-address-wrapper-2 {
    padding-right: 55px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.shipping-address-content-2 {
    width: 100%;
}

.shipping-address-ttr-sb {
    flex-wrap: nowrap;
    align-items: center;

}

.shipping-address-text-price {
    white-space: nowrap;
    font-size: 19px;
    font-weight: 500;
    color: var(--red);
}

.shipping-product-detail-2 {
    margin-top: 91px;
}

.regular-shipping-delivery,
.fast-shipping-delivery {
    display: none;
}







.shipping-address-wrapper-view {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    padding: 0px 0 25px 0;
    border-bottom: 1px solid var(--grey2);
    position: relative;
}

.shipping-address-content-view {
    display: flex;
    gap: 10px;
    width: 100%;
}

.shipping-address-location-view {
    min-width: 30px;
    max-width: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.shipping-address-location-view i {
    font-size: 22px;
    color: var(--red);
}

.shipping-address-location-view img {
    max-width: 100%;
}

.shipping-address-ttr-view {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.shipping-address-title-view {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
}

.shipping-address-text-view {
    font-size: 19px;
    width: 100%;
    font-weight: 500;
    display: flex;
}








.shipping-address-wrapper-addr {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    padding: 18px 20px 18px 20px;
    border-radius: 4px;
    border: 1px solid var(--grey2);
    margin-bottom: 10px;
    position: relative;
}

.shipping-address-wrapper-addr:hover {
    border: 1px solid var(--red);
    background-color: #FEF0F4;
}

.shipping-address-content-addr {
    display: flex;
    gap: 10px;
    width: 100%;
}

.shipping-address-location-addr {
    min-width: 20px;
}

.shipping-address-location-addr i {
    font-size: 20px;
    color: var(--red);

}

.shipping-address-ttr-addr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.shipping-address-title-addr {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
}

.shipping-address-text-addr {
    font-size: 19px;
    width: 100%;
    font-weight: 500;
}

.shipping-address-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

button.s-action-button {
    background: var(--red);
    border-radius: 4px;
    border: 0;
    width: 40px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.s-action-button svg {
    width: 15px;
    height: auto;
}

.notification-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 15px;
    margin-bottom: 30px;
}

.notification-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: var(--purple);
    margin-bottom: 10px;
}

.notification-text {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--purple);
    font-size: 20px;
    /* font-weight: 500; */
    margin-bottom: 15px;
}




.field-turnon {
    display: flex;
    justify-content: center;
}

.field-turnon button {
    background: var(--red);
    border-radius: 4px;
    height: 50px;
    font-size: 22px;
    color: #ffffff;
    border: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 35px;
}

.float-left {
    float: left;
}

.adTabs {
    padding-right: 0;
    padding-left: 0;
}

.ad-tab-content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.nav-tabs.adTabs .nav-item.show .nav-link,
.nav-tabs.adTabs .nav-link.active {
    background-color: var(--red);
    color: #fff;
    border-color: var(--red) var(--red) var(--red);
}

.nav-tabs.adTabs {
    border-bottom: none;
    /* border-bottom: 1px solid var(--red); */
    background-color: var(--lightRed);
}

.nav-tabs.adTabs .nav-link {
    display: block;
    padding: .5rem 1rem;
    color: var(--grey3);
    font-size: 17px;
}

.nav-tabs.adTabs .nav-link:focus,
.nav-tabs.adTabs .nav-link:hover {
    border-color: var(--red) var(--red) var(--red);
    background-color: var(--red);
    color: #fff;
}

.nav-tabs.adTabs .nav-item {
    margin-left: 3px;
}

.ad-btn-col *,
.ad-btn-col a {
    font-size: 16px;
    font-family: splart;
    color: #fff;
    text-decoration: none;
}


.ads-filters {
    background-color: var(--lightRed);
    display: flex;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ads-filters a {
    color: var(--red);
    padding: .5rem 1rem;
    color: var(--grey3);
    font-size: 17px;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    font-family: splart;
    font-weight: 600;
}

.ads-filters a.active {
    color: var(--red);
    border-bottom: 2px solid var(--red);

}

.ads-filters a:hover {
    color: var(--red);
    border-bottom: 2px solid var(--red);
}




/*******************Chat*******************/

.chat-wrapper {
    display: flex;
    width: 100%;
    /* height: calc(100vh - 160px); */
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 15px;
    min-height: 250px;
    height: 500px;
    overflow: hidden;
}

.chat-left-wrapper {
    min-width: 290px;
    max-width: 290px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, .125);
    align-items: flex-start;
}

.user-chat-search-row {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    /* padding-bottom: 0; */
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    position: relative;
}

.chat-search {
    display: flex;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
}

.chat-search input {
    width: 100%;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 10px;
    padding-left: 40px;
}

.chat-search img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 17px;
    margin: auto;
}


.users-chat-list-wrapper {
    display: flex;
    flex: 1;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.users-chat-list-all {
    display: flex;
    height: 100%;
    width: 100%;
}

.users-chat-list-all .mCustomScrollBox {
    width: 100%;
}

.users-chat-list-single {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    cursor: pointer;
}

.users-chat-list-single-admin {
    align-items: center;
}

.users-chat-list-single:hover {
    background-color: #fcf3f2;
}

.users-chat-list-avatar {
    max-width: 40px;
    min-width: 40px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e2e0ea;
}

.users-chat-list-avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.users-chat-list-all {
    display: flex;
    height: 100%;
}

.users-chat-list-detail {
    width: 100%;
}

.users-chat-list-title-date {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-top: 3px;
}

.users-chat-list-title {
    font-size: 14px;
    color: var(--black);
}

.users-chat-list-date {
    padding-top: 2px;
    font-size: 10px;
    color: var(--grey2);
}

.users-chat-list-message-notify {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.users-chat-list-message {
    font-size: 12px;
    color: var(--grey2);
}

.users-chat-list-notify {
    background-color: var(--red);
    font-size: 10px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    margin-top: 3px;
    line-height: 18px;
}

.online-sign {
    width: 12px;
    height: 12px;
    position: absolute;
    z-index: 5;
    top: -1px;
    right: -1px;
    background-color: var(--green);
    border: 2px solid #fff;
    border-radius: 50%;
}



.chat-right-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    align-items: flex-start;
}

.user-chat-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.user-chat-header-about {
    display: flex;
    align-items: center;
    /* width: 100%; */
    gap: 10px;
}

.user-chat-header-avatar {
    max-width: 40px;
    min-width: 40px;
    position: relative;
}

.user-chat-header-avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.user-chat-name-header {
    font-size: 14px;
    color: var(--black);
}

.users-chat-area-wrapper {
    width: 100%;
    flex: 1;
    background-color: #f1f1f5;

    overflow: hidden;
}

.direction-rtl .users-chat-area-wrapper {
    direction: ltr;
}

.users-chat-area-all {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 20px 20px 0px 20px;
}

/* .users-chat-area-all > div, .users-chat-area-all > div > div, .users-chat-area-all > div > div > div{
    width: 100%;
} */
.users-chat-area-all .mCustomScrollBox {
    min-width: 100%;
}

.users-chat-single-row {
    display: flex;
    /* flex-wrap: wrap; */
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

.users-chat-live-avatar {
    max-width: 34px;
    min-width: 34px;
    position: relative;
}

.users-chat-live-avatar img {
    width: 34px;
    height: 34px;
    object-fit: cover;
}

.users-chat-area-container {
    display: flex;
    max-width: 600px;
    flex-wrap: wrap;

}

.users-chat-single-row-right .users-chat-area-container {
    justify-content: right;
}

.users-chat-single-row-left .users-chat-area-container {
    justify-content: left;
}

.users-chat-area {
    background-color: #fff;
    box-shadow: 3px 3px 4px rgba(32, 33, 36, .10);
    min-width: 310px;
    max-width: 600px;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.users-chat-single-row-left .users-chat-area {
    border-top-left-radius: 0;
}

.users-chat-message {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.users-chat-message-content {
    width: 100%;
    font-size: 14px;
}

.users-chat-message-date {
    width: 100%;
    font-size: 13px;
}

.users-chat-single-row-left .users-chat-area .users-chat-message-content {
    color: var(--purple);
    text-align: left;
}

.users-chat-single-row-left .users-chat-area .users-chat-message-date {
    text-align: right;
    color: #A4A4A4;
}

.users-chat-single-row-right {
    justify-content: right;
}

.users-chat-single-row-right .users-chat-area {
    border-top-right-radius: 0;
    background-color: var(--green);
}

.users-chat-single-row-right .users-chat-area .users-chat-message-content {
    color: #fff;
    text-align: right;
}

.users-chat-single-row-right .users-chat-area .users-chat-message-date {
    color: #fff;
}

.user-chat-input-wrapper {
    display: flex;
    width: 100%;
    padding: 15px 20px 15px 20px;
    background-color: var(--grey4);
    position: relative;
}

.user-chat-input-wrapper input.user-chat-input {
    padding-right: 20px;
    padding-left: 50px;
}

.user-chat-input-wrapper img {}

.send-btn {
    position: absolute;
    top: 0px;
    bottom: 0px;
    height: 25px;
    width: 25px;
    margin: auto;
    border: none;
    padding: 0;
    background: transparent;
    right: auto;
    left: 15px;
}

.send-btn img {
    width: 25px;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

form#chat {
    display: flex;
    width: 100%;
}

.chat-btns-row {
    display: flex;
    width: 100%;
    position: relative;
}

.chat-msg-empty {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
}

.sel-a-msg {
    width: 100%;
    text-align: center;
    font-family: var(--medium);
    font-size: 28px;
}

.chat-msg-empty-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.chat-message-right>div img.rounded-circle {
    margin-left: 15px;
}

.chat-msg-wrp {
    box-shadow: 3px 3px 4px rgba(32, 33, 36, .10);
    min-width: 310px;
    max-width: 600px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.tpbr-pfl {
    object-fit: scale-down;
    background-color: #fefefe;
}

#previewdiv {
    margin-left: 7px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
}

#previewdiv img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.users-chat-upd-img {
    display: flex;
    max-width: 100%;
    max-height: 200px;
    margin-bottom: 30px;
}

.users-chat-upd-img img {
    max-width: 200px;
}

.users-chat-upd-img.ucui-right {
    justify-content: flex-end;
}

.users-chat-upd-img.ucui-left {
    justify-content: flex-start;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    /* max-height: 875px; */
    height: 382px;
    overflow-y: scroll !important;
    padding: 20px;
    position: relative;
}



/***********************************/
.chat-search input {
    padding-left: 50px;
    padding-right: 15px;
    font-size: 16px;
}

.chat-side-area {
    max-width: 290px;
    min-width: 290px;
}

.attach-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body p.chat-msg-txt {
    font-size: 16px;

}

li time {
    margin-top: 7px;
}

/************************************/

.authentication-number {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--black);
    gap: 10px;
    padding-top: 5px;
    font-family: var(--bold);
}

.authentication-qr {
    display: flex;
    /*justify-content: center;*/
    margin: 10px 0 20px 0;
}

.authentication-qr img {
    width: auto;
}

ul.auth-logo-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

ul.auth-logo-list li {
    min-width: 130px;
    max-width: 130px;
}

ul.auth-logo-list li a {
    display: block;
}

.auth-logo-list img {
    /*max-width: 150px;*/
    /*min-width: 150px;*/
    width: 100%;
    display: block;
}

.contact-links {
    display: flex;
    gap: 20px;
}

.count-mesage {
    background: #24989C;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 4px 4px 4px 4px;
    line-height: 12px;
    height: 20px;
    min-width: 20px;
}

/********************************
            Boutiques
*********************************/

.pad-main-section {
    padding-top: 70px;
}

.welcome_section {
    background-color: var(--pink-light);
    padding: 70px 0 45px 0;
}

.wce_wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.wce_logo {
    display: flex;
    width: 170px;
    height: 170px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 8px;
}

.wce_logo img {
    max-width: 170px;
    max-height: 170px;
}

.wce_content_container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.wce_content_hdg_bn {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 30px;
    margin-top: -8px;
}

.wce_content_hdg_txt {
    display: block;
}

.wce_content_hdg {
    display: flex;
    width: 100%;
    font-size: 22px;
    color: var(--black);
    font-family: var(--medium);
    margin-bottom: 5px;
}

.wce_content_txt {
    display: flex;
    width: 100%;
    font-size: 15px;
    color: var(--grey2);
    font-family: var(--medium);
}

.wce_description {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: var(--black);
    margin-top: 10px;
}

.wce_follow_rating {
    display: flex;
    width: 100%;
    gap: 80px;
    align-items: flex-start;
    margin-top: 15px;
    margin-bottom: 25px;
}

.wce_fr_col {
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
}

.wce_ff_title {
    display: flex;
    width: 100%;
    font-size: 20px;
    font-family: var(--medium);
    color: var(--pink);
    line-height: 23px;
}

.wce_ff_num {
    display: flex;
    width: 100%;
    font-size: 20px;
    color: var(--black);
    line-height: 25px;
}

.wce_rt_num {
    font-size: 16px;
}

.bq_rating {
    margin: 2px 0 2px 0px;
}

.bq_rating .br-theme-fontawesome-stars .br-widget {
    height: 20px;
}

.wce_bq_detail_row {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: center;
}

.wce_bq_detail_col {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 13px;
}

.wce_bq_detail_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    background-color: var(--white);
    border-radius: 50%;
}

.wce_bq_detail_col span {
    display: flex;
    color: var(--black);
    line-height: 20px;
}

.cmn_tabs_list {
    width: 100%;
    display: flex;
    margin-top: 60px;
}


/******************Tabs**********************/
.nav-tabs {
    border-bottom: 1px solid var(--border);
    padding: 0;
    flex-wrap: nowrap;
    gap: 30px;
}

ul.nav-tabs li.nav-item {
    width: 100%;
}

ul.nav-tabs li.nav-item button {
    position: relative;
    text-align: center;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 100%;
    font-size: 20px;
    color: var(--black);
}

ul.nav-tabs li.nav-item button:hover {
    font-family: var(--bold);
    color: var(--pink);
}

ul.nav-tabs li.nav-item button.active {
    font-family: var(--bold);
    color: var(--pink);
}

ul.nav-tabs li.nav-item button:after {
    content: '';
    height: 3px;
    background-color: var(--white);
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

ul.nav-tabs li.nav-item button.active:after {
    background-color: var(--pink);
}

ul.nav-tabs li.nav-item button:hover:after {
    background-color: var(--pink);
}

.tab-content {
    float: right;
    width: 100%;
}

/*********************Blog Detail***************/

.bgd_section {
    padding-bottom: 0;
}

.bgd_wrapper {
    display: flex;
    width: 100%;
    gap: 30px;
}

.bgd_content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.bgd_main_img {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.bgd_main_img img {
    display: flex;
    width: 100%;
}

.bgd_sidebar {
    background-color: var(--grey6);
}

.bgd_title_scl {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 70px;
}

.bgd_title_scl span {
    font-family: var(--medium);
    font-size: 30px;
}

.blogs_social_links_container {
    display: flex;
    width: fit-content;
    align-items: center;
    padding-top: 5px;
}

ul.blogs_social_links {
    padding: 0;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
}

.blogs_social_links li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    /* background-color: var(--white);
    box-shadow: 0px 10px 12px -6px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 10px 12px -6px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 10px 12px -6px rgba(0,0,0,0.25); */
}

.blogs_social_links li a i {
    font-size: 22px;
    line-height: 2;
}

.blogs_social_links li a:hover {
    transform: scale(1.1);
}

.bgd_content_text {
    display: block;
    width: 100%;
    font-size: 19px;
    margin-bottom: 70px;
}

.bgd_sidebar {
    display: flex;
    flex-wrap: wrap;
    max-width: 400px;
    min-width: 400px;
    flex-direction: column;
}

.bgd_sidebar_content {
    display: block;
    width: 100%;
    padding: 30px 35px 0px 35px;
}

.sdbr_hdg {
    display: flex;
    width: 100%;
    font-size: 30px;
    font-family: var(--medium);
    margin-bottom: 25px;
}

.sdbr_cy_cnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sdbr_cy_ttl {
    font-size: 16px;
    font-family: var(--medium);
}

.sdbr_cnt_num {
    font-size: 16px;
    font-family: var(--medium);
    color: var(--grey4);
}

.sdbr_ltst_bgs {
    display: flex;
    width: 100%;
    gap: 16px;
    margin-bottom: 16px;
}

.sdbr_ltst_bgs_img {
    display: flex;
    min-width: 130px;
    max-width: 130px;
    height: 100px;
}

.sdbr_ltst_bgs_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sdbr_ltst_bgs_content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;

}

.sdbr_ltst_bgs_title {
    font-size: 16px;
    font-family: var(--medium);
    line-height: 22px;
}

.sdbr_ltst_bgs_sm_desc,
.sdbr_ltst_bgs_date {
    font-size: 14px;
    color: var(--grey2);
    display: flex;
    width: 100%;
}

/********************Vlog Details****************/
#vlogModel.modal {
    overflow-y: hidden;
}

/* #vlogModel .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
    max-height: 100vh;
    margin: 0 auto;
} */

#vlogModel .modal-dialog-centered .modal-content {
    /* height: 100vh; */
}

#vlogModel .modal-dialog-centered .modal-content .modal-body {
    height: 660px;
    padding: 0;
    display: flex;
    width: 100%;
}

.vod_wrapper {
    display: flex;
    width: calc(100% - 400px);
    height: 100%;
}

.vod_sidebar_content {
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /* scrollbar-color: var(--ds-background-neutral-hovered, #091e4224) var(--ds-background-neutral, #091e420f); */
    scrollbar-width: thin;
    padding: 20px 20px 25px 10px;
}

.vod_sidebar_content .sdbr_hdg {
    font-size: 24px;

}

.svPlayer {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: var(--black);
}

.svPlayer video {
    width: 100%;
    height: 100%;
}

.btn-close-video {
    right: 5px;
    top: 5px;
    z-index: 100;
    opacity: .9;
    width: 16px;
    height: 16px;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.8em auto no-repeat;
    /* background-size: ; */
    background-color: var(--red3);
}

/***********************Followers Modal*********************************/

.modal-dialog-rtl {
    direction: rtl;
}

.modal-header-custom .modal-title {
    font-size: 20px;
    font-family: var(--medium);
}

.modal-header-custom button.btn-close {
    padding: 0;
    background-color: transparent;
    opacity: 1;
    left: 10px;

}

/******************************* arham_Css ****************************/

.modelHeading {
    font-family: var(--regular);
    font-size: 40px;
}

.modelSubHeading {
    font-family: var(--medium);
    font-size: 20px;
}

.model-light-heading {
    font-family: var(--regular);
    font-size: 16px;
    color: var(--grey);
}

.field-dataset input:focus {
    border: 1px solid var(--pink);
}

.border-line {
    position: relative;
    border: 1px solid var(--border);
    margin: 40px 0;
}

.border-bottom-line {
    position: relative;
    border-bottom: 1px solid var(--border);
    margin: 25px 0;
}

.check-field-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.check-hidden,
.modren-hidden {
    display: none;
}

.check-field-box>span {
    font-family: var(--regular);
    font-size: 20px;
}

/* check-check-field-box  */

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--white);
    margin: 0;
}

input[type="radio"] {
    appearance: none;
    background-color: var(--white);
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: var(--white);
}

input[type="radio"]:checked {
    border: 2px solid var(--pink);
    background-color: var(--pink);
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid var(--white);
    outline-offset: max(2px, 0.15em);
}

.check-field-box:focus-within,
.check-active {
    background-color: #fef0f4;
    border: 1px solid var(--pink);
}

/* end  */

.colors-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    /* width: 160px; */
    height: 45px;
    padding: 7px 10px;
    border-radius: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.color-toggle::after {
    display: none;
}

.upload-btn-size {
    height: 48px;
    width: 175px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.new-Check-box {
    /* position: relative; */
    display: flex;
    align-items: center;
    gap: 10px;
}

.em-field {
    width: 100px;
}

.model-list {
    list-style: none !important;
    background-color: var(--white);
}

.quantity-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: var(--bg-gray);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.quantity-box>div {
    width: 200px;
}

.quanity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-btn-box {
    border-radius: 4px;
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
}

.add-btn-box {
    background-color: var(--green);
}

.remove-btn-box {
    background-color: var(--pink);
}

.count-down {
    background: white;
    border: 1px solid var(--border);
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 30px;
}

.numbering {
    width: 35px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    background: transparent;
}


/******************************* arham_Css_payment_section  ****************************/

.main-content-artical {
    margin: 0px 0 20px;
}

.user-profile-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
}

/******************************* new_sidebar  ****************************/

.sidebar-nav ul.main-category-menu {
    float: left;
    width: 100%;
    padding-right: 20px;
}

.sidebar-nav ul.main-category-menu li.sidebar-list {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

.sidebar-nav ul li.sidebar-list>a {
    position: relative;
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: center;
    line-height: 26px;
    padding: 10px 20px 10px 10px;
    text-decoration: none;
    /* white-space: nowrap; */
    color: var(--grey4);
    font-family: var(--regular);
    font-size: 21px;
}
.sidebar-nav ul li.sidebar-list>a span.menu-name{
    display: block;
}
.sidebar-nav ul.main-category {
    margin: 0;
    padding: 0px 0px 0px 0 !important;
}

.sidebar-nav ul li.sidebar-list {
    list-style: none;
    padding: 0 0 0 0;
    margin-bottom: 1px;
    position: relative;
}

.sidebar-nav ul li.sidebar-list.active>a {
    color: var(--black);
    font-family: var(--regular);
    background-color: var(--grey10);
}

.sidebar-nav ul li.sidebar-list.active>a:hover {
    color: var(--black);
}

.sidebar-nav ul li.sidebar-list>a:hover {
    background: var(--grey10);
    color: var(--black);
}

ul.subNavList {
    /* display: none; */
    padding: 0;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    background-color: #d9d9d9;
    padding: 15px 0;
}

ul.subNavList li {
    list-style: none;
}

.sidebar-nav li ul.subNavList a {
    position: relative;
    font-size: 22px;
    font-family: var(--regular);
    color: var(--grey4);
}

.sidebar-nav li ul.subNavList a:hover {
    color: var(--black);
}

.sidebar-down-arrow {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.box-count {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid var(--pink);
    padding: 5px 15px;
    font-size: 15px;
    text-align: center;
    border-radius: 4px;
    background: var(--pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
}

.sidebar-list .icon svg {
    width: 20px;
    height: 18px;
}
.sidebar-list.active .icon svg path {
    fill: var(--pink);
}

.box-count-transparent {
    background: transparent;
    color: var(--black);
    border: 0;
}

/**************** new_sidebar end  *****************/


/******************************* Responsive Follower sidebar  ****************************/

.followerNav{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.followerNav .sidebar-nav{
    display: none;
    width: 100%;
}
.followerNav .sidebar-nav ul.main-category {
    margin: 0;
    padding: 0px 0px 0px 0 !important;
}
.followerNav .sidebar-nav ul li.sidebar-list>a {
    gap: 10px;
    align-items: center;
    line-height: 26px;
    padding: 0px 0px 0px 0px;
    font-size: 18px;
}
.followerNav .sidebar-nav ul li.sidebar-list > a:hover {
    background: transparent;
}
.followerNav > span{
    width: 100%;
}

/* .sidebar-nav ul li.sidebar-list {
    list-style: none;
    padding: 0 0 0 0;
    margin-bottom: 1px;
    position: relative;
}

.sidebar-nav ul li.sidebar-list.active>a {
    color: var(--black);
    font-family: var(--regular);
    background-color: var(--grey10);
}

.sidebar-nav ul li.sidebar-list.active>a:hover {
    color: var(--black);
}

.sidebar-nav ul li.sidebar-list>a:hover {
    background: var(--grey10);
    color: var(--black);
} */
/* 
ul.subNavList {
    padding: 0;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    background-color: #d9d9d9;
    padding: 15px 0;
}

ul.subNavList li {
    list-style: none;
}

.sidebar-nav li ul.subNavList a {
    position: relative;
    font-size: 22px;
    font-family: var(--regular);
    color: var(--grey4);
}

.sidebar-nav li ul.subNavList a:hover {
    color: var(--black);
}

.sidebar-down-arrow {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
} */

.followerNav .box-count {
    left: 0px;
    padding: 0px 0px;
}

.sidebar-list .icon svg {
    width: 20px;
    height: 18px;
}
.sidebar-list.active .icon svg path {
    fill: var(--pink);
}

.box-count-transparent {
    background: transparent;
    color: var(--black);
    border: 0;
}

/**************** Responsive Follower end  *****************/


.tbl-pay a {
    text-decoration: none;
}

.pay-bill-red {
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    background: var(--pink);
    border: 1px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-bill-grey {
    text-align: center;
    border-radius: 4px;
    color: var(--grey);
    background: var(--grey6);
    border: 1px solid var(--grey6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-bill-green {
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tbl-center {
    text-align: center;
}

.slider-direction {
    direction: ltr;
}

.chart-size-img {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.chart-size-slider .slick-dots li button:before {
    font-size: 30px !important;
}

.chart-size-slider .slick-dots li.slick-active button:before,
.chart-size-slider .slick-dots li button:hover {
    opacity: 0.75;
    color: var(--pink) !important;
}

.chart-size-slider .slick-arrow {
    direction: rtl;
}

.cs-form-field {
    position: relative;
}

.cs-form-field label {
    margin-bottom: 15px;
}

.cs-form-field select {
    position: absolute;
    left: 20px;
    top: 45px;
    bottom: 0;
    margin: auto;
    height: 28px;
    border: none;
    width: 100px;
    border-right: 1px solid var(--border);
    color: var(--grey2);
    padding: 0 10px;
}

.button-set {
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.button-set button {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-cart-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-cart-rp {
    background-color: var(--bg-gray);
}

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

.pd-cart-tbl {
    border: none !important;
    border-collapse: separate !important;
}

.pd-cart-tbl tbody td {
    padding: 20px 20px;
    border-bottom: 1px solid var(--border);
}

table.pd-cart-tbl th {
    color: var(--black);
    font-size: 16px;
    font-family: var(--medium);
    padding: 15px 20px;
    white-space: nowrap;
}

.pd-cart-img {
    width: 55px;
    display: block;
}

.pd-cart-tbl-detail {
    display: flex;
    gap: 8px;
}

.e-dress {
    color: var(--black);
    font-size: 16px;
    font-family: var(--medium);
}

.pd-c-name {
    color: var(--grey2);
    font-size: 16px;
    font-family: var(--medium);
}

.pd-cart-b {
    color: var(--pink);
    font-size: 16px;
    font-family: var(--bold);
    margin-top: 10px;
}

.pd-cart-count-down {
    border: 1px solid var(--border);
    color: var(--black);
    height: 30px;
    width: 120px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.pd-cart-cont-1 {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-cart-cont-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 250px;
    margin: 0 0 30px 0;
}

.pd-cart-sh {
    font-size: 40px;
    font-family: var(--regular);
}

.pd-cart-rup {
    color: var(--red);
}

.live-events-detail-hd .product-title a {
    font-size: 20px;
    margin-bottom: 2px;
    margin-top: 0;
    color: var(--black);
    text-decoration: none;
    font-family: var(--medium);
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.live-events-detail-hd .pr-name {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: var(--grey);
    font-family: var(--medium);
    margin-bottom: 10px;
}

.live-event-wrap {
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-gray);
    padding: 35px 40px 70px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.live-event-content {
    margin-top: 18px;
    width: 50%;
}

.live-event-content h3 {
    font-size: 20px;
    font-family: var(--medium);
}

.live-event-content p {
    font-size: 16px;
    font-family: var(--regular);
    color: var(--grey4);
}

.event-slide-box {
    width: 45%;
}

.live-event-slide {
    display: inline-grid !important;
}

.live-event-slide .slick-prev,
.live-event-slide .slick-next {
    top: auto !important;
    bottom: -70px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 10;
}

.live-event-slide .slick-prev {
    right: 70px;
}

.live-event-slide .slick-next {
    left: 70px;
}

.l-ev-cl path {
    fill: var(--pink);
}

.l-ev-date {
    color: var(--grey4);
    margin: 0 4px;
}

.send-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 25px;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}

.l-e-date {
    margin: 0 4px;
    font-size: 14px;
    color: var(--grey4);
    font-family: var(--regular);
}

.live-event-MH {
    font-size: 20px;
    color: var(--black);
    font-family: var(--medium);
}

.live-ev-sub-h {
    font-size: 20px;
    color: var(--grey4);
    font-family: var(--medium);
}

.page-padding {
    padding-top: 70px;
    padding-bottom: 60px;
}


.profileImgWrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.profileImgContainer {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #d9d9d9;
}

.profileImgContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profileImgWrapper input[type="file"] {
    visibility: hidden;
    height: 0;
    width: 0;
}

.cameraIcon {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 70px;
    height: 70px;
    margin: auto;
    align-items: center;
    justify-content: center;
    background-color: rgba(225, 225, 225, 0.9);
    border-radius: 50%;
}

.cameraIcon img {
    width: 40px;
    height: auto;
    cursor: pointer;
}

.profileImgContainer:hover .cameraIcon {
    display: flex;
}
.common-form-heading{
    display: flex;
    font-size: 30px;
    color: var(--black);
    line-height: 40px;
    width: 100%;
}
.form-group{
    margin-bottom: 15px;
}
.form-label{
    font-family: var(--medium);
    font-size: 18px;
    margin-bottom: .2rem;
}
.form-label span.staric{
    font-family: var(--popRegular);
    font-size: 18px;
    color: var(--pink);
}
input[type="text"].form-control,
select.form-control{
    font-family: var(--medium);
    font-size: 17px;
}
input[type="text"].form-control.fEng{
    font-family: var(--popRegular);
    font-size: 16px;
}
.modHeading{
    display: flex;
    width: 100%;
    font-size: 35px;
    color: var(--black);

}
.modText{
    display: flex;
    width: 100%;
    font-size: 18px;
    color: var(--grey2);
    font-family: var(--medium);
}
.timer-count-event{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}
.countdownEvent{
    display: flex;
    width: 100%;
    max-width: 500px;
    font-family: var(--popRegular);
    align-items: center;
    justify-content: space-between;
}
.countdownEvent span{
    color: var(--grey2);
    font-size: 15px;
}
.timeSlot{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey9);
    border-radius: 10px;
    width: 45px;
    height: 45px;
}
.frmCatBg{
    display: block;
    width: 100%;
    background-color: var(--bg-gray);
    border-radius: 5px;
    padding: 24px;
}

.uploadInstruction{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.uploadInstructionWrapper{
    display: block;

}
.uploadInstructionTitle{
    display: block;
    font-family: var(--medium);
    color: var(--grey4);
    font-size: 18px;
}
.uploadInstructionDimension{
    display: block;
    font-family: var(--medium);
    color: var(--grey2);
    font-size: 12px;
    max-width: 300px;
}


/*********************Multi Image Upload Start*******************/

#upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.upload-box {
    position: relative;
    width: 107px;
    height: 107px;
    border: 1px solid var(--grey2);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    background-image: url("../images/svg/camera-grey.svg");
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: 40px; */
}
.upload-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upload-plus {
    font-size: 24px;
    color: #888;
    position: absolute;
}
.file-input {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    cursor: pointer;
}
.previews-container{
    width: 100%;
    height: 100%;
}
.close-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: #f00;
    color: #fff;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}




/*********************Multi Image Upload End*******************/

.frmTimeRow{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}
.emailAddListContianer{
    display: none;
    width: 100%;
}
#email-container{
    padding-right: 35px;
}
.inputBtn{
    display: flex;
    gap: 10px;
    width: 100%;
}
#email-container input{
    max-width: 400px;
}
.tagList{
    display: flex;
    width: 100%;
    gap: 16px;
    margin-bottom: 16px;
    padding-right: 35px;
    flex-wrap: wrap;
}
.email-tag{
    display: flex;
    font-size: 15px;
    font-family: var(--popRegular);
    color: var(--grey4);
    background-color: var(--bg-gray);
    padding: 5px 8px 5px 10px;
    border-radius: 5px;
    align-items: center;
    gap: 3px;
}
.remove-email{
    font-size: 22px;
    font-family: var(--popRegular);
    line-height: 14px;
    display: block;
    height: fit-content;
    padding-top: 2px;
    cursor: pointer;
}
.remove-email:hover{
    color: var(--red3);
}
.post_cover_video_event{
    max-height: none;
}
.live-broadcast-wrap {
    display: block;
    background-color: var(--bg-gray);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.cq-Tabs-list{
    width: 100%;
}
.cq-Tabs-list .nav-tabs .nav-link.active {
    color: #495057;
    background-color: transparent;
}
.cq-Tabs-list ul.nav-tabs li.nav-item button::after {
    background-color: transparent;
}
.cq-Tabs-list ul.nav-tabs li.nav-item button.nav-link.active::after {
    background-color: var(--pink);
}
#commQuesTabContent{
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
}
.live-broadcast-wrap .live-ev-sub-h{
    font-size: 16px;
}
.live-broadcast-wrap .live-event-MH{
    font-size: 18px;
}
.live-broadcast-wrap .border-bottom-line{
    margin: 20px 0;
}
.live-broadcast-wrap .event_date{
    margin-bottom: 0;
    margin-left: 0;
}
.live-broadcast-section{
    padding-bottom: 80px;
    padding-top: 40px;
}
.headingDrDown{
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
}
.sideDrDown{
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}
.sideDrDown select.form-control{
    padding-left: 40px;
    width: auto;
}
.tblUserName{
    display: flex;
    align-items: center;
    gap: 7px;

}
.tblUserName img{
    display: block;
    width: 34px;
    height: 34px;
}
/* table.tableMrRow{
    border-collapse: collapse !important;
    border-spacing: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
}
table.tableMrRow td {
    color: #9E9E9E;
    font-size: 16px;
    font-family: var(--medium);
    padding: 10px 20px 10px 20px;
} */
table.tableMrRow{
    /* table-layout: fixed; */
}
table.tableMrDrDown tr{
    position: relative;
    cursor: pointer;
}
table.tableMrDrDown tr:hover{
    background-color: var(--bg-gray);
}
table.tableMrDrDown tr.hasDrop{
    background-color: var(--bg-gray);
}
table.tableMrDrDown tr.hasDrop td{
    padding-bottom: 60px;
}

/* 
table.tableMrRow td.tableMrRowTdP{
    padding: 0;
}
table.tableMrRow .tableMrTbl{
    width: 100%;
}
table.tableMrRow table.tableMrTbl tr{
    border: none;

} */
table.tableMrRow tr td.questionCtntTd{
    padding-bottom: 0;
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    bottom: 10px;
}
table.tableMrRow tr td .questionCtnt{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* width: 0px;
    max-width: 0; */
}
.twBtns{
    display: flex;
    gap: 8px;
}
.hidden-content{
    display: none;
}

.toggle-row{
    background-image: url(../images/svg/drop-arrow-Light.svg);
    background-repeat: no-repeat;
    background-position: top 23px left 20px;
}
.toggle-row.hasDrop{
    background-image: url(../images/svg/up-arrow-Light.svg);
}
.up-event-content h6{
    color: #cb0000;
}
.countdown-heading{
    font-family: var(--medium);
    color: var(--grey4);
    font-size: 18px;
}
.ck-editor__editable_inline p{
    min-height: 120px;
}
.subscription-cards-main-wrapper{
    justify-content: center;
    gap: 40px;
    
}
.subscription-card{
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 240px;
    padding: 16px;
}
.subs-duration-title{
    display: flex;
    width: 100%;
    font-size: 20px;
    font-family: var(--regular);
    color: var(--grey4);
    line-height: 15px;
}

.subs-pricing{
    display: flex;
    width: 100%;
    gap: 7px;
    font-family: var(--bold);
    color: var(--black);
    font-size: 40px;
}
.subs-price{
    display: inline-block;
    line-height: 60px;
}
.subs-currency{
    display: inline-block;
    line-height: 50px;
}
ul.subs-list{
    display: block;
    width: 100%;
    padding: 0;
}
ul.subs-list li{
    display: block;
    width: 100%;
    font-family: var(--regular);
    color: var(--grey4);
    font-size: 16px;
    padding-right: 25px;
    background-image: url(../images/svg/check.svg);
    background-repeat: no-repeat;
    background-position: right 0 top 7px;
}
.cmnUserName{
    display: flex;
    align-items: center;
    gap: 7px;

}
.cmnUserName img{
    display: block;
    width: 34px;
    height: 34px;
}
.cmnUserName span{
    display: flex;
    width: 100%;
    color: var(--grey2);
    font-family: var(--medium);
    font-size: 16px;
}

.cmnTxtIcon {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.cmnTxtIcon .cmnTxt {
    font-size: 18px;
    font-family: var(--regular);
    color: var(--grey3);
}

.card-sidebar{
    overflow: hidden;
    background-color: var(--bg-gray);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 100%;
    
}
.p-cards-main-wrapper > div{
    margin-bottom: 30px;
}
.bdcst-vid-cal{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}
.sidebarTrigger{
    display: flex;
    background-color: var(--bg-gray);
    width: 100%;
    border-radius: 5px;
    color: var(--black);
    font-family: var(--medium);
    font-size: 18px;
    padding: 8px 15px 8px 15px;
    background-image: var(--bs-accordion-btn-icon);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left 15px top 10px;
    cursor: pointer;
}
.sidebarTrigger{
    display: none;
}
.events-main-wrapper{
    margin-top: 20px;
}