/* https://github.com/dinoqqq/simple-popup */

.simple-popup-content {
	/* background-image: url(../../../../assets/illustrations/girl-proud-bust.svg) !important;
	background-repeat: no-repeat !important;
	background-position: 100px 5px !important;
	background-size: 12% !important; */
}
.simple-popup-content .title {
	position: relative;
	display: inline-block;
   	left: 50%; bottom: 7px;
    transform: translateX(-50%);
	text-align: center;
	font-size: 1.5rem;
    line-height: 1;
}
.simple-popup-content .title:before {
	content: "";
	position: absolute;
	right: 100%;; bottom: -32px;
	height: 87px; width: 65px;
	background-image: url(../../../../assets/illustrations/girl-proud-bust.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
    /* border: 1px solid red; */
}
.simple-popup-content textarea {
	position: relative;
	box-sizing: border-box;
	width: 100%; height: 5rem;
	padding: 8px;
	font: .8rem sans-serif;
	color: gray;
	background: white;
	border: 1px solid lightgray;
	z-index: 5;
}
.simple-popup-content .buttons-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 16px;
}
.simple-popup-content .buttons-wrapper button,
.simple-popup-content .btn-save {
	color: #ffffff;
	font: 1em var(--title-font), sans-serif;
	letter-spacing: .05em;
	margin: 0 8px;
	padding: 8px 25px;
	text-decoration: none;
	background: var(--main-blue);
	border: none;
	border-radius: 6px;
	cursor: pointer;
}
.simple-popup-content .notification {
	/* padding: 8px 0;
	font-size: 1em; */
}

@media only screen and (max-width: 480px) {
	.simple-popup-content { padding: 30px 20px !important; }
	.simple-popup-content ::placeholder { font-size: .7rem !important; }
}

/* --------------------- */

#simple-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100001;
}

.simple-popup-content {
    position: absolute;
	box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	width: 600px; height: auto;
    max-height: 80%;
    max-width: 90vw;
    z-index: 100002;
    padding: 30px 40px;
	background: white;
    overflow: auto;
}

.simple-popup-content .close {
    position: absolute;
    right: 0;
    top: 0;
}

.simple-popup-content .close::before {
    display: inline-block;
    text-align: center;
    content: "\00d7";
    font-size: 48px;
    color: tomato;
    width: 40px;
    line-height: 48px;
}

.simple-popup-content .close:hover {
    cursor: hand;
    cursor: pointer;
}

.simple-popup-content .close:hover::before {
    color: grey;
}

#simple-popup-backdrop,
.simple-popup-backdrop-content {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
}
.simple-popup-backdrop-content {
    opacity: 0.3;
    background: #000;
}

#simple-popup,
#simple-popup-backdrop,
#simple-popup.hide-it,
#simple-popup-backdrop.hide-it {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -ms-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

#simple-popup.hide-it,
#simple-popup-backdrop.hide-it {
    opacity: 0;
}

#simple-popup,
#simple-popup-backdrop {
    opacity: 1;
}