<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------------- checkbox &amp; radio &amp; toggle ----------------*/
.pd-checkbox-label {
    padding: 0;
    font-size: 100% !important;
}

    .pd-checkbox-label label {
        padding-left: 5px;
    }

label.pd-radio,
label.pd-checkbox,
label.pd-toggle {
    display: inline-block;
    min-height: 20px;
    font-weight: 400;
    line-height: 34px;
    font-size: 100%;
    clear: both;
    text-align: left;
    cursor: pointer;
    margin-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

/*label *, :before, :after {
    box-sizing: border-box
}

.radio + .radio, .checkbox + .checkbox, .toggle + .toggle {
    margin-top: -5px
}*/

.pd-radio input,
.pd-checkbox input,
.pd-toggle input {
    visibility: hidden;
    position: absolute
}

    .pd-radio input ~ span,
    .pd-checkbox input ~ span,
    .pd-toggle input ~ span {
        position: relative;
        margin: 7px 5px 7px 0;
        display: inline-block;
        float: left;
        width: 22px;
        height: 22px
    }

    .pd-toggle input ~ span {
        margin: 7px 0 7px 5px;
        float: right
    }

    .pd-radio input ~ span:after {
        content: '';
        position: absolute;
        width: 22px;
        height: 22px;
        background: #fff;
        border: 2px solid #bbb;
        border-radius: 50%
    }

    .pd-radio input ~ span:before {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        top: 6px;
        left: 6px;
        background: #69BFCE;
        border-radius: 50%;
        z-index: 1;
        transform: scale(0);
        transition: all .15s ease-in-out
    }

    .pd-radio input:hover ~ span:after {
        border-color: #999;
        box-shadow: 0 0 0 3px rgba(218, 218, 218, .5)
    }

    .pd-radio input:checked ~ span:before {
        transform: scale(1)
    }

.pd-checkbox.pd-checkbox-middle label {
    padding-left: 0;
}

.pd-checkbox.pd-checkbox-middle input ~ span {
    position: relative;
    margin: 2px 10px 2px 0px;
    display: inline-block;
    float: left;
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.pd-checkbox input ~ span:after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #69BFCE;
    top: -1px;
    border-radius: 2px;
}

.pd-checkbox.pd-checkbox-middle input ~ span:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #69BFCE;
    top: 0px;
    border-radius: 5px;
}

.pd-checkbox input ~ span:before,
.pd-checkbox.grayed input ~ span:before {
    content: '\2714';
    position: absolute;
    top: 1px;
    left: 0px;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    color: #69BFCE;
    font-size: 17px;
    line-height: 18px;
    z-index: 1;
    transform: scale(0);
    transition: all .15s ease-in-out;
    font-weight: bold;
}


.pd-checkbox.pd-checkbox-middle input ~ span:before, .pd-checkbox.grayed.pd-checkbox-middle input ~ span:before {
    content: '\2714';
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    color: #69BFCE;
    font-size: 10px;
    line-height: 18px;
    z-index: 1;
    transform: scale(0);
    transition: all .15s ease-in-out;
    font-weight: bold;
}

.pd-checkbox.grayed input ~ span:before {
    color: #aaa
}

.pd-checkbox input:checked ~ span:before {
    transform: scale(1)
}

.pd-checkbox input:hover ~ span:after {
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(218, 218, 218, .5)
}

.pd-checkbox.fillbox input ~ span:before,
.pd-checkbox.fillbox.grayed input ~ span:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #007ec4
}

.pd-checkbox.fillbox.grayed input ~ span:before {
    background: #aaa
}

.pd-toggle input ~ span {
    width: 40px
}

    .pd-toggle input ~ span:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 12px;
        background: #ccc;
        border-radius: 6px;
        top: 4px;
        transition: all .15s ease-in-out
    }

    .pd-toggle input ~ span:before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 50%;
        z-index: 1;
        right: 20px;
        transition: all .15s ease-in-out;
        color: rgba(218, 218, 218, .5)
    }

.pd-toggle input:checked ~ span:after {
    background: rgba(102, 175, 233, .3)
}

.pd-toggle input:checked ~ span:before {
    right: 0;
    background: #007ec4;
    border-color: #007ec4;
    color: rgba(64, 129, 190, .2)
}

.pd-toggle input:hover ~ span:before {
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(218, 218, 218, .5)
}

.pd-toggle input:checked:hover ~ span:before {
    border-color: #007ec4;
    box-shadow: 0 0 0 3px rgba(64, 129, 190, .2)
}

