


body {
    margin: 0px;
    background-color: #000000;
    overflow: hidden;
    font-family: 'Source Sans Pro', sans-serif;
}

#preloader
{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: center;
    padding: 100px 30px 30px;
    background-color: #fff;
    font-size: 1em;
    color:#333;
    z-index: 11000;

}

[v-cloak] {display: none}

#preloader_value{
    margin-top: 20px;
}

#app{
}

#categoriesMenu
{
    z-index: 10000;
    background-color: #fff;
    width: 310px;
    position: fixed;
    right: 30px;
    top: 30px;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


#categoriesMenu .selectedCategory
{
    width: 100%;
    height: 55px;
    border: solid 2px #d84f57;
    box-sizing: border-box;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
}

#categoriesMenu .selectedCategory:hover{
    background-color: #fff9f9;
}

#categoriesMenu .arrowCaret
{
    float: right;
    color: #d84f57;
    font-size: 9px;
    top: 5px;
    position: relative;
    right: 5px;
}

#categoriesMenu .categoriesContainer
{
    max-height: calc(100vh - 165px);
    overflow: scroll;
}

#categoriesMenu .categoriesContainer .categoryItem
{
    width: 100%;
    height: 55px; 
    border: solid 1px #ccc;
    border-top: none;
    box-sizing: border-box;
    padding: 15px 16px;
    font-size: 16px;
    color: #999;
    cursor: pointer;
}
#categoriesMenu .categoriesContainer .categoryItem:hover
{
    color: #000;
}


#instructionsPanel{
    background-color: #fff;
    padding: 20px 30px 30px;
    font-size: 20px;
    color:#999;
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 250px;
    cursor: pointer;
}

#zoomButtonsContainer{
    position: fixed;
    right: 30px;
    bottom: 30px;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

#zoomButtonsContainer .zoomButton{
    background-color: #fff;
    border: solid 2px #d84f57;
    padding: 4px 7px 9px;
    font-size: 20px;
    color: #d84f57;
    width: 20px;
    height: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: -2px;
    cursor: pointer;
}

#zoomButtonsContainer .zoomButton:hover{
    background-color: #fff9f9;
}



#linearNavigationContainer{
    position: fixed;
    top: 50%;
    left: 50%;
    display: none;
}

#linearNavigationContainer .linearNavButton{
    cursor: pointer;
}

#linearNavigationContainer .navPrev{
    position: fixed;
    left: -330px;
}

#linearNavigationContainer .navNext{
    position: fixed;
    left: 300px;
}

#categoryTitle{
    color: #d84f57;
    position: fixed;
    bottom: 34px;
    right: 130px;
    font-size: 34px;
    font-weight: bold;
    /* text-shadow: -10px 0 #fff, 0 10px #fff, 10px 0 #fff, 0 -10px #fff; */
    text-shadow : 0 0 25px #fff;
    /* -moz-text-fill-color: #d84f57;
    -webkit-text-fill-color: #d84f57;
       -moz-text-stroke-color: #fff;
    -webkit-text-stroke-color: #fff;
       -moz-text-stroke-width: 2px;  
    -webkit-text-stroke-width: 2px; */

}

#selectedImageId{
    position: fixed;
    display: block;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.instructionsCloseBtn
{
    position: absolute;
    float: right;
    top: 3px;
    right: 3px;
}