/*===============>togggle checkbox<======================*/
body {
  padding-top: 0px !important;
}

.switch {
  display: inline-block;
  height: 15px;
  position: relative;
  width: 30px;
}

.switch input {
  display: none;
}

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

.slider:before {
  background-color: #ededed;
  bottom: 0px;
  content: "";
  height: 15px;
  left: -5px;
  position: absolute;
  transition: .4s;
  width: 15px;
}

input:checked+.slider {
  background-color: #66bb6a;
}

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

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

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

/*======================>end toggle checkbox <=========================*/
.tahoma {
  font-family: tahoma;

}

.more {
  cursor: pointer;
  border: none;
  background: transparent;
}

.more span {
  display: block;
  width: .25rem;
  height: .25rem;
  background: #363636;
  border-radius: 50%;
  pointer-events: none;
}

.more span:not(:last-child) {
  margin-bottom: .125rem;
}

.dropout {
  z-index: 9001;
  width: fit-content;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.dropout ul {
  position: absolute;
  top: -1.1rem;
  right: 1.5rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.12s ease;
}

.dropout.active ul {
  transform: scaleX(1);
}

.card-image img {
  /* width:100%; */
  height: 200px;
}

.card-footer .file-name {
  /* height: 50px; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* Limits to 2 lines */
  overflow: hidden;
  width: 100%;
  font-weight: bold;
}

.playlist-card-title {
  background: linear-gradient(90deg, #bb9c21, #0bbe36);
  color: white;
}

.close-top-end {
  position: absolute;
  top: 0;
  right: 0;

}

.media-label {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 90%;
}

/* .media-checkbox{
  display: none;
} */
.media-checkbox,
.media-link-checkbox {
  cursor: pointer;
}

.media-checkbox img,
.media-checkbox .check-div,
.media-link-checkbox img,
.media-link-checkbox .check-div {
  box-shadow: 0 0 0 10px #FFF0;
  transition: box-shadow 0.1s;
}

.media-checkbox input,
.media-link-checkbox input {
  display: none;
}

.media-checkbox input:checked+img,
.media-checkbox input:checked+div.check-div,
.media-link-checkbox input:checked+img,
.media-link-checkbox input:checked+div.check-div {
  box-shadow: 0 0 0 2px #398bcc;
  transition: box-shadow 0.11s;
}

.media-img {
  height: 100px;
  border-radius: 5px;
}

.sortable-placeholder {
  background-color: #f0f0f0;
  border: 2px solid #0b1015;
  height: 100px;
  /* Adjust based on your card height */
  margin-bottom: 10px;
}

.select2 {
  width: 100% !important;
}

.day_label {
  font-size: x-small;
}

.close_btn {
  border-radius: 50%;
  background-color: #fff !important;
  opacity: 1 !important;
  padding: 0 5px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0px;
  right: 0px;
}

.close_btn:hover,
.close_btn:focus {
  border: 0px !important;
}

.close_btn span {
  border: none !important;
  outline: none !important;
}

.close_btn span:focus,
.close_btn span:active {
  border: none !important;
  outline: none !important;
}

.radius-50 {
  border-radius: 50%;
  padding: 5px 5px;
}

.radius-5 {
  border-radius: 5px !important;
}

.radius-10 {
  border-radius: 10px !important;
}

.font-xsmall {
  font-size: x-small;
}

.font-small {
  font-size: small;
}

.primary-color {
  color: #5f9ea0;
}

.card-item {
  border-radius: 15px;
  box-shadow: 5px 5px 5px rgb(221 221 221);
}

.w-70 {
  width: 70%;
}

.videoplay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.z-3 {
  z-index: 3;
}

.custom-tabs {
  display: flex;
  border-bottom: 2px solid #dee2e6;

}

.custom-tabs .nav-item {
  flex: 1;
}

.custom-tabs .nav-link {
  border: none;
  border-radius: 0;
  color: #555;
  padding: 0.75rem 1rem;
  font-weight: 500;
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  width: 100%;

}

.custom-tabs .nav-link.active {
  color: var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  background-color: #f8f9fa;
}

.circular-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 7px;
}

.circular-progress {
  --size: 70px;
  --thickness: 8px;
  --progress: 0deg;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(var(--color, #0d6efd) var(--progress), transparent 0deg);
  position: relative;
}

.circular-progress::before {
  content: '';
  position: absolute;
  inset: calc(var(--thickness) / 2);
  border-radius: 50%;
  background-color: #f1f1f1;
  z-index: 1;
}

.circular-value {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.8rem;
  z-index: 2;
  color: #333;
}