#fgdl-modal {
	display:none;
	position:fixed;
	inset:0;
	z-index:999999
}

#fgdl-modal.fgdl-open {
	display:block
}

.fgdl-backdrop {
	position:absolute;
	width: 200%;
	height: 200%;
	inset:0;
	background: rgb(0 0 0 / 0.6);
	backdrop-filter: blur(4px);
}

.fgdl-dialog {
	max-width: 520px;
	top: 50%;
	transform: translateY(-50%);
	margin: auto;
	background:#fff;
	border-radius: 2rem;
	padding: 3rem 2.5rem 2rem 3rem;
	overflow:hidden;
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
	position:relative;
}

.fgdl-header {
	display:flex;
	flex-direction: column;
	align-items: center;
	font-size: 28px;
	text-align: center;
}

.fgdl-title {
	font-weight:600;
	text-align: center;
	padding-bottom: 0.75rem;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.fgdl-close {
	border:none;
	background:none;
	font-size: 36px;
	cursor:pointer;
	position: absolute;
	top: 5px;
	right: 20px;
	color: #a7a7a7;
}

.fgdl-ok {
    width: 100%;
	height: 3.5rem;
    background: rgb(234 42 51 / 1)!important;
    box-shadow: 0 10px 15px -3px rgb(234 42 51 / 0.25), 0 4px 6px -4px rgb(234 42 51 / 0.25);
    font-weight: 500!important;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
}

.fgdl-warning {
    width: 2em;
    height: 2em;
    background: rgb(234 42 51 / 0.1);
    color: rgb(234 42 51 / 1);
    border-radius: 9999px;
    font-size: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fgdl-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    width: 100%;
    height: 3.5rem;
    margin-top: 5px;
    color: #2d3236 !important;
}

.fgdl-body {
	line-height:1.625;
	font-weight: 500;
	font-size: 1rem;
	padding: 0 .5rem 2rem .5rem;
	text-align: center;
}

.fgdl-list {
    list-style: none;
    padding: 0;
}

.fgdl-list li:not(:last-child) {
    margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
	
	.fgdl-header {
		font-size: 1.5rem;
		letter-spacing: -0.5px;
	}
	
	.fgdl-warning {
		width: 1.7em;
		height: 1.7em;
		font-size: 42px;
	}

	.fgdl-dialog {
		max-width: 90%;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
	
	.fgdl-body {
		font-weight: 400;
		font-size: 0.9rem;
		padding: 0 0 1rem;
	}
	
	.fgdl-ok, .fgdl-cart {
		font-size: 0.9rem;
		height: 3rem;
	}
}