

/* Section header */
.section_header {
  font-size: 25px;
  position: relative;
}

.section_header::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 0px;
  width: 70px;
  height: 2px;
  background-color: #a72d4a;
}


/* Carousel section */

/* Product */

.product {
  max-width: 240px;
  position: relative;
  background-color: #fff;
  border-top: 5px solid #edebeb;
  /* box-shadow: 2px 2px 2px 4px rgb(245, 243, 243); */
}

.product .prd_img {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.product  .cart-btn, .product .add_cart_btn{

  /* div.quick-add */
  height: 33px;
  width:90%;
  background: #FFFFFF;
  border-radius: 5px;
  color: #5E0616;
  background-color: #71011c;
  color: #FFF;
}



.product .prd_title {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product .prd_price{
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  color: #5E0616;
  /* box-shadow: 1px 1px 2px 2px #CCC; */
  border-radius: 10px;
  padding: 4px;
  display: inline-block;
}


.product .prd_img img, .product .prd_img video {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}

.product.cart.avlb{
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 10px;
  /* border:  2px solid #bd6379; */
  height: 100%;
  /* margin: 0px !important; */
  /* box-shadow: 2px 2px 2px 4px #bd6379 */
}
.product.cart.avlb:hover {
  transform: scale(1.05); /* Adjust the scale value as needed */
  background-color: #e6c8cf;
  
}


.product button.cart {
  background: none;
  color: #900 !important;
  padding: 3px;
  font-style: italic;
}


.product .checkout_ref {
  margin: 5px;
  border-radius: 10px;
  border: #71011c 1px solid;
  color: #71011c !important;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
}

/* 
@media (max-width: 768px) {
  .product {
    width: 80%;
  }
} */

.product .prd_overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #FFF;
  z-index: 2;
  background-color: rgba(70, 196, 158, 0.5);
  padding: 10px;
  display: none;
  cursor: pointer;
}

/* .product:hover .prd_overlay{
  display: flex;
} */



.sform {
  text-align: center;
}

.sform>div {
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 500px;
  color: #71011c;
}

.sform>div .form-control label {
  color: #71011c;
  font-size: 22px;
}

.sform>div input,
.sform>div select {
  border: 1px solid #71011c;
}


.tform {
  text-align: center;
}

.tform .tform_wrapper {
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 700px;
  color: #71011c;
  background-color: #fff;
  box-shadow: 1px 1px 6px 2px #a72d4a;
  border-radius: 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px;
}

.tform .tform_header {
  background-color: #a72d4a;
  color: #FFF;
  padding: 0px 5px;
  margin-bottom: 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  box-shadow: 1px 1px 1px 10px #a72d4a;
  text-align: center;
}

.tform .tform_header h2 {
  font-size: 24px;
}

.tform .tform_header button {
  float: right;
  font-size: 18px;
}

.tform label {
  color: #71011c;
  font-size: 18px;
}

.tform input,
.tform select,
.tform textarea {
  border: 1px solid #71011c;
  min-width: 250px;
}

.tform input:read-only,
.tform input:disabled,
.tform select:disabled {
  border: none;
  outline: none;
  background-color: #fff;
}


.should_show_edmode{
  display: none;
}


.tform.dmode input {
  border: none;
  outline: none;
}

.tform.dmode .form-control {
  border: none;
  outline: none;
  padding-left: 0px;
  background-color: #e4e4e4;
}

.form_error {
  color: red;
}

.f_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 18px;
}

.deal_table {
  width: 100%;
  border: none !important;
}

.deal_table th {
  border: none !important;
}

.deal_table,
.deal_table tr {
  /* background-color: #e4e4e4 !important; */
   background-color: transparent;
}

.deal_table tr td {
  /* background-color: #FFF !important; */
  /* border-top: 1px solid #e4e4e4; */
  border: 1px solid #e4e4e4;
}
table.dataTable.deal_table tbody tr {
  background-color: transparent;
}

.deal_table tr td:first-child {
  border-top-left-radius: 10px;
}

.deal_table tr td:last-child {
  border-top-right-radius: 10px;
}

.deal_table tr td:first-child {
  border-bottom-left-radius: 10px;
}

.deal_table tr td:last-child {
  border-bottom-right-radius: 10px;
}

.deal_table tr td:first-child {
  width: 70px;
}

/* .deal_table td:nth-child(3){
  min-width: 20% !important;
}
.deal_table td:nth-child(4){
  min-width: 15% !important;
} */

.deal_table .name_area>div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 500px;
}

.deal_table .name_area img {
  width: 20px;
  margin-right: 20px;
}

