.no-scroll {
    overflow: hidden;
}
.sips-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}
.sips-overlay[aria-hidden="true"] {
    transition: opacity 1s, z-index 0s 1s;
    /*width: 100vw;*/
    z-index: -1; 
    opacity: 0;
}
.sips-overlay[aria-hidden="false"] {  
    transition: opacity 1s;
    /*width: 100%;*/
    z-index: 10000;  
    opacity: 1; 
}
.sips-agreement {
    opacity: 1;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px;
    background-color: #205786;
    color: #ffffff;
    border-radius: 40px;
    border: 3px solid #86878b;
    font-family: Montserrat, sans-serif;
    box-shadow:
        rgba(0,0,0,.25) 0 54px 55px,
        rgba(0,0,0,.12) 0 -12px 30px,
        rgba(0,0,0,.17) 0 12px 13px,
        rgba(0,0,0,.09) 0 -3px 5px;
}
.sips-agreement h1 {
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 1px;
}
.sips-agreement h2 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 12px;
    letter-spacing: 0;
}
.sips-agreement h3 {
    font-size: 20px;
    font-weight: 300;
    margin-top: 12px;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3em;
}
.sips-agreement p {
    font-size: 16px;
    line-height: 1.3em;
    margin-top: 12px;
    letter-spacing: 0;
}
.sips-agreement .flex-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
}
.sips-agreement button,
.sips-agreement button:not(:hover):not(:active):not(.has-background) {
    background-color: #aacded;
    border: 2px solid #cad0d2;
    border-radius: 30px;
    color: #ffffff;
    font-family: Montserrat, sans-serif;
    width: 165px;
    height: 60px;
    line-height: 1.3em;
    padding: 0;
    letter-spacing: 0;
}