#MyPopup{
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
}

#MyPopup .bg{
  display: block;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
}

#MyPopup .content{
  display: block;
  background: rgba(255, 255, 255);
  width: 600px;
  height: 573px;
  position: absolute;
  margin-left: 50%;
  left: -300px;
  border-radius: 24px;
  top: 50%;
  margin-top: -293px;
}

#MyPopup .content .close{
  position: absolute;
  right: 0;
  margin: 17px 19px;
  cursor: pointer;
}

#MyPopup .content .title{
  display: block;
  font-size: 30px;
  color: #000;
  text-align: center;
  font-family: "gt_walsheimregular";
  line-height: 33px;
  margin: 27px 52px 12px;
}

#MyPopup .content .txt{
  display: block;
  font-size: 16px;
  color: #000;
  text-align: center;
  font-family: "gt_walsheimlight";
  line-height: 20px;
  margin: 0 48px 12px;
}

#MyPopup .content a {
  color: #D3282D;
  text-decoration: none;
  text-align: left;
  font-size: 20px;
  font-family: "gt_walsheimlight";
  position: relative;
  left: 50%;
  margin: 0 0 24px -115px;
  display: block;
  width: 270px;
}

#MyPopup .content a span {
  position: relative;
  margin-left: 35px;
}

#MyPopup .content a span img {
  position: absolute;
  left: -35px;
  top: -1px;
}

#MyPopup .content span.visu{
  position: absolute;
  width: 100%;
  left: 0;
  border-radius: 0 0 24px 24px;
}

#MyPopup .content span.visu img{
  margin: 0;
  border-radius: 0 0 24px 24px;
  width: 100% !important;
}

@media only screen and (max-width: 480px) {

  #MyPopup .content{
    display: block;
    background: rgba(255, 255, 255);
    width: 400px;
    height: 586px;
    position: absolute;
    margin-left: 50%;
    left: -200px;
    border-radius: 24px;
    top: 50%;
    margin-top: -293px;
  }

  #MyPopup .content span.visu img{
    width: 321px !important;
  }

  #MyPopup .content span.visu{
    height: 230px;
  }

  #MyPopup .content .close{
    margin: 25px 19px;
  }

}








