﻿
h1 {
    color: #686868;
}

h2 {
    color: #2b6193;
}

h3 {
    color: #7c7c7c;
}


.page-header h1 {
    text-align: right;
    letter-spacing: 9px;
    margin-top: -10px;
}

.tenant-account-number {
    font-size: 24px;
    color: #6e86a8;
}

.container {
    max-width: 600px;
}



/* ------------------- */
/* Page Header */

.page-header {
    margin-bottom: 30px;
    background-color: #fbfdff;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #2b6193b3;
    background: linear-gradient(0deg, rgb(255 255 255) 0%, rgb(231 241 255) 100%);
}

    .page-header .logo {
        max-width: 400px;
        margin-bottom: 10px;
    }




/* ------------------- */
/* Payment Methods */


.payment-methods{
    margin-bottom:30px;
}

.no-cards-on-file {
    color: #6f6f6f;
    border: 1px solid #d1d1d1;
    margin-bottom: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center; 
    justify-content: center;
    min-height: 102px;
    padding:20px;
}

.no-cards-on-file i {
    font-size:30px;

}


.card-on-file {
    border: 1px solid #d1d1d1;
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    display: flex;
    min-height:102px;
    
}

.card-on-file-brand {
    margin-right: 10px;
    align-content: center
}

    .card-on-file-brand i {
        font-size: 40px;
        color: #21477e;
    }

    .card-on-file-brand img {
        /*border: 1px solid #929292;*/
        border-radius: 10px;
    }

.card-on-file-details {
    display:flex;
    flex-flow:column;
    justify-content:center;
    margin-top:-5px;

}

.card-on-file-actions {
    position: absolute;
    top: 10px;
    right: 10px;
}

.card-on-file-action {
    cursor: pointer;
    color: #21477e;
}

    .card-on-file-action:hover {
        color: #3e8afa
    }

.card-on-file-detail-primary {
    font-weight: bold;
    color: #4d4d4d;
}

.card-on-file-detail-secondary {
    color: #626262;
}

.card-on-file-none .card-on-file-detail-primary {
    font-size: 24px;
    font-weight: normal;
    margin-left: 12px;
}

.card-on-file-none i {
    position: relative;
    top: 4px;
    font-size: 31px;
}
/* ------------------- */
/* Add Card */
.add-card {
    border: 1px solid #d1d1d1;
    padding: 20px;
    border-radius: 10px;
}







/* ------------------- */
/* Contact Info */

.contact-info{
    margin-top:30px;
    /*font-size:1px;*/
}









/* ------------------- */
/* Other */







.form-section-header {
    font-size: 15px;
    font-weight: 500;
    /* text-decoration: underline; */
    border-bottom: 1px solid #575757;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #4a4a4a;
}



.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}

    .loading-overlay .spinner {
        text-align: center;
        background-color: white;
        padding: 10px;
        padding-top: 20px;
        border-radius: 20px;
        min-width: 200px;
    }

.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.message-box-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

input::placeholder {
    color: gray;
    font-style: italic;
    font-size: 14px;
}

.label-commentary {
    color: #909090;
    font-size: 13px;
}

.info-message {
    background-color: #2b6193;
    color: #ffffffdb;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-message i{
    font-size:20px;
}