  .deal_summary_container {
    width: 100%;
    margin: 0;
    padding: 60px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
  }
  
  .deal{
    width: 80%;
    height: fit-content;
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border: 1px solid brown; */
  }
  
  .details{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
    /* border: 1px solid red; */
  }
  
  .left-details,.right-details{
      width: 50%;
      height: 20px;
      font-size: 1.5vw;
  }

  .left-details{
    display: flex;
    justify-content: start;
    align-items: center;
  }
  
  .right-details{
    text-align: center;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.08);;
    /* border: 1px solid black; */
    /* height: 100%; */
    /* width: 0%; */
  }

  .right-details h4{
    font-weight: 400 !important;
    font-size: 16px;

  }
  .left-details h4{
    font-weight: 500 !important;
    font-size: 16px;

  }
  
  .car-details{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .car-details h3, .left-total h3{
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .total{
    width: 100%;
  }
  
  .car-details h3, .left-total h3{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: start;
    padding: 10px;
    border-radius: 8px;
    background-color: #e9e9e9;
  }

  .submit-summary{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .right-total h4{
    font-size: 1.8vw;
    font-weight: 600;
  }

  #sub-sum{
    width: 9.5vw;
    height: 3vw;
    border-radius: 6px;
    background-color: #122A59;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  @media (max-width: 768px) {
    #sub-sum{
      width: 19.5vw;
      height: 4.5vw;
      font-size: 1.8;
    }
    .car-details h3, .left-total h3{
      font-size: 3vw;
    }

    .right-total h4{
      font-size: 3vw;
    }

    .left-details h4{
      font-size: 2.5vw;
    }
    .right-details h4{
      font-size: 2vw;
    }
  }
  @media (max-width: 480px) {
    #sub-sum{
      width: 19.5vw;
      height: 4.5vw;
      font-size: 2.4vw;
    }
    .car-details h3, .left-total h3{
      font-size: 3vw;
    }

    .right-total h4{
      font-size: 3vw;
    }

    .left-details h4{
      font-size: 2.4vw;
    }
    .right-details h4{
      font-size: 2vw;
    }
  }
  @media (max-width: 420px) {
    #sub-sum{
      width: 19.5vw;
      height: 4.5vw;
      font-size: 2.4vw;
    }
    .car-details h3, .left-total h3{
      font-size: 3.4vw;
    }

    .right-total h4{
      font-size: 2.4vw;
    }
  }
