#openModalBtn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .modal {
    display: none; 
    position: fixed; 
    z-index: 2; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto;
    background-color: rgb(0, 0, 0); 
    background-color: rgba(0, 0, 0, 0.4); 
    padding-top: 60px;
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #F8F8F8;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 30%; 
    border-radius: 10px;
  }

  .modal .modalTitle .title{
    font-size: 30px;
    font-weight: 700;
    color: #2d2d2d;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
  }

  .modal .modalSubtitle .subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
    text-align: center;
  }

  .modal .modalInput .label{
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
  }

  .modal .modalInput{
    margin: 20px 0;
  }

  .modal .modalInput .inputBox{
    width: 100%;
    margin-top: 12px;
  }

  .modal .modalInput .input{
    border: none;
    border-radius: 10px;
    background: #ffffff;
    color: #2d2d2d;
    outline: none;
    padding: 5px 10px;
    width: 100%;
  }

  .modalBtn .btn {
    background: #EC2030;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    font-size: 17px;
    font-weight: 400;
    border: none;
    width: 100%;
  }

  .modalClose{
    display: flex;
    justify-content: flex-end;
  }
  
  .close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }
  
  .close-btn:hover,
  .close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }


  
  .modalRent {
    display: none; 
    position: fixed; 
    z-index: 2; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4); 
    padding-top: 60px;
  }

  .modalRent .modalTitle .title{
    font-size: 30px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
  }

  .modalRent .modalSubtitle .subtitle{
    font-size: 18px;
    font-weight: 400;
    color: #2d2d2d;
    margin: 10px 0;
  }
  .modalRent .modalBodyItems{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .modalRent .modalBodyItems .modalItem{
    background: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    column-gap: 30px;
  }

  .modalRent .modalText .text{
    font-size: 18px;
    font-weight: 500;
    color: #2d2d2d;
  }


  .modalItem .itemImage{
    width: 30%;
  }

  .modalItem .itemInfo{
    width: 50%;
  }

  .modalItem .itemInfo .infoTitle .title{
    font-size: 17px;
    font-weight: 600;
    color: #2d2d2d;
  }

  .modalItem .itemInfo .infoSubtitle .subtitle{
    font-size: 17px;
    font-weight: 400;
    color: #2d2d2d;
  }
  .modalItem .itemInfo .infoSubtitle .subtitle .number{
    font-size: 17px;
    font-weight: 600;
    color: #2d2d2d;
  }

  .modalRent .modalClose{
    display: flex;
    justify-content: flex-end;
  }
  
  .close-modal-rent {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }
  
  .close-modal-rent:hover,
  .close-modal-rent:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  @media screen and (max-width: 991px){
    .modalRent .modal-content{
        width: 60%;
    }
  }


  @media screen and (max-width: 850px){
    .modal-content {
        width: 50%;
    }
    .modal .modalTitle .title{
        font-size: 24px;
    }
    .modal .modalSubtitle .subtitle{
        font-size: 12px;
    }

    .modalRent .modal-content{
        width: 80%;
    }
  }

  @media screen and (max-width: 550px){
    .modal-content{
        width: 70%;
    }
    .modal .modalTitle .title{
        font-size: 18px;
    }

    .modalBtn .btn{
        font-size: 14px;
    }
    .modal .modalSubtitle .subtitle{
        font-size: 10px;
    }
    .modalRent .modalTitle .title{
        font-size: 24px;
        margin: 0;
    }
    .modalRent .modalSubtitle .subtitle{
        font-size: 14px;
        margin: 0;
    }
    .modalRent .modalText .text{
        font-size: 14px;
        margin: 0;
    }
    .modalItem .itemInfo .infoTitle .title{
        font-size: 14px;
    }
    .modalItem .itemInfo .infoSubtitle .subtitle{
        font-size: 14px;
    }
    .modalItem .itemInfo .infoSubtitle .subtitle .number{
        font-size: 14px;
    }
  }

  @media screen and (max-width: 550px){
    .modal-content{
        width: 90%;
    }
    .modal .modalTitle .title{
        font-size: 14px;
    }
    .modalRent .modalBodyItems{
      padding: 20px 0;
    }
    .modalBtn .btn{
        font-size: 12px;
    }
    .modal .modalSubtitle .subtitle{
        font-size: 10px;
    }
    .modalRent .modalTitle .title{
        font-size: 18px;
        margin: 0;
    }
    .modalRent .modalSubtitle .subtitle{
        font-size: 12px;
        margin: 0;
    }
    .modalRent .modalText .text{
        font-size: 12px;
        margin: 0;
    }
    .modalItem .itemInfo .infoTitle .title{
        font-size: 12px;
        margin: 0;

    }
    .modalItem .itemInfo .infoSubtitle .subtitle{
        font-size: 12px;
        margin: 0;
    }
    .modalItem .itemInfo .infoSubtitle .subtitle .number{
        font-size: 12px;
        margin: 0;
    }
  }