.deal_table .name_area span {
  font-size: 16px;
  color: #71011c !important;
  text-overflow: ellipsis;
}

.deal_table .name_area small {
  font-size: 14px;
  margin-left: 40px;
}

.deal_table .price_area {
  font-size: 16px;
  font-weight: bold;
  color: #900;
}

.deal_table .price_area span {
  color: #777;
  text-decoration: line-through;
  margin-left: 20px;
  font-size: 16px;
  font-weight: lighter;
}

.deal_table .price_area small {
  color: #777;
  margin-left: 0px;
  font-size: 16px;
  font-weight: normal;
}

.deal_table td .btn {
  margin: 5px 0px;
}

.deal_table th.sorting_asc::after {
  content: '';
  display: none !important;
}

div.dataTables_paginate a {
  font-weight: bold;
  color: #71011c !important;
}

div.dataTables_paginate a.next::after {
  content: "" !important;
}

div.dataTables_paginate a.previous::before {
  content: "" !important;
}


#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  text-align: center;

}

#progressbar .active {
  color: #111111;
}

#progressbar li {
  list-style-type: none;
  /* font-size: 0.7rem; */
  width: 20%;
  float: left;
  position: relative;
  font-weight: 400;

  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}



#progressbar #step1:before {
  content: "1"
}

#progressbar #step2:before {
  content: "2"
}

#progressbar #step3:before {
  content: "3"
}

#progressbar #step4:before {
  content: "4"
}

#progressbar #step5:before {
  content: "5"
}

#progressbar li:before {
  width: 30px;
  height: 30px;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  color:  #5E0616;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
  /* Rectangle 2384 */
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #5E0616;
}

#progressbar li:first-child{
  text-align: left;
}
#progressbar li:last-child{
  text-align: right;
}
#progressbar li:first-child::before{
  margin-left: unset;
}
#progressbar li:last-child::before {
  margin-right: unset;
}

#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 15px;
  z-index: -1
}



#progressbar li.active:before,
#progressbar li.active:after {
  background: #a72d4a;
  color: #FFF;
  content:  "c" !important;
}

.progress {
  height: 20px
}

.progress-bar {
  background-color: #a72d4a;
}




.message {
  display: flex;
  height: calc(100vh - 80px);
  width: 100%;
  flex-direction: column;
  background-color: #FFF;
}

.message_body {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.message_footer {
  display: flex;
  flex-direction: row;
}

.message_footer textarea {
  flex: 1;
  padding-left: 10px;
  max-height: 60px;
}

.message_footer button {
  padding: 10x 20px;
  background: #06f;
  color: #FFF;
  border: #FFF 1px solid;
}

.msg {
  background-color: rgb(248, 248, 219);
  box-shadow: 1px 1px 1px 0px #999;
  font-size: 14px;
  border-radius: 10px;
  width: 70%;
  margin: 10px;
  padding: 2px 10px;
  display: inline-block;
  text-align: left;

}

.msgtm {
  color: #000 !important;
  white-space: pre-wrap;
}

.msgt {
  font-size: 12px;
  color: #888;
}



.msg_s {
  text-align: right;
}

.msg_s .msg {
  background-color: rgb(249, 252, 255);
  border: 1px solid #EFEFEF;
}

.load_more_area {
  margin: 10px;
}

.load_more_area button {
  font-size: 12px;
  padding: 3px;
  background: #06f;
  border: none;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
}





.cblog.blog {
  box-sizing: border-box;
}


.cblog.blog .bwarpper{
  margin-top: 20px;
  box-sizing: border-box;
  box-shadow: 1px 1px 1px 2px #edeced;
  /* border: 1px solid #f2ccd5; */
  background-color: #FFF;
  border-radius: 8px;
}
.cblog.blog .bwarpper .content-body{
  padding: 10px;
}



.blog h2 {
  color: #71011c;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  /* margin-bottom: 10px; */
  display: inline-block;
  box-sizing: border-box;
  white-space: pre-line;
  word-wrap: break-word;
  height: 44px;
  min-width: 92%;
}

.blog h2>span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align:center;
  /* text-align: justify; */
}
.blog h2>span a{
  color: #71011c;
  text-decoration: none;
  text-align:center;
}

.blog p {
  color: #1E222B;
  line-height: 24px;
  /* letter-spacing: 1.1px; */
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  box-sizing: border-box;
  white-space: pre-line;
  word-wrap: break-word;
  height: 65px;
}

.blog p>span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  /* text-align: justify; */
  /* font-family: Georgia, Arial, Helvetica, sans-serif; */
}

