.std-popup {
	max-width: 750px;
	width: max-content;
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 1000;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background-color: #f9f9f9;
	padding: 1em;
	max-height: calc(100vh - 120px);
	display: none;

}

.std-popup .title-section {
	margin-bottom: 1em;
}

.std-popup .content {
	max-height: calc(100vh - 200px);
	overflow: auto;
}

.std-popup .buttons {
	margin-top: 1em;
}

.std-popup .buttons button {
	border: none;
	/*border-radius: 15.5px;*/
	font-weight: 700;
	padding: 0.5em 1em;
	cursor: pointer;
	outline: none;
	margin-right: 2em;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.std-popup .buttons button.silver {
	background-image: linear-gradient(to top, #ebebeb, #f7f7f7, #fff, #fff, #f7f7f7);
}

.std-popup input, .std-popup select, .std-popup textarea {
	width: 100%;
	min-height: 30px;
	font-size: 19px;
}

.std-popup textarea {
	min-height: 6em;
	min-width: 25vw;
}
