.characters-nav {
    position: absolute;
    right: 2.2em;
    width: 100px;
    height: 100%;
    z-index: 1;
}

.characters-nav ul{
    padding: 0;
    position: absolute;
    top: 29%;
    left: 0;
    width: 100%;
}

.creativa .characters-nav li{
    display: none;
}

.characters-nav li{
    list-style: none;
    margin-bottom: 30px;
    display: block;
}

.characters-nav ul li a{
    display: block;
    overflow: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 200px;
}

.characters-nav ul li a img{
    width: 100%;
    height: 100%;
}

.characters-nav ul li a img.img-hover{
    display: none;
}

@media screen and (max-width: 1024px) {
    .characters-nav {
        right: 10px;
        width: 75px;
    }

    .characters-nav ul {
        top: 25%;
        left: 0;
    }

    .characters-nav ul li a{
        width: 75px;
        height: 75px;
    }

    .characters-nav ul li a img {
        border-radius: 150px;
    }
}


/*MEDIA QUERY FOR MOBILE LANDSCAPE*/
@media screen and (min-width: 568px) and (max-width: 736px) {
    .characters-nav {
        width: 100% !important;
        height: auto;
        bottom: 0;
    }

    .characters-nav ul {
    position: static;
    width: 264px;
    background-color: lime;
    margin: 0 auto;
    }

  .characters-nav ul li{
        float: left;
        margin-left: 10px;
    }
}


