﻿.qp_checkbox_wrapper {
    width: 260px;
    height: 50px;
   /* border: 1px solid #dddde6;
    background-color: white;*/
    max-height: 100%;
    min-height: 40px;
    position: relative;
    padding: 8px 0 0 0;
   /* border-radius: 20px;*/
    box-sizing: border-box;
}

.qp_checkbox_wrapper .qp_switch {
    top: 4px;
    left: 15px;
    position: relative;
}

.qp_checkbox_wrapper .qp_switch_title {
    top: 3px;
    left: 25px;
    position: relative;
}

/* The switch - the box around the slider */
.qp_switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 12px;
}

    /* Hide default HTML checkbox */
    .qp_switch input {
        opacity: 0;
        width: 24px;
        height: 12px;
    }

.qp_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CCD0D8;
    -webkit-transition: .4s;
    transition: .4s;
}

    .qp_slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 0px;
        bottom: -1px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border: 1px solid #CCD0D8;
    }

input:checked + .qp_slider {
    background-color: #17D998;
}

input:focus + .qp_slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .qp_slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
    border: 1px solid #17D998;
}

/* Rounded sliders */
.qp_slider.round {
    border-radius: 34px;
}

    .qp_slider.round:before {
        border-radius: 50%;
    }
