﻿
/* DEMO 5 */

.wrapper-dropdown-5 {
    /* Size & position */
    position: relative;
    width: auto;
    float: right;
    margin: 0 0 10px;
    padding: 6px 38px;
    /* Styles */
    /*background: #3d8e3f;*/
    border-radius: 5px;
    top:5px;
    cursor: pointer;
    outline: none;
    z-index: 999;
    -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;
}

    .wrapper-dropdown-5:after { /* Little arrow */
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        right: 15px;
        margin-top: -3px;
        border-width: 6px 6px 0 6px;
        border-style: solid;
        border-color: #a7ffa9 transparent;
    }

    .wrapper-dropdown-5 .dropdown {
        /* Size & position */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        /* Styles */
        background: #5caa5e;
        border-radius: 0 0 5px 5px;
       
        border-top: none;
        border-bottom: none;
        list-style: none;
        -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;
        /* Hiding */
        max-height: 0;
        overflow: hidden;
    }

        .wrapper-dropdown-5 .dropdown li {
            padding: 0 10px;
            display: block;
        }

        .wrapper-dropdown-5 .dropdown li:last-child {
            border-bottom:none;
        }
            .wrapper-dropdown-5 .dropdown li a {
                display: block;
                text-align: left;
                text-decoration: none;
                color: white !important;
                padding: 10px 0;
                transition: all 0.3s ease-out;
                border-bottom: 1px solid #e6e8ea;
            }

                            
                .wrapper-dropdown-5 .dropdown li:last-of-type a {
                border: none;
            }

            .wrapper-dropdown-5 .dropdown li i {
                margin-right: 5px;
                color: inherit;
                vertical-align: middle;
            }

            /* Hover state */

            .wrapper-dropdown-5 .dropdown li:hover a {
                color: #57a9d9;
            }

    /* Active state */

    .wrapper-dropdown-5.active {
        border-radius: 5px 5px 0 0;
        /*background: #3d8e3f;*/
        box-shadow: none;
        border-bottom: none;
        color: white;
    }

        .wrapper-dropdown-5.active:after {
            border-color: #a7ffa9 transparent;
        }

        .wrapper-dropdown-5.active .dropdown {
            border-bottom: 1px solid rgba(0,0,0,0.2);
            max-height: 400px;
        }
