/* Viewer */
@charset "UTF-8";
@font-face {
    font-family: technaSans;
    src: url(../fonts/TechnaSans-Regular.otf);
}
:root{
    /* Test Colors */
    --testRed: rgba(255, 0, 0, 0.1);
    --testGreen: rgba(0, 255, 0, 0.1);
    --testBlue: rgba(0, 0, 255, 0.1);
    /* Background Color */
    --colorGrayBlue: rgba(227,241,254,1.0);
    --brownFp:rgba(69,26,29,1.0);
    --redFp:rgba(238,47,38,1.0);
    --yellowFp:rgba(240,94,36,1.0);
    --white: rgba(255,255,255,1.00);
    --gray10:rgba(245,245,245,1.00);
    --gray25:rgba(200,200,200,1.00);
    --gray90: rgba(45,45,45,1.00);
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: auto;
}
body{
    background-color: rgba(33,33,33,1);
}
/* Flex Rules */
.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
/* container pages */
#container-pages{
    flex-flow: column wrap;
    justify-content: center;
    align-content: center;
    align-content: center;
    padding: 0 4%;
    position: relative;
    z-index: 1;
}
/* Vertical Image Info Pop up */
.vertical-info{
    width: 100%;
    max-width: 280px;
    min-width: 1px;
    height: auto;
    display: block;
    overflow: hidden;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color:rgba(1,1,1,0.75);
}
.vertical-info > img{
    width: 100%;
    min-width: 1px;
    height: auto;
    display: block;
}
/* Images Pages */
img.page{
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 9px auto;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
img.page:first-child{
    margin-top: 18px;
}
img.page:last-child{
    margin-top: 18px;
}
/* Styles: 705px */
@media only screen and (max-width: 1080px){
    .vertical-info{
        max-width: 260px;
    }
}
/* Styles: 705px */
@media only screen and (max-width: 960px){
    .vertical-info{
        max-width: 240px;
    }
}
/* Styles: 705px */
@media only screen and (max-width: 450px){
    .vertical-info{
        max-width: 200px;
    }
}