.blog .section__link {
  color: #71011c !important;

}

.blog .section__link i {
  position: relative;
  top: 0px;

}

.blog .aspect_img {
  width: 100%;
  aspect-ratio: 420/212;
}

.blog .aspect_img img, .blog .aspect_img video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.cloader {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(222, 2222, 2222, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showmorebutton__base {
  text-align: center;
}

.showmorebutton__base>button {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  height: 1px;
  position: relative;
}

.showmorebutton__base>button>span {
  position: absolute;
  top: -20px;
  background-color: #FFF;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 18px;
  left: calc(50% - 60px);
}


.showmorebutton__base>a {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  height: 1px;
  position: relative;
  display: inline-block;
}

.showmorebutton__base>a>span {
  position: absolute;
  top: -20px;
  background-color: #FFF;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 18px;
  left: calc(50% - 60px);
}


.size_n {
  display: flex;
  margin: 8px;
  opacity: 0.5
}

.size_n2 {
  padding-left: 10px;
  width: 65px !important;
  min-width: 65px !important;
  margin-left: 10px;
  border: 1px solid #999 !important;
  display: inline-block;
  border-radius: 5px;
}

.size_n1 {
  flex: 1;
  text-align: left;
}

.nav__countre>span {
  display: none;

}

.nav__countre.active>span {
  font-size: 9px;
  height: 15px;
  width: 15px;
  color: #FFF;
  border-radius: 50%;
  background-color: #a72d4a;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

input.field__input:read-only,
select.field__input:disabled {
  background-color: #eeeeee;
}

#dob:read-only {
  background-color: #FFF;
}
#dob:read-only:disabled {
  background-color: #eeeeee;
}


.scrollet {
  height: calc(100vh - 290px);
  overflow-y: auto;
  min-height: 300px;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  .scrollet {
    height: unset;
    overflow-y: unset;
    min-height: unset;
    overflow-x: unset;
  }

}

.form__title,
.title {
  color: #a72d4a;
}

.auth__wrap .title {
  color: white;
}


.field__input,
.select2-container .select2-selection--single {
  border-bottom-color: #777;
}

.product .prd_btn button {
  font-size: 14px;
  padding: 0px 10px !important;
  height: 32px;
  font-weight: normal;
  margin-top: 10px;

}

nav.nav {
  flex-wrap: unset;
}

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

}

mark {
  background-color: yellow;
}

.search__icon {
  cursor: pointer;
}


.address_nline {

}

.address_nline:nth-child(2n) {
  /* background-color: #f2d8de; */
}

.address_nline .la-trash {
  float: right;
  cursor: pointer;
  text-decoration: none;
  color: red;
}

.add_address_nline {
  text-align: right;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
}

.add_address_nline button {
  padding: 0px 5px;
  font-size: 13px !important;
  font-weight: normal;
  height: unset
}

.auth__inner{
  position: relative;
}
.signup-back-area{
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #FFF;
  padding: 1px 5px;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 2px #dbcbcb; 
}
.signup-back-area a{
  text-decoration: none;
}

@media (min-width: 768px) {
  .signup-back-area{
    top: 10px;
    left: 10px;
   }
}

.av_pic{
  cursor: pointer;
}
.av_pic img{
  box-sizing: border-box;
}
.av_pic:hover img{
  background-color: #d1b7bd;
  /* padding: 5px; */
}
.av_pic.active{
  background-color: #bd6379;
  padding: 20px;
}

