/* Reset de estilos para quitar márgenes y rellenos predeterminados */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --bg-color: linear-gradient(90deg, #EDF2FC 9.79%, #F7F9FD 93.81%);
    --form-bg-color: #fcfdff;
    --border-input: #e5e7eb;
    --accent-color: #3ca4e9;
    --alert-color: #dc3545;
    --heading-text-color: #0A0B29;
    --body-text-color: #242542;
    /* List colors variables */
    --list-text-color: #303030;
    --reclamo-bg-color: #E0ABFF;
    --reclamo-text-color: #32004F;
    --queja-bg-color: #E0F0FF;
    --queja-text-color: #00527C;

    --pending-bg-color:  rgba(0, 0, 0, 0.06);
    --pending-text-color: #616161;

    --success-bg-color: #87FFA9;
    --success-text-color: #0C5132;

    --saved-bg-color: rgba(255, 122, 0, 0.59);
    --saved-text-color: #874204;

    --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
  }

body {
    background: var(--bg-color);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    color: var(--heading-text-color)
  }
 
  button,
  input,
  textarea{
    font-family: var(--font);
  }


  /* Modals */


  .overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--size-0, 0px);
    background: rgba(2, 3, 33, 0.30);
    z-index: 99;
  }

  .modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  

  .modal__container{
    width: 95%;
    max-width: 650px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
  }

  .modal__form textarea{
    width: 100%;
    min-height: 200px;
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
    resize: none;
    padding: 16px;
  }

  .modal__form textarea::placeholder{
    color: #B8B8B8;
  }

  .secontary__buttons button{
    font-weight: 550;
  }

  .submit__buttons.end{
    justify-content: end;
    gap: 15px;
  }

  .hidden{
    display: none;
  }

  .modal__container--success{
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 250px;
  }
  .modal--success i{
    margin: 40px 0;
    font-size: 100px;
    display: block;
    color: #0DC409;
  }

  .modal--success p{
    font-size: 32px;
    font-weight: 550;
  }