* {
  box-sizing: border-box;
  
}

.popup-wrapper{
 
  background: rgba(0, 0, 0, .5);
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999999999999;
  width: 100%;
  height: 100%;
  animation: 1s ease-out 0s 1 popupanimation;
}

@keyframes popupanimation {
  0% {
    transform:scale(0);
    background: rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(100%);
    background: rgba(255, 255, 255, 0);
  }
 
}


.popup{
  font-family: arial;
  text-align: center;
  max-width: 490px;
  margin: 5% auto;
  position: relative;
  background-color: #686565;
  
  
}


.popup img {
  height: 539px;
  width: 100%;
  padding: 10px;
}
.popup-close{
  position: absolute;
  top: -20px;
  bottom: -20px;
  right: -20px;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  background-color: #686565 ;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  border: none;

}
@media only screen and (min-width: 320px) and (max-width: 480px)  {
  
  .popup img {
    height: 400px;
    width: 100%;
    padding: 10px;
   
}

.popup{
  font-family: arial;
  text-align: center;
  width: 100%;
  
  background-color: #686565;
  margin-top: 10%;
}

.popup-close{
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0px;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  font-weight: 800;
  background-color: #686565 ;
  border-radius: 200px;
  width: 45px;
  height: 45px;
  border: none;

}

}

@media only screen and (min-width: 481px) and (max-width: 768px)  {
  
  .popup img {
    height: 500px;
    width: 100%;
    padding: 10px;
   
}

.popup{
  font-family: arial;
  text-align: center;
  width: 80%;
  background-color: #686565;
  margin-top: 30%;
}

.popup-close{
  position: absolute;
  top: -20px;
  bottom: -20px;
  right: -10px;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  font-weight: 800;
  background-color: #686565 ;
  border-radius: 200px;
  width: 45px;
  height: 45px;
  border: none;

}
}

@media only screen and (min-width: 769px) and (max-width: 1024px)  {

  .popup img {
    height: 600px;
    width: 100%;
    padding: 10px;
   
}

.popup{
  font-family: arial;
  text-align: center;
  width: 80%;
  background-color: #686565;
  margin-top: 25%;
}

.popup-close{
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0px;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  font-weight: 800;
  background-color: #686565 ;
  border-radius: 200px;
  width: 45px;
  height: 45px;
  border: none;

}

}

@media only screen and (min-width: 1025px) and (max-width: 1200px)  {
  .popup img {
    height: 600px;
    width: 100%;
    padding: 10px;
   
}

.popup{
  font-family: arial;
  text-align: center;
  width: 60%;
  background-color: #686565;
  margin-top: 20%;
}

.popup-close{
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0px;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  font-weight: 800;
  background-color: #686565 ;
  border-radius: 200px;
  width: 45px;
  height: 45px;
  border: none;

}
  
}
