.cs-form-group {
    position: relative;
}
.form-control-placeholder {
    pointer-events: none;
    display: inline-block;
    color: rgba(var(--bs-body-color-rgb),.65);
    font-size: 14px!important;
    position: absolute;
    top: 0;
    left: 0.50em;
    line-height: 2.2em;
    white-space: nowrap;
    background-color: #ffffff!important;
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
    font-weight: bold;
    padding: 0rem 0.4rem;
}

.bootstrap-select .dropdown-menu::-webkit-scrollbar {
    width: 1em;
  }
   
  .bootstrap-select .dropdown-menu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  .bootstrap-select .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }

.bootstrap-select.show > .btn-light.dropdown-toggle,
.bootstrap-select .dropdown-menu.show {
    border-color: #3D3D3D!important;
    color: #3D3D3D !important;
    /*max-height: 100px!important;*/
	height:auto;
}

.bootstrap-select.show > .btn-light.dropdown-toggle {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.bootstrap-select > .btn,
.bootstrap-select > .btn-light {
    font-size: 1rem;
    height: 3.5rem;
    line-height: 1.25;
    border-radius: 0.375rem;
    background-color: #fff !important;
    border: 1px solid #8B8B8B !important;
    padding: 16px;
    color: #000000!important;
}

.bootstrap-select > .btn-light:focus,
.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}

.bootstrap-select > .dropdown-menu {
    border: 1px solid #8B8B8B;
}
.cs-form-group .form-control-placeholder{
    display: block;
    transform: translate(0, -1em);
    font-size: 75%;
}
.cs-form-group .dropdown-item:focus, .cs-form-group .dropdown-item:hover{
    color: #fff;
    background-color:#000000;
}
.cs-form-group .dropdown-item.active, .cs-form-group .dropdown-item:active{
    color: #fff;
    background-color:#000000;
}
/* :active works but when replace with :focus, it doesn't work */
.cs-form-group .float{
    display: block!important;
}

.float {
    color: #000000!important;
    font-weight: 900!important;
    transform: translate(0, -1.1em);
    font-size: 75%;
    transition: 0.2s ease-in-out;
}

.changefloat {
    transform: translate(0, -1.1em);
    font-size: 75%;
}