/* Loading overlay */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
  }

  .loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


/* START puntofisso additions */

.teleprompt-divs {
  border: dashed 1px;
  margin-bottom: 1px;
}


.button-puntofisso {
    background: #0055FF;
    color: white;
    
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 85, 255, 0.1), 0 2px 4px -1px rgba(0, 85, 255, 0.06);
    
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0055ff;
  text-decoration: none;
  top: 0;
  left: 0px;
  margin-left: 70px !important;
  margin-right: 70px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  } 


.logo a {
  text-decoration: none;
}
.logo a:visited {
  text-decoration: none;
  color: #0055ff;
}

/**
 *  Modal
 */

 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  text-align: justify;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  color: #000;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#get-about {
  color: #999;
  background: #00000000;
   
  top: 0;
  left: 10px;
  position: absolute;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: block;
  line-height: 60px;
  text-decoration: none;
  text-align: center;
  font-size: 40px;
  transition: color 0.25s;
  border: none;
}