*{
	-webkit-tap-highlight-color: rgba(0,0,0,0); 
	-webkit-tap-highlight-color: transparent;
	font-family: 'Quicksand', sans-serif;
	color: #242021;
	color: #2B4547;
}
body{
	background: #fff;
	overflow-x: hidden;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type='number'] {
    -moz-appearance: textfield;
}

.visible{
	display: block;
}
.hidden{
	display: none;
}
.f-out{
	opacity: 0;
}
.f-in{
	opacity: 1;
}
.a-middle{
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.flex-c{
	justify-content: center;
	-webkit-justify-content: center;
}
.flex-m{
	align-items: center;
	-webkit-align-items:center;
}
.fl-r{
	float: right;
}
.fl-l{
	float: left;
}
.ta-c{
	text-align: center;
}
.ta-l{
	text-align: left;
}
.ta-r{
	text-align: right;
}
.bd-n{
	border:none;
}
.lh-3{
	line-height: 3;
}
.w-100{
	width: 100%;
}
.bg-i{
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}
.w-half{
	width: 50%;
}
.dib{
	display: inline-block;
	vertical-align: top;
}
/*customize scrollbar only for webkit browsers*/

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #eee;
  transition: .3s;
}

::-webkit-scrollbar-thumb {
    background: #f79200; 
    border-radius: 10px;
    transition: .3s;
}