@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    background-color: #fbfbfb;
    font-family: "Outfit", sans-serif;
    font-size:14px;
    line-height: 22px;
}
@media (min-width: 991.98px) {
    main {
        padding-left: 255px;
    }
}
:root {
    --white: #ffffff;
    --black: #000;
    --primaryColor: #0580D4;
    --secondaryColor: #090B3D;
    --orangeColor: #FC8209;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Saira Semi Condensed", sans-serif;
    color: var(--black);
}
ul{
  margin: 0;
  padding:0;
}
li{
  list-style: none;;
}
/*========= Form Style ======*/
.form-outline .form-control:focus~.form-label, .form-outline .form-control.active~.form-label {
  transform: translateY(-1rem) translateY(0.1rem) scale(0.8) !important;
}
.form-control {
  height: 45px;
  box-shadow: 0 2px 15px -3px rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 10px 20px -2px rgba(var(--mdb-box-shadow-color-rgb), 0.04);
  font-size: 16px;
  font-weight: 300;
}
.form-outline .form-control~.form-label {
  padding-top: 10px;
}
.select2-container--default .select2-selection--single {
  height: 45px !important;
  padding: 5px 12px;
}
.select2-container--default .select2-selection--multiple {
  min-height: 45px;
}
.select2-selection__placeholder{
  line-height: 32px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 35px;
}
/*=========Main NNavbar =======*/
.navbar{
  padding: 2px 0;
}
.navbar-brand{
  padding:0;
}
.navbar-brand img{
  width:130px;
}
#main-navbar .dropdown i{ 
  font-size: 20px;
}
.dropdown-menu .dropdown-item{
  font-size: 15px;
}
.dropdown-menu.user_notify_list {
  width: 300px;
  top: 5px !important;
  border: none;
  box-shadow: 0 3px 15px rgba(107, 114, 141, 0.2);
  right: 0 !important;
}
.notification-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-bottom: 1px solid #dddddd;
}
.notification-heading h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--primaryColor);
  margin: 0;
  line-height: inherit;
}
.notification-heading a {
  font-size: 15px;
  color: var(--primaryColor);
  font-weight: 400;
  display: inline-block;
  transition: .5s ease-in-out;
}
.notification-heading a:hover{
  color: var(--orangeColor);
}
.notification-heading a i{
  font-size: 15px !important;
}
.notification-footer {
  padding: 10px 10px;
  border-top: 1px solid #dddddd;
}
.notification-footer a {
  font-size: 15px;
  color: var(--primaryColor);
  font-weight: 400;
  display: inline-block;
  transition: .5s;
}
.notification-footer a:hover{
  color: var(--orangeColor);
}
.notification-footer a i{
  font-size: 15px !important;
}
.dropdown-menu li {
  border-bottom: 1px dashed #e9e9e9;
}
.dropdown-menu li .dropdown-item{
  padding: 5px 15px;
  transition: .5s;
}
.dropdown-menu li .dropdown-item:hover{
  background: #F0F8FC;
}
.dropdown-menu .dropdown-item span{
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  color: var(--black);
}
.nav-item .user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
.Notification-items-holder{
  height: 190px;
  overflow: auto;
}
.dropdown-menu li .dropdown-item i{
  font-size: 15px !important;
}
@media(max-width:575px){
  .navbar-brand img {
    width: 110px;
}
}
/*===========Sidebar=============*/
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 75px 0 0; /* Height of navbar */
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
  width: 240px;
  z-index: 600;
}
/*=================*/
#sidebarMenu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  z-index: 11;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
#sidebarMenu .list-group {
    height:80vh;
    overflow:auto;
}
#sidebarMenu.active {
  left: 0;
}
#sidebarMenu .dropdown .list-group-item{
  border-top:none;
  border-right:none;
  border-left:none;
}
#sidebarMenu .dropdown .dropdown-menu{
  position: static !important;
  transform: none !important;
  box-shadow: none;
}
#sidebarMenu .dropdown .dropdown-menu>li:last-child{
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  #sidebarMenu {
    left: 0 !important;
    height: auto;
    box-shadow: none;
  }
}
@media (max-width: 991.98px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar .active {
  border-radius: 5px;
  background-color: var(--primaryColor);
  color: var(--white);
  box-shadow: 0 17px 20px -8px rgba(77, 91, 236, .231372549);
}
.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

/*=================================
      Login Page Style
============================*/
.login-area .log-row{
  height: 100vh;
}
.login-outer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--mdb-card-border-radius);
  box-shadow: 0 2px 15px -3px rgb(0 151 157 / 35%), 0 10px 20px -2px rgb(0 213 239 / 2%);
  border-radius: 10px;
  background: linear-gradient(90deg, #30cfd0, #330867);
  overflow: hidden;
}
.log-left-form{
  width:50%;
  padding: 20px;
  background: var(--white);
}
.log-right-bnr{
  width: 50%;
  height: 100%;
}
.log-left-form .logo-page-logo{
  width: 170px;
  margin-bottom: 20px;
}
.login-title h1{
  border-left: 5px solid var(--primaryColor);
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  padding-left: 10px;
  margin-bottom: 20px;
}
.login-title p{
  font-size: 14px;
  line-height: 20px;
}
.log-left-form .form-control{
  height: 45px;
  box-shadow: 0 2px 15px -3px rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 10px 20px -2px rgba(var(--mdb-box-shadow-color-rgb), 0.04);
}
.log-left-form .form-outline .form-control~.form-label{
  padding-top: 10px;
}
.login-btn{
    background: var(--orangeColor);
}
#togglePassword{
    position:absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 2;
    border:none;
    padding:0;
    background: none;
}
@media(max-width:991px){
  .login-outer{
    display: block;
  }
  .log-left-form {
    width: 100%;
  }
  .log-right-bnr{
    display: none;
  }
}
@media(max-width:575px){
  .log-left-form .logo-page-logo {
    width: 140px;
    margin-bottom: 10px;
  }
  .login-title h1{
    border-left: 3px solid var(--primaryColor);
    font-size: 20px;
    line-height: 22px;
  }
  .log-left-form .form-check{
    font-size: 13px;
  }
  .remember-block{
    font-size: 13px;
  }
}

