﻿
main {

    margin-bottom: 50px;
}

/* Accounts Top Heading */

.account-main-heading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 200px;
}



    .account-main-heading-container h1 {
        font-size: 35px;
        
        color: #3399cc;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        text-align: center;
    }



/* Vertical Tab Styling */

.vertical-tab-section {
    display: none;
    margin-top: 100px;

    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
}

/* Style the tab */
.tab {
    display: flex;
    flex-direction: column;
    float: left;
    border: 1px solid #ccc;
    background-color: white;
    width: 25%;
    height: 100%;
}

    /* Style the buttons inside the tab */
    .tab button {
        display: block;
        background-color: inherit;
        color: black;
        padding: 22px 16px;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        font-size: 17px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 550;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #3399cc;
            color: white;
        }

        /* Create an active/current "tab button" class */
        .tab button.active {
            background-color: #3399cc;
            color: white;
        }

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 0px 12px;
    border: 1px solid #ccc;
    width: 100%;
    border-left: none;
    height: 100%;
}

    /* Heading */

    .tabcontent h3 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 30px;
        color: #3399cc;
        margin-top: 0px;
        margin-bottom: 0px;
    }

/* Accordin Styling */

.account-accordion {
    background-color: #eee;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    height: auto;
}

    .active,
    .account-accordion:hover {
        background-color: white;
    }

    .account-accordion:after {
        content: "\002B";
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

.active:after {
    content: "\2212";
}

.account-panel {
    display: flex;
    flex-direction: column;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Orders Section */

.divNoOrdersMessage {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .divNoOrdersMessage a {
        color: #3399cc;
        text-decoration: none;
    }

    .account-order-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

/*  Order header*/

.order-header {
    background-color: rgb(247, 250, 255);
}

.order-header-left {
    padding-left: 30px;
}
/* Order Number */
.order-header-left-top h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 25px;
    color: #3399cc;
}

/* Order Date */

.order-header-left-top p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: black;
}

/* Order Price and status */

/* Total Price */

.order-header-left-bottom p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 550;
    font-size: 17px;
    color: black;
}

/* Order Status text colour */

/* Processed */
.order-status .order-status-processed {
    color: green;
}

/* Failed */

.order-status .order-status-failed {
    color: red;
}

/* Processing */

.order-status .order-status-processing {
    color: orange;
}

/* Product Order Row */

.products-ordered-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(247, 250, 255);
    margin-bottom: 20px;
}

/* Personal Details Section */

/* .personal-details-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
} */

/* Name and Surname COntainer  */

.personal-details-container .personal-data-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    border: #3399cc 1px solid;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 20px;
    border-bottom-left-radius: 10px;
}

/* Inner Details */

.personal-inner-data-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

    /* Label Text */

    .personal-inner-data-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
        font-size: 17px;
        color: black;
        margin-bottom: 5px;
    }

    /* Data Text */

    .personal-inner-data-container a {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 17px;
        color: black;
    }

/* Button Container */

.personal-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

    .personal-button-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
    }

/* Modal styling for Personal Details Section */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */

    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}



/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 45%;
}



/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    padding-right: 20px;
    padding-top: 20px;

}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/* Modal Content Container  */

.modal-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
}



    /* Logo */

    .modal-content-container img {
        height: auto;
        width: 200px;
    }



    /* Heading */

    .modal-content-container h3 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        font-size: 35px;
        color: #3399cc;
        margin-top: 0px;
        margin-bottom: 0px;
    }



/* Form Container */

.personal-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
    margin-bottom: 50px;
    flex-direction: column;
}



    /* Label */

    .personal-form-container label {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: black;
        width: 100%;
        text-align: center;
    }

    /* Input */

    .personal-form-container input {
        height: 40px;
        border: #3399cc 1px solid;
        border-radius: 5px;
        padding-left: 10px;
        font-family: 'Open Sans', sans-serif;
        font-size: 17px;
        width: 100%;
    }

    /* Button */

    .personal-form-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        width: 50%;
    }


.acountsNoReviewsMessage {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

    .acountsNoReviewsMessage a {
        color: #3399cc;
        text-decoration: none;
    }



        /* Hover on Button */

.personal-form-container button:hover {
    background-color: white;
    color: #3399cc;
    padding: 10px 20px;
    border: #3399cc 1px solid;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
}

    /* A tags  */

.personal-form-container a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #3399cc;
}

