﻿@font-face {
	font-family: 'Nunito';
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/Nunito-Regular.ttf') format('tff');
}

@font-face {
	font-family: 'Nunito';
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/Nunito-Regular.ttf') format('tff');
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-family: Nunito, Verdana, sans-serif;
	font-size: 14px;
	margin: 0;
	word-break: break-word;
	overflow-y: hidden;
}

table {
	font-size: 1em;
}

h1 {
	color: #707070;
	font-size: 24px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 16px;
}

.container {
	width: 100%;
	border: 0;
	border-spacing: 0;
	position: relative;
}

.error-title {
	padding: 0 0 30px 0;
}

.popup-container {
	display: flex;
	margin-top: 8px;
	color: rgba(23, 36, 55, 1);
	width: auto;
	height: auto;
	gap: 10px;
	border-radius: 5px;
}
.icons-styles {
	cursor: pointer;
	font-weight: 400;
	font-size: 16px;
	color: rgba(23, 36, 55, 1);
	padding: 10px;
}

.popup {
	width: auto;
	
	border-radius: 5px;
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.popup-text {
	color: rgba(23, 36, 55, 1);
	font-weight: 400;
	padding-top: 8px;
	padding-bottom: 10px;
	display: inline-block;
	overflow: hidden;
	word-wrap: break-word;
	flex-grow: 1;
	font-size: 14px;
}

.popup-controls {
	flex-direction: column;
	justify-content: space-between;
	display: flex;
	align-items: flex-end;
	
}
.button {
	color: rgba(23, 36, 55, 1);
	text-decoration: underline;
}

