/*
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

:root {
    --vz-vertical-menu-hover-and-active: #6674A1;
    --vz-vertical-menu-hover-and-active-dark: #32373D;
}

.navbar-menu .navbar-nav .nav-sm {
    padding-left: 0;
}

.form-switch input[type="checkbox"]:not(:checked) + span:before {
    content: attr(data-off);
}

.form-switch input[type="checkbox"]:checked + span:before {
    content: attr(data-on);
}

.page-title-left {
    flex: 1;
    margin-left: 10px;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            /*content: 'Please wait...';*/
            display: block;
            font-size: 10px;
            width: 160px;
            height: 160px;
            border: 16px solid rgba(255, 255, 255, 0.00);
            border-radius: 50%;
            border-top: 16px groove #004ba6;
            border-bottom: 16px groove #ED1651;
            animation: spinner 2s linear infinite;
            -moz-animation: spinner 2s linear infinite;
            -ms-animation: spinner 2s linear infinite;
            -o-animation: spinner 2s linear infinite;
        }

.loader--text {
    position: fixed;
    z-index: 9998;
    height: 0;
    width: 160px;
    overflow: visible;
    margin: auto;
    top: -100px;
    left: 73px;
    bottom: 0;
    right: 0;
}


    .loader--text:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .loader--text:after {
        content: "Please wait";
        font-weight: bold;
        width: 100%;
        height: 100%;
        animation-name: loading-text;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        background-color: white;
    }

/*loader*/

.loader-l {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border: 3px solid #ddd;
    border-top: 3px solid #42a5f5;
    border-radius: 50%;
    height: 120px;
    width: 120px;
}

@-webkit-keyframes spin {
    to {
        border-top-color: #ec407a;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        border-top-color: #ec407a;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* general styling */


.container-l {
    position: fixed;
    z-index: 9999;
    height: 0;
    width: 160px;
    overflow: visible;
    margin: auto;
    top: -200px;
    left: 33px;
    bottom: 0;
    right: 0;
}

.loader-bg {
    background: #0000003b;
    position: fixed;
    z-index: 9998;
    height: 100%;
    width: 100%;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
