
/* Guideline */
/* $color-primary: #002554;
$color-secundary: #C5003E;
$color-tertiary: #FFC72C; */
/* Site institucional */
/* COOKIES MODAL */
#in-cookie {
  width: 100%;
  height: 100%;
  display: none;
  position: relative; }
  #in-cookie .in-cookie-overlay {
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5); }
  #in-cookie .in-cookie-modal {
    left: 0;
    right: 0;
    top: 10%;
    width: 100%;
    z-index: 999;
    padding: 2rem;
    max-width: 40%;
    margin: 0 auto;
    position: fixed;
    font-size: 1rem;
    max-height: 90%;
    border: inherit;
    overflow-y: auto;
    border-radius: 0;
    overflow-x: hidden;
    background: white;
    box-shadow: 0 0 1.5rem -1rem black; }
    @media (max-width: 1600px) {
      #in-cookie .in-cookie-modal {
        max-width: 50%; } }
    @media (max-width: 1200px) {
      #in-cookie .in-cookie-modal {
        max-width: 60%; } }
    @media (max-width: 992px) {
      #in-cookie .in-cookie-modal {
        max-width: 70%; } }
    @media (max-width: 768px) {
      #in-cookie .in-cookie-modal {
        max-width: 90%; } }
    #in-cookie .in-cookie-modal .in-cookie-modal-grid {
      gap: 2.5rem;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, auto); }
      #in-cookie .in-cookie-modal .in-cookie-modal-grid > div:nth-child(1) > p {
        font-size: 1.1rem;
        line-height: 1.75rem;
        color: rgba(0, 29, 70, 0.8);
        font-family: FuturaCom-Medium, sans-serif; }
      #in-cookie .in-cookie-modal .in-cookie-modal-grid > div:nth-child(2) {
        gap: 1.5rem;
        display: grid;
        align-items: center;
        justify-content: flex-end;
        grid-template-rows: auto;
        grid-template-columns: repeat(2, auto); }
        @media (max-width: 576px) {
          #in-cookie .in-cookie-modal .in-cookie-modal-grid > div:nth-child(2) {
            grid-template-columns: 1fr; } }
        #in-cookie .in-cookie-modal .in-cookie-modal-grid > div:nth-child(2) > button:nth-child(1) {
          border: inherit;
          font-size: 1.1rem;
          background: inherit;
          color: #D2003C; }
        #in-cookie .in-cookie-modal .in-cookie-modal-grid > div:nth-child(2) > button:nth-child(2) {
          color: white;
          padding: 0.5rem;
          border: inherit;
          font-size: 1.1rem;
          padding: 1rem 1.5rem;
          background: #D2003C; }
          #in-cookie .in-cookie-modal .in-cookie-modal-grid > div:nth-child(2) > button:nth-child(2):hover {
            opacity: 0.9;
            transition: all 0.25s ease-out; }

#in-cookie.in-open {
  display: block !important; }
