/** Modal for browser not allowed **/
#browser-not-supported {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  right: 0;
}
  
#browser-not-supported .modal {
  position: relative;
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px;
}
  
#browser-not-supported .modal .modal-header {
  text-align: center;
}
  
#browser-not-supported .modal-header h1 {
  margin-bottom: 0;
}
  
#browser-not-supported .modal-content {
  text-align: center;
  margin-top: 30px;
}
  
#browser-not-supported .modal-content p {
  color: $text_color;
  font-size: 20px;
}

#browser-not-supported .modal-content a {
  font-weight: bold;
  text-decoration: none;
}