/* .select2-selection--single{
  height: 32px !important;
  border-radius: 10px !important;
} */
.spost-result{
  border-bottom: 7px solid #ede9eb;
  padding-bottom: 7px;
  padding-top: 7px;
}
.spost-header{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.spost-header img{
  width: 50px;
  margin-right: 10px;
}
.spost-header div{
  flex: 1;
  color:#71011c
}
.spost-desc{
  font-weight: normal;
}


.modal-desc_title{
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 760px) {
  .modal-price{
    margin-bottom: 7px;
  }
  .modal-desc_title{
    margin-top: 10px;
  }
  


}


.modal-text{
  font-size: 16px;
  white-space: pre-wrap;
}



.modal-text ul, .modal-text ol {
  list-style-type: unset;
    margin-left: 30px;
  padding: unset;
  border: unset;
}

.modal-image, .modal-video{
  width: 100%;
  max-width: 500%;
}

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

.modal-title{
  color: #71011c;
  font-weight: bold;
  font-size: 1.1rem;
  flex: 1;
}
.modal-price{
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.modal-price b{
  font-weight: normal;
}
.modal-price span{
  color: #71011c;
  margin-left: 30px;
  font-weight: bold;
}

.modal-size b{
  font-size: 16px;
}
.modal-size span{
  margin: 5px;
  font-size: 14px;
  color: #000;
  background-color: #efefef;
  border-radius: 5px;
  padding: 1px 3px;
}

.modal-oimage{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.modal-oimage .small-img-col{
  width: 70px;
  height: 70px;
  margin: 5px;
  cursor: pointer;
  /* border: 2px solid #bd6379; */
  background-color: #FFF;
  box-shadow: 1px 1px 2px 2px #CCC;
}
.modal-oimage .small-img-col img, .modal-oimage .small-img-col video{
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}





#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

#loading-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
}

.page-item.active .page-link{
  /* background-color:#f6faf1; */
  background-color:#a72d4a;
  border-color: #a72d4a;
}
.page-link{
  color: #71011c;

  /* color: #fbe9ee; */
}

.payment_method{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
}


.payment_method h4{
  font-size: 18px;
  color: #71011c;
  margin-top: 20px;
  padding-top: 20px;
  cursor: pointer;
  border-top: 1px solid #cd8c9c;
  border-radius: 10px;
}

.payment_method h4 label{
  cursor: pointer;
  display: flex;
  width: 100%;
}

input.payment_type{
  display: none;
} 
input.payment_type +span{
  height: 25px !important;
  width: 25px !important;
  background-color: #FFF;
  border-radius: 50%;
  border: 2px solid #71011c;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 15px;
} 

.payment_method  label span:nth-child(3){
  flex: 1;
} 


input.payment_type:checked +span{
  
  border: 10px solid #71011c;
 
} 



.payment_content{
  display: none;
  margin-top: 20px;
  /* padding-left: 10px; */
}


.pfpayment_link{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #FFF;
  padding: 10px;
  width: :100%;
}
.pfpayment_link a{
  font-size: 37px;
  text-decoration: none;
  margin: 7px;
  display: inline-block;
}

.pfpayment_link a.la-whatsapp{
  color: #6de386 !important;
}
.pfpayment_link a.la-telegram{
  color: #6eccef !important;
}
.pfpayment_link a.la-envelope{
  color: #e25353 !important;
}
.pfpayment_link a.la-copy{
  color: #adc4cc !important;
}
.pfpayment_link a.la-copy span{
  font-size: 14px;
}

.paym_ent_area_x{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;

}

.paym_ent_area_xw{
  /* box-shadow: 2px 2px 2px 4px #dbbec5; */
  border-radius: 10px;
  padding: 20px 10px;
  width: 100%;
  max-width: 650px;
  


}



.date-input-container {
  display: flex;
  align-items: center;
}

.date-input-container .date-input {
  width: 40px;
  border: none;
  /* border-bottom: 1px solid #000; */
  text-align: center;
  /* padding: 2px; */
  /* margin-right: 5px; */
}

.date-input-container .date-input:focus {
  outline: none;
  border-bottom: 1px solid #000;
}

.date-input-container .hyphen {
  /* margin-top: 5px; */
  /* margin-right: 5px; */
}
.v_mode_n.active{
  background-color: #eeeeee
}


.zoom-container {
  position: relative;
}

.zoom-container .zoom-lens {
  position:absolute !important;
  right: 0px;
  top: 0px;
  border: 1px solid #ccc;
  width: 100px; /* Adjust the size of the zoom lens */
  height: 100px; /* Adjust the size of the zoom lens */
  display: none;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 300% 300%; /* Adjust the zoom level */
  z-index: 9999;
  background-color: #bd6379;
}

.zoom-container .zoom-image {
  /* display: block;
  max-width: 100%;
  height: auto; */
}

.zoom-container:hover .zoom-lens {
  display: block;
}

.zebra_input{
  border: 1px solid #777;
  background-color: #FFF;
  border-left: none;
  border-top: none;
  border-right: none;
  padding-left: 5px;
  color: #a72d4a;
  font-weight: bold;
}
.zebra_input:focus{
  outline: none !important;
}
.zebra_input:read-only{
  background-color: #FFF;
}
.zebra_input:disabled{
  background-color: #e4e4e4
}

#date_h_container{
  position: relative;
}
#date_h_container #date_h{
  height: 0px;
  opacity: 0;
}
#date_h_container .Zebra_DatePicker{
  width: 100% !important;
  position: relative;
  z-index: inherit !important;
}
.Zebra_DatePicker_Icon_Wrapper{
  width:100% !important;
}

