@font-face {
	font-family: 'Avenir';
	src: url('/assets/fonts/AvenirNextLTPro-Regular.otf') format('opentype');
	/* Optional: Define font-weight and font-style for different variants */
	font-weight: normal;
	font-style: normal;
}

html {
	background-color: #FFFFFF;
}
.shadow-container {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}
.general-container {
	width: 100%;
	max-width: 1200px;
	margin: auto auto;
}
div, p, input, textarea, select {
	font-family: "Noto Sans Syriac Western", "Avenir", "Quicksand", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 15px;
}
textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: 100px;
	padding: 15px;
	box-sizing: border-box;
}
input[type="radio"] {
	transform: scale(1.5);
}
/*------------------ GENERAL ---------------------*/
.box-close-buttons {
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.5s;
}
.box-close-buttons:hover {
	opacity: 0.8;
}

.tutorial-contents {
	display: none;
	position: absolute;
    background: #FFF;
    font-size: 13px;
    font-style: italic;
    width: 200px;
    color: #555555;
    font-weight: normal;
    font-family: "Noto Sans Syriac Western", "Avenir", "Quicksand", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
    background-color: #FFF;
    border: 1px solid #555;
    padding: 30px;
    border-radius: 10px;
    margin-top: 10px;
    left: -75px;
	z-index: 2;
}
/*----------------- SCROLLBAR --------------------*/
/* width */
::-webkit-scrollbar {
    width: 8px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.5);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.7);
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

/* The track NOT covered by the handle.
::-webkit-scrollbar-track-piece {
    background: #000;
}

/*
::-webkit-scrollbar-corner {
    background: #999;
}

::-webkit-resizer {
    background: #111;
}
::-webkit-scrollbar-button {
    background: #F00;
	border-radius: 10px;
}
*/
/*---------------- HEADER RELATED -------------------*/
#list-header {
	display: flex; 
	color: #313485;
	margin-right: 19px;
	font-family: "Avenir";
	font-weight: bold;
	margin-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0px;
	padding-left: 10px;
	box-sizing: border-box;
}
/*----------------- MENU RELATED --------------------*/
#main-menu {
	color: #FFF;
	position: fixed; 
	top: 0px; 
	left: 0px; 
	width: 100%; 
	max-width: 300px; 
	height: 100vh; 
	padding: 50px; 
	box-sizing: border-box; 
	background-color: #313485;
	overflow-y: scroll;
}
#main-menu-item-selected {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.main-menu-items {
	font-size: 15px;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
#main-section {
	color: #555555;
}
.top-menu-title {
	font-family: "Avenir", "Quicksand", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}
.sub-menu-title {
	font-family: "Avenir", "Quicksand", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 20px;
    font-weight: bold;
    color: #313485;
    letter-spacing: 1px;
}
.caution-text {
	font-style: italic;
    font-size: 10px;
    color: #888;
}
/*------------------- BUTTONS ---------------------*/
.button-type-a {
	cursor: pointer;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-size: 20px;
    background-color: #313485;
    color: #FFF;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0.5;
    border: none;
	transition:0.5s all;
}
.button-type-a:hover {
	opacity: 0.9;
}
/*---------------- PAGINATION -------------------*/
.pagination-pages, .page-list-number {
	cursor: pointer;
	padding: 10px;
    border-radius: 10px;
}
.pagination-page-selected, .page-list-number-selected {
	color: #FFFFFF;
	background-color: #313485;
}
.page-list-text-previous {
	font-weight: bold;
	margin-right: 10px;
	opacity: 0.5;
	cursor: pointer;
	transition: 0.5s all;
}
.page-list-text-next {
	font-weight: bold;
	margin-left: 10px;
	opacity: 0.5;
	cursor: pointer;
	transition: 0.5s all;
}
.page-list-text-previous:hover, .page-list-text-next:hover {
	opacity: 0.8;
}