
.fixed-brand-overlay {
    display:none;
    position: fixed;
    overflow: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}
.fixed-brand-overlay.fixed-overlay__brand.visible {
    display: block;
}

.fixed-overlay__brand {
    text-align: center;
    white-space: nowrap;
}

.fixed-overlay__brand::after {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
    content: '';
}

.brand {
    display: inline-block;
    vertical-align: middle;
    background:#fff;
}

.brand_container {
    position: relative;
    margin: 50px;
    text-align: left;
    white-space: normal;
    background-color: #fff;    
    color: #000;
    width: 650px;
}
.brand_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

@media (max-width: 700px) {
    .brand_container {
        width: 80vw;
    }
    .brand_block  {
        display: flex;
        flex-direction: column;
    }
}
.brand .green-gradient {
    background: linear-gradient(90deg, rgba(62, 125, 50, 1) 0%, rgba(74, 143, 57, 1) 35%, rgba(87, 163, 66, 1) 100%);
    color: #ffffff;
}
.brand .green-gradient:hover {
    background: linear-gradient(90deg, rgba(62, 125, 50, 1) 0%, rgba(74, 143, 57, 1) 35%, rgba(87, 163, 66, 1) 80%);
    color: #ffffff;
}
svg.brand-close {
    position: absolute;
    top: -30px;
    right: -30px;
    cursor: pointer;
}