:root {
    --color-skylight: #CAD6E6;
    --color-darkblue: #093249;
    --color-white: #fff;
    --color-grey: #707070;
    --color-skyblue: #009CF8;
    --color-lightgrey: #F6F6F6;
    --color-blackdark: #262626ab;
    --color-parrot: #A6D600;
    --color-lightwhite: #B2B5CC;
}

body {
    font-family: 'Open Sans', sans-serif;
}


/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-parrot);
    border-radius: 0px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-parrot);
    }

header {
    padding: 15px 35px;
}

.logo-w {
    width: 442px;
}

.login-bg {
    height: calc(100vh - 70px);
    position: relative;
    /* min-height: 585px; */
}

.bg-lightsky {
    background: var(--color-skylight);
    color: var(--color-darkblue);
    font-weight: 700;
    font-size: 0.66vw;
}

    .bg-lightsky:hover {
        color: var(--color-darkblue);
        border: 1px solid var(--color-darkblue);
    }

.loader-section,
.loader-inner {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #ffffff8f;
    z-index: 99999;
}

.loader-inner {
    position: absolute;
    display: none;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    top: 5px;
    left: 5px;
}

    .loader-inner.active {
        display: block;
    }

.loader-section img {
    max-width: 100%;
    width: 25%;
    margin: 0 auto;
}

.table-col {
    display: table;
    height: 100%;
    width: 100%;
}

    .table-col .table-cell-col {
        display: table-cell;
        height: 100%;
        width: 100%;
        vertical-align: middle;
    }

.boxes-lr {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 79px;
    padding-right: 34px;
    padding-top: 34px;
    height: calc(100% - 175px);
}

.project-title {
    font-weight: 600;
    text-align: center;
    padding: 15px 40px;
    background: var(--color-white);
    color: var(--color-skyblue);
    text-align: left;
}

.box-leftbox {
    max-width: 360px;
    background: var(--color-white);
    border-top: 5px solid var(--color-skyblue);
    box-shadow: 0px 3px 25px #00000029;
    max-height: calc(100vh - 358px);
    overflow: auto;
}

.title-inner {
    background: var(--color-lightgrey);
    color: var(--color-skyblue);
    padding: 10px 10px;
}

.padding-leftrightform {
    padding: 14px 24px 0 24px;
}

#captcha {
    font-weight: 700;
}

.btn-primary {
    background-color: var(--color-skyblue);
    border-color: var(--color-skyblue);
}

.max-widthamnex {
    max-width: 112px;
}

.footer-bgskyblue {
   /* background: var(--color-skyblue);*/
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    padding: 30px 30px;
}

.box-notification {
    background: var(--color-blackdark);
    padding: 15px;
    color: var(--color-white);
    width: 450px;
}

#tile-1 .nav-tabs {
    position: relative;
    background-color: transparent;
}

    #tile-1 .nav-tabs li button {
        position: relative;
        color: var(--color-lightwhite);
        border: unset;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    #tile-1 .nav-tabs button:hover, #tile-1 .nav-tabs button:focus {
        background-color: transparent !important;
        border: unset;
    }

#tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background-color: var(--color-parrot);
    position: absolute;
    z-index: 1200;
    bottom: -2px;
    transition: all .4s linear;
}

#tile-1 .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: var(--color-parrot) !important;
}

.notification-list {
    font-size: 0.85rem;
    padding: 15px;
    color: var(--color-lightwhite);
    max-height: calc(100vh - 378px);
    overflow: auto;
}

    .notification-list li {
        display: block;
        border-bottom: 1px solid var(--color-lightwhite);
        color: var(--color-white);
        font-weight: bold;
        margin: 10px 0;
    }





@keyframes cf3FadeInOut {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

#banner_animate img.animation-top {
    animation-name: cf3FadeInOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-direction: alternate;
    transition: opacity 1s ease-in-out;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#banner_animate img:nth-of-type(1) {
    animation-delay: 10s;
}

#banner_animate img:nth-of-type(2) {
    animation-delay: 5s;
}

#banner_animate img:nth-of-type(3) {
    animation-delay: 0s;
}

@media screen and (max-width: 769px) {
    .footer-bgskyblue {
        width: 100%;
        position: unset;
    }

    .box-notification {
        width: 100%;
    }

    .boxes-lr {
        padding-left: 0;
        padding-right: 0;
        width: 90%;
        margin: auto;
        padding-top: 5px;
    }

    .logo-w {
        margin-bottom: 10px;
    }

    .bg-lightsky {
        margin-bottom: 8px;
    }

    header {
        text-align: center;
    }

    .boxes-lr {
        position: unset;
    }

    .login-bg {
        height: unset;
    }

    #banner_animate {
        display: none;
    }

    .notification-list {
        height: unset;
    }

    .box-notification {
        margin-bottom: 15px;
    }

    .project-title {
        font-size: 1.285rem;
        padding: 10px;
    }

    .box-leftbox {
        max-width: 100%;
        margin-bottom: 15px;
    }

    /*.responsive-space {
        margin-bottom: 30px;
    }
*/
    .responsive-width {
        width: 40px;
    }
}

@media screen and (max-width: 1366px) {
    .footer-bgskyblue {
        width: 85%;
        padding: 20px;
    }
}

@media screen and (max-height: 768px) {
    .box-leftbox {
        max-height: unset;
    }
    .boxes-lr {
        height: calc(100% - 175px);
        transform: scale(0.85);
        padding-top:0;
    }
}
