.container-input {
    display: flex;
    flex-direction: column;
  }
  
  .form-response {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
  }

  .article-modal{
    position: relative;
  }
  
  .btn-form {
    padding: 10px;
    background-color: #1975C5;
    color: white;
    border: transparent;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn-form:hover {
    background-color: #1f7fd3;
  }
  
  .lbl-form {
    font-size: 12px;
    margin-bottom: 5px;
  }

.inpt-form {
    height: 40px;
    padding: 3px;
    box-sizing: border-box;
    background-color: #F0F6FB;
    border: 1px solid transparent;
    outline: none;
    width: 100%;
}
  
  .inpt-form:focus {
    border-bottom: 2px solid #1975C5;
  }

  .inpt-form-file{
    display: none;
  }

  .container-input-custom{
    display: flex;
    justify-content: center;
  }

  .label-file-input{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 350px;
  }

  .container-file-input{
    display: flex;
    flex-direction: column;
    background-color:#1975C5;
    color: white;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 50px;
    box-sizing: border-box;
  }

  .file-selected{
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: auto;
    max-width: 250px;
    text-align: center;
  }


.validate-summary {
    box-sizing: border-box;
    padding-left: 30px;
    width: 100%;
    font-size: 12px;
}

.container-label{
    display: flex;
    flex-direction: row;
}


.annotation-alert {
    color: red;
    font-size: 11px;
    padding-left: 5px;
}


  
  .swith {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin: 5px;
  }
  
  .swith input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dddcdc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .swith input:checked+.slider {
    background-color: #1975C5;
  }
  
  .swith input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  .swith input:checked+.slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(24px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  /* Asitente de IA */
  .containerIA{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
  }

  .btn-IA{
    position: absolute;
    top: -130px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #1975C5;
    color: white;
    border: solid 1px transparent;
    cursor: pointer;
    z-index: 3;
  }

  .title-ia{
    position: absolute;
    top: -117px;
    right: 50px;
    opacity: 0;
    font-size: 14px;
    transition: opacity .3s ease-out;
    z-index: 1;
  }

  .btn-IA:hover + .title-ia{
    opacity: 1;
  }

  .loading-form{
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 100;
    border-radius: 0px 0px 5px 5px;
    height:calc( 100% - 65px);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.774);
    display: none;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .loading-form.show{
    display: flex;
  }

.input-search {
    display: flex;
    flex-direction: row;
    gap: 3px;
}

.btn-add {
    width: 40px;
    border-radius: 100%;
    border: transparent;
    cursor: pointer;
}

    .btn-add:hover {
        background-color: #f7f7f7;
    }

    .btn-add:active {
        background-color: #e0e0e0;
    }

.section-selection {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ced4da;
}

.label-selection {
    width: 150px;
    font-weight: bold;
    text-align: left;
}

.search-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: end;
}

.btn-search {
    width: 300px;
    height: 40px;
    padding: 3px;
    box-sizing: border-box;
    background-color: #F0F6FB;
    border: 1px solid #cccccc;
    outline: none;
}

    .btn-search:focus {
        border-bottom: 2px solid #1975C5;
    }
