
/* The Mobile Menu that appears on click */
.mobile-menu {
  margin: 0;
  z-index: 9998;
  margin: 0;
  position: absolute;
  display: none;
  right: 60px;
	top:40px;
}
@media (min-width: 960px) {
  .mobile-menu {
    position:absolute;
    display: block;
  }
}
@media only screen and (max-width:960px){
	.mobile-menu.open {
  display: block;
	top: 0px;
right: 0px;
 background-color: rgba(255,255,255,0.8); 
	height: 50px;
	width: 100%;
	position: relative;
	border-bottom: 1px solid #f2f2f2;
}	
}


/* Hamburger Button - Animation courtesy of https://codepen.io/designcouch/pen/Atyop - more examples in this link */
/* Hamburger Button - Animation courtesy of https://codepen.io/designcouch/pen/Atyop - more examples in this link */
.open-button {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  position: absolute;
  cursor: pointer;
  border-bottom: 0;
  top: 20px;
  right: 20px;
  z-index: 9999;
  border-bottom: 0;
}
@media (min-width: 960px) {
  .open-button {display: none;}
}
.open-button:hover {
  border-bottom: 0;
}

.open-button span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.open-button span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

.open-button span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

.open-button span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}

.open-button.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -2px;
  left: 0px;
}

.open-button.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.open-button.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
  left: 0px;
}





/* sticky menu */
.filter-btn {
  position: fixed;
  z-index: 2;
  right: 0;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out 0s;
	bottom:-5px;
	right: 10px;
	z-index: 99999
}
@media only screen and (max-width:960px){
	.filter-btn {bottom:20px;right: -10px; z-index: 998}
}
.filter-btn span {
  width: 40px;
  height: 40px;
  background: #fff;
  display: block;
  position: absolute;
  right: 25px;
  top: -46px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  z-index: 999;
  border: 1px solid #e2e2e2;
  box-shadow: 7px 7px 30px rgba(0, 0, 0, .2);
}
span.toggle-btn.ion-android-funnel:hover{
      cursor: pointer;
}
.filter-btn a {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  right: 25px;
  display: block;
  top: -46px;
  color: #fff;
  z-index: 99;
  font-size: 22px;
  transition: all .4s cubic-bezier(.68, 1, .265, 1)
}
.filter-btn:after {
  height: 170px;
  width: 170px;
  content: '';
  background-color: #000;
  position: absolute;
  top: -110px;
  right: -40px;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out 0s;
}
.filter-btn.open span.toggle-btn.ion-android-funnel {
  background-color: #DE3963;
}
.filter-btn.open .ion-android-funnel:before {
  content: "\f2d7";
}
.open:after {
  transform: scale(1);
}
.filter-btn.open a:nth-child(1) {
  transform: translate(20px, -50px);
}
.filter-btn.open a:nth-child(2) {
  transform: translate(-20px, -45px);
}
.filter-btn.open a:nth-child(3) {
  transform: translate(-50px, -15px);
}
.filter-btn.open a:nth-child(4) {
  transform: translate(-45px, 25px);
}

@media only screen and (max-width:960px){
	.filter-btn.open a:nth-child(1) {transform: translate(10px, -60px);}
	.filter-btn.open a:nth-child(2) {transform: translate(-30px, -55px);}
	.filter-btn.open a:nth-child(3) {transform: translate(-55px, -27px);}
	.filter-btn.open a:nth-child(4) {transform: translate(-60px, 10px);}
	.filter-btn:after {background-color: rgba(0,0,0,0.73)}
	.filter-btn span {box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
}
}





.glyphs.css-mapping .icon {
    margin: 0;
    margin-right: 10px;
    padding: 13px;
    height: 50px;
    width: 50px;
    color: #162a36 !important;
    overflow: hidden;
    float: left;
    font-size: 24px;
}



