.order-cart-div{
    display:flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.order-cart-div .cart_form{
    width:40%;
}
.order-cart-div .order_form{
    width:56%;
}
.form-btn {
    border: none;
    padding: 5px 5px;
    text-align: center;
    width:100%;
    background-color: #39f;
    color:white;
    font-family: inherit;
}



/* Contact page css */
.single-contact{
    padding:30px;
    border-radius:8px;
    background:rgba(255,107,44,.1);
    height: 100%;
    
}
.conatct-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    width:80px;
    height:80px;
    background:#ff6b2c;
    border-radius:50%;
    margin:0 auto;
}
.mail-address-icon{
    background:#39f;
}
.contact-clock-icon{
    background:#1dbf73;
}
.conatct-icon i{
    font-size: 35px;
    color: white;
}
.conatct-content{
    text-align:center;
}
.conatct-content-title{
    margin: 16px 0;
}
.contact-items span{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    transition: .5s;
}
.contact-items span:hover{
    color:#39f;
    cursor:pointer;
}
.section-title-two{
    border-bottom: 2px solid rgba(0,0,0,.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.section-title-two::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 65px;
    background: #39f;
    left: 0;
    bottom: -3px;
    border-radius: 10px;
}

/* Product tab css */
.active{
    display: inline-block;
}
.hide{
    display: none;
}
.product_tab{
    cursor: pointer;
}





@media (max-width: 575.98px) { 
    .order-cart-div{
        display:flex;
        justify-content: space-between;
        margin-bottom: 6px;
        flex-direction: column;
    }
    .order-cart-div .cart_form{
        width:100%;
        margin-bottom:5px;
    }
    .order-cart-div .order_form{
        width:100%;
    }
}