.contestGameBanner {
    background-color: #EDF5F6;
    border: 1px solid #647C99;
    border-width: 1px 1px 1px 10px;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.contestGameBanner-subtitle span{
    font-family: Caveat;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #98252B;
    background-color: rgba(255, 255, 255, .8);
    transform: rotate(-6deg);
    display: block;
    padding: 4px;
    white-space: nowrap;
}

.contestGameBanner-content {
    flex-grow: 1;
}

.contestGameBanner-content-title, .contestGameBanner-content-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #4A3428;
    margin: 0;
}
.contestGameBanner-content-title {
    font-weight: 700;
}

.contestGameBanner-info {
    position: relative;
    width: 24px;
    cursor: help;
}
.contestGameBanner-info span{
    display: none;
    background: #001e21;
    border-radius: 3px;
    color: #fff;
    font-weight: 400;
    padding: 3px 5px;
    position: absolute;
    text-align: left;
    transform: translateY(calc(-100% - 34px)) translateX(calc(-100% + 30px));
    max-width: 300px;
    width: max-content;
    font-size: 14px;
}

.contestGameBanner-info span::after {
    background: transparent;
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: -19px;
    right: 9px;
    border: 10px solid transparent;
    border-top: #001e21 9px solid;
}

.contestGameBanner-info:hover span{
    display: block;
}

/*$screen-xs*/
@media screen and (max-width: 540px) {
    .contestGameBanner {
    }
    .contestGameBanner-content-title, .contestGameBanner-content-description, .contestGameBanner-info span {
        font-size: 13px;
        line-height: 19.5px;
    }
}