/** Custom CSS Goes here**/

/************************** 
  Sweetness Meter 
**************************/

.gauge {
    position: relative;
    margin: auto;
    height: 100px;
    width: 205px;
    border-radius: 200px 200px 0 0;
    -moz-border-radius: 200px 200px 0 0;
    -webkit-border-radius: 200px 200px 0 0;
    background: #91ed2f; /* Old browsers */
    background: -moz-linear-gradient(left, #91ed2f 0%, #ecef2d 50%, #fc0400 100%); /* FF3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, #91ed2f),
        color-stop(50%, #ecef2d),
        color-stop(100%, #fc0400)
    ); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #91ed2f 0%, #ecef2d 50%, #fc0400 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #91ed2f 0%, #ecef2d 50%, #fc0400 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #91ed2f 0%, #ecef2d 50%, #fc0400 100%); /* IE10+ */
    background: linear-gradient(to right, #91ed2f 0%, #ecef2d 50%, #fc0400 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#91ed2f', endColorstr='#fc0400',GradientType=1 ); /* IE6-9 */
}
.dial {
    background-color: #000;
    overflow: hidden;
}
.dial .inner {
    position: absolute;
    bottom: -77px;
    left: 23px;
    border-radius: 70%;
    width: 77%;
    height: 153%;
}
.arrow {
    width: 0px;
    height: 0;
    position: absolute;
    bottom: -14px;
    left: 76px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 15px solid black;
    transform: rotate(174deg);
    -webkit-transform: rotate(174deg);
}
.sweetness-meter {
    position: absolute;
    bottom: 0;
    margin: 0 12%;
    height: 78px;
    width: 155px;
    border-radius: 90px 90px 0 0;
    -moz-border-radius: 90px 90px 0 0;
    -webkit-border-radius: 90px 90px 0 0;
    background: white;
    border-top: 2px solid black;
    border-right: 2px solid black;
    border-left: 2px solid black;
}
.level-marker {
    position: absolute;
    background: white;
    width: 5px;
    height: 1px;
}
.marker-1 {
    bottom: 10px;
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(10deg);
}
.marker-2 {
    bottom: 45px;
    left: 12px;
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}
.marker-3 {
    bottom: 80px;
    left: 43px;
    -ms-transform: rotate(50deg);
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}
.marker-4 {
    top: 2px;
    left: 100px;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.marker-5 {
    bottom: 80px;
    right: 43px;
    -ms-transform: rotate(-50deg);
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}
.marker-6 {
    bottom: 45px;
    right: 12px;
    -ms-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.marker-7 {
    bottom: 10px;
    right: 0;
    -ms-transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    transform: rotate(-10deg);
}
.less,
.more {
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    position: absolute;
    color: black;
    line-height: 11px;
}
.less {
    bottom: -25px;
}
.more {
    bottom: -25px;
    right: 0;
}
.animate-start {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
}
.animate-red-delicious {
    transform: rotate(160deg);
    -webkit-transform: rotate(160deg);
    animation-name: red-delicious-meter;
    animation-duration: 3.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: red-delicious-meter;
    -webkit-animation-duration: 3.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes red-delicious-meter {
    from {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    to {
        transform: rotate(160deg);
        -webkit-transform: rotate(160deg);
    }
}
@-ms-keyframes red-delicious-meter {
    from {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    to {
        transform: rotate(160deg);
        -ms-transform: rotate(160deg);
    }
}
@keyframes red-delicious-meter {
    from {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    to {
        transform: rotate(160deg);
        -moz-transform: rotate(160deg);
    }
}
.animate-golden-delicious {
    transform: rotate(200deg);
    -webkit-transform: rotate(200deg);
    animation-name: golden-delicious-meter;
    animation-duration: 3.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: golden-delicious-meter;
    -webkit-animation-duration: 3.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes golden-delicious-meter {
    from {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    to {
        transform: rotate(200deg);
        -webkit-transform: rotate(200deg);
    }
}
@-ms-keyframes golden-delicious-meter {
    from {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    to {
        transform: rotate(200deg);
        -ms-transform: rotate(200deg);
    }
}
@keyframes golden-delicious-meter {
    from {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    to {
        transform: rotate(200deg);
        -moz-transform: rotate(200deg);
    }
}
.animate-gala {
    transform: rotate(250deg);
    -webkit-transform: rotate(250deg);
    animation-name: gala-meter;
    animation-duration: 3.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: gala-meter;
    -webkit-animation-duration: 3.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes gala-meter {
    from {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    to {
        transform: rotate(250deg);
        -webkit-transform: rotate(250deg);
    }
}
@-ms-keyframes gala-meter {
    from {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    to {
        transform: rotate(250deg);
        -ms-transform: rotate(250deg);
    }
}
@keyframes gala-meter {
    from {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    to {
        transform: rotate(250deg);
        -moz-transform: rotate(250deg);
    }
}
.animate-fuji {
    transform: rotate(267deg);
    -webkit-transform: rotate(267deg);
    animation-name: fuji-meter;
    animation-duration: 3.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: fuji-meter;
    -webkit-animation-duration: 3.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes fuji-meter {
    from {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    to {
        transform: rotate(267deg);
        -webkit-transform: rotate(267deg);
    }
}
@-ms-keyframes fuji-meter {
    from {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    to {
        transform: rotate(267deg);
        -ms-transform: rotate(267deg);
    }
}
@keyframes fuji-meter {
    from {
        transform: rotate(110deg);
        -moz-transform: rotate(267deg);
    }
    to {
        transform: rotate(267deg);
        -moz-transform: rotate(267deg);
    }
}
.animate-granny-smith {
    transform: rotate(115deg);
    -webkit-transform: rotate(115deg);
    animation-name: granny-smith-meter;
    animation-duration: 3.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: granny-smith-meter;
    -webkit-animation-duration: 3.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes granny-smith-meter {
    from {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    to {
        transform: rotate(115deg);
        -webkit-transform: rotate(115deg);
    }
}
@-ms-keyframes granny-smith-meter {
    from {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    to {
        transform: rotate(115deg);
        -ms-transform: rotate(115deg);
    }
}
@keyframes granny-smith-meter {
    from {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    to {
        transform: rotate(115deg);
        -moz-transform: rotate(115deg);
    }
}
.animate-honey-crisp {
    transform: rotate(220deg);
    -webkit-transform: rotate(220deg);
    animation-name: honey-crisp-meter;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: honey-crisp-meter;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes honey-crisp-meter {
    from {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    100% {
        transform: rotate(220deg);
        -webkit-transform: rotate(220deg);
    }
}
@-ms-keyframes honey-crisp-meter {
    from {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    100% {
        transform: rotate(220deg);
        -ms-transform: rotate(220deg);
    }
}
@keyframes honey-crisp-meter {
    from {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    100% {
        transform: rotate(220deg);
        -moz-transform: rotate(220deg);
    }
}
.animate-cripps-pink {
    transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
    animation-name: cripps-pink-meter;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: cripps-pink-meter;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes cripps-pink-meter {
    0% {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    100% {
        transform: rotate(130deg);
        -webkit-transform: rotate(130deg);
    }
}
@-ms-keyframes cripps-pink-meter {
    0% {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    100% {
        transform: rotate(130deg);
        -ms-transform: rotate(130deg);
    }
}
@keyframes cripps-pink-meter {
    0% {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    100% {
        transform: rotate(130deg);
        -moz-transform: rotate(130deg);
    }
}
.animate-braeburn {
    transform: rotate(170deg);
    -webkit-transform: rotate(170deg);
    animation-name: braeburn-meter;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    -webkit-animation-name: braeburn-meter;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes braeburn-meter {
    0% {
        transform: rotate(110deg);
        -webkit-transform: rotate(110deg);
    }
    100% {
        transform: rotate(170deg);
        -webkit-transform: rotate(170deg);
    }
}
@-ms-keyframes braeburn-meter {
    0% {
        transform: rotate(110deg);
        -ms-transform: rotate(110deg);
    }
    100% {
        transform: rotate(170deg);
        -ms-transform: rotate(170deg);
    }
}
@keyframes braeburn-meter {
    0% {
        transform: rotate(110deg);
        -moz-transform: rotate(110deg);
    }
    100% {
        transform: rotate(170deg);
        -moz-transform: rotate(170deg);
    }
}

/************************** 
  Table styling - Generic Styling, for Desktops/Laptops
**************************/
table {
    width: 100%;
    border-collapse: collapse;
}

@media screen and (max-width: 450px) {
    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}
/************************** 
  Button hover transitions
**************************/
.social-nav a,
.language-nav li:before {
    transition: opacity 0.5s;
}
.social-nav a:hover,
.language-nav li:hover:before {
    opacity: 0.7;
}
.page-template-page-syndicate a {
    transition: color 1.2s;
}
/* Menu button fix */
.wac-menu #mobile-icon,
.wac-menu #mobile-icon-1 {
    margin-right: 0;
}
a#nav-toggle,
a#nav-toggle-1 {
    padding: 30px 25px 13px 87px;
    transition: 0.5s;
}
a#nav-toggle:hover,
a#nav-toggle-1:hover {
    opacity: 0.7;
}
.grid-button {
    right: 70px;
}
.grid-button.rearrange.close {
    right: 90px;
}
/* menu bar */
.logged-in .site-wrapper {
    margin-top: 32px;
}
.logged-in.woocommerce-account .site-wrapper {
    margin-top: 0;
}
li,
.input-group {
    font-family: "Lato", sans-serif;
}
h1,
h1 span {
    font-family: "Dancing Script", cursive;
    font-size: 40px;
    padding: 20px 0;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}
h1 span {
    color: #000;
    font-family: "Dancing Script", cursive;
    text-shadow: none;
}
.entry .center-block {
    padding: 10px;
}

/** utility classes **/
.pb20 {
    padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
    .no-gutter-md div[class^="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Logo Fix/Update */
.logo {
    pointer-events: none;
}
.logo a {
    pointer-events: all;
}
.logo img {
    display: block;
    margin: 0 auto;
    /* height: 100px; */
    width: 270px;
    height: 135px;
    padding: 20px;
    -webkit-border-radius: 0 0 150px 150px;
    -moz-border-radius: 0 0 150px 150px;
    border-radius: 0 0 150px 150px;
    background: red url(../images/wave-texture-overlay.png) repeat;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 1);
}
.language-nav,
.language-nav #lang_sel_click a.lang_sel_sel,
#scrolltotop {
    /*background: url("../images/wave-texture-overlay.png") repeat;*/
    border: none;
    color: #fff;
    border-radius: 0;
    /*padding: 10px;*/
}
.menu-2 .language-nav {
    background: inherit;
    right: 23%;
}
.nav-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #fff;
    position: relative;
    top: 16px;
}
.menu-2 .nav-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #d2232a;
    position: relative;
    top: 16px;
}
#lang-title,
#lang-title-1 {
    padding-left: 8px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: helvetica;
    color: #fff;
}
.menu-2 #lang-title,
#lang-title-1 {
    color: #d2232a;
}
.menu {
    /*padding-left: 30px;*/
    /*display: none;*/
}
.recipes-menu .menu {
    /*display: block;*/
}
.item {
    list-style: none;
    font-family: helvetica;
    color: #d2232a;
}
.item a:hover {
    background: #ad0d13;
}
#menu-language-menu-1.menu,
#menu-language-menu-2.menu {
    overflow: hidden;
    max-height: 0px;
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -ms-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
}
#menu-language-menu-1.menu.open,
#menu-language-menu-2.menu.open {
    max-height: 300px;
}

/************************** 
  Menu's
**************************/
.sidr {
    width: 360px;
}
.sidr ul li a span.menu_plus {
    display: block;
    float: right;
}
ul li.sidr-class-menu-item:not(.sidr-class-menu-item-has-children) a span.menu_plus {
    display: none;
}
.sidr ul li {
    border: none;
    line-height: none;
}
.sidr ul li:hover {
    line-height: 48px;
    /*border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #1a1a1a;*/
}
.sidr ul li ul li {
    border-bottom: 1px solid #668a32;
    line-height: 41px;
}
span.glyphicon.glyphicon-remove {
    text-align: center;
    line-height: 3.5em;
}
.glyphicon-remove:before {
    border: 2px solid white;
    padding: 10px 12px;
    border-radius: 60px;
}
.sidr ul li.sidr-class-menu-close:hover {
    border: 0;
}
.sidr ul li.sidr-class-menu-close:hover > span {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
/* Language Nav */
#menu-language-menu li a {
    position: relative;
    left: 0;
    top: 0;
}
/* WP Language menu*/
.language-nav a {
    padding: 10px 5px;
    background: url("../images/wave-texture-overlay.png") repeat;
    border: none;
    color: #fff;
    border-radius: 0;
    width: 210px;
    transition: 0.5s;
}
.language-nav ul a {
    background: #d2232a;
}
.language-nav a:hover {
    box-shadow: 1px 1px 2px #000;
}
.icon-triangle-stroked:before {
    position: absolute;
    left: 35px;
    top: 7px;
}
/* Select dropdown Language menu */
select.language-menu-header {
    padding: 12px 20px 12px 70px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}
select.icon-triangle-stroked {
    background: url(../images/logo.png) 96% / 15% no-repeat;
}

/************************** 
  Extra General Styles - Fixes
**************************/
a,
a:hover,
a:active,
a:focus {
    outline: 0;
}
/*.open {
  display: block;
}
.closed {
  display: none;
}*/
.mi-slider nav a {
    letter-spacing: 0;
    padding: 5px 30px 5px 30px;
    border: 1px solid #fff;
    color: #5c5c5c !important;
}
.mi-slider nav a.mi-selected {
    border: 1px solid #000;
    color: #000 !important;
}
.bknd {
    -webkit-transform: translate3d(0, 0, 0);
    background-attachment: scroll;
}
.wp-caption-text {
    text-align: center;
}
#content .wp-caption a img {
    /* Scale down if too big */
    max-width: 99.03225806%; /* 614/620 */
    height: auto;
}
#post-480 .row,
#post-492 .row {
    border-bottom: 1px solid #aeaeae;
}
#post-480 .row:last-of-type,
#post-492 .row:last-of-type {
    border-bottom: none;
}
.col-md-6.col-sm-6.clear {
    clear: both;
}
p {
    line-height: 1.4em;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}
select *,
select#billing_state,
select#shipping_state {
    color: #a7a6a6;
    /*-webkit-appearance: none;
  -moz-appearance: none;*/
    border-radius: 0;
    background-position: right 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
    padding-left: 0.5em;
    padding-right: 1.5em;
}
.apple-info .col-md-4.col-sm-4:nth-child(2),
.about .col-md-4.col-sm-4:nth-child(2),
.teachers .col-md-4.col-sm-4:nth-child(2) {
    border: none;
}
/* 404 */
.error404 h2 {
    text-align: center;
}
/* Gallery */
.entry .gallery img {
    transition: 1s;
}
.entry .gallery img:hover {
    opacity: 0.7;
}

/************************** 
  Int Reps
**************************/
.row.int-reps {
    margin-bottom: 10px;
    border-bottom: 1px solid lightgrey;
    text-align: left;
}
.row.int-reps:last-of-type {
    border-bottom: none;
}
.row.int-reps .center-block {
    padding: 10px 10px 0 0;
}
.top-reps {
    border-top: 1px solid lightgrey;
    padding-top: 12px;
    margin-top: 30px;
}
.entry p {
    line-height: 22px;
    margin-bottom: 20px;
}
.rep-wrap {
    overflow: auto;
}

/************************** 
  Recipes
**************************/
.featured-recipes .col-md-12 {
    padding: 0;
}
.featured-recipes a {
    color: #8fbe54;
}
.featured-recipes a:hover {
    color: #000;
}
.recipe-info-container .panel-body p,
.recipe-info-container .panel-body td {
    line-height: 1.4em;
    margin-bottom: 0.5em;
}
.recipes-body p:first-child {
    width: 100%;
}
.recipes {
    min-height: inherit;
}
.recipes-title h2 a {
    font-family: "Dancing Script", cursive;
}
/* Single Recipes */
.single-recipes #hero .hero-wrapper .hero {
    min-height: 500px;
}
.panel-default > .panel-heading.ingredients-header {
    background-color: #fe4512;
}
/*  Recipes Menu  */
#recipes-menu select {
    display: none;
}
option {
    font-family: "Lato", sans-serif;
}
#recipes-menu .recipes-menu a {
    padding: 0 3%;
}
.page-template-recipes #recipes-menu .recipes-menu ul li {
    display: inline !important;
}

/************************** 
  Varities Page
**************************/
.page-template-page-varieties .season {
    overflow: hidden;
}
.page-template-page-varieties .col-sm-8 {
    padding-left: 0;
}
.page-template-page-varieties .container .row {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #aeaeae;
}
.page-template-page-varieties .container .more-apples .row,
.page-template-page-varieties .container .row:last-child,
.page-template-page-varieties footer .container .row {
    border: none;
}
.page-template-page-varieties .season .row {
    border: none;
}
.page-template-page-varieties .meter {
    padding: 20px;
}
.page-template-page-varieties .braeburn .bar {
    background-image: linear-gradient(
        -45deg,
        #d02e2e 25%,
        rgba(255, 154, 26, 0) 25%,
        rgba(255, 154, 26, 0) 50%,
        #d02e2e 50%,
        #d02e2e 75%,
        rgba(255, 154, 26, 0) 75%
    );
}

/************************** 
  Growers Page
**************************/
.page-template-growers .growers .center-block {
    display: inline;
    /*width: 90%;*/
}
.page-template-growers .growers .thumb {
    /*padding-left: 0;*/
    text-align: center;
}
.page-template-growers .excerpt p {
    line-height: 20px;
}
/************************** 
  Commissioners Page
**************************/
.commissioners {
    font-family: "Lato", sans-serif;
}
.commissioners .col-md-6 {
    overflow: auto;
}
.post .entry .commissioners img,
.commissioners p {
    display: inline;
    float: left;
}
.commissioners img {
    max-width: 100px;
    min-width: 100px;
}
.commissioners .entry .center-block {
    padding: 0 10px 0 0;
}

/************************** 
  Terms of use Page
**************************/
.hero-cta h1 img {
    float: none;
}

/************************** 
  More Fixes
**************************/
.growers p img,
.regions p img,
.history p img,
.apple-info p img,
.teachers p img {
    color: $black;
    transition: opacity 0.5s;
}
.growers p img:hover,
.regions p img:hover,
.history p img:hover,
.apple-info p img:hover,
.teachers p img:hover {
    opacity: 0.7;
}
ul.products.list li.product h3,
li.product h2 {
    float: right;
    width: 78.4%;
    clear: none;
    font-size: 16px;
}
li.product h2 {
    float: none;
    margin: 0 auto;
    font-family: "Lato", sans-serif;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    padding: 0.7em;
}
.merch ul.products.list li.product {
    padding: 20px 0;
}
.icon-instagram:before {
    font-size: 1.15em;
}

/************************** 
  Custom Bootstrap Columns for cat display
**************************/

@media (min-width: 768px) {
    .col-seven .col-md-1,
    .col-seven .col-sm-2,
    .col-seven .col-lg-1 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-seven .col-md-1,
    .col-seven .col-sm-2,
    .col-seven .col-lg-1 {
        width: 14.285714285714285714285714285714%;
    }
}

/**
 *  The following is not really needed in this case
 *  Only to demonstrate the usage of @media for large screens
 */
@media (min-width: 1200px) {
    .col-seven .col-md-1,
    .col-seven .col-sm-2,
    .col-seven .col-lg-1 {
        width: 14.285714285714285714285714285714%;
    }
}

.col-seven {
    border-right: 1px solid #aeaeae;
}

/************************** 
  Hero Fix
**************************/
#hero .hero-wrapper .hero {
    margin-bottom: -1px;
}
#hero .hero-wrapper .hero.hero-jpg {
    padding: 22% 0;
    max-height: 800px;
    min-height: inherit;
}
/* css checkerboard fix */
#hero .hero-wrapper {
    /*background: inherit;
  background-image: linear-gradient(to top right, #888 25%, transparent 25%, transparent 75%, #888 75%, #888), linear-gradient(45deg, #888 25%, transparent 25%, transparent 75%, #888 75%, #888);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;*/
}
#hero .hero-cta {
    top: 120px;
    pointer-events: none;
}
#hero .hero-cta h1 {
    width: 80%;
    margin: 0 auto;
    font-size: 6vw;
    margin-top: 40px;
}
video.hero {
    width: 100%;
    /*padding: 1% 0;*/
    background: transparent url("/wp-content/uploads/2015/07/JJ-Pink-Single-1521-e1436206965368.jpg") no-repeat 0 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/************************** 
  Home page parallax
**************************/
.pllx {
    height: 450px;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.pllx-1 {
    background-image: url("/wp-content/uploads/2015/08/JJ-Gala-Bins-13201.jpg");
}
.pllx-2 {
    background-image: url("/wp-content/uploads/2015/09/recipes-header.jpg");
}
.pllx-3 {
    background-image: url("/wp-content/uploads/2015/09/teacher.jpg");
}

/* Hero texture overflow fix */
.page-template-page-syndicate .page-wrapper,
.page-template-eat-apples .page-wrapper {
    background-color: white;
    margin-top: -3px;
    padding: 30px 0;
}
#hero .hero-wrapper .hero {
    min-height: inherit;
}

/************************** 
  Woocommerce
**************************/
.woocommerce-checkout .woocommerce table.shop_table,
.addresses {
    border-radius: inherit;
    font-family: "Lato", sans-serif;
}
.woocommerce .page-wrapper {
    margin: 30px 0;
}
.woocommerce #hero .hero-wrapper .hero {
    min-height: 500px;
}
.woocommerce ul.products {
    margin: 30px 0;
}
.woocommerce .products {
    /*border-top: 1px solid #aeaeae;
  border-left: 1px solid #aeaeae;*/
    overflow: auto;
}
.woocommerce .products .col-md-4 {
    border-top: none;
    border-left: none;
    border-bottom: 1px solid #aeaeae;
    border-right: 1px solid #aeaeae;
    min-height: 0;
    text-align: center;
}
.woocommerce h2 {
    width: 100%;
    float: left;
    padding-left: 10px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    font-family: "Lato", sans-serif;
    padding-top: 10px;
}
.single-product .view-cart {
    position: relative;
    bottom: 40px;
}
form.woocommerce-shipping-calculator {
    padding: 5px 0 0 5px;
}
.woocommerce a.button,
.woocommerce button.button,
#place_order,
a.button.wc-backward,
a.button.add_to_cart_button.product_type_simple,
.return-to-shop a,
.shop_table input[type="submit"],
.woocommerce .login input[type="submit"],
.woocommerce .checkout_coupon input[type="submit"] {
    border-radius: 0;
    font-family: "Lato", sans-serif;
    color: #fff;
    font-weight: normal;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
#place_order,
.return-to-shop a,
a.button.wc-backward,
a.button.add_to_cart_button.product_type_simple,
.shop_table input[type="submit"],
.woocommerce .login input[type="submit"],
.woocommerce .checkout_coupon input[type="submit"],
.woocommerce .button.wc-forward {
    background-color: rgba(82, 129, 37, 1);
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
#place_order:hover,
.return-to-shop a:hover,
a.button.wc-backward:hover,
a.button.add_to_cart_button.product_type_simple:hover,
.shop_table input[type="submit"]:hover,
.woocommerce .login input[type="submit"]:hover,
.woocommerce .checkout_coupon input[type="submit"]:hover,
.woocommerce .button.wc-forward:hover {
    background-color: rgba(82, 129, 37, 0.8);
    color: #fff;
}
.woocommerce .products .col-md-4:nth-child(3n) {
    border-right: 1px solid #aeaeae;
    border-left: 1px solid #aeaeae;
}
.woocommerce label.checkbox {
    float: left;
}
.woocommerce input#ship-to-different-address-checkbox {
    margin: 15px 15px 0;
}
.woocommerce h3#ship-to-different-address {
    padding-bottom: 0;
}
.woocommerce-page table.cart td.actions input {
    float: right;
}
/*.woocommerce .products {
  border-bottom: 1px solid #aeaeae;
}*/
.woocommerce .related .products {
    border-top: 1px solid #aeaeae;
}
.woocommerce-checkout #payment ul.payment_methods li {
    list-style-type: none;
}
.woocommerce ul#shipping_method .amount {
    padding-left: 30px;
}
.woocommerce form .form-row .input-checkbox {
    margin: 20px 8px 0 20px;
}
.payment_method_stripe img.img-responsive.center-block {
    display: inline;
}
.cart_totals h2 {
    float: none;
}
.prod-header {
    border-bottom: 1px solid grey;
    overflow: auto;
}
span.amount {
    display: block;
    padding-bottom: 5px;
}
.single-product .cat-header,
.single-product .product-cat.row,
.single-product .prod-header {
    display: none;
}
.grid-button.rearrange.close {
    z-index: 2000px;
}
/* woocommerce */

/* START Make the cart table responsive */
/* http://css-tricks.com/responsive-data-tables/ */
@media screen and (max-width: 600px) {
    /* Force table to not be like tables anymore */
    .woocommerce-page table.shop_table,
    .woocommerce-page table.shop_table thead,
    .woocommerce-page table.shop_table tbody,
    .woocommerce-page table.shop_table th,
    .woocommerce-page table.shop_table td,
    .woocommerce-page table.shop_table tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .woocommerce-page table.shop_table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .woocommerce-page table.shop_table tr {
        /*border: 1px solid #d2d3d3; */
    }

    .woocommerce-page table.shop_table td {
        /* Behave like a "row" */
        border: 1px solid #d2d3d3;
        position: relative;
        /*padding-left: 30% !important;*/
        text-align: center;
    }
    .woocommerce table.shop_table_responsive tr td:before,
    .woocommerce-page table.shop_table_responsive tr td:before {
        content: attr(data-title) "";
    }

    .woocommerce-page table.shop_table {
        border: none;
    }

    .woocommerce-page table.shop_table td.product-spacer {
        border-color: #fff;
        height: 10px;
    }

    .woocommerce-page table.shop_table td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 25%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /*
Label the data
*/
    .woocommerce-page table.shop_table td.product-remove:before {
        content: "DELETE";
        padding: 5px 30px;
    }

    .woocommerce-page table.shop_table td.product-thumbnail:before {
        content: "IMAGE";
    }

    .woocommerce-page table.shop_table td.product-price:before {
        content: "PRICE";
    }

    .woocommerce-page table.shop_table td.product-quantity:before {
        content: "QUANTITY";
    }

    .woocommerce-page table.shop_table td.product-subtotal:before {
        content: "SUBTOTAL";
    }

    .woocommerce-page table.shop_table td.product-total:before {
        content: "TOTAL";
    }

    .woocommerce .quantity,
    .woocommerce #content .quantity,
    .woocommerce-page .quantity,
    .woocommerce-page #content .quantity {
        margin: 0;
    }

    .woocommerce-page table.cart td.actions,
    .woocommerce-page #content table.cart td.actions {
        text-align: left;
        border: 0;
        padding-left: 6px !important;
    }

    .woocommerce-page table.cart td.actions .button.alt,
    .woocommerce-page #content table.cart td.actions .button.alt {
        float: left;
        margin-top: 10px;
    }

    .woocommerce-page table.cart td.actions div,
    .woocommerce-page #content table.cart td.actions div,
    .woocommerce-page table.cart td.actions input,
    .woocommerce-page #content table.cart td.actions input {
        margin-bottom: 10px;
    }

    .woocommerce-page .cart-collaterals .cart_totals {
        float: left;
        width: 100%;
        text-align: left;
    }

    .woocommerce-page .cart-collaterals .cart_totals th,
    .woocommerce-page .cart-collaterals .cart_totals td {
        border: 0 !important;
    }

    .woocommerce-page .cart-collaterals .cart_totals table tr.cart-subtotal td,
    .woocommerce-page .cart-collaterals .cart_totals table tr.shipping td,
    .woocommerce-page .cart-collaterals .cart_totals table tr.total td {
        padding-left: 6px !important;
    }

    .woocommerce-page table.shop_table tr.cart-subtotal td,
    .woocommerce-page table.shop_table tr.shipping td,
    .woocommerce-page table.shop_table tr.total td,
    .woocommerce-page table.shop_table.order_details tfoot th,
    .woocommerce-page table.shop_table.order_details tfoot td {
        padding-left: 6px !important;
        border: 0 !important;
    }

    .woocommerce-page table.shop_table tbody {
        padding-top: 10px;
    }

    .woocommerce .col2-set .col-1,
    .woocommerce-page .col2-set .col-1,
    .woocommerce .col2-set .col-2,
    .woocommerce-page .col2-set .col-2,
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last,
    .woocommerce-page form .form-row-first,
    .woocommerce-page form .form-row-last {
        float: none;
        width: 100%;
    }

    .woocommerce .order_details ul,
    .woocommerce-page .order_details ul,
    .woocommerce .order_details,
    .woocommerce-page .order_details {
        padding: 0;
    }

    .woocommerce .order_details li,
    .woocommerce-page .order_details li {
        clear: left;
        margin-bottom: 10px;
        border: 0;
    }

    /* make buttons full width, text wide anyway, improves effectiveness */
    #content table.cart td.actions .button,
    .woocommerce #content table.cart td.actions .input-text,
    .woocommerce #content table.cart td.actions input,
    .woocommerce table.cart td.actions .button,
    .woocommerce table.cart td.actions .input-text,
    .woocommerce table.cart td.actions input,
    .woocommerce-page #content table.cart td.actions .button,
    .woocommerce-page #content table.cart td.actions .input-text,
    .woocommerce-page #content table.cart td.actions input,
    .woocommerce-page table.cart td.actions .button,
    .woocommerce-page table.cart td.actions .input-text,
    .woocommerce-page table.cart td.actions input {
        width: 100%;
    }

    /* keep coupon at 50% */
    #content table.cart td.actions .coupon .button,
    .woocommerce #content table.cart td.actions .coupon .input-text,
    .woocommerce #content table.cart td.actions .coupon input,
    .woocommerce table.cart td.actions .coupon .button,
    .woocommerce table.cart td.actions .coupon .input-text,
    .woocommerce table.cart td.actions .coupon input,
    .woocommerce-page #content table.cart td.actions .coupon .button,
    .woocommerce-page #content table.cart td.actions .coupon .input-text,
    .woocommerce-page #content table.cart td.actions .coupon input,
    .woocommerce-page table.cart td.actions .coupon .button,
    .woocommerce-page table.cart td.actions .coupon .input-text,
    .woocommerce-page table.cart td.actions .coupon input {
        width: 48%;
    }

    /* clean up how coupon inputs display */
    #content table.cart td.actions .coupon,
    .woocommerce table.cart td.actions .coupon,
    .woocommerce-page #content table.cart td.actions .coupon,
    .woocommerce-page table.cart td.actions .coupon {
        margin-top: 1.5em;
    }

    #content table.cart td.actions .coupon .input-text,
    .woocommerce table.cart td.actions .coupon .input-text,
    .woocommerce-page #content table.cart td.actions .coupon .input-text,
    .woocommerce-page table.cart td.actions .coupon .input-text {
        margin-bottom: 1em;
    }

    /* remove cross sells, they interfere with flow between cart and cart totals + shipping calculator */
    .woocommerce .cart-collaterals .cross-sells,
    .woocommerce-page .cart-collaterals .cross-sells {
        display: none;
    }
    .woocommerce h2 {
        padding-top: 40px;
        text-align: center;
    }
    .woocommerce-checkout .woocommerce table.shop_table tbody:first-child tr:first-child td {
        border-top: 1px solid #aeaeae;
    }
    .woocommerce-checkout-review-order-table tfoot {
        display: block;
    }
}
/* END Make the cart table responsive */

/************************** 
  archive-recipes - styling for next and previous post nav
**************************/
.container.archive-nav {
    padding: 50px;
}
.next-posts {
    display: inline;
    float: left;
}
.prev-posts {
    float: right;
}

/************************** 
  Map
**************************/
.page-template-page-world-map-rep-list .container {
    padding: 0;
    text-align: center;
}
.page-template-page-world-map-rep-list #map {
    display: inline-block;
}
.page-template-page-world-map-rep-list #map > div {
    top: inherit !important;
    height: 100vh !important;
}
/* Google World Map with Rep Data */
.page-id-386 #hero .hero-wrapper {
    background: none;
}
.page-id-386 #hero .hero-wrapper .hero {
    z-index: 1;
}
.rep-wrap .reps {
    text-align: left;
}
.rep-wrap p {
    line-height: 20px;
}
.rep-wrap h3 {
    line-height: 25px;
}
.rep-img {
    margin-top: 20px;
}
.rep-img img {
    float: left;
}

/************************** 
  Print Recipes
**************************/
.print-recipe img {
    float: left;
    padding: 0 20px 20px 0;
}
.print-recipe h2 {
    clear: both;
}
.print-recipe h1 {
    color: #000;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    text-shadow: inherit;
}

/************************** 
  Footer
**************************/
footer {
    background-color: #a91b21;
    background-image: linear-gradient(to top right, #96181d 25%, transparent 25%, transparent 75%, #96181d 75%, #96181d),
        linear-gradient(45deg, #96181d 25%, transparent 25%, transparent 75%, #96181d 75%, #96181d);
    background-size: 6px 6px;
    background-position: 0 0, 3px 3px;
}
footer .search-icon {
    pointer-events: all;
    position: relative;
}
footer .search-icon input {
    background: url(../images/mag-icon.png) no-repeat;
    width: 50px;
    height: 24px;
    padding: 0px 0 4px 0;
    border: none;
    text-indent: -1000em;
    cursor: pointer;
    background-size: contain;
    /*margin: 10px 0;*/
    position: absolute;
    right: 0;
    bottom: 10px;
}
footer .search-icon:before {
    content: none;
}
footer input[type="submit"] {
    visibility: inherit;
}
footer input#searchInput {
    font-family: "Lato", sans-serif;
}
footer ul li i.fa {
    font-size: 32px;
}

/************************** 
  Page Syndicate
**************************/
.page-template-page-syndicate .page-wrapper p {
    line-height: 1.5em;
}
.page-template-page-syndicate .excerpt-body .center-block {
    margin: 0;
}
.page-template-page-syndicate .excerpt-body .center-block:nth-of-type(even) {
    display: inline-block;
}
.page-template-page-syndicate h2 {
    padding: 0 0 20px;
}
.page-template-page-syndicate .excerpt-body {
    padding: 3% 0;
    overflow: auto;
    border-bottom: 1px solid #aeaeae;
}
.page-template-page-syndicate .excerpt-body .col-md-5.col-sm-5,
.page-template-page-syndicate .excerpt-body .col-md-7 {
    padding: 0;
}
.page-template-page-syndicate .excerpt-body .col-md-5.col-sm-5 .right {
    float: right;
}
.fleft {
    float: left;
}
.fright {
    float: right;
}

/************************** 
  Wash Orchards
**************************/
.excerpt-body img.center-block:nth-child(odd) {
    display: inline;
}
.col-md-5.col-sm-5.fright {
    text-align: right;
}

/************************** 
  Apple Suppliers
**************************/
.suppliers {
    margin: 20px 0;
}
.suppliers .suppliers-info {
    min-height: 200px;
    padding: 20px;
}
.suppliers h2 {
    padding-top: 0;
}
.suppliers button.btn.btn-default.dropdown-toggle {
    margin: 0;
    color: Black;
    border-top: 1px solid #aeaeae;
    border-bottom: 1px solid #aeaeae;
    border-right: 1px solid #aeaeae;
    height: 34px;
}
.supplers input:focus {
    border-color: #aeaeae;
}

.row.suppliers .input-group {
    width: 100%;
}
.row.suppliers #search_filter,
.row.suppliers #cat_filter {
    display: inline;
    float: right;
    width: 220px;
    /*margin-left: 40px;*/
}
.row.suppliers #search_filter {
    border-radius: 0;
}
.row.suppliers #search_filter {
    display: inline;
    float: right;
    width: 40%;
}
.suppliers select {
    color: #000;
    border: none;
    border-radius: 0;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 0.77em;
    letter-spacing: 0.1em;
    padding-right: 18px;
    padding-left: 14px;
    width: 200px;
    max-width: 200px;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-size: 18px 10px;
    background-repeat: no-repeat;
    background-position: right;
    background-color: rgba(82, 129, 37, 1);
    padding: 8px 20px;
}
.suppliers select:hover {
    background-color: rgba(82, 129, 37, 0.8);
}
.glyphicon-ok {
    color: #8fbe54;
}
.agency {
    text-align: center;
}

