
.banner-container {
    width: 100%;
    height: 100px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 100px;
    padding: 1px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.color-toggle-square {
    position: absolute;
    top: -1px;
    left: 0;
    width: 80px;
    height: 103px;
    max-height: 135px;
    background-color: #2d6796;
    overflow-y: hidden;
}

.image-container {
    position: absolute;
    top: 49%;
    left: 60%;
    transform: translate(-50%, -55%);
    width: 70%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.triangle {
    border-top: 0 solid transparent;
    border-left: 59px solid transparent;
    border-right: 59px solid transparent;
    border-bottom: 40px solid #2d6796;
    height: 0;
    width: 0;
    position: absolute;
    top: calc(50%);
    left: 98%;
    transform: translate(-50%, -50%) rotate(90deg);
}

#info_text{
    margin: 0;
}

.close-button {
    position: absolute;
    top: 3px;
    right: 10px;
    cursor: pointer;
    z-index: 3;
}

.banner h3, .banner p{
    position: relative;
    z-index: 4;
    text-align: start;
}
.banner p {
    font-size:14px;
    padding-left: 0;
    margin-right: 25px;
}

.banner h3{
    color: #2d6796;
    margin-top: 0;
}

.text_wrap{
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-banner{
    overflow:hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dateBanner{
    font-size:11px;
    margin: 0;
    color: grey;
}

.banner_display{
    display: inline;
}

.banner_space{
    padding-right: 50px;
}

