/*  LAST UPDATED BY RS ON 6/2/23 */

.controls {
    background: red;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 1000000;
    display: none;
    text-align: center;
}

.select-wrap {
    display: inline-block;
  font-size: 0.8em;
}

.controls button {
    margin: 0 15px;
    display: inline-block;
    background: white;
    margin: 5px 15px;
    padding: 10px;
    border-radius: 7px;
    transition: 0.4s all;
    font-size: 0.8em;
}

.controls button:hover {
   background: #ddd;
   text-decoration: underline;
}

.full-width {
    max-width: 100%;
    flex: none;
    padding-right: 0;
}

.tiles, .faqBlock, .slidetext {
    display: none;
}

.escape-button {
    background: #dc0050;
    color: #fff;
    font-weight: bold;
    border: none;
    font-size: 1.2em;
    padding: 7px 20px;
    width: 100%;
    border-radius: 10px;
    transition: 0.4s all;
    position: relative;
}

.escape-button:before {
    content: "\f06a";
    font-family: "FontAwesome";
    font-size: 1.2em;
    position: absolute;
    left: 10px;
    top: 10%;
} 

.escape-button:after {
    content: "\f06a";
    font-family: "FontAwesome";
    font-size: 1.2em;
    position: absolute;
    right: 10px;
    top: 10%;
} 

.escape-text {
    display: inline-block;
    width: 80%;
}
    
 .escape-button:hover {
     background: #a9003d;
 }
 
.escape-button:hover .escape-text {
    text-decoration: underline;
}

@media only screen {
    
  .controls { 
    display: block;
  }
  
}