/************************** 
  Video Page
**************************/
.page-template-video button {
    font-family: "Lato", sans-serif;
}
.page-template-video .btn-default {
    background-color: rgba(82, 129, 37, 1);
    margin: 0 0 40px 0;
    border: none;
}
.page-template-video .btn-default:hover {
    background-color: rgba(82, 129, 37, 0.8);
    color: #fff;
}
.page-template-video .video-box {
    height: 200px;
    background-color: #000;
}
.page-template-video .videos {
    padding: 40px 0;
}
.page-template-video .video-container {
    padding-bottom: 10px;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../images/page-loader.gif") 50% 50% no-repeat rgb(249, 249, 249);
}

/************************** 
  Meta Slider
**************************/
.slider {
    margin: 60px 0;
}
.flex-prev,
.flex-next {
    color: green;
}
.metaslider-flex .flex-direction-nav a,
.metaslider-flex .flex-direction-nav a {
    background-image: none;
    background-size: 38px;
    background: green;
    height: 28px;
    width: 58px;
    border-radius: 50%;
    text-indent: 22px;
    padding: 0;
    font-size: 2em;
    color: #fff;
    -webkit-transform: scale(1, 2);
    -moz-transform: scale(1, 2);
    -ms-transform: scale(1, 2);
    -o-transform: scale(1, 2);
    transform: scale(1, 2);
    line-height: 0.85em;
    display: inline-block;
    text-decoration: none;
}
.metaslider-flex .flex-direction-nav a:hover,
.metaslider-flex .flex-direction-nav a:hover {
    opacity: 0.7;
}
.hero-video {
    padding-left: 0;
}

