/* -----------------------------------*/
/* Colors ----------------------------*/
/* -----------------------------------*/

/* Mint Green: #76beaa */
/* Red Buttons: #b85e5d */

body {
  padding-top: 6.5rem;
}

.recipes-container .nav-item.dropdown .dropdown-menu {
  padding: 0;
  width: 0;
}
.recipes-container .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
 }
.recipes-container .nav-item.dropdown .dropdown-item {
  background: #76beaa;
  color: #ffffff;
  padding: 15px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  font-size: 0.7rem;
}
.recipes-container .nav-item.dropdown .dropdown-item:hover, .recipes-container .nav-item.dropdown .dropdown-item:active, .recipes-container .nav-item.dropdown .dropdown-item:focus, .recipes-container .nav-item.dropdown .dropdown-item.active {
  background: #9dd4c4;
}
.recipe-search-bar {
  background: #eeeeee;
  padding: 40px 0 20px 0;
}
.recipe-search-bar input {
  padding: 15px;
  border-radius: 0;
}
.recipe-search-bar button.btn-search {
  position: absolute;
  right: 20px;
  top: 6px;
  border-radius: 100%;
  padding: 7px 10px;
  background: #76beaa;
  font-size: 1.2rem;
}
.recipe-search-bar button.btn-search:hover, .recipe-search-bar button.btn-search:active, .recipe-search-bar button.btn-search:focus {
  background: #66a795;
}
.recipe-search-bar button.btn-search i {
  color: #ffffff;
  position: relative;
  top: -2px;
}
.recipe-search-bar .btn-add-recipe {
  text-transform: lowercase;
  letter-spacing: 4px;
}
.recipe-search-bar .btn-add-recipe i {
  position: relative;
  top: 2px;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 2px dotted rgba(0,0,0,0.2);
}
.recipe-search-bar p {
  font-size: 0.9rem;
}

.recipe-search-bar ::-webkit-input-placeholder {
   color: #76beaa;
}

.recipe-search-bar :-moz-placeholder { /* Firefox 18- */
   color: #76beaa;
}

.recipe-search-bar ::-moz-placeholder {  /* Firefox 19+ */
   color: #76beaa;
}

.recipe-search-bar :-ms-input-placeholder {
   color: #76beaa;
}

.nav.full-width {
  display: table;
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  margin-top: 5px;
}
.nav.full-width > li {
  float: none;
  display: table-cell;
  text-align: center;
}
.nav.full-width > li.nav-script {
  font-family: 'Parisienne', cursive;
  color: #76beaa;
  font-size: 1.5rem;
  padding-right: 10px;
}
.nav.full-width > li.nav-spacer {
  width: 20px;
  border-left: 2px dotted #cccccc;
}
.nav.full-width > li > a {
  border: 0;
  color: #999999;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.nav.full-width .nav-link.active, .nav.full-width .nav-link.active:focus, .nav.full-width .nav-link.active:hover {
  border-bottom: 3px solid #76beaa;
}

.category-header {
  margin-bottom: 20px;
}
.category-header h6 {
  padding-top: 10px;
  color: #888888;
}
.category-header a {
  font-size: 0.8rem;
}
.category-header a.view-all {
  padding: 10px 20px 10px 0;
  border-right: 2px dotted #cccccc;
  margin-right: 20px;
  color: #222222;
}

.cookbook-card h5 {
  font-family: "gotham_book", sans-serif;
  color: #999999;
}
.cookbook-card a em {
  font-size: 0.8rem;
}

@media (max-width: 575px) {

  body {
    padding-top: 9rem;
  }

}

@media (max-width: 767px) {
  .btn.btn-add-recipe {
    width: 100%;
  }
  .recipe-search-bar {
    padding: 20px 0 20px 0;
  }
}

@media (max-width: 1199px) {

  .nav.full-width {
    overflow: scroll;
    width: 100%;
    display: inline-block;
  }

  .nav.full-width .nav-link {
    min-width: 130px;
  }
  .nav.full-width > li.nav-script {
    padding-left: 10px;
    min-width: 100px;
  }
  .recipe-search-bar .btn-add-recipe {
    font-size: 1rem;
    padding: 14px 16px;
  }

}
