:root {
    --clrPurple : #3B3486;
    --clrDark : #292929;
    --clrPureWhite: #ffffff;
    --shadowOne: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadowTwo: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadowThree: 0 1rem 3rem rgba(0, 0, 0, 0.175);    
    
}
body, html{
    font-family: "Inter", sans-serif;
    transition: 0.5s;
    position: relative;
    scroll-behavior: smooth;
    /* background: url('./images/bg.png'); */
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    
}
img{-webkit-user-drag: none;}
.p_section{
    padding-top: 50px;
    border-top: 10px solid var(--clrPurple);
}
.payment_box{
    background: #fff;
    padding: 20px;
    border-top: 10px solid var(--clrPurple);
    box-shadow: var(--shadowThree);
    position: sticky;
    top: 20px;
}
.payment_box h4{
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--clrPurple);
}
.group_form{
    position: relative;
}
.group_form .form-control{
    font-size: 14px;
    padding: 13px 14px;
}
.group_form label{
    position: absolute;
    top: -9px;
    left: 14px;
    font-size: 13px;
    background: #fff;
    color: #939393;
}
.error_msg{
    font-size: 13px;
    color: red;
}
.form-control:focus{
    box-shadow: unset;
    border-color: var(--clrPurple);
}
.amount p{
    margin: 0;
}
.amount h5{
    margin: 0;
    font-weight: 800;
}
.pay_btn{
    background: var(--clrPurple);
    font-size: 18px;
    border: 0;
    padding: 12px 12px;
    width: 100%;
    color: #fff;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}
.pay_btn:hover{
    background: var(--clrDark);
    transition: 0.3s;
}
.payment_icon{
    margin-top: 15px;
    text-align: center;
}
.payment_icon img{
    width: 70%;
}
.seller_profile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.seller_profile img{
    width: 55px;
    height: 55px;
    border-radius: 50px;
}
.seller_profile h5{
    margin: 0;
}
.product_details{
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}
.product_details img{
    width: 100%;
    margin-bottom: 15px;
}
/*.contact_details {*/
/*    margin-top: 20px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/
/*.contact_details a{*/
/*    text-decoration: none;*/
/*    color: #000;*/
/*}*/

.contact_details{
    margin-top: 20px;
}
.contact_details a{
        font-size: 15px;
    margin-bottom: 4px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: #000;
}
.contact_details a:hover{
    color:#000;
}
.contact_details a i{
    color: var(--clrPurple);
    margin-right: 5px;
}
.accordion-button{
    font-weight: 600;
    border-left: 4px solid #3b3486;
}
.accordion-button:focus{
    box-shadow:unset;
}
.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #ffffff;
}
.accordion-body {
    padding: 0;
    padding-top: 15px;
}
.accordion-body p{
     margin: 0;
    font-size: 14px;
    color: #666666;
}
.terms_box{
    background: #F9F9F9;
    padding: 20px;
    border-left: 4px solid var(--clrPurple);
    margin-top: 20px;
}
.terms_box p{
    margin: 0;
    font-size: 14px;
    color: #666666;
}
.footer{
    background: #071520;
    border-radius: 10px;
    padding: 10px;
    margin-top: 15px;
    padding: 15px;
    color: white;
    font-size: 14px;
    margin-bottom: 50px;
}
.footer  p{
    margin-bottom: 0;
}
.footer img{
    height: 50px;
}
.footer a{
    color: unset;
}
.mobile_payment_button{
    background: #fff;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--shadowThree);
}
.mobile_payment_button .amount p{
    font-size: 13px;
}
.mobile_payment_button .pay_btn{
    margin-top: 10px;
}
.mobile_payment_form{
    height: calc(100vh - 134px);
    display: none;
    padding-top:50px;
}
.show_form{
    display: block;
}
.show_dummy_btn{
    display: none;
}
.real_payment{
    display: none;
}
.show_real_btn{
    display: block;
}
.mobile_form_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.form_close{
    background: transparent;
    border: 0;
    padding: 0;
}
.mobile_form_header p{
    margin: 0;
}