.loginDetails {
    color: #fff;
    font-size: small;
}

/*--------------------------------------------------------------
# Distances
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Distances Section
--------------------------------------------------------------*/
#distances {
    width: 100%;
    height: 80vh;
    background: #37517e;
    color: #fff;
}

#distances .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

#distances h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#distances h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#distances .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #47b2e4;
}

#distances .btn-get-started:hover {
    background: #209dd8;
}

#distances .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#distances .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#distances .btn-watch-video:hover i {
    color: #47b2e4;
}

#distances .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#sessionsGeoMap {
    width: 100%;
    /* height: 80vh; */
    background: #37517e;
    color: #fff;
}

#weatherData {
    /* color: rgba(255, 255, 255, 0.6); */
    /* margin-bottom: 50px; */
    /* font-size: 24px; */
    font-family: "Jost", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

/* .login .test {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.login a,
.login a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.login a i,
.login a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.login a:hover,
.login .active,
.login .active:focus,
.login li:hover>a {
    color: #47b2e4;
} */


@media (max-width: 991px) {
    #distances {
        height: 100vh;
        text-align: center;
    }

    #distances .animated {
        -webkit-animation: none;
        animation: none;
    }

    #distances .distances-img {
        text-align: center;
    }

    #distances .distances-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #distances h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #distances h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #distances .distances-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #distances .distances-img img {
        width: 80%;
    }

    #distances .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.login {
    padding: 15px 0;
    background: #37517e;
}

.login ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.login li {
    position: relative;
}

.login a,
.login a:focus {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.login a i,
.login a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.login a:hover,
.login .active,
.login .active:focus,
.login li:hover>a {
    color: #47b2e4;
}

.login .test,
.login .test:focus {
    padding: 8px 20px;
    /* margin-left: 30px; */
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.login .test:hover,
.login .test:focus:hover {
    color: #fff;
    background: #31a9e1;
}

.login .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.login .dropdown ul li {
    min-width: 200px;
}

.login .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.login .dropdown ul a i {
    font-size: 12px;
}

.login .dropdown ul a:hover,
.login .dropdown ul .active:hover,
.login .dropdown ul li:hover>a {
    color: #47b2e4;
}

.login .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.login .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.login .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .login .dropdown .dropdown ul {
        left: -90%;
    }

    .login .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .login ul {
        display: none;
    }
}

.login-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.login-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.login-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.login-mobile a,
.login-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37517e;
}

.login-mobile a:hover,
.login-mobile .active,
.login-mobile li:hover>a {
    color: #47b2e4;
}

.login-mobile .test,
.login-mobile .test:focus {
    margin: 15px;
    color: #37517e;
}

.login-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.login-mobile .dropdown ul li {
    min-width: 200px;
}

.login-mobile .dropdown ul a {
    padding: 10px 20px;
}

.login-mobile .dropdown ul a i {
    font-size: 12px;
}

.login-mobile .dropdown ul a:hover,
.login-mobile .dropdown ul .active:hover,
.login-mobile .dropdown ul li:hover>a {
    color: #47b2e4;
}

.login-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Tables Stuff
--------------------------------------------------------------*/

.table-responsive {
    display: block !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}