
/* ============================================== PLUGINS
*/

/*jQuery Images Compare - https://github.com/sylvaincombes/jquery-images-compare*/

/* Images compare main container */
.images-compare-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Images compare front element */
.images-compare-before {
    will-change: clip;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Images compare back element */
.images-compare-after {
    pointer-events: none;
}

/* Responsive image settings */
.images-compare-before img, .images-compare-after img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Separator (thin vertical blank line) */
.images-compare-separator {
  position: absolute;
  height: 100%;
  width: 4px;
  z-index: 4;
  left: 0;
  top: 0;
  background: : #000; /* Old browsers*/ 
  background: -moz-linear-gradient(top,  #000000 0%, #000000 50%, #000000 100%); 
  background: -webkit-linear-gradient(top,  #000000 0%,#000000 50%,#000000 100%); 
  background: linear-gradient(to bottom,  #000000 0%,#000000 50%,#000000 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=0 );
}

/* Drag handle (circle) */
.images-compare-handle {
    height: 30px;
    width: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -13px;
    margin-top: -19px;
    /*border: 3px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);*/
    z-index: 3;
    /*background: #917241;*/
    cursor: pointer;

    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f8dcab+0,917241+50,f8dcab+100 */
    background: #000; 
    /* Old browsers */
    /*background: -moz-linear-gradient(top,  #f8dcab 0%, #917241 50%, #f8dcab 100%);  FF3.6-15 */
    /*background: -webkit-linear-gradient(top,  #f8dcab 0%,#917241 50%,#f8dcab 100%);  Chrome10-25,Safari5.1-6 */
    /*background: linear-gradient(to bottom,  #f8dcab 0%,#917241 50%,#f8dcab 100%);  W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8dcab', endColorstr='#f8dcab',GradientType=0 );  IE6-9 */

}

/* Drag handle arrows */
.images-compare-left-arrow, .images-compare-right-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.images-compare-left-arrow {
    border-right: 6px solid #fff;
    left: 50%;
    margin-left: -17px;
}

.images-compare-right-arrow {
    border-left: 6px solid #fff;
    right: 50%;
    margin-right: -17px;
}

/* Label */
.images-compare-label {
  font-family: inherit;
  /*text-transform: uppercase;*/
  /* font-weight: bold;*/
  position: absolute;
  top: 15px;
  left: 10px;
  z-index: 1;
  color: #fff;
  font-size:12px;
  line-height: 1;
  /*color: rgb(0, 0, 0);
  color: rgba(0, 0, 0, 0.4);
  background: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.7);*/
  /*padding: 10px;*/
  /*border-radius: 5px;*/
  pointer-events: none;
  display: none;
  font-family: 'Nord';
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  
}
.slider-small-text{
  font-size:11px;
}

.images-compare-container .images-compare-label {
    display: inherit;
}

.images-compare-before .images-compare-label {
    left: 10px;
}

.images-compare-after .images-compare-label {
    left: auto;
    right: 10px;
}

.box-to-left{
  position:relative;
  left: -200px;
  
}



