@charset "utf-8"; /**
 * @author https://www.cosmosfarm.com/
 */

.cosmosfarm-popup-background { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; z-index: -1; transition: 0.5s; } 
.cosmosfarm-popup-background.active { opacity: 1; z-index: 99999; } 

.cosmosfarm-simple-popup-layout { display: block; position: fixed; background-color: white; transition: 0.5s; opacity: 0; z-index: -1; } 
.cosmosfarm-simple-popup-layout.active { opacity: 1; z-index: 999999; } 
.cosmosfarm-simple-popup-layout p:last-child { margin: 0; } 
.cosmosfarm-simple-popup-layout img { max-width: 100%; } 
.cosmosfarm-simple-popup-layout .cosmosfarm-simple-popup { position: relative; height: 100%; } 
.cosmosfarm-simple-popup-layout .popup-content { overflow: hidden; background-color: white; } 
.cosmosfarm-simple-popup-layout .popup-footer { overflow: hidden; width: 100%; } 
.cosmosfarm-simple-popup-layout .popup-footer .popup-not-showing { float: left; padding: 5px; font-size: 12px; cursor: pointer; } 
.cosmosfarm-simple-popup-layout .popup-footer .popup-close { float: right; padding: 5px; font-size: 12px; cursor: pointer; } 

@media screen and (max-width: 600px) {
	.cosmosfarm-simple-popup-layout { left: 0 !important; width: 100% !important; transform: translate(0, 0) !important; } 
}