
/* Active nav item indicator */
.navbar-main .navbar-nav > li.active > a,
.navbar-main .navbar-nav > li.active > a:hover,
.navbar-main .navbar-nav > li.active > a:focus {
  color: #00b288 !important;
  background-color: transparent !important;
  border-bottom: 3px solid #00b288;
}

/* Dropdown parent active state */
.navbar-main .navbar-nav > li.active.dropdown > a {
  color: #00b288 !important;
}

#popup-container {
    position: fixed;
    top: 21%;
    left: 2%;
    right: -2%;
    z-index: 1000;
}
#popup-container.active {
    position: fixed;
    left: 0;
    top: 25%;
    right: 0;
    z-index: 1000;
}
#popup-content {
    background: linear-gradient(#5d89b4,#4d79a4,#2d5984);
    padding: 0;
    margin: 0;
    border-radius: 10px;
    text-align: left;
    width: 95%;
    height: 200%;
    border: solid 5px #d2deea;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, .25);
}
#popup-content .text-white {
    font-weight: bold;
    font-size: 15px;
    color: white;
}
#popup-content .text-yellow {
    font-weight: normal;
    font-size: 15px;
    color: yellow;
}
#popup-close {
    cursor: pointer;
    padding-left: 10px;
}
.popup-hidden {
    display: none !important;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
    #popup-container {
    position: fixed;
    left: 1%;
    top: 33%;
    right: 0;
    z-index: 1000;
}
#popup-container.active {
    position: fixed;
    left: 0;
    top: 33%;
    right: 0;
    z-index: 1000;
}

}

@media (min-width: 992px) {
    #popup-container {
        position: fixed;
        top: 220px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 50%;
    }
    #popup-container.active {
        position: fixed;
        top: 220px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 50%;
    }
    #popup-content {
    background: linear-gradient(#5d89b4,#4d79a4,#2d5984);
        padding: 0;
        margin: 0;
        border-radius: 10px;
        text-align: left;
        width: 100%;
        height: auto;
        border: solid 5px #d2deea;
        box-shadow: inset 0px 0px 4px rgba(0, 0, 0, .25);
    }
}
