html {
	height: 100%;
}

body {
    background-image:url('./img/newBG2.png');
    background-size: 100% 100%; 
    background-position: center;
    height: 100%;
}

#poweredBy img {
    position: absolute;
    bottom: 25%;
    right: 0;
}


@media (max-width: 768px) {
    #poweredBy img {
        height: 4%;;
        position: absolute;
        bottom: 31%;
        right: -12px; 
        /* left:0; */
    }
}
.pac-container {
    background-color: #FFF;
    z-index: 9999!important;
    position: fixed;
    display: inline-block;
    float: left;
}

#stepperForm {
    height: 500px;
    overflow: auto;
}

.pay-btn {
    width: 65px;
}

.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-bottom: solid 1px lightgray;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.stepper-item::before, .stepper-item::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #dcdcdc;
    width: 100%;
    z-index: -1;
}
.stepper-item::after {
    left: 50%;
}
.stepper-item::before {
    right: 50%;
}
.stepper-item:first-child::before, .stepper-item:last-child::after {
    content: none;
}
.stepper-item .step-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dcdcdc;
    color: white;
}
.stepper-item.active .step-counter {
    background-color: #007bff;
}
.stepper-item .step-name {
    margin-top: 10px;
    text-align: center;
}
.stepper-item.active .step-name {
    font-weight: bold;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.close-btn-div {
    z-index: 1;
}

.user-height {
    height: 759px;
}

.card-image {
    width: 100%;
}

.card-size {
    width: 18rem;
}

.modal-body {
    margin-bottom: 3rem;
}

.modal-content {
	border-radius: 0!important;
}
 
#cardImage{
	margin-top: 12%;
} 

@media (max-width: 991px) {
    .modal-content {
        flex-direction: column!important;
    }

    #stepperForm {
        height: auto!important;
    }

    .card-image {
        width: 100%;
    }

    .card-size {
        width: 100%!important;
    }
}

@media (max-width: 576px) {
    
    .user-height {
        height: 800px;
    }
}

#cardNumber.invalid {
	border: red solid 1px;
}

#cardVerficationCode.invalid {
	border: red solid 1px;
}

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 9999; 
    display: none; 
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
