/* Cart Page CSS Start */

section.cart-section {
    padding: 100px 0;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 10px;
    color: #FFF;
}
.woocommerce-info a{
    color: #FFF;
    position: relative;
    font-weight: bold;
}
.woocommerce-info a::after{
    content: '';
    background-color: #FFF;
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}
.woocommerce-info a:hover::after{
    width: 100%;
}
.cart-empty-title{
    color: #03002E;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
p.return-to-shop .button{
    padding: 14px 24px;
    border-radius: 115px;
    border: 1px solid transparent;
    background: #F38304;
    color: #FDFEF9;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    transition: .3s ease all;
    display: inline-block;
    margin-top: 20px;
}
p.return-to-shop .button:hover{
    background-color: #F9D339;
    color: #03002E;
    border-color: #F9D339;
}
.product_table table {
    border: 1px solid #000;
    border-collapse: collapse;
    width: 100%;
}
.product_table table thead th {
    border: 1px solid #000;
    padding: 5px;
    text-align: center;
    font-size: 18px;
    line-height: normal;
    color: #03002E;
}
.product_table table tbody td{
    border: 1px solid #000;
    padding: 10px;
    text-align: left;
    font-size: 18px;
    line-height: normal;
    color: #03002E;
}
.product_table .product-name a{
    font-size: 18px;
    line-height: normal;
    color: #03002E;
    transition: 0.3s;
}
.product_table .product-name a:hover{
    color: #F38304;
}
.product-remove a.remove {
    color: red;
    font-size: 25px;
    line-height: 0;
    background-color: transparent;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    transition: 0.3s;
}
.product-remove a.remove:hover{
    background-color: #000;
    border-color: #000;
    color: #FFF;
}
.coupon input#coupon_code{
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    padding: 10px;
    border: none;
    border-radius: 0;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
}
button.button:disabled{
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}
button.button{
    padding: 14px 24px;
    border-radius: 115px;
    border: 1px solid transparent;
    background: #F38304;
    color: #FDFEF9;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    transition: .3s ease all;
    display: inline-block;
}
button.button:hover{
    background-color: #F9D339;
    color: #03002E;
    border-color: #F9D339;
}
button.button[name="update_cart"]{
    margin-top: 20px;
}
.custom-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
input.qty {
    border: none;
    border-radius: 0;
    outline: none;
    background: #F0F0F0;
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    width: 120px;
    text-align: center;
}
button.qty-btn {
    border: none;
    background-color: #F38304;
    color: #FDFEF9;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    line-height: 0;    
    transition: 0.3s;
}
button.qty-btn:hover{
    background-color: #F9D339;
    color: #03002E;
}
.cart-collaterals table{
    border: 1px solid #000;
    border-collapse: collapse;
    margin: 20px 0;
    width: 100%;
}
.cart-collaterals table th{
    padding: 10px;
    border: 1px solid #000;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: #03002E;
}
.cart-collaterals table td{
    padding: 10px;
    border: 1px solid #000;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    color: #03002E;
}
.wc-proceed-to-checkout a.checkout-button{
    padding: 14px 24px;
    border-radius: 115px;
    border: 1px solid transparent;
    background: #F38304;
    color: #FDFEF9;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    transition: .3s ease all;
    display: inline-block;
    text-align: center;
}
.wc-proceed-to-checkout a.checkout-button:hover{
    background-color: #F9D339;
    color: #03002E;
    border-color: #F9D339;
}

/* Cart Page CSS End */

/* Checkout Page CSS Start */

