/**
 * wpum account page css 
*/

/* .client-orders-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
} */
.client-order-card {
    background: #fff;
    padding: 40px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.client-order-card h5 {
    margin: 0 0;
    font-size: 20px;
    color: #263036;
    flex: 1;
}
.client-order-card h5 span {
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    color: #79c4ec;
}
.client-order-card-header {
    display: flex;
    justify-content: space-between;
}
@media(min-width: 990px){
    .order-dates {
        text-align: right;
        margin-top: 0!important;
    }
}
.order-dates {
    margin-top: 15px;
}
/* .order-details-wrapper {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #79c4ec54;
} */
.order-details {
    list-style: none;
    padding: 0;
    margin:0;
    /* border-bottom: 1px solid #79c4ec54;
    padding-bottom: 10px;
    margin-bottom: 10px !important; */
}
.order-details li {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 3px 0;
}
.order-details li:last-child {
    padding-bottom: 0!important;
    border-bottom: none;
}
/* .order-details li strong {
    width: 170px;
    font-weight: 600;
    color: #333;
}
@media (max-width: 767px) {
    .order-details li strong {
        width: 150px;
    }
} */
.order-details .product-titles, .order-total {
    font-weight: 600;
    color: #263036;
}
.order-details li span.order-data-field {
    flex: none;
}
li.order-col {
    justify-content: space-between;
}
.order-details-hidden {
    display: none!important;
}
.client-order-card .divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 16px 0;
}
.client-order-card p {
    margin-bottom: 0;
}
.client-orders-error {
    text-align: center;
    font-size: 16px;
    color: #777;
    padding: 20px;
}
.mgs-btn {
    float: unset;
    transition: 0.3s all ease;
}
.client-order-card .mgs-btn {
    width: 100%;
    margin-top: 30px;
}
.order-actions br {
    display: none;
}
.order-actions-btn{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.order-actions-btn .mgs-btn {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
}
@media (max-width: 990px) {
    .client-order-card-header {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .order-actions-btn .mgs-btn {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mgs-btn.js-claim-btn {
        margin-top: 10px;
    }
}
.mgs-warranty-from-warpper {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    background: rgba(0,0,0,.9);
    margin: 0 auto;
    z-index: 99999;
    overflow-y: scroll;
    height: 100vh;
}
.mgs-warranty-from {
    max-width: 500px;
    padding: 0 20px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
}
.mgs-warranty-from br {
    display: none!important;
}
.mgs-warranty-from form {
    padding-top: 20px;
}
.msg-close-btn {
    position: fixed;
    top: 15px;
    right: 3%;
    cursor: pointer;
}
.msg-close-btn i {
    font-size: 30px;
    transition: 0.3s all ease;
}
.msg-close-btn i:hover {
    color: #9c54a0;
}
.msg-close-btn br {
    display: none;
}
@media (max-width:500px) {
    .mgs-warranty-from {
        max-width: 90%;
    }
}

/**
 * FAQ's tabs css 
*/
.faq-tabs {
    list-style: none;
    display: flex;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    padding: 0;
    margin: 0 0 30px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.faq-tabs li:last-child {
    padding-bottom: 15px !important;
}
.faq-tab {
    padding: 12px 22px;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.3s;
    font-size: 16px;
    text-align: center;
    text-transform: capitalize;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
}
.faq-tab.active,
.faq-tab:hover {
    /* color: #79c4ec;
    border-bottom-color: #79c4ec; */
    color: #fff;
    border-color: #79c4ec;
    background-color: #79c4ec;
}
.faq-tab-panel {
    display: none;
}
.faq-tab-panel.active {
    display: block;
}
.faq-accordion-item {
    border-bottom: 1px solid #e5e5e5;
}
.faq-accordion-title {
    padding: 25px 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    text-align: left;
    font-size: 22px;
    font-weight: 300;
}
.faq-accordion-title:after {
    content: '+';
    position: absolute;
    right: 0px;
    font-size: 20px;
}
.faq-accordion-title.active:after {
    content: '−';
}
.faq-accordion-content {
    display: none;
    background: #fff;
}
.faq-accordion-content-text {
    text-align: left;
    padding: 0 0 25px 25px;
}
@media (max-width: 768px) {
    .faq-tabs {
        flex-direction: column;
    }
    .faq-tab {
        border-bottom: 1px solid #e0e0e0;
    }
}