/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/*$verde-claro:#7eceba;
$verde-claro-rgba:rgba(126, 206, 186, 0.8);*/
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 33, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
@font-face {
  font-family: 'planetaplakat';
  src: url("../font/planeta-plakat-webfont.eot");
  src: url("../font/planeta-plakat-webfont.eot?#iefix") format("embedded-opentype"), url("../font/planeta-plakat-webfont.woff") format("woff"), url("../font/planeta-plakat-webfont.ttf") format("truetype"), url("../font/planeta-plakat-webfont.svg#planetaplakat") format("svg");
  font-weight: normal;
  font-style: normal;
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 109, ../sass/_normalize.scss */
html {
  font-family: "Source Sans Pro", Arial, sans-serif;
  /* 1 */
  font-size: 87.5%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.28571em;
}

/* Remove default margin. */
/* line 129, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
  color: #11735c;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 141, ../sass/_normalize.scss */
a:link {
  color: #11735c;
}

/* line 144, ../sass/_normalize.scss */
a:visited {
  color: #11735c;
}

/* line 148, ../sass/_normalize.scss */
a:hover,
a:focus {
  color: #c72254;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 155, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 161, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 177, ../sass/_normalize.scss */
p,
pre {
  margin: 1.28571em 0;
}

/* line 180, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.28571em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 189, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 1.4em;
  line-height: 1.83673em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.91837em;
  margin-bottom: 0.91837em;
}

/* line 197, ../sass/_normalize.scss */
h2 {
  font-size: 1.2em;
  line-height: 2.14286em;
  margin-top: 1.07143em;
  margin-bottom: 1.07143em;
}

/* line 202, ../sass/_normalize.scss */
h3 {
  font-size: 1em;
  line-height: 1.28571em;
  margin-top: 1.28571em;
  margin-bottom: 1.28571em;
}

/* line 207, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.28571em;
  margin-top: 1.28571em;
  margin-bottom: 1.28571em;
}

/* line 212, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.54905em;
  margin-top: 1.54905em;
  margin-bottom: 1.54905em;
}

/* line 217, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 1.91898em;
  margin-top: 1.91898em;
  margin-bottom: 1.91898em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 224, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 230, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 235, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 240, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.28571em 0;
}

/* Address styling not present in IE 8/9. */
/* line 249, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 260, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.28571em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 269, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 281, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 286, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 292, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 298, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 301, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 311, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.28571em 0;
}

/* line 318, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 323, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 330, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 348, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  vertical-align: bottom;
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 369, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 374, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 390, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  padding: 0 20px 25px;
  /* Apply borders and padding that keep the vertical rhythm. */
  /*@include apply-side-rhythm-border(top,    $width: 1px, $lines: 0.35);
  @include apply-side-rhythm-border(bottom, $width: 1px, $lines: 0.65);
  @include apply-side-rhythm-border(left,   $width: 1px, $lines: 0.65);
  @include apply-side-rhythm-border(right,  $width: 1px, $lines: 0.65);
  */
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  border: 1px solid #dedede;
  min-width: 0;
  width: 100%;
  display: table-cell;
  box-sizing: border-box;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 412, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 430, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  border: none;
  padding: 5px 10px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 452, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 463, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 479, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 491, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 502, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/* line 511, ../sass/_normalize.scss */
input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 1px solid #dedede !important;
  border-radius: 34px;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  display: block;
  top: 1px;
  float: left;
  margin-right: 10px;
}

/* line 525, ../sass/_normalize.scss */
input[type="radio"]:checked:after {
  content: '';
  background: url(../images/radio.svg) no-repeat;
  background-size: 10px 10px;
  width: 12px;
  height: 12px;
  font-size: 0px;
  line-height: 0px;
  position: Absolute;
  top: 4px;
  left: 4px;
  color: #11735c;
}

/* line 539, ../sass/_normalize.scss */
input[type="checkbox"] {
  display: block;
  float: left;
  position: relative;
  background-color: #fff;
  color: #fff;
  height: 20px;
  width: 20px;
  border: 1px solid #dedede;
  cursor: pointer;
  margin-right: 10px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 555, ../sass/_normalize.scss */
input[type="checkbox"]:checked:after {
  content: '';
  background: url(../images/check.svg) no-repeat;
  background-size: 14px 14px;
  width: 16px;
  height: 16px;
  font-size: 0px;
  line-height: 0px;
  position: Absolute;
  top: 2px;
  left: 2px;
  color: #11735c;
  font-weight: bold;
}

/*
.roundedOne {
	width: 28px;
	height: 28px;
	background: #fcfff4;

	background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
	margin: 20px auto;

	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;

	-webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	position: relative;
}

label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;

	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	left: 4px;
	top: 4px;

	-webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	-moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);

	background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
	background: -moz-linear-gradient(top, #222 0%, #45484d 100%);
	background: -o-linear-gradient(top, #222 0%, #45484d 100%);
	background: -ms-linear-gradient(top, #222 0%, #45484d 100%);
	background: linear-gradient(top, #222 0%, #45484d 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222', endColorstr='#45484d',GradientType=0 );
}

 label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: #00bf00;

	background: -webkit-linear-gradient(top, #00bf00 0%, #009400 100%);
	background: -moz-linear-gradient(top, #00bf00 0%, #009400 100%);
	background: -o-linear-gradient(top, #00bf00 0%, #009400 100%);
	background: -ms-linear-gradient(top, #00bf00 0%, #009400 100%);
	background: linear-gradient(top, #00bf00 0%, #009400 100%);

	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	top: 2px;
	left: 2px;

	-webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
}

label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.3;
}

input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

*/
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 662, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 672, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 678, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 687, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 693, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #1ab08d;
}

/* line 701, ../sass/_normalize.scss */
.form-item {
  clear: both;
  overflow: hidden;
}

/* line 705, ../sass/_normalize.scss */
.form-radios {
  float: left;
}

/* line 709, ../sass/_normalize.scss */
.form-checkboxes label, .form-type-radio label {
  text-transform: none;
}

/* line 716, ../sass/_normalize.scss */
.webform-client-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .webform-client-form textarea, .webform-client-form select, #user-register-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), #user-register-form textarea, #user-register-form select {
  float: left;
  width: 70%;
  padding-left: 10px;
  box-sizing: border-box;
}
/* line 722, ../sass/_normalize.scss */
.webform-client-form label, #user-register-form label {
  margin-bottom: 0;
}
/* line 725, ../sass/_normalize.scss */
.webform-client-form label:not(.option), #user-register-form label:not(.option) {
  float: left;
  width: 30%;
  padding-top: 2px;
}
/* line 731, ../sass/_normalize.scss */
.webform-client-form .form-type-checkbox label, .webform-client-form .form-type-radio label, #user-register-form .form-type-checkbox label, #user-register-form .form-type-radio label {
  width: auto;
  float: left;
}
/* line 735, ../sass/_normalize.scss */
.webform-client-form .form-item .description, #user-register-form .form-item .description {
  width: 70%;
  float: right;
}
/* line 739, ../sass/_normalize.scss */
.webform-client-form .form-textarea-wrapper textarea, .webform-client-form .webform-component-select select, #user-register-form .form-textarea-wrapper textarea, #user-register-form .webform-component-select select {
  float: left;
  width: 70%;
}

/* line 744, ../sass/_normalize.scss */
#page form.webform-client-form {
  margin-top: 20px;
  padding: 0;
}

/**
 * Tables
 */
/* line 752, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.28571em;
  margin-bottom: 1.28571em;
  width: 100%;
}
/* line 762, ../sass/_normalize.scss */
table th {
  text-align: left;
}
/* line 766, ../sass/_normalize.scss */
table td, table th {
  vertical-align: top;
  padding: 20px 20px;
}

/* line 771, ../sass/_normalize.scss */
.breadcrumb a {
  font-family: "Lato", sans-serif;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 778, ../sass/_normalize.scss */
body, body.overlay {
  /*color: #464D00*/
}

/* line 781, ../sass/_normalize.scss */
body, #site-slogan, .ui-widget, .comment-form label {
  /*    font-family: "Droid Sans","Trebuchet MS","Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;
  */
}

/* line 785, ../sass/_normalize.scss */
body {
  border: 0 none;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  outline: 0 none;
  padding: 0;
  word-wrap: break-word;
}

/* line 794, ../sass/_normalize.scss */
html, body, #page {
  height: 100%;
}

/* line 798, ../sass/_normalize.scss */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  font-family: "Lato", sans-serif;
  background-color: #fff;
  color: #1ab08d;
  border: none;
  box-shadow: 1px 1px 1px #c0c0c0;
  margin-right: 10px;
  margin-top: 10px;
}

/* line 808, ../sass/_normalize.scss */
button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
  background-color: #1ab08d;
  color: #fff;
}

/* line 814, ../sass/_normalize.scss */
select {
  background-color: #ffF;
  color: #11735c;
  border: 1px solid #dedede;
}
/* line 818, ../sass/_normalize.scss */
select option {
  background-color: #fff;
  padding: 2px;
  outline: none;
}
/* line 822, ../sass/_normalize.scss */
select option:checked, select option:hover {
  background-color: #1ab08d;
  outline-color: #1ab08d;
  color: #fff;
  outline: none;
}

/* line 831, ../sass/_normalize.scss */
input, textarea {
  border: 1px solid #dedede;
  color: #11735c;
}
/* line 834, ../sass/_normalize.scss */
input:active, input:focus, textarea:active, textarea:focus {
  border: 1px solid #1ab08d;
  outline: none;
}

/* line 840, ../sass/_normalize.scss */
select:active, select:focus {
  border: 1px solid #1ab08d;
  outline: none;
}

/* line 845, ../sass/_normalize.scss */
.tabledrag-toggle-weight-wrapper {
  display: none;
}

/* line 848, ../sass/_normalize.scss */
.progress-disabled {
  float: none;
  display: inline;
}

/*<div class="ajax-progress ajax-progress-throbber"><div class="throbber">&nbsp;</div><div class="message">Aguarde...</div></div>*/
/* line 853, ../sass/_normalize.scss */
.ajax-progress {
  float: none;
  display: inline;
  position: absolute;
  background: #f9f7f5;
  padding: 3px;
}

/* line 861, ../sass/_normalize.scss */
.ajax-progress .throbber {
  background: transparent url("../images/loading.gif") no-repeat;
  background-size: cover;
  float: none;
  height: 15px;
  margin: 2px;
  width: 15px;
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
}

/* line 873, ../sass/_normalize.scss */
tr .ajax-progress .throbber {
  margin: 0 2px;
}

/* line 881, ../sass/_normalize.scss */
.cke {
  border: 1px solid #dedede !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* line 887, ../sass/_normalize.scss */
.cke_top, .cke_bottom, .cke_toolgroup {
  background: #f3efec !important;
  border: none !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* line 895, ../sass/_normalize.scss */
a.cke_button {
  border: 1px solid #f3efec !important;
}

/* line 898, ../sass/_normalize.scss */
a.cke_button_on {
  background: #ebe4de !important;
  border: 1px solid #c0c0c0 !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* line 910, ../sass/_normalize.scss */
a.cke_button_off:hover,
a.cke_button_off:focus,
a.cke_button_off:active,
a.cke_button_disabled:hover,
a.cke_button_disabled:focus,
a.cke_button_disabled:active {
  background: #f3efec !important;
  border: 1px solid #c0c0c0 !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* line 917, ../sass/_normalize.scss */
body.cke_editable {
  background: #fff !important;
  padding: 0px 20px;
}

/* line 923, ../sass/_normalize.scss */
.cke iframe html, .cke iframe body {
  background: #f9f7f5 !important;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 34, ../sass/layouts/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 46, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding-left: 30px;
  padding-right: 30px;
}

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* line 59, ../sass/layouts/_responsive.scss */
.sidebars {
  display: none;
}

/* line 63, ../sass/layouts/_responsive.scss */
.menu-mobile {
  display: block;
}

/* line 69, ../sass/layouts/_responsive.scss */
#content .panel-2col-bricks .node {
  padding-left: 20px;
  padding-right: 20px;
}
/* line 74, ../sass/layouts/_responsive.scss */
#content .panel-2col-bricks .node-destacado {
  padding: 0;
}

/* line 81, ../sass/layouts/_responsive.scss */
#page .node-destacado .field-name-body, #page .node, #page .inner-side, #page .branco,
#page .view-lista-de-delega-oes, #page .view-empty, #page .privatemsg-message .privatemsg-message-column, #page form {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 86, ../sass/layouts/_responsive.scss */
#page .view form {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 90, ../sass/layouts/_responsive.scss */
#page .view form#views-exposed-form-lista-de-receitas-page-1 {
  padding-left: 0;
  padding-right: 0;
}

/* line 95, ../sass/layouts/_responsive.scss */
#main {
  /* Move all the children of #main down to make room. */
  padding-top: 3em;
  position: relative;
}

/* line 101, ../sass/layouts/_responsive.scss */
.node-destacado .cinta > * {
  margin: 0 20px;
}

/* line 104, ../sass/layouts/_responsive.scss */
.sidebar-first #content {
  margin-top: 30px;
}

/* line 108, ../sass/layouts/_responsive.scss */
.panel-2col-bricks .panel-col-first {
  width: 100%;
}

/* line 112, ../sass/layouts/_responsive.scss */
.panel-2col-bricks .panel-col-last {
  width: 100%;
}

/* line 117, ../sass/layouts/_responsive.scss */
.menu-bar #navigation #block-system-user-menu {
  margin-left: 57px;
}

/* line 121, ../sass/layouts/_responsive.scss */
.projecto-numeros {
  font-size: 20px;
}
/* line 123, ../sass/layouts/_responsive.scss */
.projecto-numeros .sign {
  display: none;
}
/* line 126, ../sass/layouts/_responsive.scss */
.projecto-numeros .wrap {
  width: 100%;
}
/* line 130, ../sass/layouts/_responsive.scss */
.projecto-numeros .val, .projecto-numeros .desc {
  float: none;
  padding: 0px 5px;
}
/* line 134, ../sass/layouts/_responsive.scss */
.projecto-numeros .val {
  font-size: 20px;
}