/************************** 
  Then and Now
**************************/
.hover-menu {
    display: inline-block;
    position: fixed;
    bottom: 0;
    right: 0px;
    background-color: #b31c22;
    height: auto;
    z-index: 100;
}
.hover-menu li {
    background-color: #b31c22;
    padding: 2px 10px 2px 25px;
}
.default-page .hover-menu ul {
    padding-left: 0;
    text-align: center;
}
.default-page .post .entry .row p {
    padding-top: 0.5%;
}
.hover-menu li {
    list-style-type: none;
    background: url("../images/language-bg-repeater.png") repeat;
}
.hover-menu a {
    /*padding: 15px;
  line-height: 1.8em;*/
    color: white;
}
.hover-menu a:hover {
    color: #000;
}
.mobile-menu-header {
    display: none;
}
.page-id-470 #scrolltotop {
    position: inherit;
    top: 0;
    right: 0;
    vertical-align: inherit;
    background: inherit;
}
.page-id-470 #scrolltotop:hover {
    box-shadow: none;
}
.page-id-456 #scrolltotop {
    display: none;
}
#scrolltotop {
    top: inherit;
    bottom: 38.5%;
}
#scrolltotop.btn {
    border-radius: 0;
}
#scrolltotop a {
    padding: 5px;
}

