<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
}

/* .slideThree */
.check-slider {
    width: 80px;
    height: 36px;
    background: #ddd;
    position: relative;
    border-radius: 50px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,0.2);
    float: left;
    margin-right: 15px;
}

/*Active state*/
.check-slider.active {
    background-color: #bffaaa;
}

.check-slider:after {
    content: 'NO';
    color: #000;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255,255,255,.15);
}

.check-slider:before {
    content: 'YES';
    color: #27ae60;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
}

.check-slider &gt; label {
    display: block;
    width: 34px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 1;
    background: #fcfff4;
    background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}

.check-slider &gt; input[type=checkbox],
.check-slider &gt; input[type=radio] {
    visibility: hidden;
}

.check-slider &gt; input[type=checkbox]:checked + label,
.check-slider &gt; input[type=radio]:checked + label {
    left: 43px;
}

.check-slider-container:before,
.check-slider-container:after {
    display: table;
    content: " ";
}
.check-slider-container:after {
    clear: both;
}

.check-slider-container + .check-slider-container {
    margin-top: 20px;
}

.check-slider-container &gt; .check-slider-label {
    display: inline-block;
    width: calc(100% - 95px);
    height: 36px;
    line-height: 36px;
}

@media (max-width: 992px) {
    .check-slider-container &gt; .check-slider-label {
        height: auto;
        line-height: normal;
    }
}
/* end .slideThree */

.panel-scroll-v {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 25px;
}

/* List Groups */

.checked-list-box .list-group-item.active,
.checked-list-box .list-group-item.active:hover,
.checked-list-box .list-group-item.active:focus {
    background-color: #eee /*#e0144e*/;
    border-color: #eee /*#e0144e*/;
    color: inherit;
}


/* Check Blocks */

.check-blocks,
.check-blocks &gt; .check &gt; label:before,
.check-blocks &gt; .check &gt; label:after {
    display: table;
    content: " ";
}

.check-blocks,
.check-blocks &gt; .check &gt; label:after {
    clear: both;
}

.check-blocks {
    width: 100%;
}

.check-blocks &gt; .check &gt; label {
    display: block;
    padding: 15px 25px;
    border: solid 1px #ccc;
    background-color: #f9f9f9;
    position: relative;
    font-weight: normal;
}

    .check-blocks &gt; .check.disabled &gt; label,
    .check-blocks &gt; .check.disabled &gt; label:hover {
        opacity: .4;
    }

        .check-blocks &gt; .check.disabled &gt; label:hover {
            cursor: not-allowed;
        }

    .check-blocks &gt; .check &gt; label &gt; input {
        display: none;
    }

.check-blocks:not(.check-cols) &gt; .check + .check {
    margin-top: 15px;
}

.check-blocks &gt; .check &gt; label:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    content: "\f0c8";
    display: inline-block;
    padding-left: 10px;
    position: absolute;
    right: 10px;
    top: 2px;
    font-size: 32px;
    opacity: .5;
}

.check-blocks &gt; .check &gt; label:hover {
    cursor: pointer;
    opacity: .9;
}

.check-blocks &gt; .check &gt; label.active {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    padding-right: 60px;
}

.check-blocks &gt; .check &gt; label.active:before {
    content: "\f14a";
    opacity: 1;
}

.check-blocks &gt; .check &gt; input[type='radio'],
.check-blocks &gt; .check &gt; input[type='checkbox'] {
    display: none;
}

@media (min-width: 992px) {
    .check-cols.check-blocks &gt; .check {
        width: calc(33.3333% - 25px);
        float: left;
        margin-bottom: 25px;
        margin-left: 12.5px;
        margin-right: 12.5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .check-cols.check-blocks &gt; .check {
        width: calc(50% - 25px);
        float: left;
        margin-bottom: 25px;
        margin-left: 12.5px;
        margin-right: 12.5px;
    }
}

@media (max-width: 767px) {
    .check-cols.check-blocks &gt; .check {
        width: 100%;
        margin-bottom: 25px;
    }
}

.checkbox-row &gt; .custom-checkbox-wrapper {
    display: block;
}</pre></body></html>