/* Navigation bar */
@media all and (min-width: 560px) {
  /* line 146, ../sass/layouts/_responsive.scss */
  #page .node-destacado .field-name-body, #page .node, #page .inner-side, #page .branco,
  #page .view-lista-de-delega-oes, #page .view-empty, #page .privatemsg-message .privatemsg-message-column, #page form {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* line 152, ../sass/layouts/_responsive.scss */
  #content .panel-2col-bricks .node {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* line 159, ../sass/layouts/_responsive.scss */
  .projecto-numeros {
    font-size: 30px;
  }
  /* line 161, ../sass/layouts/_responsive.scss */
  .projecto-numeros .sign {
    display: block;
  }
  /* line 164, ../sass/layouts/_responsive.scss */
  .projecto-numeros .wrap {
    width: 24%;
  }
  /* line 168, ../sass/layouts/_responsive.scss */
  .projecto-numeros .val, .projecto-numeros .desc {
    float: left;
    padding: 0px 10px;
  }
  /* line 172, ../sass/layouts/_responsive.scss */
  .projecto-numeros .val {
    font-size: 30px;
  }

  /* line 177, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    width: 100%;
  }

  /* line 184, ../sass/layouts/_responsive.scss */
  .node-destacado .cinta > * {
    margin: 0 50px;
  }

  /* line 188, ../sass/layouts/_responsive.scss */
  .view-lista-de-productores .views-field-field-c-digo-postal {
    display: table-cell;
  }
  /* line 192, ../sass/layouts/_responsive.scss */
  .view-lista-de-productores .views-field-field-cidade {
    display: table-cell;
  }
  /* line 196, ../sass/layouts/_responsive.scss */
  .view-lista-de-productores .views-field-field-fotos {
    display: table-cell;
  }

  /* line 202, ../sass/layouts/_responsive.scss */
  .view-home-pequenos-fixos .views-row {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  /* line 206, ../sass/layouts/_responsive.scss */
  .view-home-pequenos-fixos .views-row:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 214, ../sass/layouts/_responsive.scss */
  .view-home-pequenos-fixos .views-row:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /* line 228, ../sass/layouts/_responsive.scss */
  .node .left {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 236, ../sass/layouts/_responsive.scss */
  .node .right {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /* line 245, ../sass/layouts/_responsive.scss */
  .center-wrapper .panel-panel {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  /* line 248, ../sass/layouts/_responsive.scss */
  .center-wrapper .panel-panel:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 256, ../sass/layouts/_responsive.scss */
  .center-wrapper .panel-panel:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /* line 269, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_2 .views-row {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  /* line 274, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_2 .views-row:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 282, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_2 .views-row:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }
}
/* line 298, ../sass/layouts/_responsive.scss */
.view-lista-de-receitas .views-exposed-widget {
  width: 100%;
}
/* line 301, ../sass/layouts/_responsive.scss */
.view-lista-de-receitas .fieldset-wrapper {
  width: 100%;
}

@media all and (min-width: 560px) {
  /* line 308, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas .views-exposed-widget {
    width: 50%;
  }
  /* line 311, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas .fieldset-wrapper {
    width: 50%;
  }
}
@media all and (min-width: 750px) {
  /* line 319, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas .views-exposed-widget {
    width: 25%;
  }
  /* line 322, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas .fieldset-wrapper {
    width: 25%;
  }

  /* line 326, ../sass/layouts/_responsive.scss */
  #page .node-receita .field-name-field-ingredientes {
    float: right;
    width: 25%;
    margin-left: 60px;
    margin-bottom: 20px;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 560px) and (max-width: 959px) {
  /* line 348, ../sass/layouts/_responsive.scss */
  #page .node-destacado .field-name-body, #page .node, #page .inner-side, #page .branco,
  #page .view-lista-de-delega-oes, #page form {
    padding-left: 60px;
    padding-right: 60px;
  }

  /* line 355, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_1 .views-row, .view-not-cias.view-display-id-page_3 .views-row, .view-not-cias.view-id-lista_de_receitas .views-row, .view-lista-de-receitas.view-display-id-page_1 .views-row, .view-lista-de-receitas.view-display-id-page_3 .views-row, .view-lista-de-receitas.view-id-lista_de_receitas .views-row {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 360, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_1 .views-row:nth-child(2n+1), .view-not-cias.view-display-id-page_3 .views-row:nth-child(2n+1), .view-not-cias.view-id-lista_de_receitas .views-row:nth-child(2n+1), .view-lista-de-receitas.view-display-id-page_1 .views-row:nth-child(2n+1), .view-lista-de-receitas.view-display-id-page_3 .views-row:nth-child(2n+1), .view-lista-de-receitas.view-id-lista_de_receitas .views-row:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 368, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_1 .views-row:nth-child(2n+2), .view-not-cias.view-display-id-page_3 .views-row:nth-child(2n+2), .view-not-cias.view-id-lista_de_receitas .views-row:nth-child(2n+2), .view-lista-de-receitas.view-display-id-page_1 .views-row:nth-child(2n+2), .view-lista-de-receitas.view-display-id-page_3 .views-row:nth-child(2n+2), .view-lista-de-receitas.view-id-lista_de_receitas .views-row:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 383, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 385, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 100%;
    margin-left: 50%;
    margin-right: -150%;
  }
  /* line 390, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 398, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 400, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 405, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 50%;
    margin-left: 100%;
    margin-right: -150%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 413, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  /* line 415, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 100%;
    margin-left: 50%;
    margin-right: -150%;
  }
  /* line 420, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
  /* line 425, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 150%;
    margin-left: 0%;
    margin-right: -150%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 431, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 435, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    clear: left;
  }
  /* line 440, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
  /* line 444, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 50%;
    margin-left: 100%;
    margin-right: -150%;
  }
}
/**
 * Use 6 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /* line 457, ../sass/layouts/_responsive.scss */
  .menu-bar #navigation #block-system-user-menu {
    margin-left: 0px;
  }

  /* line 461, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }

  /* line 466, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    margin-top: 72px;
  }

  /* line 469, ../sass/layouts/_responsive.scss */
  .sidebars {
    display: block;
  }

  /* line 472, ../sass/layouts/_responsive.scss */
  .menu-mobile {
    display: none;
  }

  /* line 475, ../sass/layouts/_responsive.scss */
  .logo-mobile {
    display: none;
  }

  /* line 478, ../sass/layouts/_responsive.scss */
  .user-reg-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }

  /* line 484, ../sass/layouts/_responsive.scss */
  .wrapper-del {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /* line 491, ../sass/layouts/_responsive.scss */
  .view-as-minhas-entregas-consumidor > .view-content >
  .views-row {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 496, ../sass/layouts/_responsive.scss */
  .view-as-minhas-entregas-consumidor > .view-content >
  .views-row:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 504, ../sass/layouts/_responsive.scss */
  .view-as-minhas-entregas-consumidor > .view-content >
  .views-row:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /* line 520, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-id-not_cias.view-display-id-page_1 .views-row:nth-child(3n+1), .view-not-cias.view-id-not_cias.view-display-id-page_3 .views-row:nth-child(3n+1), .view-not-cias.view-id-lista_de_receitas.view-display-id-page_3 .views-row:nth-child(3n+1), .view-not-cias.view-id-lista_de_receitas.view-display-id-page_5 .views-row:nth-child(3n+1), .view-lista-de-receitas.view-id-not_cias.view-display-id-page_1 .views-row:nth-child(3n+1), .view-lista-de-receitas.view-id-not_cias.view-display-id-page_3 .views-row:nth-child(3n+1), .view-lista-de-receitas.view-id-lista_de_receitas.view-display-id-page_3 .views-row:nth-child(3n+1), .view-lista-de-receitas.view-id-lista_de_receitas.view-display-id-page_5 .views-row:nth-child(3n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
    clear: left;
  }
  /* line 526, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-id-not_cias.view-display-id-page_1 .views-row:nth-child(3n+2), .view-not-cias.view-id-not_cias.view-display-id-page_3 .views-row:nth-child(3n+2), .view-not-cias.view-id-lista_de_receitas.view-display-id-page_3 .views-row:nth-child(3n+2), .view-not-cias.view-id-lista_de_receitas.view-display-id-page_5 .views-row:nth-child(3n+2), .view-lista-de-receitas.view-id-not_cias.view-display-id-page_1 .views-row:nth-child(3n+2), .view-lista-de-receitas.view-id-not_cias.view-display-id-page_3 .views-row:nth-child(3n+2), .view-lista-de-receitas.view-id-lista_de_receitas.view-display-id-page_3 .views-row:nth-child(3n+2), .view-lista-de-receitas.view-id-lista_de_receitas.view-display-id-page_5 .views-row:nth-child(3n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
  }
  /* line 530, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-id-not_cias.view-display-id-page_1 .views-row:nth-child(3n), .view-not-cias.view-id-not_cias.view-display-id-page_3 .views-row:nth-child(3n), .view-not-cias.view-id-lista_de_receitas.view-display-id-page_3 .views-row:nth-child(3n), .view-not-cias.view-id-lista_de_receitas.view-display-id-page_5 .views-row:nth-child(3n), .view-lista-de-receitas.view-id-not_cias.view-display-id-page_1 .views-row:nth-child(3n), .view-lista-de-receitas.view-id-not_cias.view-display-id-page_3 .views-row:nth-child(3n), .view-lista-de-receitas.view-id-lista_de_receitas.view-display-id-page_3 .views-row:nth-child(3n), .view-lista-de-receitas.view-id-lista_de_receitas.view-display-id-page_5 .views-row:nth-child(3n) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
  }
  /* line 539, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_2 .views-row, .view-lista-de-receitas.view-display-id-page_2 .views-row {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 544, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_2 .views-row:nth-child(2n+1), .view-lista-de-receitas.view-display-id-page_2 .views-row:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 552, ../sass/layouts/_responsive.scss */
  .view-not-cias.view-display-id-page_2 .views-row:nth-child(2n+2), .view-lista-de-receitas.view-display-id-page_2 .views-row:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /* line 566, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas.view-display-id-page_4, .view-lista-de-receitas.view-display-id-page_1 {
    /*.view-filters{
         @include zen-grid-flow-item( 2, 6,false,true);
            @include zen-float();
    }
    .view-content{
         @include zen-grid-flow-item( 4, 6,false,false);
            @include zen-float();
    
    }*/
  }
  /* line 578, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas.view-display-id-page_4 .views-row:nth-child(3n+1), .view-lista-de-receitas.view-display-id-page_1 .views-row:nth-child(3n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
    clear: left;
  }
  /* line 584, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas.view-display-id-page_4 .views-row:nth-child(3n+2), .view-lista-de-receitas.view-display-id-page_1 .views-row:nth-child(3n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
  }
  /* line 588, ../sass/layouts/_responsive.scss */
  .view-lista-de-receitas.view-display-id-page_4 .views-row:nth-child(3n), .view-lista-de-receitas.view-display-id-page_1 .views-row:nth-child(3n) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
  }

  /* line 599, ../sass/layouts/_responsive.scss */
  .node-type-entrega .node-entrega .field-name-field-data-de-entrega {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
    clear: left;
  }
  /* line 604, ../sass/layouts/_responsive.scss */
  .node-type-entrega .node-entrega .field-name-field-data-limite-de-cancelament {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
  }
  /* line 608, ../sass/layouts/_responsive.scss */
  .node-type-entrega .node-entrega .field-name-field-delega-o-da-entrega {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 33.33333%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 13.33333px;
    margin-right: -13.33333px;
    float: left;
  }

   /*
.panel-panel.panel-col-last,.panel-panel.panel-col-first{
    .node-entrega{
        .field-name-field-data-de-entrega{
            @include zen-grid-flow-item( 3, 6,false,false);     
            @include zen-float();
            @include zen-clear();
        }
        .field-name-field-data-limite-de-cancelament {
            @include zen-grid-flow-item( 3, 6,true,false);
            @include zen-float();
        }
        .field-name-field-delega-o-da-entrega{
            @include zen-grid-flow-item( 6, 6,false,false);
            @include zen-float();
            margin-left:0px;
        }
    }
}*/
  /* line 632, ../sass/layouts/_responsive.scss */
  .node-apoio-agradecimento .field-type-field-collection > .field-items > .field-item {
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 633, ../sass/layouts/_responsive.scss */
  .node-apoio-agradecimento .field-type-field-collection > .field-items > .field-item:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 638, ../sass/layouts/_responsive.scss */
  .node-apoio-agradecimento .field-type-field-collection > .field-items > .field-item:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 642, ../sass/layouts/_responsive.scss */
  .node-apoio-agradecimento .field-type-field-collection > .field-items > .field-item:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /* line 646, ../sass/layouts/_responsive.scss */
  .pane-home-pequenos-fixos-panel-pane-2 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 66.66667%;
    padding-left: 0;
    padding-right: 6.66667px;
    margin-right: -6.66667px;
    float: left;
  }

  /* line 651, ../sass/layouts/_responsive.scss */
  .inscrever_panel {
    float: left;
    width: 33.333%;
  }

  /* line 660, ../sass/layouts/_responsive.scss */
  #page .node-destacado .field-name-body, #page .node, #page .inner-side, #page .branco,
  #page .view-lista-de-delega-oes {
    padding-left: 60px;
    padding-right: 60px;
  }

  /* line 665, ../sass/layouts/_responsive.scss */
  #page {
    padding-left: 200px;
  }

  /* line 668, ../sass/layouts/_responsive.scss */
  #page .sidebars {
    margin-left: -215px;
  }

  /* line 674, ../sass/layouts/_responsive.scss */
  .view-lista-de-delega-oes.view-display-id-page_1 .views-row,
  .view-lista-de-productores.view-display-id-page_1 .views-row,
  .view-lista-de-productores.view-display-id-page_2 .views-row {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 677, ../sass/layouts/_responsive.scss */
  .view-lista-de-delega-oes.view-display-id-page_1 .views-row:nth-child(2n+1),
  .view-lista-de-productores.view-display-id-page_1 .views-row:nth-child(2n+1),
  .view-lista-de-productores.view-display-id-page_2 .views-row:nth-child(2n+1) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
    clear: left;
  }
  /* line 685, ../sass/layouts/_responsive.scss */
  .view-lista-de-delega-oes.view-display-id-page_1 .views-row:nth-child(2n+2),
  .view-lista-de-productores.view-display-id-page_1 .views-row:nth-child(2n+2),
  .view-lista-de-productores.view-display-id-page_2 .views-row:nth-child(2n+2) {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    width: 50%;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 10px;
    margin-right: -10px;
    float: left;
  }

  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 697, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 699, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 16.66667%;
    margin-right: -83.33333%;
  }
  /* line 704, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: -16.66667%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 712, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 714, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 719, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 16.66667%;
    margin-left: 66.66667%;
    margin-right: -83.33333%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 727, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 729, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 50%;
    margin-left: 16.66667%;
    margin-right: -66.66667%;
  }
  /* line 734, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: -16.66667%;
  }
  /* line 739, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 16.66667%;
    margin-left: 66.66667%;
    margin-right: -83.33333%;
  }
}
@media all and (max-width: 319px) {
  /* line 747, ../sass/layouts/_responsive.scss */
  #custom-top-bar .inside-top-menu .logos {
    float: none !important;
    margin-left: 28px;
    display: none;
  }
  /* line 752, ../sass/layouts/_responsive.scss */
  #custom-top-bar .inside-top-menu .region-sidebar-first, #custom-top-bar .inside-top-menu .menu li a {
    width: auto;
  }
  /* line 755, ../sass/layouts/_responsive.scss */
  #custom-top-bar .inside-top-menu .logo-and-left {
    width: 100%;
  }
}
@media all and (max-height: 480px), (max-width: 560px) {
  /* line 764, ../sass/layouts/_responsive.scss */
  .overlayer-actions {
    overflow-y: scroll;
  }

  /* line 769, ../sass/layouts/_responsive.scss */
  .overlayer-actions .form {
    margin-top: 44px !important;
  }
}
@media all and (max-width: 420px) {
  /* line 776, ../sass/layouts/_responsive.scss */
  #block-locale-language {
    position: relative !important;
    margin-top: 30px;
    top: 0 !important;
    right: 0 !important;
  }

  /* line 784, ../sass/layouts/_responsive.scss */
  #custom-top-bar .inside-top-menu .logo-and-left {
    top: 40px !important;
  }

  /* line 790, ../sass/layouts/_responsive.scss */
  thead {
    display: none;
  }

  /* line 793, ../sass/layouts/_responsive.scss */
  th, td {
    display: block;
  }

  /* line 797, ../sass/layouts/_responsive.scss */
  .privatemsg-list td:first-child {
    float: left;
  }
  /* line 800, ../sass/layouts/_responsive.scss */
  .privatemsg-list .privatemsg-list-subject {
    float: left;
  }
  /* line 803, ../sass/layouts/_responsive.scss */
  .privatemsg-list .privatemsg-list-participants {
    clear: left;
    padding-top: 0;
    padding-left: 36px;
    padding-bottom: 0;
  }
  /* line 809, ../sass/layouts/_responsive.scss */
  .privatemsg-list .privatemsg-list-date-started {
    display: none;
  }
  /* line 812, ../sass/layouts/_responsive.scss */
  .privatemsg-list .privatemsg-list-date {
    text-align: right;
    font-size: 12px;
    padding-right: 15px;
    padding-bottom: 15px;
  }

  /* line 824, ../sass/layouts/_responsive.scss */
  #header,
  #content,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* line 834, ../sass/layouts/_responsive.scss */
#block-user-login {
  display: none;
}

@media all and (min-width: 640px) {
  /* line 841, ../sass/layouts/_responsive.scss */
  #block-user-login {
    display: block;
  }
}
@media all and (min-width: 640px) {
  /* line 848, ../sass/layouts/_responsive.scss */
  .node-notifica-o .content {
    width: 70%;
  }
  /* line 851, ../sass/layouts/_responsive.scss */
  .node-notifica-o form {
    width: 30%;
  }
}
/* line 859, ../sass/layouts/_responsive.scss */
.page-user .panel-col-first, .page-user .panel-col-last {
  float: none;
  width: 100%;
}
/* line 862, ../sass/layouts/_responsive.scss */
.page-user .panel-col-first .inside, .page-user .panel-col-last .inside {
  margin: 0;
}
/* line 866, ../sass/layouts/_responsive.scss */
.page-user .panel-col-first {
  margin-bottom: 15px;
}

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 40, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 66, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  display: block;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 88, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
  display: block;
  margin: auto;
}

/* Wrapper for website name and slogan. */
/* line 95, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 100, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 1.4em;
  line-height: 1.83673em;
}

/* The link around the name of the website. */
/* line 108, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 114, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 120, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 125, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 130, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 138, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 142, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 153, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 158, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 172, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 176, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 192, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 199, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.28571em 0;
  padding: 30px 60px 30px 60px;
  /* LTR */
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  behavior: url(css/border-radius.htc);
  /* background-image: inline-image("message-24-ok.png");*/
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: none;
}

/* line 215, ../sass/components/_misc.scss */
.messages--warning {
  /*background-image: inline-image("message-24-warning.png");*/
  /*border-color: $laranja;*/
}

/* line 224, ../sass/components/_misc.scss */
.messages--error {
  /*background-image: inline-image("message-24-error.png");*/
  /*border-color: $lila;*/
}

/* line 234, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 237, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 242, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 248, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f9f7f5;
  color: #1ab08d;
}

/* line 253, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #f9f7f5;
  color: #f05a3b;
}

/* line 258, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #f9f7f5;
  color: #c72254;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 404, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 408, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 416, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 423, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 426, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 429, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 444, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: left;
}
/* line 448, ../sass/components/_misc.scss */
.pager li, .pager li a {
  font-family: "planetaplakat";
  text-decoration: none;
  font-size: 18px;
}
/* line 454, ../sass/components/_misc.scss */
.pager a {
  color: #1ab08d;
}
/* line 457, ../sass/components/_misc.scss */
.pager li {
  padding: 5px 12px;
  line-height: 40px;
}

/* line 463, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0;
  list-style-type: none;
  background: #f9f7f5;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
  behavior: url(css/border-radius.htc);
  margin-right: 5px;
}

/* line 479, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 484, ../sass/components/_misc.scss */
.pager-current {
  color: #c72254;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 495, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.28571em;
}

/**
 * Menus.
 */
/* line 502, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 509, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 516, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 525, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 535, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 546, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 574, ../sass/components/_misc.scss */
.comments {
  margin: 1.28571em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 579, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 585, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 588, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 595, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 605, ../sass/components/_misc.scss */
.form-item {
  margin: 1.28571em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 610, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 617, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 624, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c72254;
}
/* line 629, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
  margin-top: 15px;
  max-width: 460px;
}

/* line 638, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 644, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 649, ../sass/components/_misc.scss */
label.option {
  font-weight: normal;
  color: #11735c;
  display: block;
  float: left;
  max-width: calc(100% - 30px );
  /*width: calc( 100% - 27px );*/
  margin-bottom: 3px;
}

/* line 659, ../sass/components/_misc.scss */
.ctools-auto-submit-processed label.option {
  display: inline;
  float: none;
}

/* Buttons used by contrib modules like Media. */
/* line 665, ../sass/components/_misc.scss */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
/* line 671, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 676, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 688, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 695, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.28571em;
}

/* line 699, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 703, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.28571em 0;
}

/**
 * Drupal admin tables.
 */
/* line 711, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 716, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 719, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 724, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  /*background-color: #eee;*/
  /* border-bottom: 1px solid #dadada;*/
  padding: 0.1em 0.6em;
}

/* line 729, ../sass/components/_misc.scss */
tr.even {
  background-color: #f3efec;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 744, ../sass/components/_misc.scss */
td.active {
  /*background-color: #ddd;*/
}

/* Center checkboxes inside table cell. */
/* line 750, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 755, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 766, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 776, ../sass/components/_misc.scss */
.fieldset-legend {
  font-size: 16px;
  text-transform: uppercase;
  color: #1ab08d;
  text-decoration: none;
}
/* line 782, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url("../images/arrow_d_3.svg");
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: 25px;
  padding-left: 25px;
}
/* line 793, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url("../images/arrow_r_3.svg");
  /* LTR */
  background-position: 0 0;
  /* LTR */
}
/* line 800, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 812, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 815, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 818, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 827, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 836, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 839, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 845, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1526912404');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 14px;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/* line 1, ../sass/_views.scss */
.views-row {
  margin-bottom: 30px;
}

