.select-container {
  width: 50%;
  height: auto;
  margin: auto;
  color: #fff;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  text-align: center;
}
.select-container .btn1 {
  width: 100%;
  margin: auto;
  margin-bottom: 0px;
  box-sizing: border-box;
  font-size: 16px;
  cursor: pointer;
  background-color: #486974;
  border-radius: 7px 7px 0 0;
  position: relative;
  padding: 7px 0;
}
.select-container .btn1 .arrow {
  width: 0;
  height: 0;
  border: 6px solid;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 56%;
  left: 24px;
  transform: translateY(-50%);
}
.select-container .btn2 {
  background-color: #37515a;
  border-radius: 0 0 7px 7px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  /* transform: translateY(70%); */
  left: 0;
  z-index: 99;
}
.select-container .btn2 .options {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 0;
  border-bottom: 1px solid #486974;
}
.select-container .btn2 .options:nth-last-child(1) {
  border-bottom: 0;
}
.select-container .btn2 .options:hover {
  cursor: pointer;
  background-color: #2b3f45;
}
.select-container .btn2 .options:nth-last-child(1):hover {
  border-radius: 0 0 7px 7px;
}
.selected {
  background-color: #2b3f45;
}

.make-fix-height {
  height: 200px !important;
  overflow-y: scroll !important;
  scrollbar-width: thin !important;
}

/* Check-BOX */

.checkbox-container {
  margin: auto;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  border-radius: 3px;
  width: 15px;
  height: 15px;
}
.checkbox-container label {
  display: flex;
  cursor: pointer;
}
.checkbox-container label::before {
  content: "";
  right: 10px;
  width: 25px;
  height: 25px;
  display: flex;
  margin-left: 10px;
  border-radius: 3px;
  box-shadow: inset 0px 0px 15px 6px rgba(00, 0, 0, 0.3);
  cursor: pointer;
}
.checkbox-container label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  margin-left: 10px;
  border-radius: 3px 3px 1px 3px;
  border: 3px solid;
  border-color: transparent #fff #fff transparent;
  cursor: pointer;
  transform: rotate(45deg);
  top: 2px;
  right: 7px;
  display: none;
}
.checkbox-container
  input[type="checkbox"]:hover
  + .checkbox-container
  label::before,
.checkbox-container label:hover::before {
  background-color: #486974;
  border-radius: 3px;
}
.checkbox-container input[type="checkbox"]:checked ~ label::before {
  /* background-color:#557e8c; */
  box-shadow: inset 0px 0px 15px 6px rgba(00, 0, 0, 0.3),
    0px 0px 0px 2px rgba(00, 0, 0, 0.08);
}
.checkbox-container input[type="checkbox"]:checked ~ label::after {
  display: flex;
  animation: CheckBox 0.1s;
}
@keyframes CheckBox {
  from {
    scale: 0;
  }
  to {
    scale: 1;
  }
}
@media only screen and (max-width: 680px) {
  .select-container {
    width: 100%;
    margin-top: 10px;
  }
  .select-container .btn2 .options,
  .select-container .btn1 {
    font-size: 14px !important;
  }
  .select-container .btn1 {
    padding: 6px 0;
  }
  .select-container .btn1 .arrow {
    left: 15px;
  }
  .select-container .btn2 .options {
    padding: 7px 0;
  }

  /* check box */
  .checkbox-container {
    margin-bottom: 25px !important;
  }
  .checkbox-container label {
    font-size: 13px;
  }
  .checkbox-container label::before {
    width: 20px;
    height: 20px;
  }
  .checkbox-container label::after {
    width: 3px;
    height: 6px;
  }
}
