.side-bar-container {
    display: grid;
    bottom: 12rem;
    right: 0rem;
    gap: 0.5rem;
    position: fixed;
    justify-items: self-end;
    z-index: 1000 !important;
}

.btn-side-bar {
    background: #18BDE6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-align: right;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    min-height: 3.5rem;
    width: 18rem;
}

    .btn-side-bar:hover {
        color: #002239;
    }

.banner-mobile-side-bar {
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 0.2rem !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 481px) {
    .side-bar-container {
        display: none;
    }

    .btn-side-bar {
        width: auto;
    }

    .side-bar-mobile {
        position: fixed;
        width: 100%;
        bottom: 0;
        margin: 0;
        padding: 0.5rem;
        z-index: 1000 !important;
    }


        .side-bar-mobile .col-4 {
            margin: 0;
            padding: 0.1rem;
        }

    .btn-side-bar-mobile {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 482px) and (max-width: 980px) {

    .side-bar-container {
        bottom: 28rem;
    }

    .btn-side-bar {
        width: auto;
    }

    .side-bar-mobile {
        display: none !important;
    }
}

@media(min-width:961px) {
    .side-bar-mobile {
        display: none !important;
    }
}
