
.btn-wrapper .btn {
  display: inline-block;
  line-height: 1;
  background-color: #818a91;
  font-size: 15px;
  padding: 12px 24px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  text-align: center;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  font-family:roboto;
  transition: all .3s;
  font-size: 20px;
  font-weight:500;
  padding: 25px 50px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  width: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #58479A;
  text-decoration: none;
}
.btn-wrapper .btn.popup-btn{
  display: inline-block;
  text-decoration: none;
  background-color: #ff1493;
  color: white;
  border: 2px solid #fff;
  cursor: pointer;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 60px;
  text-align: center;
  margin: 0;
  height: 60px;
  padding: 0px 40px;
  border-radius: 5px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor:pointer;
  letter-spacing: 2px;
  width:30%;
}

.btn-wrapper .btn.popup-btn:hover{
  border: 2px solid #00a1b4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: none;
}
.popup__Overlay.visible{
  visibility: visible;
  opacity: 1;
  z-index:2;
}
.popup__Overlay{
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease 0s, visibility 0s linear 0s;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  overflow: auto;
  inset: 0px;
  z-index: -1;
  min-height: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.popup__Overlay.visible iframe{
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.popup__Overlay iframe{
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .3s,-webkit-transform .3s;
  -webkit-transform: translateX(-500px);
  transform: translateX(-500px);
}
.popup__Overlay .popup__BaseWrapper{
  visibility: visible;
  opacity: 1;
  position: fixed;
  max-width: 100%;
  z-index: 10001;
  min-width: 360px;
  min-height: 360px;
  transition: all 400ms ease-out 0s;
  width: 800px;
  height: 100%;
  top: 0px;
  left: 0px;
}

.popup__Overlay img {
  position: absolute;
  padding: 8px;
  cursor: pointer;
  width: initial;
  max-width: initial;
  top: 12px;
  right: -38px;
}
@media (max-width:1600px){
.btn-wrapper .btn.popup-btn {
    width: auto;
}
}
@media (max-width:880px){
  .popup__Overlay img{
    right:0;
  }
  .popup__Overlay iframe{
    width: calc(100% - 30px );
    margin-left: 0!important;
  }
}
@media (max-width:479px){
.btn-wrapper .btn.popup-btn {
    width: 100%;
    padding: 0 15px;
    font-size: 13px;
}
}