input::placeholder, textarea::placeholder {
  color: grey !important;
  opacity: 1; /* Firefox */
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder { /* Edge 12 -18 */
  color: grey !important;
}

.table-wrapper {
  height: 400px; /* Adjust this value as needed */
  overflow-y: auto;
  overflow-x: auto;
}
.table {
  margin-bottom: 0;
}
.table thead th {
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  z-index: 1;
}
.table th,
.table td {
  white-space: nowrap;
  vertical-align: middle;
}
.btn-view {
  padding: 0.1rem 0.5rem;
  font-size: 0.875rem;
}

.w2ui-grid .w2ui-grid-body table .w2ui-head {
  background: var(--color-primary) !important;
  color: white !important;
  height: 35px;
  font-size: 0.9rem;
  text-align: center;
}

.info-icon{
  padding: 3px 8px;
  border-radius: 50%;
  border: 1px solid black;
  font-size: 15px;
  background: lightgrey;
}

.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data {
  text-align: center;
  height: 40px;
  font-size: 0.9rem;
  padding: 0;
}

.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data > div {
  height: 35px !important;
  max-height: 35px !important;
  display: flex;
  align-items: center;
  overflow-wrap: break-word;
  white-space: break-spaces !important;
  justify-content: center;
}

/* .w2ui-grid-data-last{
    display: none;
}

.w2ui-head w2ui-head-last{
    display: none;
} */

/* css for searchable select */

::selection {
  color: #fff;
  background: #4285f4;
}

.select-btn,
li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.select-btn i {
  font-size: 31px;
  transition: transform 0.3s linear;
}
.wrapper.active .select-btn i {
  transform: rotate(-180deg);
}
.content {
  display: none;
  padding: 20px;
  margin-top: 15px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.wrapper.active .content {
  display: block;
}
.content .search {
  position: relative;
}
.search i {
  top: 50%;
  left: 15px;
  color: #999;
  font-size: 20px;
  pointer-events: none;
  transform: translateY(-50%);
  position: absolute;
}
.search input {
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
  padding: 0 20px 0 43px;
  border: 1px solid #b3b3b3;
}
.search input:focus {
  padding-left: 42px;
  border: 2px solid #4285f4;
}
.search input::placeholder {
  color: #bfbfbf;
}
.content .options {
  margin-top: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 7px;
}
.options::-webkit-scrollbar {
  width: 7px;
}
.options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}
.options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}
.options::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}
.options li {
  height: 50px;
  padding: 0 13px;
  font-size: 21px;
}
.options li:hover,
li.selected {
  border-radius: 5px;
  background: #f2f2f2;
}

.sign-in-modal-container {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sign-in-modal-container p {
  font-size: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.sign-in-modal-container .sign-in-btn {
  text-decoration: none;
  padding: 10px 20px;
  background: #212529;
  color: white;
  border-radius: 10px;
}

/* loader css */

.loader-container{
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00000057;
  z-index: 9999;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

.hidden{
  display: none;
}