/************************** 
  Regions
**************************/
.page-template-regions h1,
.woocommerce h1 {
    color: #000;
    text-shadow: inherit;
}
.page-template-regions .page-wrapper .row,
.page-template-page-syndicate .page-wrapper .row {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #aeaeae;
}
.page-template-page-syndicate .page-wrapper .row:last-child,
.page-template-regions .page-wrapper .row:last-child {
    border: none;
}
.page-template-regions .row-right .center-block {
    margin-right: 0;
}
.page-template-regions .row-left .center-block {
    margin-left: 0;
}
.page-template-regions .page-wrapper .row-left .region-image,
.page-template-page-syndicate .page-wrapper .row-left .region-image {
    padding-left: 0;
    padding-right: 0;
}
.page-template-regions .page-wrapper .row-right .region-image,
.page-template-page-syndicate .page-wrapper .row-right .region-image {
    padding-right: 0;
    padding-left: 0;
}
.page-template-page-syndicate .row-left .region-image img.center-block {
    margin-right: 0;
}
.page-template-page-syndicate .row-right .region-image img.center-block {
    margin-left: 0;
}

/************************** 
  Home page more recipes button
**************************/
.featured-recipes .btn.btn-default {
    background-color: rgba(82, 129, 37, 1);
    margin: 0 0 40px 0;
    border: none;
}
.featured-recipes .btn.btn-default:hover {
    background-color: rgba(82, 129, 37, 0.8);
}
.featured-recipes .btn.btn-default a,
.featured-recipes .btn.btn-default a:hover {
    color: white;
}

