.widget-nav li:hover{
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.text-container{
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    width: 100%;
}

.close-btn {
    width: 16px;
    height: 16px;
    margin: 8px;
    display: block;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #ff0000;
    text-decoration: none;
    cursor: pointer;
}

.text-body{
    display: block;
}

.header-navigation .nav-overlay.active{
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 600px) {
    .popup-content {
        width: 90%;
    }
}
