.telegram {
    margin: 10px;
    font-size: 20px;
    text-align: center;
}

.banner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.banner-wrapper>a {
    margin-bottom: 10px;
}

.banner-wrapper>a>img {
    display: block;
    width: 100%;
}

.static-banner-wrapper {
    max-width: 900px;
    bottom: 0;
    left: 50%;
    position: fixed;
    transform: translate(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.static-banner-wrapper>.static-banner-container>.btn-close-banner {
    font-size: 13px;
    background-color: black;
    color: red;
    border-radius: 0;
    cursor: pointer;
    padding: 3px 6px;
}

.static-banner-wrapper>.static-banner-container>a>img {
    width: 100%;
}

@media screen and (max-width: 600px) {
    .static-banner-wrapper {
        max-width: 100%;
        min-width: 100%;
    }
}