/* line 5, ../sass/_views.scss */
th.views-field.views-field-views-bulk-operations,
td.views-field.views-field-views-bulk-operations {
  padding: 20px 0 20px 10px;
}
/* line 7, ../sass/_views.scss */
th.views-field.views-field-views-bulk-operations input,
td.views-field.views-field-views-bulk-operations input {
  margin: 0;
}

/* line 11, ../sass/_views.scss */
div.fivestar-widget .star, div.fivestar-widget .star a {
  background: rgba(0, 0, 0, 0) url("../images/vote2.svg") no-repeat scroll 0 -50px;
  text-decoration: none;
}

/* line 16, ../sass/_views.scss */
.views-field-field-mais-disto .fivestar-widget .star-2, .views-field-field-mais-disto .fivestar-widget .star-2 a,
.field-name-field-mais-disto .fivestar-widget .star-2, .field-name-field-mais-disto .fivestar-widget .star-2 a {
  background: rgba(0, 0, 0, 0) url("../images/mais-disto.svg") no-repeat scroll 0 -50px;
  text-decoration: none;
}

/* line 21, ../sass/_views.scss */
.views-field-field-mais-disto .fivestar-widget .star-1, .views-field-field-mais-disto .fivestar-widget .star-1 a,
.field-name-field-mais-disto .fivestar-widget .star-1, .field-name-field-mais-disto .fivestar-widget .star-1 a {
  background: rgba(0, 0, 0, 0) url("../images/menos-disto.svg") no-repeat scroll 0 -50px;
  text-decoration: none;
}

/* line 25, ../sass/_views.scss */
div.fivestar-widget .cancel, div.fivestar-widget .star {
  width: 23px;
  height: 25px;
}

/* line 35, ../sass/_views.scss */
.views-field-field-mais-disto div.fivestar-widget .star {
  width: 29px;
}

/* line 39, ../sass/_views.scss */
div.fivestar-widget div.on a {
  background-position: 0 -1px;
}

/* line 42, ../sass/_views.scss */
div.fivestar-widget div.hover a {
  background-position: 0 -26px;
}

/* line 46, ../sass/_views.scss */
.views-field-field-mais-disto div.fivestar-widget.mais-on .star-2 a,
.field-name-field-mais-disto div.fivestar-widget.mais-on .star-2 a {
  background-position: 0 -1px;
}

/* line 50, ../sass/_views.scss */
.views-field-field-mais-disto div.fivestar-widget.mais-hover .star-2 a,
.field-name-field-mais-disto div.fivestar-widget.mais-hover .star-2 a {
  background-position: 0 -26px;
}

/* line 54, ../sass/_views.scss */
.views-field-field-mais-disto div.fivestar-widget.menos-on .star-1 a,
.field-name-field-mais-disto div.fivestar-widget.menos-on .star-1 a {
  background-position: 0 -1px;
}

/* line 58, ../sass/_views.scss */
.views-field-field-mais-disto div.fivestar-widget.menos-hover .star-1 a,
.field-name-field-mais-disto div.fivestar-widget.menos-hover .star-1 a {
  background-position: 0 -1px;
}

/* line 61, ../sass/_views.scss */
.rate-widget-fivestar ul {
  list-style: none;
  overflow: hidden;
}

/* line 65, ../sass/_views.scss */
.rate-widget-fivestar .item-list ul li {
  background-image: none;
  padding: 0;
  margin: 0;
}

/* line 70, ../sass/_views.scss */
.rate-widget-fivestar ul li {
  float: left;
  list-style: none;
}

/* line 74, ../sass/_views.scss */
.rate-widget-fivestar ul li a {
  display: block;
  float: left;
}

/* line 82, ../sass/_views.scss */
.rate-user .rate-fivestar-btn-filled {
  background: rgba(0, 0, 0, 0) url("../images/vote2.svg") no-repeat scroll 0 -26px;
  display: inline-block;
  height: 25px;
  text-indent: -9999px;
  width: 25px;
}

/* line 91, ../sass/_views.scss */
.rate-fivestar-btn-filled {
  background: rgba(0, 0, 0, 0) url("../images/vote2.svg") no-repeat scroll 0 0px;
  display: inline-block;
  height: 25px;
  text-indent: -9999px;
  width: 25px;
}

/* line 100, ../sass/_views.scss */
.rate-fivestar-btn-empty {
  background: rgba(0, 0, 0, 0) url("../images/vote2.svg") no-repeat scroll 0 -50px;
  display: inline-block;
  height: 25px;
  text-indent: -9999px;
  width: 25px;
}

/* line 110, ../sass/_views.scss */
div.fivestar-widget .cancel, div.fivestar-widget .cancel a {
  height: 16px;
  background: rgba(0, 0, 0, 0) url("../images/cancel.png") no-repeat scroll 0 0px;
}

/* line 114, ../sass/_views.scss */
div.fivestar-widget .cancel {
  margin-top: 5px;
}

/* line 118, ../sass/_views.scss */
.rate-widget ul {
  padding: 0;
}

/* line 124, ../sass/_views.scss */
.view-lista-de-receitas .views-field-field-fotos .field-content {
  /*  min-height:200px;*/
  width: 100%;
}

/* line 135, ../sass/_views.scss */
.view-lista-de-receitas .views-field-title a {
  color: #c72254;
}

/* line 142, ../sass/_views.scss */
.view-not-cias .views-field-title {
  margin-top: 5px;
}

/* line 147, ../sass/_views.scss */
.view-not-cias .views-field-title a, .view-lista-de-receitas .views-field-title a {
  text-decoration: none;
  text-transform: uppercase;
  color: #1ab08d;
}
/* line 154, ../sass/_views.scss */
.view-not-cias .views-field-created, .view-lista-de-receitas .views-field-created {
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
/* line 163, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2, .view-not-cias.view-display-id-page_1, .view-not-cias.view-display-id-page_3, .view-not-cias.view-id-lista_de_receitas, .view-lista-de-receitas.view-display-id-page_2, .view-lista-de-receitas.view-display-id-page_1, .view-lista-de-receitas.view-display-id-page_3, .view-lista-de-receitas.view-id-lista_de_receitas {
  clear: both;
}
/* line 164, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 img, .view-not-cias.view-display-id-page_1 img, .view-not-cias.view-display-id-page_3 img, .view-not-cias.view-id-lista_de_receitas img, .view-lista-de-receitas.view-display-id-page_2 img, .view-lista-de-receitas.view-display-id-page_1 img, .view-lista-de-receitas.view-display-id-page_3 img, .view-lista-de-receitas.view-id-lista_de_receitas img {
  width: 100%;
}
/* line 167, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 table, .view-not-cias.view-display-id-page_1 table, .view-not-cias.view-display-id-page_3 table, .view-not-cias.view-id-lista_de_receitas table, .view-lista-de-receitas.view-display-id-page_2 table, .view-lista-de-receitas.view-display-id-page_1 table, .view-lista-de-receitas.view-display-id-page_3 table, .view-lista-de-receitas.view-id-lista_de_receitas table {
  border-collapse: separate;
  border-spacing: 10px 10px;
}
/* line 171, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 tr, .view-not-cias.view-display-id-page_1 tr, .view-not-cias.view-display-id-page_3 tr, .view-not-cias.view-id-lista_de_receitas tr, .view-lista-de-receitas.view-display-id-page_2 tr, .view-lista-de-receitas.view-display-id-page_1 tr, .view-lista-de-receitas.view-display-id-page_3 tr, .view-lista-de-receitas.view-id-lista_de_receitas tr {
  height: 342px;
  vertical-align: top;
}
/* line 175, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 td, .view-not-cias.view-display-id-page_1 td, .view-not-cias.view-display-id-page_3 td, .view-not-cias.view-id-lista_de_receitas td, .view-lista-de-receitas.view-display-id-page_2 td, .view-lista-de-receitas.view-display-id-page_1 td, .view-lista-de-receitas.view-display-id-page_3 td, .view-lista-de-receitas.view-id-lista_de_receitas td {
  width: 273px;
  background-color: #f9f7f5;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  padding: 15px;
  position: relative;
}
/* line 183, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-field, .view-not-cias.view-display-id-page_1 .views-field, .view-not-cias.view-display-id-page_3 .views-field, .view-not-cias.view-id-lista_de_receitas .views-field, .view-lista-de-receitas.view-display-id-page_2 .views-field, .view-lista-de-receitas.view-display-id-page_1 .views-field, .view-lista-de-receitas.view-display-id-page_3 .views-field, .view-lista-de-receitas.view-id-lista_de_receitas .views-field {
  /* padding: 0 5px;*/
}
/* line 186, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-field-field-fotos, .view-not-cias.view-display-id-page_2 .views-field-field-imagem-miniatura, .view-not-cias.view-display-id-page_1 .views-field-field-fotos, .view-not-cias.view-display-id-page_1 .views-field-field-imagem-miniatura, .view-not-cias.view-display-id-page_3 .views-field-field-fotos, .view-not-cias.view-display-id-page_3 .views-field-field-imagem-miniatura, .view-not-cias.view-id-lista_de_receitas .views-field-field-fotos, .view-not-cias.view-id-lista_de_receitas .views-field-field-imagem-miniatura, .view-lista-de-receitas.view-display-id-page_2 .views-field-field-fotos, .view-lista-de-receitas.view-display-id-page_2 .views-field-field-imagem-miniatura, .view-lista-de-receitas.view-display-id-page_1 .views-field-field-fotos, .view-lista-de-receitas.view-display-id-page_1 .views-field-field-imagem-miniatura, .view-lista-de-receitas.view-display-id-page_3 .views-field-field-fotos, .view-lista-de-receitas.view-display-id-page_3 .views-field-field-imagem-miniatura, .view-lista-de-receitas.view-id-lista_de_receitas .views-field-field-fotos, .view-lista-de-receitas.view-id-lista_de_receitas .views-field-field-imagem-miniatura {
  padding: 0;
}
/* line 189, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-field-title, .view-not-cias.view-display-id-page_1 .views-field-title, .view-not-cias.view-display-id-page_3 .views-field-title, .view-not-cias.view-id-lista_de_receitas .views-field-title, .view-lista-de-receitas.view-display-id-page_2 .views-field-title, .view-lista-de-receitas.view-display-id-page_1 .views-field-title, .view-lista-de-receitas.view-display-id-page_3 .views-field-title, .view-lista-de-receitas.view-id-lista_de_receitas .views-field-title {
  padding: 0px 5px 7px;
}
/* line 193, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-field-view-node, .view-not-cias.view-display-id-page_1 .views-field-view-node, .view-not-cias.view-display-id-page_3 .views-field-view-node, .view-not-cias.view-id-lista_de_receitas .views-field-view-node, .view-lista-de-receitas.view-display-id-page_2 .views-field-view-node, .view-lista-de-receitas.view-display-id-page_1 .views-field-view-node, .view-lista-de-receitas.view-display-id-page_3 .views-field-view-node, .view-lista-de-receitas.view-id-lista_de_receitas .views-field-view-node {
  position: absolute;
  bottom: 15px;
}
/* line 197, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-field-view-node a, .view-not-cias.view-display-id-page_1 .views-field-view-node a, .view-not-cias.view-display-id-page_3 .views-field-view-node a, .view-not-cias.view-id-lista_de_receitas .views-field-view-node a, .view-lista-de-receitas.view-display-id-page_2 .views-field-view-node a, .view-lista-de-receitas.view-display-id-page_1 .views-field-view-node a, .view-lista-de-receitas.view-display-id-page_3 .views-field-view-node a, .view-lista-de-receitas.view-id-lista_de_receitas .views-field-view-node a {
  /*   color:$lila !important;*/
}
/* line 201, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-row, .view-not-cias.view-display-id-page_1 .views-row, .view-not-cias.view-display-id-page_3 .views-row, .view-not-cias.view-id-lista_de_receitas .views-row, .view-lista-de-receitas.view-display-id-page_2 .views-row, .view-lista-de-receitas.view-display-id-page_1 .views-row, .view-lista-de-receitas.view-display-id-page_3 .views-row, .view-lista-de-receitas.view-id-lista_de_receitas .views-row {
  position: relative;
}
/* line 210, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-row .wrapper.views-fieldset, .view-not-cias.view-display-id-page_1 .views-row .wrapper.views-fieldset, .view-not-cias.view-display-id-page_3 .views-row .wrapper.views-fieldset, .view-not-cias.view-id-lista_de_receitas .views-row .wrapper.views-fieldset, .view-lista-de-receitas.view-display-id-page_2 .views-row .wrapper.views-fieldset, .view-lista-de-receitas.view-display-id-page_1 .views-row .wrapper.views-fieldset, .view-lista-de-receitas.view-display-id-page_3 .views-row .wrapper.views-fieldset, .view-lista-de-receitas.view-id-lista_de_receitas .views-row .wrapper.views-fieldset {
  background-color: #f9f7f5;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  overflow: hidden;
  padding: 10px;
}
/* line 217, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-row .fundo.views-fieldset, .view-not-cias.view-display-id-page_1 .views-row .fundo.views-fieldset, .view-not-cias.view-display-id-page_3 .views-row .fundo.views-fieldset, .view-not-cias.view-id-lista_de_receitas .views-row .fundo.views-fieldset, .view-lista-de-receitas.view-display-id-page_2 .views-row .fundo.views-fieldset, .view-lista-de-receitas.view-display-id-page_1 .views-row .fundo.views-fieldset, .view-lista-de-receitas.view-display-id-page_3 .views-row .fundo.views-fieldset, .view-lista-de-receitas.view-id-lista_de_receitas .views-row .fundo.views-fieldset {
  min-height: 100px;
}
/* line 222, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-row .views-field-view-node, .view-not-cias.view-display-id-page_1 .views-row .views-field-view-node, .view-not-cias.view-display-id-page_3 .views-row .views-field-view-node, .view-not-cias.view-id-lista_de_receitas .views-row .views-field-view-node, .view-lista-de-receitas.view-display-id-page_2 .views-row .views-field-view-node, .view-lista-de-receitas.view-display-id-page_1 .views-row .views-field-view-node, .view-lista-de-receitas.view-display-id-page_3 .views-row .views-field-view-node, .view-lista-de-receitas.view-id-lista_de_receitas .views-row .views-field-view-node {
  position: absolute;
  bottom: 15px;
}
/* line 226, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-row .views-field-view-node a, .view-not-cias.view-display-id-page_1 .views-row .views-field-view-node a, .view-not-cias.view-display-id-page_3 .views-row .views-field-view-node a, .view-not-cias.view-id-lista_de_receitas .views-row .views-field-view-node a, .view-lista-de-receitas.view-display-id-page_2 .views-row .views-field-view-node a, .view-lista-de-receitas.view-display-id-page_1 .views-row .views-field-view-node a, .view-lista-de-receitas.view-display-id-page_3 .views-row .views-field-view-node a, .view-lista-de-receitas.view-id-lista_de_receitas .views-row .views-field-view-node a {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  /*color:$lila !important;*/
}
/* line 233, ../sass/_views.scss */
.view-not-cias.view-display-id-page_2 .views-row-last:after, .view-not-cias.view-display-id-page_1 .views-row-last:after, .view-not-cias.view-display-id-page_3 .views-row-last:after, .view-not-cias.view-id-lista_de_receitas .views-row-last:after, .view-lista-de-receitas.view-display-id-page_2 .views-row-last:after, .view-lista-de-receitas.view-display-id-page_1 .views-row-last:after, .view-lista-de-receitas.view-display-id-page_3 .views-row-last:after, .view-lista-de-receitas.view-id-lista_de_receitas .views-row-last:after {
  clear: both;
}
/* line 238, ../sass/_views.scss */
.view-not-cias .view-footer, .view-lista-de-receitas .view-footer {
  clear: both;
  text-align: right;
}

/* line 244, ../sass/_views.scss */
.more-link {
  clear: both;
}

