/*-----------------------
  General 
-----------------------*/
/* Define status bar size */
/* Bottom settings sections */
/* Define general spaces */
/*@media screen and (min-width: 576px) { 
	$screeny-padding: 5px;
}
@media screen and (min-width: 768px) { 
	$screeny-padding: 10px;
}
@media screen and (min-width: 992px) { 
	$screeny-padding: 15px;
}
@media screen and (min-width: 1200px) { 
	$screeny-padding: 20px;
}*/
/* Define global radius */
/* Define size of arrows */
/* Define general transition time */
/* Define general border size */
/* Define background image blur */
label.burger {
  display: inline-block;
  padding: 13px 1rem;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 800;
  position: fixed;
  width: 60px;
  height: 60px;
}

span.burger {
  display: block;
  background-color: #ffffff;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  margin: 6px auto;
  transition: background-color .2s ease-in, transform .2s ease-in, width .2s ease-in;
}

.main-content-wrapper #burger-checkbox[type="checkbox"] {
  z-index: 10002;
  display: none;
  position: absolute;
}

.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ #top-menu #scy-gray-logo,
.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ #top-menu #scy-white-logo,
.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ #page-container {
  transform: translateX(300px);
}

.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ aside {
  transform: translateX(300px);
}

.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ label .burger {
  background-color: #ffffff;
}

.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ label .top {
  -webkit-transform: translateY(9px) rotateZ(45deg);
  -moz-transform: translateY(9px) rotateZ(45deg);
  -ms-transform: translateY(9px) rotateZ(45deg);
  -o-transform: translateY(9px) rotateZ(45deg);
  transform: translateY(9px) rotateZ(45deg);
}

.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ label .bottom {
  -webkit-transform: translateY(-9px) rotateZ(-45deg);
  -moz-transform: translateY(-9px) rotateZ(-45deg);
  -ms-transform: translateY(-9px) rotateZ(-45deg);
  -o-transform: translateY(-9px) rotateZ(-45deg);
  transform: translateY(-9px) rotateZ(-45deg);
}

.main-content-wrapper #burger-checkbox[type="checkbox"]:checked ~ label .middle {
  width: 0;
}

aside {
  background-image: linear-gradient(to right, #007de3 0%, #b200e3 100%);
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  min-height: 100vh;
  z-index: 500;
  transition: transform 0.3s ease-in-out;
  overflow-x: hidden;
  overflow-y: scroll;
}

aside .aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.asideList a {
  text-decoration: none !important;
}

aside .aside-anchor {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease-in-out;
  width: 100%;
}

aside .aside-anchor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  background-image: linear-gradient(to left, #007de3 0%, #b200e3 100%);
  width: 0;
  transition: calc(0.3s/2) ease-in-out;
  z-index: -1;
}

aside .aside-anchor:hover {
  color: #ffffff;
}

aside .aside-anchor:hover::after {
  width: 100%;
}

/*aside .aside-anchor.selected {
    color:$style_menu_text_color;
    //background-color:$screeny-left-menu-bg-selected;
}*/
aside .profile-picture {
  left: 50%;
  transform: translate(-50%, 0);
  position: relative;
  overflow: hidden;
  border-radius: 0 10px;
  height: 100px;
  width: 100px;
  border: 2px solid #007de3;
  background: #007de3;
}

aside .profile-picture img {
  position: absolute;
  height: auto;
  width: auto;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

aside .aside-list .logo-wrapper {
  padding-top: calc(1rem*2);
  padding-bottom: calc(1rem*2);
  padding-left: 0;
  padding-right: 0;
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
}

aside .aside-list .logo-wrapper h1 {
  padding-top: calc(1rem*.5);
  padding-bottom: calc(1rem*.5);
  padding-left: calc(1rem*1);
  padding-right: calc(1rem*1);
  font-size: 1.5rem;
  color: #ffffff;
}

/*#sec-page-scroll { 
	top:0;
	bottom:0;
	z-index:2;
	width:100vw;
	min-height:100vh;
	transition:transform $screeny-transition ease-in-out;
	overflow-x: hidden;
	overflow-y: scroll;
	min-height: 100%;
}*/
#page-container {
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100vw;
  min-height: 100vh;
  transition: transform 0.3s ease-in-out;
  overflow-x: hidden;
  overflow-y: scroll;
  min-height: 100%;
}

.main-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
