/* GLOBALS */
.container_nav{ width: 20%; float:right; padding-top: 2%;}

*,
*: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 {
    *zoom: 1; float:left; margin-left: 3%; 
}

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



.wrapper-dropdown-1 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    padding: 0;
}

/* Hover state */
.wrapper-dropdown-1 .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown-1.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

.wrapper-dropdown-1.active:after {
    border-color: #9bc7de transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-1 .dropdown,
.no-pointerevents .wrapper-dropdown-1 .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       .wrapper-dropdown-1.active .dropdown,
.no-pointerevents .wrapper-dropdown-1.active .dropdown {
    display: block;
}

/* Hover state */

.wrapper-dropdown-2 .dropdown li:hover a {
    color: grey;
}

/* Active state */

.wrapper-dropdown-2.active:after {
    border-width: 0 6px 6px 6px;
}

.wrapper-dropdown-2.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-2 .dropdown,
.no-pointerevents .wrapper-dropdown-2 .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       .wrapper-dropdown-2.active .dropdown,
.no-pointerevents .wrapper-dropdown-2.active .dropdown {
    display: block;
}

/* DEMO 5 */

.wrapper-dropdown-5 {
    /* Size & position */
    position: relative; font-size:58%; font-family:Arial, Helvetica, sans-serif; color: #000;
    width: 100%;
    padding: 8px; float:left;

    /* Styles */
    background-image:url(../images/button-bg.png);text-align:center;
    border-radius: 20px; 
    box-shadow: 0 3px 0 rgba(0,0,0,0.3);
    cursor: pointer;
    outline: 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;
}

/*.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: #4cbeff transparent;
}*/

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

    /* Styles */
    background: #fff; text-align:center; padding: 0 10px 0 10px;
    border-radius: 0 0 25px 25px; line-height:1.5em;
    border: 1px 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 .dropdown li { padding: 4px 0 4px 0
}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 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 {
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown-5 .dropdown li:hover a {
    color: #57a9d9;
}

/* Active state */

.wrapper-dropdown-5.active {
    border-radius: 20px 20px 0 0;
background-image:url(../images/button-bg.png);    box-shadow: none;
    border-bottom: none;
    color: white; z-index:3
}

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

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


/* Product */

.wrapper-dropdown-product {
    /* Size & position */
    position: relative;
    color: #fff;
    width: 100%;
    padding: 8px; 
    float:left;

    /* Styles */
    text-align:center;
    border-radius: 20px; 
    /*box-shadow: 0 3px 0 rgba(0,0,0,0.3);*/
    cursor: pointer;
    outline: 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;
}

.wrapper-dropdown-product .dropdown {
    /* Size & position */
    position: absolute; 
    top: 100%;
    left: 0;
    right: 0;
    width: 400px;

    /* Styles */
    background: #fff; text-align:left; padding: 0 10px 0 10px;
    /*border-radius: 0 0 25px 25px; */
    /*line-height:1.5em;*/
    border: 1px 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-product .dropdown li { padding: 4px 0 4px 0
}

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

.wrapper-dropdown-product .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown-product .dropdown li i {
    color: inherit;
    vertical-align: middle;
}

 Hover state 

.wrapper-dropdown-product .dropdown li:hover a {
    /*color: #57a9d9;*/
}

/* Active state */

.wrapper-dropdown-product.active {
    /*border-radius: 20px 20px 0 0;*/
    box-shadow: none;
    border-bottom: none;
    color: white; z-index:3
}

.wrapper-dropdown-product.active:after {
    border-color: #82d1ff transparent;
}

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

/* No CSS3 support: none */
