

/* 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.6); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal .modal-content {
    background-color: #dbc274;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #2d404a;
    max-width: 440px; /* Could be more or less, depending on screen size */
    border-radius: 0;
  }

  .modal .modal-content h2 {
    border: none;
    padding-left:0;
    padding-top:0;
    margin-top:0;
    padding-bottom:0;

  }

  .modal .error {
    font-weight: bold;
    color: red;
    display: none;
    line-height: 1.6rem;
  }

  .modal .success {
    font-weight: bold;
    color: green;
    display: none;
    line-height: 1.6rem;
  }
  
  /* The Close Button */
  .modal .close {
    color: #2d404a;
    float: right;
    font-size: 28px;
    font-weight: bold;
    opacity: 1;
  }
  
  .modal .close:hover,
  .modal .close:focus {
    color: #2d404a;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* The floating button */
  #free_consultation_modal_opener_button.floating-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
    font-size: 18px;
    border: 2px solid #2d404a;
    outline: none;
    background-color: #dbc274;
    color: #2d404a;
    cursor: pointer;
    padding: 15px;
    border-radius: 0.5rem;
    font-weight: bold;
  }
  
  #free_consultation_modal_opener_button.floating-button:hover {
    background-color: #2d404a;
    color: #ffffff;
  }
  