/**/
        .modal{
          background: rgba(0, 0, 0, 0.7);
          width: 100%;
          height: 100vh;
          position: fixed;
          top: 0;
          z-index: 9999;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
        }
        
        .modalContainer{
          width: 25%;
          display: flex;
          flex-direction: column;
          padding: 20px;
          position: relative;
          background: #fff;
          border-radius: 8px;
        }

        .closeModal{
          color: #000;
          right: 15px;
          top: 20px;
          position: absolute;
          cursor: pointer;
          font-size: 1.175rem;
        }

        .closeModal i{
          font-weight: 600;
        }

        .modalTitle{
          display: flex;
          flex-direction: row;
          align-items: center;
          /* border-bottom: 1px solid #ddd;     */
          padding: 0 0 .25rem;
          margin-bottom: 15px;
          justify-content: space-between;
        }

        .modalTitleIcon {
          display: flex;
          flex-direction: row;
          align-items: center;
        }

        .modalTitle .input-default{
          margin: 0!important;
        }

        .modalTitle h1 {
          font-size: 16px;
          padding: 0;
          margin: 0 0 0 4px;
        }

        .modalContent{
          margin: 16px 0;
          padding: 0 20px;   
        }

        .modalInfo h1{
          margin-left: 8px;
          font-size: 16px;
        }

        .modalInfo h2{
          font-size: 1.0em;
          font-weight: 500;
          margin: 0;
          padding: 0;
        }

        .flex-row{
          align-items: baseline;
        }

        .modalForm{
          margin-bottom: 15px;
          padding: 0 20px;
        }
        
        .btn-modal {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin: .375rem 1rem 0;
          padding: 1rem 1.75rem;
          border: 1px solid rgba(154,154,154,.2);
          background: #fff;
          cursor: pointer;
        }

        .modalFormStatus{
          font-size: 15px!important;
          font-weight: 400!important;
        }

        .modalBtn{
          margin: 16px 0 0;
          padding: 0.725rem 1.5rem;
          border: 0;
          border-radius: 5px;
          background: #46A049;
          color: #fff;
          font-size: 16px;
          font-weight: 600;
          cursor: pointer;
        }

        .modalPeriod{
        display: flex;
        padding-top: 24px;
        justify-content: end;
        align-items: center;
        margin-right: -1.175rem;
      }
    
      .modalInput{
       width: 100%; 
      }

      .btn-modal:hover {
        background: #0131ff;
        filter: contrast(250%) brightness(150%);
      }

      .btn-modal {
        color: #fff;
        background: #0131ff;
        margin-right: 1rem;
        padding: 0.775rem 1.175rem;
        border: 0;
        border-radius: 8px;
        font-weight: 600;
        font-size: .935rem;
        cursor: pointer;
        display: flex;
        width: fit-content;
      }