/* SLideshow home */
/* line 251, ../sass/_views.scss */
.view-home-slide-grande {
  overflow: hidden;
  position: relative;
  height: 250px;
  margin-bottom: 0x;
}
/* line 256, ../sass/_views.scss */
.view-home-slide-grande .views-row {
  z-index: 0;
  position: absolute;
  top: 0;
  width: 100%;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
/* line 262, ../sass/_views.scss */
.view-home-slide-grande .views-row.activeSlide {
  z-index: 1;
}
/* line 266, ../sass/_views.scss */
.view-home-slide-grande .views-row.views-row-first {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 270, ../sass/_views.scss */
.view-home-slide-grande .views-row.views-row-odd .cinta {
  background-color: rgba(40, 174, 140, 0.8);
}

/* line 279, ../sass/_views.scss */
.view-home-pequenos-fixos {
  overflow: hidden;
}
/* line 281, ../sass/_views.scss */
.view-home-pequenos-fixos .views-row {
  margin-top: 30px;
  margin-bottom: 0;
}
/* line 285, ../sass/_views.scss */
.view-home-pequenos-fixos .node-destacado {
  /*margin-bottom:35px;*/
}
/* line 288, ../sass/_views.scss */
.view-home-pequenos-fixos .views-row {
    /* float:left;
     width:49%;
     margin-bottom:0;
*/
}
/* line 295, ../sass/_views.scss */
.view-home-pequenos-fixos .cinta a {
  color: #1ab08d !important;
  font-weight: bold;
}
/* line 300, ../sass/_views.scss */
.view-home-pequenos-fixos .views-row-odd .cinta {
  /*background-color:$verde-rgba;*/
}
/* line 304, ../sass/_views.scss */
.view-home-pequenos-fixos .views-row-first {
  /* margin-right:2%;*/
}
/* line 307, ../sass/_views.scss */
.view-home-pequenos-fixos .node {
  overflow: hidden;
}
/* line 310, ../sass/_views.scss */
.view-home-pequenos-fixos .node .header-destacado {
  height: auto;
}
/* line 314, ../sass/_views.scss */
.view-home-pequenos-fixos .node .cinta {
  position: relative;
  padding: 0;
  color: #1ab08d;
  height: 100%;
  top: 0;
  background: none;
}
/* line 322, ../sass/_views.scss */
.view-home-pequenos-fixos .node .cinta > * {
  margin: 0;
}
/* line 327, ../sass/_views.scss */
.view-home-pequenos-fixos .node h2 {
  margin-top: 0px !important;
  color: #1ab08d;
}
/* line 332, ../sass/_views.scss */
.view-home-pequenos-fixos .node .field-name-field-imagem-destacado {
  display: none;
}

/* line 341, ../sass/_views.scss */
.view-empty {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #f9f7f5;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
}

/* line 350, ../sass/_views.scss */
.view-lista-de-delega-oes {
  background: none !important;
  padding: 0 !important;
}

/* line 354, ../sass/_views.scss */
#page .view .node-delega-ao {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 365, ../sass/_views.scss */
.view-lista-de-productores .view-filters form, .view-lista-de-receitas .view-filters form {
  padding: 0 !important;
}
/* line 367, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form, .view-lista-de-receitas .view-filters form .views-exposed-form {
  position: relative;
}
/* line 371, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget {
  float: left;
  padding: 0;
}
/* line 376, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget.views-widget-filter-field_produtos_tid, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget.views-widget-filter-field_produtos_tid {
  clear: none;
}
/* line 379, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget.views-reset-button, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget.views-reset-button {
  width: 100%;
  padding: 15px 20px 20px 20px;
  clear: both;
  margin-top: 30px;
  box-sizing: border-box;
  text-align: right;
  border-top: 1px solid #dedede;
}
/* line 388, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .selected_f, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .selected_f {
  margin-left: 44px;
  display: block;
  color: #1ab08d;
}
/* line 393, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .fieldset-wrapper, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .fieldset-wrapper {
  position: absolute;
  display: none;
  z-index: 1000000;
  background: #f9f7f5;
  border: 1px solid #dedede;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 20px;
  margin-top: -6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
}
/* line 410, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-submit, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 0px;
}
/* line 413, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item {
  overflow: hidden;
  line-height: 30px;
  margin-left: 0px;
}
/* line 418, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item > div, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item > div {
  width: 100%;
}
/* line 421, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item input, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item input {
  display: none;
}
/* line 425, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item label, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item label {
  padding: 0px 10px;
  margin-bottom: 10px;
  margin: 2px 20px;
  display: inline-block;
}
/* line 432, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item :checked + label, .view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item :hover + label, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item :checked + label, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item :hover + label {
  background: #fff;
  box-shadow: 1px 1px 1px #c0c0c0;
  color: #1ab08d;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 438, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item.form-item-field-tipo-de-receita-tid :checked + label, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item.form-item-field-tipo-de-receita-tid :checked + label {
  color: #c72254;
}
/* line 443, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item.form-item-field-tipo-de-alimenta-o-tid :checked + label, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item.form-item-field-tipo-de-alimenta-o-tid :checked + label {
  color: #f05a3b;
}
/* line 448, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item.form-item-field-dificuldade-tid :checked + label, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item.form-item-field-dificuldade-tid :checked + label {
  color: #1ab08d;
}
/* line 454, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item a, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item a {
  text-decoration: none;
  padding: 2px 5px;
}
/* line 458, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item a.active, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item a.active {
  background: #1ab08d;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 465, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget .form-item .description, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget .form-item .description {
  margin: 0;
}
/* line 469, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget fieldset.collapsible, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget fieldset.collapsible {
  position: inherit;
  margin: 0;
}
/* line 473, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget fieldset.collapsed, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget fieldset.collapsed {
  height: inherit;
  display: inline-block;
  width: auto;
}
/* line 478, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-exposed-widget legend, .view-lista-de-receitas .view-filters form .views-exposed-form .views-exposed-widget legend {
  padding: 15px;
}
/* line 484, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-widget-filter-field_tipo_de_receita_tid a.fieldset-title, .view-lista-de-receitas .view-filters form .views-exposed-form .views-widget-filter-field_tipo_de_receita_tid a.fieldset-title {
  color: #c72254;
}
/* line 487, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-widget-filter-field_tipo_de_alimenta_o_tid a.fieldset-title, .view-lista-de-receitas .view-filters form .views-exposed-form .views-widget-filter-field_tipo_de_alimenta_o_tid a.fieldset-title {
  color: #f05a3b;
}
/* line 490, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form .views-widget-filter-field_dificuldade_tid a.fieldset-title, .view-lista-de-receitas .view-filters form .views-exposed-form .views-widget-filter-field_dificuldade_tid a.fieldset-title {
  color: #1ab08d;
}
/* line 497, ../sass/_views.scss */
.view-lista-de-productores .view-filters form .views-exposed-form a.fieldset-title, .view-lista-de-receitas .view-filters form .views-exposed-form a.fieldset-title {
  text-decoration: none;
}

/* line 513, ../sass/_views.scss */
.view-lista-de-receitas {
  /* .views-exposed-widget{
       width:100%;
   }
   .fieldset-wrapper{
           width:100%;
    }*/
}

/* line 525, ../sass/_views.scss */
.view-lista-de-productores .views-exposed-widget {
  width: 100%;
}

/* line 531, ../sass/_views.scss */
.view-lista-de-receitas .form-item-field-produtos-tid .fieldset-wrapper, .view-lista-de-productores .form-item-field-produtos-tid .fieldset-wrapper {
  width: 100%;
  left: 0;
}
/* line 534, ../sass/_views.scss */
.view-lista-de-receitas .form-item-field-produtos-tid .fieldset-wrapper > div > div, .view-lista-de-productores .form-item-field-produtos-tid .fieldset-wrapper > div > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

/* line 545, ../sass/_views.scss */
.view-filters form {
  background: #f9f7f5;
  padding: 0px 0px;
  padding-bottom: 20px;
}
/* line 549, ../sass/_views.scss */
.view-filters form .fieldset-wrapper {
  margin-top: 10px;
}
/* line 553, ../sass/_views.scss */
.view-filters form fieldset {
  border: none;
  padding: 0;
}

/* line 560, ../sass/_views.scss */
.view-lista-de-receitas .view-empty {
  font-size: 14px;
  background: #f9f7f5;
  float: left;
  padding: 0px 30px;
}
/* line 566, ../sass/_views.scss */
.view-lista-de-receitas .views-field-nid {
  padding: 0 !important;
  color: #1ab08d;
  text-align: center;
  -ms-transform: rotate(26deg);
  /* IE 9 */
  -webkit-transform: rotate(26deg);
  /* Safari */
  transform: rotate(26deg);
  position: ABSOLUTE;
  z-index: 17;
  right: -10px;
  top: -29px;
  text-transform: uppercase;
  font-size: 12px;
  height: 74px;
  width: 74px;
  border: 1px solid;
  -moz-border-radius: 74px;
  -webkit-border-radius: 74px;
  -khtml-border-radius: 74px;
  border-radius: 74px;
  behavior: url(css/border-radius.htc);
}
/* line 583, ../sass/_views.scss */
.view-lista-de-receitas .views-field-nid span {
  line-height: 74px;
}
/* line 587, ../sass/_views.scss */
.view-lista-de-receitas .views-filter {
  position: absolute;
  z-index: 100;
}
/* line 591, ../sass/_views.scss */
.view-lista-de-receitas .views-field-edit-node {
  float: right;
  margin-top: 10px;
}
/* line 594, ../sass/_views.scss */
.view-lista-de-receitas .views-field-edit-node a {
  text-decoration: none;
  padding: 5px 10px;
  background: #fff;
  box-shadow: 1px 1px 1px #c0c0c0;
  color: #c72254;
  display: inline-block;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 604, ../sass/_views.scss */
.view-lista-de-receitas .views-field-ops {
  clear: both;
  float: left;
  margin-top: 10px;
}
/* line 608, ../sass/_views.scss */
.view-lista-de-receitas .views-field-ops a {
  text-decoration: none;
  padding: 5px 10px;
  background: #fff;
  box-shadow: 1px 1px 1px #c0c0c0;
  color: #1ab08d;
  display: inline-block;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 621, ../sass/_views.scss */
.view-lista-de-receitas .rate-widget ul {
  margin: 10px 5px 5px 0px;
}
/* line 625, ../sass/_views.scss */
.view-lista-de-receitas .rate-widget .item-list {
  float: left;
}
/* line 628, ../sass/_views.scss */
.view-lista-de-receitas .rate-widget .rate-info {
  margin-top: 16px;
  float: left;
  clear: none;
}

/* line 640, ../sass/_views.scss */
.views-field-field-tipo-de-receita,
.views-field-field-tipo-de-alimenta-o,
.views-field-field-dificuldade {
  clear: both;
  float: right;
}
/* line 643, ../sass/_views.scss */
.views-field-field-tipo-de-receita .field-content,
.views-field-field-tipo-de-alimenta-o .field-content,
.views-field-field-dificuldade .field-content {
  text-transform: uppercase;
  padding: 6px 10px;
  color: #FFF;
  font-size: 12px;
}

/* line 652, ../sass/_views.scss */
.views-field-field-tipo-de-receita {
  background-color: #c72254 !important;
}

/* line 655, ../sass/_views.scss */
.views-field-field-tipo-de-alimenta-o {
  background-color: #f05a3b !important;
}

/* line 658, ../sass/_views.scss */
.views-field-field-dificuldade {
  background-color: #1ab08d !important;
}

/* line 661, ../sass/_views.scss */
.etiquetas {
  position: absolute;
  right: 10px;
}

/* line 665, ../sass/_views.scss */
.wrapper.views-fieldset {
  position: relative;
}

/* line 668, ../sass/_views.scss */
.count-1-produtos {
  display: none;
}

/* line 673, ../sass/_views.scss */
.views-widget-filter-field_tipo_de_receita_tid,
.views-widget-filter-field_tipo_de_alimenta_o_tid,
.views-widget-filter-field_tempo_de_prepara_o_tid {
  /*padding:20px !important;
  margin-bottom:20px;
  border:1px solid $verde;
  @include round-corners(6px);*/
}

/* line 679, ../sass/_views.scss */
.views-widget-filter-field_produtos_tid {
  clear: both;
}

/* line 684, ../sass/_views.scss */
.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 35px;
}

/* line 688, ../sass/_views.scss */
.view-as-entregas-do-dinamizador {
  background: #f9f7f5;
  padding: 20px 30px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 692, ../sass/_views.scss */
.view-as-entregas-do-dinamizador td {
  padding: 10px 5px !important;
}

/* line 697, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_0, .view-lista-de-delega-oes {
  background: #f9f7f5;
  padding: 30px 60px;
}

/* line 704, ../sass/_views.scss */
#openlayers-map #popup_contentDiv {
  padding: 10px 10px 5px 20px;
}
/* line 709, ../sass/_views.scss */
#openlayers-map .openlayers-tooltip-description,
#openlayers-map .openlayers-tooltip-name {
  width: 300px;
  /*
          max-width:300px;
          min-width:100px;
  */
}
/* line 716, ../sass/_views.scss */
#openlayers-map .openlayers-tooltip-name {
  margin-bottom: 10px;
  font-family: 'planetaplakat';
  font-size: 16px;
}
/* line 720, ../sass/_views.scss */
#openlayers-map .openlayers-tooltip-name a {
  text-decoration: none;
}
/* line 725, ../sass/_views.scss */
#openlayers-map .openlayers-tooltip-description {
  overflow: hidden !important;
  margin-bottom: 30px;
}
/* line 726, ../sass/_views.scss */
#openlayers-map .openlayers-tooltip-description p {
  margin-top: 0;
}
/* line 732, ../sass/_views.scss */
#openlayers-map .views-label-field-produtos {
  font-weight: bold;
}
/* line 738, ../sass/_views.scss */
#openlayers-map .views-field-url-1 {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
/* line 743, ../sass/_views.scss */
#openlayers-map .views-field-field-fotos {
  float: left;
  margin: 0 14px 2px 0;
  width: 100px;
  height: 100px;
}
/* line 750, ../sass/_views.scss */
#openlayers-map #popup {
  color: #fff;
}
/* line 753, ../sass/_views.scss */
#openlayers-map #popup a {
  color: white;
}

/* line 759, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row, .view-lista-de-productores.view-display-id-page_2 .views-row {
  color: #1ab08d;
  margin-bottom: 0;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
}
/* line 764, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field {
  padding: 0 15px;
}
/* line 768, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-fotos, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-fotos {
  padding: 0;
}
/* line 771, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .faixa, .view-lista-de-productores.view-display-id-page_2 .views-row .faixa {
  -moz-border-radius: 0px 0px 6px 6px;
  -webkit-border-radius: 0px 0px 6px 6px;
  -khtml-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
  behavior: url(css/border-radius.htc);
  margin-bottom: 20px;
  padding: 1px 0px 50px 0;
  background: #f3efec;
  position: relative;
}
/* line 778, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-cidade, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-cidade {
  position: absolute;
  bottom: 15px;
}
/* line 782, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-empresa-ou-explora-o, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-empresa-ou-explora-o {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 785, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-empresa-ou-explora-o a, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-empresa-ou-explora-o a {
  color: #11735c;
  font-family: 'planetaplakat';
  font-size: 18px;
  text-decoration: none;
}
/* line 796, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-c-digo-postal, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-c-digo-postal {
  padding-right: 0;
}
/* line 799, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-produtos, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-produtos {
  font-family: 'planetaplakat';
  font-size: 16px;
}
/* line 802, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_1 .views-row .views-field-field-produtos .views-label-field-produtos, .view-lista-de-productores.view-display-id-page_2 .views-row .views-field-field-produtos .views-label-field-produtos {
  float: left;
  margin-right: 10px;
}

/* line 811, ../sass/_views.scss */
.view-lista-de-productores.view-display-id-page_0 .views-field-field-fotos {
  min-width: 100px;
}

/* line 814, ../sass/_views.scss */
.panels-flexible-region {
  width: 100%;
}

/* line 818, ../sass/_views.scss */
.view-cosumidores-com-cestas .flag-recolha-cesta a.flag-action {
  color: #c72254;
}
/* line 821, ../sass/_views.scss */
.view-cosumidores-com-cestas .views-field-nothing {
  text-align: center;
}
/* line 823, ../sass/_views.scss */
.view-cosumidores-com-cestas .views-field-nothing > a {
  color: #c72254;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
}

/* line 836, ../sass/_views.scss */
.views-table {
  position: relative;
}
/* line 838, ../sass/_views.scss */
.views-table td {
  position: relative;
}

/* line 844, ../sass/_views.scss */
.notif_popups {
  display: none;
  background: #1ab08d;
  position: absolute;
  color: #fff;
  top: 100%;
  width: 100%;
  padding: 20px 20px 0;
  box-sizing: border-box;
  z-index: 1000;
  margin: 0 0px;
}
/* line 856, ../sass/_views.scss */
.notif_popups .notif-item {
  text-align: left;
  width: 210px;
  float: left;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  background: #fff;
  color: #11735c;
}
/* line 867, ../sass/_views.scss */
.notif_popups .notif-item p {
  margin: 5px;
}
/* line 870, ../sass/_views.scss */
.notif_popups .notif-item a {
  color: #1ab08d;
}

/* line 1, ../sass/_node.scss */
.node-form {
  background-color: #f9f7f5;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  padding: 30px;
}

/*Perfil productor*/
/* line 8, ../sass/_node.scss */
.profile2-productor {
  background-color: #f9f7f5;
  padding: 30px;
  position: relative;
}
/* line 14, ../sass/_node.scss */
.profile2-productor .field-name-field-produtos {
  margin-bottom: 20px;
  overflow: hidden;
  max-width: 550px;
}
/* line 18, ../sass/_node.scss */
.profile2-productor .field-name-field-produtos .field-items {
  /*float:left;*/
}
/* line 22, ../sass/_node.scss */
.profile2-productor .field-name-field-produtos .field-item {
  float: left;
  margin-right: 10px;
  font-weight: bold;
}
/* line 29, ../sass/_node.scss */
.profile2-productor iframe {
  min-height: 400px;
  margin-top: 20px;
}
/* line 33, ../sass/_node.scss */
.profile2-productor .links {
  position: absolute;
  right: 20px;
  top: 15px;
}
/* line 38, ../sass/_node.scss */
.profile2-productor .field-name-field-empresa-ou-explora-o {
  font-size: 20px;
  color: #1ab08d;
  font-family: 'planetaplakat';
  margin-bottom: 10px;
}
/* line 46, ../sass/_node.scss */
.profile2-productor .field-name-field-coordenadas-geogr-ficas {
  width: 100%;
  /*margin-right:2%;
  float:left;*/
}
/* line 51, ../sass/_node.scss */
.profile2-productor .field-name-field-descri-o {
  clear: both;
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 550px;
  text-align: justify;
}
/* line 58, ../sass/_node.scss */
.profile2-productor .field-name-field-fotos {
  width: 100%;
  /*float:left;*/
}

/* line 63, ../sass/_node.scss */
.field.field-name-field-estado, .franja {
  padding: 5px         30px;
  background: #1ab08d;
  width: 100%;
  color: #fff;
  box-sizing: border-box;
}

/* line 70, ../sass/_node.scss */
.node.node-delega-ao {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  border-radius: 0px;
  behavior: url(css/border-radius.htc);
  margin-bottom: 0;
}
/* line 76, ../sass/_node.scss */
.node.node-delega-ao .field-label-inline .field-label {
  margin-right: 10px;
  width: 150px;
}
/* line 80, ../sass/_node.scss */
.node.node-delega-ao .field-name-field-coordenadas-geogr-ficas {
  margin-bottom: 20px;
  margin-top: 20px;
}

