body,
html {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.debug {
    border: solid;
}

/**
 * Specifying the max-width to 900px; so that, the Banner is properly
 * proportional to the design accustomed for the Customer.
*/
@media (min-width: 1200px) {
    .container {
        max-width: 800px;
    }
}

/**
 * Background Color for the Radio Button
 * - This is to ensure that the color for the Preference Page are consistent.
*/
.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-color: #1167b1;
    border-radius: 50%;
}

.custom-control-label::before {
    border: 1px solid black;
}

#pender_dialogue {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(50, 115, 220, 0.2);
    z-index: 9999;
    display: none;
}

#pender_dialogue::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 9999;
    width: 100px;
    height: 100px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.memberLevelHeader {
    background-color:#e3e3e3;
    padding-left: 5px;
    font-size:120%;
}

.customCursor {
    cursor:pointer;
}