
.glide-panel {
  text-align:left;
  font-family: Arial, Helvetica, sans-serif;
  color:#808080;
  position:fixed!important;
  top: 100px;
  background-color: #fff;
  width:400px;
  max-width:100%;
  border: solid 1px #ccc;
  z-index:1200;
  border-radius: 2px;
  font-size:12px;
  padding:10px;
  margin-left:-395px;
  -webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.glide-panel.horizontal {
  width:100%;
 top: auto;
 bottom:0px;
 margin-left: 0px;
 margin-bottom: -195px;
 padding-bottom:0px;
}
.glide-panel.horizontal .grunt-log {
  height:80px;
}
.glide-panel.horizontal .switches {
  padding-top: 10px;
  float: right;
}


.glide-panel.horizontal .actions {
  float: left;
  width:33%;
}
.glide-panel.horizontal .switches>div {
  width: auto;
}
.glide-panel.horizontal .switches span {
  padding-left: 20px;
  float:left;

}
.glide-panel.horizontal input,
.glide-panel.horizontal label {
  float:left;
display: inline-block;
}
.glide-panel.horizontal hr {
  display: none;
}
.glide-panel h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #00aeef;
  margin-right:30px;
  padding:10px 0px 5px 0px;
}
.glide-panel button {
    border-radius: 3px;
    border-style: none;
    margin: 10px 0px;
    padding: 10px;
    width: 48%;
    color:#fff;
}

.glide-panel button.disabled {
  opacity: 0.5;
}
.glide-panel button.start {
  float: left;
  background-color: rgba(19,191,17,10);
}
.glide-panel button.start:hover:not(.disabled) {
  cursor:pointer;
  background-color: rgba(19,168,17,10);
}
.glide-panel button.stop {
  float: right;
  background-color: rgba(253,60,49,10);
}
.glide-panel button.stop:hover:not(.disabled) {
  cursor:pointer;
  background-color: rgba(224,60,49,10);
}

.glide-panel.open {
  margin:0px;
}
.glide-panel .open-panel {
  width:40px;
  height:60px;
  background-color:#fff;
  content:"+";
  position:absolute;
  right:-40px;
  border: solid 1px #ccc;
  border-left-width: 0px;
  border-radius: 0px 5px 5px 0px;
  font-size: 25px;
    line-height: 57px;
}
.glide-panel.horizontal .open-panel {
  width:60px;
  height:40px;
  background-color:#fff;
  content:"+";
  position:absolute;
  left:20px;
  top:-40px;
  text-align: center;
  border: solid 1px #ccc;

  border-bottom-width: 0px;
  border-radius: 5px 5px 0px 0px;
  font-size: 25px;
    line-height: 40px;
}

.glide-panel .grunt-log {
  background-color: #f7f7f7;
  border: solid 1px #ccc;
  padding:10px;
  overflow: auto;
  font-size: 10px;
  line-height: 13px; 
  height : 180px;
}
.glide-panel .grunt-log p br {
  padding-bottom: 20px;
}

.open-panel h3 {
  font-size: 14px;
  margin-bottom: 10px;
  padding: 20px 0 10px;
}

/* The following hides the actual checkbox, so that we only see the label */
     .glide-panel hr {
        background-color: #dedede;
        border-width: 0;
        height: 1px;
        clear:both;
        width: 100%;
      } 
      input#setliveReload, input#setautoPublish, input#setstayOpen {
        max-height: 0;
        max-width: 0;
        opacity: 0;
      }
      
      /* The following provides the "container" for our toggle in its default (off) state */
      .switches > div {
        width:32%;
        text-align: center;
        display:inline-block;
      }

      .switches span {
        text-transform: uppercase;
      }

      .switches input {
        display:block;
      }
      .switches label {
        margin:0px auto;
      }
      input#setliveReload + label, input#setautoPublish + label, input#setstayOpen + label {
        display: block;
        position: relative;
        box-shadow: inset 0 0 0px 1px #d5d5d5;
        text-indent: -5000px;
        height: 30px;
        width: 50px;
        border-radius: 15px;
      }
      
      /* The following provides the green background for the "on" state of our toggle - it is hidden when the switch is off */
      
      input#setliveReload + label:before, input#setautoPublish + label:before, input#setstayOpen + label:before {
        content: "";
        position: absolute;
        display: block;
        height: 30px;
        width: 30px;
        top: 0;
        left: 0;
        border-radius: 15px;
        background: rgba(19,191,17,0);
        -webkit-transition: .25s ease-in-out;
      }
      
      /* The following provides the actual switch and its drop shadow */
      
      input#setliveReload + label:after, input#setautoPublish + label:after, input#setstayOpen + label:after {
        content: "";
        position: absolute;
        display: block;
        height: 30px;
        width: 30px;
        top: 0;
        left: 0px;
        border-radius: 15px;
        background: white;
        box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), 0 2px 4px rgba(0,0,0,.2);
        -webkit-transition: .25s ease-in-out;
      }
      
      /* The following defines the "on" state for the switch */
      
      input#setliveReload:checked + label:before, input#setautoPublish:checked + label:before, input#setstayOpen:checked + label:before  {
        width: 50px;
        background: rgba(19,191,17,1);
      }
      
      input#setliveReload:checked + label:after, input#setautoPublish:checked + label:after, input#setstayOpen:checked + label:after {
        left: 20px;
        box-shadow: inset 0 0 0 1px rgba(19,191,17,1), 0 2px 4px rgba(0,0,0,.2);
      }

/* Icone glide */
@font-face {
  font-family: 'glide';
  src: url('../font/glide.eot?13623017');
  src: url('../font/glide.eot?13623017#iefix') format('embedded-opentype'),
       url('../font/glide.woff?13623017') format('woff'),
       url('../font/glide.ttf?13623017') format('truetype'),
       url('../font/glide.svg?13623017#glide') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'glide';
    src: url('../resources/font/glide.svg?13623017#glide') format('svg');
  }
}
*/
 
 [class^="glide-icon-"]:before, [class*=" glide-icon-"]:before {
  font-family: "glide";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
     
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.glide-icon-ok:before { content: '\e800'; } 
.glide-icon-cancel:before { content: '\e801'; } 
.glide-icon-check:before { content: '\e802'; } 
.glide-icon-cog-alt:before { content: '\e803'; } 
.glide-icon-resize-horizontal:before { content: '\e804'; }
.glide-icon-resize-vertical:before { content: '\e805'; } 

.glide-panel .layout-mode {
  position: absolute;
  right: 10px;
  top:20px;
  font-size: 16px;
}
.glide-panel .layout-mode:hover {
  cursor:pointer;
  background-color:#f7f7f7;
  color: #00aeef;
}
.glide-icon-resize-vertical {
  display:none;
}
.horizontal .glide-icon-resize-vertical {
  display:block;
}
.horizontal .glide-icon-resize-horizontal {
  display:none;
}

.glide-panel .layout-mode {
    border: 0 solid #f7f7f7;
    border-radius: 25px;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 25px;
    width: 30px;
}
