/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.blink {
  
    color: red;
    font-weight: bold;
  }
  
  
  
  .locations p{
    float: left;
    font-weight: bold;
    padding-left:0.6% ;
    color: white;
    font-size: 15px;
  }
  .locations p:hover{
    color:rgb(6, 238, 87);
    transition: 0.5s all;
    text-shadow: 0px 0px 5px skyblue;
  }
  
  .popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    z-index: 9999;
    display: none;
  }
  .popup-inner {
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 300px;
    position: relative;
    display: table;
    margin: auto;
    z-index: 9999;
    top: 90px;
    box-sizing: border-box;
    max-width: 100%;
    margin-top: 70px;
   
    box-shadow: 0px 0px 10px rgb(75, 218, 75);
  }
  .popup .close {
    cursor: pointer;
    height: 34px;
    width: 34px;
    position: absolute;
    right: 0px;
    top: -44px;
    color: #fff;
    font-size: 30px;
    font-family: monospace;
    font-weight: 300;
  }
  .form-group input{
    width: 80%;
    margin: auto;
  }
  .form-group input select{
    width: 80%;
    margin: auto;
  }
  .popup .close:hover {
  }
  
  .popup-content {
    box-sizing: border-box;
  }
  
  @media only screen and (max-width: 768px) {
    .popup-inner {
      width: 80% !important;
    }
  }
  
  /* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
  