
/****-----start-wrapper-demo----****/
.wrapper-demo
{
	width:400px;
	
	margin: 0 auto;

}
/****-----start-wrapper-dropdown-2----****/
.wrapper-dropdown-2 {
    position: relative;
	padding: 20px 20px 20px 20px;
	background: #CA4427;
	cursor: pointer;
	outline: none;
	color: #FFFFFF;
	font-size: 1.1em;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-o-border-radius:5px;
	text-transform: capitalize;
	font-weight: 400;
	text-align: center;
}
.dropdown:before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 358px;
	top: -5%;
	border-width: 0px 12px 12px 12px;
	border-style: solid;
	border-color: #FFF rgba(0, 0, 0, 0);
}
.dropdown:after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 89.6%;
	top: -11%;
	border-width: 0px 12px 12px 12px;
	border-style: solid;
	border-color: #5D7B80rgba(0, 0, 0, 0);
}
.wrapper-dropdown-2 .dropdown {
  /* Size & position */
    position: absolute;
    top: 118%;
    left: 0px;
    right: 0px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-o-border-radius:5px;
    /* Styles */
    background:#fff;
    -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;
    z-index:1;
    /* Hiding */
    opacity: 0;
    pointer-events: none;
}
.wrapper-dropdown-2 .dropdown li:last-child{
	border-bottom:none;
}
.wrapper-dropdown-2 .dropdown li
{
	-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-2 .dropdown li a {
    display: block;
	text-decoration: none;
	color: #3C2415;
	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;
	text-transform: capitalize;
	font-size: 0.99em;
	font-weight: 100;
	border-bottom: 1px solid lightgrey;
}
.dropdown li a:hover{
	color:#2c4663;
} 
/* Hover state */
.wrapper-dropdown-2 .dropdown li:hover {
    background: #e6d3af;
    color:#2c4663;
}
.wrapper-dropdown-2 .dropdown  li:nth-child(1) {
	border-top-left-radius:5px;
	-webkit-border-top-left-radius:5px;
	-moz-border-top-left-radius:5px;
	-o-border-top-left-radius:5px;
	border-top-right-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-top-right-radius:5px;
	-o-border-top-right-radius:5px;
}
.wrapper-dropdown-2 .dropdown  li:last-child{
	border-bottom-left-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	-moz-border-bottom-left-radius:5px;
	-o-border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-moz-border-bottom-right-radius:5px;
	-o-border-bottom-right-radius:5px;
}
.wrapper-dropdown-2 .dropdown  li:nth-child(2),.wrapper-dropdown-2 .dropdown  li:nth-child(3),.wrapper-dropdown-2 .dropdown  li:nth-child(4)
{
	border-radius: none;
}
/* Active state */
.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;
}
.wrapper-dropdown-2.active .dropdown {
	opacity: 1;
	pointer-events: auto;
	text-align: left;
}
/*****/
.wrapper-dropdown-2 span {
	float: right;
	vertical-align: middle;
}
.icon{
	background: url(../images/spriteimg.png);
	width: 16px;
	height: 16px;
	display: inline-block;
}
.icon {
	background: url(../images/spriteimgs.png) no-repeat -11px -27px;
}
.dropdown li a:hover span.icon {
	background: url(../images/spriteimgs.png) no-repeat -11px -10px;
}
.stat{
	background: url(../images/spriteimgs.png) no-repeat -32px -30px;
}
.dropdown li a:hover span.stat{
	background: url(../images/spriteimgs.png) no-repeat -31px -12px;
}
.msg{
	background: url(../images/spriteimgs.png) no-repeat -52px -28px;
}
.dropdown li a:hover span.msg{
	background: url(../images/spriteimgs.png) no-repeat -51px -11px;
}
.signout{
	background: url(../images/spriteimgs.png) no-repeat -75px -24px;
}
.dropdown li a:hover span.signout{
	background: url(../images/spriteimgs.png) no-repeat -74px -7px;
}
/****-----end-wrapper-dropdown-2----****/
/****-----start-copyright----****/
.copy-right{
	text-align: center;
	margin-top:14em;
}
.copy-right p{
	color:#FFF;
	font-size: 0.8em;
	line-height:1.8em;
}
.copy-right p a{
	color:#97d6ad;
	-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;
}
.copy-right p a:hover{
	color:#fff;
}
/****-----end-copyright----****/
/****----*media Queries----****/
@media only screen and (max-width: 480px) and (min-width:320px)
{
	.wrapper-demo {
	width: 350px;
	}
}
@media only screen and (max-width: 320px) and (min-width:240px)
{
	.wrapper-demo {
	width: 290px;
	}
	.wrapper-dropdown-2 {
	font-size: 1em;
	}
}
/****------end-media Queries-----****/
/*-----start-responsive-design------*/
@media (max-width:1366px){
	.dropdown:after {
		right: 89.4%;
		top: -11%;
	}
@media (max-width:1280px){

}
@media (max-width:1040px){

}
@media (max-width:1024px){
	body {
		height: 520px;
	}
	.dropdown:after {
		border-color: #75989Drgba(0, 0, 0, 0);
	}
}
@media (max-width:768px){
	
	.wrapper-demo {
		
		padding-top: 37%;
	}
	.dropdown:after {
		border-color: #558086rgba(0, 0, 0, 0);
	}
}
@media (max-width:640px){                                  
	
	.wrapper-demo {
		
		padding-top: 0;
	}
	.dropdown:after {
		border-color: #70A2A9rgba(0, 0, 0, 0);
	}
}
@media (max-width:480px){        
	.dropdown:before {
		right: 312px;
		top: -5%;
	}                          
} 
@media (max-width:320px){                                  
	.dropdown:before {
		right: 258px;
		top: -5%;
	}
}
/*-----End-responsive-design------*/