/* Address Section */

.address-data-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
}

    /* Add Address Button */

    .address-data-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        width: 200px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;

    }

/* Inner Data */

.address-inner-data-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: white;
    border: solid 1px #3399cc ;
    gap: 50px;
    margin-bottom: 20px;
    border-bottom-left-radius: 8px;
}

    /* Radio Input */

    .address-inner-data-container input {
        height: 20px;
        width: 20px;
    }

    /* Inner Information */

    .address-inner-data-container a {
        position: relative;
 
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 17px;
        color: black;
        margin-bottom: 10px;
        text-align: center;
    }

/* Address Edit Button */

.add-address-edit-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px
}

/* Add Adress Modal Styling */

/* The Modal (background) */
.add-address-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 1px;
    padding-bottom: 20px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}



/* Modal Content */
.add-address-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
}




/* Modal styling for Add Address Inner Content */

.add-address-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}



/* inner Details for add address */

.inner-address-add-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: 100%;
    text-align:center;
}



    /* Address Add Labels */

    .inner-address-add-container label {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 17px;
        color: black;
        margin-top: 10px;
        margin-bottom: 10px;
    }



    /* Address Add Input */

    .inner-address-add-container input {
        height: 40px;
        border: #3399cc 1px solid;
        border-radius: 5px;
        padding-left: 10px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 17px;
        width: 100%;
    }

    /* Address Add Button */

    .inner-address-add-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        margin-top: 20px;
        width: 100%;
    }




    /* Return Log Button */

.divNoReturnsMessage {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.btnLogReturn {
    background-color: #3399cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Returns Log Modal */

.return-log-modal-content {
    width: 60%;
}
.return-log-modal-item-content {
    padding-top: 50px;
    width: 55%;
}


    .account-Return-section {
        background-color: rgb(247, 250, 255);
    }
/* Returns log button container */
.returns-log-btn-con {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}
/* Order And Returns Body of product */
.order-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    /* height: auto; */
    border-right: 1px solid #ddd;
    box-shadow: 10px 0px 5px 1px #eaeaea;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px;
    border: none;
    background-color: white;
}

.order-body-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-body-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

}

.order-body-right-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;

}

    .order-body-right-top input {
        width: 30%;
    }

    .order-body-right-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .order-body-right-bottom button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 20px;
        cursor: pointer;
    }

    /* Title of product */

.order-body-right-top h4 {
    color: #3399cc;
    margin: 5px 0px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    padding-right: 8px;
    text-decoration: none;
    text-align: center;
}

/* Quantity */

.order-body-right-top p {
    text-align: center;
    color: black;
    margin: 5px 0px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    padding-right: 8px;
    text-decoration: none;
}

.order-body-right-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .order-body-right-bottom p {
        color: #3399cc;
        margin: 5px 0px;
        font-size: 17px;
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
        padding-right: 8px;
        text-decoration: none;
    }


    .modal-logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }



        .modal-logo-container h1 {
            font-family: 'Open Sans', sans-serif;
            font-weight: bold;
        }

