/* @import url('https://fonts.googleapis.com/css?family=Varela+Round');



body {
    padding: 0;
    margin: 0;
    font-family: 'Varela Round', sans-serif;
} */

.header {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    /* background-color: lightgreen; */
		/* 5E717A */
    position: fixed;
    height: 50px!important;
    overflow: hidden;
    z-index: 10;
}

.title {
  font-family: 'Varela Round', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
   /* padding: 10px 0;
    text-align: center; */
    color: red;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    /* display: block; */
    height: 100%;
    position: fixed;
    overflow: hidden;
    height: 50px!important;
    z-index: 10;
}

.title_left {
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
	color: #D9DEE4 !important;
  display: flex;
  justify-content: left;
	padding-left: 50px;
  align-items: center;
   /* padding: 10px 0;
    text-align: center; */
    color: blue;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    /* display: block; */
    height: 100%;
    position: fixed;
    overflow: hidden;
    height: 50px!important;
    z-index: 10;
}

.logo_top {
  font-family: 'Varela Round', sans-serif;
  font-size: 20px;
  display: flex;
  /* justify-content: center; */
  align-items: right;
   /* padding: 10px 0;
    text-align: center; */
    color: black;
    /* margin: auto 0; */
    /* width: 100%; */
    /* max-width: 100%; */
    /* display: block; */
    position: fixed;
    overflow: hidden;
    height: 32px!important;
    z-index: 10;
		float: right;
		text-align: right;
		top: 10px;
    right: 10px;
}

.main {
    margin: 0 auto;
    display: block;
    height: 100%;
    margin-top: 60px;
}


/* allow click in the whole area of the side menu items */
/* ul.sidebarMenuInner li a {
    padding-top: 10%;
    padding-bottom: 10%;
}

ul.sidebarMenuInner li#sidemenu1 a {
    padding-right: 80%
}

ul.sidebarMenuInner li#sidemenu2 a {
    padding-right: 72%
}

ul.sidebarMenuInner li#sidemenu3 a {
    padding-right: 64%
}

ul.sidebarMenuInner li#sidemenu4 a {
    padding-right: 78%
}

ul.sidebarMenuInner li#sidemenu5 a {
    padding-right: 50%
} */

/* ul.sidebarMenuInner li a:hover {
    background: yellow;
}

ul.sidebarMenuInner li {
    border: 1px solid green
} */


/* side menu functionality css */
#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 300px;
    margin-top: 0px;
    padding-top: 80px;
    transform: translateX(-300px);
    transition: transform 250ms ease-in-out;
    background: #546e7a;
    z-index:20;
    /* background: linear-gradient(180deg, #546e7a 0%, #3F5EFB 100%); */
}
.sidebarMenuInner{
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: red;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px 0px 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
}
.sidebarMenuInner li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

 /* remove the css to display other checkboxes with class special x */
input.special[type=checkbox] {
  display: block;
}


.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 18px;
    left: 15px;
    /* size toggle three line symbol */
    height: 30px;
    width: 30px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    /* background-color: #27415F; */
    /* background-color: #6C1224; */
    background-color: #E5362E;
}

/* Icon 3 lines toggle */
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 10px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
    margin-top: 10px
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 10px;
}

/* transformed icon clicked 3 lines into X */
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 20px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -16px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .spinner {
    background-color: white;
}
