.slider {
    max-width: 250px;
}

div.ui-slider-handle-custom {
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
    min-width: 1.5em;
}

/* --- SWITCH Checkbox --- */
.switch * {
    cursor: pointer;
}

.switch input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.switch span {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 34px;
    transition: all .5s;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
}

.switch span:after {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 1px;
    left: 1px;
    height: 16px;
    width: 16px;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .2s;
}

.switch input:checked + span {
    background-color: #28a745;
    border-color: #28a745;
    transition: all .5s;
}

.switch input:checked + span:after {
    left: 50%;
    transition: all .2s;
}

/* --- shortcode style --- */
.cc-admin-shortcode div{
    margin-bottom: 12px;
}
.cc-admin-shortcode .cc-shortcode{
    height: 40px;
    border: 1px dashed #28a745;
    font-size: 17px;
}

