.buttons-wrapper {
    display: none;
}

.control-panel {
    background-image: none;
}

.control-panel {
    display: block;
    padding: 0.5em;
    text-align: center;
    font-weight: bold;
    background-color: #dedcdc;

}

.control-panel:after {
    content: "";
    display: block;
    clear: both;
}

.lbl1 {
    position: relative;
    display: inline-block;
    height: 16px;
    width: 30px;
    background: #898989;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.lbl1:after {
    position: absolute;
    left: -2px;
    top: -2px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);
    content: '';
    transition: all 0.3s ease;
    border: 2px solid #FB9B34;
}

.lbl1:active:after {
    transform: scale(1.15, 0.85);
}

.cbx:checked ~ label {
    background: #537e51;
}

.cbx:checked ~ label:after {
    left: 10px;
    background: white;
}

.cbx:disabled ~ label {
    background: #d5d5d5;
    pointer-events: none;
}

.cbx:disabled ~ label:after {
    background: #bcbdbc;
}

.digits-form label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

.digits-form label.radio input + b {
    width: 1em;
    height: 1em;
    display: inline-block;
    border-radius: 100%;
    border: none;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.digits-form label.radio input:checked + b {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http:%2F%2Fwww.w3.org%2F2000%2Fsvg" xmlns:xlink="http:%2F%2Fwww.w3.org%2F1999%2Fxlink" version="1.1" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="%23537E51"%2F><%2Fsvg>');
}

.digits-form label.radio * {
    vertical-align: middle;
}

.digits-form label.radio[data-value="0"] span:after {
    content: " Đầy đủ";
}

.digits-form label.radio[data-value="2"] span:after {
    content: " 2 số";
}

.digits-form label.radio[data-value="3"] span:after {
    content: " 3 số";
}

.digits-form {
    /*float: left;*/
}

.digits-form label.radio {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.digits-form label.radio + label.radio {
    margin-left: 1em;
}

@media (max-width: 640px) {

    .digits-form {
        float: none;
        margin: auto;
    }
}

.arr-right-black, .arr-left-black {
    padding: 6px 15px;
    height: 20px;
    cursor: pointer;
    opacity: 0.5;
    margin-top: 4px;
}

.arr-left-black {
    background: url('/images/icons8-go-back-30.png');
    margin-top: -4px;
    height: 30px;
}

.arr-right-black {
    background: url('/images/icons8-arrow-right-30.png');
    margin-top: -4px;
    height: 30px;
}

.flex-wrap-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .flex-wrap-right {
        justify-content: center !important;
        text-align: left;
    }

    .col-one-third {
        flex: 1 1 33.33%;
    }
}