/* CSS to block call button from showing on devices not likely to be phones */
@media (min-width: 569px) {
.mobile-button {
  display: none;
}
}


@media (max-width: 568px) {
.mobile-button {

height: 40px;
background-color: rgb(1, 56, 95);
display: block;
margin-top: 0px;
margin-bottom: 0px;
margin-right: auto;
margin-left: auto;
bottom: -2px;
right: 0;
left: 0;
position: fixed;
vertical-alignment: bottom;
z-index: 999;
text-align: center;
}

.call-icon {
    float: left;
    color: #ffffff;
}

.call-button {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 5px 0 5px;
}

.call-button p {
font-size: 25px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    line-height: 1.4;
    top: 3px;
}
.call-button a {
text-decoration: none;
}

#callbutton {
display: block;
}
}