.popup {
}
.popup:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 20000;
}
.popup__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: calc(50vh - 165px);
  z-index: 20001;
}
.popup__content {
  margin: 0 auto;
  width: calc( 1303px * 0.9 );
  box-sizing: border-box;
  height: 329px;
  font-family: Roboto;
  font-size: 19px;
  padding: 2em 3em;
  padding-left: calc( 495px + 3em );
  background: #fff url(getimage.jpg) left top no-repeat;
  position: relative;
  cursor: default;
}

.popup__next {
  position: absolute;
  right: 2em;
  bottom: 2em;
  background: transparent url(next.jpg) top right no-repeat;
  width: 184px;
  height: 46px;
}
.popup__closebutton {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.popup__closebutton:before,
.popup__closebutton:after {
  content: '';
  position: absolute;
  border-left: 2px solid rgba(0,0,0,0.3);
  width: 0;
  height: 60%;
  top: 20%;
  left: 50%;
}
.popup__closebutton:before {
  transform: rotate(-45deg);
}
.popup__closebutton:after {
  transform: rotate(45deg);
}
@media screen and (max-width: 1100px){
  .popup__next{
    display: none;
  }
}
@media screen and (max-width: 1100px){
  .popup__content{
    font-size: 16px;
  }

}
@media screen and (max-width: 900px){
  .popup__content{
    font-size: 14px;
  }

}
@media screen and (max-width: 800px){
  .popup__wrapper {
    padding-top: calc(37vh - 165px);
  }
  .popup__content{
    padding-left:0;
    width: 100%;
    height: 65%;
    background-size: 100%;
    padding-left: 10px;
    padding-top:calc(80% - 3em) ;
  }
  .popup__content p
  {
    font-size: 12px !important;
  }
.popup__closebutton:before,
.popup__closebutton:after {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}
.popup__next {
  display: inline-block;
  background-size: 85%;
  right: 0.5em;
  bottom: 0.5em;
  width: 134px;
  height: 36px;
}


}
@media screen and (max-height: 850px) and(max-width:1000px){
  .popup__next {
    width: 134px;
    height: 36px;
  }
}