.checkout_coupon_container{
    padding-top: 120px;
    padding-bottom: 40px;
}
section.checkout_section{
    padding-top: 0px;
}
.checkout_section h3{
    font-size: 35px;
    line-height: normal;
    font-weight: 600;
    color: #03002E;
}
.checkout_section .woocommerce-billing-fields__field-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 40px;
}
.woocommerce-billing-fields__field-wrapper label{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.woocommerce-billing-fields__field-wrapper input{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
}
.woocommerce-billing-fields__field-wrapper select{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
}
.select2-container--default .select2-selection--single{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    height: fit-content;
}
.woocommerce-additional-fields__field-wrapper p#order_comments_field{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 10px;
}
p#order_comments_field label{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
textarea#order_comments {
    width: 100%;
    height: 100px;
    border: none;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    color: #03002E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 18px 20px;
    outline: none;
    border-radius: 0;
}
div#customer_details {
    margin-bottom: 40px;
}
h3#order_review_heading {
    margin-bottom: 20px;
}
div#order_review table{
    border: 1px solid #000;
    border-collapse: collapse;
    margin-bottom: 20px;
}
div#order_review table th{
    border: 1px solid #000;
    padding: 10px;
}
div#order_review table td{
    border: 1px solid #000;
    padding: 10px;
}
.woocommerce-privacy-policy-text p{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 15px 0;
}
.woocommerce-privacy-policy-text a{
    color: #F38304;
    transition: 0.3s;
    text-decoration: underline;
}
.woocommerce-privacy-policy-text a:hover{
    color: #F9D339;
}
form#woocommerce-checkout-form-coupon {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 15px;
}
form#woocommerce-checkout-form-coupon input#coupon_code{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
}
.woocommerce-error li a{
    color: #FFF;
}
.woocommerce-order p{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
ul.order_details li{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.woocommerce-order-details h2,h2.woocommerce-column__title{
    font-size: 35px;
    line-height: normal;
    font-weight: 600;
    color: #03002E;
    margin-top: 20px;
}
.woocommerce-order-details table{
    border: 1px solid #000;
    border-collapse: collapse;
    margin: 20px 0;
}
.woocommerce-order-details table th{
    border: 1px solid #000;
    padding: 10px;
    font-size: 18px;
    line-height: normal;
    color: #03002E;
}
.woocommerce-order-details table td{
    border: 1px solid #000;
    padding: 10px;
    font-size: 18px;
    line-height: normal;
    color: #03002E;
}
.woocommerce-order-details table td a{
    color: #03002E;
}
form.woocommerce-ResetPassword.lost_reset_password p{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
input#user_login {
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: fit-content;
    margin: 20px 0;
}


/* Checkout Page CSS End */

/* My Account CSS Start */

.woocommerce-form-login,.woocommerce-form-register  {
    margin-top: 40px;
}
.woocommerce-form-login p,.woocommerce-form-register p{
    margin-bottom: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.woocommerce-form-login p:last-child{
    margin-bottom: 0px;
}
.woocommerce-form label{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.woocommerce-form input{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    text-align: right;
}
span.password-input {
    display: flex;
    align-items: center;
    gap: 10px;
}
input#rememberme {
    width: fit-content;
}
.woocommerce-form-login__rememberme{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: fit-content;
}
p.lost_password a{
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    color: #F38304;
    transition: 0.3s;
    text-decoration: underline;
}
p.lost_password a:hover{
    color: #03002E;
}
button.show-password-input{
    font-family: "Font Awesome 6 Free";
    line-height: 1;
    border: none;
    outline: none;
    color: #000;
    background-color: transparent;
}
button.show-password-input::after{
    content: "\f06e";
}
button.display-password::after{
    content: "\f070";
}
nav.woocommerce-MyAccount-navigation ul{
    border: 1px solid #000;
    border-collapse: collapse;
}
nav.woocommerce-MyAccount-navigation ul li{
    border-bottom: 1px solid #000;
    padding: 10px;
}
nav.woocommerce-MyAccount-navigation ul li a{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: 0.3s;
}
nav.woocommerce-MyAccount-navigation ul li:last-child{
    border-bottom: none;
}
.woocommerce-MyAccount-content p{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}
.woocommerce-MyAccount-content p a{
    color: #03002E;
    text-decoration: underline;
}
.my_account_address{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.half-col{
    width: 100%;
    border: 1px solid #000;
    padding: 20px;
}
.half-col h2{
    color: #03002E;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.half-col a{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    text-decoration: underline;
}
address{
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin: 0;
    margin-top: 10px;
}
.woocommerce-EditAccountForm p{
    margin-bottom: 15px;
}
.woocommerce-EditAccountForm input{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    direction: rtl;
}
span#account_display_name_description {
    margin-top: 10px;
    display: block;
}
form.woocommerce-ResetPassword.lost_reset_password p{
    margin-bottom: 20px;
}
form.woocommerce-ResetPassword.lost_reset_password p:last-child{
    margin-bottom: 0px;
}
form.woocommerce-ResetPassword.lost_reset_password input{
    padding: 5px 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #F4F4F4;
    box-shadow: 1px 2px 4px 0px rgba(68, 68, 68, 0.02);
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
}
table.my_account_orders{
    border: 1px solid #03002E;
    border-collapse: collapse;
}
table.my_account_orders th{
    border: 1px solid #03002E;
    padding: 10px;
    text-align: right !important;
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}
table.my_account_orders td{
    border: 1px solid #03002E;
    padding: 10px;
    text-align: right !important;
    color: #03002E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}
table.my_account_orders th a,
table.my_account_orders td a{
    color: #03002E;
}


.videoicon img {
    max-width: 20%;
}

.videoicon {
    position: absolute;
    z-index: 11;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor:pointer;
}

/* Responsive CSS */

@media (max-width:991px){
    table.my_account_orders{
        width: 100%;
    }
    section.cart-section{
        padding: 70px 0;
    }
}
@media (max-width:767px){
    section.cart-section{
        padding: 50px 0;
    }
    .my_account_address{
        flex-direction: column;
    }
}