select {
    min-width: 300px;
}

#elementors-fonts select[multiple][name*="elementors_fonts_page"] {
    width: 100%;
    height: 250px;
}
#elementors-fonts ul li {
    list-style: disc;
    margin: 0px 10px;
}
#themes-fonts .current-font {
    color: green;
}
#themes-fonts .warning {
    color: orange;
}

#wpcontent:has(#support main)
{
    background-color: #008b7a;
}
#support > h2 {
    color: white;
}
#support main {
    display: flex;
    justify-content: center;
    /* align-items: flex-start; */
    flex-direction: row;
    color: white;
}
#support main section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    color: black;
    min-height: 100%;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #00000030;
    padding: 25px;
}
#support main section h2 {
    margin-top: 0px;
}
#support main section.about-section {
    width: 30%;
}
#support main section.feed-section {
    width: 70%;
}
#support main section.feed-section .feed-section-inner {
    height: 100%;
    align-self: flex-start;
    width: 100%;
}
#support main section.feed-section .all-news {
    overflow-y: auto;
    height: 300px;
    background-color: #008b7b4a;
    padding: 4px 16px;
    border-radius: 10px;
}
#support main section.feed-section .all-news .news {
    width: 100%;
}
#support main section.feed-section .all-news .news > div {
    padding: 10px;
    border-radius: 5px;
    color: white;
    margin: 15px 0px;
    box-shadow: 0 0 10px 0 #00000030;
    background-color: #1d2327;
}
#support main section.feed-section .all-news .news > div h1 {
    color: white;
}
#support main section.feed-section .all-news .news .news-updated {
    background-color: green;
}
#support main section.feed-section .all-news .news .news-notice {
    background-color: red;
}
#support main section.feed-section .all-news .news .news-warning {
    background-color: orange;
}
#support main section.community-section {
    width: 100%;
}
@media(max-width: 767px) {
    #support main {
        flex-direction: column;
    }
    #support.wrap main section {
        width: 100%;
    }
}