.modal_bloqueo{
  position: relative;
  width: 100%;
  padding: 10px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  top: -10px;
  padding-top: 20px;

  .select-modal{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

    .info{
      font-size: var(--font-size-normal-S360);
      color: var(--color-text-S360);
    }
    .text{
      font-size: var(--font-size-normal-S360);
      color: var(--color-text-S360);
      margin-top: 5px;
    }
  }

  .div_conten-btn{
    display: flex;
    justify-content: center;
    margin-top: 15px; /* Espacio entre el texto y los botones */
    width: 100%;

    .content-button{
      width: 20%;
      display: flex;
      gap: 10px;
      justify-content: space-around;

      #btn_confirmar, #btn_cancelar{
        width: 65px !important;
        height: 35px !important;

      }
    }

  }

}