.brace_up_container{
  /* background-color: red; */
  background: linear-gradient(to right, #71011c, #FFF);
  width: 100%;
  padding: 30px;
  position: relative;
}

.brace_up_container .auth__container{
  min-height: calc(100vh - 60px);
  border-radius: 10px;
}
.brace_up_container  .auth__bg{
  border-radius: 10px;
}
.brace_up_footer{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #5E0616;
  margin-top: 45px;
}

.brace_up_footer .flinks{
  flex: 1;
}
.brace_up_footer .flinks a, .brace_up_footer .flinks span{
  color: #FFF !important;
  font-size: 12px;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 5px;
  font-weight: bold;
  display: inline-block;
}

.brace_up_footer .fapps{
  display: flex;
}
.brace_up_footer img{
  max-height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}



.shop_as_guest{
  position: absolute;
  top: 10px;
  right: 20px;
  text-align: center;
  z-index: 200;
  animation: blink_blink 2s ease-in-out infinite;
  text-decoration: none;

  /* Shop as a Guest */
  font-family: 'Gilroy-SemiBold';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #5E0616;

  /* Frame 1000005168 */

  padding: 10px;
  background: #FFFFFF;
  border-radius: 5px;


}


@media (max-width: 1023px) {
  
.brace_up_container{
  padding: 0px;
  padding-bottom: 60px;
}
.brace_up_container .auth__container{
  min-height: unset;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.brace_up_footer{
  bottom: 0px;
  height: 60px;
}

}

@media (max-width: 760px) {

  
  .brace_up_container{
    padding: 0px;
    padding-bottom: 100px;
    background:#71011c;
  }
  .brace_up_footer{
    bottom: 0px;
    height: 100px;
  }

  .brace_up_footer{
    flex-direction: column;
  }
  .brace_up_footer .flinks{
    flex: 1;
    text-align: center;
  }
  .brace_up_footer .flinks a, .brace_up_footer .flinks span{
    color: #FFF !important;
    font-size: 12px;
    margin-left: 7px;
    margin-right: 7px;
  }
  .brace_up_footer .fapps{
    margin-top: 10px;
    display: flex;
    flex: 1;
  }
  .brace_up_footer img{
    max-height: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  
  
  }


  @keyframes blink_blink {
    0%,  100% {
      transform: scale(0.9);
      background: linear-gradient(to right,  #FFF, #f8eff1);
    }
    50% {
      transform: scale(1);
      background: #fbfbfb;
      /* border: #71011c solid 1px; */
    }
  }



.vimeo-video{
  border:20px solid #bd6379 !important; 
  box-shadow:2px 2px 4px 4px #bd6379 !important;
}
@media (max-width: 1024px) {
  .vimeo-video{
    border:10px solid #bd6379 !important; 
  }
}

#modal_product .modal-content{
  /* border:5px solid #bd6379 !important;
  box-shadow:2px 2px 2px 4px #bd6379 !important; */
  background-color: #F4F5FA 
}

.check_area{
  cursor: pointer;
  position: relative;
  display: flex;
  color: #000;
  font-size: 16px;
  align-items: center;
  margin-top: 14px;
}

.check_area input{
  display: none;
}
.check_area input + span{
  width: 25px;
  height: 25px;
  display: inline-block;
  border: 3px solid #680f0f;
  background-color: #fff;
  margin-bottom: 3px;
  margin-right: 18px;
}
.check_area input:checked + span{
  border: 9px solid #680f0f;
  background-color: #fff;
}
.dmethod_area{
  text-align: center;
}
.dmethod_area_wp{
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 450px;
}

/* .category_price_wrapper{
  min-height: 230px;
  background-color: #FFF;
  width: 95%;
  max-width: 800px;
  padding-bottom: 100px;
  border: 1px solid #71011c;
  box-shadow: 2px 2px 2px 4px #dfbdbd;
  border-radius: 8px;
} */
.category_price_img_area{
}
.category_price_img_area img, .category_price_img_area video{
  max-width: 90%;
  display: inline-block;
}
.category_price_img_area .title{
  font-size: 18px;
}
.category_prices .n_category{
  display: flex;
  align-items: center;
  justify-content:space-evenly;
}
.category_prices .n_category span{
  display: inline-block;
  position: relative;
  border-bottom: 3px solid #EEE;
  box-shadow: 2px 2px 2px 2px #dfbdbd;
  border-radius: 3px;
  padding: 5px 10px;
  color: #000;
  cursor: pointer;
  background-color: #fdfcfc;
}

.category_prices .n_category span i{
  position: absolute;
  right: -5px;
  top: -5px;
  color: red;
  font-size: 12px;
  display: inline-block;
  background-color: #FFF;
  border: 1px dotted #757272;
  padding: 0px 3px;

}

.category_prices .n_category span.active, .category_prices .n_category span:hover, .category_prices .n_category span:focus{
  background-color: #71011c;
  color: #FFF;
  font-weight: bold;
  border-bottom: 3px solid #e87e97;
}
.category_prices .price_area{
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.add_cart_btn{
  max-width: 250px;
  font-size: 14px;
  border-radius: 3px;
  display: inline-block;
}
.add_cart_btn input{
  max-width: 65px;
  height: 30px;
}
.add_cart_btn .multi_btn_hascart{
  height: 30px;
  border:  1px solid #a72d4a;
}

.add_cart_btn button{
  color: #000;
  padding: 0px 3px;
}
.add_cart_btn .la-plus:hover, .add_cart_btn .la-plus:focus{
  background-color: #6de386;
}
.add_cart_btn .la-minus:hover, .add_cart_btn .la-minus:focus{
  background-color: #eebd64;
}
.add_cart_btn button.add_tcart{
  background-color: #a72d4a !important;
  color:#FFF !important;
  padding: 0px 5px;
  margin-left: 5px;
}
.add_cart_btn a.check_tcart{
  background-color: #eded36 !important;
  color:#000 !important;
  padding: 0px 3px;
  box-sizing: border-box;
  text-decoration: none;
  margin-left: 2px;
  border: 1px solid #842b2b;
}
.cart_action_holder .action_info{
  text-align: center;
  font-size: 12px;
}

/* =============== ON Big Display============================== */
.product_nx .add_cart_btn{
  max-width: 450px;
  font-size: 16px;
}
.product_nx .add_cart_btn input{
  max-width: 70px;
  height: 35px;
}
.product_nx .add_cart_btn button{
  color: #000;
  padding: 0px 6px;
}
.product_nx .add_cart_btn button.add_tcart{
  padding: 0px 10px;
  margin-left: 5px;
}
.product_nx .add_cart_btn a.check_tcart{
  padding: 0px 10px;
  margin-left: 2px;
}

.cart_table_holder{
  /* background-color: #FFF; */
  /* border: 1px solid #a72d4a; */
  /* Frame 1000005151 */


}

.cart_table thead th{
  background-color: #f4adad;
  color:#000;
}
.cart_table tfoot th{
  /* background-color: #FFF; */
  color:#000;
  mask-size: 18px;
}
.cart_table td, .cart_table th{
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  padding: 5px;
}
.cart_table td small{
  font-weight: bold;
}
.cart_table .main_item td{
  border-top: 5px solid #e6e4e4;
}
.cart_table .cart_action_holder{
  white-space: nowrap;
}
.cart_table img, .cart_table video{
  max-width: 50px;
  display: inline-block;
  /* width:100%; */
}
.cart_table th:first-child, .cart_table td:first-child {
  padding-left: 5px;
}

.cart_table tfoot th{
  font-size: 14px;
  padding: 8px 5px;
}

.cart_table .btn-main{
  
    /* div.quick-add */
    height: 36px;
    width:90%;
    background: #FFFFFF;
    border-radius: 5px;
    color: #5E0616;
    max-width: 300px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

@media (max-width: 768px) {
  
  .cart_table .cart_action_holder .input-group-append, .cart_table .cart_action_holder .input-group-prepend{
    display: none;
  }
  .cart_table img{
    max-width: 100px;
  }

}

@media (max-width: 480px) {
  
  .cart_table img{
    max-width: 50px;
  }

}


.post{
  background-color: #FFF;

}
.post .title{
  /* font-family: 'Gilroy-Medium'; */
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.0075em;
  text-transform: capitalize;
  color: #5E0616;

}

.post h1{
  font-size: 2rem;
}
.post h2{
  font-size: 1.8rem;
}
.post h3{
  font-size: 1.5rem;
}
.post h4{
  font-size: 1.3rem;
}
.post h5{
  font-size: 1.2rem;
}


.comment_meta{
  /* border-top: 1px solid #f8f2f2; */
  margin-top: 10px;
  text-align: left;
  vertical-align: middle;
  padding-bottom: 20px;
  /* background-color: #fdfafa; */
}
.comment_meta a{
  display: inline-block;
  margin: 2px 10px;
  cursor: pointer;
  vertical-align: middle;
  color: #999 !important;
  font-size:14px
}

.nd-none{
  display: none;
}

.comment_field{
  /* background-color: #f5eaea; */
  padding: 10px;
  border-radius: 10px;
}
.comment_field .comment_action{
  text-align: right;
}
.comment_field .comment_action button{
  background-color: #FFF;
  color: #000;
  margin: 5px;
  padding: 7px 20px;
  border-radius: 5px;
  border: 1px solid #71011c;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

.post_comment{
  /* background-color: #f5eaea; */

}

.vertical-thread {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical-thread li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
}

.vertical-thread li::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #f0ecec; /* Change the color as needed */
 
}
.vertical-thread li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #f0ecec; /* Change the color as needed */
  
}

.vertical-thread .comment_back{

  position: absolute;
  top: -5px;
  left: 10px;
  /* height: 30px; */
  cursor: pointer;
  /* background-color: #FFF; */
  border-radius: 10px;
  line-height: 14px;
  padding-right: 30px;
  opacity: 0.8;
  font-size: 14px;

}

.post_comment h3{
  font-size: 20px;
  line-height: 20px;
}
.comment_users{
  margin-left: 25px;
  padding-bottom: 40px;
}

.comment_user{
  background-color: #FFF;
  padding: 15px 5px;
  padding-bottom: 20px;
  padding-bottom: 5px;
  margin-top: 20px;
  /* border-radius: 10px; */
  /* margin-left: 10px; */
  margin-right: 10px;
  /* box-shadow: 1px 1px 1px 2px #CCC; */
  border-bottom: 1px solid #f0ecec;  
}
.comment_user:last-child, .main_comment.comment_user{
  border-bottom: none;
}

.comment_user .user_head{
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #ece7e7; */
  padding-bottom: 5px;
  position: relative;
}
.comment_user .user_head img{
  position: absolute;
  left: -43px;
  top: 0px;
  width: 35px;
  height: 35px;
  min-width: 20px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 7px;
  background-color: #6eccef;

}
.comment_user .user_head h4{
  font-size: 14px;
  color: #680f0f;
  font-weight: bold;
  margin-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comment_user .user_head span{
  color: #b6b3b3;
  font-size: 12px;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.comment_user .comment{
  white-space: pre-wrap;
  font-size: 14px;
  font-family: inherit;
  margin-left: 10px;

}


.comment_user .flag{
  margin-left: 30px;
  display: inline-block;
  cursor: pointer;
  font-size: 18px !important;
}

.comment-loader{
  margin-left: 10px;
  margin-top: 20px;
}
.comment-loader button{
  background-color: #FFF;
  /* border: 1px solid #842b2b; */
  color: #000;
  font-size: 14px;
  padding: 3px 25px;
  border-radius: 10px;
  font-weight: normal;
}


@media (max-width: 760px) {
 
  .containennnr__body{
    padding: 10px 10px !important;
  }
  .gslide-external{
    max-height: 100% !important;
  }
  .fancy-title h1{
    font-size: 24px;
  }
  *{
    box-sizing: border-box;
  }

}

.btn-main-special{
  background-color: #FFF;
  border: 1px solid #d28d8d;
  padding: 5px 20px;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 4px #b87575;
  color: #71011c !important;
  cursor:pointer;
  text-decoration: none !important;
}

@media screen and (max-width: 640px) {
  div.dt-buttons {
    float: left !important;
    text-align: unset !important;
  }
}
@media only screen and (max-width: 1023px) {
  .overview_line .overview__item {
    min-width: calc(30% - 28px);
    /* box-shadow: 2px 2px 4px 2px #d49898; */
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .earnings.overview_line .overview__item {
    min-width: 140px;
    margin: 20px 8px;
    flex: 0 0 220px;
    /* box-shadow: 2px 2px 4px 2px #d49898; */
    margin-bottom: 10px;
  }
}
.earnings{
  font-family: 'Arial', sans-serif;
}
.withdraw_btn{
  background-color: #FFF;
  padding: 5px 5px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px 4px #d49898;
  color: #71011c;
  font-weight: normal;
  font-size: 14px;
}

.earnings .select_area select{
  width: 100%;
  max-width: 200px;
}
.earnings .card{
  box-shadow: 2px 2px 2px 4px #faf2f2;
}
.earnings .card h3{
  font-size: 18px;
}
.earnings table td, .earnings table th{
  font-size: 14px !important;
  text-align: left !important;
}
.earnings table thead th{
  background-color: #FFF !important;
}

.earnings {
  font-family: 'Arial', sans-serif;
  margin: 20px 0;
}

.earnings table {
  /* border-collapse: collapse; */
  width: 100%;
  box-sizing: border-box;
  border:  1px solid #bbb8b8 !important;
}

.earnings th, .earnings td {
  border-right: 1px solid #bbb8b8 !important;
  border-bottom: 1px solid #bbb8b8 !important;
  border-left: none !important;
  border-top: none !important;
  padding: 12px;
  text-align: left;
  color: #555;
}

.earnings .dataTables_filter input{
  border: 1px solid #bfbdbd !important;
}


  /* --- Modern, Professional Styles --- */
   #sexLogModal {
    --primary-color: #4e73df; /* Modern blue */
    --primary-hover: #3a5ec0;
    --danger-color: #e74a3b;
    --light-bg: #f8f9fc;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

#sexLogModal .btn-secondary{
    background-color: #e0e0e4;
    color: #444;
}
#sexLogModal .btn-outline-secondary{
    background-color: transparent;
    color: #720f06 !important;
    width: auto !important;
}
#sexLogModal .btn-primary{
    background-color: #720f06;
    color: #FFF;
}

#sexLogModal .modal-content .modal-body {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    background-color: #e4e0e0;
    border-radius: 20px;
}
#sexLogModal .modal-header,
#sexLogModal .modal-footer {
    background-color: var(--light-bg);
    border-bottom: 1px solid #e3e6f0;
}
#sexLogModal .modal-header {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
#sexLogModal .modal-footer {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

#sexLogModal .main-nav-pills .nav-link {
    color: #720f06;;
    font-weight: 600;
    transition: var(--transition);
    background-color: #e7e4e3;
    opacity: 0.8;
}
#sexLogModal .main-nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #720f06 !important;
    background-color: #c7a5a2;
    font-weight: bold !important;
    opacity: 1;
    border: 1px solid #71011c !important;
}