/**===============Data Table Style =======*/
.dataTables_scrollBody{
    min-height:39vh;
}
.page-item:first-child .page-link, .page-item:last-child .page-link{
  width:auto;
  height: auto;
}
table.dataTable{
  vertical-align: middle;
}
.table thead th{
  background-color: var(--secondaryColor);
  color: var(--white);
}
.table td button{
  font-size: 10px;
  display: block;
  padding: 6px 10px;
  width: 100%;
}
.table td .badge{
  display: block;
  width: 100%;
}
.page-link{
  width: 30px;
  height:30px;
  border-radius: 50%;
  line-height: 20px;
  cursor: pointer;
}
.page-link.active, .active>.page-link{
  background: var(--primaryColor);
  color: var(--white);
  cursor: pointer;
}
.paginate_button{
  padding: 0 !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  font-size: 14px;
  line-height: 20px !important;
}
.paginate_button:first-child{
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}
.paginate_button:last-child{
  width:auto !important;
  height: auto !important;
}
.paginate_button:last-child{
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}
.dataTables_filter input[type=search]{
  box-shadow: 0 2px 15px -3px rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 10px 20px -2px rgba(var(--mdb-box-shadow-color-rgb), 0.04);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}
.dataTables_filter input[type=search]:focus {
  transition: all .2s linear;
  border-color: #3b71ca;
  outline: 0;
  box-shadow: inset 0 0 0 1px #3b71ca;
}
@media(max-width:767px){
.dtr-control{
  display: flex;
}
}

/*======Footer ======*/
footer{
  background: var(--white);
  border-top: 1px solid #cdcdcd;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
}
@media(max-width:575px){
  footer{
    font-size: 15px;
    line-height: 20px;
  }
}

