
#hint_container {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 101;
    background-color: rgb(0, 0, 0, 0.72);
}
#hint_content {
    height: 90%;
    width: 70%;
    margin: auto;
    background-color: white;
}
.dark #hint_content {
    background-color: black;
}
#new_feature_btn a {
    color: #a0421d;
    background-color: #ffcf89;
    border-radius: 5px;
}
#navbar #new_feature_btn > a:hover,
#navbar #new_feature_btn li > a:hover{
    color: white;
    background-color: #f57c00;
}
#navbar .sub_items ul.visible_top {
    visibility: visible;
    z-index: 200;
}
#new_feature_content {
    display: none;
    z-index: 1;
}
#new_feature_content > div {
    display: flex;
    flex-direction: row;
    text-align: center;
    line-height: 2em;
    background-color: #ffcf89;
    color: #a0421d;
}
#new_feature_content > div .content {
    flex-grow: 1;
}
#new_feature_content > div .close {
    cursor: pointer;
    padding: 0 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #eab971;
}
#new_feature_content > div .close:hover {
    font-size: 1.05em;
}
#new_feature_content > div .content a {
    padding: 4px;
    color: #e53935;
}
#new_feature_content > div .content a:hover {
    background-color: #e6ae5c;
}