#sexLogModal .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    border-color: var(--primary-color);
}

#sexLogModal .btn-outline-custom {
    border-color: #720f06;
    color: #720f06;
    transition: var(--transition);
    background: #FFF;
    max-width: 100px;
}
#sexLogModal .btn-group-toggle > .btn-outline-custom.active,
#sexLogModal .btn-group-toggle > .btn-outline-custom:hover {
    background-color: #720f06;
    color: white;
    border-color: #720f06;
}

#sexLogModal .btn-save {
    background-color: var(--success-color);
    border-color: var(--success-color);
    transition: var(--transition);
}
#sexLogModal .btn-save:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

#sexLogModal #audioSection {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.25rem;
}
#sexLogModal #recordButton.is-recording {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: white;
}

#sexLogModal .media-entry {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    gap: 0.75rem;
    padding: 0.5rem;
    background-color: #f8f9fc;
    border-radius: var(--border-radius);
}
#sexLogModal .media-entry audio {
    flex-grow: 1;
    height: 40px;
    border-radius: var(--border-radius);
}

#sexLogModal .custom-file-label::after {
    color: var(--primary-color);
}

#sexLogModal .nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    border-color: #dee2e6 #dee2e6 var(--light-bg);
}

#sexLogModal .previous-note {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}
#sexLogModal .previous-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
#sexLogModal .previous-note-date {
    color: #858796;
    font-size: 0.875rem;
}
#sexLogModal .previous-note-type {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background-color: #eaecf4;
    color: var(--primary-color);
    font-weight: 600;
}
#sexLogModal .previous-note-content {
    color: #5a5c69;
}

#sexLogModal .la {
    margin-right: 0.5rem;
}
#sexLogModal .input-group .btn {
    margin-left: 0.5rem;
}

#sexLogModal .nav {
    flex-direction: row !important;
    display: flex;
    justify-content: space-around;
    position:  relative !important;
    padding: 20px 10px;
    border: none !important;
}
#modalDateSubtitle{
    font-size: 14px;
    color: #777; 
}

.sexnote-icon{
  position: absolute ;
  right: 0px;
  top: 0px;
}
.Zebra_DatePicker td{
  position: relative;;
}


.block-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: rgba(255, 255, 255, 0.7); */
    background: linear-gradient(to right, rgba(233, 236, 89, 0.89), rgba(80, 28, 224, 0.8));
    /* semi-transparent */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    pointer-events: all;
    text-align: center;
    color: #030d61;
}

.block-overlay .fa-spinner {
    margin-bottom: 10px;
}

 /* Simple modal styling */
  .share-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
  }
  .share-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
  }
  .share-modal h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .share-links a, .copy-btn {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f2f2f2;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s;
  }
  .share-links a:hover, .copy-btn:hover {
    background: #e0e0e0;
  }
  .close-btn {
    float: right;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
    color: #666;
  }