/*


.popup-box{
	display: none;
	position: fixed;
	text-align: center;
	width: 100%;
	height: 100%;
	z-index: 10;
	top: 0;
	left: 0;
}

.popup{
    background-color: #Fff;
    width: 60%;
	max-width: 550px;
    padding: 10px 20px;
    position: fixed;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 15px;
	border: 0px solid #006600;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
	z-index: 99999;
	 box-shadow: 0px 10px 20px 1px rgba(0,0,0,0.2);
}
.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 40px;
    color: #c5c5c5;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 15px 0;
    line-height: 25px;
}
.popuplogo{
	width: 100%;
	height: auto;
	margin: 0 auto;

}
*/


.popup {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(184, 201, 164, .7);
    display: grid;
    place-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out opacity;
	z-index: 100;
}
.popup-content {
    width: clamp(300px, 90vw, 850px);
    background-color: #fff;
    padding: clamp(1.5rem, 100vw, 3rem);
    box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
    border-radius: .5em;
    opacity: 0;
    transform: translateY(20%);
    transition: 200ms ease-in-out opacity,
                200ms ease-in-out transform;
    position: relative;
	z-index: 99999;
}
.popup h2 {
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}
.popup h2:active {
    transform: scale(.9);
}

.showPopup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
	
}
.popup-logo{
	width: 60px;
	height: 68px;
	display:flex;
	height: auto;
	margin: 0 auto;
	align-content: center;

}
.popup-img{
	
	display:flex;
	height: auto;
	margin: 0 auto;
	align-content: center;

}
.popup h3 {
    
    
    text-align: center;
    line-height: 1;
    
}


.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}

.close-btn:active {
    transform: scale(0.9);
}



.myButton {
	background-color:#44c767;
	border-radius:9px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	padding:5px 10px;
	text-decoration:none;
	text-shadow:0px 0px 0px #2f6627;
}
.myButton:hover {
	background-color:#5cbf2a;
}
.myButton:active {
	position:relative;
	top:1px;
}

	.no-scroll {
    overflow: hidden;
}	
	
.image-button {
      background: none;
      border: none;
      cursor: pointer;
    }	

.store-links-btn {
      display: inline-flex;
      align-items: center;
      background-color:transparent;
      color: white;
      margin-top: 22px;
      font-family: Arial, sans-serif;
      font-size: 14px;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      text-decoration: none;
    }

    .store-links-btn svg {
      margin-right: 12px;
      width: 16px;
      height: 16px;
      fill: white;
    }	
	