/*reset css*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header,  hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, a {
	list-style: none;
    text-decoration: none;
    color: #2d2d2d;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


h1,h2,h3,h4,h5,h6,p,span,li,dd,dt{
    word-break: auto-phrase;
}

input, label, button, textarea {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {display: none;}
.select-hidden {display: none; visibility: hidden; padding-right: 10px;}
.select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
/*  color: #fff;*/
  width: 220px;
  height: 50px;
}
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
/*  background-color: #2a2a2a;*/
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #42c0af transparent transparent transparent;
  position: absolute;
  top: 22px;
  right: 10px;
}
.select-styled:hover {
/*  background-color: #111;*/
}
.select-styled:active,
.select-styled.active {
/*  background-color: #2a2a2a;*/
}
.select-styled:active:after,
.select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #42c0af transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 9;
  margin: 0;
  padding: 0;
  list-style: none;
    background-color: #fff;
/*  background-color: #2a2a2a;*/
/*    color: #fff;*/
    font-size: 0.9em;
    border: 1px solid #ddd;
    text-align: left;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
/*  border-top: 1px solid #444;*/
  border-top: 1px solid #ddd;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover,
.select-options li.is-selected {
  color: #fff;
  background: #5ad5c4;
}
.select-options li[rel="hide"] {
  display: none;
}
.select-options.mj.open{display: block}

@media only screen and (max-width:768px){
    .select {width: 170px;}
}