/************************** 
  Apple Box Label Gallery
**************************/
.afg-pagination {
    line-height: 2em;
}
.afg-pagination a {
    padding: 5px;
    border: 1px solid #aeaeae;
    text-transform: uppercase;
}
.afg-pagination a.afg-page:hover {
    background: #aeaeae;
}
.afg-pagination font:last-of-type {
    font-family: "Lato", sans-serif;
    color: white;
    background-color: grey;
}
.afg-gallery .afg-cell {
    float: left;
    width: 25%;
}
.afg-gallery .afg-row {
    box-sizing: border-box;
}
.afg-gallery img.afg-img {
    box-shadow: none;
}
#cboxTitle a {
    display: none;
}

/****************************
    New Box Gallery
****************************/
.hqy-lazy {
    -webkit-transition: opacity 0.3s ease-in-out 0.5s;
    -moz-transition: opacity 0.3s ease-in-out 0.5s;
    -o-transition: opacity 0.3s ease-in-out 0.5s;
    transition: opacity 0.3s ease-in-out 0.5s;
    opacity: 0;
}
.hqy-lazy:hover {
    cursor: pointer;
}
.hqy-lazy.hqy-loaded {
    opacity: 1;
}
#close-modal {
    position: absolute;
    top: 2%;
    right: 1%;
    margin-right: 0;
    color: #fff;
    font-family: helvetica, sans-serif;
    font-size: 1.8rem;
}
#gallery-modal {
    display: flex;
    background: transparent;
    /* position: absolute; */
    position: fixed;
    top: 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999999;
    transition: background 0.3s;
}
#gallery-modal.active {
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
}
#modal-content {
    /* margin: auto; */
    margin: auto;
    width: 80%;
    max-width: 1140px;
}
#slick-contain {
    margin: auto;
}
.slick-slide {
    padding: 25px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.slick-slide.slick-current {
    opacity: 1;
}
.slick-slide .slide-title {
    text-align: center;
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    margin-bottom: 30px;
}
@media (max-width: 568px) {
    .inner-wrap {
        width: 70%;
    }
    .inner-wrap img {
        max-width: 100%;
    }
}
.slick-center .inner-wrap {
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    opacity: 1;
    transform: scale(1.15);
}
.slick-prev:before,
.slick-next:before {
    font-family: FontAwesome !important;
    color: #fff;
    font-size: 30px !important;
}
.slick-prev:before {
    content: "\f053" !important;
}
.slick-next:before {
    content: "\f054" !important;
}
.slick-prev {
    left: -5% !important;
}
.slick-next {
    right: -5% !important;
}
#mobile-arrows {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

/************************** 
  Shop page
**************************/
.products {
    overflow: auto;
}
.product-cat.row {
    border-bottom: 1px solid #aeaeae;
    border-top: 1px solid #aeaeae;
    border-left: 1px solid #aeaeae;
}
.product-cat.row .col-md-2.col-sm-2 {
    padding: 10px;
    border-right: 1px solid #aeaeae;
}
.product-cat img:hover {
    opacity: 0.7;
}
.product-cat p {
    text-align: center;
    color: #548319;
    font-size: 16px;
}
.product-cat p:hover {
    color: #000;
}
.product h3 {
    font-size: 16px;
}
.related .products .col-md-3.col-sm-3 {
    padding: 10px;
}

/************************** 
  Growers Profile Page
**************************/
.page-template-growers-profile .grower-profile h3 {
    padding: 0;
    line-height: 1.8;
}
.page-template-growers-profile .hero {
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-template-growers-profile .stats > * {
    padding-left: 0;
    padding-right: 0;
}
.page-template-growers-profile ul {
    padding: 0;
}
.page-template-growers-profile li {
    list-style-type: none;
}
.page-template-growers-profile .gm-style-cc {
    display: none;
}
.gm-style {
    top: -50% !important;
}
.acf-map {
    width: 100%;
    height: 400px;
    border: #ccc solid 1px;
    margin: 20px 0;
}
/* Removes google copyright info */
.gmnoprint a,
.gmnoprint span {
    display: none;
}
.gmnoprint div {
    background: none !important;
}
/* Removes google map logo */
.page-template-growers-profile .acf-map a[href^="http://maps.google.com/maps"]
{
    display: none !important;
}

/************************** 
  Search Page
**************************/
.search-results #hero .hero-wrapper .hero {
    min-height: 500px;
}
.search-results .result p {
    line-height: 20px;
}
.search-results .container {
    padding: 30px 0;
}
.search-results .recipes {
    min-height: inherit;
}
.search-results .navigation {
    padding: 50px 0;
}
.search-results .hero-wrapper {
    min-height: 400px;
}
.search-results .result h2,
.search-results .result p {
    display: block;
    padding-right: 30px;
}
.search-no-results #hero .hero-wrapper .hero {
    min-height: 500px;
}
.search-no-results .page-wrapper {
    min-height: 500px;
}

