
.fixed-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-overlay.visible {
    display:block;
}
.fixed-overlay__coruption {
    text-align: center;
    white-space: nowrap;
}

.fixed-overlay__coruption::after {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
    content: '';
}

.coruption {
    display: inline-block;
    vertical-align: middle;
    background:#fff;
}

.coruption_container {
    position: relative;
    margin: 50px;
    text-align: left;
    white-space: normal;
    background-color: #fff;    
    color: #000;
    width: 650px;
}
.coruption_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}
.coruption_block--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.coruption_block--icon img {
    width: 180px;
}
.coruption_block--text {
    font-size: 1rem;
    font-weight: 300;
}
@media (max-width: 700px) {
    .coruption_container {
        width: 80vw;
    }
    .coruption_block  {
        display: flex;
        flex-direction: column;
    }
    .coruption_block--icon {
        display: none;
    }
    .coruption_block--text {
        font-size: 1rem;
        font-weight: 300;
    }
}
.coruption .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;
}
.coruption .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.coruption-close {
    position: absolute;
    top: -30px;
    right: -30px;
}