.checkout-quantity {
    display: inline-block;
}

    .checkout-quantity .input-text.qty {
        width: 35px;
        height: 39px;
        padding: 0 5px;
        text-align: center;
        background-color: transparent;
        border: 1px solid #efefef;
    }

    .checkout-quantity.buttons_added {
        text-align: left;
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

        .checkout-quantity.buttons_added input {
            display: inline-block;
            margin: 0;
            vertical-align: top;
            box-shadow: none;
        }

        .checkout-quantity.buttons_added .minus,
        .checkout-quantity.buttons_added .plus {
            padding: 7px 10px 8px;
            height: 41px;
            background-color: #ffffff;
            border: 1px solid #efefef;
            cursor: pointer;
        }

        .checkout-quantity.buttons_added .minus {
            border-right: 0;
        }

        .checkout-quantity.buttons_added .plus {
            border-left: 0;
        }

            .checkout-quantity.buttons_added .minus:hover,
            .checkout-quantity.buttons_added .plus:hover {
                background: #eeeeee;
            }

    .checkout-quantity input::-webkit-outer-spin-button,
    .checkout-quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    .checkout-quantity.buttons_added .minus:focus,
    .checkout-quantity.buttons_added .plus:focus {
        outline: none;
    }

.add-address-default-con {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.add-default-label {
    width: 100%;
    margin-left: -15px;
}

.add-default-checkbox {
    -webkit-transform: scale(0.7); /* Chrome, Safari, Opera */
    transform: scale(0.7); /* Standard syntax */
    margin: 5px; /* Optional: adds some space around the checkbox */
}


/* Accounts Mobile View  */

/* Mobile Accounts Section */

.mbl-accounts-sec {
    display: none;
    width: 100%;
    height: 100%;
}

/* Mobile accounts selections container */

.mble-acc-opt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid black;
}

    /* Text */

    .mble-acc-opt a {
        padding-left: 10px;
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
        cursor: pointer;
    }

/* Returns Section */

/* Log Return Button */

.mblbtnLogReturn {
    background-color: #3399cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 17px;
    margin-top: 20px;
    width: 100%;
    cursor: pointer;
}



/* Modal for mobile */

.acc-mble-modal {
    display: none;
    
    z-index: 2;
    margin-top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: white;

}

    .acc-mble-modal p {
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
        font-size: 17px;
        padding-left: 10px;
        padding-top: 20px;
    }

    .acc-mble-modal p {
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
        font-size: 17px;
        padding-left: 10px;
        padding-top: 20px;
    }

.acc-mble-modal-content {
    background-color: white;
    margin: 0;
    
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
}

.rev-mble-modal-content {
    background-color: white;
    margin: 0;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
}

    .rev-mble-modal-content label {
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
        font-size: 14px;
    }
    .acc-mble-modal-content p {
        font-family: "Open Sans", sans-serif;
        
        font-size: 14px;
    }

.orders-mble-modal-content {
    background-color: white;
    padding-bottom: 20px;
}

#MdlOrderItemToreturn .close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    visibility: visible !important;
}

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    float: right;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.product-review-container {
    display: flex;
    flex-direction:column;
    width: 100%;
    gap: 10px;
}

.review-mble-modal-container {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    width: 100%;
    gap: 35px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 13px;
}

    .review-mble-modal-container textarea {
        width: 90%;
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
    }

    .review-mble-modal-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 20px;
        cursor: pointer;
        width: 90%;
    }

.mble-editrating-btn {
    background-color: white !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    color: black !important;
    border: solid 1px black !important;
}

.mble-editrating {
    height: 45px;
}
/* Product Review  */
.product-review-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #3399cc15;
    padding: 20px;
    overflow: hidden;
}

#mbl-reviews-edit-modal {
    z-index: 999;
}
/* Name */
.product-review-name {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 22px;
}

/* Star Rating */

.product-review-rating {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    padding-bottom: 10px;
    padding-top: 10px;
}

.stars {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    color: #ddd;
    letter-spacing: 2px;
}

    .stars::before {
        content: "★★★★★";
    }

    .stars[data-rating="1"]::before {
        content: "★";
        color: #ffbe00;
    }

    .stars[data-rating="2"]::before {
        content: "★★";
        color: #ffd500;
    }

    .stars[data-rating="3"]::before {
        content: "★★★";
        color: #ffea00;
    }

    .stars[data-rating="4"]::before {
        content: "★★★★";
        color: #fff200;
    }

    .stars[data-rating="5"]::before {
        content: "★★★★★";
        color: #ffff00;
    }

/* Review Feedback */

.product-review-feedback {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    max-width: 90%; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.feedback-rating-label {
    font-weight: 700;
    text-align: center;
}
/* Button Remove */
.btnRemoveRating {
    background-color: #3399cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    width: 20%;
}




/* Edit Button */

.btnEditRating {
    background-color: #3399cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-top: 10px;
   
    margin-bottom: 20px;
    cursor: pointer;
    width: 20%;
}

.product-review-package {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.product-review-sku {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

#lblReviewProduct {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

#divReviewProductPackage {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

#divReviewProductSKU {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

#lblReviewFeedback {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}
/* Edit Product Rating Container */
.edit-product-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

/* Input */

    .edit-product-rating-container input {
        height: 30px;
        width: 50px;
        font-family: "Open Sans", sans-serif;
        font-weight: bold;
        font-size: 16px;
    }


/* Text area */

.edit-product-rating-container textarea {
    height: 200px;
    width: 100%;
}

/* Button Container */

.edit-product-btn-container {
    display: flex;
    gap: 10px
}

    .edit-product-btn-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px
    }

/* Mobile Product Review Item */

.mbl-product-review-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding-top: 10px;
    
}

/* Mobile Product review */
.product-review-dta-mble {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    word-wrap: break-word; /* Ensure text breaks and wraps to avoid overflow */
    overflow-wrap: break-word;
    max-width: 100%;
}


/* Mobile Personal Container */

.m-personal-details-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 10px;

}