/************************** 
  Apple Prep Page
**************************/
.apple-icon {
    padding-left: 0;
}
.apple-icon img {
    margin: 0;
}
.row.prep {
    border-bottom: 1px solid #aeaeae;
    padding: 20px 0;
}
.entry .row.prep img {
    display: block;
    margin: 0 auto;
    float: none;
}
.entry h3 {
    line-height: 1;
}

/* Hides full width Syndication page title at full width */
.fwtitle {
    display: none;
}

/************************** 
  Media Queries
**************************/
/* Most 15 inch screens */
@media (max-width: 1540px) {
    #hero .hero-wrapper .hero.hero-jpg#map {
        padding: 16.5% 0;
    }
}
@media (max-width: 1530px) {
    #post-470 .entry {
        padding-right: 15%;
    }
}

@media (max-width: 1200px) {
    .pllx-1 {
        background-image: url("/wp-content/uploads/2015/10/gala-bins-1000.jpg");
    }
    .pllx-2 {
        background-image: url("/wp-content/uploads/2015/10/recipes-header-1000.jpg");
    }
    .pllx-3 {
        background-image: url("/wp-content/uploads/2015/10/teacher-1000.jpg");
    }
    #recipes-menu .recipes-menu a {
        padding: 0 0.9%;
    }
    .season .col-md-1 {
        padding-left: 0;
    }
}

