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

/*MENU WRAPPER*/
div#ctsElsWrapper{
    position: fixed;
    top: 20vh;
    right: 4em;
    display: none;
    z-index: 1500;
    vertical-align: top;
    width: 50px;
    max-width: 50px;
    height: auto
}

/*DIRECTION ARROWS*/
#ctsElsWrapper > .cts-arrow{
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
}

/*ARROWS COLOR VARIATIONS*/
#ctsElsWrapper > .cts-arrow.cts-up{
    background: url('img/Page-arrow-up-hover.png') no-repeat scroll center center transparent;
	background-size: 100% auto
}

#ctsElsWrapper > .cts-arrow.cts-down{
	margin-top:-20px;
    background: url('img/Page-arrow-down-hover.png') no-repeat scroll center center transparent;
	background-size: 100% auto
}

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

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

#ctsElsWrapper > .cts-arrow.cts-up.cts-ar-purple{
    background: url('img/Page-arrow-up.png') no-repeat scroll center center transparent;
	background-size: 100% auto
}

#ctsElsWrapper > .cts-arrow.cts-down.cts-ar-purple{
    background: url('img/Page-arrow-down.png') no-repeat scroll center center transparent;
	background-size: 100% auto
}

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

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

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

#ctsElsWrapper > .cts-arrow.cts-down.cts-ar-blue{
    background: url('img/arrow-blue-down.png') 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*/
#ctsElsWrapper > a.cts-dot{
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    border: none;
    outline: none;
    margin: 1em 0em;
    left: 15px;
    border-radius: 50%;
    background-color: #dcc4e3;
    transition: background-color 250ms ease-in-out 0s;
}

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

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

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

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

#ctsElsWrapper > a.cts-dot.cts-dot-purple{
    background-color: #652798;
    transition: background-color 250ms ease-in-out 0s;
}

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

/*MEDIA QUERIES - SHOW MENU ONLY ON BIGGER DEVICES, etc. */

@media (min-width:973px) and (max-width: 1300px) {
	div#ctsElsWrapper{ left: 0px;
	opacity:0.7 } 
}
@media (min-width:769px) and (max-width: 972px) {
	div#ctsElsWrapper{ display: none } 
}

@media (min-width: 768px) {
    div#ctsElsWrapper {
        display: none;
    }
}