/* ============ Root Styles ================ */


@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), url("../fonts/roboto/regular-400.woff2") format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ===========  Other Styles ================= */

html, body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #ebebeb;

}

html{
    height: 100%;
}
body {
    min-height: 100%;
}

img {
    border: 0;
}

input.uk-checkbox:checked {
    background-color: #009933;
}

input.uk-checkbox:checked:focus {
    background-color: #009933;
}

input, textarea, select, button {
    border-radius: 5px !important;
}

.uk-button-primary {
    background-color: #009933;
    color: white;
}

.uk-button-primary:hover, .uk-button-primary:focus {
    background-color: #00BB3E;
    color: white;
}

/* OnClick + Active */
.uk-button-primary:active, .uk-button-primary.uk-active {
    background-color: #00BB3E;
    color: white;
}

.top_navbar {
    background-color: #009933;
    color: white;
}

.logo {
    height: 50px;
}

.menuToggleButton {
    min-height: 50px;
    color: white;
    margin-left: 15px;
    margin-right: 20px;
}

.main_menu_item {
    padding-left: 10px;
}

@media (max-width: 959px) {
    .uk-select, .uk-table {
        font-size: 12px;
    }

    .uk-link-text {
        text-decoration: underline;
    }
}

@media (min-width: 960px) {
    #passwordRestoreGrid div .uk-card {
        height: 260px;
    }
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    /*opacity: 0.7;*/
    /*background-color: black;*/
    z-index: 99999;
    text-align: center;
}

#loading-content {
    z-index: 100;
}


div.progress_bar {
    background-color: #fff;
    background-image: url(../images/progress-indicator.gif);
    background-position: center center;
    background-repeat: no-repeat;
    border: 0 solid #ddd;
    height: 50px;
    width: 90%;
}

.sticky-info-button {
    position: fixed;
    top: 23px;
    right: 13px;
    text-align: right;
    z-index: 985;
    background-color: white !important;
    color: #009933 !important;
}

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

/* Hide default HTML checkbox */
.uk-switch input {
    display: none;
}

/* Slider */
.uk-switch-slider {
    background-color: rgba(0, 0, 0, 0.22);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 500px;
    bottom: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: .2s;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
}

/* Switch pointer */
.uk-switch-slider:before {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 2px;
    bottom: 2px;
    border-radius: 50%;
    transition-property: transform, box-shadow;
    transition-duration: .2s;
}

/* Slider active color */
input:checked + .uk-switch-slider {
    background-color: #39f !important;
}

/* Pointer active animation */
input:checked + .uk-switch-slider:before {
    transform: translateX(26px);
}

/* Modifiers */
.uk-switch-slider.uk-switch-on-off {
    background-color: #f0506e;
}

input:checked + .uk-switch-slider.uk-switch-on-off {
    background-color: #009933 !important;
}

/* Style Modifier */
.uk-switch-slider.uk-switch-big:before {
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}

.uk-switch-slider.uk-switch-small:before {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}

input:checked + .uk-switch-slider.uk-switch-big:before {
    transform: translateX(26px) scale(1.2);
}

/* Inverse Modifier - affects only default */
.uk-light .uk-switch-slider:not(.uk-switch-on-off) {
    background-color: rgba(255, 255, 255, 0.22);
}
