.backdrop-loader__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backdrop-loader__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top: 5px solid rgb(12, 59, 97);
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loadingoverlay {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.add-form-button {
  width: 22px;
  height: 22px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.dot-com {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.full-preloader__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-control-custom {
  background: #0000000a;
  padding: 0.95rem 0.5rem;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  height: calc(1.5em + 0.9rem + 2px);
  border-radius: 0.25rem;
  line-height: 10px;
}

.edit-pencil {
  font-size: 1.5rem;
  height: 30px;
  width: 30px;
  box-shadow: 0 0 20px #93939363;
  line-height: 30px;
  text-align: center;
  right: -20px;
}

.gallery-image_container {
  position: relative;
}
.gallery-image {
  border: 3px solid transparent;
}

.gallery-image:hover {
  border-color: #2e93e6;
}
.gallery-image_delete {
  position: absolute;
  right: 20px;
  top: 10px;
  height: 30px;
  width: 30px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  display: none;
  font-size: 1.3rem;
  border-radius: 50%;
}
.gallery-image_container:hover .gallery-image_delete {
  display: block;
}

.menu-prev__btn,
.menu-next__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(236, 236, 236);
  color: #333;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-size: 1.358rem;
  transition: 0.3s all ease-in-out;
}
.menu-prev__btn:hover,
.menu-next__btn:hover {
  background: #0000ff82;
  color: #fff;
}
.category-icon__card {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: center;
}
.category-icon__card img {
  width: 50px;
}
.category-icon__card input:checked .category-icon__card {
  background: #000;
}

.category-card {
  max-width: 150px;
  padding: 1.5rem;
  min-height: 150px;
  margin: 0 0.6rem;
  text-align: center;
  border-radius: 35px;
  transition: 0.3s all ease-in-out;
  background: #fff;
}

.category-card:hover {
  background: #ffd65c;
}
.category-text_container {
  color: #000;
}
.category-card:hover .category-text_container {
  color: #fff;
  font-size: bold;
}

.category-icon_container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eaeaea;
}

.check-btn-sm{
  padding: 0.28rem 0.8rem;
  font-size: 0.875rem;
  border-radius: 0.15rem;
  line-height: 30px;
}
input.money-discount:checked ~ .check-btn-sm{
 background:#0acf97 !important;
 color: #fff !important;
}

.input-closer{
  display: block;
  height: 22px;
  width: 22px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  background: #fa5c7c;
  border-radius: 50%;
  font-size: 14px;
}
.no-data-found-wrapper img{
width: 120px;
opacity: .7;
}


@media (min-width:410px){
  .table-responsive{
    overflow-x: initial !important;
  }
}

.auth-fluid {
    display: flex;
    min-height: 100vh;
}

.auth-fluid-form-box, .auth-fluid-right {
    width: 50%;
    min-height: 100vh;
}

.auth-fluid-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/bg.jpg') center center no-repeat;
    background-size: cover;
}