<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*toggle switch*/
.toggle-label {
    display: inline;
    /* vertical-align: -webkit-baseline-middle; */
    font-size: 1.3em;
    /* font-weight: bold; */
    /* margin-right: 5px; */
}

.switch {
    /* position: relative; */
    /* display: inline-block; */
    /* width: 60px; */
    /* height: 34px; */
}

    .switch input {
        /* opacity: 0; */
        /* width: 0; */
        /* height: 0; */
    }

.slider {
    /* position: absolute; */
    /* cursor: pointer; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* background-color: #ccc; */
    /* -webkit-transition: .4s; */
    /* transition: .4s; */
}

    .slider:before {
        /* position: absolute; */
        /* content: ""; */
        /* height: 26px; */
        /* width: 26px; */
        /* left: 4px; */
        /* bottom: 4px; */
        /* background-color: white; */
        /* -webkit-transition: .4s; */
        /* transition: .4s; */
    }

input:checked + .findapc.slider {
    background-color: forestgreen;
}

input:focus + .findapc.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .findapc.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    /* border-radius: 34px; */
}

    .slider.round:before {
        /* border-radius: 50%; */
    }


.sectionheader {
    /* font-weight: bold; */
    margin: .5em;
}

.fpccont {
    padding: 10px 0 0 0;
    border: 1px solid rgb(255 255 255 / 35%);
    margin: 0 1em 1em 1em;
    border-radius: 5px;
    background: radial-gradient(ellipse at center, #45484d 0%,#000000 100%);
}

.bg-white .fpccont {
    background: radial-gradient(ellipse at center, #45484d00 0%,#0000000d 100%);
}

label {
    /* font-weight: bold; */
    /* font-size: .8em; */
}

.upload-btn {
    height: 200px;
    width: 200px;
    /* background-color: #ffffff !important; */
    border: 1px solid lightgray;
    background-clip: padding-box;
    color: transparent;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position-y: center;
    border-radius: 5px;
}

.upload-btn-contain {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-color: #333 !important;
}

.upload-btn-cover {
    background-size: cover;
}

.upload-empty {
    background-image: none; /*url("https://www.promosaver.com/art/dclogo_promosource.png");*/
    background-color: #00000005;
    /* color: #fff; */
}

.div-upload-logo, .div-upload-photo {
    display: none;
}

.cert-button {
    width: 100%;
}

.bg-white select option {
    border-radius: unset !important;
    background: unset !important;
    color: unset !important;
}


@media (max-width: 767px) {
    .fpccont {
        margin: 0;
    }

    .sectionheader {
        margin-left: 0;
    }

    .cert-button {
        font-size: 1.0rem;
        height: 35px;
    }
}
</pre></body></html>