*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* [+] НАСТРОЙКА СКРОЛЛБАРОВ */

::-ZZZwebkit-scrollbar { /* chrome based */
    width: 0px;  /* ширина scrollbar'a */
    background: transparent;  /* опционально */
}
ZZZbody {
    -ms-overflow-style: none;  /* IE 10+ */
    scrollbar-width: none; /* Firefox */
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background:transparent!important;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    min-height: 20px;
    border:none!important;
    border-radius: none;
    background-clip: content-box;
    box-shadow: inset 0 0 0 10px rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 0 10px rgba(0,0,0,0.12);
}



/* [-] НАСТРОЙКА СКРОЛЛБАРОВ */


@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    text-rendering: optimizelegibility;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

input:-webkit-autofill, 
textarea:-webkit-autofill, 
select:-webkit-autofill {
	-webkit-box-shadow: inset 0 0 0 50px #fff;
	background-color: #fff;
}

pre, pre * {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.2rem;
}

table {
	border-collapse: collapse;
	border: 1px solid #999;
	font-size: 1.2rem;
	color: #333;
    width: 100%;
    margin: 10px 0 20px 0;
	table-layout: fixed;
}
 
caption {
    font-size: 1.4rem;
    font-weight: bold;
    font-style: italic;
    text-align: left;
    color: royalblue;
}

th,
td {
	border-collapse: collapse;
	border: 1px solid #999;
	font-family: var(--custom-font);
	font-size: 1.2rem;
	color: #333;
	padding: 5px;
	text-align: left;
}

  th li
, td li{
	font-size: 1.2rem;
}

input[type=text],
input[type=password],
select, option,
optgroup,
textarea,
.area,
.input_editable {
	font-family: var(--custom-font);
	font-size: 1.3rem;
	width: 100%;
	min-width: 20px; 
	border: 1px solid #bbb; 
    padding: 4px 10px;
	border-radius: 2px; 
	background-color: #fff; 
	box-sizing: border-box;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
}

select {
	font-family: var(--custom-font);
	width: 100%;
	min-width: 20px; 
	border: 1px solid #bbb; 
    padding: 3px 10px;
	border-radius: 2px; 
	background-color: #fff; 
	box-sizing: border-box;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
}

label {
	font-family: var(--custom-font);
    font-size: 1.06666667rem;
    color: var(--blue);
    font-weight: 700;
    margin-top: 5pt;
    display: inline-block;
}

span.input-disabled {
	display: block;
	float: right;
	font-family: var(--custom-font);
	font-size: 1.3rem;
	color: #666;
	border: 1px solid #999; 
	padding: 7px 5px;
	background-color: #eee; 
	box-sizing: border-box;
}

#overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	z-index: 10;
}

optgroup {
	padding: 5px 10px;
}

hr {
	border-style: none;
	border-width: 0px;
	border: none;
}

blockquote {
    border-left: 4px solid #ffca6f;
    font-family: var(--custom-font);
	font-size: 1.2rem;
    color: #666;
    margin: 0px 0 20px 60%;
    padding-left: 15px;
    display: block;
    width: 40%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cke_screen_reader_only {
    display: none !important;
}