body {
    color: #2b2b2b;
}

.hidden-text {
    display: none;
}

.qrphbankslogo {
    width: 350px;
}

.title {
    color: #2b2b2b !important;
}

.highlight,
.required,
#capsLockWarning,
a {
    color: #d50000;
}

h6.page {
    color: #D50000;
}

.hr-separator {
    margin-top: 1rem;
    margin-bottom: 0px;
}

img.success {
    width: 85px;
    height: 85px;
}

.label-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 5px;
}

.label-container input[type="checkbox"] {
    margin-right: 5px;
}

.qr-payment {
    background-color: #f9f9f9;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.active .bs-stepper-circle {
    background-color: rgb(223, 1, 1);
}

.errorInputField {
    color: red;
}


input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid gray;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: red;
    border: 2px solid red;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-invisible {
    background-color: transparent;
    border: none;
    padding: 0;
    color: inherit; /* Ensures the text color matches the surrounding text */
    font-size: inherit; /* Matches the text size with surrounding text */
    cursor: pointer; /* Maintains pointer cursor for interactivity */
}

.btn-invisible:hover,
.btn-invisible:focus,
.btn-invisible:active {
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none; /* Removes focus outline */
}

.header-smaller-screen {
    display: block;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



.accordion {
    background-color: #fceded;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.acc-active, .accordion:hover {
    background-color: #fceded;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.acc-active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.qr-code {
    background-color: #FFF;
    margin-bottom: 10px;
    border-radius: 35px;
    display: flex;
    align-items: flex-start;
    height: 220px !important;
    width: 220px !important;
    position: relative;
}

.qrph-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.amount {
    font-weight: bold;
    font-size: 30px;
}

.vh-75 {
    height: 75vh;
}

.vh-70 {
    height: 70vh;
}

.vh-50 {
    height: 50vh;
}


.frmKeyChecks{
    display: none;
}

.frmRequirements {
    position: relative;
}

.paymentMessage,
.valid{
    color: green;
}

.valid::before {
    content: "✔";
    color: green;
    margin-right: 5px;
}

.invalid {
    color: #707070;
}
.invalid::before {
    content: "✘";
    color: #707070;
    margin-right: 5px;
}


textarea{
    resize:none;
}

#referralCode {
    background-color: #d3d3d3;
    font-weight: bold;
    color: #2b2b2b;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
}



@media screen and (min-width: 451px) {
    .header-smaller-screen {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .bs-stepper-header {
        display: none;
    }

    img.success {
        width: 65px;
        height: 65px;
    }

    img.app-small-screen {
        width: 200px;
        height: 50px;
    }

    .frmRequirements.pw-spacer {
        display: none !important;

    }

    .qrphbankslogo {
        width: 250px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .paymentMessage,
    .amount.highlight {
        font-size: 95%;
    }



}



