﻿html {
}

body {
    /*background: url(../Assets/topograph.png);*/
    background-color: #f8f9fa;
    width: 100vw;
    overflow-x: hidden;
    background-repeat: repeat;
    background-size: 40%;
    background-blend-mode: color-burn;
    font-family: Arial
}

/*
    form and input fields
*/

.bg-light {
    background-color: #e6e6e6 !important;
}

.zink-header {
    background-color: #e6e6e6 !important;
    border-color: #e6e6e6 !important;
}

.zink-form-group {
    padding-bottom: 8px;
}

.nav-link {
    color: #000;
}

    .nav-link:hover {
        color: #fff;
    }

.navbar-fixed-top .nav {
    padding-top: 45px;
}

.zink-page-heading {
    padding: 10px 16px 10px 16px;
    background-color: #e5b43d;
    font-size: 24px;
}

.no-padding {
    padding: 0px;
}

@media all and (max-width: 992px) {
    .zink-page-heading {
        margin-top: 56px !important;
    }
}

.zink-nav {
    border-radius: 0;
}

    .zink-nav > a {
        padding: 10px 15px !important;
        line-height: 20px !important;
    }

    .zink-nav:hover {
        cursor: pointer;
        color: #f7f7f7 !important;
        background-color: #ff8300 !important;
        border-radius: 0;
    }

.zinkactive {
    color: #ffffff !important;
    background-color: #ff8300 !important;
    border-radius: 0 !important;
}

    .zinkactive > a {
        color: #ffffff !important;
        background-color: #ff8300 !important;
    }

.maincontainerloadingarea {
    position: absolute;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
}

.no-padding {
    padding: 0px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 30px;
    line-height: 30px; /* Vertically center the text there */
    background-color: #e6e6e6;
}

/*
    App Loader
*/
.loadercontainer {
    padding-top: 50%;
}

.loadertext {
    color: #000;
}

.loader {
    border: 8px solid #fff;
    border-radius: 50%;
    border-top: 8px solid #ff8300;
    width: 48px;
    height: 48px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin: auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.appnav-panel {
    position: fixed;
    z-index: 10000;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    box-shadow: 0 0 0.875rem 0 rgba(0,0,0,.3);
    white-space: nowrap;
}

.appnav-panel-show {
    width: 370px;
}

.appnav-panel-hide {
    width: 0;
}

.appnav-item:hover {
    color: #777;
}

.appnav-ham-show {
    position: absolute;
    -webkit-animation: right_to_left 0.5s ease;
    animation: right_to_left 0.5s ease;
    animation-fill-mode: forwards;
}

@keyframes right_to_left {
    from {
        right: 0;
    }

    to {
        right: 380px;
    }
}