.m-personal-inner-data-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    
}
/* Mobile Personal Details */
.m-personal-inner-data-container a {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}

/* Mobile Personal Button */

.m-personal-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

    .m-personal-button-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        width: 90%;
    }

.acc-add-btn-con {
    display: flex;
    width: 100%;
    margin-top: 20px;

}
/* Addresses Mobile */
/* Add Address */
.addAddress {
    background-color: #3399cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
}

.address-inner-data-container-mobile {
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: #f1f1f1;
    margin-top: 20px;
    width: 100%;
    padding: 20px
}

.add-address-edit-btn-container {
    margin-top: 20px;
    display: flex;

}

    .add-address-edit-btn-container button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        width: 100%;
    }

.add-address-edit-btn-container input {
    font-size: 50px;
}

.ordr-mble-modal-content {
    background-color: white;
    width: 100%;
    height: 100%;
    
}



/* orders for mobile */

.mbl-order-header {
   background-color: rgb(247, 250, 255);
}

.mbl-products-ordered-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(247, 250, 255);
    margin-bottom: 20px;
}

#log-returns-mble-modal {

    z-index: 9999;
}





.mbl-order-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    /* height: auto; */
    border-right: 1px solid #ddd;
    box-shadow: 10px 0px 5px 1px #eaeaea;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px;
    border: none;
    background-color: white;
}

.mbl-order-header-left-top h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 25px;
    color: #3399cc
}

.mbl-order-header-left {
    padding-left: 30px;
}



/* Order Date */

.mbl-order-header-left-top p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: black;
}

/* Order Price and status */

/* Total Price */

.mbl-order-header-left-bottom p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 550;
    font-size: 17px;
    color: black;
}

/* Order Status text colour */

/* Processed */
.mbl-order-status .mbl-order-status-processed {
    color: green;
}

/* Failed */

.mbl-order-status .mbl-order-status-failed {
    color: red;
}

/* Processing */

.mbl-order-status .mbl-order-status-processing {
    color: orange;
}

/* Order And Returns Body of product */
.mbl-order-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    /* height: auto; */
    border-right: 1px solid #ddd;
    box-shadow: 10px 0px 5px 1px #eaeaea;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px;
    border: none;
    background-color: white;
}

.mbl-order-body-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mbl-order-body-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mbl-order-body-right-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.mbl-order-body-right-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

    .mbl-order-body-right-bottom button {
        background-color: #3399cc;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 20px;
        cursor: pointer;
    }

/* Title of product */

.mbl-order-body-right-top h4 {
    color: #3399cc;
    margin: 5px 0px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    padding-right: 8px;
    text-decoration: none;
    text-align: center;
}

/* Quantity */

.mbl-order-body-right-top p {
    text-align: center;
    color: black;
    margin: 5px 0px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    padding-right: 8px;
    text-decoration: none;
}

.mbl-order-body-right-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .mbl-order-body-right-bottom p {
        color: #3399cc;
        margin: 5px 0px;
        font-size: 17px;
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
        padding-right: 8px;
        text-decoration: none;
    }

.mbl-account-order-section {
    height: auto;
    background-color: rgb(247, 250, 255);
}

.noAddress {
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

.mbl-modal-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    background-color: white;
}



.mbl-modal-content-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100%;
    padding-bottom: 100px;
    padding-top: 0px;
}

    .mbl-modal-content-container h3 {
        text-align:center;
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
    }

    .mbl-modal-content-container .modal-logo-container img {
        width: 200px;
        height: auto;
    }

