@font-face {
	font-family: 'averta Bold';
	src: local('averta Bold'), local('AvertaDemo-ExtraBoldItalic'),
		url('/src/fonts/averta-demo/AvertaDemo-ExtraBoldItalic.woff2') format('woff2'),
		url('/src/fonts/averta-demo/AvertaDemo-ExtraBoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}


@font-face {
	font-family: 'averta Regular';
	src: local('averta Regular'), local('AvertaDemo-Regular'),
		url('/src/fonts/averta-demo/AvertaDemo-Regular.woff2') format('woff2'),
		url('/src/fonts/averta-demo/AvertaDemo-Regular.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #FF0000;
}

body {
	width: 100%;
	/* background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/src/img/commons/f-p.jpg); */
	font-family: 'averta Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

main {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

section {
	width: 100%;
	display: flex;
	position: relative;
}

input, textarea, select {
	font-family: 'averta Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

input:focus, textarea:focus {
	outline: none;
}

a, a:hover {
	text-decoration: none
}

a {
	transition: ease all 0.5s;
}

section {
	width: 100%;
	height: 100vh;
	background-color: #fff;
	box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.popup {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 101;
	top: 0;
	left: 0;
}

.cortina-popup {
	width: 100%;
	height: 100%;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.cortina-popup.active {
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 101;
}

.popup-content {
	width: 90%;
	padding: 30px;
	background-color: #ffff;
	color: #4d4d4d;
	border-radius: 20px;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	position: absolute;
}

.content-container-p {
	width: 100%;
	height: calc(100% - 140px);
	margin-top: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	overflow: auto;
	position: relative;
}

.content-p {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
}

.dot-line-separator {
	width: 120px;
	height: 6px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
}

.dot-line-separator::before {
	width: 120px;
	height: 3px;
	content: "";
	background-color: #FF0000;
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
}

@media screen and ( min-width: 992px ) {
	section {
		width: 360px;
		height: 660px;
		border-radius: 10px;
	}
}

