html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #DDECEF;
}

/*---------------------------------------------------------------------------------------*/

.page {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.c-button-orange {
    border-radius: 8px;
    padding: 8px 24px;
    background-color: #FFAD01;
    margin-top: 15px;
    width: 100%;
    font-size: 30px;
    font-weight: 700;
}

    .c-button-orange:hover {
        background-color: #e99d00;
    }

.c-button-orange-sm {
    border-radius: 8px;
    padding: 4px 10px;
    background-color: #ffcc33;
    font-size: 20px;
    font-weight: 700;
}

    .c-button-orange-sm i {
        margin: 0 5px 0 0;
    }

    .c-button-orange-sm:hover {
        background-color: #eebb22;
    }

.c-button-green-sm {
    border-radius: 8px;
    padding: 4px 10px;
    background-color: #b8e789;
    font-size: 20px;
    font-weight: 700;
}

    .c-button-green-sm i {
        margin: 0 5px 0 0;
    }

    .c-button-green-sm:hover {
        background-color: #b8e789;
    }

.c-button-white {
    border-radius: 8px;
    padding: 8px 24px;
    background-color: #ffffff;
    margin-top: 15px;
    border: 2px solid #9FA8C6;
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    color: #05164C;
}

    .c-button-white:hover {
        background-color: #f0f0f0;
        border: 2px solid #9FA8C6;
    }


