.pre-order__switch-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
}

.pre-order__switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 50px !important;
    height: 26px;
    float: none !important;
    margin: 0 !important;
}

.pre-order__switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pre-order__switch .switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.pre-order__switch .switch:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    border-radius: 20px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.pre-order__switch input:checked + .switch {
    background-color: #2196F3;
}

.pre-order__switch input:focus + .switch {
    box-shadow: 0 0 1px #2196F3;
}

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

.pre-order__switch--column input:checked + .switch:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

.pre-order__switch-label {
    font-weight: 700;
}