.pd-toggle.fillbox input ~ span:after {
    height: 20px;
    top: 0;
    border-radius: 10px
}

.pd-toggle.fillbox input ~ span:before {
    width: 18px;
    height: 18px;
    top: 1px;
    border-color: #fff
}

.pd-toggle.fillbox input:checked ~ span:before {
    right: 1px;
    border-color: #007ec4
}

.pd-toggle.left input ~ span {
    float: left;
    margin: 7px 5px 7px 0
}

label.label-block {
    display: block;
    margin-right: 0
}

.disabled .pd-radio,
.disabled .pd-checkbox,
.disabled .pd-toggle,
.pd-radio.disabled,
.pd-checkbox.disabled,
.pd-toggle.disabled {
    color: #bbb;
    cursor: default
}

    .disabled .pd-radio input ~ span:after,
    .disabled .pd-checkbox input ~ span:after,
    .pd-radio.disabled input ~ span:after,
    .pd-checkbox.disabled input ~ span:after {
        background: transparent;
        border-color: #ddd
    }

    .disabled .pd-radio input ~ span:before,
    .disabled .pd-checkbox input ~ span:before,
    .pd-radio.disabled input ~ span:before,
    .pd-checkbox.disabled input ~ span:before {
        opacity: .5
    }

    .disabled .pd-radio input:hover ~ span:after,
    .disabled .pd-checkbox input:hover ~ span:after,
    .pd-radio.disabled input:hover ~ span:after,
    .pd-checkbox.disabled input:hover ~ span:after {
        border-color: #ddd !important;
        box-shadow: none !important
    }

    .disabled .pd-toggle input ~ span:after,
    .pd-toggle.disabled input ~ span:after {
        background: #eee
    }

    .disabled .pd-toggle input ~ span:before,
    .pd-toggle.disabled input ~ span:before {
        background: #fafafa;
        border-color: #ddd !important
    }

    .disabled .pd-toggle input:checked ~ span:after,
    .pd-toggle.disabled input:checked ~ span:after {
        background: rgba(156, 202, 239, .3)
    }

    .disabled .pd-toggle input:checked ~ span:before,
    .pd-toggle.disabled input:checked ~ span:before {
        background: #77B6D9;
        border-color: #77B6D9 !important
    }

    .disabled .pd-toggle input:hover ~ span:before,
    .pd-toggle.disabled input:hover ~ span:before {
        box-shadow: none !important;
        animation: none
    }

.pd-checkbox-label-inner {
    z-index: -1;
}
/*-------------- checkbox &amp; radio &amp; toggle -END ----------------*/

.no-margin {
    margin: 0;
}

.checkbox-other {
    display: block;
    margin: 0 0 10px 0;
    line-height: 22px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

    .checkbox-other input[type=checkbox] {
        position: absolute;
        z-index: -1;
        opacity: 0;
        display: block;
        width: 0;
        height: 0;
    }

    .checkbox-other span {
        display: inline-block;
        position: relative;
        padding: 0 0 0 35px;
        line-height: 22px;
    }

        .checkbox-other span:before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 0;
            border: 1px solid #2B7335;
            box-shadow: inset 0 0 3px #8a8a8a;
        }

    /* Checked */
    .checkbox-other input[type=checkbox] + span:after {
        content: "";
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .checkbox-other input[type=checkbox]:checked + span:after {
        content: "\2714";
        position: absolute;
        top: 1px;
        left: 0px;
        right: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
        color: #69BFCE;
        font-size: 17px;
        line-height: 18px;
        z-index: 1;
        transform: scale(0);
        transition: all .15s ease-in-out;
        font-weight: bold;
        /*color: #69BFCE;
        font-size: 30px;
        font-weight: 900;
        position: absolute;
        left: 2px;
        top: -2px;
        opacity: 1;*/
    }

/* Focus */
.focused span:before {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Hover */
.checkbox-other span:hover:after {
    filter: brightness(110%);
}

/* Active */
.checkbox-other span:active:before,
.checkbox-other span:active:after {
    filter: brightness(80%);
}

/* Disabled */
.checkbox-other input[type=checkbox]:disabled + span {
    color: #666;
    cursor: default;
}

    .checkbox-other input[type=checkbox]:disabled + span:before,
    .checkbox-other input[type=checkbox]:disabled + span:after {
        filter: grayscale(100%);
        opacity: 0.6;
    }

</pre></body></html>