/* Modal ie */
.modal-ie {
    position: fixed; 
    top: 0 ;
    height: 100%; 
    width: 100%; 
    background: white; 
    display: none; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    z-index: 9999999999999;
  }
  
  .modal-ie.on {
    display: flex; 
  }
  
  .modal-ie-logo {
    background-image: url(../../../images/logo.png);
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100px; 
    height: 100px;  
  }
  
  .modal-ie-text {
    font-size: 20px; 
    font-family: "Source Sans Pro";
  }
  
  .modal-ie-links {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    width: 60%;   
  }
  
  .chrome-link {
    background-image: url(../../../images/browsers/chrome.png);
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100px; 
    height: 100px; 
  }
  
  .firefox-link {
    background-image: url(../../../images/browsers/firefox.png);
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100px; 
    height: 100px; 
  }
  
  .safari-link {
    background-image: url(../../../images/browsers/safari.png);
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100px; 
    height: 100px; 
  }
  
  .edge-link {
    background-image: url(../../../images/browsers/edge.png);
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100px; 
    height: 100px; 
  }