/* Reusable Fade-in Animation */
.fadein {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

/* Simple opacity fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.container {
  width: 91% !important;
  max-width: 1330px !important;
  padding: 0px 0px 0px 15px !important;
   
}

.cma-wrapper {
  display: flex;
  overflow: hidden;
  min-height: 500px;
  gap: 40px;
  padding-top: 35px;
}

.cma-sidebar {
  width: 300px;
  /* background: #fff;
  padding: 24px;
  border-radius: 2px; */

  align-self: flex-start;
}
.sideMyAccount{
    background: #fff;
}

.cma-user {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.cma-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cma-menu li {
  margin: 10px 0;
}

.cma-menu a {
  font-size: 16px;
  color: #7f7e7e;
  font-weight: normal !important;
  display: block;
  padding: 10px 0px;
  border-radius: 5px;
  transition: all 0.2s;
}

.cma-menu a:hover,
.cma-menu .active a {
  font-weight: 500 !important;
  color: #5b5b5b;
}

.cma-content {
  flex: 1;
}

.cma-dashboard .cma-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.cma-card {
 
  flex: 1;
  
}
.methosView{
  margin-bottom: 0px !important;
}
.cms-new-payment {
  padding-top: 10px;
   background: #fff;
  border-radius: 2px;
  padding: 20px;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.15);
  margin-bottom: 26px;
}


.cma-card h3 {
  margin-top: 0;
}

.btn {
  background: #0073aa;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.btn:hover {
  background: #005f8a;
}




.cma-menu li a {
  text-decoration: none !important;
}

.cma-menu .active a {
  text-decoration: underline !important;
}

.cma-sidebar h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #3e4554;
  border-bottom: 1px solid #d7d7d7;
  padding: 14px 0px;
  margin-bottom: 0px;
  padding-top: 0px;
}


/* *** Order Page Css **** */


.cma-my-orders {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cma-order-date {
  color: #333;
  font-size: 14px;
}

.cma-order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  padding: 0px 2px;
}

.cma-order-number {
  color: #3e4554;
  font-weight: 600;
}

.cma-order-status {
  text-transform: capitalize;
  text-align: right;
}

.cma-order-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
}

.cma-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.15);
}

.cma-order-item img {
  width: 50px;
  height: 50px !important;
  object-fit: cover;
  margin-right: 25px;
}

.cma-order-item-details {
  flex: 1;
}
.totalAmt{
  display: none;
}

.cma-order-item-total {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 0px !important;
}

.nameQty {
  font-size: 14px;
  margin-bottom: 1px !important;
  color: #333;
}

.titleAccount {
  color: #3e4554;
  font-size: 22px;
  margin-bottom: 0px;
  font-weight: 500;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 0px !important;
}


/* Payment page */

.paymentData {
  padding-top: 20px;
  display: grid;
}

.paymentOrder {
  font-size: 16px;
  text-transform: uppercase;
  color: #3e4554;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  font-weight: 600;
}


.payementData {
  font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    justify-content: space-between;
    display: flex;
  gap: 10px;
}

.payementData span{
  font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-bottom: 0px !important;
}

.paid{
  color: green;
}
.failed{
  color: red;
}


/* My Account Data */
.accountForm{
  background: #fff;
  padding: 20px;
  border-radius: 2px;
  margin-top: 20px;
}
.editFormAccount label{
   font-size: 14px;
    margin-bottom: 3px !important;
    color: #333;
}
.accountForm form{
  display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}
