/* 
    Created on : 8.2.2015, 20:03:51
    Author     : valiasek
*/

/*MENU WRAPPER*/
div#ctsElsWrapper{
    position: fixed;
    top: 2rem;
    right: 0.2em;
    display: none;
    z-index: 1500;
    vertical-align: top;
    width: 80px;
    max-width: 80px;
    height: auto;
}

/*DIRECTION ARROWS*/
#ctsElsWrapper > .cts-arrow{
    display: block;
    position: relative;
    width: 80px;
    height: 30px;
}
#ctsElsWrapper > #dots {
    display: block;
    position: relative;
    top:33vh;
}

/*ARROWS COLOR VARIATIONS*/
#ctsElsWrapper > .cts-arrow.cts-up{
    background: url('../img/ArrowUpOpacity.svg') no-repeat scroll center center transparent;
    position: fixed;
    top:1rem;
    left:45vw;
}

#ctsElsWrapper > .cts-arrow.cts-down{
    background: url('../img/ArrowDownOpacity.svg') no-repeat scroll center center transparent;
    position: fixed;
    bottom:2rem;
    left:45vw;
}


#ctsElsWrapper > .cts-arrow.cts-up.cts-ar-white{
    background: url('../img/ArrowUp.svg') no-repeat scroll center center transparent;
}

#ctsElsWrapper > .cts-arrow.cts-down.cts-ar-white{
    background: url('../img/ArrowDown.svg') no-repeat scroll center center transparent;
}


/*TEXT BETWEEN ARROWS*/
#ctsElsWrapper > p.cts-text{
    text-align: center;
    margin: 1.5em 0em;
    font-weight: normal;
    color: #b1b1b1;
    display: block;
    width: 80px;
    max-width: 80px;
}

/*DOT LINKS*/
#dots > a.cts-dot{
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    border: none;
    outline: none;
    margin: 1em 0em;
    left: 30px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    transition: background-color 250ms ease-in-out 0s;
}

#dots > a.cts-dot:first-child{
    margin-top: 1.7em;
}

/*DOT COLOR VARIATIONS*/
#dots> a.cts-dot.cts-dot-blue{
    background-color: #003c73;
    transition: background-color 250ms ease-in-out 0s;
}

#dots > a.cts-dot.cts-dot-white{
    background-color: #1A191A;
    transition: background-color 250ms ease-in-out 0s;
}

#dots > a.cts-dot.cts-dot-orange{
    background-color: #dc642d;
    transition: background-color 250ms ease-in-out 0s;
}

#dots > img.cts-preload{
    display: none;
}

/*MEDIA QUERIES - SHOW MENU ONLY ON BIGGER DEVICES*/
@media (min-width: 768px) {
    div#ctsElsWrapper {
        display: inline-block;
    }
}