.footerpopup{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
}

.footerpopup.active {
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 9999999;
}

.footerpopup .pane{
    background-color: #ffffff;
    max-width: 800px;
    width: 95%;
    height: 80%;
    border-radius: 3px;
    box-shadow: 0px 0px 8px rgb(1 1 1 / 32%);
    max-height: 625px;
    position: relative;
}

.footerpopup .body  {
    position: relative;
    overflow: hidden;
    width: calc(100% - 100px);
    margin: 0 50px;
    border: 1px solid #B5B5B5;
    height: calc(100% - 125px);
}

.footerpopup iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.footerpopup .title{
    font-size: 18px;
    font-family: Helvetica;
    text-align: center;
    color: #7F7F7F;
    font-weight: normal;
    height: 60px!important;
    overflow: hidden;
    display: block;
    line-height: 60px;
    padding-top: 16px;
}

.footerpopup .closer{
    position: absolute;
    top: 7px;
    right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 512px) {
    .footerpopup .body  {
        width: calc(100% - 4px);
        height: calc(100% - 90px);
        margin: 0 2px;
    }
  }