/*
	Theme Name:   Chef AJ 2024
	Theme URI:    https://github.com/CultivateWP/Chef-AJ/
	Author:       CultivateWP
	Author URI:   https://www.cultivatewp.com
	Update URI:   false
	Tested up to: 6.5
	Version:      1.0.3
	License:      GPL-2.0+
	License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/


/* Custom Pop Up Style */
::backdrop {
  background-color: #000;
  opacity: 0.7;
}
#site-pop-up {
	max-width: 900px;
	overflow: visible;
}
#site-pop-up #dialog-close {
    background: #fff;
    border: 1px solid;
    height: 40px;
    width: 40px;
    border-radius: 30px;
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    cursor: pointer;
	top: -1rem;
}
#site-pop-up  .dialog-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 2rem;
	padding-top: 1rem;
}
#site-pop-up.no-image .dialog-inner {
		grid-template-columns: 1fr;
	}
#site-pop-up #dialog-close svg {
    min-width: 16px;
    min-height: 16px;
}
@media screen and (min-width: 768px) {
	#site-pop-up  .dialog-inner {
		grid-template-columns: 1fr 1fr;
		grid-gap: 2rem;
		align-items: center;
		padding-top: 0rem;
	}
	#site-pop-up.no-image .dialog-inner {
		grid-template-columns: 1fr;
	}
	#site-pop-up .dialog-inner--content {
		padding-top: 1rem;
	}
}