.select__body .dropdown input {
    width: 100%;
    display: block;
    text-align: left;
    height: 55px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 32px;
    white-space: pre-wrap;
    padding: 0 20px;
    outline: none;
}

.select__body .dropdown {
    width: inherit;
}

.select__body ul.dropdown-content {
    top: 55px;
    left: 25px;
    width: calc(100% - 50px);
    border-radius: 0 0 32px 32px;
    background-color: #00008b;
}

.select__body .dropdown-line a.dropdown-line-content {
    background-color: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 16px !important;
}

.select__body .dropdown-line:hover {
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
}

.checkbox {
    display: none;
}

.checkbox + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-bottom: 35px;
}

.checkbox + label::before {
    content: "";
    display: inline-block;
    width: 105px;
    height: 55px;
    border: 1px solid #3b3b3b;
    border-radius: 35px;
    margin-right: 10px;
    transition: .3s linear;
}

.checkbox + label::after {
    content: "HDD";
    position: absolute;
    left: 2px;
    top: 2px;
    display: inline-block;
    height: 51px;
    width: 51px;
    border-radius: 35px;
    background-color: white;
    transition: .3s linear;
    text-align: center;
    color: black;
    padding: 18px 0;
    font-weight: bold;
}

.checkbox:checked + label::after {
    content: "SSD";
    transform: translateX(50px);
    background: linear-gradient(45deg, #ff33cc, #3366);
    color: white;
}

.checkbox:checked + label::before {
    transition: .3s linear;
    background-color: white;
}

.lds-ellipsis {
  /* change color here */
  color: #ffffff
}
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  top: -5px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}