
/* GLOBALS */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

::selection {
    /*background: transparent; */
}

::-moz-selection {
    /*background: transparent; */
}

.wrapper-demo {
    margin: 60px 0 0 0;
    *zoom: 1;
    font-weight: 400;
}

.wrapper-demo:after {
    clear: both;
    content: "";
    display: table;
}

/* 5 */

.wrapper-dropdown-5 {
    position: relative;
    width: 400px;
    background: #fff url('/assets/img/benchmark-tag.png') no-repeat 8px 50%;
    margin-top: 30px;
    padding: 15px 0 15px 60px;
    color: #222;
    border-radius: 1px;
    box-shadow: 0 0px 0 rgba(0,0,0,0.2);
    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.simple {
    width: 100%;
    background: #4582ab;
    color: #fff;
    padding: 15px 20px 15px 20px;
    margin-top: 5px;
}

.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: #d6936a transparent;
}

.wrapper-dropdown-5.simple:after {
    top: 25px;
    border-color: #fff transparent;
}

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

    /* Styles */
    background: #fff;
    border-radius: 0 0 5px 5px;
    border: 0px solid rgba(0,0,0,0.2);
    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.simple .dropdown {
    position: relative;
    background: #4582ab;
    color: #fff;
    border-bottom: 0px solid #fff;
}

.wrapper-dropdown-5 .dropdown li {
    padding: 0 3px ;
}

.wrapper-dropdown-5.simple .dropdown li {
    padding: 0;
}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-dropdown-5.simple .dropdown li a {
    color: #fff;
    border-bottom: 0px solid #82d1ff;
    padding: 2px 0;
    font-size: 12px;
}

.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: #d6936a;
}

/* Active state */

.wrapper-dropdown-5.active {
    border-radius: 5px 5px 0 0;
    box-shadow: none;
    border-bottom: none;
}

.wrapper-dropdown-5.active:after {
    border-color: #d6936a transparent;
}

.wrapper-dropdown-5.active .dropdown {
    border-bottom: -px solid rgba(0,0,0,0.2);
    max-height: 450px;
}

/* No CSS3 support: none */
