@charset "UTF-8";
/* CSS Document */

/* GLOBALS */

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

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

.wrapper-demo {
    margin: 0px
    *zoom: 1;
    font-weight: 400;
	padding: 5px 0px 20px 0px;
	font-family: "Trade Gothic W01 Light";
	font-size: 14px;
	color: #ee592e;
	
}

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


/* DEMO 5 */

.wrapper-dropdown-5,
.wrapper-dropdown-5-double {
    /* Size & position */
    position: relative;
    width: 150px;
    margin-right: 15px;
    padding: 4px 0px 4px 8px;
	float: left;
    /* Styles */
    background: #fff;
	border: 1px solid #ee592e;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
	 z-index: 2;
}

.wrapper-dropdown-5:after,
.wrapper-dropdown-5-double: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: #ee592e transparent;
}

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

    /* Styles */
    background: #fff;
    border-radius: 0 0 5px 5px;
    border: 1px solid #ee592e;
    border-top: none;
    border-bottom: none;
    list-style: none;

    /* Hiding */
    max-height: 0;
    overflow: hidden;
}

.wrapper-dropdown-5 .dropdown li,
.wrapper-dropdown-5-double .dropdown li {
    padding: 0 10px ;
}

.wrapper-dropdown-5 .dropdown li a,
.wrapper-dropdown-5-double .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-dropdown-5 .dropdown li:last-of-type a,
.wrapper-dropdown-5-double .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown-5 .dropdown li i,
.wrapper-dropdown-5-double .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown-5 .dropdown li:hover a,
.wrapper-dropdown-5-double .dropdown li:hover a {
    color: #ee592e;
}

/* Active state */

.wrapper-dropdown-5.active,
.wrapper-dropdown-5-double.active {
    border-radius: 5px 5px 0 0;
    background: #ee592e;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-dropdown-5.active:after,
.wrapper-dropdown-5-double.active:after {
    border-color: #fff transparent;
}

.wrapper-dropdown-5.active .dropdown,
.wrapper-dropdown-5-double.active .dropdown {
    border-bottom: 1px solid #ee592e;
    max-height: 1200px;
}


@media all and (max-width: 610px) {
	
/* 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: 0px
    *zoom: 1;
    font-weight: 400;
	padding: 5px 0px 20px 0px;
	font-family: "Trade Gothic W01 Light";
	font-size: 12px;
	color: #ee592e;
	
}

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



/* DEMO 5 */

.wrapper-dropdown-5 {
    /* Size & position */
    position: relative;
    width: 92px;
    margin-right: 4px;
    padding: 4px 0px 0px 6px;
	float: left;
    /* Styles */
    background: #fff;
	border: 1px solid #ee592e;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
	height: 25px;
	 z-index: 2;
}

.wrapper-dropdown-5-double {
    /* Size & position */
    position: relative;
    width: 92px;
    margin-right: 4px;
    padding: 5px 0px 0px 6px;
	float: left;
    /* Styles */
    background: #fff;
	border: 1px solid #ee592e;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
	height: 40px;
	 z-index: 2;
}

.wrapper-dropdown-5:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 4px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #ee592e transparent;
}

.wrapper-dropdown-5-double:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 30%;
    right: 4px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #ee592e transparent;
}


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

    /* Styles */
    background: #fff;
    border-radius: 0 0 5px 5px;
    border: 1px solid #ee592e;
    border-top: none;
    border-bottom: none;
    list-style: none;

    /* Hiding */
    max-height: 0;
    overflow: hidden;
}

.wrapper-dropdown-5 .dropdown li,
.wrapper-dropdown-5-double .dropdown li {
    padding: 0 10px ;
}

.wrapper-dropdown-5 .dropdown li a,
.wrapper-dropdown-5-double .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #e6e8ea;
}

.wrapper-dropdown-5 .dropdown li:last-of-type a,
.wrapper-dropdown-5-double .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown-5 .dropdown li i,
.wrapper-dropdown-5-double .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown-5 .dropdown li:hover a,
.wrapper-dropdown-5-double .dropdown li:hover a  {
    color: #ee592e;
}

/* Active state */

.wrapper-dropdown-5.active,
.wrapper-dropdown-5-double.active {
    border-radius: 5px 5px 0 0;
    background: #ee592e;
    box-shadow: none;
    border-bottom: none;
    color: white;
}

.wrapper-dropdown-5.active:after,
.wrapper-dropdown-5-double.active:after {
    border-color: #fff transparent;
}

.wrapper-dropdown-5.active .dropdown,
.wrapper-dropdown-5-double.active .dropdown {
    border-bottom: 1px solid #ee592e;
    max-height: 1600px;
}


}

/* No CSS3 support: none */