:root {
  --ms-py: 0.5rem;
  --ms-option-bg-selected-pointed: #692df6;
  --ms-option-bg-selected: #8b5cf6;
  --ms-ring-color: #9b73fa8d;
}

@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler/Butler_Bold.otf');
  font-weight: bold;
}

@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler/Butler_Regular.otf');
  font-weight: normal;
}

@font-face {
  font-family: 'Classica';
  src: url('../fonts/Classica/Classica-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: 'Classica';
  src: url('../fonts/Classica/Classica-Book.ttf');
  font-weight: normal;
}

.dragArea:first-child {
  padding-left: 0px;
}

.dragArea {
  margin-top: 10px;
  min-height: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
}

.dragArea li {
  list-style: none;
  cursor: move;
}

.validation-errors {
  position: fixed;
  top: 2rem;
  right: 2rem;
  border: red solid 1px;
  padding: 1rem 2rem;
  background-color: white;
  z-index: 999999;
  border-radius: 4px;
}

.error-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.error-list p {
  color: red;
  margin-top: 2px;
  margin-bottom: 0;
}

.slide-bottom-enter-active,
.slide-bottom-leave-active {
  transition-duration: 200ms;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.slide-bottom-enter-from,
.slide-bottom-leave-to {
  transform: translateY(10%);
  opacity: 0;
}

.slide-right-enter-active,
.slide-right-leave-active {
  transition-duration: 0.4s;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.slide-right-enter-from,
.slide-right-leave-to {
  transform: translateX(100%);
  opacity: 0;
}

.ck.ck-editor__main>.ck-editor__editable {
  min-height: 300px;
}

.dark .ck.ck-editor__main>.ck-editor__editable {
  --ck-color-base-background: rgb(30, 41, 59);
  background: var(--ck-color-base-background);
}

.dark .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
  --ck-color-base-border: rgb(103, 123, 142);
  border: 1px solid var(--ck-color-base-border);
}

.dark .ck-reset_all :not(.ck-reset_all-excluded *),
.ck.ck-reset,
.ck.ck-reset_all {
  background: rgb(15, 23, 42);
}

.dark .ck-reset_all :not(.ck-reset_all-excluded *),
.ck.ck-reset_all {
  color: #eff6f3;
}

.dark .ck.ck-label.ck-voice-label {
  display: none;
}

.c-input-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #254035;
  margin-bottom: 10px;
}

.max-h-26-r {
  overflow-y: auto;
  max-height: 26rem;
}

.max-h-22-r {
  overflow-y: auto;
  max-height: 22rem;
}

.company-i-pt-3 {
  padding-top: 3rem;
}

.fade-enter-active,
.fade-leave-active {
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: linear;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.scale-up-enter-active,
.scale-up-leave-active {
  transition-duration: 0.2s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.scale-up-enter-from,
.scale-up-leave-to {
  transform: scale(0.8);
}

.right-enter-active,
.right-leave-active {
  transition-duration: 200ms;
  transition-property: opacity, transform;
  transition-timing-function: ease-in;
}

.right-enter-from,
.right-leave-to {
  transform: translateX(50px);
  opacity: 0;
}

.c-modal-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
}

.c-modal-container.bg-blur {
  backdrop-filter: blur(4px);
}

.c-modal-content {
  width: 45%;
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.c-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.c-modal-content .c-modal-header {
  font-size: 1.2rem;
  font-weight: 600;
}

.c-modal-content h6 {
  font-size: 1.5rem;
  font-weight: 600;
}

.c-modal-content p {
  font-size: 1.1rem;
  font-weight: 400;
}

.c-modal-content .exclamation {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 5px solid rgb(248, 191, 142);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.c-modal-content .exclamation span {
  font-size: 3rem;
  color: rgb(248, 191, 142);
}

.c-model-btn-container {
  display: flex;
  justify-content: center;
  column-gap: 0.5rem;
}

.c-model-btn-container-end {
  margin-top: 0.5rem;
  display: flex;
  justify-content: end;
  column-gap: 0.5rem;
}

@media (max-width: 768px) {
  .c-modal-content {
    width: 90%;
  }
}

.text-fs-sm {
  font-size: 0.85rem;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(0, 0%, 100%);
  }

  100% {
    background-color: hsl(0, 0%, 95%);
  }
}

.skeleton-line {
  background: rgb(232, 232, 232);
  width: 100%;
  min-height: 0.7rem;
  border-radius: 8px;
}

.paginate-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.paginate-link {
  padding: 5px 12px 7px 12px;
  font-size: 14px;
  border-radius: 5px;
}

.paginate-link-null {
  color: #8e8e8e;
}

.paginate-link-active {
  color: inherit;
  text-decoration: none;
}

.paginate-link-active:hover {
  background-color: #8b5cf6;
  color: white;
}

.paginate-link-active:focus {
  border-color: #6b44c7;
}

.paginate-link-active-bg {
  background-color: #8b5cf6;
  color: white;
}

.dark .multiselect-dark {
  --ms-border-color: #374457;
  --ms-bg: rgba(23, 22, 22, 0.1);
  --ms-tag-bg: rgba(15, 23, 42, 0.6);
  --ms-dropdown-bg: rgb(30, 41, 59);
}

.dark .multiselect-tags-search {
  background-color: rgb(30, 41, 59);
}

.dark .multiselect-tag.is-user {
  background: rgb(30, 41, 59);
}

.dark .multiselect-dark [type='text']:focus {
  --tw-ring-color: rgba(23, 22, 22, 0);
  outline: 0px solid var(--tw-ring-color);
}

.ai-template-multiselect {
  --ms-py: 0.5rem;
}

.fs-7 {
  font-size: 0.8rem;
}

.review-avatar-img {
  max-height: 60px;
}

.loader-img {
  height: 25px;
}

.styled-scrollbar::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

.dark .styled-scrollbar::-webkit-scrollbar-track {
  background: #1e293b;
}

.dark .styled-scrollbar::-webkit-scrollbar-thumb {
  background: #0f172a7e;
  border-radius: 3px;
}

.dark .styled-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #0f172a;
}

.styled-scrollbar::-webkit-scrollbar-track {
  background: #e9e9e9;
}

.styled-scrollbar::-webkit-scrollbar-thumb {
  background: #9d9d9d7e;
  border-radius: 3px;
}

.styled-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #d4d4d4;
}

.hollow-dots-spinner,
.hollow-dots-spinner * {
  box-sizing: border-box;
}

.hollow-dots-spinner {
  height: 15px;
  width: calc(30px * 3);
}

.hollow-dots-spinner .dot {
  width: 10px;
  height: 10px;
  margin: 0 calc(10px / 2);
  border: calc(10px / 5) solid rgb(139, 92, 246);
  border-radius: 50%;
  float: left;
  transform: scale(0);
  animation: hollow-dots-spinner-animation 1000ms ease infinite 0ms;
}

.hollow-dots-spinner .dot:nth-child(1) {
  animation-delay: calc(300ms * 1);
}

.hollow-dots-spinner .dot:nth-child(2) {
  animation-delay: calc(300ms * 2);
}

.hollow-dots-spinner .dot:nth-child(3) {
  animation-delay: calc(300ms * 3);
}

@keyframes hollow-dots-spinner-animation {
  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.half-circle-spinner,
.half-circle-spinner * {
  box-sizing: border-box;
}

.half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
}

.half-circle-spinner .circle {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: rgb(139, 92, 246);
  animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: rgb(139, 92, 246);
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }

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

.looping-rhombuses-spinner {
  height: 8px;
  position: relative;
}

.looping-rhombuses-spinner .rhombus {
  height: 8px;
  width: 8px;
  left: 12px;
  position: absolute;
  border-radius: 5px;
  transform: translateY(0) scale(0);
  animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}

.looping-rhombuses-spinner .rhombus:nth-child(1) {
  animation-delay: calc(2500ms * 1 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(2) {
  animation-delay: calc(2500ms * 2 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(3) {
  animation-delay: calc(2500ms * 3 / -1.5);
}

@keyframes looping-rhombuses-spinner-animation {
  0% {
    transform: translateX(0) scale(0);
  }

  50% {
    transform: translateX(-233%) scale(1);
  }

  100% {
    transform: translateX(-466%) scale(0);
  }
}

@keyframes loading {
  0% {
    background-color: #dcdcdc;
  }

  50% {
    background-color: #f1f1f1;
  }

  100% {
    background-color: #dcdcdc;
  }
}

@keyframes loadingDark {
  0% {
    background-color: #0e1339;
  }

  50% {
    background-color: #363636;
  }

  100% {
    background-color: #0e1339;
  }
}

.dark img[lazy='loading'] {
  border-radius: 2px;
  animation: loadingDark 1.5s infinite ease-in-out;
}

img[lazy='loading'] {
  border-radius: 5px;
  animation: loading 1.5s infinite ease-in-out;
}

.logo-w200 {
  max-width: 250px;
}

.my-5-5 {
  margin: 5.5px 0;
}

.text-fs-lg {
  font-size: 18px;
}

.margin-top-3r {
  margin-top: 3rem;
}

.padding-y-70p {
  padding: 70px 0;
}

.footer-four .shape_17 {
  display: none;
}

.hero-banner-four .shape_17 {
  display: none;
}

@media (max-width: 992px) {
  .footer-four {
    position: relative;
  }

  .footer-four .footer-slogan {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-four .shape_17 {
    display: block;
    width: 150px;
    position: absolute;
    top: 50%;
    right: -50px;
  }

  .hero-banner-four .shape_17 {
    display: block;
    width: 200px;
    position: absolute;
    top: 5%;
    right: -20px;
  }
}

@media (max-width: 575px) {
  .footer-four .footer-slogan {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-four .shape_17 {
    display: none;
  }

  .hero-banner-four .shape_17 {
    display: block;
    width: 150px;
    position: absolute;
    top: 5%;
    right: -30px;
  }
}

.rotate-enter-active,
.rotate-leave-active {
  transition: transform 100ms ease-in;
}

.rotate-enter-from {
  transform: rotate(0deg);
}

.rotate-leave-to {
  transform: rotate(180deg);
}

.text-justify {
  text-align: justify;
}

.lang-toggler {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  padding: 12px 25px;
  background: #F6F6F6;
  border: none;
  border-radius: 35px;
  border: rgba(195, 195, 195, 0.1) 1px solid;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.lang-toggler svg {
  transition: transform 0.3s ease-in-out;
}

.lang-toggler svg.open {
  transform: rotate(180deg);
}

.lang-list {
  background-color: rgb(244, 247, 246);
  border: rgba(195, 195, 195, 0.1) 1px solid;
  border-radius: 10px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  padding-left: 0;
  margin-top: 5px;
  overflow: hidden;
}

ul.lang-list li.list-option {
  margin-top: 0;
  padding: 5px 20px;
}

ul.lang-list li.list-option:hover {
  background-color: rgb(234, 234, 234);
}

ul.lang-list li.list-option.selected {
  background-color: rgb(230, 253, 90);
  color: rgb(10, 11, 4);
}

.details-meta h2 {
  text-align: start;
}

.navbar-underlay {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: -1rem;
  left: 0;
  background-color: rgba(0, 0, 0, 0.05);
}

.newsletter-banner form button {
  transform: scale(0.8);
}

.dark .multiselect-wrapper [type=text],
.dark .multiselect-wrapper input:where(:not([type])),
.dark .multiselect-wrapper [type=search] {
  background-color: rgb(30, 41, 59);
}
