.img-replace {
display: inline-block;
overflow: hidden;
text-indent: 100%; 
color: transparent;
white-space: nowrap;
}
.bts-popup {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0s 0.3s;
z-index: 999;
}
.bts-popup.is-visible {
opacity: 1;
visibility: visible;
transition: opacity 0.3s, visibility 0s 0.3s;
}
.bts-popup-container {
position: relative;
width: 90%;
max-width: 400px;
margin: 4em auto;
/*background: #f36f21;*/
border-radius: none; 
text-align: center;
transform: translateY(-40px);
transition-property: transform;
transition-duration: 0.3s;
}
.bts-popup-container img {
padding: 20px 0 0 0;
}
.bts-popup-container p {
color: white;
padding: 10px 40px;
}
.bts-popup-container .bts-popup-button {
padding: 5px 25px;
border: 2px solid white;
display: inline-block;
margin-bottom: 10px;
}
.bts-popup-container a {
color: white;
text-decoration: none;
text-transform: uppercase;
}
.bts-popup-container .bts-popup-close {
position: absolute;
top: 28px;
right: 8px;
width: 30px;
height: 30px;
}
.bts-popup-container .bts-popup-close::before, .bts-popup-container .bts-popup-close::after {
content: '';
position: absolute;
top: 12px;
width: 16px;
height: 3px;
background-color: white;
}
.bts-popup-container .bts-popup-close::before {
transform: rotate(45deg);
left: 8px;
}
.bts-popup-container .bts-popup-close::after {
transform: rotate(-45deg);
right: 6px;
top: 13px;
}
.is-visible .bts-popup-container {
transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
.bts-popup-container {
  margin: 8em auto;
}
}
body.popup-opened {
filter: blur(5px);
overflow: hidden;
}
.bts-popup.is-visible + body {
filter: blur(5px);
overflow: hidden;
}