html,
body {
  padding: 0px;
  margin: 0px;
}

.page {
  width: 100%;
  height: 100%;
  display: flex;
}

.icon-white {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(69deg) brightness(102%)
    contrast(102%);
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(69deg)
    brightness(102%) contrast(102%);
}

.icon-gray {
  filter: invert(28%) sepia(11%) saturate(477%) hue-rotate(169deg)
    brightness(97%) contrast(87%);
  -webkit-filter: invert(28%) sepia(11%) saturate(477%) hue-rotate(169deg)
    brightness(97%) contrast(87%);
}

.icon-green {
  filter: invert(49%) sepia(96%) saturate(595%) hue-rotate(66deg)
    brightness(104%) contrast(111%);
  -webkit-filter: invert(49%) sepia(96%) saturate(595%) hue-rotate(66deg)
    brightness(104%) contrast(111%);
}

.pointer {
  cursor: pointer;
}
.not-allowed {
  cursor: not-allowed !important;
}

.card-shadow {
  -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
}

/*
.card-border {
  border-width: 1.6px;
  border-radius: 14px;
}*/
/* .main-section, .container-fluid{
  overflow-x: hidden;
  overflow-y: auto;
} */
.card-border {
  border-width: 0px;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 1px 2px rgb(56 65 74 / 15%);
  box-shadow: 0 1px 2px rgb(56 65 74 / 15%);
}

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

.p-25 {
  margin: 0.7rem !important;
}

a:visited {
  /* color: #0d6efd; */
}

a {
  text-decoration: none;
}

.placeholder {
  cursor: default;
  background-color: #dee3e4;
  /* background-color: #e1e6e7; */
}

hr {
  background: #c2c1c1 !important;
}

.link:hover {
  text-decoration: underline !important;
  cursor: pointer;
}

.one-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}

.btn-light1 {
  cursor: pointer;
  border-radius: 20rem;
  padding: 0.3rem;
}

.btn-light1:hover {
  background-color: #e5e5e5;
}

.progress-circle {
  display: flex;
  justify-content: space-around;
  position: relative;
}
.progress-circle-item {
  display: flex;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 0;
  animation: 0.4s ease-out reverse;
  background: conic-gradient(#6ac977 calc(20%), #dbeee3 0deg);
}

.progress-circle-item::after {
  content: attr(data-value);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  margin: 7px;
  border-radius: 50%;
  background: white;
  font-size: 1rem;
  text-align: center;
}

.bt-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.btn-primary:active {
  background-color: #0b5ed7 !important;
}


.dropup .dropdown-menu[data-bs-popper]{
  top: auto;
  bottom: 46px;
  margin-top: 0;
  margin-bottom: .125rem;
  position: fixed;
  left: 8px;
}
.dropup .dropdown-toggle::after{
  display:none;
}

.screen-container{
  padding-right: 2.5rem!important;
  padding-left: 2.5rem!important;
  margin-bottom: 1rem!important;
  margin-top: 1.5rem!important;
  width: 100%!important;
}

.my-border{
  border-radius:12px;
}