/* Eric Meyer's CSS Reset */

 :root {
    --primary-color: #254ab5;
    --secondary-color: #536390;
    --font-color: #000;
    --bg-color: #fff;
    --heading-color: #292922;
}

[data-theme="dark"] {
    --primary-color: #51d2d8;
    --secondary-color: #818cab;
    --font-color: #fff;
    --bg-color: #101010;
    --heading-color: #818cab;
}

html, body{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    line-height: 1;
	vertical-align: baseline;
}

body {
	font: 14px/18px Arial;
	background-color: var(--bg-color);
    color: var(--font-color);
}

h1 {
	font: 22px Arial, sans-serif;
    color: var(--font-color);
}

h2 {
	font: 18px Arial, sans-serif;
    color: var(--font-color);
}

p{
	font: 14px/18px Arial;
	text-align:justify;
}

.home a, .home a:visited, .home a:active{ 
	color: var(--font-color);
	font-weight: normal;
	font-size: 18px;
	text-decoration: none;
}

.home a:hover{ 
	color: #0085D2;
	font-weight: normal;
	font-size: 18px;
	text-decoration: none;
}

.logo {
     width: 85px;
     height: 73px; 
	 background-image: url(images/logo-help.png);
	 margin-top: 20px;
	 margin-bottom: 20px;
     float: left;
    }
	
.logo a {
     display: block; 
     text-align: center; 
     height: 100%; 
     color: #FFF; 
	}
	
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;; 
	font-weight: bold;
	color: #000000;
	font: 16px Arial;
    line-height: 1.2rem;
	
}

.menu  a, .menu a:visited, .menu a:active{ 
	color: #039da1;
	font-weight: normal;
	font-size: 16px;
	display: block;
	padding: 6px 0 7px 16px;
	position: relative;
	text-decoration: none;
}

.menu a:hover{ 
	color: #c2c2c2;
	font-weight: normal;
	
}

.menu a:focus {
	outline: none;
}
.menu a.selected {
    color: var(--font-color);
    text-decoration: none;
	cursor: unset;
 }
 
.menu a.selected:before {
	content: "»";
	top: 0px;
	display: inline-block;
	position: absolute;
	left: 3px;
	line-height: 29px;
}



.menu p { 
	color: #000000;
	font-weight: normal;
	margin-top: 0;
    margin-bottom: 0;
	line-height: 2em;
}


.wrapper {
	min-width: 1000px;
	max-width: 1600px;
	margin: 0 auto;
	
}
.wrapper img{
	max-width: 100%;
	height: auto;
}


/* Middle
-----------------------------------------------------------------------------*/
.middle {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: row;
}

.container {
	background-color: var(--bg-color);
	min-height: 100vh;
	border: 0 none transparent;
	flex: 1 1 auto;
}
.content {
	padding: 0;
}
.content h1:first-of-type {
	border-bottom: 1px solid #E3E3E3;
	padding: 18px 0 18px 30px;
	margin: 0 0 50px 0;
}
.content h2 {
	margin: 1.5rem 0 0rem;
}
.content ul, .content ol {
	padding: 0 0 0 2rem;
	margin: 1rem 0;
}
.content ul { list-style: none }

.content ul li {
	line-height: 1.75rem;
}
.content ul li ul{
	padding: 0 0 0 1rem;
	margin: 0 0;
	list-style: none;
}
.content ul.styled {
	list-style: none;
	padding: 0 0 0 1.8rem;
}
.content ul.styled li:before {
	content: "-";
	width: 10px;
	display: inline-block;
}
.content pre {
	background: var(--bg-color);
	display: inline-block;
	position: relative;
	padding: 1rem 2rem;
	margin: 1.5rem 0 0.5rem;
}
.content pre .title {
	position: absolute;
	top: -1rem;
	left: 0px;
	line-height: 1rem;
	background: var(--bg-color);
	display: inline-block;
	padding: 5px 2rem 0px 2rem;
	font-size: 0.75rem;
}
.article { padding: 0 30px 50px; }

.accordion {
	color: #0085d2;
	cursor: pointer;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	position: relative;
	padding-left: 34px;
}
.accordion:before {
	display: block;
	content: "";
	background-image: url("images/directory_close.png");
	width: 23px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 3px;
}
.accordion.active:before {
	background-image: url("images/directory_open.png");
}

.active, .accordion:hover {
	color: #00a1f1;
}

.panel {
	padding: 0 18px;
	background-color: var(--bg-color);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
}

/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar {
	border-right: 1px solid #E3E3E3;
	padding: 0px 20px 100px 20px;
	background-color: var(--bg-color);
	box-sizing: content-box;	
	box-sizing: border-box;
	flex: 0 0 350px;
}

.head{
    height: 85px;
	margin-bottom: 30px;
}
.head_buttons{
    float: right;
}
.head_button{
    margin: 5px;
    width: 80px;
    height: 30px;
}

nav {
  display: flex;
  justify-content: flex-end;
  padding: 10px 10px;
}

/*slider switch css */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  
}
.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: var(--bg-color);
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #fff;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
