/* reset */
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box
}
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, center,
dl, dt, dd, 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;
  outline: none;
}
input{
outline: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a{
	text-decoration: none!important;
}
a:not([class*="fc-"]){
	color:inherit!important;
}
/* defaults */
.abs-set,
.fix-set {
	top: 0;
	left: 0;
	width: 100%;
}
.abs-set{position:absolute}
.fix-set{position:fixed}

[class*="js-"],
[class*="btn-"]{
	cursor: pointer;
	text-decoration: none!important;
}
[class*="btn-"]{
	display: inline-block;
}


.lh-13{line-height:1.3!important;}

.fc-white{color:#fff}
.fc-purple{color:#5b3c8d}
.fc-blue{color:#0089ff}
.fc-default{color:#263f47}

.fw-bold {font-weight:600!important}
.fw-fat {font-weight:800!important}
.fw-phat {font-weight:900!important}

.fs-lil-smaller {font-size:.9em!important}
.fs-smaller {font-size:.75em!important}
.fs-smallest {font-size:.5em!important}
.fs-lil-bigger {font-size:1.1em!important}
.fs-bigger {font-size:1.25em!important}
.fs-biggest {font-size:1.5em!important}

.pin {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background: #3ac45b;
	margin-top: 2px;
}

.loading{
	position: relative;
}

.loading:after{
	content:"";
	position:fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.75) url('../images/loading.gif') center center no-repeat;
	/* background-position: 50px 50px; */
}

.dropdown-wrapper {
	position: relative;
	min-width: 200px;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	cursor: pointer;
}
.dropdown-wrapper.shown {
	border-radius:15px 15px 0 0;
	-moz-border-radius:15px 15px 0 0;
	-webkit-border-radius:15px 15px 0 0;
	
}
.dropdown-heading {}
.dropdown-content {
	position: relative;
}
.dropdown-content-wrapper {
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	min-height: 100%;
	display: none;
	background: #fff;
	border-radius:0 0 15px 15px;
	-moz-border-radius:0 0 15px 15px;
	-webkit-border-radius:0 0 15px 15px;
	z-index: 3;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
	-moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
}
.dropdown-wrapper.shown .dropdown-content-wrapper {
	display: block;
}

.icon-dropdown {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background: #fff url('../images/arrow-down.png') center center no-repeat;
	background-size: auto 10px;
	cursor: pointer;
	transition: transform .25s ease;
	-moz-transition: transform .25s ease;
	-webkit-transition: transform .25s ease;
	transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.dropdown-wrapper.shown .icon-dropdown {	
	transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.dropdown-value {
	
}
.dropdown-content li.current{
	background: #65a8df;
    color: #000;
}
.dropdown-content li:not(.current):hover {
	background: #8ab9e1;
    color: #fff;
}
.dropdown-content li {
	cursor: pointer;
}
.dropdown-content li:last-child{
	border-radius:0 0 12px 12px;
	-moz-border-radius:0 0 12px 12px;
	-webkit-border-radius:0 0 12px 12px;
}
@media screen and (max-width: 575px){
	.dropdown-wrapper{
		width: 100%;
	}
	.dropdown-value {
		font-size: 1rem!important;
	}
}