@charset "UTF-8";
/********* SITE STYLES ********** */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: #121212;
}

#search-bar {
  background-color: #4c8c1c;
  height: 93px;
  text-align: center;
}
@media (max-width: 600px) {
  #search-bar {
    height: auto;
    padding: 5px 0;
  }
}

.dropdown-container {
  display: inline-block;
  vertical-align: top;
  margin: 20px 10px;
  min-width: 250px;
}
@media (max-width: 1175px) {
  .dropdown-container {
    min-width: 0;
    width: 20%;
    margin: 20px 1%;
  }
}
@media (max-width: 600px) {
  .dropdown-container {
    display: block;
    width: 90%;
    margin: 10px auto;
    position: relative;
  }
  .dropdown-container:after {
    content: "";
    font-family: "icons";
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 10px;
    height: 100%;
    font-size: 20px;
    line-height: 55px;
    color: white;
  }
}

.cs-select {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 999;
  text-align: left;
  background: #72b73b;
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  width: 100%;
  width: 250px;
  line-height: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  border-bottom: 2px solid #3e7317;
}
@media (max-width: 600px) {
  .cs-select {
    background-color: transparent;
    border: 0;
  }
}
.cs-select.cs-active {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
.cs-select.cs-active .cs-options {
  visibility: visible;
  position: relative;
}
.cs-select.cs-active .cs-placeholder {
  border-bottom: 2px solid #3e7317;
}
.cs-select.cs-active .cs-placeholder:after {
  content: "";
}
.cs-select:focus {
  outline: none;
}
.cs-select span {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-select .cs-options {
  position: absolute;
  visibility: hidden;
}
@media (max-width: 600px) {
  .cs-select .cs-options {
    display: none;
  }
}
@media (max-width: 600px) {
  .cs-select .cs-placeholder {
    display: none;
  }
}
.cs-select .cs-placeholder:after {
  content: "";
  font-family: "icons";
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  font-size: 20px;
  line-height: 55px;
}
.cs-select .cs-selected {
  background-color: #72b73b;
}
.cs-select .cs-selected span:before {
  font-family: "icons";
  content: "";
  font-size: 12px;
  margin-right: 10px;
}
.cs-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.cs-select li {
  border-bottom: 1px solid #4c8c1c;
  background-color: #3e7317;
  margin: 0;
}
.cs-select li:hover {
  background: #72b73b;
}
.cs-select li.cs-focus {
  background-color: #72b73b;
}
.cs-select li:last-child {
  border-bottom: 0;
}
@media (max-width: 1175px) {
  .cs-select {
    width: 100%;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .cs-select {
    font-size: 16px;
  }
}

.cs-select select,
#select-neighborhood select,
#select-cuisine select {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background-color: #72b73b;
  color: white;
  border: 0;
  border-radius: 0;
  padding: 15px;
  border-bottom: 2px solid #3e7317;
  font-size: 16px;
  margin: 0;
  width: 100%;
}
.cs-select select:focus,
#select-neighborhood select:focus,
#select-cuisine select:focus {
  background-color: #3e7317;
}
@media (max-width: 600px) {
  .cs-select select,
  #select-neighborhood select,
  #select-cuisine select {
    display: block;
  }
}

button#search {
  background: #3e7317;
  border-radius: 0;
  border: 0;
  color: white;
  text-shadow: none;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  margin: 20px 10px;
  height: 53px;
  padding: 0 40px;
  outline: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
button#search span {
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
button#search:before {
  content: "";
  font-family: "icons";
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  line-height: 53px;
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  transition: top 0.3s;
}
button#search:active {
  background-color: #72b73b;
  top: 2px;
}
button#search:hover span {
  -webkit-transform: translateY(300%);
  -moz-transform: translateY(300%);
  -ms-transform: translateY(300%);
  -o-transform: translateY(300%);
  transform: translateY(300%);
}
button#search:hover:before {
  top: 0;
}
@media (max-width: 600px) {
  button#search {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
}

/* Fix z-index issue */
/*
#select-neighborhood {
  z-index: 5;
}

#select-cuisine {
  z-index: 4;
}

#select-price {
  z-index: 3;
}*/

/***** CLEARFIX **** */
.group:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

* html .group {
  zoom: 1;
}

*:first-child + html .group {
  zoom: 1;
}
