.toggle-button { margin: 5px 0; border-radius: 20px; border: 2px solid #D0D0D0; height: 24px; cursor: pointer; width: 50px; position: relative; display: inline-block; user-select: none; -webkit-user-select: none; -ms-user-select: none; -moz-user-select: none; }
.toggle-button span { position: absolute; left: 0; top: 0; border-radius: 100%; width: 26px; height: 26px; background-color: white; float: left; margin: -3px 0 0 -3px; border: 2px solid #D0D0D0; transition: left 0.4s; }
.toggle-button-selected { background-color: #83B152; border: 2px solid #7DA652; }
.toggle-button-selected span { left: 28px; top: 0;  border: none; width: 24px; height: 24px; box-shadow: 0 0 4px rgba(0,0,0,0.1); }

.center { text-align:center; }

/* margin: 0; */


select{
    background: #353c42 !important;
    color:white !important;
}

.checkbox {
    position: relative;
    margin-bottom: 20px;
  }
  
  .checkbox label {
    padding-left: 10px;
    display: block;
  }
  
  .checkbox input {
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    position: absolute;
  }
  
  .checkbox input:checked + .input-helper:before {
    border-color: #009688;
  }
  
  .checkbox .input-helper:before,
  .checkbox .input-helper:after {
    position: absolute;
    content: "";
    transition: all 200ms;
  }
  
  .checkbox .input-helper:before {
    left: 0;
    border: 2px solid #7a7a7a;
  }
  
  .checkbox input {
    width: 15px;
    height: 15px;
  }
  
  .checkbox input:checked + .input-helper:before {
    background-color: #009688;
  }
  
  .checkbox input:checked + .input-helper:after {
    transform: scale(1);
    opacity: 1;
  }
  
  .checkbox .input-helper:before {
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    color: #fff;
  }
  
  .checkbox .input-helper:after {
    content: '\2713';
    font-size: 13px;
    left: 3px;
    top: 0x;
    color: #fff;
    transform: scale(0);
    opacity: 0;
  }