.card-header {
    background-color: #1A3774;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
}

.card {
    border-radius: 0px;
    border: none;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.card-services {
    background-color: #1A3774;
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    padding: 10px 15px;
    font-weight: 600;
}

.card-services button {
    border: 1px solid white;
    background-color: white;
    color: #1A3774;
    padding: 6px 15px;
    font-weight: 700;
    transition: 0.2s;
}

.card-services button:hover, .card-services button:disabled {
    color: white;
    background-color: transparent;
    border: 1px solid white;
}

.list-result {
    width: 100%;
    list-style: none;
}

.list-result button {
    width: 100%;
    border: none;
    padding: 7px 15px;
    text-align: left;
    background-color: white;
    transition: 0.2s all linear;
}

.list-result button:hover {
    background-color: #f2f2f2;
    transform: translateY(-5%);
}


/* CART */
.cart-area {
    background-color: white;
    position: sticky;
    position: -webkit-sticky;
    top: 100px; /* required */
    padding: 0px 0px 20px;
    box-shadow: 1.2px 4.2px 3.6px rgba(0, 0, 0, 0.021),
      3.3px 11.6px 10px rgba(0, 0, 0, 0.03),
      7.8px 28px 24.1px rgba(0, 0, 0, 0.039), 26px 93px 80px rgba(0, 0, 0, 0.06);
  }

  .cart-head {
    width: 100%;
    height: fit-content;
    background-color: #1A3774;
    padding: 8px 20px 8px;
    display: flex;
    align-items: center;
  }

  .cart-head p {
    color: white;
    font-family: "Noto Sans", sans-serif;
  }

  .cart-body {
    margin-top: 10px;
    padding: 5px 20px 5px;
  }

  .cart-detail {
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
  }

  .cart-detail p {
    font-size: 16px;
  }

  /* KUPON */
  .kupon {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
  }

  .kupon input {
    width: 80%;
  }

  .kupon button {
    border: none;
    padding: 2px 20px 2px;
    background-color: #1A3774;
    color: white;
    font-family: "Noto sans", sans-serif;
    transition: 0.2s;
  }

  .kupon button:hover {
    background-color: #594cda;
  }

  /* Total */
  .total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
  }

  .checkout {
    padding: 8px 20px;
    background-color: #1A3774;
    border: 2px solid #1A3774;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    transition: 0.2s;
  }

  .checkout:hover {
    border: 2px solid #1A3774;
    background-color: transparent;
    color: #1A3774;
  }

  .card-box {
    display: flex;
    flex-direction: column;
    width: 130px; height: 130px;
  }

  .card-box h6 {
    font-size: 14px;
    color: #38486a;
  }

  .card-box.active {
    background-color: #1A3774;
    color: white;
  }

  .card-box.active h6 {
    color: white;
  }


  @media (width < 576px) {
    .card-box {
        width: 100px; height: 100%;
    }
  }

  .priceWrapper {
    display: flex;
    align-items: center;
  }

  .priceWrapper p {
    margin-right: 10px;
  }


  .delete-cart {
    background-color: #ED3237;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    padding: 10px;
    font-weight: 600;
    color: white;
  }

  .other-services-button {
    border: 1px solid #1A3774;
    width: 100%;
    padding: 8px;
    border-radius: 0.2rem;
    font-size: 12px;
    font-weight: 600;
    color: #1A3774;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    background-color: transparent;
}
