#givemodal {
    position: absolute;
    top: 5%;
    max-height: 80%;
}

.modalgive .close {
	position: absolute;
	top: 15px; 
	right: 15px;
	color: #fff;
	text-shadow: none;
	opacity: 0.5;
}

.modalgive .btn, .modalgive .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #17a2b8 !important;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border-radius: 30px;
	margin-top: 10px;
	padding: 6px 20px;
	border: none;
}

.modalgive .btn:hover, .modalgive .btn:focus {
	background: #0e71f1 !important;
	outline: none;
}
.modalgive.btn span {
	margin: 1px 3px 0;
	float: left;
}
.modalgive .btn i {
	margin-left: 1px;
	font-size: 20px;
	float: right;
}

#payForm {
    max-width: 500px;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 40px 0px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;

    .center-container {
        display: grid;
        place-items: center;
        margin: 0;
    }
}

#payForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}

#payForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}

#payForm .form-header .stepIndicator.active {
    font-weight: 600;
}

#payForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}

#payForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}

#payForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}

#payForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}

#payForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}

#payForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}

#payForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}

#payForm .form-header .stepIndicator:last-child:after {
    display: none;
}

#payForm input {
    padding: 15px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}

#payForm input:focus {
    border: 1px solid #009688;
    outline: 0;
}

#payForm input.invalid {
    border: 1px solid #ffaba5;
}

#payForm .step {
    display: none;
}

#payForm .form-footer {
    overflow: auto;
    gap: 20px;
    padding: 10px;
}

#payForm .form-footer button {
    background-color: #009688;
    border: 1px solid #009688 !important;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}

#payForm .form-footer button:hover {
    opacity: 0.8;
}

#payForm .form-footer #prevBtn {
    background-color: #fff;
    color: #009688;
}

.accountstep {
    .container {
        max-width: 900px;
        margin: 0 auto;
    }
    .card-header {
        font-size: 1em;
        white-space: wrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 10px;
        box-sizing: border-box;
    }

    label {
        width: 100%;
    }

    .card-input-element {
        display: none;
    }

    .card-input {
        width: 150px;
        margin-bottom: 10px;
        padding: 0px;
    }

    .card-input:hover {
        cursor: pointer;
    }

    .card-input-element:checked+.card-input {
        box-shadow: 0 0 1px 1px #2ecc71;
    }
}

.inputdiv {
    padding: 0px 20px;
}