﻿body {
    -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+ */
    overflow-x: hidden !important;
}

    body::-webkit-scrollbar {
        width: 8px;
        padding: 5px;
    }

    body::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    body::-webkit-scrollbar-track {
        background-color: rgba(255,255,255,.08);
    }

    body::-webkit-scrollbar-thumb:active {
        background: #878383;
    }

div::-webkit-scrollbar {
    width: 8px;
    padding: 5px;
}

div::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    -webkit-border-radius: 0;
    border-radius: 0;
}

div::-webkit-scrollbar-track {
    background-color: rgba(255,255,255,.08);
}

div::-webkit-scrollbar-thumb:active {
    background: #878383;
}

.headerBar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background-color: white;
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -o-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 0 20px -5px;
    z-index: 10;
}

.headerContainer {
    width: 80%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.socialLinks {
    margin: auto;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    float: right;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: small;
    margin-right: 30px;
    position: relative;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    -webkit-box-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: -webkit-baseline-middle;
    -webkit-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: -webkit-center;
}

.facebookSvg {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    fill: #cccccc;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26),0 2px 10px 0 rgba(0,0,0,.16);
    border-radius: 100%;
}

    .facebookSvg:hover {
        fill: #576FA3;
    }

.twitterSvg {
    fill: #cccccc;
    display: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 100%;
}

    .twitterSvg:hover {
        fill: #27B3E8;
    }

.siteLinks {
    width: auto;
    margin: auto;
    text-align: right;
    font-family: Arial;
    text-transform: uppercase;
    position: relative;
    float: right;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    -webkit-box-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: -webkit-baseline-middle;
    -webkit-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.menuButton {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 35px;
    border: solid 1px #ddd;
    background: white;
    border-radius: 5px;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
    outline: 0;
}

    .menuButton:hover {
        background: #ddd;
    }

    .menuButton:active {
        background: white;
    }

.links {
    text-decoration: none;
    color: #777;
    border-bottom: solid 0 #777;
    margin-right: 24px;
    cursor: pointer;
}

    .links:hover {
        border-bottom: solid 2px #777;
    }

.menuPop {
    position: absolute;
    width: 180px;
    background: white;
    z-index: 10;
    border-radius: 2px;
    border: solid 1px #ddd;
    text-align: -webkit-auto;
    text-align: left;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26),0 2px 10px 0 rgba(0,0,0,.16);
}

    .menuPop::-webkit-scrollbar {
        width: 5px;
        padding: 5px;
    }

    .menuPop::-webkit-scrollbar-thumb {
        background: #ddd;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    .menuPop::-webkit-scrollbar-track {
        background-color: transparent;
    }

.menuLinks {
    border: none;
    background: white;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 35px;
    font-size: smaller;
    color: #757575;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    outline: 0;
}

    .menuLinks:hover {
        background: #ddd;
        color: white;
        /*box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);*/
    }





.logo {
    height: 80%;
    cursor: pointer;
    position: absolute;
    margin: 0;
    width: initial;
    top: 50%;
    left: 100px;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 10;
}

.logoResize {
    height: 50%;
    cursor: pointer;
    position: absolute;
    margin: 0;
    width: 100px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

#floatingInfoTable img {
    width: 130px;
    height: 130px;
}

td {
    font-size: x-large;
    color: #777777;
}

#floatingInfoTable td {
    font-size: large;
}

.overlayContainer {
    position: relative;
    width: 80%;
    top: 20px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}

    .overlayContainer img {
        width: 100%;
    }

.centerContainer {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    overflow-y: auto;
    bottom: 0;
    background-color: #eee;
}

.hyperlink {
    color: #777777;
    text-decoration: none;
    font-size: 15px;
    font-family: Calibri;
    border: solid 2px #C4C3C3;
    background-color: white;
    outline: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    -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;
}

    .hyperlink:active {
        background-color: white;
        color: #777777;
    }

    .hyperlink:hover {
        background-color: grey;
        color: white;
    }


.hyperlinkDiv {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: 50px;
    -ms-word-break: break-all;
    word-break: break-all;
    text-align: right;
    text-transform: uppercase;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hyperlinkDivRight {
    position: absolute;
    top: 90px;
    right: 0;
    width: 33.3%;
    -ms-word-break: break-all;
    word-break: break-all;
    text-align: right;
    text-transform: uppercase;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .hyperlinkDivRight button:hover svg {
        fill: white;
    }

.hyperlinkDivLeft {
    position: absolute;
    top: 90px;
    left: 0;
    width: 33.3%;
    -ms-word-break: break-all;
    word-break: break-all;
    text-align: left;
    text-transform: uppercase;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .hyperlinkDivLeft button:hover svg {
        fill: white;
    }

.hyperlinkDivMiddle {
    position: absolute;
    top: 90px;
    left: 33.3%;
    width: 33.3%;
    -ms-word-break: break-all;
    word-break: break-all;
    text-align: center;
    text-transform: uppercase;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .hyperlinkDivMiddle button:hover svg {
        fill: white;
    }

.features {
    position: relative;
    top: -2000px;
    left: 50%;
    color: black;
    width: 100%;
    overflow: auto;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    z-index: 100;
}

.featuresList {
    position: relative;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: white;
    font-family: Arial;
    overflow: auto;
    color: #777;
    text-align: center;
    list-style: none;
    width: 80%;
    font-size: 25px;
    border-radius: 10px;
    padding: 0;
    margin: 0;
}

    .featuresList li {
        border-bottom: solid 1px #ddd;
        padding-bottom: 10px;
        border-radius: inherit;
    }

.featuresListResize {
    position: relative;
    background-color: white;
    font-family: Arial;
    overflow: auto;
    color: #777;
    text-align: center;
    list-style: none;
    font-size: 25px;
    padding: 0;
    width: 100%;
    margin: 0;
    height: inherit;
    border-radius: 0;
}

    .featuresListResize li {
        border-bottom: solid 1px #ddd;
        padding-bottom: 10px;
        border-radius: inherit;
    }

.peekMenu {
    position: absolute;
    width: 250px;
    background-color: #777777;
    opacity: 0;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.26),0 2px 10px 0 rgba(0,0,0,.16);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26),0 2px 10px 0 rgba(0,0,0,.16);
}

.peekmenuLinks {
    border: none;
    background: #777777;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 19px;
    color: white;
    height: 50px;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    outline: 0;
}

    .peekmenuLinks:hover {
        background: white;
        color: #777777;
        /*box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);*/
    }

.smallPeekDiv {
    position: relative;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -5px;
    width: 10px;
    height: 10px;
    left: 30px;
    opacity: 0;
    background-color: #777777;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
