#disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5%;
    font-family: Helvetica;
}

.disclaimer {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 101;

    font-size: 16px;
    line-height: 24px;
    color: #00226B;

    overflow: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.disclaimer__inner {
    height: 100%;
    /* overflow-y: auto; */
    padding: 60px 0;
}

.disclaimer__header {
    position: relative;
    margin-bottom: 40px;
    padding: 0 60px;

    font-size: 36px;
    line-height: 42px;
}

.disclaimer__header::after {
    position: absolute;
    content: '';
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
    z-index: 1;
}

.disclaimer__body {
    height: 90%;
    padding: 30px 60px 90px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.disclaimer__body-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

.disclaimer__body p {
    margin-bottom: 10px;
}

.disclaimer__body .table {
    width: 100%;
    margin: 40px 0;
}

.disclaimer__body .table tr:nth-child(1) { font-weight: 600; }
.disclaimer__body .table tr:nth-child(2) { font-weight: 600; }

.disclaimer__body .table td {
    border: 1px solid #cecece;
    padding: 10px;
}

.disclaimer__body .table td:first-child {
    width: 40%;
}

.disclaimer__buttons {
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 60px;
    padding-top: 20px;
    background-color: white;
    font-family: "Geometria-Regular";
    /* background-image: linear-gradient(to bottom, transparent, white); */
}

.disclaimer__buttons--gradient {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    pointer-events: none;
}

.disclaimer__buttons button,
.disclaimer__buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 42px;
    margin: 0 10px;
    color: #00226B;
    text-decoration: none;
    border: 2px solid #00226B;
    background-color: transparent;

    transition: opacity 0.5s;
}

.disclaimer__buttons .agree {
    font-weight: 600;
    color: white;
    background-color: #00226B;
}

.disclaimer__buttons .agree:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

@media screen and (max-width: 480px) {
    .disclaimer__header {
        padding: 0 20px;
    }

    .disclaimer__body {
        padding: 30px 20px 90px;
    }
}