.section-switch {
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    width: 145px;

    padding: 8px 15px 8px 10px;

    /* Styles */
    background: rgba(235, 235, 235, 0.4);
    border-left: 5px solid grey;
    cursor: pointer;
    outline: none;
    float:left;
}

.section-switch:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: grey transparent;
}

.section-switch .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: -5px;
    right: 0px;

    /* Styles */
    background: white;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.section-switch .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    border-left: 5px solid;
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


.section-switch .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.section-switch .dropdown li:hover a {
    background-color: #FAFAFA;
}

/* Active state */

.section-switch.active:after {
    border-width: 0 6px 6px 6px;
}

.section-switch.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

.current_section{
    font-size: 11px;
    color:#666666;
    text-transform: uppercase;
}

/* No CSS3 support */

.no-opacity       .section-switch .dropdown,
.no-pointerevents .section-switch .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .section-switch.active .dropdown,
.no-pointerevents .section-switch.active .dropdown {
    display: block;
}
.sprite {
    background-image: url(../img/pets.png);
    background-repeat: no-repeat;
    display: block;
    float:left;
}


.sprite-0 {
    width: 16px;
    height: 16px;
    background-position: -5px -5px;
}


.sprite-1 {
    width: 16px;
    height: 16px;
    background-position: -5px -187px;
}
.sprite-2 {
    width: 16px;
    height: 16px;
    background-position: -5px -57px;
}

.sprite-3 {
    width: 16px;
    height: 16px;
    background-position: -5px -161px;
}

.sprite-4 {
    width: 16px;
    height: 16px;
    background-position: -5px -135px;
}

.sprite-5 {
    width: 16px;
    height: 16px;
    background-position: -5px -109px;
}

.sprite-6 {
    width: 16px;
    height: 16px;
    background-position: -5px -83px;
}

.sprite-7 {
    width: 16px;
    height: 16px;
    background-position: -5px -31px;
}
@media (max-width: 480px){
    .section-switch {
        position: inherit;
        width: 90px;
        padding: 10px 5px 10px 0px;
    }
    .section-switch .current_section i{
        display: none;
    }
    .section-switch .current_section .current_section_label_0{
        width: 40px;
        overflow: hidden;
        float: left;
        display: block;
        padding-left: 5px;
    }
    .section-switch .current_section{
        display: block;
        width: 90px;
        overflow: hidden;
        height: 15px;
        word-wrap: break-word;
        line-height: 14px;
    }
    .section-switch:after {
        left: 85px;
        top: 16px;
    }
    .section-switch .dropdown {
        overflow: auto;
        width: 100%;
        margin: 0 5px;
    }
}
