.information-card {
    background-color: #000;
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.card-disclaimer, .card-terms {
    margin-top: 20px;
}
.img {
    width: 90px;
    /*height: 90px;*/
    border-radius: 8px;
    background-color: #FFF;
}

.gap {
    gap: 10px
}

.title-card {
    background-color: #294a2b;
    padding: 5px;
    border-radius: 4px;
    color: #20B038;
    gap: 2px;
    min-height: 45px;
}

.fsemibold {
    font-size: 10px;
    font-weight: 400;
}

.title {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	width: 100%;
}

.company-name {
    text-transform: capitalize;
    font-size: 14px;
    color: #EBEBF599;
}

.description {
    color: #EBEBF599;
    font-size: 12px;
    margin-bottom: 0;
}

.amount-card {
    background-color: linear-gradient(#180000, #170000, #150000, #120000, #000000);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 20px;

}
.amount-card p {
	font-size: 14px;
	font-weight: 400;
}
.number {
    text-align: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #D5CEA3;
    color: #000;
    font-size: 18px;
}

.card-title {
    text-transform: capitalize;
}

.userid {
    background-color: #294a2b;
    color: #20B038;
    padding: 10px;
    height: 30px;
    gap: 5px;
    border-radius: 4px;
    font-size: 14px;
    text-transform: capitalize;
    align-items: center;
}

.input-container {
    background-color: #1F2228;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #1F2228;

}

.userid-title {
    font-size: 15px;
    font-weight: 400;
    padding-left: 10px;
}

.userid-input {
    outline: none;
    text-align: end;
    font-size: 1rem;
    padding: 0px;
    background-color: #1F2228;
    border: none;
    color: #fff;
    padding-right: 10px;
    font-weight: 500;
}

.input-container.focused {
    border: 1px solid rgb(32, 176, 56);
    /* #20b038 in RGB */
    box-shadow: 0 0 .2rem .2rem rgba(32, 176, 56, 0.25);
    /* semi-transparent green shadow */
}

.userid-message {
    font-size: 11px;
    padding-top: 15px;
    color: hsla(0, 0%, 100%, .7);
}

.btn-container {
    /* margin-right: 6px; */
    margin-bottom: 10px;
    width: 100%;
    background-color: #1F2228;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    text-align: left;
    border: 2px solid #1F2228;
    font-weight: 500;
}

.btn-container:hover {
    border: 2px solid #20B038;
}


.payment-text {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .7) !important;
    text-transform: capitalize;
}

.checkout-container {
	background-color: linear-gradient(#180000, #170000, #150000, #120000, #000000);
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
}
.stripe_payment_func button {
	background: #20B038 !important;
	color: #fff !important;
	font-size: 17px !important;
}
.stripe_payment_func button:hover,
.stripe_payment_func button:focus {
    opacity: 0.8;
}
.checkout-title {
    font-size: 20px;
    padding: 5px;
}

.transform {
    text-transform: capitalize;
}

.checkout-text {
    color: #fff;
    font-size: 13px;
}

.checkout-input {
	width: 100%;
	background-color: #1F2228;
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	padding: 10px;
	height: 40px;
	outline: none;
	text-align: left;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 15px;
	margin-top: 5px;
}
.flex_Custom label {
    color: #D5CEA3;
}

.checkout-input:focus,
.checkbox:focus {
    border: 1px solid rgb(32, 176, 56);
    /* #20b038 in RGB */
    box-shadow: 0 0 .2rem .2rem rgba(32, 176, 56, 0.25);
    /* semi-transparent green shadow */
}

.message-text {
    background-color: #D5CEA3;
    color: #1A120B;
    font-size: 12px;
    padding: 10px;
    border-radius: 4px;
}

.price {
    font-size: 14px;
    color: #D5CEA3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.purchase-btn {
    font-size: 14px;
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    color: #1A120B;
    background-color: #20B038;
    border: none;
    font-weight: 500;
}

.checkbox {
    width: 20px;
    height: 20px;
    accent-color: #20B038;
}

.checkout-labels {
	font-size: 12px;
	color: #EBEBF599;
	text-align: left;
	width: calc(100% - 30px);
}


/* Responsive */
@media (max-width: 576px) {
    .img {
        width: 65px;
        height: 65px;
    }

    .title {
        text-transform: capitalize;
        font-weight: 600;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
.title {
	min-height: inherit;
}
}

@media (min-width: 992px) {}