
::-webkit-scrollbar {
    width:0.5rem;;
    height: .5rem;
  }
  ::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
  }
  ::-webkit-scrollbar-thumb {
    background: #bbb;
    border: 0px none #ffffff;
    border-radius: 0px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(116, 114, 114);
  }
  ::-webkit-scrollbar-thumb:active {
    background: rgb(116, 114, 114);
  }
  ::-webkit-scrollbar-track {
   
    border: 0px none #f1f5ee;
    border-radius: 50px;
    background: #f1f5ee;
  }
  /* ::-webkit-scrollbar-track:hover {
    background: #3d3d3d;
  } */
  ::-webkit-scrollbar-track:active {
    background: #f1f5ee;
  }
  ::-webkit-scrollbar-corner {
    background: transparent;
  }
.loadingContainer1 div {
    height:.8rem;
    width:.8rem;
    border-radius:0%;
    background: black;
    float:left;
    margin:0 3px;
    background:#ffffff;
    transform:scale(0);
}
.loadingContainer1 .ball1 {
    z-index:1;
    -moz-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation: grow 3.3s infinite ease-in-out;
}
.loadingContainer1 .ball2 {
    -moz-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.loadingContainer1 .ball3 {
    -moz-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.loadingContainer1 .ball4 {
    -moz-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation: grow 3.3s infinite ease-in-out;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-moz-keyframes grow {
    0% {-moz-transform: scale(0);}
    25% {-moz-transform: scale(1);}
    50% {-moz-transform: scale(0);}
    75% {-moz-transform: scale(1);background:#ffffff;}
    100% {-moz-transform: scale(0);background:#ffffff;}
}
@-webkit-keyframes grow {
    0% {-webkit-transform: scale(0);}
    25% {-webkit-transform: scale(1);}
    50% {-webkit-transform: scale(0);}
    75% {-webkit-transform: scale(1);background:#ffffff;}
    100% {-webkit-transform: scale(0);background:#ffffff;}
} 

.myglass{
    /* From https://css.glass */
  background: rgba(180, 179, 179, 0.26) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(4rem) !important;
  -webkit-backdrop-filter: blur(4rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.48) !important;
  }

  .bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: thin dotted rgba(255, 255, 255, 0)!important;
   /* // outline: 5px auto var(--bs-accent)!important; */
    outline-offset: -2px;
  }
  .bootstrap-select>.dropdown-toggle {
    margin-bottom: 0 !important;
    padding: 0.565rem 1.5rem !important;
  }
  .bootstrap-select>.btn-light{
    background-color:transparent !important;
  }
  .bootstrap-select{
    border: 1px solid #ced4daad !important;
    border-radius: .3rem ;
  }
  
  .bootstrap-select .dropdown-menu li a:hover {
  background-color: var(--bs-accent) !important;
  color: #FFF !important;
  }
  
  .bootstrap-select .dropdown-menu li {
   
    background: rgba(255, 255, 255, 0) !important;
  }
  .bootstrap-select .dropdown-menu{
   
    background: rgb(255, 255, 255) !important;
  }
  .bootstrap-select .dropdown-menu .show{
   
    /* box-shadow: 0px 4px 5px 0px #0000007a; */
  }
  input.form-control, select.form-control {
    padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
      padding-left: 0.1rem !important;
      border-radius: .3rem;
     
  }
  .bootstrap-select > select.mobile-device:focus + .dropdown-toggle, .bootstrap-select .dropdown-toggle:focus{
    outline:0 !important; 
   
  
  }
 .card{
    border-radius: .6rem !important;
 }
 .btn-light, .btn-light:hover, .btn.bg-gradient-light, .btn.bg-gradient-light:hover{
    color: #ced4da !important;
 }
 .btn-light:hover, .btn.bg-gradient-light:hover{
    border-color: #f0f2f5;
    box-shadow: 0 0 0 0 #eee !important
 }
 .btn-light, .btn.bg-gradient-light{
    box-shadow: 0 0 0 0 #eee !important;
 }

 .bg-gradient-snachoo {
    background-image: linear-gradient(195deg, #fb8c00, #d37907);
}

.btn-glass{
  border: 1px solid #ccccccba !important;
    font-weight: bold;
    color: white;
    /* text-shadow: 0px 0px 3px #00000087; */
    box-shadow: 0 0 3px 0 #444242;
    border-radius: 0.3rem;
}

.js-active{
  opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
	animation-duration: 1s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}