@charset "UTF-8";
/* CSS Document */
.remove-btn{
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 20px;
  background: #fb3c3c;
  font-weight: bold;
  padding-left: 9px;
  color: white;
  font-size: 14px;
}
.opt-addIcon{
  text-align: center;
}
.space-3{
  width: 30px;
}
.timeset-header{
  width: 92%;
}
.image-preview {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  width: 100px;   /* Set a fixed width for the preview container */
  height: 100px;  /* Set a fixed height for the preview container */
}
.preview-image {
  width: 100%;          /* Scales image to fit width */
  height: 100%;         /* Scales image to fit height */
  aspect-ratio: 16 / 9;
  object-fit: cover;  /* Ensures image keeps its aspect ratio without being cropped */
  border: 1px solid #ddd;
  border-radius: 4px;
}
.remove-image-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 12px;
}
.remove-image-btn{
    width: 15px;
    height: 20px;
    padding: 4px;
}
.is-invalid, .invalid-select{
    border-color: red !important;
    padding-right: calc(1.5em + .94rem);
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" width="12" height="12" fill="none" stroke="%23f46a6a"%3e%3ccircle cx="6" cy="6" r="4.5" /%3e%3cpath stroke-linejoin="round" d="M5.8 3.6h.4L6 6.5z" /%3e%3ccircle cx="6" cy="8.2" r=".6" fill="%23f46a6a" stroke="none" /%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right calc(.375em + .235rem) center;
    background-size: calc(.75em + .47rem) calc(.75em + .47rem);
}
.btn-applying{
  border-radius: 100px;
    margin: 24px auto 0;
    padding: 16px 10px;
}
.alert-danger {
  background: #fbc3c3;
}
.alert-success {
  background: #aee7d2;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1.25rem;
  --bs-alert-padding-y: 0.75rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  border: var(--bs-alert-border);
  border-radius:8px
}
/* .remove-btn{
  padding-bottom: 11px;
} */
.preview-wrapper img{
  height: 76px;
}
 .img-preview:before{
  background: none !important;
}
.img-preview {
  position: relative;
}

.remove-image-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f43232;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.remove-image-btn:hover {
  background-color: darkred;
}
.hide{
  display: none !important;
}
.btn-decision{
  background: #b80c09;
  color: #fff;
  width: 25%;
  height: 16%;
  margin: auto;
  text-align: center;
  border-radius: 7px;
  padding: 8px;
}
.more-delete{
  font-size: 14px;
    text-align: center;
    max-width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100px;
    margin: 10px auto;
    padding: 4px 8px;
    cursor: pointer;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  color: var(--clr-blue-gray);
  border: 1px solid var(--clr-blue-gray);
}
.card__image-container {
  display: flex;
  justify-content: space-between;
}

.card__image {
  width: 49.6%; 
  overflow: hidden;
}

.card__image img {
  width: 100%; 
  height: 140px;  
}
.card__image-container .card__image{
  border-radius: unset;
}
.card__image-container .card__image img{
  border-radius: unset;
}

