<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,900&amp;display=swap");

body {
    font-family: "Source Sans Pro", sans-serif !important;
}

.text_items {
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: 600;
}

.customMargin {
    margin: 5px;
}

.entery_screen {
    height: 100vh;
}

.entery_bg {
    background-color: #f4f4f4 !important;
}

.form-control {
    height: 50px;
}

.entery_content_btn {
    width: 49%;
    border-radius: 0px;
    margin: 0px !important;
    height: 50px;
    margin: 10px 0px !important;
}

.entery_sub_title {
    color: #43425d;
    margin: 20px 0px;
}

.entery_content_box {
    background-color: #fff !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
    padding: 20px;
}

.page {
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.btn {
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: 600;
}
img

.loader {
    position: fixed;
    display: block;
    left: 50%;
    top: 50%;
    z-index: 23999;
    margin-left: -25px;
    margin-top: -25px;
    text-align: center;
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #17a2b8; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#spinnerScreen {
    display: none;
}

.loaderScreen {
    width: 100%;
    height: 100%;
    position: fixed;
    display: block;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}
</pre></body></html>