* {
  transition: all .2s ease;
}


body {
  font-family: "DM Sans", sans-serif !important;
  background: #f5f5f9 !important;
}

.main {
  padding-top: 60px;
  padding-left: 260px;
  min-height: calc(100dvh - 80px);
}

.sidebar-small .main {
  padding-left: 80px !important;
}

.main-inner {
  padding: 30px;
}

.cursorpointer {
  cursor: pointer;
}

a {
  cursor: pointer;
  text-decoration: none !important;
}

.fi {
  display: flex;
}

.no-arrow::after {
  display: none !important;
}


@keyframes zoomIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}


.dropdown-menu {
  animation: fadeFromBottom 0.3s ease forwards;
}

@keyframes fadeFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(20);
  }
}

.animated {
  animation-name: zoomIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.btn-pink {
  color: #FFF !important;
  padding: 12px 25px;
  border-radius: 50px;
  border: 0 !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  background: var(--primary-color) !important;
  box-shadow: 4px 7px 12px 0 rgba(14, 75, 137, .2) !important;
}


.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #9394a5;
  /* border: 55px none #ffffff; */
  /* border-radius: 50px; */
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #9394a5;
}

.scrollbar::-webkit-scrollbar-thumb:active {
  background: #9394a5;
}

.scrollbar::-webkit-scrollbar-track {
  background: #DFE9EB;
  border: 0px none #ffffff;
  /* border-radius: 100px; */
  box-shadow: inset 0px 0px 2px 0px rgb(175 175 190);
}

.scrollbar::-webkit-scrollbar-track:hover {
  background: #DFE9EB;
}

.scrollbar::-webkit-scrollbar-track:active {
  background: #DFE9EB;
}

.scrollbar::-webkit-scrollbar-corner {
  background: transparent;
}

.avatar {
  cursor: pointer;
}

.offcanvas {
  height: auto !important;
  min-height: auto;
}

.offcanvas-body {
  padding-bottom: 2rem !important;
}

/* toast */
.ngx-toastr {
  position: fixed !important;
  right: 15px;
}

.error {
  color: #F00;
  font-size: 13px;
}

@media (max-width: 1500px) {
  .main-inner {
    padding: 20px 15px;
  }
}

@media (max-width: 1200px) {
  .main {
    padding-top: 70px;
  }
}

@media (max-width: 992px) {

  .sidebar-small .main {
    padding-left: 0 !important;
  }

  .main {
    padding-left: 0px;
    padding-bottom: 80px
  }

  .main-inner {
    padding: 0px;
    padding-bottom: 70px;
  }

  .hide-md {
    display: none;
  }
}

@media (max-width: 575px) {
  .btn-close-ui {
    top: 10px !important;
    right: 10px !important;
  }

  .modal-fullscreen-sm-down .modal-content {
    border-radius: 0px !important;
  }
}



.loading-text {
  background: #FFF;
  border-radius: 70px;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-text img {
  width: 120px !important;
  margin-top: 0 !important;
}





@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.m__modal-ui.fade .modal-dialog, .m__modal-ui.show .modal-dialog{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  animation: slideDown 0.3s ease-out !important;
}

.m__modal-ui.fade.show .modal-dialog, .m__modal-ui.show .modal-dialog {
  animation: slideUp 0.3s ease-out !important;
}

.m__modal-ui .modal-content {
  border: 0px;
  border-radius: 20px 20px 0px 0px;
  background: #f5f7fd;
}

.m-close {
  width: 40px;
  height: 40px;
  border: 0px;
  background: #000;
  border-radius: 30px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  left: calc(50% - 20px);
  top: -50px;
}

.m_modal-title {
  font-size: 16px;
  font-weight: 700;
}


.m-btn {
  background: var(--primary-color);
  color: #FFF;
  border: 0px;
  display: flex;
  padding: 10px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  font-weight: 500;
  min-height: 45px;
  letter-spacing: 0.5px;
}

/* m-no_data */

.m-no_data {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100dvh - 235px);
  justify-content: center;
}


.m-no_data img {
  width: 100px;
  border-radius: 70px;
  margin-bottom: 10px;
}

.m-no_data h5 {
  font-weight: 700;
  text-align: center;
}

.m-no_data p {
  margin: 0px;
  font-weight: 500;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.m-load-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}



.m__modal-ui .form-control,
.m__modal-ui .form-select {
    border: 0px;
    border-radius: 10px;
    min-height: 50px;
    padding: 10px;
    background: #FFF;
    border: 0;
    box-shadow: 0px 2px 4px 0px hsl(0deg 0% 0% / 6%) !important;
}