#mobile-device {
  display: none;  
}
/*
@media @mobile {
  #mobile-device {
    display: block;  
  }
}
*/
@media screen and (max-width: 760px) {
  #mobile-device {
    display: block;  
  }
  #mainContainer {
    display: none;
  }
}  
@media (hoverL none) {
  #mobile-device {
    display: block;  
  }
  #mainContainer {
    display: none;
  }
}

.hidden {
  display: none;
}
.show {
  display: block !important;
}

.debugElement {
  display: none;
}

.showoutline {
  // border:1px solid red;
}
.showoutlinered {
  border:2px solid red;
}
.showoutline2 {
  border:1px solid blue;
}
.showoutline3 {
  border:1px solid green;
}
.showoutline4 {
  border:1px solid yellow;
}
.showbg {
  background-color: lightcyan;
}

.placeholder {
  position: absolute;
  top: calc(50% - 1em);  
  font-size: 1.5em;
  font-style: italic;
  color: darkgrey;
  padding: 0.25em 0.5em;
  border: 1px dashed darkgrey;
  border-radius: 0.2em;
  
}

.popupPanel {
    position: absolute;
    padding: 10px;
    color: lightgrey;
    background: #333a42;
    opacity: 0.9;
    border: 2px solid grey;
    border-radius: 5px;
    font-size: 1.25em;
}

// .popupPanel .collapsed {
//   padding: 0;
//   border: 0;
// }

.panelHeader {
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid whitesmoke;
  font-size: 1.5em;
}
.panelHeaderButtons {
  position: absolute;
  top: -5px;
  right: 0;
}
.panelHeaderButton {
  float: right;
  margin-left: 10px;
  // position: absolute;
  // top: -10px;
  // right: -5px;
}

.panelContent {
}



.buttonRegular {
  width: 2.5em;
  height: 2.5em;
  z-index: 2;
  font-size: 1.25em;
}
.buttonRegular button {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 1em;
}
.buttonRegular button .fa {
  vertical-align: middle;
}

.buttonSmall {
  width: 1.5em;
  height: 1.5em;
  z-index: 2;
  font-size: 0.75em;
}
.buttonSmall button {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 1em;
}
.buttonSmall button .fa {
  // vertical-align: middle;
}

.butonTextAndIcon button {
  width: 100%;
  height: 100%;
  margin: 10px 0 5px 0;
  // line-height: 1.5em;  
  font-size: 1em;
}
.butonTextAndIconContent {
  position: relative;
}



.dropDownList {
    display: block;
    width: 100%;
    height: 100%;
    padding: .5rem .75rem;
    font-size: 1em;
    color: lightgrey;
    background-color: dimgrey;
}
.dropDownList option {
  background: transparent !important;
}


/* SWTICHES CSS */
/* The switch - the box around the slider */
.switch {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

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

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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