/* Dropdown control */
.content-area .selectBox-dropdown {
   background:rgba(241, 241, 241, 1.000)!important;
   box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
   font-family: 'Montserrat', sans-serif !important;
   font-size: inherit!important;
   color: #666!important;
}

.content-area .selectBox-dropdown:focus .selectBox-label{color:#666!important;}


.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    line-height: 24px;
	padding:12px 60px 12px 12px!important;
    text-decoration: none;
    text-align: left;
    color: #025ea1!important;
	font-family: 'Oswald', sans-serif;
	border-radius: 10px;
	font-size:14px;
	font-weight: 400;
	text-transform: uppercase;
    outline: none;
    vertical-align: middle;
    background: #fff;
    display: inline-block;
    cursor: default;
	min-height: 50px;
	width: 100%!important;
	max-width: 100%!important;
	transition:all linear 240ms;
	outline: none!important;
}

.selectBox-dropdown:hover{}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
   background:#5f9802;
   color: #fff!important;
	
}

.selectBox-dropdown:focus .selectBox-label{color:#fff!important;}

.selectBox-dropdown:focus .selectBox-arrow i{
	transform: translateY(-50%) rotate(90deg);
	left:0;
	}

.selectBox-dropdown.selectBox-menuShowing-bottom {
    
}

.selectBox-dropdown.selectBox-menuShowing-top {
   
}

.selectBox-dropdown .selectBox-label, .selectBox-dropdown .selectBox-label a {
    padding: 0;
    display: block;
    white-space: nowrap;
    overflow: visible;
	font-size:18px;
	color: #4D5858!important;
	width: 100%!important;
	max-width: 100%!important;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 100%;
    background: #5f9802;
    border: none!important;
    text-align: center;
    border-radius: 0 10px 10px 0;
}

.selectBox-dropdown .selectBox-arrow i{
	font-size: 22px;
position: relative;
color:#fff!important;
z-index: 100;
display: inline-block;
top:50%;
left:3px;
transform: translateY(-50%) rotate(0deg);
transform-origin: 50% 50%;
transition: all linear 200ms;
}

.selectBox-dropdown .selectBox-arrow i.fa-caret-down{display: none;}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #cccccc; /* should be the same border width as .selectBox-dropdown */
    background: #fff;
    
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	color:#fff!important;
	font-style:italic;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
   
}


.selectBox-options li a {
    line-height: 1.5;
   display: block;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
	padding:8px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-style: normal;
	color:#4D5858;
	font-size:15px;
	border-top:1px solid rgba(0,0,0,0.05);
	transition: all linear 200ms;
}

.selectBox-options li a:hover{background-color: #0e6ea9;color: #fff;cursor: pointer;padding-left:15px;}

.selectBox-options LI.selectBox-hover a {
    
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
   
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}
