﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}


div#comparison {
    width: 100%;
    height: 90vw;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

    div#comparison figure {
        background-image: url('../images/src.bmp');
        background-size: cover;
        position: relative;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    div#comparison figure > img {
        position: relative;
        width: 100%;
 	height: 100%;
    }

        div#comparison figure div {
            background-image: url('../images/dest.bmp');
            background-size: cover;
            position: absolute;
            width: 100%;
            box-shadow: 0 1px 0px 1px rgb(11, 194, 30);
            overflow: hidden;
            bottom: 0;
            height: 100%;
        }

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    top: 0rem;
    left: 0%;
    background-color: rgba(255,255,255,0.1);
    width: 100%;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]:active {
        outline: none;
    }

    input[type=range]::-moz-range-track {
        -moz-appearance: none;
        height: 15px;
        width: 100%;
        background-color: rgba(255,255,255,0.3);
        position: relative;
        outline: none;
    }

    input[type=range]::active {
        border: none;
        outline: none;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 15px;
        background: #fff;
        border-radius: 0;
    }

    input[type=range]::-moz-range-thumb {
        -moz-appearance: none;
        width: 20px;
        height: 15px;
        background: #fff;
        border-radius: 0;
    }

    input[type=range]:focus::-webkit-slider-thumb {
        background: rgba(255,255,255,0.5);
    }

    input[type=range]:focus::-moz-range-thumb {
        background: rgba(255,255,255,0.5);
    }
