.floating_quick_escape {
width: 40px;
height:40px;
background-color: black;
position: fixed;
z-index: 10;
bottom: 15%;
right: 2px;
text-align: center;
border: 1px solid red ;
/*border-box means the border is 'exterior'/beyond box's specified dimensions; so will add to the box's overall size*/
box-sizing: border-box ;
}
.floating_quick_escape span {
font-weight: bold;
color: white;
display: inline-block;
padding:;
margin-top: 7px;

}

/*---TABLET MEDIA QUERY.--*/
@media screen and (max-width: 768px){
.floating_quick_escape {
display: none;
}
}