@font-face{
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
}

@font-face{
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}

@font-face{
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth;
}	

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-weight: 500;
    border: 2px solid #555;
    margin: 0 auto;
    text-align: left;
    width: 100%;
}

table tr {
    max-width: 100%;
    border: 2px solid #555;
}

table td {
    max-width: 100%;
    border: 2px solid #555;
    padding: 4px 8px;
}

.popup {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: #1515157a;
	z-index: 999;
	font-family: "Montserrat";
	font-weight: 400;
}

.popup.active {
	display: flex;
}

.popup__body {
	max-width: 81vw;
	width: 100%;
	background: #FFFFFF;
	height: 88vh;
	overflow: auto;
	position: relative;
	padding: 40px 10px 20px;
}

.popup__close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 8px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.popup__close span {
	width: 100%;
	height: 2px;
	background: #000;
	display: block;
	position: absolute;
	transform: rotate(45deg);
}

.popup__close span:nth-child(2) {
	transform: rotate(-45deg);
}

.popup__title {
	font-weight: 700;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 20px;
}

.popup__table {
	display: flex;
	overflow: auto;
}

.popup__table table {
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.popup__body {
		max-width: 90vw;
		padding: 20px 10px;
	}
	.popup__title {
		font-size: 1.4rem;
	}
	.popup__table table {
		font-size: 12px;
	}
	table td {
		padding: 2px;
	}
}