.dropdown {
    position: relative;
    display: inline-block;
  }

.dropdown_version_width{
  width: 300px;
}

.dropdown-button {
  flex: 1;
  padding: 0px;
  border: 0px;
  cursor: pointer;
  background: transparent;
  user-select: none;
  -webkit-user-select: none; 
  -moz-user-select: none;  
  -ms-user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  width: auto;
  max-height: 300px;
  overflow-y: auto;
  z-index: 99;
  max-width: 400px;
  min-width: 100%;
  margin-left: -10px;
  margin-top: 3px;
  border-radius: 5px;
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.custom_drop_first_cnt{
  float: left;
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  margin-bottom: 15px;
  z-index:100;
}

.dropdown-content label {
  display: block;
  padding: 5px 10px;
  cursor: pointer;
  width: 100%;
  min-width: max-content;
  transition: 0.15s ease;
  text-transform: uppercase;
}

.dropdown-content label:hover{
    background:cornflowerblue;
    color: white;
}

.dropdown-content input[type="checkbox"] {
  margin-right: 5px;
}

.dropdown.open .dropdown-content {
  display: grid;
}

.dorp_arrow{
  width: 10px;
  font-size: 14px;
  color: dimgray;
  margin-top: 2px;
}

.drop_rw1{
  display: flex;
  width: 100%;
}

.SearchInDropdown {
  box-sizing: border-box;
  /* background-image: url('searchicon.png'); */
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 11px;
  padding: 5px 15px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0px;
  outline: none !important;
  border: 1px solid gainsboro;
}

.SearchInDropdown:hover{
  border: 1px solid cornflowerblue;
}

.SearchInDropdown:focus{

}
  
.dropdownContainer {
  position: relative;
}

.dropdownContainer_content {
  position: absolute;
}

.dropdownContainer_content a {
  color: black;
  padding: 5px 15px;
  text-decoration: none;
  display: block;
  font-size: 11px;
}

.dropdownContainer a:hover {background-color: #ddd;}

.show_dropdown {display: block;}

.btn_ins_vr1{
  width: 50%;
  float: left;
  display: block;
  border: 1px solid gainsboro;
  padding: 5px;
  background: whitesmoke;
  transition: 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn_ins_vr1:hover{
  cursor: pointer;
  background-color: gainsboro;
}




.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: sans-serif;
  user-select: none;
}

.custom-checkbox input {
  display: none; /* Hide the default checkbox */
}

.custom-checkbox .checkmark {
  width: 15px;
  height: 15px;
  border: 2px solid gainsboro;
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  transition: all 0.2s ease;
  display: inline;
  float: left;
}

.custom-checkbox input:checked + .checkmark {
  background-color: darkgreen;
  border-color: darkgreen;
}

.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked + .checkmark::after {
  display: block;
}



@media screen and (max-width: 1150px){
  .dropdown_version_width
  {
    width: 230px;
  }
}

@media screen and (max-width: 1050px){
  .dropdown_version_width
  {
    width: 210px;
  }
}

@media screen and (max-width: 1000px){
  .dropdown_version_width
  {
    width: 100%;
  }
  .dropdown-content{
    max-width: 100%;
  }
  .SearchInDropdown{
    font-size: 14px;
  }
}