﻿.AxisVisualizer {
    position: relative;
}

#crosshair {
    position: absolute;
    top: 200px;
    left: 200px;
    width: 5px;
    height: 5px;
    z-index: 100;
}

* {
    touch-action: pan-y;
}

.popup {
    background-color: rgba(0, 0, 0, 0.4);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.rot-90 {
    transform: rotate(90deg);
}

#responsive.bg-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    z-index: -999;
}

.LinkStyle {
    width: 170px;
    display: inline-block;
    padding: 8px 10px 10px 10px;
    font-size: 15px;
    border-width: 2px;
    border-color: #ffffff;
    border-radius: 25px 25px 25px 25px;
    font-weight: bold;
    text-align: center;
}

.Separate {
    width: 160px;
    height: 1px;
    background-color: #ffffff;
    margin: auto;
    opacity: 0.4;
}

.LinkStyle {
    width: 170px;
    display: inline-block;
    padding: 8px 10px 10px 10px;
    font-size: 15px;
    border-width: 2px;
    border-color: #ffffff;
    border-radius: 25px 25px 25px 25px;
    font-weight: bold;
    text-align: center;
}

.LinkIcon {
    display: inline-block;
    width: 30px;
    vertical-align: sub;
}

.Separate {
    width: 160px;
    height: 1px;
    background-color: #ffffff;
    margin: auto;
    opacity: 0.4;
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

#loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}
