﻿body {
    -webkit-appearance: none;
    background-color: white; /*#DCF8C6;*/
    min-width: 1000px;
    font-family: Arial;
    overflow: auto;
    -webkit-user-select: none;
    user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.imageContainer {
    position: absolute;
    top: 10px;
    left: 5%;
    right: 5%;
    border: solid 2px #ddd;
    overflow: auto;
    border-radius: 10px;
    bottom: 0;
    text-align: center;
}

    .imageContainer img {
        
        height: 100%;
        width:90%;
        vertical-align: -webkit-baseline-middle;
        overflow: auto;
    }

.containerGallery {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
}

.smalls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    overflow-x: auto;
    background-color: #eee;
}

    .smalls:hover {
        opacity: 1;
    }

    .smalls img {
        height:200px;
        vertical-align: -webkit-baseline-middle;
        cursor:pointer;
    }

    .smalls::-webkit-scrollbar {
        height: 5px;
        -moz-background-clip: padding-box;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }

    .smalls::-webkit-scrollbar-thumb {
        background-color: white;
    }

    .smalls::-webkit-scrollbar-track {
        background-color: transparent;
    }
    .smallsTable{
        width:100%;
        height:100%;
        text-align:center;
    }

.arrowLeft {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 7%;
    fill: #C1591C;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    opacity: 0.5;
    z-index: 5;
}

.arrowRight:hover {
    opacity: 1;
}

.arrowRight {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 7%;
    fill: #C1591C;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    opacity: 0.5;
    z-index: 5;
}

.arrowLeft:hover {
    opacity: 1;
}

.overlay {
    height: 0;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
    cursor: pointer;
}
.overlayInfo {
    height: inherit;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: -100; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}