/*========= Page Title =======*/
.page-heading-section{
  position: fixed;
  top: 20px;
  z-index: 1030;
  left:34%;
}
.page-heading-section h1{
  font-size: 24px;
  color: var(--mdb-dark-bg-subtle);
}
@media(max-width:1366px){
  .page-heading-section{
    left:34%;
  }
}
@media(max-width:1250px){
  .page-heading-section{
    left:38%;
  }
}
@media(max-width:1199px){
  .page-heading-section{
    left:44%;
  }
}
@media(max-width:991px){
  .page-heading-section{
    position: static;
  }
  .page-heading-section h1 {
    background: var(--mdb-info-border-subtle);
    padding: 10px 15px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/*======= Dashboard Short Cut Area ===*/
.dashboard-shortcut-section .card{
    transition: .5s;
}
.dashboard-shortcut-section .card:hover{
    margin-top:-5px;
}
.dashboard-shortcut-section .card-body img{
    width: 55px;
}
@media(max-width:480px){
    .dashboard-shortcut-section .card-body{
        padding: 15px;
    }
    .dashboard-shortcut-section .card-body img {
        width: 35px;
    }
    .dashboard-shortcut-section .card-body h3{
        font-size: 20px;
    }
    .dashboard-shortcut-section .card-body p{
        font-size: 14px;
        line-height: 14px;
        min-height: 28px;
    }
}

/*====== Class List Section ========*/
.class-list-items .card{
  transition: .5s;
}
.class-list-items .card:hover{
  margin-top:-5px
}
.class-list-items .card-body{
  background: linear-gradient(90deg, #6a85b6, #bac8e0);
}
.class-list-items .col-12:nth-child(1) .card-body{
  background: linear-gradient(90deg, #89f7fe, #66a6ff);
}
.class-list-items .col-12:nth-child(2) .card-body{
  background: linear-gradient(90deg, #667eea, #764ba2);
}
.class-list-items .col-12:nth-child(3) .card-body{
  background: linear-gradient(90deg, #4facfe, #00f2fe);
}
.class-list-items .col-12:nth-child(4) .card-body{
  background: linear-gradient(90deg, #30cfd0, #330867);
}
.class-list-items .col-12:nth-child(5) .card-body{
  background: linear-gradient(90deg, #fa709a, #fee140);
}
.class-list-items .col-12:nth-child(6) .card-body{
  background: linear-gradient(90deg, #f093fb, #f5576c);
}
.class-list-items .col-12:nth-child(7) .card-body{
  background: linear-gradient(90deg, #a18cd1, #fbc2eb);
}
.class-list-items .col-12:nth-child(8) .card-body{
  background: linear-gradient(90deg, #37ecba, #72afd3);
}
.class-list-items .card-body .card-title{
  font-size: 15px;
  font-weight: 700;
}
.class-list-items .card-text{
  font-size: 14px;
}
.class-list-items .list-group-item{
  padding: 5px;
}
.create-btn{
  position: fixed;
  z-index: 1030;
  top: 15px;
  right: 12%;
}

/*====== Position Top Modal ======*/
.top-modal-dialog{
  max-width: 100%;
  margin: 0;
}
.top-modal-dialog .modal-content{
  border-radius: 0;
}
.btn-close{
  background-image: none;
  background: var(--mdb-code-color);
  opacity: 1;
  line-height: normal;
  color: var(--white);
}

/*========= Position Bottom Modal =======*/
.modal.fade.bottom-modal:not(.show) .modal-dialog {
  transform: var(--mdb-modal-fade-bottom-transform);
}
.modal .modal-dialog.modal-bottom {
  bottom: 0;
}
.modal .modal-frame {
  position: absolute;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.modal .modal-dialog.modal-bottom {
  bottom: 0;
}
.modal.show .modal-dialog {
  transform: none;
}
.bottom-modal .modal-content{
  border-radius: 0;
}
.bottom-modal .modal-header{
  border-radius: 0;
}
/*================ Class Create Modal =====*/
.choose-day h5{
  font-size: 16px;
  font-weight: 400;
}
.create-class-modal label{
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
/*=======Class Details =====*/
.class-details-inner ul li{
  display: inline-block;
  width: 49%;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 0 10px;
  border-right: 1px solid;
}
.class-details-inner ul li:nth-child(even) {
  border-right:none;
}
.class-details-inner ul li span{
  font-weight: 400;
}
@media(max-width:767px){
  .class-details-inner ul li{
    width: 100%;
    border-right: none;
    border-bottom: 1px solid;
    padding: 10px 0;
    margin-bottom: 0;
    font-size: 16px;
  }
  .class-details-inner ul li:first-child{
    padding-top:0;
  }
  .class-details-inner ul li:last-child{
    border-bottom: 0;
  }
}
.notify-modal h3{
  font-size: 16px;
  margin-bottom: 20px;
}
/* Hide radio buttons but keep functionality */
.notify-modal .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.notify-modal .form-check-label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 5px;
  transition: background-color 0.2s ease;
}
.notify-modal .form-check-label span{
  display: block;
  font-size: 14px;
}
.notify-modal .form-check-input:checked + .form-check-label {
  background-color: #e0f0ff;
  border-color: #007bff;
}
.notify-modal-content textarea{
  min-height: 120px !important;
}
.newannouncement-content textarea{
  min-height: 120px !important;
}
#submitButton {
  display: none; /* Hidden by default */
  margin-top: 15px;
}
/*====Create Class =====*/
.create-class-modal label{
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
/*======== Student Profile Details ========*/
.student-profile-details-holder{

}
.student-profile-image img{
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: contain;
}
.student-profile-details-holder .student-details-inner ul>li{
  color: var(--black);
  font-weight: 500;
  padding: 2px 0;
}
.student-profile-details-holder .student-details-inner ul>li span{
  font-weight: 400;
  color: var(--mdb-body-color);
}
.student-details-action{
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap:10px;
}
@media(max-width:767px){
  .student-details-action{
    display: grid;
    grid-template-columns: auto auto auto;
  }
}
@media(max-width:575px){
  .student-profile-details-holder .student-details-inner ul>li{
    border-bottom: 1px solid #efefef;
    font-size: 14px;
    padding: 5px 5px;
  }
  .student-profile-details-holder .student-details-inner ul>li:last-child{
    border-bottom: none;
  }
}
@media(max-width:480px){
  .student-details-action{
    display: grid;
    grid-template-columns: auto auto;
  }
}

/*========= Weekend Schedul Calender table ============*/
.schedul-calender{

}
.table.schedul-calender thead th{
  background: #F3F5F7 !important;
  color: #000;
  font-weight: 500;
  padding: 10px;
  vertical-align: middle;
}
.table.schedul-calender tbody th{
  color: #000;
  font-weight: 500;
  padding: 10px;
}
.table.schedul-calender tbody td{
  padding: 10px;
}
.slot {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400 !important;
}
.booked {
  color: #000 !important;
  cursor: pointer;
}
.hidden {
  display: none;
}
.color1 { background-color: #B8E0D2 !important; }
.color2 { background-color: #9BC7C1 !important; }
.color3 { background-color: #F6E3B1 !important; }
.clnder-cl-block p{
  margin: 0;
}
.clnder-cl-block span{
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.btn-info-active {
  background-color: #0dcaf0 !important;
  color: white !important;
  font-weight: bold;
  border: none;
}

.btn-info-inactive {
  background-color: #cceef5 !important;
  color: #0a4e60 !important;
  opacity: 0.8;
  border: none;
} 

/*======== instructor Profile Details ========*/
.search-bar-for-instructor{
  position: fixed;
  top: 80px;
  right: 2%;
  z-index: 99;
}
.search-bar-for-instructor .form-control{
  height: 40px;
  border: 1px solid #D44960;
}
#paginationControls{
  position: fixed;
  bottom: 55px;
  right: 2%;
  z-index: 111;
}
#paginationControls .btn-outline-primary{
  padding: 3px;
  width: 26px;
  height: 26px;
   background: var(--white);
}
#paginationControls .btn-outline-primary.active{
  background: #3B71CA;
  color: #fff;
  border: 1px solid #3B71CA;
}
.instructor-details-inner {
  max-height: 115px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  position: relative;
}
.instructor-details-inner.expanded {
  max-height: 1000px; /* or use a large value if content is long */
}
.instructor-profile-image img{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: contain;
}
.instructor-list-holder .instructor-details-inner ul>li{
  color: var(--black);
  font-weight: 500;
  padding: 2px 0;
}
.instructor-list-holder .instructor-details-inner ul>li span{
  font-weight: 400;
  color: var(--mdb-body-color);
}
.instructor-details-action{
  /* display: grid;
  grid-template-columns: auto auto auto auto;
  gap:10px; */
}
.profile-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.upload-label {
  background-color: #dc4c64;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  bottom: -7px;
  right: 90px;
}
#file-input {
  display: none;
}
#preview {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}
#saveToast {
  display: none;
  transition: opacity 0.3s ease-in-out;
}
@media(max-width:1100px){
  .instructor-profile-image img{
    width: 150px;
    height: 150px;
  }
}
@media(max-width:992px){
  .instructor-profile-image img{
    width: 120px;
    height: 120px;
  }
}
@media(max-width:767px){
  .instructor-details-action{
    display: grid;
    grid-template-columns: auto auto auto;
  }
}
@media(max-width:575px){
  .instructor-list-holder .instructor-details-inner ul>li{
    border-bottom: 1px solid #efefef;
    font-size: 14px;
    padding: 5px 5px;
  }
  .instructor-list-holder .instructor-details-inner ul>li:last-child{
    border-bottom: none;
  }
}
@media(max-width:480px){
  .instructor-details-action{
    display: grid;
    grid-template-columns: auto auto;
  }
}

/*============== New Student Assign Section =================*/
.payment-details-new-student-block h4 {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 15px;
}
.payment-details-new-student-block h4 span {
  display: inline-block;
  margin-right: 20px;
}
.payment-details-new-student-block h4 i {
  flex-grow: 1;
  height: 1px;
  background-color: rgb(153 153 153 / 45%);
  display: inline-block;
}


/*=========== Dress Management =======*/
.dress-list-items .card-body{
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dress-list-items .card-body::before {
  background-color: rgb(0 0 0 / 50%);
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.dress-list-items .card-body .card-title{
  position: relative;
  margin: 0;
  font-size: 24px;
}
.quantity_block h4{
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 15px;
}
.quantity_block h4 span{
  display: inline-block;
  margin-right: 20px;
}
.quantity_block  h4 i {
  flex-grow: 1;
  height: 1px;
  background-color: rgb(153 153 153 / 45%);
  display: inline-block;
}
/*============= File uploads ==============*/
.btcd-f-wrp{
  cursor: pointer;
  position: relative;
}
.btcd-f-wrp > button {
  cursor: pointer;
  display: inline-block;
  border: none;
  margin-right: 8px;
  height: 40px;
}
.btcd-f-wrp > button > img {
  width: 24px;
  margin-top: -10px;
  vertical-align: baseline;
}
.btcd-f-wrp > button > span{
  margin-top: 3px;
}
.btcd-f-wrp > input {
  z-index: 100;
  width: 100%;
  position: absolute;
  opacity: 0;
  left: 0;
  height: 40px;
  cursor: pointer;
}
.btcd-f-wrp > button > span, .btcd-f-wrp > span, .btcd-f-wrp > small {
  vertical-align: super;
  display: inline-block;
}
.btcd-f-wrp > small {
  color: gray;
}
.upload_img_view{
  display: inline-block;
  position: relative;
  margin-right:10px;
  margin-bottom: 10px;
}
.upload_img_view img{
  width: 50px;
  height: 50px;
  border-radius: 8px;
}
.upload_img_view > button{
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  line-height: 18px;
  color: var(--white);
  position: absolute;
  z-index: 1;
  right: -3px;
  top: -3px;
}
/*======== Dress details Page =====*/
.dress-main-image {
  border-radius: 10px;
  overflow: hidden;
}
.dress-main-image img { 
  width: 100%;
}
.dress-image-thumb{

}
.dress-image-thumb ul{
  display: flex;
}
.dress-image-thumb ul li{
  display: inline-block;
}
.dress-image-thumb ul li img{
  width:100px;
  height: 100px;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}
#lightboxModal .modal-content {
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 0;
}

#lightboxImage {
  max-height: 90vh;
  object-fit: contain;
}
.dress-details-section{
  position: relative;
}
.dress-details-section .edit-icon{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  z-index: 11;
}
.derss-details-action {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 10px;
}
.dresses_comment_holder h4{
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 15px;
}
.dresses_comment_holder h4 span {
  display: inline-block;
  margin-right: 20px;
}
.dresses_comment_holder h4 i {
  flex-grow: 1;
  height: 1px;
  background-color: rgb(153 153 153 / 45%);
  display: inline-block;
}
#dresscommentModal textarea{
  height:120px;
}
#commentDisplay{
  position: relative;
}
#commentText{
  width: 100%;
  line-height: 20px;
}
#commentDisplay #editBtn{
  position: absolute;
  top: -20px;
  right: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  background: #ff0000;
  color: var(--white);
}
/*------------*/
.dress-image-thumb ul {
  display: flex;
  gap: 10px;
}
.dress-image-thumb li {
  position: relative;
  list-style: none;
}
.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.delete-thumb {
  position: absolute;
  top: 0px;
  right: 0px;
  background: red;
  color: #fff;
  font-size: 14px;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
/*====== Payment Success Page ======*/
.payment-header-bar{
  padding:10px  0;
}
.payment-header-bar h3{
  color: var(--white);
  margin:0;
  font-size: 16px;
}
.icon_holder_outer{
  height: 90vh;
  position: relative;
}
.icon_holder_outer_inner{
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.icon_holder{
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #0e8e00;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  font-size: 25px;
  line-height: 60px;
  color: #fff;
}
.icon_holder::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: #86ee4b4a;
  /* border: 1px solid #86ee4b; */
  animation: ripple 2s linear infinite;
}
.icon_holder::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: #86ee4b4a;
  /* border: 1px solid #86ee4b; */
  animation: ripple 2s linear 1s infinite;
}
@keyframes ripple {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }

  75% {
      -webkit-transform: scale(1.75);
      transform: scale(1.75);
      opacity: 1;
  }

  100% {
      -webkit-transform: scale(2);
      transform: scale(2);
      opacity: 0;
  }
}
.icon_holder_outer_inner p{
  
}
.transaction_details_block{
  border-top: 1px solid #cecece;
  padding: 15px 50px;
  margin-top: 25px;
}
.transaction_details_block p{
  margin: 0;
}
/*====== //Payment Success Page ======*/



.btn-tag {
    font-size: 10px !important;
    padding: 0px 5px;
    height: 20px;
    color: var(--white);
    font-weight: 700;
    line-height:21px;
}
.term-pop{
    max-width: 98%;
}
.frm-trm-con {
    height: 75vh;
    overflow: auto;
}
.frm-trm-con{
    height: 75vh;
    overflow: auto;
}
.frm-trm-con .terrm-cont-block p{
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 20px;
    margin-bottom:10px;
}
.frm-trm-con .terrm-cont-block h3 {
    font-size: 18px;
    font-family: "Saira Semi Condensed", sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}
.frm-trm-con a{
    font-size:15px;
}
.frm-trm-con ul li{
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0 !important;
}

