﻿html {
    height: 100vh;
    height: 100dvh; /* new browsers */
}

.navbar {
    color: #fff;
    background-color: #263E44;
}

.navbar li {
    color: #fff;
    font-weight: 600;
}

.navbar-nav > li > a {
    line-height: 20px;
    padding-bottom: 0;
    color: #047272;
    font-size: 15px;
    text-decoration: none;
}

.navbar-nav > li > a:hover {
    color: #9A8078;
}

.navbar-nav > li > a.hover {
    color: #9A8078;
    display: table;
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
}

@media (min-width:768px) {
    li > a:hover {
        color: #9A8078;
    }
}

.nav li {
    color: #263E44;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #9A8078;
    text-decoration: none;
}

.nav-logo {
    height: 30px;
    width: auto;
}

.loading-progress {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    transform: rotate(45deg);
}
.loading-progress div {
    width: 6px;
    height: 6px;
    background: #263E44;
    border-radius: 100%;
    float: left;
    margin-bottom: 12px;
    animation: scaleDot 2s ease infinite;
}
.loading-progress div:not(:nth-child(4n+4)) {
    margin-right: 12px;
}
.loading-progress div:nth-child(1) {
    animation-delay: 0s;
}
.loading-progress div:nth-child(2),
.loading-progress div:nth-child(5) {
    animation-delay: 0.1s;
}
.loading-progress div:nth-child(3),
.loading-progress div:nth-child(6),
.loading-progress div:nth-child(9) {
    animation-delay: 0.2s;
}
.loading-progress div:nth-child(4),
.loading-progress div:nth-child(7),
.loading-progress div:nth-child(10),
.loading-progress div:nth-child(13) {
    animation-delay: 0.3s;
}
.loading-progress div:nth-child(8),
.loading-progress div:nth-child(11),
.loading-progress div:nth-child(14) {
    animation-delay: 0.4s;
}
.loading-progress div:nth-child(12),
.loading-progress div:nth-child(15) {
    animation-delay: 0.5s;
}
.loading-progress div:nth-child(16) {
    animation-delay: 0.6s;
}
@-moz-keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
@-o-keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