/*EDIT  NODES*/
/* line 88, ../sass/_node.scss */
.node-cesta-form label {
  margin-top: 5px;
}
/* line 89, ../sass/_node.scss */
.node-cesta-form .form-type-radio {
  /*float:left;
  margin-right:10px;*/
}
/* line 93, ../sass/_node.scss */
.node-cesta-form .form-field-name-field-descri-o {
  clear: both;
}
/* line 98, ../sass/_node.scss */
.node-cesta-form .form-field-name-field-produtos-cesta .form-wrapper {
  float: left;
  width: 50%;
}
/* line 101, ../sass/_node.scss */
.node-cesta-form .form-field-name-field-produtos-cesta .form-wrapper select, .node-cesta-form .form-field-name-field-produtos-cesta .form-wrapper input {
  width: 100%;
}
/* line 107, ../sass/_node.scss */
.node-cesta-form .form-field-name-field-produtos-cesta .form-wrapper.field-name-field-ref-producto {
  width: 100%;
}
/* line 111, ../sass/_node.scss */
.node-cesta-form .form-field-name-field-produtos-cesta .form-submit {
  float: left;
  margin-top: 27px;
}

/* fivestar repeat*/
/* Plain HTML Version */
/* line 124, ../sass/_node.scss */
form.fivestar-widget {
  clear: both;
  display: block;
}

/* line 129, ../sass/_node.scss */
form.fivestar-widget select,
form.fivestar-widget input {
  margin: 0;
}

/* line 134, ../sass/_node.scss */
.fivestar-combo-stars .fivestar-form-item {
  float: left;
  /* RTL */
}

/* Fivestar form items */
/* line 140, ../sass/_node.scss */
.fivestar-static-form-item .form-item,
.fivestar-form-item .form-item {
  margin: 0;
}

/* Static View-only Star Version */
/* line 145, ../sass/_node.scss */
div.fivestar-widget-static {
  display: block;
}

/* line 149, ../sass/_node.scss */
div.fivestar-widget-static br {
  clear: left;
  /* RTL */
}

/* line 153, ../sass/_node.scss */
div.fivestar-widget-static .star {
  float: left;
  /* RTL */
  overflow: hidden;
  text-indent: -999em;
}

/* line 161, ../sass/_node.scss */
div.fivestar-widget-static .star span.on {
  display: block;
}

/* line 166, ../sass/_node.scss */
div.fivestar-widget-static .star span.off {
  display: block;
}

/* Javascript Star Version */
/* line 172, ../sass/_node.scss */
div.fivestar-widget {
  display: block;
}

/* line 176, ../sass/_node.scss */
div.fivestar-widget .cancel, div.fivestar-widget .star {
  float: left;
  /* RTL */
  overflow: hidden;
  text-indent: -999em;
}

/* line 182, ../sass/_node.scss */
div.fivestar-widget .cancel, div.fivestar-widget .cancel a {
  text-decoration: none;
}

/* line 187, ../sass/_node.scss */
div.fivestar-widget .star, div.fivestar-widget .star a {
  text-decoration: none;
}

/* line 192, ../sass/_node.scss */
div.fivestar-widget .cancel a, div.fivestar-widget .star a {
  display: block;
  cursor: pointer;
}

/* line 203, ../sass/_node.scss */
form.fivestar-widget div.description {
  margin-bottom: 0;
}

/* line 207, ../sass/_node.scss */
html.js .fivestar-submit {
  display: none;
}

/* line 211, ../sass/_node.scss */
.fivestar-combo-stars .form-type-fivestar .form-item {
  float: left;
}

/*EDIT  NODES*/
/* line 2, ../sass/_page.scss */
.front #main {
  padding: 0;
  margin: 0;
}

/* line 6, ../sass/_page.scss */
.front.not-logged-in #main {
  margin-top: 32px;
}

/* line 9, ../sass/_page.scss */
#block-block-4 {
  font-family: 'planetaplakat';
  font-size: 20px;
  color: #1ab08d;
  text-align: center;
  /* background: url(../images/leafs.svg) no-repeat;
   background-size:contain;
   background-position-y: bottom;*/
  padding-bottom: 1px;
  position: relative;
}

/* line 20, ../sass/_page.scss */
#block-block-4:before, #block-block-4:after {
  content: '';
  width: 100%;
  height: 20px;
  background: url(../images/leafs.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}

/* line 29, ../sass/_page.scss */
#block-block-4:before {
  top: -24px;
}

/* line 32, ../sass/_page.scss */
#block-block-4:after {
  bottom: 0;
}

/* line 43, ../sass/_page.scss */
.page-consumidor-register .node-83 h2 {
  display: none;
}
/* line 48, ../sass/_page.scss */
.page-consumidor-register #user-register-form {
  background: none;
  padding: 0;
}
/* line 53, ../sass/_page.scss */
.page-consumidor-register .inner-reg {
  background: #f9f7f5;
  padding: 30px;
}
/* line 54, ../sass/_page.scss */
.page-consumidor-register .inner-reg fieldset {
  display: table-cell;
}

/* line 61, ../sass/_page.scss */
.overlayer-actions {
  position: fixed;
  z-index: 10;
  display: none;
  background: rgba(255, 255, 255, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 72, ../sass/_page.scss */
#navigation #block-system-user-menu li {
  line-height: 20px;
}

/* line 76, ../sass/_page.scss */
.cke_wysiwyg_frame body {
  background: #fff;
}

/* line 87, ../sass/_page.scss */
.tabs-primary li a,
.sidebar .menu li a,
.pager li,
.wrapper.views-fieldset,
.branco,
.messages,
.messages--status,
.messages--warning,
.messages--error,
.privatemsg-message-column,
.node, form, .comment {
  box-shadow: 1px 1px 1px #c0c0c0;
}

/* line 91, ../sass/_page.scss */
#footer {
  text-align: center;
}
/* line 92, ../sass/_page.scss */
#footer li {
  display: inline-block;
  list-style: none;
  margin-right: 20px;
}
/* line 96, ../sass/_page.scss */
#footer li a {
  display: block;
  width: 120px;
}
/* line 105, ../sass/_page.scss */
#footer ul {
  text-align: center;
}

/* line 114, ../sass/_page.scss */
.node form,
.top-bar-region #user-login-form,
.view-home-pequenos-fixos .node-destacado, .node-54, .node-141, .node-55, .node-135 {
  box-shadow: none;
}

/* line 119, ../sass/_page.scss */
.view-os-meus-productores {
  background: #f9f7f5;
  padding: 20px;
}

/* line 127, ../sass/_page.scss */
.node, form, .comment {
  background-color: #f9f7f5;
  padding: 20px 60px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  margin-bottom: 20px;
}
/* line 134, ../sass/_page.scss */
.node.node-panel, form.node-panel, .comment.node-panel {
  background: none;
  padding: 0px 0px;
  box-shadow: none;
}

/* line 140, ../sass/_page.scss */
.comments__title, .comments__form-title {
  margin-bottom: 15px;
}

/* line 145, ../sass/_page.scss */
.node-not-cia {
  padding: 30px;
  margin-bottom: 20px;
}
/* line 148, ../sass/_page.scss */
.node-not-cia h2 {
  text-transform: none;
  text-align: left;
  background: none;
  width: 50%;
  line-height: 24px;
  margin-bottom: 20px;
}
/* line 156, ../sass/_page.scss */
.node-not-cia h2 .h-inner {
  padding: 0;
  background: none;
}
/* line 161, ../sass/_page.scss */
.node-not-cia h2 a {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  color: #1ab08d;
}
/* line 167, ../sass/_page.scss */
.node-not-cia .field-name-field-fotos {
  margin-top: 60px;
}

/* line 172, ../sass/_page.scss */
.node-33 form, .node-143 form {
  background: none;
  padding: 0;
  max-width: 460px;
}
/* line 177, ../sass/_page.scss */
.node-33 .field-name-body, .node-143 .field-name-body {
  max-width: 640px;
}
/* line 180, ../sass/_page.scss */
.node-33 input[type="text"], .node-33 input[type="email"], .node-33 select, .node-143 input[type="text"], .node-143 input[type="email"], .node-143 select {
  width: 100%;
}

/* line 184, ../sass/_page.scss */
.logo-mobile {
  position: relative;
  left: 50%;
}
/* line 189, ../sass/_page.scss */
.logo-mobile img {
  left: -64px;
  position: relative;
}

/* line 194, ../sass/_page.scss */
.inner-side {
  padding: 30px 60px;
}

/* line 198, ../sass/_page.scss */
.node-54, .node-141 {
  background: none;
  padding: 0 !important;
}
/* line 201, ../sass/_page.scss */
.node-54 .left, .node-141 .left {
  background-color: #f9f7f5;
}

/*.node-58,.panel-panel{*/
/* line 210, ../sass/_page.scss */
.node-53, .node-140 {
  background-color: #c72254 !important;
  color: #fff;
}

/* line 214, ../sass/_page.scss */
.node-55, .node-135 {
  text-align: center;
  background: none !important;
  padding: 0 !important;
}
/* line 219, ../sass/_page.scss */
.node-55 .cabeceira-numero, .node-135 .cabeceira-numero {
  margin-bottom: -44px;
}

/*}*/
/* line 226, ../sass/_page.scss */
.castanho {
  color: #fff;
  display: block;
  margin-bottom: 30px;
  padding: 60px 30px 30px;
  background: rgba(40, 174, 140, 0.8);
  /*url("../images/backgroundslogo.jpg");*/
}
/* line 233, ../sass/_page.scss */
.castanho.completo {
  padding-top: 30px;
}
/* line 236, ../sass/_page.scss */
.castanho.ultimo {
  margin-bottom: 0;
}

/* line 243, ../sass/_page.scss */
.panel-display .left {
  /*  margin-right:2%;*/
}

/* line 250, ../sass/_page.scss */
.mapa {
  margin-left: 50px;
}

/* line 253, ../sass/_page.scss */
.contactar-caixa {
  background-color: rgba(40, 174, 140, 0.8);
  color: #fff;
  padding: 20px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  clear: both;
  margin-top: 20px;
}
/* line 260, ../sass/_page.scss */
.contactar-caixa p {
  margin: 0;
}

/* line 262, ../sass/_page.scss */
.cabazes {
  clear: both;
  overflow: hidden;
  margin-top: 33px;
}

/* line 267, ../sass/_page.scss */
.cabaz-1 {
  float: left;
  margin-left: 18%;
  width: 61%;
}

/* line 273, ../sass/_page.scss */
.cabaz-2 {
  float: left;
  margin-left: 17%;
  margin-top: 38px;
  width: 63%;
}

/* line 279, ../sass/_page.scss */
.sacos {
  margin-bottom: 20px;
  margin-top: 74px;
}

/* line 283, ../sass/_page.scss */
.gradient {
  /* position:fixed;
   top:30px;*/
  z-index: 9;
  width: 100%;
}
/* line 289, ../sass/_page.scss */
.gradient .gradient-line {
  height: 2px;
  background: url("../images/fundo.png") fixed repeat;
}
/* line 294, ../sass/_page.scss */
.gradient .gradient-line.o10 {
  height: 30px;
}
/* line 299, ../sass/_page.scss */
.gradient .gradient-line.o0 {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
/* line 300, ../sass/_page.scss */
.gradient .gradient-line.o0-2 {
  filter: alpha(opacity=5);
  -moz-opacity: 0.05;
  -khtml-opacity: 0.05;
  opacity: 0.05;
}
/* line 301, ../sass/_page.scss */
.gradient .gradient-line.o1 {
  filter: alpha(opacity=10);
  -moz-opacity: 0.1;
  -khtml-opacity: 0.1;
  opacity: 0.1;
}
/* line 302, ../sass/_page.scss */
.gradient .gradient-line.o1-2 {
  filter: alpha(opacity=15);
  -moz-opacity: 0.15;
  -khtml-opacity: 0.15;
  opacity: 0.15;
}
/* line 303, ../sass/_page.scss */
.gradient .gradient-line.o2 {
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}
/* line 304, ../sass/_page.scss */
.gradient .gradient-line.o2-2 {
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  opacity: 0.25;
}
/* line 305, ../sass/_page.scss */
.gradient .gradient-line.o3 {
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}
/* line 306, ../sass/_page.scss */
.gradient .gradient-line.o3-2 {
  filter: alpha(opacity=35);
  -moz-opacity: 0.35;
  -khtml-opacity: 0.35;
  opacity: 0.35;
}
/* line 307, ../sass/_page.scss */
.gradient .gradient-line.o4 {
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
/* line 308, ../sass/_page.scss */
.gradient .gradient-line.o4-2 {
  filter: alpha(opacity=45);
  -moz-opacity: 0.45;
  -khtml-opacity: 0.45;
  opacity: 0.45;
}
/* line 309, ../sass/_page.scss */
.gradient .gradient-line.o5 {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
/* line 310, ../sass/_page.scss */
.gradient .gradient-line.o5-2 {
  filter: alpha(opacity=55.0);
  -moz-opacity: 0.55;
  -khtml-opacity: 0.55;
  opacity: 0.55;
}
/* line 311, ../sass/_page.scss */
.gradient .gradient-line.o6 {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
/* line 312, ../sass/_page.scss */
.gradient .gradient-line.o6-2 {
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
}
/* line 313, ../sass/_page.scss */
.gradient .gradient-line.o7 {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
/* line 314, ../sass/_page.scss */
.gradient .gradient-line.o7-2 {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
}
/* line 315, ../sass/_page.scss */
.gradient .gradient-line.o8 {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
/* line 316, ../sass/_page.scss */
.gradient .gradient-line.o8-2 {
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
}
/* line 317, ../sass/_page.scss */
.gradient .gradient-line.o9 {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}
/* line 318, ../sass/_page.scss */
.gradient .gradient-line.o9-2 {
  filter: alpha(opacity=95);
  -moz-opacity: 0.95;
  -khtml-opacity: 0.95;
  opacity: 0.95;
}
/* line 319, ../sass/_page.scss */
.gradient .gradient-line.o10 {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* line 322, ../sass/_page.scss */
.a2a_menu {
  background: #1ab08d !important;
  border: none !important;
}
/* line 326, ../sass/_page.scss */
.a2a_menu a {
  color: #fff !important;
  border: none !important;
  font-family: "Lato", sans-serif !important;
  font-size: 14px !important;
}
/* line 332, ../sass/_page.scss */
.a2a_menu .a2a_svg {
  background: none !important;
}

/* line 341, ../sass/_page.scss */
.a2a_menu a.a2a_i:active,
.a2a_menu a.a2a_i:focus,
.a2a_menu a.a2a_i:hover,
.a2a_menu a.a2a_more:active,
.a2a_menu a.a2a_more:focus,
.a2a_menu a.a2a_more:hover {
  background: none !important;
}

/* line 344, ../sass/_page.scss */
.addtoany_list > a {
  padding: 0;
}

/* line 347, ../sass/_page.scss */
.addtoany_list {
  float: right;
}
/* line 349, ../sass/_page.scss */
.addtoany_list a > span {
  background-color: unset !important;
}

/* line 354, ../sass/_page.scss */
.topo .franja {
  overflow: hidden;
}
/* line 358, ../sass/_page.scss */
.topo .data-publi {
  margin-top: 3px;
  font-size: 12px;
  float: left;
}

/* line 367, ../sass/_page.scss */
.right-node, .left-node {
  float: left;
}

/* line 371, ../sass/_page.scss */
.right-node {
  width: 100%;
}

/* line 375, ../sass/_page.scss */
.left-node {
  width: 30%;
}

/* line 380, ../sass/_page.scss */
.node-type-destacado h1 {
  display: none;
}

/* line 384, ../sass/_page.scss */
#page .node.node-destacado {
  padding: 0;
}

/* line 389, ../sass/_page.scss */
.node-destacado {
  position: relative;
  background: none;
  padding: 0;
}
/* line 395, ../sass/_page.scss */
.node-destacado .header-destacado {
  position: relative;
  height: 250px;
  overflow: hidden;
  z-index: 0;
}
/* line 401, ../sass/_page.scss */
.node-destacado h2 {
  margin-top: 26px !important;
  margin-bottom: 0px !important;
  background: none !important;
  text-align: left;
  color: #f9f7f5;
  line-height: 26px;
}
/* line 408, ../sass/_page.scss */
.node-destacado h2 .h-inner {
  background: none;
  padding: 0;
}
/* line 413, ../sass/_page.scss */
.node-destacado h2 a {
  text-align: left;
}
/* line 418, ../sass/_page.scss */
.node-destacado .field-name-field-imagem-destacado {
  position: absolute;
  top: 0;
  z-index: 0;
}
/* line 423, ../sass/_page.scss */
.node-destacado .field-name-body {
  background-color: #f9f7f5;
  padding: 30px 60px;
}
/* line 429, ../sass/_page.scss */
.node-destacado .cinta {
  z-index: 1;
  position: absolute;
  top: 94px;
  width: 100%;
  text-align: left;
  background: rgba(72, 104, 94, 0.7);
  min-height: 110px;
  padding-bottom: 20px;
  color: #f9f7f5;
}
/* line 440, ../sass/_page.scss */
.node-destacado .cinta a {
  display: block;
  text-decoration: none;
  color: #FFF;
}

/* line 450, ../sass/_page.scss */
.inscrever_panel {
  color: #1ab08d;
}
/* line 452, ../sass/_page.scss */
.inscrever_panel .titulo_inscrever {
  margin-top: 26px;
  color: #1ab08d;
  background: none;
}
/* line 457, ../sass/_page.scss */
.inscrever_panel > div {
  width: 100%;
  text-align: center;
  margin: 20px 0 30px;
}
/* line 462, ../sass/_page.scss */
.inscrever_panel .inscrever {
  text-decoration: none;
  font-size: 14px;
  color: #c72254;
  font-family: "planetaplakat";
  text-transform: uppercase;
  background: #f9f7f5;
  box-shadow: 1px 1px 1px #c0c0c0;
  text-align: center;
  padding: 10px 15px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}

/* line 477, ../sass/_page.scss */
a.addthis_button_google_follow {
    /* 
margin-top: 3px;
    margin-left: 3px;
padding-left: 10px;
*/
}

/* line 484, ../sass/_page.scss */
a.addthis_button_instagram_follow {
  /*   
margin-top: 3px;
    margin-right: 4px;
*/
}

/* line 490, ../sass/_page.scss */
#block-block-2 {
  width: 120px;
  font-size: 10px;
  font-family: "Lato", sans-serif;
  margin-left: 18px;
  margin-top: 20px;
}
/* line 496, ../sass/_page.scss */
#block-block-2 p {
  margin: 0;
}

/* line 500, ../sass/_page.scss */
#frutas-soltas-3 {
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}

/* line 503, ../sass/_page.scss */
#frutas-soltas-2 {
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}

/* line 506, ../sass/_page.scss */
#frutas-soltas {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

/* line 509, ../sass/_page.scss */
.field-name-field-pregunta-resposta > .field-items > .field-item.odd {
  background: #f3efec;
}

/* line 514, ../sass/_page.scss */
.field-collection-item-field-pregunta-resposta .content {
  position: relative;
}

/* line 520, ../sass/_page.scss */
.field-name-field-pergunta:before {
  content: '';
  background-image: url(../images/arrow_r_3.svg);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  position: absolute;
  left: 10px;
  top: 16px;
  height: 30px;
  width: 30px;
}

/* line 531, ../sass/_page.scss */
.field-name-field-pergunta {
  cursor: pointer;
  font-size: 14px;
  padding: 20px 20px 20px 50px;
}

/* line 540, ../sass/_page.scss */
.field-name-field-resposta {
  display: none;
  overflow: hidden;
  padding: 0 50px;
  border-bottom: 1px solid #dadada;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
/* line 547, ../sass/_page.scss */
.field-name-field-resposta p:first-child {
  padding-top: 10px;
}
/* line 550, ../sass/_page.scss */
.field-name-field-resposta p:last-child {
  padding-bottom: 15px;
}

/* line 557, ../sass/_page.scss */
.maintenance-page {
  min-height: 20000px;
}
/* line 560, ../sass/_page.scss */
.maintenance-page .wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -225px;
  margin-top: -300px;
}
/* line 567, ../sass/_page.scss */
.maintenance-page .texto {
  font-family: 'planetaplakat';
  font-size: 38px;
  color: #1ab08d;
  text-align: center;
  margin-top: 40px;
  margin-left: 25px;
}

/* line 579, ../sass/_page.scss */
#page .node.node-apoio-agradecimento {
  background: none;
  padding: 0;
  box-shadow: none;
}
/* line 583, ../sass/_page.scss */
#page .node.node-apoio-agradecimento .field-collection-container {
  border: none;
}
/* line 586, ../sass/_page.scss */
#page .node.node-apoio-agradecimento .field-collection-view {
  padding: 20px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  background: #f9f7f5;
  -moz-box-shadow: 1px 1px 1px #c0c0c0;
  -webkit-box-shadow: 1px 1px 1px #c0c0c0;
  box-shadow: 1px 1px 1px #c0c0c0;
  border: none;
  margin-bottom: 20px;
}
/* line 595, ../sass/_page.scss */
#page .node.node-apoio-agradecimento .field-collection-view .content {
  width: 100%;
}
/* line 597, ../sass/_page.scss */
#page .node.node-apoio-agradecimento .field-collection-view .content img {
  width: 100%;
  mix-blend-mode: multiply;
}
/* line 601, ../sass/_page.scss */
#page .node.node-apoio-agradecimento .field-collection-view .content .field-name-field-descri-o {
  margin-top: 5px;
}
/* line 605, ../sass/_page.scss */
#page .node.node-apoio-agradecimento .field.field-name-field-nome-da-entidade, #page .node.node-apoio-agradecimento .field.field-name-field-nome-da-entidade a {
  text-transform: uppercase;
  font-family: 'planetaplakat';
  text-decoration: none;
}

