.glider-tooltip {
    opacity: 0;
    transition: opacity 1s;
    position: absolute;
    color: #333;
    -webkit-text-stroke-width: 0.5px;
    background: rgba(255, 255, 255, 0.7);
    padding: 2px 7px !important;
}

.glider-tooltip.fade {
    opacity: 1;
}

.glider-wrapper {
    z-index: 1;
}

.glider-wrapper {
    display: none; /* disable by default */
    position: absolute;
}

@media screen and (max-width: 449px) {
  .glider-wrapper {
    width: calc(100vw - 100px);
    margin-left: 50px;
    margin-right: 50px;
    bottom: 70px;
  }
}

@media screen and (min-width: 450px) and (max-width: 899px) {
  .glider-wrapper {
    width: calc(100vw - 280px);
    margin-left: 140px;
    margin-right: 140px;
    bottom: 60px;
  }
}

@media screen and (min-width: 900px) {
  .glider-wrapper {
    width: 619px;
    margin-left: calc(50vw - 300px);
    margin-right: calc(50vw + 300px);
    bottom: 60px;
  }
}

.glider-contain {
    background: linear-gradient(0deg, rgba(255,255,255,0.0) 20%, rgba(255,255,255,0.7) 20%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.0) 20%);
}

.glider-next:focus, .glider-next:hover, .glider-prev:focus, .glider-prev:hover {
    color: #757575!important;
}

.glider-next, .glider-prev {
    background-color: rgba(255,255,255,0.6)!important;
    height: 30px!important;
    line-height: 0px!important;
    padding-top: 0px!important;
    padding-bottom: 8px!important;
    padding-left: 4px!important;
    padding-right: 4px!important;
    border-radius: 2px;
    top: 10px!important;
}

.glider-prev {
    left: -35px!important;
}

.glider-next {
    right: -35px!important;
}

@-moz-document url-prefix() {
  .glider-track {
    margin-bottom: 17px;
  }
  .glider-wrap {
    overflow: hidden;
  }
}

.toggle-button-container {
    margin-left: 3px;
    margin-right: 3px;
}

.toggle-button-wrapper {
    position: relative;
    height: 40px;
}

.toggle-button-status {
    width: 0px;
    height: 0px;
}

.toggle-button-status.selected {
    width: 7px;
    height: 7px;
    moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 2px #fff;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3px;
    margin-bottom: 5px;
    background-color: #646464;
}

.toggle-button-image {
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-transition: opacity ease-in 0.1s;
    -moz-transition: opacity ease-in 0.1s;
    -o-transition: opacity ease-in 0.1s;
    -ms-transition: opacity ease-in 0.1s;
    transition: opacity ease-in 0.1s;
    opacity: 1.00;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0;
}

.toggle-button-background {
    width: 40px;
    height: 40px;
    border: 0 none;
    background-color: white;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0;
}

.toggle-button-image:hover {
    opacity: 1.00;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

#measurementSwitch {
   line-height: 26px;
   text-align: center;
}

#measurementSwitch .esri-icon-measure-line::before,
#measurementSwitch .esri-icon-measure-area::before,
#measurementSwitch {
    font-size: 24px;
}

/* The switch - the box around the slider */
.toggleSwitch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

/* Hide default HTML checkbox */
.toggleSwitch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.toggleSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.toggleSlider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .toggleSlider {
    background-color: #ccc;
}

input:focus + .toggleSlider {
    box-shadow: 0 0 1px #ccc;
}

input:checked + .toggleSlider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
