
* {
	box-sizing: border-box;
}

html {
	background-color: #fefefe;
}

body {
	margin: 0;

	font-family: 'PT Sans', sans-serif;
}



p {
	text-align: justify;
	margin: 0 0 25px;
	line-height: 28px;

	font-size: 16px;
}


ul {
	margin-bottom: 50px;
}

iframe {
	min-width: 100%;
	height: 850px;
	max-width: 100%;

	border: none;
}

.container {
	margin: 15px auto;
	padding: 0 15px;
	max-width: 80%;
	width: 100%;
}

/**
 * MODAL WINDOW & OVERLAY STYLES
 */
.window-modal {
	display: none;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	overflow-y: auto;
	position: fixed;
	padding: 15px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;

	background-color: rgba(0,0,0,0.7);
 }

.window-modal__in {
	position: relative;
	max-width: 100%;
	padding: 15px 15px 15px;
	width: 80%;
	z-index: 1001;
        height:720px;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 6px 2px rgba(50,50,50,0.3);
}

.window-activated {
	overflow: hidden;
	margin-right: 17px;
}




::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #438eb9; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}