@media (max-width: 1000px) {
    .page-template-page-world-map-rep-list .container {
        margin: 0;
        width: 100%;
    }
}
@media (max-width: 1030) {
    .mi-slider nav {
        top: 310px;
    }
    .mi-slider {
        height: 400px;
    }
}
@media (max-width: 992px) {
    .season .col-md-1 {
        padding-left: 25px;
    }
    .season .col-md-11.col-sm-12 {
        padding-left: 25px;
    }
    .page-template-video nav .col-md-2.col-sm-2.col-xs-12:last-of-type {
        padding-left: 0;
    }
    #post-480 .col-md-4,
    #post-492 .col-md-4 {
        border-bottom: 1px solid #aeaeae;
    }
    #post-480 .row,
    #post-492 .row {
        border-bottom: none;
    }
    #post-480 .row:last-of-type .col-md-4:last-of-type,
    #post-492 .row:last-of-type .col-md-4:last-of-type {
        border-bottom: none;
    }
    .mi-slider nav {
        top: 310px;
    }
    .mi-slider {
        height: 400px;
    }
    /* Hides Syndication page title at full width */
    /*.page-template-page-syndicate .region-info h2 {
    display: none;
  }*/
    /* Displays full width Syndication page title below 992px */
    .fwtitle {
        display: inherit;
    }
    .page-template-video nav .btn-default {
        letter-spacing: 1px;
    }
    .page-template-video nav .col-sm-2 {
        margin-right: 5px;
    }
    .page-template-page-varieties .meter.even {
        padding: 15px 15px 15px 0;
        margin: -100px 0 0 0;
    }
    .page-template-page-varieties .granny-smith .meter.even {
        margin: 0;
    }
    .row.int-reps ul {
        /*clear: both;*/
        padding-left: 0;
    }
    .row.int-reps .col-md-4.col-sm-4.col-xs-4 {
        padding-right: 0;
        padding-left: 0;
    }
    .apple-info .container,
    .teachers .container,
    .about .container {
        width: 100%;
    }
    .apple-info h2 {
        font-size: 38px;
    }
    .col-md-2.col-sm-3.col-xs-12.thumb {
        text-align: inherit;
    }

    .woocommerce .products .col-md-4 {
        min-height: 375px;
    }
}

/*@media (max-width: 920px) {
  .page-id-470 .default-page {
    padding: 40px 90px 40px 0;
  }
}*/

@media (max-width: 890px) {
    #post-470 .entry {
        padding-right: 0;
    }
    .hover-menu {
        right: inherit;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #d2232a;
    }
    .mobile-menu-header {
        display: block;
    }
    .mobile-menu-header {
        height: 50px;
        text-align: center;
        padding: 10px;
        color: #fff;
    }
    .hover-menu a:hover {
        color: #fff;
    }
    .mobile-menu-header:hover {
        background: rgba(179, 28, 34, 0.8);
    }
    .mobile-menu-header li:hover,
    .hover-menu li:hover {
        background: rgba(179, 28, 34, 0.8);
        cursor: pointer;
    }
    .default-page .hover-menu ul {
        height: 0;
    }
    .mobile-menu-header span {
        margin-left: 30px;
    }
    .mobile-menu-header .glyphicon.glyphicon-remove {
        line-height: 2em;
    }
    .mobile-menu-header span:before {
        color: white;
    }
    .hover-menu li {
        list-style-type: none;
        background: #d2232a;
        padding: 8px 0;
    }
    .hover-menu {
        top: inherit;
    }
    .hover-menu ul {
        height: 50px;
    }
}

@media (max-width: 768px) {
    /*.row.suppliers #cat_filter {
    width: 25%;
  }*/
    .language-nav a:hover {
        box-shadow: none;
    }
    a#nav-toggle:hover,
    a#nav-toggle-1:hover {
        opacity: inherit;
    }
    .menu-2 .language-nav a .language-menu-header {
        border: none;
        color: #fff;
        border-radius: 0;
    }
    .menu-2 .language-nav ul a {
        background: #fff;
    }
    a:hover,
    .language-nav li:hover:before {
        opacity: 1;
    }
    .hero-cta h1 {
        font-size: 10vw;
        padding: 50px 0;
        margin-top: 0;
    }
    .season .col-md-1 {
        padding-left: 0;
    }
    .page-template-video nav .col-md-2.col-sm-2.col-xs-12:last-of-type {
        padding-left: 15px;
    }
    footer #menu-footer-menu li {
        text-align: center;
    }
    #scrolltotop {
        bottom: 9%;
    }
    #hero .hero-cta {
        top: auto;
    }
    .woocommerce .products .col-md-4 {
        border-left: 1px solid #aeaeae;
    }
    .product-cat.row .col-md-2.col-sm-2 {
        border-bottom: 1px solid #aeaeae;
    }
    .product-cat.row .col-md-2.col-sm-2:last-of-type {
        border-bottom: none;
    }
    .post .entry img,
    .wp-caption.alignright,
    .wp-caption.alignleft {
        display: block;
        margin: 0 auto;
        float: none;
    }
    .top-reps .post .entry img {
        display: inline-block;
        float: left;
    }
    .logged-in .site-wrapper .menu-2 {
        margin-top: 46px;
    }
    .logo img {
        display: none;
    }
    #hero {
        padding-top: 0;
    }
    .menu-2 {
        box-shadow: none;
        position: static;
        overflow: auto;
    }
    .menu-2 .language-nav {
        top: inherit;
        font-size: 0.9em;
        background: transparent;
        margin-top: 40px;
    }
    .menu-2 .menu-language-menu-1,
    .menu-2 .menu-language-menu-2 {
        width: 210px;
        margin-top: 15px;
        margin-left: 40px;
    }
    .menu-2 #mobile-icon,
    .menu-2 #mobile-icon-1 {
        top: inherit;
        margin-right: 0;
        margin-top: 39px;
        margin-bottom: 20px;
    }
    .menu-2 .menu {
        margin-top: 15px;
        width: 210px;
        /*margin-left: 40px;*/
    }
    .menu-2 .item {
        padding: 10px 0;
        background: #fff;
    }
    .grid-button {
        right: 50px;
        top: -28px;
    }
    .grid-button.rearrange .grid {
        box-shadow: -0.5rem -0.5rem, 0 -0.5rem, 0.5rem -0.5rem, -0.5rem 0, 0.5rem 0, -0.5rem 0.5rem, 0 0.5rem,
            0.5rem 0.5rem;
    }
    .grid-button .grid {
        width: 0.4rem;
        height: 0.4rem;
    }
    .language-nav {
        top: 70px;
    }
    .language-nav a {
        padding: 40px 20px 30px 70px;
        margin-top: -29px;
        margin-right: -0px;
        background: transparent;
    }
    .menu-2 .language-nav a {
        padding: 0 0 0 5px;
    }
    .language-nav .sub-menu .menu-item {
        line-height: 45px;
    }
    .language-nav .sub-menu {
        margin-top: -20px;
        padding: 25px 0;
    }
    .menu-2 img {
        width: 100px;
    }
    /*.menu-2 .language-nav a {
    color: rgb(210, 35, 42);
  }*/
    .page-template-regions .fright,
    .page-template-regions .fleft {
        display: block;
        width: 100%;
    }
    .region-info,
    .region-image {
        padding-right: 0;
        padding-left: 0;
    }
    .page-template-page-syndicate .region-image img.center-block {
        width: 100%;
    }
    .page-template-page-syndicate .page-wrapper .row {
        border: none;
    }
    .page-template-page-syndicate .page-wrapper .row {
        padding-bottom: 0;
    }
    .region-info .fright {
        padding-bottom: 30px;
    }
    .page-template-regions .fright {
        float: left;
    }
    .container {
        padding-right: 0;
        padding-left: 0;
    }
    .region-info,
    .region-image {
        padding-right: 0;
        padding-left: 0;
    }
    .post,
    .region-info {
        padding: 0 15px 20px;
    }
    .page-template-regions .page-wrapper .row {
        border: none;
    }
    .woocommerce #hero .hero-wrapper .hero {
        min-height: 300px;
    }
    .container.default-page {
        width: 100%;
    }
    .afg-gallery.custom-gallery-0 {
        width: 100% !important;
    }
    .afg-cell {
        float: left;
    }
    .afg-row {
        box-sizing: border-box;
    }
    .suppliers .suppliers-header {
        padding-left: 20px;
    }
    .suppliers .suppliers-info {
        overflow: hidden;
    }
    .suppliers-info .contact img {
        padding: 10px;
        max-width: 150px;
    }
    .recipes-menu {
        display: none;
    }
    #recipes-menu {
        padding: 20px 0;
        text-align: center;
    }
    #recipes-menu select {
        display: inline-block;
        width: 90%;
        font-family: "Lato", sans-serif;
        height: 30px;
        border-radius: 0;
        padding-left: 38%;
    }
    .recipe-info-container {
        margin-left: 2%;
        margin-right: 2%;
    }
    .search-results .hero-wrapper {
        min-height: 200px;
    }
    .search-results .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-template-growers .thumb {
        float: left;
    }
    .page-template-video .btn-default {
        width: 100%;
        margin-bottom: 2px;
    }
    /*.pllx {
    height: 200px;
    background-size: 140% 60%;
  }*/
    /*#post-470 .entry {
    padding-right: 15%;
  }*/
    .page-template-regions .row-right .center-block {
        margin-right: auto;
    }
    .page-template-regions .row-left .center-block {
        margin-left: auto;
    }
    .single-recipes #hero .hero-wrapper .hero {
        min-height: 300px;
    }
    .page-template-page-varieties .meter.even {
        padding: 0;
        margin: 25px 0;
    }
    .menu-2 .language-nav .icon-triangle-stroked:before {
        left: 30px;
        font-size: 30px;
        top: 6px;
    }
    a#nav-toggle,
    a#nav-toggle-1 {
        padding: 38px 25px 30px 60px;
        cursor: pointer;
    }
    .col-md-6.col-sm-6.region-info.fright {
        float: none;
    }
    .about .container {
        width: 100%;
    }
    .season .col-md-11.col-sm-12 {
        padding: 0;
    }
    .int-reps ul {
        margin-left: 15%;
    }
    .row.int-reps {
        border-bottom: none;
    }
    /*.apple-info .col-md-4.col-sm-4:nth-child(2),
  .about .col-md-4.col-sm-4:nth-child(2),
  .teachers .col-md-4.col-sm-4:nth-child(2) {
    border-top: 1px solid #aeaeae; 
    border-bottom: 1px solid #aeaeae; 
  }*/
    .pllx {
        background-attachment: inherit;
    }
    .pllx-1 {
        background-image: url("/wp-content/uploads/2015/10/gala-bins-600.jpg");
    }
    .pllx-2 {
        background-image: url("/wp-content/uploads/2015/10/recipes-header-600.jpg");
    }
    .pllx-3 {
        background-image: url("/wp-content/uploads/2015/10/teacher-600.jpg");
    }
}