/* pagination  */
.pagination {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.pagination .page-item {
  margin: 0 10px;
}

.pagination .page-link {
  color: #007bff;
  font-size: large;
  text-decoration: none;
}

.pagination .page-item.active .page-link {
  color: #000;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
}

.pagination .page-link:hover {
  text-decoration: underline;
}

/* end pagination  */

.tab {
  display: flex;
  list-style: none;
  padding: 0;
}

.tab__link {
  text-decoration: none;
  padding: 10px 15px;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.pagination .tab__link.-active {
  background-color: #007bff;
  color: #fff;
}
.alert-danger a{
  color: #007bff;
}
/* Popup Container */
.popup {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  z-index: 9999;
}

/* Popup Content */
.popuptext {
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
}
/* Show Popup */
.popup.show {
  visibility: visible;
}
.reg-link{
  color: #007bff;
  text-decoration: underline;
}
/* Close Button */
.button.-close {
  margin-top: 10px;
  background-color: #f44336;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
}

.button.-close:hover {
  background-color: #d32f2f;
}
/* Container for the file input items */
.file__item-container {
  display: grid;
  grid-template-columns: repeat(4, 23%); /* 4 columns */
  gap: 6px; /* Space between columns and rows */
}

/* Styles for each file item */
.file__item1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* For the image preview (optional) */
.image-preview {
  margin-top: 10px;
  width: 100%;
  height: auto;
  /* Customize further as needed */
}
.btn-search{
  margin-top: 0 !important;
  border-radius: 8px !important;
  padding: 14px 10px !important;
}
.add-area{
  width: 90% !important;
  margin: 20px 10px 0 0;
}

.notice{
  font-size: 13px;
}
.station-field .flex_select{
  width: 38%;
}
.text-danger{
  margin-bottom: 12px;
}
.area-showMore{
  cursor: pointer;
}
.btn_apply{
  margin: 25px 0;
}
.btn_apply a{
  padding: 18px 10px;
}
.search-res{
  padding: 20px 16px 0;
}
.pub-period{
  padding-top: 20px;
}
.pd-t-20{
  padding-top: 20px;
}
.bg-red{
  background-color: var(--clr-prime);
  color: #fff;
}
.weelky-error{
  color: red;
  padding: 10px 0 0;
}
.-genre{
  width: 55%;
}
.name_err{
  font-weight: 400;
}
.time-icon {
  padding-left: 17px;
  background: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%20fill%3D%22none%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.99325%201.83331C4.31325%201.83331%201.33325%204.81998%201.33325%208.49998C1.33325%2012.18%204.31325%2015.1666%207.99325%2015.1666C11.6799%2015.1666%2014.6666%2012.18%2014.6666%208.49998C14.6666%204.81998%2011.6799%201.83331%207.99325%201.83331ZM7.99992%2013.8333C5.05325%2013.8333%202.66659%2011.4466%202.66659%208.49998C2.66659%205.55331%205.05325%203.16665%207.99992%203.16665C10.9466%203.16665%2013.3333%205.55331%2013.3333%208.49998C13.3333%2011.4466%2010.9466%2013.8333%207.99992%2013.8333ZM7.81325%205.16665H7.85325C8.11992%205.16665%208.33325%205.37998%208.33325%205.64665V8.67331L10.9133%2010.2066C11.1466%2010.34%2011.2199%2010.64%2011.0799%2010.8666C10.9466%2011.0933%2010.6533%2011.16%2010.4266%2011.0266L7.65992%209.36665C7.45325%209.24665%207.33325%209.02665%207.33325%208.79331V5.64665C7.33325%205.37998%207.54659%205.16665%207.81325%205.16665Z%22%20fill%3D%22%23757575%22%2F%3E%3C%2Fsvg%3E) no-repeat left 0px center;
  background-size: 15px;
}
.dis-right{
  float: right;
  padding-top: 0;
}
.hd_opt{
  display: none;
}
.counpon-not-found{
  padding: 30px;
}
.pd-l-2{
  padding-left: 20px;
}
.pd-l-37{
  padding-left: 37px;
}
.pd-l-52{
  padding-left: 52px;
}
.pd-l-5{
  padding-left: 5px;
}

.silde-img img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.days__item{
  padding: 20px 0;
}
/* .time__info{
  padding-bottom: 20px;
} */
.hd-item{
  display: none !important;
}
.card {
  position: relative;
}

.coupon-closed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 73%); /* Gray with 73% opacity */
  color: white; /* Text color */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px; /* Adjust font size as needed */
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2; /* Make sure it overlays on top */
  pointer-events: none; /* Prevent overlay from blocking interaction with other content */
}

.card__inner {
  position: relative;
}

.card__image-container {
  position: relative;
}
.card-list li span {
  padding-left: 4px;
}
.reservations .dis-right{
  padding-top: 0 !important;
}
.coupon-delete {
  padding: 16px 10px;
}
.form__btn2{
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal-coupon{
  top: 160%;
}
.modal-weekly-coupon{
  top: 250%;
}
.coupon.-selected.closed-coupon {
  position: relative; /* Ensure parent is positioned */
}

.selected-coupon-closed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.73); /* Modern way to set opacity */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10; /* Ensure it appears above everything */
  pointer-events: auto; /* Allow clicks on overlay */
  flex-direction: column;
  gap: 20px;
}

.initial-hide{
  display: none;
}
.btn_login_form{
  padding-bottom: 10px !important;
}
.mail-link{
  float: right;
  padding-top: 10px;
  color: var(--clr-second);
  font-weight: 600;

}
.private-status{
  font-size: 16px;
}
.gray-out{
  background-color: rgba(0, 0, 0, 0.73);
  color: #fffbfbe6;
}
.-unselected{
  position: relative;
}
.search-list{
  padding: 0 20px;
}
.sub-text{
  padding-bottom: 10px;
}
.rt-cpn-list a{
  background: #e7e0e0;
}



/* for radio button css start */

.row_status {
      display: flex;
      align-items: center;
      justify-content: left;
      gap: 15px;
  }

.align-items-center {
    align-items: left;
}

.switch-private,
.switch-public {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.form-label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.switch-head {
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 32px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.slider.round {
    border-radius: 32px;
}

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