.accountForm form p{
    width: 47%;;
}
.accountForm form p input{
    width: 100%;
}
.editFormAccount input{
    border: none !important;
    background-color: #ebebeb !important;
    padding: 14px 10px !important;
    font-size: 14px;
    color: #444 !important;
}
.accountForm fieldset{
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.accountForm legend{
  color: #3e4554;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}
.saveButton{
  background: #cb9668 !important;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 11px 20px;
    margin: auto;
    text-transform: uppercase;
    cursor: pointer;
    font-family:"Montserrat" !important;
}

.cma-close{
  position: absolute;
  right: 10px;
}
@media (max-width: 768px) {
  .paymentData {
    grid-template-columns: 1fr;
  }
  .cma-login-modal, .cma-forgot-modal,.cma-register-modal{
    width: 95% !important;
  }
  .cma-menu li {
    margin: 0px 0 !important;
}
}


/* loginModel  */

.modelPop label{
  font-size: 14px;
    margin-bottom: 3px !important;
    color: #333;
}
.cma-login-title{
  margin-bottom: 0px !important;
}
.registerModel{
  display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.registerModel .form-group{
  width: 47%;
}
.registerButton{
  align-self: end;
}

#cmaCloseBtn{
  display: none;
} 

@media (max-width: 768px) {
  .cma-login-modal,.cma-forgot-modal{
    padding: 30px 60px !important;
  }
  .cma-login-title .tuesdaynight{
    font-size: 40px !important;
    top: 20px !important;
  }
  .smallText{
    font-size: 30px !important;
  }
  .cma-login-sub{
    font-size: 14px;
  }
  .cma-register-modal{
    padding: 30px 40px !important;
    z-index: 9999999;
  }

  /* Hide hamburger when modal (login/register) is open */
/* Hide hamburger toggle when login/register modal is visible */
.cma-login-overlay.active,
.cma-login-overlay {
  z-index: 9999; /* Keep modal on top */
}

/* Hide the #pull button when modal overlay is visible */
/* due to this the header hamburger toggle button not seen in my account section */

/* #pull {
  display: none !important;  
} */


}

/* --- MOBILE SIDEBAR TOGGLE --- */
.cma-toggle-btn {
  display: none;
  font-family:"Montserrat" !important;
}

.myHamburgerIcon {
margin-right: 8px;
font-weight:800;
border-radius: 4px;
color: #3e4554;
padding: 4px;
}

.cma-toggle-btn:focus {
  outline: none;
}

/* Mobile sidebar styles */
@media (max-width: 900px) {
  .cma-wrapper {
    flex-direction: column;
    gap: 20px;
    padding-top: 25px;
    /* padding-left: 10px;
    padding-right: 10px; */
  }


 
  .cma-toggle-btn {
    display: flex;
    align-items: center;
    border: none;
    font-size: 18px;
    padding: 0px;
    /* background: #3e4554;
    color: white; */
    font-weight: 500;
   
    
    /* width: 100%; */
    text-align: left;
    font-family:"Montserrat" !important;
    background: transparent;
  }

  .cma-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: left 0.3s ease-in-out;
  }

  .cma-sidebar.active {
    left: 0;
  }

  .cma-content {
  
    padding: 0px;
  }

  /* Overlay effect when sidebar is open */
  body.sidebar-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
  }

  /* Prevent scrolling when sidebar is open */
  body.sidebar-open {
    overflow: hidden;
  }

  .cma-sidebar h3 {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 0px;
    border-bottom: none;
  }

  .cma-menu a {
    font-size: 15px;
    padding: 8px 0;
  }

  #cmaCloseBtn{
    display: inline-block;
    font-size: 32px;
    border: none;
    background: transparent;
  }
  .accountHead{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .renewal-cart-title{
    margin-top:70px;
    margin-bottom: 0px;
  }
    .renewal-cart-title span:first-child {
      font-size: 30px !important;
      top: 25px !important;
      right: 0px !important;
      margin-bottom: 0px;
  }

  .renewal-cart-title span:last-child {
      font-size: 20px !important;
      margin-bottom: 0px;

  }
  
  .cma-order-item{
    display: block;
  }
  .totalAmt{
    display: inline;
    
  }
  .cma-order-item-total, .quantityVal{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cma-order-items {
     padding-bottom: 20px;
  }
 
  .container {
    padding: 0px !important;
}

.accountForm form p{
    width: 100%;;
    }
.accountForm form{
  gap: 0px;
}

}


.cma-order-items-payments h4{
color: #3e4554;
font-weight: 600;
font-size: 18px;
margin-bottom: 10px;
}
.cma-order-items-payments p{
  font-size: 14px;
    margin-bottom: 0px;
    color: #333;
}
.cma-product-list{
  margin-bottom: 0px;
}
.cma-order-card-no-data{
  background: #fff;
    border-radius: 2px;
    padding: 20px;
    box-shadow: 0 1px 9px rgba(0, 0, 0, 0.15);
}
.cma-order-card-no-data p{
  margin-bottom: 0px !important;
}
.errorDataNew{
  margin-bottom: 0px !important;
}