/* line 643, ../sass/_page.scss */
.node-102, .node-148 {
  background: none;
  padding: 20px 30px;
}
/* line 646, ../sass/_page.scss */
.node-102 .list .field-item, .node-148 .list .field-item {
  float: left;
  margin: 0;
  padding: 7px !important;
  margin: 3px !important;
  background: #f9f7f5;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  font-size: 18px;
  line-height: 12px;
}

/* line 660, ../sass/_page.scss */
.node-perguntas-frequentes .field-collection-container {
  border: none;
}
/* line 664, ../sass/_page.scss */
.node-perguntas-frequentes .field-type-field-collection .field-item {
  margin-bottom: 0;
}
/* line 666, ../sass/_page.scss */
.node-perguntas-frequentes .field-type-field-collection .field-item .field-collection-view {
  border: none;
  margin: 0px 0;
  padding: 0;
}

/* line 676, ../sass/_page.scss */
.logos-wrapper {
  position: relative;
}

/* line 679, ../sass/_page.scss */
#logo {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

/* line 684, ../sass/_page.scss */
#block-block-3 {
  margin: 0;
}

/* line 687, ../sass/_page.scss */
.desperdicio {
  z-index: 1;
  left: 32px;
  position: absolute;
  top: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
/* line 693, ../sass/_page.scss */
.desperdicio .folhas {
  position: absolute;
  top: 0;
  width: 128px;
  height: 128px;
}
/* line 699, ../sass/_page.scss */
.desperdicio .limao {
  position: absolute;
  top: 0;
}
/* line 703, ../sass/_page.scss */
.desperdicio .inside-info {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  top: 40px;
  left: 66px;
  width: 250px;
}
/* line 709, ../sass/_page.scss */
.desperdicio .inside-info p {
  margin: 0;
}
/* line 715, ../sass/_page.scss */
.desperdicio .valor-desperdicio p {
  float: left;
  font-weight: bold;
  font-size: 26px;
  font-family: "Lato", sans-serif;
  color: #1ab08d;
  width: 94px;
  text-align: center;
}
/* line 725, ../sass/_page.scss */
.desperdicio .texto-desperdicio {
  float: left;
  font-family: 'planetaplakat';
  color: #1ab08d;
  width: 100px;
  margin-left: 10px;
  font-size: 19px;
  line-height: 19px;
}

/* line 738, ../sass/_page.scss */
.legenda-mapa {
  padding: 10px;
  background: #f9f7f5;
  overflow: hidden;
}
/* line 742, ../sass/_page.scss */
.legenda-mapa .legenda-wrapper {
  float: right;
}
/* line 745, ../sass/_page.scss */
.legenda-mapa img {
  float: left;
  width: 27px;
  height: 45px;
}
/* line 750, ../sass/_page.scss */
.legenda-mapa .texto {
  float: left;
  margin: 10px 30px 10px 10px;
}

/* line 756, ../sass/_page.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  position: relative;
}

/* line 759, ../sass/_page.scss */
.close-msg-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 0;
  width: 10px;
  height: 10px;
  background: url("../images/x.svg") no-repeat;
  background-size: 10px;
}

/* line 771, ../sass/_page.scss */
.page-consumidor-register .tabs-primary {
  display: none;
}

/* line 775, ../sass/_page.scss */
.field .field-label {
  text-transform: uppercase;
  margin-bottom: 15px;
}

/*    Views mensagens */
/* line 783, ../sass/_page.scss */
.panel-pane .view-mensagens {
  background: none;
}

/* line 787, ../sass/_page.scss */
.view-mensagens {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  background: #f9f7f5;
}
/* line 791, ../sass/_page.scss */
.view-mensagens .views-row {
  border-bottom: 1px solid #dadada;
  padding: 15px 30px 15px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  overflow: hidden;
  margin-bottom: 0;
}
/* line 797, ../sass/_page.scss */
.view-mensagens .views-row .views-field-type-1 {
  font-size: 14px;
  color: #1ab08d;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'planetaplakat';
  float: left;
}
/* line 806, ../sass/_page.scss */
.view-mensagens .views-row .views-field-message-render {
  clear: both;
  float: left;
  margin-top: 6px;
}
/* line 810, ../sass/_page.scss */
.view-mensagens .views-row .views-field-message-render p {
  margin: 0;
}
/* line 814, ../sass/_page.scss */
.view-mensagens .views-row .views-field-timestamp {
  font-size: 10px;
  font-style: italic;
  float: left;
  margin-left: 10px;
  margin-top: 4px;
}

/* line 826, ../sass/_page.scss */
.workflow-current-state {
  width: 100%;
  display: inline;
  background: #1ab08d;
  font-family: "Lato", sans-serif;
  -moz-border-radius: 3px 3px 0px 0px;
  -webkit-border-radius: 3px 3px 0px 0px;
  -khtml-border-radius: 3px 3px 0px 0px;
  border-radius: 3px 3px 0px 0px;
  behavior: url(css/border-radius.htc);
  color: #f9f7f5 !important;
  font-size: 12px;
  padding: 5px 10px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

/* line 849, ../sass/_page.scss */
.views-row.notifica-o {
  background-color: #f9f7f5;
}

/* line 852, ../sass/_page.scss */
.node-cesta, .node-notifica-o {
  position: relative;
}

/* line 857, ../sass/_page.scss */
.Dinamizador .node-entrega > .field {
  margin-bottom: 30px;
  margin-top: 20px;
}
/* line 864, ../sass/_page.scss */
.Dinamizador .node-entrega.workflow-9 .node-cesta, .Dinamizador .node-entrega.workflow-8 .node-cesta {
  height: 30px;
  overflow: hidden;
}
/* line 868, ../sass/_page.scss */
.Dinamizador .node-entrega.workflow-9 .node-cesta .state-wrapper, .Dinamizador .node-entrega.workflow-8 .node-cesta .state-wrapper {
  margin-bottom: 0px;
}

/*entrega*/
/* line 877, ../sass/_page.scss */
.node-notifica-o {
  min-height: 160px;
}
/* line 880, ../sass/_page.scss */
.node-notifica-o.view-mode-full > form, .node-notifica-o.node-teaser > form {
  border: dashed #28ae8c;
  max-width: 232px;
  padding: 15px !important;
  /*position: absolute;
  right: 30px;
  top: 40px;*/
  float: left;
  z-index: 1000;
  box-sizing: border-box;
}
/* line 891, ../sass/_page.scss */
.node-notifica-o.view-mode-full > form .form-item, .node-notifica-o.node-teaser > form .form-item {
  margin-top: 0;
}
/* line 896, ../sass/_page.scss */
.node-notifica-o .content {
  float: left;
  box-sizing: border-box;
  padding-right: 10px;
}
/* line 901, ../sass/_page.scss */
.node-notifica-o .field-label {
  width: 160px;
  margin-right: 10px;
}

/* line 906, ../sass/_page.scss */
.state-wrapper {
  margin-bottom: 20px;
}

/* line 909, ../sass/_page.scss */
.workflow-wrapper {
  position: relative;
  overflow: hidden;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  behavior: url(css/border-radius.htc);
}
/* line 914, ../sass/_page.scss */
.workflow-wrapper .workflow-current-state {
  position: relative;
  float: left;
}
/* line 918, ../sass/_page.scss */
.workflow-wrapper > form {
  float: right;
  background: #f9f7f5;
  width: 100%;
  z-index: 1000;
  margin-bottom: 0px;
  padding: 0;
}
/* line 926, ../sass/_page.scss */
.workflow-wrapper > form > div {
  float: right;
}
/* line 929, ../sass/_page.scss */
.workflow-wrapper > form .workflow-form-container {
  float: left;
}
/* line 933, ../sass/_page.scss */
.workflow-wrapper > form .form-submit {
  margin: 0;
  padding: 5px 10px;
  -moz-border-radius: 0 0px 0px 3px;
  -webkit-border-radius: 0 0px 0px 3px;
  -khtml-border-radius: 0 0px 0px 3px;
  border-radius: 0 0px 0px 3px;
  behavior: url(css/border-radius.htc);
  display: inline;
}
/* line 940, ../sass/_page.scss */
.workflow-wrapper > form .form-item-workflow-scheduled {
  display: none;
}
/* line 944, ../sass/_page.scss */
.workflow-wrapper > form .form-radios {
  height: 25px;
}
/* line 947, ../sass/_page.scss */
.workflow-wrapper > form .form-radio {
  margin-right: 5px;
  vertical-align: middle;
}
/* line 951, ../sass/_page.scss */
.workflow-wrapper > form .form-item {
  margin: 0px;
  background: #f9f7f5 none repeat scroll 0 0;
  padding: 3px 5px 0;
}
/* line 955, ../sass/_page.scss */
.workflow-wrapper > form .form-item .form-item {
  display: inline;
}
/* line 960, ../sass/_page.scss */
.workflow-wrapper > form .form-item .form-item::after {
  content: " ";
  clear: both;
}

/* line 967, ../sass/_page.scss */
.node-entrega {
  position: relative;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -khtml-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  behavior: url(css/border-radius.htc);
}
/* line 976, ../sass/_page.scss */
.node-entrega > .field {
  margin-bottom: 20px;
}
/* line 982, ../sass/_page.scss */
.node-entrega .field-name-field-cabazes-dispon-veis {
  clear: both;
}
/* line 988, ../sass/_page.scss */
.node-entrega .field-name-field-relatorio {
  border: 1px solid #1ab08d;
  padding: 20px;
}
/* line 994, ../sass/_page.scss */
.node-entrega .field-name-field-cabazes-dispon-veis, .node-entrega .field-name-field-cesta-pequena {
  margin-bottom: 30px;
  margin-top: 20px;
}
/* line 997, ../sass/_page.scss */
.node-entrega .field-name-field-cabazes-dispon-veis .node-cesta.tipo-160, .node-entrega .field-name-field-cabazes-dispon-veis .node-cesta.tipo-161, .node-entrega .field-name-field-cesta-pequena .node-cesta.tipo-160, .node-entrega .field-name-field-cesta-pequena .node-cesta.tipo-161 {
  padding-bottom: 20px !important;
  padding-top: 20px;
}
/* line 1001, ../sass/_page.scss */
.node-entrega .field-name-field-cabazes-dispon-veis .node-cesta.cesta-def-160.tipo-160, .node-entrega .field-name-field-cabazes-dispon-veis .node-cesta.cesta-def-161.tipo-161, .node-entrega .field-name-field-cesta-pequena .node-cesta.cesta-def-160.tipo-160, .node-entrega .field-name-field-cesta-pequena .node-cesta.cesta-def-161.tipo-161 {
  border: 2px solid #1ab08d !important;
  display: block;
}
/* line 1006, ../sass/_page.scss */
.node-entrega .field-name-field-cabazes-dispon-veis .node-cesta.tipo-160.cesta-escolhida, .node-entrega .field-name-field-cabazes-dispon-veis .node-cesta.tipo-161.cesta-escolhida, .node-entrega .field-name-field-cesta-pequena .node-cesta.tipo-160.cesta-escolhida, .node-entrega .field-name-field-cesta-pequena .node-cesta.tipo-161.cesta-escolhida {
  border: 2px solid #1ab08d !important;
  display: block;
}

/* line 1016, ../sass/_page.scss */
.node-entrega-form .form-item {
  clear: none;
}

/* line 1023, ../sass/_page.scss */
.panel-pane .node-entrega h2.node-title {
  display: none;
}
/* line 1026, ../sass/_page.scss */
.panel-pane .node-entrega .profile2-productor {
  background: #fff;
}
/* line 1029, ../sass/_page.scss */
.panel-pane .node-entrega .field-name-field-tipo-de-cabaz {
  font-family: 'planetaplakat';
  font-size: 20px;
  text-align: center;
  color: #1ab08d;
  background: url("../images/line.png") repeat-x scroll 0 18px rgba(0, 0, 0, 0);
}
/* line 1035, ../sass/_page.scss */
.panel-pane .node-entrega .field-name-field-tipo-de-cabaz .field-item {
  background: #fff;
  display: inline;
  padding: 15px;
}
/* line 1041, ../sass/_page.scss */
.panel-pane .node-entrega .field .field-label {
  /*  clear:both;
    width:50%;
    float:left;*/
}
/* line 1046, ../sass/_page.scss */
.panel-pane .node-entrega .field-name-field-data-de-entrega, .panel-pane .node-entrega .field-name-field-data-limite-de-cancelament {
  padding-bottom: 25px;
  border-bottom: 1px solid #dadada;
}

/* line 1053, ../sass/_page.scss */
.panel-pane .node-entrega .field-name-field-delega-o-da-entrega {
  display: none;
}

/* line 1061, ../sass/_page.scss */
.node-entrega.workflow-9 .field-name-field-cabazes-dispon-veis .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-9 .field-name-field-cabazes-dispon-veis .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-9 .field-name-field-cesta-pequena .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-9 .field-name-field-cesta-pequena .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-13 .field-name-field-cabazes-dispon-veis .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-13 .field-name-field-cabazes-dispon-veis .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-13 .field-name-field-cesta-pequena .node-cesta.tipo-160.nao-recolhida, .node-entrega.workflow-13 .field-name-field-cesta-pequena .node-cesta.tipo-160.nao-recolhida {
  border: 1px solid #c72254 !important;
}

/*CESTA*/
/* line 1070, ../sass/_page.scss */
#page .node .node {
  border: 1px solid #dadada;
  background: #fff;
}
/* line 1073, ../sass/_page.scss */
#page .node .node td, #page .node .node tr {
  background: #fff;
}

/* line 1079, ../sass/_page.scss */
.field-collection-item-field-produtos-cesta .field {
  float: left;
  margin-right: 10px;
}
/* line 1085, ../sass/_page.scss */
.field-collection-item-field-produtos-cesta .field-name-field-nome-produto {
  font-weight: bold;
}
/* line 1089, ../sass/_page.scss */
.field-collection-item-field-produtos-cesta .field-name-field-produtor {
  clear: both;
}
/* line 1093, ../sass/_page.scss */
.field-collection-item-field-produtos-cesta .field-collection-view {
  margin: 0;
  padding: 0;
}

/* line 1100, ../sass/_page.scss */
form.fivestar-widget {
  padding: 0;
  margin: 0;
}

/* line 1106, ../sass/_page.scss */
.flag-outer-flag-entrega {
  margin-top: 20px;
}

