/*******************************************************
				TempBanner Styles
********************************************************/
.temp-banner {
    background: #5BB100;
    width: 100%;
    padding-block: 10px;
}

.temp-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.temp-banner .container::after {
    display: none;
}

.temp-banner .container::before {
    display: none;
}

.temp-banner .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (min-width: 750px) {
    .temp-banner .content {
        flex-direction: row;
    }
}

.temp-banner .main-emoji {
    width: 34px;
    height: 34px;
}

.temp-banner .content :is(strong, p) {
    color: white;
    font-size: 14px;
    margin: 0;
}

.temp-banner .content strong {
    font-weight: 700;
}

.temp-banner .content strong span {
    color: #FFEB99;
}

.temp-banner .specials-emoji {
    font-size: 34px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: fit-content;
    margin: 0;
}

#temp-banner-close {
    width: 25px;
    height: 25px;
    cursor: pointer;
}