#ms_popup{
 position: relative;
 width: 50%; 
 max-width: 480px; 
}

/*For browser/screen widths less than 768px*/
@media only screen and (max-width: 768px) {
    #ms_popup {
        width: 75%;
        max-width: 75%;
    }    
}
@media only screen and (max-width: 480px) {
    #ms_popup {
        width: 100%;
        max-width: 100%;
    } 
}

#ms_popup #ms_popup_inner {
  border: 0px solid black;
  border-radius: 15px;
  background-color: white;
 
  /* Prevent background color leak outs 
  -webkit-background-clip: padding-box; 
  -moz-background-clip:    padding; 
  background-clip:         padding-box;*/
  
  overflow:hidden;
}

#ms_popup #exclamation-point {
  position: absolute;
  top: -20px; left: -20px;  
  width: 72px; height: 73px;
  background: transparent url(../ms_img/ms-exclamation.png) no-repeat top left; 
}
@media only screen and (max-width: 480px) {
  #ms_popup #exclamation-point {
    top: -55px; left: 0px;  
    opacity: .5;
  }
}
 
#ms_popup h3 {
  background-color: #2c92c5;
  color: white !important;
  text-transform: uppercase;
  text-align: center !important;
  margin: 0em 0em 0em 0em;
  padding: 5px 5px;
  font-size: 21px;
}
#ms_popup #ms_content{
  padding: 0em 1em 1em 1em;
}


#ms_popup #ms_instructions {
  color: #666;
  text-align: center;  
  margin: 10px 0px 10px 0px;
}


#ms_popup #ms_inputs {
  //width: 50%;
  margin: 0px auto; 
  text-align: center;
}
#ms_popup input#ms_phone{
  width: 50%;
  min-width: 220px;
  /*max-width: 220px;*/
  height: 50px;
  font-size: 1.5em;
  text-align: center;
  margin: 0px auto; 
}
@media only screen and (max-width: 480px) {
  #ms_popup input#ms_phone{
    width: 80%;
  }
}



#ms_error { color: red; }


#ms_popup  #ms_footer a { 
  display: block;
  padding: 0px 10px 2px 10px;
  float: right;
  margin: 0px 20px 0px 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px; 
  background-color: #61747e;
  color: white;
  text-decoration: none;
}
#ms_popup  #ms_footer a:hover { 
  text-decoration: underline;
}

a.ms-start-link {
    display: block;
    border-radius: 30px;
    text-decoration: none;
    background: #428BCA;
    color: #fff;
    font-family: Sans-serif;
    font-size: 20px;
    height: 50px;
    width: 275px;
    line-height: 50px;
    margin: 20px auto 0px auto;
    text-align: center;
    border: 0;
    transition: all 0.3s ease 0s;
}
a.ms-start-link:hover{
  background: #2c92c5;
  text-decoration: underline;
}