/* Mobile Video Control */
@media screen and (max-height: 767px) {
    video::-webkit-media-controls {
        display: none !important;
    }
    video[poster] {
        width: 100%;
    }
    #hero .hero-wrapper .hero {
        min-height: 200px;
    }
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
    .region-info h2 {
        display: inherit;
    }
    .mi-slider {
        height: 300px;
    }
    .mi-slider nav {
        top: 210px;
    }
    .page-template-page-varieties #hero .hero-cta {
        top: 20px;
    }
}

@media (max-width: 500px) {
    .page-template-video nav .col-md-2.col-sm-2.col-xs-12:last-of-type {
        padding-left: 0;
    }
    .default-page {
        padding: 0;
    }
    .woocommerce #hero .hero-wrapper .hero {
        min-height: 200px;
    }
    .post img {
        margin-left: 0;
    }
    .suppliers .suppliers-info {
        min-height: 250px;
    }
    #sidr-right {
        width: 100%;
    }
    .page-template-growers .growers .thumb img {
        width: 100%;
    }
    .page-template-growers .col-md-12.col-sm-12,
    .page-template-growers .thumb {
        padding: 0;
        float: none;
    }
    .page-template-growers .growers h2 {
        padding-left: 10px;
    }
    .page-template-video .col-md-12.col-sm-12,
    .page-template-video .col-xs-12 {
        padding-left: 0;
        padding-right: 0;
    }
    .page-template-video .videos {
        text-align: center;
        line-height: 2;
    }
    .single-recipes #hero .hero-wrapper .hero {
        min-height: 200px;
    }
    .page-template-page-varieties .col-md-4.col-sm-4.pull-right {
        float: none !important;
    }
    a#nav-toggle,
    a#nav-toggle-1 {
        padding: 2rem 1rem 2rem 5rem;
    }
    .grid-button {
        right: 30px;
        top: -27px;
    }
    .menu-2 .sub-menu {
        left: 0;
    }
    .menu-2 .language-nav {
        font-size: inherit;
    }
    .grid-button.rearrange .grid {
        box-shadow: -0.45rem -0.45rem, 0 -0.45rem, 0.45rem -0.45rem, -0.45rem 0, 0.45rem 0, -0.45rem 0.45rem, 0 0.45rem,
            0.45rem 0.45rem;
    }
    #recipes-menu select {
        padding-left: 34%;
    }

    .single-product .view-cart {
        position: relative;
        bottom: 100px;
    }
}

@media (max-width: 491px) {
    .mi-slider ul li:not(:first-child) {
        display: none;
    }
    .menu-2 .language-nav {
        top: inherit;
        left: 20%;
        /*width: 210px;*/
    }
    .menu-2 .language-nav ul {
        margin-left: 40px;
    }
    .mi-slider {
        height: auto;
    }
    .language-nav {
        width: 100px;
    }
}

/* Iphone 5 and other smaller screens */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
    .row.suppliers #cat_filter {
        width: 170px;
        font-size: 13px;
        float: left;
    }
    #search_filter {
        font-size: 12px;
    }
    .menu-2 .language-nav {
        top: 22px;
        left: inherit;
        right: 22%;
        margin-left: -20px;
        width: 210px;
    }
    .menu-2 .menu {
        margin-top: 15px;
        background: #fff;
    }
    .language-nav a {
        padding: 30px 20px 30px 0;
    }
    .menu-2 .language-nav .icon-triangle-stroked:before {
        left: 0;
        font-size: 20px;
        top: 0px;
    }
    .menu-2 .box-logo img {
        width: 80px;
    }
    .menu-2 #mobile-icon,
    .menu-2 #mobile-icon-1 {
        top: inherit;
        margin-top: 25px;
    }
    .menu-2 .language-nav {
        top: inherit;
        margin-top: 27px;
    }
    /* shop checkout */
    input#coupon_code.input-text,
    input.button {
        width: 100% !important;
        float: none !important;
    }
    .cart_item .quantity,
    .cart_item .amount,
    .cart_item .product-name a {
        margin-left: 30px;
    }
}

@media screen and (max-width: 240px) {
    a#nav-toggle,
    a#nav-toggle-1 {
        padding: 30px 15px 10px 25px;
    }

    #hero .hero-wrapper .hero {
        min-height: inherit;
    }
    .language-nav a {
        padding: 40px 5px 10px 5px;
        font-size: 14px;
    }
    .grid-button {
        right: 20px;
    }
    .menu-2 img {
        width: 80px;
    }
    .menu-2 .language-nav {
        left: 10%;
        top: 41px;
    }
    .menu-2 .language-nav .icon-triangle-stroked:before {
        left: 30px;
        font-size: 17px;
        top: 10px;
    }
    .menu-2 #mobile-icon,
    .menu-2 #mobile-icon-1 {
        top: 11px;
    }
    .menu-2 #mobile-icon :after,
    .menu-2 #mobile-icon-1 :after {
        font-size: 14px;
    }
}

/* FIXES FT MISHA - AUGUST 12th */
/* .purchasable img {
    max-height: 350px;
} */
.woocommerce .products .col-md-4 {
    min-height: 430px;
    text-align: center;
    padding-top: 30px;
}
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin-top: 30px;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 72px !important;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    padding: 2em !important;
}
.woocommerce input#ship-to-different-address-checkbox {
    margin-top: 5px !important;
    margin-left: -20px !important;
}
.woocommerce form .form-row .input-checkbox {
    margin-top: 9px !important;
    margin-left: -20px !important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    border: 1px solid #c7c1c6;
    line-height: 1;
    padding: 10px;
}
a.button.add_to_cart_button.product_type_simple {
    margin-top: 10px !important;
}
.woocommerce div.product form.cart div.quantity {
    float: left;
    margin: 0px 4px 0 0;
    border: 1px solid;
    padding: 5px;
}

.woocommerce a.button.product_type_simple.ajax_add_to_cart {
    color: #515151;
}

.woocommerce a.button.add_to_cart_button.ajax_add_to_cart {
    color: #fff !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ebe9eb;
    color: #726670 !important;
}