.mbl-personal-form-container {
    display: flex;
    flex-direction: column;

}

    .mbl-personal-form-container label {
        font-size: 17px;
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
        text-align: center;
    }



    .mbl-personal-form-container button {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        background: #3399cc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        margin-top: 10px
    }


.edit-product-rating-modal-content {
    display: flex;
    justify-content: center;

    width: 100%;

}

    .edit-product-rating-modal-content .modal-content-container {
        background-color: white;
        width: 400px;
            padding-bottom: 50px;
    }

.edit-product-rating-close {
    position: relative;
    left: 400px;
    color: #aaaaaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    padding-right: 20px;
    padding-top: 20px;
}

    .edit-product-rating-close:hover,
    .edit-product-rating-close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.address-inner-data-container {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

    .address-inner-data-container tr {
        display: table-row;
    }

    .address-inner-data-container td {
        
        padding: 5px;
    }

    .address-inner-data-container a {
        display: block;
        margin: 3px 0;
    }

    .address-inner-data-container td input[type="radio"] {
        vertical-align: middle; /* Adjust the value as needed */
    }

/*.main-mble-container {
    display: none;
}*/
/* Mobile Portrait*/
@media (max-width: 768px) and (orientation: portrait) {
    .account-main-heading-container {
        margin-top: 50px;
    }

            .main-mble-container {
        display: block;
    }

    .vertical-tab-section {
        display: none;
    }

    .modal {
        background-color: white;
    }

    .account-main-heading-container h1 {
        font-size: 30px;
    }

    .acountsNoReviewsMessage {
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        font-weight: 500;
    }

        .acountsNoReviewsMessage a {
            color: #3399cc;
            text-decoration: none;
        }

    .modal {
        padding-top: 0;
    }

    .modal-content {
        padding: 10px;
        margin: 0;
        width: 100%;
        height: auto;
    }

    .modal-content-container {
        height: auto;
    }

        .modal-content-container img {
            width: 150px
        }

        .modal-content-container h3 {
            text-align: center;
        }

    .personal-form-container {
        flex-direction: column;
    }

        .personal-form-container button {
            margin-top: 10px;
            width: 100%;
        }

    .add-address-modal {
        padding: 0;
    }

    .add-address-modal-content {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .add-address-form-container {
        flex-direction: column;
    }

    .inner-address-add-container {
        align-items: center;
        width: 90%;
        padding-bottom: 20px;
    }

        .inner-address-add-container label {
            text-align: center;
        }

        .inner-address-add-container button {
            width: 100%;
        }

    .btnRemoveRating {
        width: 90%;
        margin: 0;
        margin-top: 10px;
    }

    .btnEditRating {
        margin: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
}



/*/* Mobile Landscape */

@media (max-width: 846px) and (orientation: landscape) {
    .main-mble-container {
        display: block;
    }

    .vertical-tab-section {
        display: none;
    }

    .modal {
        background-color: white;
    }

}



/* Tablet Portrait */


@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .main-mble-container {
        display: block;
    }

    .vertical-tab-section {
        display: none;
    }

    .modal {
        background-color: white;
    }

    .add-address-modal-content {
        width: 90%;
    }

}
    




/* Tablet Landscape */



@media only screen and (min-width: 1024px) and (max-width: 1112px) and (orientation: landscape) {
    .main-mble-container {
        display: block;
    }

    .vertical-tab-section {
        display: none;
    }

    .modal {
        background-color: white;
    }

    .add-address-modal-content {
        width: 90%;
    }

}
    



/* Bigger Tablet Portraight */


   
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .main-mble-container {
        display: block;
    }

    .vertical-tab-section {
        display: none;
    }

    .modal {
        background-color: white;
    }

    .add-address-modal-content {
        width: 90%;
    }

}





/*/* Bigger Tablet Landscape */



    @media only screen and (min-width: 1112px) and (max-width: 1366px) and (orientation: landscape) {
        .main-mble-container {
            display: block;
        }

        .vertical-tab-section {
            display: none;
        }

        .modal {
            background-color: white;
        }


        .add-address-modal-content {
            width: 90%;
        }

    }

.return-quantity-number-selector {
    display: flex;
    justify-content:center;
    align-items: center;
}

.return-quantity-number-input {
    text-align: center;
    width: 50px;
}

.return-quantity-left-button,
.return-quantity-right-button {
    cursor: pointer;
}

