.sidebar {
    width: 32%;
    min-width: 330px;
    max-width: 350px;
    position: -webkit-sticky;
    position: sticky;
    height: 653px;
    height: -webkit-fit-content;
    height: fit-content;
    height: -moz-fit-content;
    top: 20px;
}

.banner {
    width: 100%;
    background-color: #F8F5F5;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


.header-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px;
    background-color: #E27D60;
    border-radius: 8px 8px 0 0;
}

.header-banner p {
    font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

.banner-sites-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}

.banner-site {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border-bottom: 1px solid #E0DCDC;
    padding: 10px;
}

.banner-site:last-child {
    border-bottom: none;
}

.banner-site p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.banner-site a span {
    font-size: 14px;
}

.banner-site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
}

.banner-site-img {
    width: 70px;
    height: 47px;
    margin-right: 15px;
}

.banner-site-brand {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.banner-site .button {
    width: 83px;
    border-radius: 4px;
    padding: 10px;
    margin: 0;
}

@media(max-width: 1000px) {
    .sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media(max-width: 768px) {    
    .banner {
        padding: 0;
        -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.161);
                box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.161);
    }

    .header-banner p {
        font-size: 18px;
        padding: 7px;
    }
}

@media(max-width: 560px) {
    .sidebar {
        width: 100%;
        min-width: 100%;
    }

    .banner-site-img {
        display: none;
    }
}