.customer_type_qr .header-mobile--menu-left .header-left,
.customer_type_qr .header-right.flex-column .nav {
    display: none;
}

.close-qr {
    float: left;
    z-index: 1;
    margin: -1px 4px;
    position: absolute;
}

.qr-switch {
    position: absolute;
    z-index: 1;
    right: 55px;
}

.qr-switch input {
    visibility: hidden;
}

.switch {
    /* position: relative; */
    /* display: inline-block; */
    display: flex;
    width: 60px;
    height: 26px;
    margin-top: 4px;
}

.switch__label {
    margin: 0px 38px;
    color: #d5ba9c;
}

.switch input {
    display: none;
}

.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: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #d5ba9c;
}

input:focus+.slider {
    box-shadow: 0 0 1px #d5ba9c;
}

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%;
}