/****************** VAR *******************/

:root {
	
	--body_bg		:	#ffffff;

	--text_color	:	#000000;
	--text_color_2	:	#555555;

	--color_0		:	#000000;
	--color_1		: 	#f8c952;
	--color_2		: 	#F9A700;
	
	--color_3		: 	#c4c4c4;
	--color_4		: 	#e5e6e7;
	--color_5		: 	#dbdfe7;
	--color_6		: 	f9a700;

	--color_1_1		:	#f0c541;
	--color_1_2		:	#F9A700;
	--color_1_3		:	#ffffff;
	
	--color_1_n		:	231, 172, 62;

	--shadow_1		:	rgba(255,255,255, 0.6);

}

/****************** VAR - END *******************/


*{margin: 0;padding: 0;}
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, strong, 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;
	vertical-align: top;
}
input, select, textarea, button {font-family: 'font1';-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
textarea{max-width: 100%; min-width: 100%;}
input:focus, select:focus, textarea:focus, button:focus {outline:none;}

/****************** GENERAL *******************/

html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	font-size: 18px;
}

body {
	font-size: 16px;
	font-family: 'font1';
	color: var(--text_color);
	background: var(--body_bg);
}
img {max-width: 100%;}
img[src=""] {visibility: hidden;display:none;}
iframe, video, object, embed {max-width: 100%;}
image, iframe, video, object, embed {max-height:calc(100vh);}
sup {top: 0em;margin:0px !important;line-height: normal;}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {
	background: transparent;
	transition: all 0.5s ease-in-out;
}
::-webkit-scrollbar-thumb {
	background: var(--color_1);
	transition: all 0.5s ease-in-out;
}
::-webkit-scrollbar-thumb:hover {background: #F9B632;}
.horisontal_noscroll {overflow: auto;}
.horisontal_noscroll::-webkit-scrollbar {width: 6px;height: 0px;}
.horisontal_noscroll::-webkit-scrollbar-track {background: var(--bg_color_2);}
.horisontal_noscroll::-webkit-scrollbar-thumb {background: var(--color_1);}

/*scrollbar end*/

a {
	color: var(--text_color);
	-webkit-transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -moz-transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
	text-decoration:none;
	user-select:none;
	cursor: pointer;
}
svg {
	color: var(--text_color);
	-webkit-transition: fill 0.2s ease-in-out, stroke 0.2s ease-in-out;
    -moz-transition: fill 0.2s ease-in-out, stroke 0.2s ease-in-out;
    -o-transition: fill 0.2s ease-in-out, stroke 0.2s ease-in-out;
    transition: fill 0.2s ease-in-out, stroke 0.2s ease-in-out;
	text-decoration:none;
	user-select:none;
	cursor: pointer;
}
a:hover {text-decoration:none;}

.text-center {text-align:center;}
.text-left {text-align:left;}
.text-right {text-align:right;}
.text-justify {text-align:justify;}
.font-bold {font-weight:bold;}

.clear {clear: both;}
.wrapper_block {width: 100%;}
.block {
	max-width: 1310px;
	margin: 0px auto;
	padding-left: 15px;
	padding-right: 15px;
}
.inline_block {display: inline-block;}
.flex_block {
	display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}
.ease_hover {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.required {color: #c90000;}

.edit_item_icon {font-size:inherit;vertical-align:sub;position:relative;top:-10%;color:inherit;}
a:hover>.edit_item_icon {color:var(--color_1);}
.title_big .edit_item_icon {top:-4px;}

.color_orange {color:var(--color_1_2);}

.alerts {
	position: fixed;
	right: 0px;
	top: 55px;
	z-index: 1000000;
	max-width: 80%;
}

.alert+.alert {margin-top: 10px;}

.alert a {color: #fff;}

.alert {
	font-size: 18px;
	padding: 10px 15px;
	padding-right: 55px;
	background: #f9b632;
	color: #352402;
	position: relative;
	border-radius: 5px;
	min-width: 150px;
}

.alert_close {
	background: #ffd585;
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 10px;
	border-radius: 5px 0px 0px 5px;
}

.input-field {margin-top:0rem;}
.input-field>label {color: var(--color_0);}
input:not([type]):not(.browser-default), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea {
	border-color:var(--color_0);
}
input:not([type]):not(.browser-default):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid var(--color_0);
    -webkit-box-shadow: 0 1px 0 0 var(--color_0);
    box-shadow: 0 1px 0 0 var(--color_0);
}
input:not([type]):not(.browser-default):focus:not([readonly])+label, input[type=text]:not(.browser-default):focus:not([readonly])+label, input[type=password]:not(.browser-default):focus:not([readonly])+label, input[type=email]:not(.browser-default):focus:not([readonly])+label, input[type=url]:not(.browser-default):focus:not([readonly])+label, input[type=time]:not(.browser-default):focus:not([readonly])+label, input[type=date]:not(.browser-default):focus:not([readonly])+label, input[type=datetime]:not(.browser-default):focus:not([readonly])+label, input[type=datetime-local]:not(.browser-default):focus:not([readonly])+label, input[type=tel]:not(.browser-default):focus:not([readonly])+label, input[type=number]:not(.browser-default):focus:not([readonly])+label, input[type=search]:not(.browser-default):focus:not([readonly])+label, textarea.materialize-textarea:focus:not([readonly])+label {
    color: var(--color_0);
}
.input-field .prefix.active,.input-field .suffix.active{color:var(--color_0);}

a.btn.btn-simple:link,		.btn.btn-simple,
a.btn.btn-simple:visited,	.btn.btn-simple:visited		{
	color:var(--color_1);
	border:2px solid var(--color_1);
	background:transparent;
	font-size:1.1rem;
	font-weight:bold;
	text-transform:uppercase;
	height:auto;
	line-height:135%;
	padding:12px 20px;
	box-shadow:none;
}
.btn.btn-simple:focus, .btn.btn-simple:focus {outline:1px solid;}
a.btn.btn-simple:hover, .btn.btn-simple:hover, a.btn-link:hover .btn.btn-simple {background: var(--color_2);color:#fff;}
a.btn.btn-simple:active, .btn.btn-simple:active, a.btn-link:active .btn.btn-simple {}
a.btn.btn-simple.disabled, .btn.btn-simple:disabled, a.btn-link.disabled .btn.btn-simple {cursor:default;opacity: 0.5;}

a.btn.btn-simple-2:link,		.btn.btn-simple-2,
a.btn.btn-simple-2:visited,	.btn.btn-simple-2:visited		{
	color:var(--text_color);
	border:2px solid var(--color_1);
	background:var(--color_1);
	font-size:1.1rem;
	font-weight:bold;
	text-transform:uppercase;
	height:auto;
	line-height:135%;
	padding:12px 20px;
	box-shadow:none;
}
.btn.btn-simple-2:focus, .btn.btn-simple-2:focus {outline:1px solid;}
a.btn.btn-simple-2:hover, .btn.btn-simple-2:hover, a.btn-link:hover .btn.btn-simple-2 {background: var(--color_1);color:var(--color_1_3);}
a.btn.btn-simple-2:active, .btn.btn-simple-2:active, a.btn-link:active .btn.btn-simple-2 {}
a.btn.btn-simple-2.disabled, .btn.btn-simple-2:disabled, a.btn-link.disabled .btn.btn-simple-2 {cursor:default;opacity: 0.5;}

a.btn.btn-simple-filled:link,		.btn.btn-simple-filled,
a.btn.btn-simple-filled:visited,	.btn.btn-simple-filled:visited		{
	color:var(--color_1);
	border:2px solid var(--color_2);
	background:var(--color_2);
	font-size:1.1rem;
	font-weight:bold;
	text-transform:uppercase;
	height:auto;
	line-height:135%;
	padding:12px 20px;
	box-shadow:none;
}
a.btn.btn-simple-filled:hover,		.btn.btn-simple-filled:hover	{background: var(--color_1);color:#fff;}
a.btn.btn-simple-filled:active,		.btn.btn-simple-filled:active	{}
a.btn.btn-simple-filled.disabled,	.btn.btn-simple-filled:disabled	{cursor:default;opacity: 0.5;}

a.btn.btn-block, .btn.btn-block {
	display:block;width:100%;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}

.btn-container {margin-top: 2rem;}

/****************** GENERAL - END *******************/

.content_text {
	font-size: 1.2em;
	text-align: justify;
	overflow-wrap: anywhere;
}
.content_text strong {font-weight: 600;}
.content_text h1, .content_text h2, .content_text h3, .content_text h4, .content_text h5, .content_text h6 {
	text-transform:uppercase;
	font-weight:900;line-height:130%;
	padding-top: 15px; 
}
.content_text h1 {font-size: 1.5em;}
.content_text h2 {font-size: 1.4em;}
.content_text h3 {font-size: 1.3em;}
.content_text h4 {font-size: 1.2em;}
.content_text h5 {font-size: 1.1em;}
.content_text h6 {font-size: 1em;}

.content_text img {height: auto !important;}
.content_text p img {width: 100%;margin-top: 15px;margin-bottom: 15px;}
.content_text *+* {margin-top: 15px;}

.content_text a {color:var(--color_1_2);font-weight:bold;}
.content_text a:not(.btn):hover {text-decoration: underline;}

.content_text ul {}
.content_text ul li {padding-left:1.25rem;list-style:none;position: relative;}
.content_text ul li:before {
	position: absolute;
    content: '●';font-size: 0.75em;
    color: var(--color_1);
    left: 0.15rem;top: 0.25rem;
    display: block;
}
.content_text ol {margin-left:1.25rem;}
.content_text ol li {list-style-position:outside; list-style-type: decimal;}

.content_text iframe {width:100%;height:auto;aspect-ratio: 16 / 9;}
.content_text blockquote {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--text_color);
    line-height: 120%;
    text-align: center;
    background: url(../../../custom/images/icons/title_img.svg?v=3) top 0px center no-repeat transparent;
    padding: 50px 0px 20px 0px;
}

}
.content_text blockquote:after {}

.content_text table {box-shadow: 0px 5px 10px rgb(0 0 0 / 15%); max-width:100%;}
.content_text table td {border-bottom:1px solid #eee; padding:10px 5px 5px 15px;}