

    .account-card {
    margin-bottom: 30px;
    border-radius: 8px;
    padding: 0px 30px 30px;
    background: var(--white);
  }
  .account-title {
    padding: 18px 0px;
    margin-bottom: 25px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .account-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0px;
    width: 50px;
    height: 2px;
    background: var(--primary);
  }
  .account-title h4 {
    text-transform: capitalize;
  }
  .account-title button,
  .account-title a {
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.3px;
    padding: 5px 15px;
    white-space: nowrap;
    text-transform: capitalize;
    color: var(--primary);
    background: var(--green-chalk);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .account-title button:hover,
  .account-title a:hover {
    color: var(--white);
    background: var(--primary);
  }
  @media (max-width: 575px) {
    .account-card {
      padding: 0px 15px 15px;
    }
  }
   .profile-card {
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
  }
  .profile-card:hover ul {
    visibility: visible;
    opacity: 1;
  }
  .profile-card h6 {
    color: var(--text);
    margin-bottom: 8px;
    text-transform: capitalize;
  }
  .profile-card p {
    text-transform: capitalize;
  }
  .profile-card ul,.profile-card-div ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .profile-card-div ul{top: 30px;}
  .profile-card ul li,.profile-card-div ul li {
    margin: 5px;list-style-type: none;
  }
  .profile-card ul li button,.profile-card-div ul li button {
    border: 0px;
    width: 30px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .profile-card ul .edit,.profile-card-div ul .edit {
    color: var(--green);
  }
  .profile-card ul .edit:hover,.profile-card-div ul .edit:hover {
    color: var(--white);
    background: var(--green);
  }
  .profile-card ul .trash,.profile-card-div ul .trash {
    color: var(--red);
  }
  .profile-card ul .trash:hover,.profile-card-div ul .trash:hover {
    color: var(--white);
    background: var(--red);
  }
  .profile-card.active {
    background: var(--green-chalk);
    border-color: var(--primary);
  }
  .payment-card {
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
    background: var(--chalk);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
  }
  .payment-card:hover button {
    visibility: visible;
    opacity: 1;
  }
  .payment-card img {
    margin-bottom: 18px;
  }
  .payment-card h4 {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
  }
  .payment-card p {
    color: var(--heading);
    margin-bottom: 5px;
  }
  .payment-card p span {
    font-size: 20px;
    margin-right: 15px;
    letter-spacing: 2px;
  }
  .payment-card p sup {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  .payment-card h5 {
    font-size: 14px;
    line-height: 22px;
    text-transform: capitalize;
  }
  .payment-card button {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    width: 30px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .payment-card .trash {
    color: var(--red);
  }
  .payment-card .trash:hover {
    color: var(--white);
    background: var(--red);
  }
  .payment-card.active {
    background: var(--green-chalk);
    border-color: var(--primary);
  }
  @media (max-width: 575px) {
    .payment-card p span {
      margin-right: 8px;
    }
  }
  .coupon-btn {
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: var(--primary-tshadow);
    border: none;
    outline: none;
    background: none;
  }
  .coupon-btn:hover {
    text-decoration: underline;
  }
  .coupon-form {
    padding: 3px;
    border-radius: 8px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--border);
    -webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    display: none;
  }
  .coupon-form:focus-within {
    border-color: var(--primary);
  }
  .coupon-form input {
    width: 100%;
    height: 38px;
    padding: 0px 15px;
  }
  .coupon-form button span {
    width: 100px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    border-radius: 8px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
  }
  .cart-checkout-btn {
    padding: 10px 0px;
    border-radius: 8px;
    background: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .cart-checkout-btn:hover {
    background: var(--heading);
  }
  .checkout-label {
    padding-right: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
  }
  .checkout-price {
    padding: 0px 25px;
    letter-spacing: 0.3px;
    color: var(--white);
    border-left: 1px solid var(--border);
  }
  .cart-list {
    height: 100%;
    padding: 0px 15px;
    max-height: calc(100vh - 210px);
    overflow-y: scroll;
  }
  .cart-item {
    padding: 15px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
  }
  .cart-item:hover .cart-media button {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .cart-item:last-child {
    border-bottom: none;
  }
  .cart-media {
    position: relative;
    margin-right: 25px;
  }
  .cart-media a img {
    width: 100px;
    border-radius: 8px;
  }
  .cart-media button {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .cart-media button i {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    color: var(--red);
    background: rgba(255, 255, 255, 0.9);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .cart-media button i:hover {
    color: var(--white);
    background: var(--red);
  }
  .cart-info-group {
    width: 100%;
  }
  .cart-info {
    margin-bottom: 13px;
  }
  .cart-info h6 {
    font-weight: 400;
    text-transform: capitalize;
  }
  .cart-info h6 a {
    color: var(--heading);
  }
  .cart-info p {
    font-size: 14px;
  }
  .cart-action-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .cart-action-group .product-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cart-action-group .product-action button i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 5px;
  }
  .cart-action-group .product-action input {
    width: 45px;
    height: 36px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--primary);
    background: var(--chalk);
  }
  .cart-action-group h6 {
    font-weight: 500;
    color: var(--primary);
  }
  .cart-footer {
    padding: 20px 15px 0px;
    text-align: center;
    -webkit-box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
  }
  .alert {
    border: none;
    margin: 0px;
    padding: 0px 15px;
    border-radius: 0px;
  }
  .alert-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 20px;
    border-radius: 3px;
    background: var(--white);
    border-top: 3px solid var(--primary);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  }
  .alert-info p {
    font-weight: 500;
  }
  .alert-info p a {
    margin-left: 5px;
    text-decoration: underline;
  }

  .product-add {
    width: 100%;
    font-size: 15px;
    padding: 6px 0px;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--heading);
    background: var(--border);
    text-shadow: var(-primary-tshadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .product-add i {
    font-size: 14px;
    margin-right: 5px;
  }
  .product-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: none;
  }
  .product-action button i,.product-action a i {
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--chalk);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    cursor: pointer;
  }
  .product-action button i:hover,.product-action a i:hover {
    color: var(--white);
    background: var(--primary);
  }
  .product-action input {
    border: none;
    width: 100%;
    font-size: 15px;
    margin: 0px 5px;
    padding: 6px 0px;
    border-radius: 6px;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
  }
.chekout-coupon{margin:0 auto 5px;text-align:center}.checkout-charge{margin:0 auto}.checkout-charge ul{border-top:3px solid var(--primary)}.checkout-charge ul li{padding:15px 15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid var(--border)}.checkout-charge ul li:last-child{border-bottom:none}.checkout-charge ul li:last-child span{font-size:18px;font-weight:500;color:var(--primary)}.checkout-charge ul li span{font-weight:500;color:var(--heading);text-transform:capitalize}.checkout-charge ul li span small{font-size:14px;font-weight:400;margin-left:3px}.checkout-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-bottom:25px;margin-top:50px}.checkout-check input{width:15px;height:15px;margin-right:10px;margin-top:4px;cursor:pointer}.checkout-check label{line-height:22px}.checkout-check label a{color:var(--primary)}.checkout-check label a:hover{text-decoration:underline}.checkout-proced .btn{width:100%}.table-action .view i,.table-action .trash i{background:var(--chalk)}@media (max-width: 767px){.chekout-coupon,.checkout-charge{width:100%}.checkout-check{margin-top:15px}}
