.cardtype {
    width: auto !important;
    margin-bottom: 7px;
    padding: 7px; 
    background-image: linear-gradient(to right, rgb(230, 218, 196), rgb(206, 189, 206));
}
.cardtype img {
    opacity: .5;
    display: inline-block;
    padding: 1px 3px;
}
.cardInvalid .ccnumber,
.cvvInvalid .cvv {
    border: 2px solid red;
}
.position-relative {
    position: relative;
}
.cardNumber i {
    top: 45px;
}
.paymentCardtype {
    align-items: center;
    display: flex;
}
.paymentCardtype label {
    display: contents;
}
.inputBorderColor:hover {
    border-color: var(--primaryColor);
    border-radius: 5px;
} 
.inputBorderColor:focus {
    border-radius: 5px;
    font-size: 25px;
    padding: 6px;
}
.selectBorderColor:hover {
    border-color: var(--primaryColor);
    border-radius: 5px;
}
.form-floating > .form-control::placeholder {
    color: revert;
}
.form-floating > .form-control:not(:focus)::placeholder {
    color: transparent;
}
.inputBorderColor:hover~label,.selectBorderColor:hover~label {
  color: var(--primaryColor);
}
.inputBorderColor:focus~label,.selectBorderColor:focus~label {
  color: var(--primaryColor);
}
.btn-padding {
    padding: 10px 25px !important;
}
.fade-in-text {
    animation: fadeIn 3s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        animation-timing-function: ease;
    }
    to {
        opacity: 1;
        animation-timing-function: ease;
    }
}
#footer {
    background: #e9edf2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 2rem;
    font-size: 18px;
    transition: 0.5s;
}
.link {
    text-decoration: none !important;
}
.fs-100 {
    font-size: 100px;
}
.text-steelBlue {
    color: #37b0e5 !important;
  }
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1061;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
}

.loader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}

.loader:before,
.loader:after {
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
}

.loader:before {
    animation: ball1 3s infinite;
    background-color: #ccc;
    box-shadow: 30px 0 0 #ccc;
    margin-bottom: 10px;
}

.loader:after {
    animation: ball2 3s infinite;
    background-color: #ccc;
    box-shadow: 30px 0 0 #ccc;
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }

    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }

    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
	#footer {
		font-size: 15px;;
	}
}

@media (max-width: 768px) {
	#footer {
		font-size: 12px;;
	}
}

@media (max-width: 480px) {
	#footer {
		font-size: 7px;;
	}
}

/* Styles to add '*' for required elements */
.required:after{
    content: " *";
    color: red;
}