.customer-info {
    display: flex;
    justify-content: center;
    width: 100%;
}

.schedule-logo {
    margin: 15px !important;
}

.info-card {
    display: flex;
    background-color: rgb(255,255,255, .9);
    border-radius: 15px;
    margin: 15px; 
    justify-content: center;
    flex-direction: column; 
    width: 25%;
}

@media screen and (max-width: 1550px) {
    .info-card {
        width: 100%;
    }
    
    .login h1 {
        font-size: 2em;
    }
}

.input-group {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 25px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #61bec7;
}

input:focus + .slider {
  box-shadow: 0 0 1px #61bec7;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    margin: 25px;
}

.toggle-group {
    display: flex;
    justify-content: flex-start;
    margin: 15px 0px;
}

.input {
    height: 50px;
    border-color: lightgray;
    border-radius: 5px;
}

.input-label {
    display: flex;
}

.toggle-label {
    font-weight: bold;
    margin-left: 15px;
}

.appt-conf {
    background-color: rgba(230,241,252);
    margin: 15px;
    border-radius: 25px;
    border: 1px solid lightgray;
}

.appt-conf-text {
    margin: 25px;
}

.appt-conf-text span {
    font-weight: bold;
}

.schedule_appt_form {
    background: white;
    padding-top: 1rem;
}

.schedule_no_available_slots {
    background: white;
    padding: 10px 0px;
    display: none;
}

.input-customer-code {
    height: 74px;
}

.info-input {
    font-size: 1rem !important;
    font-weight: 400 !important;
    border-radius: 5px !important;
}

.week-pd {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #61bec7;
    width: 225px;
}

#customer_info #address {
    text-align: left;
    padding: 1rem;
}

