/* Modal positioning */
#splash_modal .modal-dialog {
    width: 600px;
    max-width: calc(100% - 30px);
    margin: 30px auto;
}

/* Modal itself */
#splash_modal .modal-content {
    background: #fff;
    border: 1px solid #002F6C;
    border-radius: 0;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.45);
    padding: 10px 16px 17px;
}

/* Header */
.welcome-header {
    position: relative;
    min-height: 58px;
}

.roseville-logo {
    position: absolute;
    left: 0;
    top: 5px;
    width: 70px;
    height: auto;
}

.welcome-title {
    text-align: center;
    color: #002F6C;
    font-size: 23px;
    line-height: 27px;
    font-weight: bold;
}


/* Subtitle */

.welcome-subtitle {
    text-align: center;
    color: #7D9BC1;
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    margin: 4px 0 12px;
}


/* Information box */

.beta-info {
    display: flex;
    align-items: center;

    background: #EAF1F8;
    border: 1px solid #7D9BC1;
    border-radius: 8px;

    padding: 8px 10px;
    margin-bottom: 12px;
}

.info-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;
    line-height: 42px;

    border-radius: 50%;

    background: #009CDE;
    color: #fff;

    text-align: center;
    font-size: 29px;
    font-family: Arial, sans-serif;
    font-weight: bold;

    margin-right: 12px;
}

.info-text {
    color: #002F6C;
    font-size: 13px;
    line-height: 18px;
}


/* Feedback */

.feedback-text {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    margin: 10px 30px 13px;
    color: #002F6C;
}

.feedback-text strong {
    color: #002F6C;
}


/* Thank you */

.thank-you {
    text-align: center;
    color: #002F6C;
    font-size: 14px;
    line-height: 19px;
    font-style: italic;
    margin-bottom: 14px;
}


/* Checkbox */

.agreement {
    text-align: center;
    margin-bottom: 14px;
}

.agreement label {
    display: inline-flex;
    align-items: flex-start;
    text-align: left;

    color: #002F6C;

    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    cursor: pointer;
}

.agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    flex-shrink: 0;
}

/* Continue button */

.continue-btn {
    display: block;
    width: 250px;
    height: 30px;

    margin: 0 auto;
    padding: 3px 10px;

    background: #7D9BC1;
    border: 1px solid #7D9BC1;
    border-radius: 3px;

    color: #fff;
    font-size: 13px;
    line-height: 22px;

    cursor: pointer;

    transition: opacity 0.15s ease;
}

.continue-btn:hover,
.continue-btn:focus {
    background: #7D9BC1;
    border-color: #7D9BC1;
    color: #fff;
    opacity: 0.85;
    outline: none;
}

.continue-btn:active {
    background: #7D9BC1;
    border-color: #7D9BC1;
    color: #fff;
    opacity: 0.75;
}

.continue-btn:disabled {
    background: #7D9BC1;
    border-color: #7D9BC1;
    color: #fff;
    opacity: 0.65;
    cursor: not-allowed;
}


/* Responsive */
@media (max-width: 600px) {

    #splash_modal .modal-dialog {
        width: auto;
        max-width: calc(100% - 20px);
        margin: 10px auto;
    }

    #splash_modal .modal-content {
        padding: 10px;
    }

    .welcome-title {
        font-size: 20px;
        line-height: 24px;
    }

    .welcome-subtitle {
        font-size: 14px;
        line-height: 18px;
    }

    .roseville-logo {
        width: 60px;
    }

    .beta-info {
        align-items: flex-start;
    }

    .info-text {
        font-size: 12px;
        line-height: 17px;
    }

    .feedback-text {
        font-size: 12px;
        line-height: 17px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .thank-you {
        font-size: 13px;
        line-height: 18px;
    }

    .agreement label {
        font-size: 11px;
        line-height: 15px;
    }

    .agreement label br {
        display: none;
    }

    .continue-btn {
        width: 80%;
        max-width: 250px;
        font-size: 13px;
    }
}