
#ex-direction .patt-wrap {
    z-index: 10;
}

#ex-direction .patt-circ.hovered {
    background: #cde2f2;
    border: none;
}

#ex-direction .patt-circ.hovered .patt-dots {
    display: none;
}

#ex-direction .patt-circ.dir {
    background-image: url('icon-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
}

#ex-direction .patt-circ.e {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

#ex-direction .patt-circ.s-e {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#ex-direction .patt-circ.s {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

#ex-direction .patt-circ.s-w {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#ex-direction .patt-circ.w {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#ex-direction .patt-circ.n-w {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

#ex-direction .patt-circ.n {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

#ex-direction .patt-circ.n-e {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}


/* ------------------------------------------------- */


.patt-holder {
    background: #00000000;
    -ms-touch-action: none;
}

.patt-wrap {
    position: relative;
    cursor: pointer;
}

.patt-wrap ul, .patt-wrap li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.patt-circ {
    position: relative;
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.patt-circ.hovered {
    border: 0 solid white;
}

.patt-error .patt-circ.hovered {
    border: 3px solid #BA1B26;
}

.patt-hidden .patt-circ.hovered {
    border: 0;
}

.patt-dots {
    background: #FFF;
    width: 20%;
    height: 20%;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10%;
    margin-left: -10%;
}

.patt-lines {
    border-radius: 5px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
    position: absolute;
    transform-origin: 2px 0;
    -ms-transform-origin: 2px 0; /* IE 9 */
    -webkit-transform-origin: 2px 0;
}

.patt-hidden .patt-lines {
    display: none;
}
