pre {
  margin: 0;
  font-size: 14px;
}

.panelz {
  background-color: #fff;
  position: relative;
} 
.btn-hamburger {
  border: none;
  position: absolute;
  top: 50px;
  left: 12px;
  outline:none;
  background: url('menu1.png') no-repeat left center;
  z-index:99999;
	width:45px;
	height:40px;
}

.btn-hamburgers {
  border: none;
  position: absolute;
  top: 90px;
  left: 12px;
  outline:none;
  background: url('menu.png') no-repeat left center;
  z-index:99999;
	width:45px;
	height:40px;
}
@media only screen and (min-width: 700px) { 
.menuz { display: none; }
.btn-hamburgers { display: none; }
.btn-hamburger { display: none; }
.logo-holders img { margin-left:0px; }
.panel-header {	display: none;}
#wrapper {	margin-top:0px;}
}


.menuz {
  background-color: #F8FBFE !important;
  background-image: linear-gradient(145deg, #F8FBFE, #F8FBef);
}

a {
  text-decoration: none;
}

.menuz a {
  color: #fff;
}

.menuz a:hover {
  text-decoration: underline;
}



.menu-section-list {
  padding:0;
  margin: 10px 0;
  list-style:none;
}

.menu-section-list a {
  display: block;
  padding: 8px 20px;
}
.menu-section-list a:hover {
  font-weight: bold;
}

.panelz {
  text-align: center;
  padding-top: 5px;
  min-height: 100%;
}

/**
 * Header
 */
.panel-header1 {
  margin: 0px;
}
.panel-header {
  margin: 70px;
}


.title {
  font-size: 3.2em;
  line-height: 1em;
  margin: 0 0 15px;
  color: #4B5;
  font-weight: 400;
  padding-top: 30px;
}

.subtitle {
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1.2em;
  margin:0 0 45px 0;
  color: #767676;
}

/**
 * Action buttons
 */
.panel-actions {
  margin: 20px 0;
}


.tooltipss {
  font-size: 20px;
  line-height: 19px;
  display: inline-block;
  color: #fff;
  padding: 10px 45px 10px 20px;
  border-radius: 4px;
  position: relative;
  left: 50px;
}

.tooltipss:before {
  content: '';
  display:inline-block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 50%;
  left: -5px;
  margin-top: -6px;
}



/**
 * Medium Screens
 */
@media all and (min-width:40em) {

  .btn-hamburger {
    top: 20px;
    left: 30px;
  }

  .panel-header {
    margin-top: 40px;
    width: 455px;
  }

}


/**
 * Slideout module styles
 */

.slideout-menu {
 position: fixed;
 top: 0;
 bottom: 0;
 width: 256px;
 min-height: 100vh;
 overflow-y: scroll;
 -webkit-overflow-scrolling: touch;
 z-index:9999999999 !important;
 display: none;
}

.slideout-menu-left {
 left: 0;
}

.slideout-menu-right {
 right: 0;
}

.slideout-panel {
 position: relative;
 z-index: 1;
 /* background-color: #FFF; A background-color is required */
 will-change: transform;
 min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
 overflow: hidden;
}

.slideout-open .slideout-menu {
 display: block;
}

/* Animation
---------------------------------- */
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform:translate3d(-10px, 0, 0);
    transform:translate3d(-10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform:translate3d(-10px, 0, 0);
    transform:translate3d(-10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name:shake;
  animation-name:shake;
  -webkit-animation-duration:2s;
  animation-duration:2s;
  -webkit-animation-iteration-count: 4;
  animation-iteration-count: 4;
}