#viz .viz-intro {
    width: 60%;
    max-width: 900px
}

#viz .category-tabs li:hover {
    cursor: pointer;
    color: #000
}

#viz .category-tabs li:hover svg {
    fill: #000
}

#viz .category-tabs .selected {
    color: #000;
    border-bottom: 2px solid #000
}

#viz .category-tabs .selected svg {
    fill: #000
}

#viz .viz-container {
    width: 85%;
    margin: 0 auto
}

@media only screen and (max-width: 560px) {
    #viz .viz-container {
        width:90%;
        margin-top: 20px
    }
}

#viz .cd-image-container {
    margin: 0 auto;
    position: relative;
    width: 100%
}

#viz .cd-image-container img {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 100%
}

#viz .cd-image-label {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #222 !important;
    padding: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
    -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s
}

#viz .is-visible .cd-image-label {
    font-family: "Open Sans",sans-serif;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.625em;
    color: #222;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#viz .cd-resize-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

#viz .cd-resize-img img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: auto;
    max-width: none !important;
    border-radius: 50%;
    overflow: hidden
}

#viz .is-visible .cd-resize-img {
    width: 50%;
    -webkit-animation: cd-bounce-in 0.7s;
    -moz-animation: cd-bounce-in 0.7s;
    animation: cd-bounce-in 0.7s
}

@-webkit-keyframes cd-bounce-in {
    0% {
        width: 0
    }

    60% {
        width: 55%
    }

    100% {
        width: 50%
    }
}

@-moz-keyframes cd-bounce-in {
    0% {
        width: 0
    }

    60% {
        width: 55%
    }

    100% {
        width: 50%
    }
}

@keyframes cd-bounce-in {
    0% {
        width: 0
    }

    60% {
        width: 55%
    }

    100% {
        width: 50%
    }
}

#viz .cd-handle {
    position: absolute;
    height: 70px;
    width: 70px;
    left: 50%;
    top: 50%;
    margin-left: -35px;
    margin-top: -35px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    cursor: ew-resize;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    -moz-transform: translate3d(0, 0, 0) scale(0);
    -ms-transform: translate3d(0, 0, 0) scale(0);
    -o-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0)
}

@media only screen and (min-width: 561px) {
    #viz .cd-handle {
        height:70px;
        width: 70px;
        margin-left: -35px;
        margin-top: -35px
    }
}

#viz .cd-handle:hover {
    background-color: rgba(255,255,255,0.5)
}

#viz .cd-handle.draggable {
    background-color: rgba(255,255,255,0)
}

#viz .is-visible .cd-handle {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -moz-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    -o-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s, background-color 0.5s;
    -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s, background-color 0.5s;
    transition: transform 0.3s 0.7s, opacity 0s 0.7s, background-color 0.5s
}

#viz .cd-handle-center {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: top 0.2s, right 0.2s, bottom 0.2s, left 0.2s;
    -moz-transition: top 0.2s, right 0.2s, bottom 0.2s, left 0.2s;
    transition: top 0.2s, right 0.2s, bottom 0.2s, left 0.2s
}

#viz .cd-handle:hover .cd-handle-center {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: #fff;
    border-radius: 50%
}

#viz .cd-handle.draggable .cd-handle-center {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 50%
}