/* line 1109, ../sass/_page.scss */
.mudar-cesta {
  margin-top: -5px;
  background-color: #fff;
  color: #1ab08d;
  text-decoration: none;
  padding: 10px 10px;
  font-family: "Lato", sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  box-shadow: 1px 1px 1px #c0c0c0;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

/* line 1122, ../sass/_page.scss */
.flag-outer-flag-entrega, .mudar-cesta, .venda_btn {
  text-align: center;
}
/* line 1125, ../sass/_page.scss */
.flag-outer-flag-entrega a, .mudar-cesta a, .venda_btn a {
  background-color: #fff;
  color: #1ab08d;
  box-shadow: 1px 1px 1px #c0c0c0;
  text-decoration: none;
  padding: 10px 10px;
  font-family: "Lato", sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1138, ../sass/_page.scss */
.flag-outer-flag-entrega a.unflag-action, .mudar-cesta a.unflag-action, .venda_btn a.unflag-action {
  background-color: #fff;
  color: #c72254;
}

/* line 1145, ../sass/_page.scss */
.venda_btn.nao_posso a {
  color: #c72254;
}

/* line 1153, ../sass/_page.scss */
.node.votar h2 {
  font-size: 20px;
  text-transform: none;
  font-weight: 100;
}

/* line 1159, ../sass/_page.scss */
.node-cesta.view-mode-revision .views-field-field-produtor {
  margin-bottom: 10px;
}

/* line 1162, ../sass/_page.scss */
.node .node-cesta .h-inner {
  background: #fff;
}

/* line 1167, ../sass/_page.scss */
.node-cesta .field-name-field-descri-o {
  padding: 30px 0 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
}
/* line 1172, ../sass/_page.scss */
.node-cesta .profile2-productor {
  background: none;
}
/* line 1176, ../sass/_page.scss */
.node-cesta .views-field-field-produtor a {
  text-decoration: none;
}
/* line 1182, ../sass/_page.scss */
.node-cesta .views-field-field-ref-producto {
  font-size: 16px;
  font-family: 'planetaplakat';
  color: #1ab08d;
  vertical-align: initial;
}
/* line 1188, ../sass/_page.scss */
.node-cesta table td, .node-cesta table th, .node-cesta .views-row {
  padding: 10px 5px !important;
  margin: 0px;
}
/* line 1192, ../sass/_page.scss */
.node-cesta table td .profile2-productor, .node-cesta table th .profile2-productor, .node-cesta .views-row .profile2-productor {
  padding: 0;
}
/* line 1195, ../sass/_page.scss */
.node-cesta table td .profile2-productor .field-name-field-empresa-ou-explora-o, .node-cesta table th .profile2-productor .field-name-field-empresa-ou-explora-o, .node-cesta .views-row .profile2-productor .field-name-field-empresa-ou-explora-o {
  font-size: 16px;
  margin: 0;
  color: #11735c;
}

/* line 1205, ../sass/_page.scss */
.Consumidor .panel-pane .node-cesta thead {
  display: none;
}
/* line 1208, ../sass/_page.scss */
.Consumidor .panel-pane .node-cesta td {
  width: 50%;
}

/* line 1212, ../sass/_page.scss */
.votar {
  background: #f9f7f5;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
/* line 1216, ../sass/_page.scss */
.votar .node-cesta.view-mode-revision {
  margin-bottom: 50px;
  margin-top: 30px;
  padding: 10px 30px 40px;
  background: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  box-shadow: 1px 1px 1px #c0c0c0;
}
/* line 1224, ../sass/_page.scss */
.votar .node-cesta.view-mode-revision .h-inner, .votar .node-cesta.view-mode-revision form {
  background: #fff;
}
/* line 1227, ../sass/_page.scss */
.votar .node-cesta.view-mode-revision .field-name-field-tipo-de-cabaz {
  display: none;
}
/* line 1232, ../sass/_page.scss */
.votar .charts-highchart {
  margin-bottom: 30px;
}

/* line 1236, ../sass/_page.scss */
.highcharts-title {
  color: #11735c !important;
  font-family: "Lato", sans-serif !important;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 1243, ../sass/_page.scss */
.voto_consumidor, .node-cesta.view-mode-revision {
  font-size: 16px;
  font-family: 'planetaplakat';
  border-bottom: 1px solid #dadada;
  overflow: hidden;
  padding-top: 20px !important;
  padding-bottom: 20px;
}
/* line 1252, ../sass/_page.scss */
.voto_consumidor .views-row, .node-cesta.view-mode-revision .views-row {
  overflow: hidden;
  border-bottom: 1px solid #dadada;
  padding: 10px 5px 5px !important;
}
/* line 1257, ../sass/_page.scss */
.voto_consumidor .profile2-productor, .node-cesta.view-mode-revision .profile2-productor {
  background: #fff;
}
/* line 1262, ../sass/_page.scss */
.voto_consumidor form.fivestar-widget, .node-cesta.view-mode-revision form.fivestar-widget {
  padding: 0 0 10px !important;
  margin: 0 !important;
  background: #fff;
}
/* line 1267, ../sass/_page.scss */
.voto_consumidor .views-field-field-ref-producto, .voto_consumidor .field-name-field-mais-disto, .voto_consumidor .views-field-field-mais-disto, .node-cesta.view-mode-revision .views-field-field-ref-producto, .node-cesta.view-mode-revision .field-name-field-mais-disto, .node-cesta.view-mode-revision .views-field-field-mais-disto {
  float: left;
  width: 50%;
  clear: left;
}
/* line 1272, ../sass/_page.scss */
.voto_consumidor .produtor, .voto_consumidor .views-field-field-produtor, .voto_consumidor .field-name-field-qualidade, .voto_consumidor .views-field-field-qualidade, .node-cesta.view-mode-revision .produtor, .node-cesta.view-mode-revision .views-field-field-produtor, .node-cesta.view-mode-revision .field-name-field-qualidade, .node-cesta.view-mode-revision .views-field-field-qualidade {
  float: left;
  width: 50%;
}
/* line 1276, ../sass/_page.scss */
.voto_consumidor .produtor, .node-cesta.view-mode-revision .produtor {
  color: #11735c;
}
/* line 1279, ../sass/_page.scss */
.voto_consumidor .produto, .node-cesta.view-mode-revision .produto {
  color: #1ab08d;
}
/* line 1282, ../sass/_page.scss */
.voto_consumidor .produto, .voto_consumidor .produtor, .node-cesta.view-mode-revision .produto, .node-cesta.view-mode-revision .produtor {
  margin-bottom: 10px;
}
/* line 1285, ../sass/_page.scss */
.voto_consumidor .view-field-collection-productos-cesta.view-display-id-page_3, .node-cesta.view-mode-revision .view-field-collection-productos-cesta.view-display-id-page_3 {
  margin-top: 20px;
}

/* line 1291, ../sass/_page.scss */
.section-comunidade thead {
  border-bottom: 1px solid #1ab08d;
}
/* line 1293, ../sass/_page.scss */
.section-comunidade thead th {
  padding-bottom: 12px !important;
}
/* line 1297, ../sass/_page.scss */
.section-comunidade table td, .section-comunidade table th {
  padding: 10px 5px;
  margin: 0px;
}
/* line 1301, ../sass/_page.scss */
.section-comunidade table td .profile2-productor, .section-comunidade table th .profile2-productor {
  padding: 0;
}
/* line 1304, ../sass/_page.scss */
.section-comunidade table td .profile2-productor .field-name-field-empresa-ou-explora-o, .section-comunidade table th .profile2-productor .field-name-field-empresa-ou-explora-o {
  margin: 0;
}
/* line 1311, ../sass/_page.scss */
.section-comunidade td .form-checkbox {
  margin: 5px;
}

/* line 1319, ../sass/_page.scss */
.view-dados-usuario, .view-perfil-consumidor {
  background: #f9f7f5;
  padding: 30px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 1324, ../sass/_page.scss */
.view-dados-usuario .views-field, .view-dados-usuario .field, .view-perfil-consumidor .views-field, .view-perfil-consumidor .field {
  padding: 15px 10px;
  border-bottom: 1px solid #dadada;
  overflow: hidden;
}
/* line 1328, ../sass/_page.scss */
.view-dados-usuario .views-field .field-content, .view-dados-usuario .field .field-content, .view-perfil-consumidor .views-field .field-content, .view-perfil-consumidor .field .field-content {
  width: 50%;
}
/* line 1331, ../sass/_page.scss */
.view-dados-usuario .views-field .views-label, .view-dados-usuario .field .views-label, .view-perfil-consumidor .views-field .views-label, .view-perfil-consumidor .field .views-label {
  font-weight: bold;
  color: #1ab08d;
  text-transform: uppercase;
  width: 50%;
  float: left;
}
/* line 1338, ../sass/_page.scss */
.view-dados-usuario .views-field .field-label, .view-dados-usuario .field .field-label, .view-perfil-consumidor .views-field .field-label, .view-perfil-consumidor .field .field-label {
  margin: 0;
}
/* line 1342, ../sass/_page.scss */
.view-dados-usuario .views-field-rendered-entity, .view-perfil-consumidor .views-field-rendered-entity {
  padding: 0;
  border: none;
}
/* line 1346, ../sass/_page.scss */
.view-dados-usuario .views-field.views-field-user, .view-perfil-consumidor .views-field.views-field-user {
  position: absolute;
  overflow: visible;
  top: 68px;
  padding: 0;
  border: 0;
  z-index: 0;
  margin-left: -15px;
}
/* line 1355, ../sass/_page.scss */
.view-dados-usuario .views-field.views-field-user a, .view-perfil-consumidor .views-field.views-field-user a {
  background-color: #f9f7f5;
  border-radius: 3px;
  color: #1ab08d;
  font-family: "Lato",sans-serif;
  padding: 6px 10px;
  text-decoration: none;
  text-transform: uppercase;
}
/* line 1366, ../sass/_page.scss */
.view-dados-usuario .field .field-label, .view-dados-usuario .field .field-items, .view-perfil-consumidor .field .field-label, .view-perfil-consumidor .field .field-items {
  float: left;
  width: 50%;
}
/* line 1371, ../sass/_page.scss */
.view-dados-usuario .field .field-label, .view-perfil-consumidor .field .field-label {
  clear: left;
  box-sizing: border-box;
  padding-right: 10px;
}

/* line 1378, ../sass/_page.scss */
.view-dados-usuario .views-field .field-content {
  display: block;
  float: left;
}

/* line 1382, ../sass/_page.scss */
.pane-user-privatemsg-send-new-message {
  padding: 20px 0;
}

/* line 1385, ../sass/_page.scss */
.privatemsg-send-link {
  background: #fff;
  font-family: "Lato", sans-serif;
  padding: 10px 10px;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  box-shadow: 1px 1px 1px #c0c0c0;
  font-size: 12px;
  text-transform: uppercase;
}

/* line 1391, ../sass/_page.scss */
.Dinamizador.page-user .views-field.views-field-user {
  top: 48px;
}
/* line 1395, ../sass/_page.scss */
.Dinamizador.page-user h1 {
  margin-bottom: 32px !important;
}

/* line 1400, ../sass/_page.scss */
.page-user .view {
  background: #f9f7f5;
  padding: 20px;
}

/*Private Messages*/
/* line 1408, ../sass/_page.scss */
.page-messages .action-links {
  background: #f9f7f5;
  margin: 0;
  padding: 30px 30px 0;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -khtml-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  behavior: url(css/border-radius.htc);
}
/* line 1413, ../sass/_page.scss */
.page-messages .action-links li {
  list-style: none;
}
/* line 1416, ../sass/_page.scss */
.page-messages .action-links a {
  text-decoration: none;
  background-color: #fff;
  color: #1ab08d;
  box-shadow: 1px 1px 1px #c0c0c0;
  text-decoration: none;
  padding: 10px 10px;
  font-family: "Lato", sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}

/* line 1436, ../sass/_page.scss */
#privatemsg-list-form .container-inline {
  margin-top: 10px;
}
/* line 1439, ../sass/_page.scss */
#privatemsg-list-form option[value="archive"] {
  display: none;
}

/* line 1443, ../sass/_page.scss */
.privatemsg-message {
  background: #f9f7f5;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  margin-bottom: 20px;
}
/* line 1448, ../sass/_page.scss */
.privatemsg-message .privatemsg-author-avatar {
  display: none;
}
/* line 1452, ../sass/_page.scss */
.privatemsg-message .privatemsg-message-column {
  float: none;
  width: auto;
  padding: 10px 60px;
  margin-bottom: 0px;
}
/* line 1458, ../sass/_page.scss */
.privatemsg-message .privatemsg-message-information {
  padding: 5px 0;
  overflow: hidden;
}
/* line 1463, ../sass/_page.scss */
.privatemsg-message .privatemsg-message-date {
  max-width: 49%;
  float: right;
}
/* line 1467, ../sass/_page.scss */
.privatemsg-message .privatemsg-author-name {
  float: left;
  max-width: 49%;
  font-size: 100%;
}
/* line 1472, ../sass/_page.scss */
.privatemsg-message p {
  max-width: 640px;
}

/* line 1476, ../sass/_page.scss */
.pm-contactar {
  margin: 10px 0;
  background: #fff;
  font-family: "Lato", sans-serif;
  padding: 10px 10px;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  box-shadow: 1px 1px 1px #c0c0c0;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
}
/* line 1480, ../sass/_page.scss */
.pm-contactar a {
  color: #1ab08d;
  text-decoration: none;
}

/* line 1488, ../sass/_page.scss */
#receita-node-form .filter-wrapper {
  display: none;
}

/* line 1496, ../sass/_page.scss */
.node-receita-form input[type="text"], .node-receita-form input[type="file"], .node-receita-form textarea,
.node-receita-form select#edit-field-tipo-de-receita-und,
.node-receita-form select#edit-field-tipo-de-alimenta-o-und,
.node-receita-form .description {
  width: 100%;
  max-width: 460px;
}
/* line 1501, ../sass/_page.scss */
.node-receita-form .form-field-type-text-long,
.node-receita-form .field-type-text-with-summary {
  width: 100%;
  max-width: 640px;
}
/* line 1505, ../sass/_page.scss */
.node-receita-form .image-widget-data {
  float: none;
}
/* line 1509, ../sass/_page.scss */
.node-receita-form .form-item-field-fotos-und-0 input[type="submit"] {
  display: block;
  margin-top: 10px;
}
/* line 1513, ../sass/_page.scss */
.node-receita-form .form-radios {
  overflow: hidden;
}
/* line 1516, ../sass/_page.scss */
.node-receita-form .form-type-radio {
  float: left;
}
/* line 1518, ../sass/_page.scss */
.node-receita-form .form-type-radio label {
  margin: 0 5px;
}
/* line 1522, ../sass/_page.scss */
.node-receita-form .form-field-name-field-ingredientes {
  clear: both;
}
/* line 1525, ../sass/_page.scss */
.node-receita-form .field-widget-multiselect .form-item {
  overflow: visible;
  clear: none;
}

/* line 1531, ../sass/_page.scss */
#page .node-receita {
  clear: both;
  margin-bottom: 60px !important;
  padding-bottom: 60px !important;
  padding-left: 30px;
  padding-right: 30px;
}
/* line 1538, ../sass/_page.scss */
#page .node-receita .field-name-field-fotos {
  margin-bottom: 20px;
}
/* line 1542, ../sass/_page.scss */
#page .node-receita li {
  padding-bottom: 15px;
}
/* line 1545, ../sass/_page.scss */
#page .node-receita ol, #page .node-receita ul {
  padding: 0 0 0 15px;
}
/* line 1548, ../sass/_page.scss */
#page .node-receita .field-name-field-ingredientes {
  border: 1px solid #dedede;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  padding: 20px 25px;
  background: #f3efec;
}
/* line 1554, ../sass/_page.scss */
#page .node-receita .field-name-body {
  padding-top: 20px;
}
/* line 1557, ../sass/_page.scss */
#page .node-receita .field-name-field-produtos {
  margin-top: 20px;
  clear: both;
}
/* line 1560, ../sass/_page.scss */
#page .node-receita .field-name-field-produtos .field-item {
  float: left;
  margin-right: 10px;
}

/* line 1567, ../sass/_page.scss */
.flag-link-toggle {
  text-decoration: none;
}

/* line 1570, ../sass/_page.scss */
.receita {
  position: relative;
}
/* line 1573, ../sass/_page.scss */
.receita img {
  width: 100%;
}
/* line 1576, ../sass/_page.scss */
.receita .tipo {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* line 1580, ../sass/_page.scss */
.receita .tipo .field, .receita .tipo .form-item {
  float: right;
  margin-right: 0px;
}
/* line 1583, ../sass/_page.scss */
.receita .tipo .field .field-item, .receita .tipo .form-item .field-item {
  text-transform: uppercase;
  padding: 6px 10px;
  color: #FFF;
}
/* line 1592, ../sass/_page.scss */
.receita .field-name-field-tipo-de-receita {
  background-color: #c72254 !important;
}
/* line 1595, ../sass/_page.scss */
.receita .field-name-field-tipo-de-alimenta-o {
  background-color: #f05a3b !important;
}
/* line 1598, ../sass/_page.scss */
.receita .field-name-field-dificuldade {
  background-color: #1ab08d;
}

/* line 1604, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper {
  width: 100%;
  background: #f9f7f5;
}
/* line 1609, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .franja {
  background: #1ab08d;
  color: #fff;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 5px 15px;
}
/* line 1615, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .franja a {
  color: #fff;
}
/* line 1620, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .inner-left {
  padding: 0 5px 0 10px;
}
/* line 1627, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .flag-outer-favoritas {
  float: right;
  padding: 7px;
  background: #fff;
  font-family: "Lato", sans-serif;
  padding: 10px 10px;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  box-shadow: 1px 1px 1px #c0c0c0;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 30px;
}
/* line 1632, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .flag-outer-favoritas a {
  text-decoration: none;
}
/* line 1636, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .mais-deste, .node-type-receita
.workflow-wrapper .inner-wrapper .enviadopor {
  float: left;
  padding: 7px;
}
/* line 1640, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .addtoany_list {
  float: right;
  clear: right;
  margin-top: 6px;
}
/* line 1647, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .form-item {
  clear: left;
  float: left;
  margin: 0;
  padding: 0 0 0 30px;
}
/* line 1652, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .form-item ul {
  margin: 0;
}
/* line 1655, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .form-item .rate-widget {
  float: left;
}
/* line 1657, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .form-item .rate-widget .item-list {
  float: left;
}
/* line 1661, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .form-item .rate-info {
  float: left;
  clear: none;
  margin-top: 6px;
  margin-left: 10px;
  color: #1ab08d;
}
/* line 1668, ../sass/_page.scss */
.node-type-receita
.workflow-wrapper .inner-wrapper .form-item label {
  float: left;
  margin-right: 15px;
  margin-top: 3px;
}

/* line 1677, ../sass/_page.scss */
.node-type-receita .filter-wrapper {
  display: none;
}
/* line 1680, ../sass/_page.scss */
.node-type-receita .node-receita > div {
  max-width: 680px;
}

/* line 1686, ../sass/_page.scss */
.ascii_art_captcha {
  color: #c72254;
  font-weight: bold;
  margin-top: 20px;
}

/* line 1691, ../sass/_page.scss */
.wrap-estado {
  margin: 0 0 6px 12px;
}
/* line 1693, ../sass/_page.scss */
.wrap-estado .estado-na-del {
  background: #1ab08d;
  font-family: "Lato", sans-serif;
  padding: 8px;
  color: #fff;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -khtml-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  behavior: url(css/border-radius.htc);
}

/* line 1701, ../sass/_page.scss */
.botao-oco {
  background: #fff;
  font-family: "Lato", sans-serif;
  padding: 10px 10px;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
  box-shadow: 1px 1px 1px #c0c0c0;
  font-size: 12px;
  text-transform: uppercase;
}

/* line 1704, ../sass/_page.scss */
a.lila {
  color: #c72254;
}

/* line 1707, ../sass/_page.scss */
a.laranja {
  color: #f05a3b;
}

/* line 1710, ../sass/_page.scss */
.receitas-cesta {
  margin: 30px 0 5px;
  text-align: center;
}
/* line 1713, ../sass/_page.scss */
.receitas-cesta a {
  display: block;
}

/* line 1718, ../sass/_page.scss */
.tabs-primary .active .element-invisible {
  display: none;
}

/* line 1722, ../sass/_page.scss */
.view .more-link a, .view-footer .mais a {
  background: #f9f7f5;
  padding: 5px 15px;
  color: #c72254;
  text-decoration: none;
  font-family: 'Lato';
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}

/* line 1734, ../sass/_page.scss */
#frutafeia-pedidos-ajax-suspender-form .texto {
  padding: 15px 0;
}

