/* Vendor Registration Form */

#vendor-reg-form {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#vendor-reg-form .vendor-row {
    margin-bottom: 20px;
}

#vendor-reg-form .vendor-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

#vendor-reg-form .vendor-row input[type="text"],
#vendor-reg-form .vendor-row input[type="email"],
#vendor-reg-form .vendor-row textarea,
#vendor-reg-form .vendor-row select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
}

#vendor-reg-form .vendor-submit-row {
    text-align: center;
}

#vendor-reg-form .vendor-pay-btn {
    background-color: #007cba;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#vendor-reg-form .vendor-pay-btn:hover {
    background-color: #005f8d;
}

/* Toast on Details Page */

#simpleToast.error {
    background: #dc4c64;
}

#simpleToast.success {
    background: #14a44d;
}

#simpleToast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    left: 50%;
    bottom: 30px;
    font-family: monospace;
    display: inline-flex;
    line-height: 12px;
    z-index: 9999999999;
}

#simpleToast span {
    margin-left: 12px;
    margin-top: 2px;
}

#simpleToast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.payment_box.payment_method_bank_alfalah_gateway{
	display: block !important;
}

li.payment_method_bank_alfalah_gateway > label{
	display: block !important;
}
.payment_box.payment_method_bank_alfalah_gateway{
	display: none !important;
}

.fusion-woo-checkout-payment-tb .woocommerce-checkout-payment ul.wc_payment_methods li.payment_method_bank_alfalah_gateway>label:before{
	top: 40%;
}

.fusion-woo-checkout-payment-tb .woocommerce-checkout-payment ul.wc_payment_methods li{
	margin-bottom: .5rem;
}

.fusion-woo-checkout-payment-tb .woocommerce-checkout-payment ul.wc_payment_methods li.payment_method_bank_alfalah_gateway>label:after{
	transform: none;
    top: 44%;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: none;
}

#preloader::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -30px 0 0 -30px;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #1c487c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width: 767px){
	#vendor-reg-form{
		font-size: 14px;
	}
	#simpleToast{
		min-width: 350px;
		transform: translateX(-50%);
		margin-left: 0px;
	}
}