@charset "utf-8";
/* CSS Document */

.popup {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .popup-content {
      background-color: #fefefe;
      margin: 10% auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
      max-width: 600px;
	  overflow: auto;
    }

    .popup img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10%;
      cursor: pointer;
	  color: red;
	  font-size: 50px;
    }
/*Media query popup only*/
	   @media only screen and (max-width:1920px)
	{
		.close-btn{
			top: 110px;
      		right: 27%;
			font-size: 40px;
			color: #FFF;
		}
	 }
	 
	  @media only screen and (max-width:1200px)
	{
		.close-btn{
			top: 50px;
      		right: 17%;
			font-size: 40px;
			color: #FFF;
		}
	 }
	
	  @media only screen and (max-width:768px)
	{
		.close-btn{
			top: 10px;
      		right: 4%;
			font-size: 30px;
			color: #FFF;
		}
	 }
	 
	 @media only screen and (max-width:424px)
	{
		.close-btn{
			top: 6px;
      		right: 3%;
			font-size: 30px;
			color: #FFF;
		}
	 }
	 
	
	 @media only screen and (max-width:320px)
	{
		.close-btn{
			top: 6px;
      		right: 3%;
			font-size: 30px;
			color: #FFF;
		}
	 }