*{
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-10 {
  -webkit-line-clamp: 10;
}

.line-5 {
  -webkit-line-clamp: 5;
}

.line-2 {
  -webkit-line-clamp: 2;
}

.line-1 {
  -webkit-line-clamp: 1;
}

.flex-1 {
  flex: 1;
}

.h-100 {
  height: 100%;
}

.mh-1 {
  max-height: 200px !important;
}

.g-1 {
  gap: .3em !important;
}

.g-2 {
  gap: .5em !important;
}

.thumb-0 {
  width: 100px !important;
  height: 100px !important;
}

.thumb-1 {
  height: 200px !important;
}

.img-fit {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  opacity: 55%;
}

.img-tour {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
  }

.profile-thumb {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-thumb-2 {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}


html {
  scroll-behavior: smooth;
}

/* custom select2 */
.select2-selection__choice {
  background-color: var(--indigo) !important;
}

.select2-selection__choice__remove {
  color: var(--light) !important;
}

.select2-selection--single {
  height: 40px !important;
}

.select2-selection__rendered {
  margin-top: -0.2rem !important;
}

/* laoder */
.lds-dual-ring {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid var(--dark);
  border-color: var(--dark) transparent var(--dark) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
