.card-body{
  box-sizing: border-box;
  background-color:#fff;
}

.shadow{
  box-shadow: 0 .15rem 2rem 0 rgba(58,59,69,.15) !important;
  
}

.tabulator{
  background-color: #f7f4f4;
  border: 1px solid #e1dbdb;
  border-radius: 3px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
 /* box-sizing: border-box;
padding: 4px;
position: relative;  */
color: #a3a0a0;
background-color:#fff;
}

.tabulator .tabulator-header .tabulator-col{
  background-color: #f7f4f4;
  border-right: 1px solid #e1dbdb;
  
}

.tabulator-row .tabulator-cell {
  border-right: 1px solid #e1dbdb;
} 

.tabulator .tabulator-footer .tabulator-paginator {
  color: #555;
  flex: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
}

.tabulator .tabulator-footer .tabulator-footer-contents {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: rgb(244, 246, 248);
}
.my-container{
  margin-left: 5px;
  margin-right:5px; 
  --bs-gutter-x:25px;
  --bs-gutter-y:25px;
}



input:required:is-valid {
  border-color: green;
}
input:is-invalid {
  border-color: red;
}
input:required:focus:is-valid {
  background: url("https://assets.digitalocean.com/labs/icons/hand-thumbs-up.svg") no-repeat 95% 50% lightgreen;
  background-size: 25px;
}
input:focus:is-invalid {
  background: url("https://assets.digitalocean.com/labs/icons/exclamation-triangle-fill.svg") no-repeat 95% 50% lightsalmon;
  background-size: 25px;
}
.wrong .bi-check-lg
{
    display: none;
}
.good .bi-x-lg
{
    display: none;
}
.form-control.is-invalid{
    border-color:#ff5733;  
    background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22yellow%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-mood-wrrr%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M12%2021a9%209%200%201%201%200%20-18a9%209%200%200%201%200%2018z%22%20/%3E%3Cpath%20d=%22M8%2016l1%20-1l1.5%201l1.5%20-1l1.5%201l1.5%20-1l1%201%22%20/%3E%3Cpath%20d=%22M8.5%2011.5l1.5%20-1.5l-1.5%20-1.5%22%20/%3E%3Cpath%20d=%22M15.5%2011.5l-1.5%20-1.5l1.5%20-1.5%22%20/%3E%3C/svg%3E");
  }
  .modalcolor{
    background:#97BC62 !important/*#fa896b !important;
    /*background: linear-gradient(166deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 0%, rgba(9,16,125,1) 29%, rgba(0,212,255,1) 100%); /*background-color:#d21d0a;*/
  }
  .modal-title{
    color:white;
  }
  .lets-hide{
    visibility: hidden;
  }
  .lets-show{
    visibility:visible;
  }
  #i-notif{
    color:red;
  }
  #s-notif{
    font-size: 10px;
    color:red;
  }
  span.a1{
    color:green;
    font-size:10px;
  }
  span.a2{
    /* padding-left: 5px; */
    /* display:block; */
    color:purple
  }

  span.a3{
    color:#2C5F2D;
    font-size:10px;
    font-weight:bold;
  }
  span.a4{
    font-size: 13px;
  }

  .a5{
    font-size:8px;
  }
  .app-header{
    -webkit-box-shadow:0px 1px 9px #d1d2d4;
    -moz-box-shadow:0px 1px 9px #d1d2d4;
    box-shadow:0px 1px 9px #d1d2d4;

  }
  td{
    white-space: nowrap;
  }
  .translate-middle {
    -webkit-transform: translate(-45%, -75%) !important;
    transform: translate(-45%, -75%) !important;
}

.layout {
  /* width: 1366px; */
  height: 768px;

  display: grid;
  grid:
    "sidebar body" 1fr
    / 30% 1fr;
  gap: 8px;
}
.custom {
  width: 80em !important;
}

.avatar{

  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid gray !important;
}
.sidebar { grid-area: sidebar; }
.body { grid-area: body; }

.spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}