@charset "utf-8";

#sumateSuccess {
	display: none;
}
#sumateSuccess__wrapper{
	background: white;
    border-radius: 5px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sumateSuccess__flavor {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

#sumateSuccess__icon {
	width: 7rem;
	height: 7rem;
	border: 7px solid #27ae60;
	border-radius: 1000px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	margin: auto;
}

#sumateSuccess__icon svg {
	fill: #27ae60;
	width: 6rem;
}
.sumateSuccess__titleGrid {
	display: flex;
	justify-content: space-between;
	width: -webkit-fill-available;
	padding: 0 2rem;
}
.sumateSuccess__title {
	margin-top: 2rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-blue);
	text-align: center;
	width: -webkit-fill-available;
}
#sumateSuccess__exitHolder {
	height: 0px;
	width: 0px;
	position: relative;
	left: calc(100% - 1.25rem);
	top: 1.25rem;
}
#sumateSuccess__exit {
	border: none;
	background: var(--brand-blue);
	color: white;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 1000px;
	display: none;
	align-content: center;
	justify-content: center;
	align-items: center;
}

#sumateSuccess__close {
	background: var(--brand-blue);
	border: 2px solid white;
	color: white;
	font-weight: 500;
	padding: 1rem 2rem;
	border-radius: 100px;
	margin: auto;
	cursor: pointer;
}
#sumateSuccess__close:hover {
	background: white;
	border: 2px solid var(--brand-blue);
	color: var(--brand-blue);
	padding: 1rem 2rem;
	border-radius: 100px;
	margin: auto;
	cursor: pointer;
}
