
.rangeslider {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  transition: opacity .2s;
}


/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
.degreesLabel{
  position: absolute;
  top:5px;
  left:15px;
  border-radius: 5px;
  background:rgba(255,255,255,0.7);
}

.modal .degreesLabel{
  top:15px;
  left:25px;
}

#sliderImages{
  /*position: relative;*/
}
.sliderImage{
  
  position:absolute;
  top:0;
  left: 0;
}

.highlight {
  outline: 6px solid rgba(255,0,0,.5);
}
.highlight:hover, .highlight:focus {
  outline-color: rgba(255,0,0,1);
}
.highlightDouble{
  border: 6px double rgba(255,0,0,.5);
}
.highlightblue{
  outline: 6px solid rgba(0,0,255,.5);        
}

.highlightblue:hover, .highlightblue:focus {
  outline-color: rgba(0,0,255,1);
}
.highlightText{
  background-color: rgba(255,255,255,.6);
  display: inline-block;
}
.highlightTextCenter{
  background-color: rgba(255,255,255,.6);
  text-align: center;
}
.rotationOverlay {
  border-radius: 25px;
  padding: 10px;
}
.rotationOverlay img {
  background: radial-gradient(circle at center, rgba(255,255,255,1),rgba(255,255,255,.9)20%, rgba(255,255,255,0)40%);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  transition: transform .4s ease-in-out;
  padding: 40px;
}
.rotationOverlay img:hover, .rotationOverlay img:focus {
  transform: translate(-50%, -50%) rotate(180deg) ;
}

.circleEdges {
  margin: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.insetTopright{
  position: relative;
  float:right;
}

.info-div{
  position:absolute;
  right:30px;
  top:30px;
  left:30px;
  background-color:#eee;
  padding:10px 20px;
  border-radius:5px;
  border:solid 1px #000;
  overflow-y:auto;
  z-index:1;
  max-height:calc(100% - 60px);
  transition: right 1s,left 1s,top 1s,bottom 1s;
}

.insetRight{
  left:70%;
  right:10px;
}

.insetLeft{
  right:70%;
  left:10px;
}

.insetCenter{
  left:10px;
  right:10px;
}

.insetBottom{
  top:auto;
  bottom:10px;
}

.insetTop{
  top:10px;
  bottom:auto;
}

.insetFill{
  left:10px;
  right:10px;
  bottom:10px;
  top:10px;
  max-height:calc(100% - 20px);
}

@media only screen and (max-width: 768px) {
  /* For small screens */
  .insetRight{
    bottom:0px;
    top:auto;
    left: 0px;
    right:0px;
    max-height: 40%;
  }

  .insetLeft{
    bottom:0px;
    top:auto;
    left: 0px;
    right:0px;
    max-height: 40%;
  }

  .insetCenter{
    top:0px;
    bottom:0px;
  }

  .insetBottom{
    top:auto;
    bottom:0px;
  }

  .insetTop{
    top:0px;
    bottom: auto;
  }

  .insetFill{
    left:0px;
    right:0px;
    bottom:0px;
    top:0px;
    max-height:100vh;
  }


}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
  from {-webkit-transform:rotate(0deg);}
  to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
  from {transform:rotate(0deg);}
  to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.embed-responsive-item{
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 12px;
}
.embed-responsive {
  position: relative;
  width:100%;
  height: 0;
}
.embed-responsive-16by9{
  padding-top: 56.25%;
}
canvas { 
    display: block; /* fix necessary to help with reSize issues? */
}

.btn-primary.disabled, .btn-primary:disabled{
  background-color: rgba(125, 125, 125, 0.8);
  border-color: rgba(125, 125, 125, 0.8);;
}