
/* Start Payment Processing View*/

body.customerportal {
    font-family: 'Poppins', sans-serif;
    margin: auto;
}

.payment-processing .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90vh;
    width: 85%;
    margin: 0 auto;
}

.payment-processing h1.processing-header, p.text-responsive {
    font-weight: 400;
    font-size: 30px;
    display: table;
    text-align: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
    text-rendering: optimizeLegibility;
    color: #283533;
    font-weight: 600;
    font-style: normal;
    font-family: "DIN Next",sans-serif;
}

p.text-responsive {
    font-size: 15vh;
    vertical-align: middle;
    height: 97vh;
    display: table-cell;
    width: 618vh;
    text-align: left;
}

p.text-error {
    color: #dc3545;
    font-weight: normal;
}

.payment-processing h1.processing-header:after, p.payment-processing:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026";
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

/* End Payment Processing View */


/* Start Realex Payment Response  View*/

.realex-payment-response .hidden {
    display: none;
}

.realex-payment-response .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.realex-payment-response .btn-container .btn-realex-pay {
    font-size: 16px;
    padding: 12px 26px 10px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    user-select: none;
    width: 350px;
    color: #fff;
    border-width: 3px;
    border-color: #004457;
    background-color: #004457;
    border-radius: 3px !important;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    display: inline-block;
}

.realex-payment-response .btn-container .btn-realex-pay:hover {
    border-color: #001c24;
    background-color: #001c24;
}

/* End Realex Payment Response  View*/



/* Start Payment Portal Index View */

.payment-portal content {
    background-color: white;
    border-radius: 15px;
    min-width: 800px;
    width: 80%;
    min-height: 600px;
    height: auto;
    box-shadow: 0 15px 30px -5px rgba(50, 50, 100, .25), 0 5px 15px -5px rgba(0, 0, 0, .30), 0 -5px 15px -5px rgba(0,0,0,.025);
    margin: 10% auto;
    padding: 2.5%;
    transition: 0.5s;
    display: block;
}

.payment-portal content:hover {
        box-shadow: 0 15px 30px -5px rgba(50, 50, 100, .50), 0 5px 15px -5px rgba(0, 0, 0, .60), 0 -5px 15px -5px rgba(0,0,0,.050);
}

.payment-portal {
    --amcs-blue: rgb(0, 68, 87);
    --amcs-green: rgb(82, 174, 50);
    --off-white: rgb(246, 249, 252);
    --platform-button-size: 200px;
    font-family: 'Roboto', sans-serif;
}

.payment-portal content .cardTitle {
    padding: 10px 10px 50px 10px;
}

.payment-portal content .cardTitle > * {
    vertical-align: middle;
}

.payment-portal content .cardBody {
        padding: 100px;
        text-align: center;
}

.payment-portal .grow {
    transition: all .5s ease-in-out;
}

.payment-portal .amcsLogo.container {
    height: 75px;
}

.payment-portal .amcsLogo.container path {
    fill: var(--amcs-green);
}

.payment-portal .amcsLogo.container path.letter {
    fill: var(--amcs-blue);
}

.payment-portal h1 {
    text-decoration: none;
    color: var(--amcs-green);
    transition: 0.5s;
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

/* End Payment Portal Index View */