:root {
  --primary-clr: #24bac3;
  --secondary-clr: #99a7ba;
  --title-clr: #334257;
  --dark-clr: #005555;
  --base-clr: #2aa26a;
  --base-clr-2: #5affba;
  --border-clr: #99a7ba45;
  --warning-clr: #ff7500;
  --danger-clr: #ff6d6d;
  --success-clr: #00aa6d;
  --info-clr: #0096ff;
}


.toggle {
    cursor: pointer;
    display: inline-block;
  }
  
  .toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    height: 21px;
    width: 43px;
    
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
  }
  .toggle-switch:before, .toggle-switch:after {
    content: "";
  }
  .toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 2px;
    transition: left 0.25s;
  }
  .toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  }
  .toggle-checkbox:checked + .toggle-switch {
    background: #191a19;
  }
  .toggle-checkbox:checked + .toggle-switch:before {
    left: 24px;
  }
  
  .toggle-checkbox {
    position: absolute;
    visibility: hidden;
  }
  
  .toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
  }

  .btn-outline-warning:not(:hover) {
    background: rgba(255, 134, 32, 0.1) !important;
    color: var(--warning-clr) !important;
}
.btn-outline-danger:not(:hover) {
  background: transparent !important;
  color: var(--danger-clr);
}
.action-btn.btn-outline-primary:not(:hover) {
  background: rgba(0, 134, 143, 0.0392156863) !important;
}
.table .btn--container > * {
  margin: 5px;
}
.action-btn {
  width: 30px;
  height: 30px;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em !important;
  padding: 0 !important;
}
.action-btn.btn-outline-primary:not(:hover) {
  background: rgba(0, 134, 143, 0.0392156863) !important;
}

.btn--container {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
@media (min-width: 992px)
{
  .pagination {
    justify-content: flex-end;
}
}
.h--90px {
  height: 90px !important;
}
.__custom-upload-img {
  display: block;
  margin: 0;
}

.__custom-upload-img input {
  display: none;
}

.__custom-upload-img center img {
  height: 100px;
  border-radius: 5px;
  border: 2px dashed #e5e5e5;
  cursor: pointer;
}
.img--110 {
  width: 110px;
}
.img--vertical {
  aspect-ratio: 3;
  width: 100%;
  max-width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #f4f4f4;
  border-radius: 10px;
}

.img--vertical-120 {
  max-width: 360px;
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #f4f4f4;
  border-radius: 10px;
}