/* line 1739, ../sass/_page.scss */
.numeros-entrega {
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  padding: 20px;
}
/* line 1743, ../sass/_page.scss */
.numeros-entrega > span {
  padding: 10px;
}
/* line 1746, ../sass/_page.scss */
.numeros-entrega .line {
  width: 50%;
  float: left;
}
/* line 1750, ../sass/_page.scss */
.numeros-entrega .label, .numeros-entrega .line {
  width: 50%;
  float: left;
}
/* line 1754, ../sass/_page.scss */
.numeros-entrega .val {
  padding-left: 10px;
}
/* line 1755, ../sass/_page.scss */
.numeros-entrega .label {
  font-weight: bold;
}

/* line 1762, ../sass/_page.scss */
form.mapa-de-consumidores > div {
  display: flex;
  flex-wrap: wrap;
}
/* line 1765, ../sass/_page.scss */
form.mapa-de-consumidores > div > .form-item {
  padding-right: 20px;
  box-sizing: border-box;
  max-width: 25%;
}
/* line 1771, ../sass/_page.scss */
form.mapa-de-consumidores .openlayers-container-map-mapa-procura-consumidores-delegacao {
  width: 100% !important;
  margin-top: 20px;
}

/* line 1, ../sass/_blocks.scss */
.wrap-left-right {
  margin-top: 28px;
}

/* line 5, ../sass/_blocks.scss */
.left-footer {
  float: left;
}

/* line 8, ../sass/_blocks.scss */
.logo-footer {
  float: left;
}

/* line 11, ../sass/_blocks.scss */
.left-to-logo {
  float: left;
  margin-left: 40px;
}

/* line 16, ../sass/_blocks.scss */
.right-footer {
  float: left;
  border-left: 1px solid #1ab08d;
  margin-left: 35px;
  padding-left: 35px;
}
/* line 21, ../sass/_blocks.scss */
.right-footer a {
  margin-right: 25px;
}

/* line 26, ../sass/_blocks.scss */
.social {
  margin-top: 10px;
}

/* line 32, ../sass/_blocks.scss */
#footer {
  margin-top: 65px;
    /*
    background:url("../images/leafs.svg") no-repeat;
    background-size:contain;
 
background-position-x: 7px;
    background-clip: content-box;*/
}
/* line 41, ../sass/_blocks.scss */
#footer .wrap-left-right {
  background: url("../images/frutas-top.png") repeat-x 100%;
}
/* line 44, ../sass/_blocks.scss */
#footer .top-leaf {
  background: url("../images/dir_leaf.png") repeat-x;
}
/* line 47, ../sass/_blocks.scss */
#footer .bottom-leaf {
  background: url("../images/dir_leaf.png") repeat-x;
}

/* line 52, ../sass/_blocks.scss */
#block-block-1 {
  display: block;
  overflow: hidden;
}
/* line 55, ../sass/_blocks.scss */
#block-block-1 p {
  line-height: 20px;
  margin: 0;
}

/* line 2, ../sass/_global.scss */
body {
  background: url(../images/background.svg) fixed repeat #e0d6cf;
}

/* line 6, ../sass/_global.scss */
div body {
  background: #fff fixed repeat;
}

/* line 10, ../sass/_global.scss */
.header-line {
  background: url("../images/line.png") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
  display: block;
  height: 2px;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

/* line 19, ../sass/_global.scss */
h1, h2, h3, h4, h5 {
  color: #1ab08d;
  text-align: center;
  position: relative;
  z-index: 7;
}

/* line 25, ../sass/_global.scss */
::selection {
  background: #1ab08d;
  color: #f9f7f5;
}

/* line 30, ../sass/_global.scss */
.h-inner {
  background: #e0d6cf;
  padding: 5px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
  text-shadow: 1px 1px 1px #c0c0c0;
}

/* line 38, ../sass/_global.scss */
.node h2, .overlayer-actions h2 {
  background: url("../images/line.png") repeat-x scroll 0 13px rgba(0, 0, 0, 0);
  line-height: 26px;
  margin-bottom: 30px;
}
/* line 42, ../sass/_global.scss */
.node h2 .h-inner, .overlayer-actions h2 .h-inner {
  background: #f9f7f5;
  text-shadow: none;
}

/* line 47, ../sass/_global.scss */
.node-destacado h2 .h-inner {
  background: none;
}

/* line 50, ../sass/_global.scss */
.node-entrega h2.node-title {
  margin-bottom: 20px;
}

/* line 54, ../sass/_global.scss */
h1, h2 {
  background: url("../images/line.png") repeat-x scroll 0 18px rgba(0, 0, 0, 0);
  text-transform: uppercase;
  font-family: 'planetaplakat';
}
/* line 60, ../sass/_global.scss */
h1 a, h2 a {
  color: #1ab08d !important;
  text-decoration: none;
}

/* line 66, ../sass/_global.scss */
h1 {
  margin-bottom: 20px !important;
}

/* line 69, ../sass/_global.scss */
h2 {
  background-position: 0 16px;
}

/* line 72, ../sass/_global.scss */
h2.node-title {
  margin-bottom: 30px;
}

/* line 76, ../sass/_global.scss */
.sidebar .menu {
  list-style: none;
  padding: 0;
}
/* line 80, ../sass/_global.scss */
.sidebar .menu li {
  list-style: none;
  margin-bottom: 4px;
}
/* line 83, ../sass/_global.scss */
.sidebar .menu li a {
  width: 140px;
  display: block;
}
/* line 89, ../sass/_global.scss */
.sidebar .menu li ul {
  margin-top: 10px;
}
/* line 90, ../sass/_global.scss */
.sidebar .menu li li {
  margin-left: 20px;
}
/* line 92, ../sass/_global.scss */
.sidebar .menu li li a {
  font-size: 0.8em;
}

/* line 102, ../sass/_global.scss */
.menu li a {
  border-bottom: 2px solid #1ab08d;
  background-color: rgba(255, 255, 255, 0.6);
  color: #1ab08d;
  text-decoration: none;
  padding: 3px 10px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 114, ../sass/_global.scss */
.menu li a.active-trail {
  background-color: #f9f7f5;
  color: #1ab08d;
}
/* line 124, ../sass/_global.scss */
.menu li a.active, .menu li a:hover,
.menu li a:focus {
  background-color: #1ab08d;
  border-bottom: 2px solid #f9f7f5;
  color: #f9f7f5;
}

/* line 134, ../sass/_global.scss */
.tabs-primary {
  margin-bottom: 0;
  margin-left: 10px;
  overflow: hidden;
  padding: 0;
}
/* line 140, ../sass/_global.scss */
.tabs-primary li {
  float: left;
  list-style: none;
  margin-right: 10px;
  padding-top: 10px;
}
/* line 145, ../sass/_global.scss */
.tabs-primary li a {
  background-color: rgba(255, 255, 255, 0.5);
  color: #1ab08d;
  text-decoration: none;
  padding: 6px 10px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}
/* line 154, ../sass/_global.scss */
.tabs-primary li a.active-trail {
  background-color: #f9f7f5;
  color: #1ab08d;
}
/* line 163, ../sass/_global.scss */
.tabs-primary li a.active, .tabs-primary li a:hover,
.tabs-primary li a:focus {
  background-color: #f9f7f5;
  color: #1ab08d;
}

/* line 170, ../sass/_global.scss */
#main {
  /*margin-top:55px;*/
}

/* line 177, ../sass/_global.scss */
#navigation .menu li a {
  color: #FFFFFF;
  background: none;
  border: none;
  padding: 3px 3px;
  text-transform: none;
}

/* line 192, ../sass/_global.scss */
.sidebars, .header {
  position: fixed;
  z-index: 100;
}

/* line 197, ../sass/_global.scss */
.sidebars {
  top: 80px;
  z-index: 0;
}

/* line 202, ../sass/_global.scss */
.logged-in .user-login-menu, .section-user .user-login-menu {
  display: none;
}

/* line 207, ../sass/_global.scss */
.menu-mobile, .user-login-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  cursor: pointer;
  padding: 5px 15px 4px;
  color: #FFF;
  background-color: #c72254;
}

/* line 217, ../sass/_global.scss */
.menu-mobile {
  background-color: #c72254;
  left: 0;
}

/* line 222, ../sass/_global.scss */
.user-login-menu {
  background-color: #f05a3b;
  right: 0;
  color: #fff !important;
  text-decoration: none;
}

/* line 229, ../sass/_global.scss */
.inside-top-menu {
  margin-left: 30px;
}

/* line 234, ../sass/_global.scss */
.scroll-nav .anterior {
  padding: 10px;
  display: block;
  background: url("../images/arrow-up.png") no-repeat;
}
/* line 239, ../sass/_global.scss */
.scroll-nav .proximo {
  margin-top: 10px;
  padding: 10px;
  display: block;
  background: url("../images/arrow-down.png") no-repeat;
}
/* line 245, ../sass/_global.scss */
.scroll-nav .buttons {
  margin-top: 30px;
}

/* line 249, ../sass/_global.scss */
.dot-button {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  padding: 0 6px 30px;
  display: block;
  background: url("../images/bullet.png") no-repeat;
}
/* line 254, ../sass/_global.scss */
.dot-button.active {
  background: url("../images/bullet-hover.png") no-repeat;
  font-weight: bold;
}

/* line 261, ../sass/_global.scss */
.sidebar-first #content {
  float: left;
  margin-left: 0%;
  margin-right: -100%;
  width: 100%;
  position: relative;
  z-index: 9;
}

/* line 270, ../sass/_global.scss */
.scroll-nav {
  position: fixed;
  top: 170px;
  z-index: 9;
  width: 10px;
  right: 40px;
}

/* line 281, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .logos {
  float: right;
  margin-top: 30px;
}
/* line 284, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .logos .header__logo-image {
  width: 100px;
  margin: 0;
}
/* line 289, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .region-sidebar-first {
  float: left;
  margin-top: 11px;
}
/* line 295, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .logo-and-left {
  position: absolute;
  top: 18px;
  left: 0;
}
/* line 300, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .top-bar-region {
  /* float: left;
   width: 80%;
   margin-top:60px;
   margin-left: 20%;
   margin-right: -100%; */
}
/* line 308, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .menu li a {
  background-color: #f9f7f5;
  color: #1ab08d;
  border: none;
  box-shadow: none;
}
/* line 313, ../sass/_global.scss */
#custom-top-bar .inside-top-menu .menu li a.active {
  color: #f9f7f5;
  background-color: #1ab08d;
}

/* line 321, ../sass/_global.scss */
#block-user-login {
  float: right;
  width: 285px;
  margin-top: 35px;
  border-left: 1px solid #fff;
  padding-left: 30px;
}
/* line 328, ../sass/_global.scss */
#block-user-login h2 {
  display: none;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  margin-bottom: 4px;
  background: none;
  font-weight: 100;
  text-align: right;
}
/* line 336, ../sass/_global.scss */
#block-user-login h2 .h-inner {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  border-radius: 0px;
  behavior: url(css/border-radius.htc);
  background: #f05a3b;
  color: #FFF;
  padding: 10px;
}
/* line 343, ../sass/_global.scss */
#block-user-login form {
  background: none;
  padding: 0;
}
/* line 348, ../sass/_global.scss */
#block-user-login .captcha.form-wrapper {
  margin-top: 10px;
  padding: 0;
  border: none;
}
/* line 352, ../sass/_global.scss */
#block-user-login .captcha.form-wrapper .fieldset-legend {
  color: #fff;
  font-size: 12px;
}
/* line 356, ../sass/_global.scss */
#block-user-login .captcha.form-wrapper .ascii_art_captcha {
  margin-top: 10px;
}
/* line 360, ../sass/_global.scss */
#block-user-login .captcha.form-wrapper .fieldset-description {
  /*display:none;*/
  font-size: 12px;
  width: 220px;
}
/* line 369, ../sass/_global.scss */
#block-user-login .form-item {
  margin: 0px;
}
/* line 371, ../sass/_global.scss */
#block-user-login .form-item label {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
  padding: 3px 0px;
  margin: 10px 0;
  color: #fff;
}
/* line 381, ../sass/_global.scss */
#block-user-login .form-item input {
  width: 100%;
  max-width: 250px;
}
/* line 388, ../sass/_global.scss */
#block-user-login .form-actions a {
  color: #FFF;
}
/* line 391, ../sass/_global.scss */
#block-user-login .form-actions input {
  background: #f9f7f5;
  margin-bottom: 5px;
  padding: 7px 28px;
}
/* line 396, ../sass/_global.scss */
#block-user-login .form-actions .inscrever {
  display: block;
  color: #FFF;
  margin: 10px 0;
  background: #c72254;
  text-align: center;
  width: 250px;
  padding: 6px 0;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  behavior: url(css/border-radius.htc);
}

/* line 410, ../sass/_global.scss */
.menu-bar {
  color: #f9f7f5 !important;
  overflow: hidden;
  position: relative;
  -moz-box-shadow: inset -0px 2px 5px #555;
  -webkit-box-shadow: inset 2px -5px 5px #555;
  box-shadow: inset -0px 2px 5px #555;
}
/* line 416, ../sass/_global.scss */
.menu-bar #navigation {
  font-size: 11.2px;
  padding-top: 6px;
}
/* line 422, ../sass/_global.scss */
.menu-bar #navigation .block-menu {
  float: left;
}
/* line 426, ../sass/_global.scss */
.menu-bar #navigation .region-navigation {
  overflow: hidden;
}
/* line 429, ../sass/_global.scss */
.menu-bar #navigation #block-system-user-menu {
  float: left;
}

/* line 438, ../sass/_global.scss */
#footer {
    /*
margin-left:20%;
width:80%;
*/
}

/* line 453, ../sass/_global.scss */
#admin-menu {
  background: #1ab08d !important;
}

/* line 459, ../sass/_global.scss */
#custom-top-bar {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}

/* line 471, ../sass/_global.scss */
.menu-fruit {
  height: 30px;
  /*background:url("../images/frutas-top.png") 0 0  repeat-x;
  */
}

/* line 481, ../sass/_global.scss */
.menu-bar {
  height: 30px;
  background: #1ab08d repeat-x;
  /*
    -moz-box-shadow: 0 -10px 30px 13px #000;
    -webkit-box-shadow: 0 -10px 30px 13px #000;
    box-shadow: 0 -10px 30px 13px #000;
  */
}

/* line 490, ../sass/_global.scss */
#block-locale-language {
  position: absolute;
  top: 4px;
  right: 206px;
}

/* line 497, ../sass/_global.scss */
.logged-in #block-locale-language, .section-user #block-locale-language {
  right: 10px;
}

/* line 501, ../sass/_global.scss */
#block-locale-language ul {
  padding: 0;
  margin: 0;
}

/* line 505, ../sass/_global.scss */
#block-locale-language li {
  float: left;
  list-style: none;
  margin-right: 15px;
}

/* line 510, ../sass/_global.scss */
#block-locale-language li a {
  color: #fff;
  text-decoration: none;
}

/* line 514, ../sass/_global.scss */
#block-locale-language li.active {
  font-weight: bold;
}

/* line 518, ../sass/_global.scss */
.branco {
  padding: 20px 60px;
  background-color: #f9f7f5;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
}

/* line 524, ../sass/_global.scss */
ul {
  /*list-style-image:url('../images/bullet-hover.png');*/
}

/* line 528, ../sass/_global.scss */
a.botao {
  margin: 0 5px;
  padding: 5px 10px;
  text-decoration: none;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  behavior: url(css/border-radius.htc);
}
/* line 533, ../sass/_global.scss */
a.botao.branco {
  color: #1ab08d;
  background-color: #fff;
}
/* line 537, ../sass/_global.scss */
a.botao.laranja {
  color: #fff;
  background-color: #f05a3b;
}
/* line 541, ../sass/_global.scss */
a.botao.verde {
  color: #fff;
  background-color: #1ab08d;
}
/* line 545, ../sass/_global.scss */
a.botao.lila {
  color: #fff;
  background-color: #c72254;
}
