/* Bootstrap Needed files */
/**
 * Variable Overrides for base bootstrap
 *
 * Modify this file to override the Bootstrap Framework variables. You can copy
 * these variables directly from ../bootstrap/less/variables.less to this file.
 */
/**
 * Custom Variables
 */
/* Primary Colors */
/* Shades of grey */
/* Secondary Colors */
/* Color guidelines for blocks */
.bg-purple {
  background-color: #572c5f;
}
.bg-green {
  background-color: #00c389;
}
.bg-red {
  background-color: #f9423a;
}
.bg-white {
  background-color: #ffffff;
}
.bg-dark {
  background-color: #000000;
}
.bg-grey {
  background-color: #666666;
}
.bg-sky-blue {
  background-color: #6ad1e3;
}
.bg-brown {
  background-color: #7c3a2d;
}
.bg-deep-blue {
  background-color: #003d4c;
}
.bg-citrus {
  background-color: #97d700;
}
.bg-yellow {
  background-color: #f0c800;
}
.bg-salmon {
  background-color: #fab991;
}
.bg-blue {
  background-color: #5a7dd2;
}
.txt-purple {
  color: #572c5f;
}
.txt-green {
  color: #00c389;
}
.txt-red {
  color: #f9423a;
}
.txt-white {
  color: #ffffff;
}
.txt-dark {
  color: #000000;
}
.txt-grey {
  color: #666666;
}
.txt-light-grey {
  color: #808080;
}
.txt-light-thirty {
  color: rgba(255, 255, 255, 0.3);
}
.glyphicon-spin {
  -webkit-animation: spin 1000ms infinite linear;
  animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
#scald-atom-add-form-options .date-no-float {
  width: 80%;
}
/*
 * Custom Mixins
 */
.warm-red-button {
  font-family: circularProBook, Arial, sans-serif;
  display: block;
  background: #f9423a;
  text-decoration: none;
  border-radius: 4px;
  width: 200px;
  height: 46px;
  font-size: 16px;
  color: #fff;
  line-height: 46px;
  text-align: center;
  transition: .4s;
  outline: none;
}
.warm-red-button-transparent,
.field-collection-item-field-block-header .field-name-field-button-link a,
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button,
.activity-card .reservation-btn .field-items .field-item a,
.activity-card .show-calendar,
.node.activity button.reservation-btn,
.node.activity .reservation-btn a,
.activity-calendar-container .calendar-block table .calendar-link a,
.activity-calendar-container .activity-all-dates,
ul.pager-load-more li a {
  position: relative;
  background: transparent;
  border: 1px solid #f9423a;
  width: 200px;
  border-radius: 3px;
  display: block;
  text-align: center;
  line-height: 46px;
  font-size: 14px;
  color: #f9423a;
  transition: .4s;
  text-decoration: none;
  outline: none;
}
[data-aspect-ratio] {
  display: block;
  max-width: 100%;
  position: relative;
}
[data-aspect-ratio]:before {
  content: '';
  display: block;
}
[data-aspect-ratio] > * {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
[data-aspect-ratio] > img {
  object-fit: cover;
  font-family: "object-fit: cover";
}
/*
 * HOW To add a new format :
 *
 * [data-aspect-ratio="X:Y"]:before {
 *   padding-top: ((Y/X)*100)%; // Padding must be calculated from Y and X vars (Y divided by X and multiplicated by 100)
 * }
 *
 * Add this attribute to the html selector : data-aspect-ratio="16:9"
 * ex:  <div data-aspect-ratio="3:2"><img .../></div>
 */
[data-aspect-ratio="1:1"]:before {
  padding-top: 100%;
}
[data-aspect-ratio="3:2"]:before {
  padding-top: 66.66%;
}
[data-aspect-ratio="3:4"]:before {
  padding-top: 133.33%;
}
[data-aspect-ratio="4:3"]:before {
  padding-top: 75%;
}
/**
 * Hide all input crosses for IE browsers.
 */
input::-ms-clear {
  display: none;
}
/**
 * Normal font weight for search-results pop-up;
 */
.main-nav .dropdown .highlighted-term {
  font-weight: normal;
}
.video-field {
  width: 100%;
}
/**
 * RTE image normalize for Firefox.
 */
.speciality-card .img-container img {
  min-height: initial;
}
/**
 * Fix popup slider image distortion.
 */
section.content .full-width-content .carousel-popup img {
  width: auto;
}
/**
 * Normalize video.
 */
video {
  width: 100%;
  height: auto;
}
/**
 * Set h2, h3 tags styles.
 */
h2 {
  font-size: 36px;
  color: #f9423a;
  font-family: CircularProBold, Arial, sans-serif;
}
h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
/**
 * Styles for scald file icon.
 */
.type-file img.scald-file-icon {
  height: 28px !important;
}
@media screen and (max-width: 979px) {
  .type-file img.scald-file-icon {
    height: 19px !important;
  }
}
.related-content {
  margin-right: -10px;
  margin-left: -10px;
}
.sub-title {
  font-family: circularProBold;
  font-size: 18px;
  line-height: 26px;
}
::-webkit-input-placeholder {
  color: #666666;
  font-family: circularProBook;
  font-size: 14px;
}
::-moz-placeholder {
  color: #666666;
  font-family: circularProBook;
  font-size: 14px;
}
:-ms-input-placeholder {
  color: #666666;
  font-family: circularProBook;
  font-size: 14px;
}
:-moz-placeholder {
  color: #666666;
  font-family: circularProBook;
  font-size: 14px;
}
.field-collection-item-field-block-header .field-name-title-field {
  font-size: 36px;
  line-height: 34px;
  font-family: circularProBold, Arial, sans-serif;
  color: #f9423a;
  margin-bottom: 20px;
}
.field-collection-item-field-block-header .field-name-field-body {
  font-family: circularProBook, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #666666;
  margin-bottom: 20px;
}
.field-collection-item-field-block-header .field-name-field-button-link a:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.field-collection-item-field-block-header .field-name-field-button-link a:hover {
  background: transparent;
  color: #ffffff;
  z-index: 1;
}
.field-collection-item-field-block-header .field-name-field-button-link a:hover:after {
  width: 100%;
}
.field-collection-item-field-block-header .field-name-field-button-link a:focus,
.field-collection-item-field-block-header .field-name-field-button-link a:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}
.red-title-paragraph {
  margin: 40px 0 30px;
  width: 75%;
}
.red-title-paragraph p.red-title {
  font-weight: bold;
  line-height: 20px;
  color: #f9423a;
  margin-bottom: 25px;
}
.red-title-paragraph div {
  margin-left: 30px;
}
.block-text-image {
  margin-top: 20px;
}
.block-text-image .b-text {
  width: 30%;
  display: inline-block;
  vertical-align: top;
}
.block-text-image .b-image {
  width: 64%;
  display: inline-block;
  vertical-align: top;
  margin-top: 35px;
}
.block-image-left .b-image,
.block-image-right .b-image {
  width: 60%;
  display: inline-block;
}
.block-image-left {
  text-align: left;
}
.block-image-right {
  text-align: right;
}
.field-collection-view-final {
  padding-top: 0;
}
.magazine-article-block-image-left,
.magazine-article-block-image-right {
  display: inline-block;
  margin-top: 50px;
  width: 100%;
}
.magazine-article-block-image-left .b-image,
.magazine-article-block-image-right .b-image {
  width: 100%;
}
.magazine-article-block-image-left .b-image .dnd-atom-rendered,
.magazine-article-block-image-right .b-image .dnd-atom-rendered {
  width: 825px;
  overflow: hidden;
  height: 550px;
}
.magazine-article-block-image-left .b-image .atom-caption,
.magazine-article-block-image-right .b-image .atom-caption {
  display: inline-block;
  color: #f9423a;
  margin-right: 20px;
  max-width: 50%;
}
.magazine-article-block-image-left .b-image .atom-copyright,
.magazine-article-block-image-right .b-image .atom-copyright {
  display: inline-block;
  max-width: 50%;
  color: #bebebe;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
}
.magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper,
.magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper {
  margin-left: calc(100% - 755px);
}
.magazine-article-block-image-left.magazine-article-block-image-left .b-image .dnd-widget-wrapper,
.magazine-article-block-image-right.magazine-article-block-image-left .b-image .dnd-widget-wrapper {
  margin-left: -79px;
}
.red-title-paragraph,
.red-title-paragraph-right,
.red-title-paragraph-left {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 80px;
  padding: 0;
}
.red-title-paragraph a,
.red-title-paragraph-right a,
.red-title-paragraph-left a {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.red-title-paragraph p,
.red-title-paragraph-right p,
.red-title-paragraph-left p,
.red-title-paragraph span,
.red-title-paragraph-right span,
.red-title-paragraph-left span {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.red-title-paragraph p.red-title,
.red-title-paragraph-right p.red-title,
.red-title-paragraph-left p.red-title,
.red-title-paragraph span.red-title,
.red-title-paragraph-right span.red-title,
.red-title-paragraph-left span.red-title,
.red-title-paragraph p.red-title > span,
.red-title-paragraph-right p.red-title > span,
.red-title-paragraph-left p.red-title > span,
.red-title-paragraph span.red-title > span,
.red-title-paragraph-right span.red-title > span,
.red-title-paragraph-left span.red-title > span {
  margin-bottom: 25px;
  color: #f9423a;
  font-size: 36px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 34px;
  margin-top: 39px;
}
.red-title-paragraph div,
.red-title-paragraph-right div,
.red-title-paragraph-left div {
  margin-left: 0;
}
.red-title-paragraph-border {
  border: 3px solid #f9423a;
  padding: 0 79px 37px 79px!important;
  margin: 80px 0;
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.red-title-paragraph-border a {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.red-title-paragraph-border .red-title {
  color: #f9423a;
  font-size: 36px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 34px;
  margin: 39px 0 29px -39px;
}
@media screen and (max-width: 1365px) and (min-width: 1170px) {
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper {
    margin-left: calc(100% - 825px);
  }
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper {
    margin-left: 0;
  }
}
@media screen and (max-width: 1169px) and (min-width: 1025px) {
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper {
    margin-left: calc(100% - 825px);
  }
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper {
    margin-left: 0;
  }
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper {
    padding-left: 20px;
  }
  .red-title-paragraph,
  .red-title-paragraph-left,
  .red-title-paragraph-right {
    max-width: none;
    padding: 0 40px;
    margin: 76px 0 70px 0;
  }
  .red-title-paragraph-border {
    margin: 84px 40px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper {
    margin: 0;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-atom-rendered,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-atom-rendered {
    width: 100%;
    overflow: hidden;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper {
    margin: -152px 0 0 10%;
    background: white;
    position: relative;
    width: 90%;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    min-height: 155px;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright {
    max-width: 100%;
  }
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper {
    margin: -152px 0 0 0;
    background: white;
    position: relative;
    width: 90%;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    min-height: 155px;
  }
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright {
    max-width: 100%;
  }
  .red-title-paragraph-border {
    margin: 84px 40px;
  }
  .red-title-paragraph,
  .red-title-paragraph-left,
  .red-title-paragraph-right {
    max-width: none;
    padding: 0 40px;
    margin: 76px 0 70px 0;
    position: relative;
    width: 90%;
  }
  .red-title-paragraph.red-title-paragraph-right,
  .red-title-paragraph-left.red-title-paragraph-right,
  .red-title-paragraph-right.red-title-paragraph-right {
    margin: 0 0 70px 0;
  }
  .red-title-paragraph.red-title-paragraph-left,
  .red-title-paragraph-left.red-title-paragraph-left,
  .red-title-paragraph-right.red-title-paragraph-left {
    margin: 0 0 70px 10%;
  }
  .red-title-paragraph.red-title-paragraph,
  .red-title-paragraph-left.red-title-paragraph,
  .red-title-paragraph-right.red-title-paragraph {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper {
    margin: 0;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-atom-rendered,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-atom-rendered {
    width: 100%;
    overflow: hidden;
    height: 450px;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-atom-rendered .image,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-atom-rendered .image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-atom-rendered .image img,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-atom-rendered .image img {
    width: auto;
    height: auto;
    max-width: none;
    min-height: 100%;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper {
    margin: -152px 0 0 10%;
    background: white;
    position: relative;
    width: 90%;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    min-height: 155px;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright,
  .magazine-article-block-image-left .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright {
    max-width: 100%;
  }
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper {
    margin: -152px 0 0 0;
    background: white;
    position: relative;
    width: 90%;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    min-height: 155px;
  }
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-caption,
  .magazine-article-block-image-right.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright,
  .magazine-article-block-image-left.magazine-article-block-image-right .b-image .dnd-widget-wrapper .dnd-caption-wrapper .meta .atom-copyright {
    max-width: 100%;
  }
  .red-title-paragraph-border {
    margin: 20px;
    padding: 0 20px 37px 20px!important;
  }
  .red-title-paragraph-border .red-title {
    margin-left: 0;
    color: #f9423a;
    font-size: 36px;
    font-family: circularProBold, Arial, sans-serif;
    line-height: 34px;
  }
  .red-title-paragraph-border div {
    color: #666666;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }
  .red-title-paragraph,
  .red-title-paragraph-left,
  .red-title-paragraph-right {
    max-width: none;
    padding: 0 20px;
    margin: 76px 0 70px 0;
    position: relative;
    width: 90%;
  }
  .red-title-paragraph.red-title-paragraph-right,
  .red-title-paragraph-left.red-title-paragraph-right,
  .red-title-paragraph-right.red-title-paragraph-right {
    margin: 50px 0 70px 0;
    padding: 0 0 0 40px;
  }
  .red-title-paragraph.red-title-paragraph-right .red-title,
  .red-title-paragraph-left.red-title-paragraph-right .red-title,
  .red-title-paragraph-right.red-title-paragraph-right .red-title {
    margin-left: 0px;
    margin-top: 0;
    color: #f9423a;
    font-size: 36px;
    font-family: circularProBold, Arial, sans-serif;
    line-height: 34px;
  }
  .red-title-paragraph.red-title-paragraph-right div,
  .red-title-paragraph-left.red-title-paragraph-right div,
  .red-title-paragraph-right.red-title-paragraph-right div {
    margin-left: 40px;
    color: #666666;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
  }
  .red-title-paragraph.red-title-paragraph-left,
  .red-title-paragraph-left.red-title-paragraph-left,
  .red-title-paragraph-right.red-title-paragraph-left {
    margin: 60px 0 70px 10%;
    padding: 0 20px 0 60px;
  }
  .red-title-paragraph.red-title-paragraph-left .red-title,
  .red-title-paragraph-left.red-title-paragraph-left .red-title,
  .red-title-paragraph-right.red-title-paragraph-left .red-title {
    margin-left: -40px;
  }
  .red-title-paragraph.red-title-paragraph,
  .red-title-paragraph-left.red-title-paragraph,
  .red-title-paragraph-right.red-title-paragraph {
    width: 100%;
  }
  .red-title-paragraph-right {
    padding: 0 0 0 20px!important;
  }
}
@media screen and (max-width: 979px) {
  .sub-title {
    font-size: 18px;
  }
  .half-page-text-block {
    width: 100%;
  }
  .block-text-image {
    margin: 20px 20px 0;
  }
  .block-text-image .b-text {
    width: 100%;
  }
}
/* Custom Mixins */
/*
  This mixin can be used to set the object-fit:
  .object-fit(contain);
  or object-fit and object-position:
  .object-fit(cover, top);
*/
/* Main Style */
/* Typography */
.main-title,
.header-title,
.section-title-bold,
.subtitle,
.text-bold,
.text-list-title,
.text-small-bold,
.text-extra-small-bold,
.quote,
.sub-navigation {
  font-family: circularProBold, Arial;
  font-weight: bold;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.main-title-normal,
.main-navigation,
.section-title,
.subtitle-regular,
.lead,
.text,
.text-list-item,
.text-small,
.text-extra-small,
.text-extra-small-caps,
.tags,
.btn-ali {
  font-family: circularProBook, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.main-title,
.main-title-normal {
  font-size: 72px;
  line-height: 72px;
  color: #f9423a;
}
.header-title {
  font-size: 48px;
}
.section-title,
.section-title-bold {
  font-size: 36px;
  line-height: 42px;
}
.subtitle,
.subtitle-regular,
.lead {
  font-size: 26px;
  line-height: 34px;
}
.text,
.text-bold {
  color: #666666;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}
.text-list-title,
.text-list-item {
  font-size: 22px;
  line-height: 26px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.text-small,
.text-small-bold,
.btn-cta,
figcaption {
  font-size: 18px;
  line-height: 24px;
}
figure {
  margin: 0;
}
figcaption,
.lead {
  color: #808080;
}
.image-left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.image-right {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
.image-caption {
  margin-top: 10px;
}
.text-extra-small,
.text-extra-small-caps,
.text-extra-small-bold,
.btn-small {
  font-size: 16px;
  line-height: 22px;
}
.text-extra-small-caps,
.text-caps {
  text-transform: uppercase;
}
.tags {
  font-size: 16px;
}
.tags .tag {
  display: inline-block;
  line-height: 24px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.tags .tag:last-child {
  margin-right: 0;
}
.tags .tag a {
  color: #f9423a;
  text-decoration: none;
  display: block;
  font-weight: 300;
  line-height: 20px;
}
.tags .tag a:hover,
.tags .tag a:active,
.tags .tag a:focus {
  text-decoration: underline;
}
.tags .tag a:active,
.tags .tag a:focus {
  outline: none;
}
.quote {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 34px;
  line-height: 44px;
  text-align: center;
}
.quote .blockquote-text {
  color: #666666;
  font-weight: bold;
  margin: 0;
  font-size: 34px;
  line-height: 44px;
}
.quote em.blockquote-separator {
  border-top: 3px solid #666666;
  line-height: 0;
  vertical-align: middle;
  display: block;
  width: 60px;
  margin: 15px auto;
}
.quote .blockquote-legend {
  color: #808080;
  font-size: 22px;
  line-height: 30px;
  font-weight: normal;
}
a.main-navigation,
.main-navigation,
.main-navigation:focus {
  font-size: 24px;
  color: #f9423a;
  text-decoration: none;
}
.sub-navigation,
.sub-navigation:focus {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}
/* Margin Normalized in guidelines */
.margin-top-one {
  margin-top: 70px;
}
.margin-top-two {
  margin-top: 35px;
}
.margin-top-three {
  margin-top: 130px;
}
.margin-top-four {
  margin-top: 100px;
}
.margin-top-five {
  margin-top: 50px;
}
.margin-bottom-one {
  margin-bottom: 70px;
}
.margin-bottom-two {
  margin-bottom: 35px;
}
.margin-bottom-three {
  margin-bottom: 130px;
}
.margin-bottom-four {
  margin-bottom: 100px;
}
.margin-bottom-five {
  margin-bottom: 50px;
}
.letter-spacing-1 {
  letter-spacing: 1px;
}
.margin-bottom-twenty {
  margin-bottom: 20px;
}
.letter-spacing-1 {
  letter-spacing: 1px;
}
.bottom-fifteen {
  margin-bottom: 15px;
}
.top-minus-20-lg {
  margin-top: -20px;
}
.marged-content:last-child {
  margin-bottom: 100px;
}
@media screen and (max-width: 979px) {
  .marged-content:last-child {
    margin-bottom: 50px;
  }
  .marged-content:last-child .full-width-content {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 979px) {
  /* Margin Normalized in guidelines */
  .margin-top-one {
    margin-top: 50px;
  }
  .margin-top-two {
    margin-top: 21px;
  }
  .margin-top-three {
    margin-top: 90px;
  }
  .margin-top-four {
    margin-top: 60px;
  }
  .margin-top-five {
    margin-top: 30px;
  }
  .margin-bottom-one {
    margin-bottom: 50px;
  }
  .margin-bottom-two {
    margin-bottom: 21px;
  }
  .margin-bottom-three {
    margin-bottom: 90px;
  }
  .margin-bottom-four {
    margin-bottom: 30px;
  }
  .margin-bottom-five {
    margin-bottom: 30px;
  }
  .bottom-fifteen {
    margin-bottom: 1px;
  }
  .marged-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .marged-content:last-child {
    margin-bottom: 20px;
  }
  .top-minus-20-lg {
    margin-top: inherit;
  }
}
/* General style */
.img-container {
  position: static;
}
html {
  height: 100%;
}
body {
  position: relative;
  min-height: 100%;
  font-family: "circularProBook", Arial, sans-serif;
  color: #666666;
}
a,
a.link_bg_white {
  color: #f9423a;
  text-decoration: none;
  outline: none;
}
a:hover,
a.link_bg_white:hover,
a:focus,
a.link_bg_white:focus,
a:active,
a.link_bg_white:active {
  color: #f9423a;
  outline: none;
  text-decoration: underline;
}
a[class^="icon-"],
a.link_bg_white[class^="icon-"],
a[class*=" icon-"],
a.link_bg_white[class*=" icon-"] {
  text-decoration: none;
}
a.link_bg_dark {
  color: #ffffff;
}
a.link_bg_dark:hover,
a.link_bg_dark:focus,
a.link_bg_dark:active {
  color: #999999;
}
button {
  text-decoration: none;
  outline: none;
}
button:hover,
button:focus,
button:active {
  text-decoration: none;
  outline: none;
}
.dnd-caption-wrapper {
  color: #808080;
  font-size: 16px;
  line-height: 22px;
  margin-top: 10px;
}
.page-atom .atom-content {
  padding: 130px 0 80px;
}
#overlay {
  height: 100%;
  width: 100%;
  background-color: #000;
  -ms-filter: "alpha(opacity=50)";
  filter: alpha(opacity=60);
  opacity: .6;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  z-index: 9;
}
/* Media Queries */
/* Intermediate breakpoint due to font-size issues */
@media screen and (max-width: 1169px) {
  .section-title,
  .section-title-bold {
    font-size: 31px;
    line-height: 35px;
  }
  .subtitle,
  .subtitle-regular {
    font-size: 24px;
    line-height: 30px;
  }
  /* General Hidden */
  .hidden-md-lg {
    display: none;
  }
}
@media screen and (max-width: 979px) {
  /* Official Value */
  .section-title {
    font-size: 22px;
    line-height: 24px;
  }
  .subtitle-regular {
    font-size: 18px;
    line-height: 20px;
  }
  .lead {
    font-size: 18px;
    line-height: 23px;
  }
  .text,
  .text-bold {
    font-size: 16px;
    line-height: 22px;
  }
  .text-list-title,
  .text-list-item {
    font-size: 14px;
    line-height: 20px;
  }
  .text-small,
  .text-small-bold,
  .mobile-text-small-bold,
  .btn-cta {
    font-size: 16px;
    line-height: 19px;
  }
  .text-extra-small-bold,
  .btn-small {
    font-size: 14px;
    line-height: 20px;
  }
  .text-extra-small,
  .dnd-caption-wrapper,
  .text-extra-small-caps,
  .mobile-text-extra-small {
    font-size: 14px;
    line-height: 23px;
  }
  .tags {
    font-size: 12px;
  }
  .main-navigation,
  .main-navigation:focus {
    font-size: 20px;
  }
  .sub-navigation,
  .sub-navigation:focus {
    font-size: 15px;
  }
  .mobile-text {
    font-size: 16px;
    line-height: 22px;
  }
  .subtitle,
  .mobile-subtitle-bold {
    font-size: 17px;
    line-height: 22px;
  }
  .mobile-subtitle-bold {
    font-weight: bold;
  }
  .mobile-text-small {
    font-size: 14px;
    line-height: 20px;
  }
  .number {
    font-size: 36px;
  }
  .section-title-bold {
    font-size: 22px;
    line-height: 26px;
  }
  .mobile-main-title {
    font-size: 28px;
    line-height: 34px;
  }
  ul {
    padding-left: 20px;
  }
  .quote {
    font-size: 17px;
    line-height: 21px;
  }
  .quote .blockquote-text {
    font-size: 17px;
    line-height: 22px;
  }
}
/* Templates */
.panel-group {
  margin-top: 50px;
  margin-bottom: 35px;
}
.panel-group .panel + .panel {
  border-top: 0 none;
  margin-top: 0;
}
.panel-group .panel.accordion-item.source-bibliography {
  border-bottom: none;
}
.panel.accordion-item {
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  background-color: transparent;
}
.panel.accordion-item .panel-heading {
  background-color: transparent;
}
.panel.accordion-item .panel-heading a {
  display: block;
  color: #f9423a;
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
  text-decoration: none;
  cursor: pointer;
  z-index: 4;
  position: relative;
}
.panel.accordion-item .panel-heading a span.icon-accordion {
  float: right;
  font-size: 0.6em;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.panel.accordion-item .panel-heading a span.icon-accordion:before {
  content: "\e903";
}
.panel.accordion-item .panel-heading a.collapsed span.icon-accordion {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.panel.accordion-item .panel-heading a:focus,
.panel.accordion-item .panel-heading a:active {
  outline: medium none;
  text-decoration: none;
  text-decoration: underline;
  color: #f9423a;
}
.panel.accordion-item .panel-heading a:hover {
  text-decoration: none;
  text-decoration: underline;
}
.panel.accordion-item .panel-collapse .panel-body {
  border-top: 0;
  margin-bottom: 35px;
}
@media screen and (max-width: 979px) {
  .panel-group .panel.accordion-item .panel-collapse .panel-body {
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .panel-group .panel.accordion-item.source-bibliography .panel-collapse .panel-body {
    margin-top: -10px;
  }
}
@keyframes appeare {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.node-type-activity-list .ui-datepicker-other-month {
  visibility: hidden;
}
.node-type-activity-list .activity-list-header-wrapper .field-name-field-subtitle,
.node-type-activity-list .block-title,
.node-type-activity-list #edit-field-workshops-subcategories-tid-1-wrapper,
.node-type-activity-list #edit-field-museum-tour-subcategories-tid-1-wrapper,
.node-type-activity-list #edit-field-events-subcategories-tid-1-wrapper,
.node-type-activity-list #edit-field-events-clients-subcategori-tid-1-wrapper,
.node-type-activity-list #edit-field-targets-tid-1-wrapper,
.node-type-activity-list #edit-field-date-value-wrapper {
  display: none;
}
.node-type-activity-list .select2-container--open .select2-search {
  display: none;
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .select2-container--open {
    min-width: calc(100% - 20px) !important;
  }
}
.node-type-activity-list .select2-container--open .select2-dropdown--above,
.node-type-activity-list .select2-container--open .select2-dropdown--below {
  width: auto !important;
  min-width: 200px;
  left: 0;
  border: none;
  text-transform: none;
  top: 15px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .select2-container--open .select2-dropdown--above,
  .node-type-activity-list .select2-container--open .select2-dropdown--below {
    min-width: calc(100% - 20px) !important;
  }
}
.node-type-activity-list .select2-container--open .select2-dropdown--above .select2-results__options .select2-results__option--highlighted[aria-selected],
.node-type-activity-list .select2-container--open .select2-dropdown--below .select2-results__options .select2-results__option--highlighted[aria-selected] {
  color: #f9423a;
  border-bottom: 2px solid;
  background-color: inherit;
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .select2-container--open .select2-dropdown--above .select2-results__options .select2-results__option--highlighted[aria-selected],
  .node-type-activity-list .select2-container--open .select2-dropdown--below .select2-results__options .select2-results__option--highlighted[aria-selected] {
    position: relative;
    border-color: transparent;
  }
  .node-type-activity-list .select2-container--open .select2-dropdown--above .select2-results__options .select2-results__option--highlighted[aria-selected]:after,
  .node-type-activity-list .select2-container--open .select2-dropdown--below .select2-results__options .select2-results__option--highlighted[aria-selected]:after {
    content: '';
    position: absolute;
    right: 0;
    background: url(/sites/all/themes/custom/alimentarium/images/check_red.svg) no-repeat;
    height: 16px;
    width: 16px;
    background-size: 16px;
    top: 0;
  }
}
.node-type-activity-list .select2-container--open .select2-dropdown--above .select2-results__options .select2-results__option[aria-selected=true],
.node-type-activity-list .select2-container--open .select2-dropdown--below .select2-results__options .select2-results__option[aria-selected=true] {
  background-color: inherit;
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .select2-container--open .select2-dropdown--above .select2-results__options,
  .node-type-activity-list .select2-container--open .select2-dropdown--below .select2-results__options {
    box-shadow: unset;
  }
  .node-type-activity-list .select2-container--open .select2-dropdown--above .select2-results__options .select2-results__option,
  .node-type-activity-list .select2-container--open .select2-dropdown--below .select2-results__options .select2-results__option {
    display: block;
  }
}
.node-type-activity-list #ui-datepicker-div {
  background: #fff;
  border: 0;
  width: auto;
  text-align: center;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.15);
}
.node-type-activity-list #ui-datepicker-div #calendarHelper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  animation: appeare .8s;
}
.node-type-activity-list #ui-datepicker-div a.activity-select-helper {
  color: #f9423a;
  font-size: 16px;
  line-height: 20px;
  font-family: circularProBook, Arial, sans-serif;
  text-decoration: none;
  display: inline-block;
  padding: 15px 0;
}
.node-type-activity-list #ui-datepicker-div a.activity-select-helper:nth-child(2) {
  margin: 0 20px;
}
.node-type-activity-list #ui-datepicker-div a.activity-select-helper:hover {
  text-decoration: underline;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header {
  background: transparent;
  border: 0;
  font-family: circularProBook, Arial, sans-serif;
  color: #f9423a;
  margin-bottom: 20px;
  width: 100%;
  margin-top: 50px;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  opacity: 1;
  left: 35px;
  top: -2px;
  cursor: pointer;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span {
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-left-red.svg) no-repeat center;
  background-size: 16px;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next-hover,
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev-hover {
  background: transparent;
  border: 0;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  opacity: 1;
  right: 35px;
  top: -2px;
  cursor: pointer;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-right-red.svg) no-repeat center;
  background-size: 16px;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-calendar span {
  font-size: 14px;
  line-height: 10px;
  font-family: circularProBook, Arial, sans-serif;
  font-weight: 300;
  color: #f9423a;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
  font-size: 14px;
  line-height: 10px;
  font-family: circularProBook, Arial, sans-serif;
  font-weight: 300;
  color: #f9423a;
  background: transparent;
  border: 0;
  text-align: center;
  margin: 10px;
  padding: 8px 6px;
  border-radius: 50%;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-week-end .ui-state-default {
  background: #efefef;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-today .ui-state-default,
.node-type-activity-list #ui-datepicker-div .ui-datepicker-calendar .date-range-selected .ui-state-default {
  color: #ffffff;
  background: #f9423a;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane {
  border: 0;
  padding-bottom: 15px;
  text-align: left;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane button.ui-state-default {
  display: none;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .activity-select-helper {
  padding: 8px 0;
  margin-left: 15px;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button {
  font-family: circularProBook, Arial, sans-serif;
  font-size: 16px;
  margin: 0 10px 20px 0;
  width: 110px;
  height: 35px;
  line-height: 30px;
  transition: .4s;
  z-index: 1;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button span:last-child {
  display: none;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:hover {
  color: #ffffff;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:hover:after {
  width: 100%;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:hover span:first-child {
  display: none;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:hover span:last-child {
  display: block;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:focus,
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:focus span:last-child,
.node-type-activity-list #ui-datepicker-div .ui-datepicker-buttonpane .select-date-button:active span:last-child {
  display: none;
}
.node-type-activity-list .content.page {
  position: relative;
  overflow: hidden;
  min-height: 1254px;
}
.node-type-activity-list .view-header {
  display: none;
  font-size: 20px;
  line-height: 20px;
  font-family: CircularProBold, Arial, sans-serif;
  color: #f9423a;
  z-index: 4;
}
.node-type-activity-list .view-header.fixed {
  display: block;
  position: absolute;
  right: calc((100% - 1170px) / 2 + 25px);
  top: 50%;
}
.node-type-activity-list .view-filters {
  transition: padding 0.3s;
}
.node-type-activity-list .view-filters.fixed {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 60px;
  left: 0;
  padding: 20px 0;
  z-index: 4;
}
.node-type-activity-list .view-filters.fixed .views-exposed-form {
  padding: 10px 0;
}
.node-type-activity-list .view-filters.fixed .views-exposed-widgets {
  width: 1170px;
  margin: 0 auto;
}
.node-type-activity-list .view-empty {
  display: inline-block;
}
.node-type-activity-list .page-title {
  color: #f9423a;
  font-family: CircularProBold, Arial, sans-serif;
  font-size: 52px;
  line-height: 48px;
  margin-top: 0;
  margin-bottom: 23px;
}
.node-type-activity-list .field-name-body {
  color: #666666;
  font-size: 20px;
  line-height: 32px;
  font-family: circularProBook, Arial, sans-serif;
  z-index: 1;
  position: relative;
}
.node-type-activity-list .view-footer {
  content: "ateliers";
  position: absolute;
  font-size: 130px;
  line-height: 70px;
  color: #ececec;
  font-family: CircularProBold, Arial, sans-serif;
  transform: rotate(-90deg) translateX(-50%);
  letter-spacing: -5px;
  top: 120px;
  left: -540px;
  z-index: -1;
  width: 1000px;
  text-align: right;
}
.node-type-activity-list .activity-list-header-wrapper {
  width: 20%;
  display: inline-block;
  margin-top: 122px;
  margin-left: calc(((100vw - 1130px)/2)) ;
  max-width: 300px;
  margin-bottom: 270px;
}
.node-type-activity-list .activity-list-header {
  min-height: 670px;
}
.node-type-activity-list .activity-list-header .field-name-field-image {
  float: right;
  width: 55%;
  margin-right: 5%;
  max-width: 970px;
}
@media screen and (max-width: 475px) {
  .node-type-activity-list .activity-list-header .field-name-field-image .img-responsive {
    transform: scale(2);
    transform-origin: top;
  }
}
.node-type-activity-list .block-views {
  clear: both;
  width: 1170px;
  margin: 0 auto;
  position: relative;
  top: -262px;
  background: #ffffff url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) no-repeat 110% -81px;
}
.node-type-activity-list .block-views .view-activities-lists:before {
  content: '';
  background: url(/sites/all/themes/custom/alimentarium/images/picto_030_aubergine@1.5x.svg) no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  position: absolute;
  display: block;
  z-index: -1;
  top: 623px;
  left: -228px;
}
.node-type-activity-list .block-views .view-activities-lists:after {
  content: '';
  background: url(/sites/all/themes/custom/alimentarium/images/picto_047_fish@1.5x.svg) no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  position: absolute;
  display: block;
  z-index: -1;
  top: 1565px;
  right: -221px;
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .block-views .view-activities-lists:after,
  .node-type-activity-list .block-views .view-activities-lists:before {
    display: none;
  }
}
.node-type-activity-list .block-views .view-content.load-more-target {
  position: relative;
}
.node-type-activity-list .block-views .view-content.load-more-target:before {
  content: attr(data-category);
  position: absolute;
  left: -80px;
  top: 0;
  width: 85px;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  color: #ECECEC;
  font-size: 130px;
  font-weight: bold;
  letter-spacing: -5px;
  line-height: 70px;
  text-align: right;
  z-index: -1;
  white-space: nowrap;
  font-family: CircularProBold, Arial, sans-serif;
}
.node-type-activity-list .mobile-filters {
  display: none;
}
.node-type-activity-list .views-exposed-form {
  padding: 53px 0 45px;
}
.node-type-activity-list .views-exposed-form .select2-selection {
  border: 0;
  outline: none;
  background: transparent;
}
.node-type-activity-list .views-exposed-form .select2-container--default {
  width: auto !important;
}
.node-type-activity-list .views-exposed-form .select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
}
.node-type-activity-list .views-exposed-form .select2-selection__arrow {
  top: 4px;
  background: url(/sites/all/themes/custom/alimentarium/images/arrow.svg) no-repeat center;
  background-size: 10px;
}
.node-type-activity-list .views-exposed-form .select2-selection__arrow b {
  display: none;
}
.node-type-activity-list .views-exposed-form .views-exposed-widget {
  margin-right: 10px;
  cursor: pointer;
}
.node-type-activity-list .views-exposed-form .activity-datepicker {
  cursor: pointer;
}
.node-type-activity-list .views-exposed-form input,
.node-type-activity-list .views-exposed-form .select2-selection__rendered {
  position: relative;
  margin-right: 25px;
  padding: 6px 0px;
  border: 0;
  box-shadow: none;
  color: #f9423a;
  font-size: 16px;
  line-height: 20px;
  font-family: circularProBook, Arial, sans-serif;
  border-bottom: 2px solid red;
  opacity: 1;
}
.node-type-activity-list .views-exposed-form input::-webkit-input-placeholder {
  color: #f9423a;
  font-size: 16px;
  font-family: circularProBook, Arial, sans-serif;
}
.node-type-activity-list .views-exposed-form input::-moz-placeholder {
  color: #f9423a;
  font-size: 16px;
  font-family: circularProBook, Arial, sans-serif;
}
.node-type-activity-list .views-exposed-form input:-ms-input-placeholder {
  color: #f9423a;
  font-size: 16px;
  font-family: circularProBook, Arial, sans-serif;
}
.node-type-activity-list .views-exposed-form input:-moz-placeholder {
  color: #f9423a;
  font-size: 16px;
  font-family: circularProBook, Arial, sans-serif;
}
.node-type-activity-list .views-exposed-form .activity-datepicker {
  position: relative;
  float: left;
  padding-top: .5em;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .views-exposed-form .activity-datepicker.mob-selected:before {
    border-color: #f9423a;
  }
}
.node-type-activity-list .views-exposed-form .activity-datepicker.active:after {
  transform: rotate(180deg);
}
.node-type-activity-list .views-exposed-form #activity-datepicker {
  width: 0;
  margin: 0;
  opacity: 0;
}
.node-type-activity-list .views-exposed-form .activity-datepicker span.datePicker {
  position: relative;
  margin-right: 0;
  padding: 6px 0 8px;
  border: 0;
  box-shadow: none;
  color: #f9423a;
  font-size: 16px;
  line-height: 20px;
  font-family: circularProBook, Arial, sans-serif;
  border-bottom: 2px solid red;
  cursor: pointer;
}
.node-type-activity-list .views-exposed-form .activity-datepicker span.datePicker:after {
  content: '';
  position: absolute;
  top: 9px;
  right: -20px;
  height: 10px;
  width: 10px;
  background: url(/sites/all/themes/custom/alimentarium/images/arrow.svg) no-repeat 80% 60%;
  background-size: 10px;
  z-index: 0;
}
.node-type-activity-list .views-exposed-form .activity-datepicker.active span.datePicker:after {
  transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .views-exposed-form .activity-datepicker span.datePicker {
    color: #666666;
    border-color: #666666;
  }
  .node-type-activity-list .views-exposed-form .activity-datepicker span.datePicker:after {
    background: url(/sites/all/themes/custom/alimentarium/images/arrow-grey.svg) no-repeat center;
    background-size: 10px;
  }
}
.node-type-activity-list .views-row {
  display: inline-block;
  padding-right: 15px;
  vertical-align: top;
  margin-bottom: 55px;
}
.node-type-activity-list .view-content .activity-item {
  width: 273px;
  position: relative;
}
.node-type-activity-list .view-content .activity-item .date-sub-cat {
  z-index: 1;
}
.node-type-activity-list .view-content .activity-item .activity-calendar-container {
  z-index: 2;
}
@media screen and (max-width: 1170px) {
  .node-type-activity-list .activity-list {
    padding: 0 20px;
    overflow: hidden;
  }
  .node-type-activity-list .activity-list .activity-list-header-wrapper {
    margin-left: 0;
  }
  .node-type-activity-list .activity-list .view-header.fixed {
    right: 20px;
  }
  .node-type-activity-list .block-views {
    width: 875px;
    margin: 0 auto;
  }
  .node-type-activity-list .view-filters.fixed .views-exposed-widgets {
    width: 100%;
    padding-left: 20px;
  }
  .node-type-activity-list .view-header.fixed {
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .node-type-activity-list .field-name-field-subtitle {
    display: block;
    color: #ffffff;
    font-family: circularProBook, Arial, sans-serif;
    font-size: 14px;
    line-height: 17px;
    margin: 25px 0 0 -10px;
  }
  .node-type-activity-list .page-title {
    margin-top: 5px;
  }
  .node-type-activity-list #ui-datepicker-div {
    width: 100%;
    left: 0 !important;
    padding-bottom: 25px;
  }
  .node-type-activity-list .activity-list {
    height: 465px;
    overflow: hidden;
  }
  .node-type-activity-list .activity-list.filters-applied {
    height: 0;
    transition: height 1s;
  }
  .node-type-activity-list .activity-list-header-wrapper {
    width: 100%;
    margin: 0;
    padding: 30px 25px;
    max-width: none;
  }
  .node-type-activity-list .activity-list-header-wrapper .field-name-body {
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
  }
  .node-type-activity-list .view-activities-lists {
    min-height: 485px;
  }
  .node-type-activity-list .view-filters {
    width: 100%;
    float: none;
    z-index: 2;
    position: relative;
  }
  .node-type-activity-list .view-filters.open {
    position: absolute;
    top: -465px;
  }
  .node-type-activity-list .view-content.load-more-target {
    padding-top: 60px;
  }
  .node-type-activity-list .views-row {
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .node-type-activity-list .views-row .activity-item {
    width: 90%;
    margin: 0 auto;
  }
  .node-type-activity-list .views-row .activity-item .activity-text,
  .node-type-activity-list .views-row .activity-item .activity-card {
    height: auto;
    min-height: auto;
    padding: 0;
  }
  .node-type-activity-list .views-row .activity-item .activity-title {
    padding: 30px 0;
  }
  .node-type-activity-list .views-row .activity-item .reservation-btn,
  .node-type-activity-list .views-row .activity-item button,
  .node-type-activity-list .views-row .activity-item .activity-card-subtitle,
  .node-type-activity-list .views-row .activity-item .activity-description,
  .node-type-activity-list .views-row .activity-item .activity-stats {
    display: none;
  }
  .node-type-activity-list .views-row .activity-item .img-container a {
    display: block;
  }
  .node-type-activity-list .views-row .activity-item .img-responsive {
    width: 100%;
  }
  .node-type-activity-list .activity-list-header .field-name-field-image {
    float: none;
    position: absolute;
    width: 100%;
    margin: 0;
    z-index: -1;
    top: 0;
    min-height: 465px;
    left: 0;
    max-width: 100%;
  }
  .node-type-activity-list .views-exposed-form {
    display: none;
    padding: 0 20px 20vh;
    position: relative;
    z-index: 10;
    background: #ffffff;
    top: 55px;
    left: 0;
    height: 411px;
    width: 100%;
  }
  .node-type-activity-list .views-exposed-form:before {
    content: '';
    width: 100%;
    height: 56px;
    position: absolute;
    top: -55px;
    background: #ffffff;
    left: 0;
    z-index: -1;
  }
  .node-type-activity-list .views-exposed-form .views-exposed-widget {
    width: 100%;
    padding-top: 35px;
  }
  .node-type-activity-list .views-exposed-form .mobile-filters-close {
    background: url(/sites/all/themes/custom/alimentarium/images/close-red.svg) no-repeat center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -35px;
    right: 35px;
    cursor: pointer;
  }
  .node-type-activity-list .views-exposed-form .select2-selection__arrow {
    background: url(/sites/all/themes/custom/alimentarium/images/arrow-grey.svg) no-repeat center;
    background-size: 10px;
  }
  .node-type-activity-list .views-exposed-form .activity-datepicker:after {
    background: url(/sites/all/themes/custom/alimentarium/images/arrow-grey.svg) no-repeat 80% 55%;
    background-size: 10px;
  }
  .node-type-activity-list .views-exposed-form .activity-datepicker.mob-selected input,
  .node-type-activity-list .views-exposed-form .activity-datepicker.mob-selected span.datePicker {
    color: #f9423a;
    border-color: #f9423a;
  }
  .node-type-activity-list .views-exposed-form .activity-datepicker.mob-selected input:after,
  .node-type-activity-list .views-exposed-form .activity-datepicker.mob-selected span.datePicker:after {
    background: url(/sites/all/themes/custom/alimentarium/images/arrow.svg) no-repeat 80% 60%;
    background-size: 10px;
  }
  .node-type-activity-list .views-exposed-form input,
  .node-type-activity-list .views-exposed-form .select2-selection__rendered {
    color: #666666;
    border-color: #666666;
  }
  .node-type-activity-list .views-exposed-form .mob-selected .select2-selection__arrow {
    background: url(/sites/all/themes/custom/alimentarium/images/arrow.svg) no-repeat 80% 55%;
    background-size: 10px;
  }
  .node-type-activity-list .views-exposed-form .mob-selected .select2-selection__rendered {
    color: #f9423a;
    border-color: #f9423a;
  }
  .node-type-activity-list .views-exposed-form input::-webkit-input-placeholder {
    color: #666666;
  }
  .node-type-activity-list .views-exposed-form input::-moz-placeholder {
    color: #666666;
  }
  .node-type-activity-list .views-exposed-form input:-ms-input-placeholder {
    color: #666666;
  }
  .node-type-activity-list .views-exposed-form input:-moz-placeholder {
    color: #666666;
  }
  .node-type-activity-list .view-header {
    display: inline-block;
    padding: 20px 0 20px 20px;
    position: absolute;
    top: 0;
    z-index: 11;
    left: 0;
  }
  .node-type-activity-list .view-header:before {
    content: '[';
  }
  .node-type-activity-list .view-header:after {
    content: ']';
  }
  .node-type-activity-list .view-header.fixed {
    position: relative;
    top: 0;
    right: 0;
    background: transparent;
    width: calc(100% - 56px);
    padding: 15px 20px;
    z-index: 11;
  }
  .node-type-activity-list .view-empty {
    margin-top: 60px;
  }
  .node-type-activity-list .mobile-filters {
    display: inline-block;
    float: right;
    padding: 20px 50px 20px 0;
    font-size: 20px;
    line-height: 20px;
    color: #f9423a;
    font-family: circularProBook, Arial, sans-serif;
    background: url(/sites/all/themes/custom/alimentarium/images/web_001_mobilemenu@1.5x.svg) no-repeat 85% center;
    background-size: 16px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .node-type-activity-list .mobile-filters .is-filled-filters {
    display: none;
  }
  .node-type-activity-list .block-views {
    width: 100%;
    height: 100%;
    margin-top: 0;
    top: 0;
  }
  .node-type-activity-list .block-views.open {
    z-index: 2;
    top: 0;
    padding-bottom: 100px;
  }
  .node-type-activity-list .block-views .view-content.load-more-target .views-row-last {
    padding-bottom: 80px;
  }
  .node-type-activity-list .block-views .view-content.load-more-target .views-row-last > .activity-item {
    z-index: 1;
  }
  .node-type-activity-list .block-views .view-content.load-more-target .views-row-last > .activity-item:after {
    content: '';
    display: block;
    position: absolute;
    background: url(/sites/all/themes/custom/alimentarium/images/lemon.svg);
    width: 120px;
    height: 120px;
    background-size: contain;
    bottom: -75px;
    right: -46px;
    z-index: -1;
  }
  .node-type-activity-list .block-views.filtered .view-filters.open {
    position: relative;
    top: 0;
    min-height: 465px;
  }
  .node-type-activity-list .content.page {
    overflow: hidden;
    min-height: auto;
  }
  .node-type-activity-list .ui-datepicker table {
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 979px) {
  .node-type-activity-list .view-filters {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 767px) {
  .node-type-activity-list #activity-datepicker {
    outline: none;
    caret-color: transparent;
  }
  .node-type-activity-list #activity-datepicker:focus {
    outline: none;
    caret-color: transparent;
  }
}
@media screen and (max-width: 359px) {
  .node-type-activity-list #ui-datepicker-div {
    overflow: hidden;
  }
  .node-type-activity-list #ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
    font-size: 10px;
  }
}
.node-type-magazine-homepage .activity-card .img-container {
  height: auto;
}
.activity-card {
  padding-bottom: 30px;
  height: 500px;
}
.activity-card.icon .date-sub-cat {
  top: 20px;
}
.activity-card a:hover {
  text-decoration: none;
}
.activity-card .activity-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.activity-card .img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
  transition: 0.2s ease-out;
}
.activity-card .img-container img {
  transition: transform 0.5s;
}
.activity-card .img-container:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 1024px) {
  .activity-card .img-container:hover img {
    transform: scale(1);
  }
}
.activity-card .date-sub-cat {
  position: absolute;
  background: #fff;
  padding: 3px 20px 3px 10px;
  left: 0;
  top: 175px;
  box-shadow: 0 0 32px -9px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-out;
  z-index: 1;
}
.activity-card .date-sub-cat .date-range {
  color: #f9423a;
  font-size: 14px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 20px;
}
.activity-card .date-sub-cat .activity-theme {
  color: #666666;
  font-size: 14px;
  line-height: 18px;
  font-family: circularProBook, Arial, sans-serif;
}
.activity-card .activity-text {
  min-height: 150px;
}
.activity-card .activity-description {
  overflow: hidden;
  transition: opacity .2s linear;
}
.activity-card .activity-description .description {
  margin: 20px auto 0;
  font-size: 14px;
  color: #fff;
  width: 80%;
  font-family: circularProBook, Arial, sans-serif;
  text-align: center;
  opacity: 0;
  transition: opacity .2s linear;
}
.activity-card .activity-description .description p {
  display: inline;
}
.activity-card .activity-card-subtitle {
  position: absolute;
  top: 45px;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  font-size: 18px;
  line-height: 5px;
  font-family: CircularProBook, Arial, sans-serif;
  color: #ffffff;
}
.activity-card .activity-title {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  font-size: 24px;
  line-height: 24px;
  font-family: circularProBold, Arial, sans-serif;
  color: #ffffff;
  min-height: 50px;
}
@media screen and (max-width: 1024px) {
  .activity-card .activity-title {
    margin: 0;
    width: 100%;
    min-height: auto;
    padding: 10px 0;
  }
}
@media screen and (max-width: 375px) {
  .activity-card .activity-title {
    width: 95%;
    font-size: 23px;
  }
}
.activity-card .activity-stats {
  min-height: 120px;
  transition: opacity .2s linear;
}
.activity-card .activity-stats .activity-stats-wrapper {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 15px;
  position: absolute;
  opacity: 1;
  transition: opacity .2s linear;
}
.activity-card .price-wrapper,
.activity-card .age-wrapper {
  padding: 7px 0 6px 35px;
  min-height: 33px;
}
.activity-card .field-name-field-price,
.activity-card .field-name-field-minimal-age {
  margin: 0 auto;
}
.activity-card .field-name-field-price .field-items,
.activity-card .field-name-field-minimal-age .field-items {
  display: flex;
  justify-content: center;
}
.activity-card .field-name-field-price .field-item,
.activity-card .field-name-field-minimal-age .field-item {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-family: circularProBook, Arial, sans-serif;
  width: 120px;
  text-align: left;
}
.activity-card .adultes .age-wrapper,
.activity-card .erwachsene .age-wrapper,
.activity-card .adults .age-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/adults.svg) no-repeat 0 center;
  background-size: 25px;
}
.activity-card .enfants .age-wrapper,
.activity-card .kinder .age-wrapper,
.activity-card .children .age-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/children.svg) no-repeat 0 center;
  background-size: 25px;
}
.activity-card .familles .age-wrapper,
.activity-card .familien .age-wrapper,
.activity-card .families .age-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/family.svg) no-repeat 0 center;
  background-size: 30px;
}
.activity-card .groupes .age-wrapper,
.activity-card .gruppen .age-wrapper,
.activity-card .groups .age-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/group.svg) no-repeat 0 center;
  background-size: 25px;
}
.activity-card .ecoles .age-wrapper,
.activity-card .schulen .age-wrapper,
.activity-card .schools .age-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/school.svg) no-repeat 0 center;
  background-size: 25px;
}
.activity-card .professionnels .age-wrapper,
.activity-card .fachleute .age-wrapper,
.activity-card .professionals .age-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/professional.svg) no-repeat 0 center;
  background-size: 25px 25px;
}
.activity-card .price-wrapper {
  background: url(/sites/all/themes/custom/alimentarium/images/ticket-white.svg) no-repeat 0 center;
  background-size: 25px 25px;
}
.activity-card .reservation-btn .field-item {
  margin: 0 auto;
}
.activity-card .show-calendar,
.activity-card .reservation-btn {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
}
.activity-card .reservation-btn .field-items .field-item a,
.activity-card .show-calendar {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  margin: 0 auto;
  width: 165px;
  height: 35px;
  line-height: 35px;
  transition: .4s;
  z-index: 1;
}
.activity-card .reservation-btn .field-items .field-item a span:last-child,
.activity-card .show-calendar span:last-child {
  display: none;
}
.activity-card .reservation-btn .field-items .field-item a:after,
.activity-card .show-calendar:after {
  background: #ffffff;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.2s;
}
.activity-card .reservation-btn .field-items .field-item a:focus,
.activity-card .show-calendar:focus,
.activity-card .reservation-btn .field-items .field-item a:active,
.activity-card .show-calendar:active {
  transition: background-color 0.1s 0.2s, color 0.1s 0.2s;
  animation: anim-moema-1 0.2s forwards;
}
.activity-card .reservation-btn .field-items .field-item a:focus span:last-child,
.activity-card .show-calendar:focus span:last-child,
.activity-card .reservation-btn .field-items .field-item a:active span:last-child,
.activity-card .show-calendar:active span:last-child {
  display: none;
}
.activity-card .activity-text {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  padding: 65px 0 0;
  flex: 1;
  margin-bottom: 30px;
}
.activity-card .activity-icon {
  padding-top: 155px;
}
.activity-card .activity-icon .field-item {
  width: 100%;
}
.activity-card .activity-icon .field-item img {
  margin: 0 auto;
}
.activity-card .activity-info.desc-hover .img-container {
  height: 150px;
}
@media screen and (max-width: 1024px) {
  .activity-card .activity-info.desc-hover .img-container {
    height: 200px;
  }
}
.activity-card .activity-info.desc-hover .img-container img {
  transform: scale(1.2);
}
@media screen and (max-width: 1024px) {
  .activity-card .activity-info.desc-hover .img-container img {
    transform: scale(1);
  }
}
.activity-card .activity-info.desc-hover .date-sub-cat:not(.with-icon) {
  top: 135px;
}
.activity-card .activity-info.desc-hover .activity-description {
  max-height: 200px;
}
.activity-card .activity-info.desc-hover .activity-stats {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
}
.activity-card .activity-info.desc-hover .activity-stats .activity-stats-wrapper {
  opacity: 0;
}
.activity-card .activity-info.desc-hover .activity-text .description {
  opacity: 1;
}
.activity-card .activity-info.desc-hover .show-calendar,
.activity-card .activity-info.desc-hover .reservation-btn a {
  background: #ffffff;
  color: #f9423a;
  transition: background, color .4s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .activity-card .img-container {
    height: 350px;
  }
  .activity-card .date-sub-cat {
    top: 325px;
  }
}
/* Media Queries */
@media screen and (max-width: 1024px) {
  .activity-card.workshops .date-sub-cat {
    top: 165px;
  }
  .activity-card .activity-title {
    padding: 0 20px;
  }
  .activity-card .reservation-btn {
    position: static;
    padding: 0 0 25px;
  }
}
@media screen and (max-width: 979px) {
  .activity-card .img-container {
    height: 200px;
  }
  .activity-card .date-sub-cat {
    top: 170px;
  }
  .activity-card .reservation-btn {
    padding: 20px 0 25px;
  }
  .activity-card.show-calendar .date-sub-cat {
    box-shadow: none;
  }
}
.node.activity {
  position: relative;
  font-family: circularProBook, Arial, sans-serif;
  overflow: hidden;
}
.node.activity .main {
  position: relative;
}
.node.activity .main:before {
  content: '';
  background: url(/sites/all/themes/custom/alimentarium/images/fruit.svg) no-repeat;
  width: 120px;
  height: 120px;
  position: absolute;
  background-size: contain;
  left: -167px;
  top: 367px;
}
.node.activity .main:after {
  content: '';
  background: url(/sites/all/themes/custom/alimentarium/images/lemon.svg) no-repeat;
  width: 120px;
  height: 120px;
  position: absolute;
  background-size: contain;
  right: -167px;
  top: 975px;
}
.node.activity button.reservation-btn,
.node.activity .reservation-btn a {
  color: #ffffff;
  margin: 0 auto;
  border-color: #ffffff;
  z-index: 1;
  width: 222px;
  font-size: 16px;
  line-height: 35px;
}
.node.activity button.reservation-btn:after,
.node.activity .reservation-btn a:after {
  background: #ffffff;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.node.activity button.reservation-btn:hover,
.node.activity .reservation-btn a:hover {
  background: transparent;
  color: #f9423a;
}
.node.activity button.reservation-btn:hover:after,
.node.activity .reservation-btn a:hover:after {
  width: 100%;
}
.node.activity button.reservation-btn:focus,
.node.activity .reservation-btn a:focus,
.node.activity button.reservation-btn:active,
.node.activity .reservation-btn a:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.node.activity .activity-dashboard {
  display: none;
  font-size: 14px;
  font-family: circularProBook, Arial, sans-serif;
  font-weight: 300;
  line-height: 60px;
  color: #ffffff;
  background: #f9423a;
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 9;
}
.node.activity .activity-dashboard.show {
  display: block;
}
.node.activity .activity-dashboard .dashboard-info {
  position: relative;
}
.node.activity .activity-dashboard .dashboard-info.container {
  display: flex;
  align-items: stretch;
  min-height: 85px;
}
.node.activity .activity-dashboard .reservation-dates,
.node.activity .activity-dashboard .reservation-time,
.node.activity .activity-dashboard .reservation-age,
.node.activity .activity-dashboard .reservation-price {
  align-self: center;
}
.node.activity .activity-dashboard .reservation-btn-wrapper {
  flex-grow: 1;
  text-align: right;
  display: inline-block;
  min-height: 85px;
}
.node.activity .activity-dashboard .reservation-btn {
  display: inline-block;
  width: 175px;
  line-height: 0px;
  right: 0;
  padding: 24px 0;
  top: 14px;
}
.node.activity .activity-dashboard .reservation-dates {
  display: inline-block;
  min-width: 200px;
  vertical-align: middle;
}
.node.activity .activity-dashboard .reservation-dates .reservation-dates-wrapper {
  line-height: 20px;
  padding: 15px 45px 15px 40px;
  background: url(/sites/all/themes/custom/alimentarium/images/calendar-white.svg) no-repeat 0 center;
  background-size: 27px;
}
.node.activity .activity-dashboard .reservation-time {
  display: inline-block;
  padding: 15px 40px 15px 40px;
  background: url(/sites/all/themes/custom/alimentarium/images/hours-white.svg) no-repeat 0 center;
  background-size: 27px;
  min-width: 130px;
  max-width: 200px;
  line-height: 20px;
}
.node.activity .activity-dashboard .reservation-age {
  display: inline-block;
  padding: 15px 40px 15px 40px;
  background: url(/sites/all/themes/custom/alimentarium/images/children.svg) no-repeat 0 center;
  background-size: 27px;
  vertical-align: middle;
  min-width: 215px;
  line-height: 30px;
  align-self: center;
}
.node.activity .activity-dashboard .reservation-age.adultes,
.node.activity .activity-dashboard .reservation-age.erwachsene,
.node.activity .activity-dashboard .reservation-age.adults {
  background: url(/sites/all/themes/custom/alimentarium/images/adults.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .activity-dashboard .reservation-age.enfants,
.node.activity .activity-dashboard .reservation-age.kinder,
.node.activity .activity-dashboard .reservation-age.children {
  background: url(/sites/all/themes/custom/alimentarium/images/children.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .activity-dashboard .reservation-age.familles,
.node.activity .activity-dashboard .reservation-age.familien,
.node.activity .activity-dashboard .reservation-age.families {
  background: url(/sites/all/themes/custom/alimentarium/images/family.svg) no-repeat 0 center;
  background-size: 30px;
}
.node.activity .activity-dashboard .reservation-age.groupes,
.node.activity .activity-dashboard .reservation-age.gruppen,
.node.activity .activity-dashboard .reservation-age.groups {
  background: url(/sites/all/themes/custom/alimentarium/images/group.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .activity-dashboard .reservation-age.ecoles,
.node.activity .activity-dashboard .reservation-age.schulen,
.node.activity .activity-dashboard .reservation-age.schools {
  background: url(/sites/all/themes/custom/alimentarium/images/school.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .activity-dashboard .reservation-age.professionnels,
.node.activity .activity-dashboard .reservation-age.fachleute,
.node.activity .activity-dashboard .reservation-age.professionals {
  background: url(/sites/all/themes/custom/alimentarium/images/professional.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .activity-dashboard .reservation-price {
  display: inline-block;
  padding: 15px 30px 17px 40px;
  background: url(/sites/all/themes/custom/alimentarium/images/ticket-white.svg) no-repeat 0 center;
  background-size: 27px 27px;
  min-width: 130px;
  line-height: 20px;
}
.node.activity .activity-dashboard .reservation-text {
  color: #666666;
}
.node.activity .activity-dashboard .dashboard-share {
  display: inline-block;
  padding: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/share.svg) no-repeat 0 center;
  background-size: 27px;
  width: 30px;
  vertical-align: middle;
  margin: 0 60px 0;
  cursor: pointer;
  position: relative;
}
.node.activity .activity-dashboard .dashboard-share .social-bar {
  height: 0;
  position: absolute;
  top: 100%;
  left: -88px;
  background: #fff;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  transition: .4s;
}
.node.activity .activity-dashboard .dashboard-share .social-bar.active {
  height: auto;
  padding: 20px 10px 0;
  border: 1px solid #f9423a;
}
.node.activity .activity-dashboard .dashboard-share .social-bar .sharethis-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.node.activity .activity-dashboard .dashboard-share span {
  padding: 18px 18px 18px 0;
  width: 18px;
  height: 18px;
}
.node.activity .activity-dashboard .dashboard-share span:before {
  color: #f9423a;
}
.node.activity .activity-dashboard .dashboard-share span:after {
  content: '';
  color: #fff;
  position: absolute;
  left: 51%;
  top: 28%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  height: 36px;
  width: 36px;
}
.node.activity .activity-dashboard .dashboard-share span:hover:before {
  color: #ffffff;
}
.node.activity .activity-dashboard .dashboard-share span:hover:after {
  background: #f9423a;
}
.node.activity .activity-image {
  width: 56%;
  float: right;
  height: 730px;
  overflow: hidden;
}
.node.activity .activity-image .field-item.even {
  height: 730px;
}
.node.activity .activity-image .field-item.even img {
  min-height: 100%;
}
.node.activity .activity-sub-info {
  width: 25%;
  position: relative;
  top: 100px;
}
.node.activity .activity-sub-info .title {
  font-family: circularProBold, Arial, sans-serif;
  color: #f9423a;
  line-height: 48px;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-left: 25px;
  margin-top: 20px;
}
.node.activity .activity-sub-info .activity-description {
  font-size: 20px;
  line-height: 32px;
  color: #666666;
  margin-left: 25px;
}
.node.activity .activity-sub-cat {
  margin: 57px 0 10px -25px;
  font-size: 18px;
  line-height: 36px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.node.activity .activity-reservation {
  position: relative;
  clear: both;
}
.node.activity .activity-reservation .reservation-wrapper {
  position: absolute;
  top: -147px;
  right: 0;
  width: 370px;
}
.node.activity .activity-reservation .reservation-header {
  background: #f9423a;
  height: 146px;
}
.node.activity .activity-reservation .title {
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
  font-family: circularProBold, Arial, sans-serif;
  text-align: center;
  padding: 30px 0 10px;
  margin-bottom: 12px;
}
.node.activity .activity-reservation .reservation-info {
  font-family: circularProBook, Arial, sans-serif;
  font-size: 16px;
  color: #f9423a;
  padding: 20px 42px;
  border: 1px solid #f9423a;
}
.node.activity .activity-reservation .reservation-info > div {
  padding: 15px 0 15px 60px;
}
.node.activity .activity-reservation .reservation-info .reservation-dates {
  background: url(/sites/all/themes/custom/alimentarium/images/calendar.svg) no-repeat 0 center;
  background-size: 27px;
}
.node.activity .activity-reservation .reservation-info .reservation-dates .field-name-field-dates,
.node.activity .activity-reservation .reservation-info .reservation-dates .field-items,
.node.activity .activity-reservation .reservation-info .reservation-dates .date-display-range,
.node.activity .activity-reservation .reservation-info .reservation-dates .field-item {
  display: inline;
}
.node.activity .activity-reservation .reservation-info .reservation-time {
  background: url(/sites/all/themes/custom/alimentarium/images/hours.svg) no-repeat 0 center;
  background-size: 27px;
}
.node.activity .activity-reservation .reservation-info .reservation-persones {
  background: url(/sites/all/themes/custom/alimentarium/images/group-red.svg) no-repeat 0 center;
  background-size: 27px;
}
.node.activity .activity-reservation .reservation-info .reservation-price {
  background: url(/sites/all/themes/custom/alimentarium/images/ticket.svg) no-repeat 0 center;
  background-size: 27px;
}
.node.activity .reservation-age.adultes,
.node.activity .reservation-age.erwachsene,
.node.activity .reservation-age.adults {
  background: url(/sites/all/themes/custom/alimentarium/images/adults-red.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .reservation-age.enfants,
.node.activity .reservation-age.kinder,
.node.activity .reservation-age.children {
  background: url(/sites/all/themes/custom/alimentarium/images/children-red.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .reservation-age.familles,
.node.activity .reservation-age.familien,
.node.activity .reservation-age.families {
  background: url(/sites/all/themes/custom/alimentarium/images/family-red.svg) no-repeat 0 center;
  background-size: 30px;
}
.node.activity .reservation-age.groupes,
.node.activity .reservation-age.gruppen,
.node.activity .reservation-age.groups {
  background: url(/sites/all/themes/custom/alimentarium/images/group-red.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .reservation-age.ecoles,
.node.activity .reservation-age.schulen,
.node.activity .reservation-age.schools {
  background: url(/sites/all/themes/custom/alimentarium/images/school-red.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .reservation-age.professionnels,
.node.activity .reservation-age.fachleute,
.node.activity .reservation-age.professionals {
  background: url(/sites/all/themes/custom/alimentarium/images/professional-red.svg) no-repeat 0 center;
  background-size: 25px;
}
.node.activity .activity-intro {
  max-width: 637px;
  font-size: 20px;
  color: #666666;
  line-height: 32px;
}
.node.activity .basic-content,
.node.activity .activity-intro,
.node.activity .activity-content {
  clear: both;
  font-size: 20px;
  font-weight: 300;
  color: #666666;
  line-height: 32px;
}
.node.activity .basic-content .red-title-paragraph,
.node.activity .activity-intro .red-title-paragraph,
.node.activity .activity-content .red-title-paragraph {
  margin: 87px 0 30px;
}
.node.activity .basic-content .social-bar,
.node.activity .activity-intro .social-bar,
.node.activity .activity-content .social-bar {
  position: relative;
  top: 48px;
  font-size: 14px;
}
.node.activity .basic-content p,
.node.activity .activity-intro p,
.node.activity .activity-content p {
  margin-bottom: 23px;
}
.node.activity .basic-content ul,
.node.activity .activity-intro ul,
.node.activity .activity-content ul {
  list-style: none;
  padding: 0;
}
.node.activity .basic-content ul li,
.node.activity .activity-intro ul li,
.node.activity .activity-content ul li {
  position: relative;
  padding-left: 30px;
  margin-left: 30px;
}
.node.activity .basic-content ul li:before,
.node.activity .activity-intro ul li:before,
.node.activity .activity-content ul li:before {
  content: '-';
  position: absolute;
  left: 0;
  color: #f9423a;
  margin: 0 15px;
}
.node.activity .activity-gallery {
  margin-top: -368px;
}
.node.activity .activity-gallery:after {
  content: '';
  display: block;
  clear: both;
}
.node.activity .activity-gallery .field-item.even,
.node.activity .activity-gallery .field-item.odd {
  width: 825px;
  height: 549px;
}
.node.activity .activity-gallery .field-item.even {
  float: right;
  margin-right: -50px;
  margin-top: 43px;
}
.node.activity .activity-gallery .field-item.odd {
  float: left;
  margin-top: 43px;
  margin-left: -60px;
}
.node.activity .activity-subcat-info {
  margin-bottom: 40px;
}
.node.activity .activity-subcat-info .activity-sub-cat {
  font-size: 20px;
  line-height: 25px;
  color: #f9423a;
  text-transform: none;
  margin-left: 0;
  margin-bottom: 20px;
}
.node.activity .activity-subcat-info .activity-sub-cat-desc {
  font-size: 18px;
  line-height: 26px;
  color: #666666;
  width: 75%;
}
.node.activity .instagram-posts {
  margin: 120px 0;
}
.node.activity .instagram-posts .field-name-field-instagram-posts {
  display: inline-block;
  vertical-align: top;
}
.node.activity .instagram-posts .field-name-field-instagram-posts > .field-items > .field-item {
  display: inline-block;
  max-width: 273px;
  vertical-align: top;
  height: 273px;
  margin-right: 20px;
  position: relative;
}
.node.activity .instagram-posts .field-name-field-instagram-posts > .field-items > .field-item:after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
  width: 35px;
  height: 35px;
  background: url(/sites/all/themes/custom/alimentarium/images/instagram.svg) no-repeat center;
  background-size: 28px;
}
.node.activity .instagram-posts .link-to-instagram {
  background: url(/sites/all/themes/custom/alimentarium/images/plus.svg) no-repeat center;
  display: inline-block;
  width: 273px;
  height: 273px;
  border: 1px solid #ECECEC;
  background-size: 48px;
  position: relative;
}
.node.activity .instagram-posts .link-to-instagram:after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
  width: 35px;
  height: 35px;
  background: url(/sites/all/themes/custom/alimentarium/images/instagram-red.svg) no-repeat center;
  background-size: 28px;
}
.node.activity .social-bar {
  width: 250px;
}
@media screen and (max-width: 979px) {
  .node.activity .sharethis-buttons {
    width: 265px;
    padding: 30px 20px 0;
    display: block;
  }
}
.node.activity .sharethis-buttons .sharethis-wrapper span {
  padding: 18px 18px 18px 0;
  width: 18px;
  height: 18px;
  margin: 0 9px;
}
.node.activity .sharethis-buttons .sharethis-wrapper span:before {
  color: #f9423a;
}
.node.activity .sharethis-buttons .sharethis-wrapper span:after {
  content: '';
  color: #fff;
  position: absolute;
  left: 51%;
  top: 28%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  height: 36px;
  width: 36px;
}
.node.activity .sharethis-buttons .sharethis-wrapper span:hover:before {
  color: #ffffff;
  z-index: 2;
}
.node.activity .sharethis-buttons .sharethis-wrapper span:hover:after {
  background: #f9423a;
  z-index: 1;
}
.node.activity .tripadvisor-comment {
  padding: 100px 0 10%;
  background: url(/sites/all/themes/custom/alimentarium/images/cookhat.svg) 5% 5% no-repeat, url(/sites/all/themes/custom/alimentarium/images/pot.svg) center 100% no-repeat;
  background-size: 90px;
  position: relative;
  margin-left: -100px;
}
.node.activity .tripadvisor-comment:before {
  content: '';
  background: url(/sites/all/themes/custom/alimentarium/images/tomato.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  width: 80px;
  height: 80px;
  top: 284px;
}
.node.activity .tripadvisor-comment .tripadvisor {
  max-width: 921px;
  margin: 22px 0 0 199px;
}
.node.activity .tripadvisor-comment .tripadvisor div {
  display: inline;
}
.node.activity .tripadvisor-comment .adv-body {
  color: #f9423a;
  font-family: circularProBold, Arial, sans-serif;
  font-size: 36px;
  line-height: 46px;
}
.node.activity .tripadvisor-comment .adv-author {
  font-family: circularProBook, Arial, sans-serif;
  color: #666666;
  font-size: 20px;
  line-height: 32px;
}
.node.activity div.activities-cross-selling {
  padding-top: 150px;
  z-index: 0;
  position: relative;
}
.node.activity div.activities-cross-selling div.container {
  position: relative;
}
.node.activity div.activities-cross-selling div.container:after {
  content: '';
  background: url(/sites/all/themes/custom/alimentarium/images/pictograms2.svg) no-repeat;
  background-size: contain;
  width: 140%;
  margin: 0 auto;
  position: absolute;
  height: 549px;
  left: -20%;
  top: -140px;
  z-index: -1;
}
.node.activity div.activities-cross-selling div.container:before {
  left: -116px !important;
}
.node.activity div.activities-cross-selling div.container > .row {
  margin-left: 60px;
  width: 100%;
}
.node.activity div.activities-cross-selling div.container > .row .field-collection-view-final {
  padding: 0 15px;
}
.node.activity div.activities-cross-selling div.container .activities-cross-selling-title {
  color: #ECECEC;
  position: absolute;
  left: 15px;
  top: -130px;
  font-size: 130px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 70px;
  letter-spacing: -5px;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
}
.node.activity .block-activity-items .slick-dots {
  left: 0;
}
.node-type-activities-home .activity-home {
  background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) -5% 415px no-repeat;
  background-size: 1400px;
}
.node-type-activities-home .activity-home-header {
  padding: 100px 0 272px;
}
.node-type-activities-home .activity-home-header > .container {
  position: relative;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon,
.node-type-activities-home .activity-home-header > .container .mixer_icon,
.node-type-activities-home .activity-home-header > .container .gamepad_icon,
.node-type-activities-home .activity-home-header > .container .steam_icon,
.node-type-activities-home .activity-home-header > .container .pizza_icon,
.node-type-activities-home .activity-home-header > .container .speechbubble {
  display: block;
  position: absolute;
  z-index: 0;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon.fruit_icon,
.node-type-activities-home .activity-home-header > .container .mixer_icon.fruit_icon,
.node-type-activities-home .activity-home-header > .container .gamepad_icon.fruit_icon,
.node-type-activities-home .activity-home-header > .container .steam_icon.fruit_icon,
.node-type-activities-home .activity-home-header > .container .pizza_icon.fruit_icon,
.node-type-activities-home .activity-home-header > .container .speechbubble.fruit_icon {
  background: url(/sites/all/themes/custom/alimentarium/images/fruit.svg) center no-repeat;
  bottom: 59px;
  right: 228px;
  background-size: contain;
  width: 70px;
  height: 70px;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon.mixer_icon,
.node-type-activities-home .activity-home-header > .container .mixer_icon.mixer_icon,
.node-type-activities-home .activity-home-header > .container .gamepad_icon.mixer_icon,
.node-type-activities-home .activity-home-header > .container .steam_icon.mixer_icon,
.node-type-activities-home .activity-home-header > .container .pizza_icon.mixer_icon,
.node-type-activities-home .activity-home-header > .container .speechbubble.mixer_icon {
  background: url(/sites/all/themes/custom/alimentarium/images/mixer.svg) center no-repeat;
  bottom: 3px;
  right: 487px;
  background-size: contain;
  width: 80px;
  height: 80px;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon.gamepad_icon,
.node-type-activities-home .activity-home-header > .container .mixer_icon.gamepad_icon,
.node-type-activities-home .activity-home-header > .container .gamepad_icon.gamepad_icon,
.node-type-activities-home .activity-home-header > .container .steam_icon.gamepad_icon,
.node-type-activities-home .activity-home-header > .container .pizza_icon.gamepad_icon,
.node-type-activities-home .activity-home-header > .container .speechbubble.gamepad_icon {
  background: url(/sites/all/themes/custom/alimentarium/images/gamepad.svg) center no-repeat;
  bottom: -107px;
  right: 318px;
  background-size: contain;
  width: 79px;
  height: 70px;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon.steam_icon,
.node-type-activities-home .activity-home-header > .container .mixer_icon.steam_icon,
.node-type-activities-home .activity-home-header > .container .gamepad_icon.steam_icon,
.node-type-activities-home .activity-home-header > .container .steam_icon.steam_icon,
.node-type-activities-home .activity-home-header > .container .pizza_icon.steam_icon,
.node-type-activities-home .activity-home-header > .container .speechbubble.steam_icon {
  background: url(/sites/all/themes/custom/alimentarium/images/steam.svg) center no-repeat;
  bottom: -181px;
  right: 607px;
  background-size: contain;
  width: 62px;
  height: 70px;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon.pizza_icon,
.node-type-activities-home .activity-home-header > .container .mixer_icon.pizza_icon,
.node-type-activities-home .activity-home-header > .container .gamepad_icon.pizza_icon,
.node-type-activities-home .activity-home-header > .container .steam_icon.pizza_icon,
.node-type-activities-home .activity-home-header > .container .pizza_icon.pizza_icon,
.node-type-activities-home .activity-home-header > .container .speechbubble.pizza_icon {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_043_pizza@1.5x.svg) center no-repeat;
  background-size: contain;
  bottom: -107px;
  right: 848px;
  width: 79px;
  height: 70px;
}
.node-type-activities-home .activity-home-header > .container .fruit_icon.speechbubble,
.node-type-activities-home .activity-home-header > .container .mixer_icon.speechbubble,
.node-type-activities-home .activity-home-header > .container .gamepad_icon.speechbubble,
.node-type-activities-home .activity-home-header > .container .steam_icon.speechbubble,
.node-type-activities-home .activity-home-header > .container .pizza_icon.speechbubble,
.node-type-activities-home .activity-home-header > .container .speechbubble.speechbubble {
  background: url(/sites/all/themes/custom/alimentarium/images/speechbubble.svg) center no-repeat;
  background-size: contain;
  bottom: -76px;
  left: 390px;
  width: 79px;
  height: 70px;
}
.node-type-activities-home .activity-home-header-wrapper {
  margin-left: 25px;
  z-index: 2;
}
.node-type-activities-home .activity-home-header-wrapper .page-title {
  color: #f9423a;
  font-size: 52px;
  line-height: 48px;
  font-family: CircularProBold, Arial, sans-serif;
  margin-bottom: 15px;
}
.node-type-activities-home .activity-home-header-wrapper .field-name-field-subtitle {
  display: none;
}
.node-type-activities-home .activity-home-header-wrapper .field-name-body {
  width: 30%;
  color: #666666;
  font-size: 20px;
  line-height: 32px;
  font-family: CircularProBook, Arial, sans-serif;
}
@media screen and (max-width: 1024px) {
  .node.activity {
    background: none;
  }
  .node.activity .container.main {
    width: 100%;
    padding: 0;
    margin: 0 0 100px 0;
  }
  .node.activity .container.main .row {
    margin: 0;
  }
  .node.activity .activity-dashboard {
    display: none !important;
  }
  .node.activity .block-activity-items {
    padding: 0 0 60px 25px;
  }
  .node.activity .activity-image {
    width: 100%;
  }
  .node.activity .activity-sub-info {
    width: 100%;
    position: absolute;
    top: 40px;
    padding: 20px 25px;
  }
  .node.activity .activity-sub-info .title {
    margin-bottom: 10px;
  }
  .node.activity .activity-sub-info .activity-description {
    color: #ffffff;
  }
  .node.activity .activity-reservation .reservation-wrapper {
    position: static;
    width: 100%;
    border: 0;
  }
  .node.activity .activity-reservation .reservation-header {
    height: 90px;
    display: flex;
    align-items: center;
  }
  .node.activity .activity-reservation .reservation-header .reservation-btn {
    margin: 0 auto;
  }
  .node.activity .activity-reservation .reservation-header .title {
    display: none;
  }
  .node.activity .activity-reservation .reservation-info {
    border: 0;
    padding: 20px 25px;
  }
  .node.activity .activity-reservation .reservation-info:after {
    content: '';
    display: block;
    margin-top: 25px;
    width: 100%;
    height: 1px;
    background: #efefef;
  }
  .node.activity .activity-sub-cat {
    position: absolute;
    top: 25px;
    left: 20px;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
  }
  .node.activity .activity-intro {
    width: 100%;
    padding: 0 40px;
  }
  .node.activity .activity-content {
    margin: 75px 40px 0;
  }
  .node.activity .activity-content .social-bar {
    position: static;
    top: 0;
  }
  .node.activity .activity-content .red-title-paragraph {
    padding: 0 20px;
    width: 100%;
  }
  .node.activity .activity-content .red-title-paragraph div {
    margin-left: 20px;
  }
  .node.activity .activity-content .block-text-image {
    padding: 0 20px;
  }
  .node.activity .activity-gallery {
    margin: 55px 0 155px 0;
  }
  .node.activity .activity-gallery .field-item.even,
  .node.activity .activity-gallery .field-item.odd {
    width: 82%;
  }
  .node.activity .activity-subcat-info {
    margin: 0 20px 40px;
  }
  .node.activity .activity-subcat-info .activity-sub-cat {
    position: static;
  }
  .node.activity .activity-subcat-info .activity-sub-cat-desc {
    width: 100%;
    padding: 0 20px;
  }
  .node.activity .instagram-posts {
    display: none;
  }
  .node.activity .block-activity-header,
  .node.activity .tripadvisor-comment {
    display: none;
  }
  .node.activity .social-bar {
    margin-top: 0;
  }
  .node.activity .social-bar .sharethis-buttons {
    width: 265px;
    padding: 30px 20px 0;
    display: block;
  }
  .node.activity div.activities-cross-selling {
    padding-top: 0;
  }
  .node.activity div.activities-cross-selling:before {
    z-index: -1;
    top: -60px;
    left: 0;
    font-size: 90px;
    line-height: 70px;
    letter-spacing: -3.5px;
    transform: none;
  }
  .node.activity div.activities-cross-selling div.container > .row {
    margin-left: 0;
  }
  .node.activity div.activities-cross-selling div.container .activities-cross-selling-title {
    top: -100px;
  }
  .node.activity div.activities-cross-selling div.container:before {
    left: -240px !important;
  }
  .node-type-activities-home {
    background: none;
  }
  .node-type-activities-home .activity-home {
    background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) -502px 244px no-repeat;
    background-size: 1400px;
  }
  .node-type-activities-home .activity-home-header {
    padding: 70px 0 272px;
    margin-bottom: 100px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.fruit_icon {
    bottom: 50%;
    right: 0;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.mixer_icon {
    bottom: 32%;
    right: 25%;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.gamepad_icon {
    bottom: -5%;
    right: 10%;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.steam_icon {
    bottom: -30%;
    right: 35%;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.pizza_icon {
    bottom: -20%;
    right: 60%;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .steam_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .speechbubble.speechbubble {
    bottom: 20%;
    left: 40%;
  }
  .node-type-activities-home .activity-home-header-wrapper {
    width: 100%;
  }
  .node-type-activities-home .activity-home-header-wrapper .field-name-field-subtitle {
    display: block;
    margin-left: -20px;
    font-size: 14px;
    color: #666666;
    font-family: CircularProBold, Arial, sans-serif;
  }
}
@media screen and (max-width: 1440px) {
  .node.activity {
    background: none;
  }
}
@media screen and (max-width: 768px) {
  .node.activity .activity-image {
    height: 465px;
  }
  .node.activity .activity-image .field-item.even {
    height: 465px;
  }
  .node.activity .activity-image .field-item.even img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .node.activity .activity-gallery .field-item.even,
  .node.activity .activity-gallery .field-item.odd {
    width: 82%;
    margin-top: 43px;
    height: auto;
  }
  .node.activity .activity-gallery .field-item.even.odd,
  .node.activity .activity-gallery .field-item.odd.odd {
    margin-left: 0;
  }
  .node.activity .activity-gallery .field-item.even.even,
  .node.activity .activity-gallery .field-item.odd.even {
    margin-right: 0;
  }
  .node.activity .activity-intro {
    margin: 10px 0;
  }
  .node.activity div.activities-cross-selling div.container {
    padding: 0;
  }
  .node.activity .activity-content ul li {
    margin-left: 0;
  }
  .node.activity .activity-content .block-text-image {
    padding: 0;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble {
    z-index: 0;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .fruit_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.gamepad_icon {
    display: none;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.mixer_icon {
    bottom: -72px;
    right: 7px;
    width: 72px;
    height: 72px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.steam_icon {
    width: 55px;
    height: 55px;
    bottom: -213px;
    left: 57%;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.pizza_icon {
    width: 59px;
    height: 59px;
    bottom: -158px;
    left: 15px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .steam_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .speechbubble.speechbubble {
    width: 59px;
    height: 57px;
    bottom: -129px;
    left: 35%;
  }
  .node-type-activities-home .activity-home-header-wrapper {
    width: 80%;
    margin: 0 45px;
  }
  .node-type-activities-home .activity-home-header-wrapper div.field-name-body {
    width: 80%;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
  }
  .node-type-activities-home .activity-home-content .activity-blocks .field-collection-view {
    margin-left: 50px;
  }
  .node-type-activities-home .activity-home-content .block-activity-header .field-collection-view {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 1170px) {
  .node.activity .activity-image {
    width: 57%;
  }
  .node.activity .activity-image .field-item.even {
    height: 730px;
  }
  .node.activity .activity-image .field-item.even img {
    max-width: none;
  }
  .node.activity .activity-content .embeddedContent {
    margin-left: 0;
  }
  .node.activity .activity-gallery .field-item.even {
    margin-right: 0;
  }
  .node.activity .activity-gallery .field-item.odd {
    margin-left: 0;
  }
  .node.activity div.activities-cross-selling div.container:before {
    left: -240px !important;
  }
  .node.activity div.activities-cross-selling div.container > .row {
    margin-left: 0;
  }
}
@media screen and (max-width: 1169px) and (min-width: 1025px) {
  .node.activity .activity-dashboard.show .dashboard-info.container {
    display: flex;
    width: 95%;
  }
  .node.activity .activity-dashboard.show .dashboard-info.container .activity-calendar-container.dashboard {
    right: 0;
  }
  .node.activity .activity-dashboard.show .dashboard-info.container .date-display-range,
  .node.activity .activity-dashboard.show .dashboard-info.container .reservation-time,
  .node.activity .activity-dashboard.show .dashboard-info.container .reservation-age .field-item.even {
    line-height: 20px;
  }
  .node.activity .activity-dashboard.show .dashboard-info.container .dashboard-share {
    width: 40px;
    padding: 0 30px;
    margin: 0 30px;
  }
  .node.activity .activity-dashboard.show .reservation-dates {
    min-width: 150px;
  }
  .node.activity .activity-dashboard.show .reservation-age {
    min-width: 165px;
  }
  .node.activity .activity-dashboard.show .reservation-price {
    padding: 15px 5px 17px 40px;
  }
  .node.activity activity-intro {
    max-width: 610px;
  }
  .node.activity .activity-image {
    width: 65%;
  }
  .node.activity .activity-image .field-item.even {
    height: 730px;
  }
  .node.activity .activity-image .field-item.even img {
    max-width: none;
  }
  .node.activity .main {
    width: 100%;
  }
  .node.activity .activity-content .embeddedContent {
    margin-left: 0;
  }
  .node.activity .activity-content .red-title-paragraph {
    margin-left: 20px;
  }
  .node.activity .activity-content .block-text-image {
    margin-left: 20px;
  }
  .node.activity .activity-gallery .field-item.even,
  .node.activity .activity-gallery .field-item.odd {
    width: 69%;
    height: auto;
  }
  .node.activity .activity-gallery .field-item.even {
    margin-right: 0;
  }
  .node.activity .activity-gallery .field-item.odd {
    margin-left: 0;
  }
  .node.activity .tripadvisor-comment .tripadvisor {
    max-width: 70%;
  }
  .node.activity div.activities-cross-selling div.container:before {
    left: -240px !important;
  }
  .node.activity div.activities-cross-selling div.container > .row {
    margin-left: 0;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.fruit_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.fruit_icon {
    bottom: 89px;
    right: 26px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.mixer_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.mixer_icon {
    bottom: 32px;
    right: 287px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.gamepad_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.gamepad_icon {
    bottom: -76px;
    right: 115px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.steam_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.steam_icon {
    bottom: -149px;
    right: 410px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .steam_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.pizza_icon,
  .node-type-activities-home .activity-home-header > .container .speechbubble.pizza_icon {
    bottom: -82px;
    right: 655px;
  }
  .node-type-activities-home .activity-home-header > .container .fruit_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .mixer_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .gamepad_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .steam_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .pizza_icon.speechbubble,
  .node-type-activities-home .activity-home-header > .container .speechbubble.speechbubble {
    bottom: -41px;
    left: 382px;
  }
}
.node-type-activities-home .content.clearfix.page {
  position: relative;
  overflow: hidden;
}
.node-type-activities-home .block-activity-items .field-items {
  justify-content: start;
}
.node-type-activities-home .block-activity-items .activity-stats .field-items {
  justify-content: center;
}
.node-type-activities-home .activity-home-content .activity-blocks {
  position: relative;
}
.node-type-activities-home .activity-home-content .activity-blocks .block-activity-items {
  padding-top: 7px;
  padding-bottom: 170px;
}
.node-type-activities-home .activity-home-content .activity-blocks:before {
  content: '';
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  background: url(/sites/all/themes/custom/alimentarium/images/pot.svg) center no-repeat;
  background-size: contain;
  left: -223px;
  top: 469px;
}
.node-type-activities-home .activity-home-content .activity-blocks:after {
  content: '';
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  background: url(/sites/all/themes/custom/alimentarium/images/pepper.svg) center no-repeat;
  background-size: contain;
  right: -227px;
  top: 1431px;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item {
  position: relative;
  z-index: 1;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item .activity-block-title {
  display: block;
  position: absolute;
  left: -55px;
  top: -20px;
  font-size: 130px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 70px;
  letter-spacing: -5px;
  transform: rotate(-180deg);
  color: #ececec;
  writing-mode: tb-rl;
  z-index: -1;
  margin: 0;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item .field-collection-view {
  margin: 0 10px 0 17px;
}
@media screen and (max-width: 767px) {
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item .field-collection-view .field-name-field-button-link a {
    font-size: 16px;
    font-weight: 300;
  }
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item .field-name-field-body {
  margin-bottom: 34px;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:after {
  content: '';
  display: block;
  clear: both;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item .activity-item .activity-calendar-container:after {
  width: 1600px;
  position: absolute;
  left: -600px;
  right: -600px;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(2) {
  background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) 0 0 no-repeat;
  background-size: 1677px;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(3) {
  background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) 100% center no-repeat;
  background-size: 1400px;
}
.node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(4) {
  background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) -15% 120% no-repeat;
  background-size: 1400px;
}
@media screen and (max-width: 1024px) {
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:before {
    left: auto;
    right: -181px;
    top: -49px;
    font-size: 93px;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item .block-activity-header:before {
    content: '';
    display: block;
    background: url(/sites/all/themes/custom/alimentarium/images/pictograms2.svg);
    z-index: -1;
    width: 1400px;
    left: -524px;
    height: 261px;
    bottom: -96px;
    position: absolute;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(1) {
    background: transparent;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(1) .activity-block-title {
    right: 27px;
    left: auto;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(1):before {
    display: none;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(2) {
    background: transparent;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(2) .activity-block-title {
    right: 27px;
    left: auto;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(2):before {
    display: none;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(3) {
    background: transparent;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(3) .activity-block-title {
    right: 27px;
    left: auto;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(3):before {
    display: none;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(3) .block-activity-header:after {
    content: '';
    display: block;
    position: absolute;
    width: 90px;
    height: 90px;
    background: url(/sites/all/themes/custom/alimentarium/images/pepper.svg) center no-repeat;
    background-size: contain;
    right: 32px;
    top: -164px;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(4) {
    background: transparent;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(4) .activity-block-title {
    right: 27px;
    left: auto;
  }
  .node-type-activities-home .field-name-field-activities-blocks > .field-items > .field-item:nth-child(4):before {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .node-type-activities-home .content.page {
    background: none;
  }
  .node-type-activities-home .content.page::after {
    content: '';
    display: block;
    clear: both;
  }
}
@media screen and (max-width: 1024px) {
  .page-node .easy-breadcrumb {
    top: 10px;
    left: 5%;
    color: #696969;
  }
  .page-node .easy-breadcrumb a {
    color: #696969;
  }
  .page-node .block-views:before {
    right: -135px;
    left: auto;
    top: 80px;
    font-size: 90px;
    letter-spacing: -3.5px;
    width: 340px;
  }
  .page-node #block-views-activities-block {
    background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) 0 0 no-repeat;
    background-size: 1677px;
  }
  .page-node #block-views-activities-block:before {
    content: 'ateliers';
    top: 125px;
  }
  .page-node #block-views-activities-block-2 {
    background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) 100% center no-repeat;
    background-size: 1400px;
  }
  .page-node #block-views-activities-block-2:before {
    content: 'events';
    top: 100px;
  }
  .page-node #block-views-activities-block-2 .view-activities {
    height: 360px;
    background: url(/sites/all/themes/custom/alimentarium/images/pepper.svg) 83% 2% no-repeat;
    background-size: 75px;
  }
  .page-node #block-views-activities-block-3 {
    background: url(/sites/all/themes/custom/alimentarium/images/bkg2.svg) -15% 120% no-repeat;
    background-size: 1400px;
  }
  .page-node #block-views-activities-block-3:before {
    content: 'réunions';
    top: 170px;
  }
  .node-type-activities-home .activity-home-header-wrapper .field-name-body {
    width: 35%;
  }
}
.autocomplete {
  background-color: #f9423a;
  position: relative;
  right: 0;
  width: 100%;
  z-index: 1;
}
.autocomplete p {
  margin-left: 10px;
}
.autocomplete a {
  color: #ffffff;
}
.autocomplete .highlighted-term {
  font-weight: bold;
  text-decoration: underline;
}
.autocomplete .other-result li .result-wrap:hover .result-title {
  border-bottom: 3px solid;
}
.autocomplete .other-result li .result-wrap:hover .result-title .highlighted-term {
  text-decoration: none;
}
.autocomplete .pertinent li {
  font-weight: bold;
  letter-spacing: 1px;
}
.autocomplete .pertinent,
.autocomplete .other-result {
  width: 100%;
  line-height: 46px;
  height: auto;
  padding: 0;
}
.autocomplete .pertinent li,
.autocomplete .other-result li {
  width: 100%;
  display: block;
  clear: both;
  line-height: 40px;
  position: relative;
  padding: 0 10px 0 32px;
  font-size: 22px;
  color: #ffffff;
  transition: all 0.9s ease-out 0s;
}
.autocomplete .pertinent li.search-result-title,
.autocomplete .other-result li.search-result-title {
  position: relative;
  display: inline-table;
  padding: 0 0 0 32px;
  height: 35px;
  width: auto;
}
.autocomplete .pertinent li.search-result-title:hover:before,
.autocomplete .other-result li.search-result-title:hover:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 32px;
  height: 3px;
  width: calc(100% - 32px);
  background: #ffffff;
}
.autocomplete .pertinent li.search-result-title:hover span,
.autocomplete .other-result li.search-result-title:hover span {
  text-decoration: none;
}
.autocomplete .pertinent li.search-result-title.red:after,
.autocomplete .other-result li.search-result-title.red:after {
  color: #b9121a;
}
.autocomplete .pertinent li.red,
.autocomplete .other-result li.red {
  color: #b9121a;
}
.autocomplete .pertinent li.active,
.autocomplete .other-result li.active {
  top: auto !important;
  width: auto !important;
}
.autocomplete .pertinent li:hover,
.autocomplete .other-result li:hover {
  border-radius: 3px;
}
.autocomplete .pertinent {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
}
.autocomplete .pertinent li {
  height: 35px;
}
.autocomplete .pertinent li::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 46px;
  font-family: icomoon;
  content: "\e928";
  color: #ffffff;
  transition: all 0.9s ease-out 0s;
}
.autocomplete .pertinent li:hover {
  cursor: pointer;
}
.autocomplete .other-result li {
  overflow: hidden;
  position: relative;
  padding: 0 10px 0 0;
  display: flex;
}
.autocomplete .other-result li .result-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  width: auto;
  transition: all 0.9s ease-out 0s;
  cursor: pointer;
}
.autocomplete .other-result li .result-wrap.red {
  color: #b9121a;
}
.autocomplete .other-result li .result-wrap.red > span {
  color: inherit;
}
.autocomplete .other-result li .result-wrap .result-title {
  order: 1;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 20px;
  color: #ffffff;
  float: left;
  line-height: 25px;
  margin-left: 255px;
}
.autocomplete .other-result li .result-wrap .result-category {
  order: 0;
  position: absolute;
  left: 0;
  display: inline-block;
  white-space: nowrap;
  text-align: left;
  float: left;
  line-height: 25px;
  font-size: 14px;
  color: #ffffff;
}
.autocomplete button {
  display: none;
}
.search-mobile-form .autocomplete ul li {
  color: #ffffff;
}
.search-mobile-form .autocomplete ul li::after {
  color: #ffffff;
}
.search-mobile-form .autocomplete ul li .result-title,
.search-mobile-form .autocomplete ul li .result-category {
  color: #ffffff;
}
.search-mobile-form .autocomplete .pertinent {
  margin-bottom: 5px;
}
.search-mobile-form .autocomplete .pertinent .search-result-title {
  margin-bottom: 20px;
}
.search-mobile-form .autocomplete .other-result li {
  height: 50px;
  margin-bottom: 10px;
}
.search-mobile-form .autocomplete .other-result li .result-wrap .result-title {
  float: none;
  display: block;
  width: 100%;
}
@media screen and (max-width: 979px) {
  .autocomplete:before {
    display: none;
  }
  .autocomplete .other-result li {
    display: block;
  }
  .autocomplete .other-result li .result-wrap .result-title {
    margin-left: 0;
  }
  .autocomplete .other-result li .result-wrap .result-category {
    position: relative;
  }
}
@keyframes scrolltotop {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: .4;
  }
}
a.btn-ali,
.btn-ali {
  text-align: center;
  line-height: 23px;
  color: #f9423a;
  border: 1px solid #F9423A;
  border-radius: 3px;
  padding-top: 7px;
  height: 36px;
  top: -2px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
}
a.btn-ali:focus,
.btn-ali:focus,
a.btn-ali:active,
.btn-ali:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
a.btn-ali:after,
.btn-ali:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
a.btn-ali:hover,
.btn-ali:hover {
  color: #ffffff;
}
a.btn-ali:hover:after,
.btn-ali:hover:after {
  width: 100%;
}
a.btn-ali:hover a,
.btn-ali:hover a {
  color: #ffffff;
}
a.btn-ali a,
.btn-ali a {
  font-size: 14px;
  text-transform: none;
}
a.btn-ali.hovered a,
.btn-ali.hovered a {
  border-bottom: none;
}
.btn-bg-white {
  background-color: #ffffff;
}
.btn-bg-white.btn-grey,
.btn-bg-white.btn-dark-grey {
  color: #666666;
}
.btn-bg-white.btn-grey:hover,
.btn-bg-white.btn-dark-grey:hover,
.btn-bg-white.btn-grey:active,
.btn-bg-white.btn-dark-grey:active,
.btn-bg-white.btn-grey:focus,
.btn-bg-white.btn-dark-grey:focus {
  background-color: #666666;
  color: #ffffff;
}
.btn-bg-white.btn-grey-sixty {
  color: #666666;
}
.btn-bg-white.btn-grey-sixty:hover,
.btn-bg-white.btn-grey-sixty:active,
.btn-bg-white.btn-grey-sixty:focus {
  background-color: #666666;
  color: #ffffff;
}
.btn-bg-white.btn-red {
  color: #f9423a;
}
.btn-bg-white.btn-red:hover,
.btn-bg-white.btn-red:active,
.btn-bg-white.btn-red:focus {
  background-color: #f9423a;
  color: #ffffff;
}
.btn-bg-white.btn-green {
  color: #00c389;
}
.btn-bg-white.btn-green:hover,
.btn-bg-white.btn-green:active,
.btn-bg-white.btn-green:focus {
  background-color: #00c389;
  color: #ffffff;
}
.btn-bg-white.btn-brown {
  color: #7c3a2d;
}
.btn-bg-white.btn-brown:hover,
.btn-bg-white.btn-brown:active,
.btn-bg-white.btn-brown:focus {
  background-color: #7c3a2d;
  color: #ffffff;
}
.btn-bg-white.btn-sky-blue {
  color: #6ad1e3;
}
.btn-bg-white.btn-sky-blue:hover,
.btn-bg-white.btn-sky-blue:active,
.btn-bg-white.btn-sky-blue:focus {
  background-color: #6ad1e3;
  color: #ffffff;
}
.btn-bg-white.btn-deep-blue {
  color: #003d4c;
}
.btn-bg-white.btn-deep-blue:hover,
.btn-bg-white.btn-deep-blue:active,
.btn-bg-white.btn-deep-blue:focus {
  background-color: #003d4c;
  color: #ffffff;
}
.btn-bg-white.btn-purple {
  color: #572c5f;
}
.btn-bg-white.btn-purple:hover,
.btn-bg-white.btn-purple:active,
.btn-bg-white.btn-purple:focus {
  background-color: #572c5f;
  color: #ffffff;
}
.btn-bg-white.btn-citrus {
  color: #97d700;
}
.btn-bg-white.btn-citrus:hover,
.btn-bg-white.btn-citrus:active,
.btn-bg-white.btn-citrus:focus {
  background-color: #97d700;
  color: #ffffff;
}
.btn-bg-white.btn-yellow {
  color: #f0c800;
}
.btn-bg-white.btn-yellow:hover,
.btn-bg-white.btn-yellow:active,
.btn-bg-white.btn-yellow:focus {
  background-color: #f0c800;
  color: #ffffff;
}
.btn-bg-white.btn-salmon {
  color: #fab991;
}
.btn-bg-white.btn-salmon:hover,
.btn-bg-white.btn-salmon:active,
.btn-bg-white.btn-salmon:focus {
  background-color: #fab991;
  color: #ffffff;
}
.btn-bg-white.btn-blue {
  color: #5a7dd2;
}
.btn-bg-white.btn-blue:hover,
.btn-bg-white.btn-blue:active,
.btn-bg-white.btn-blue:focus {
  background-color: #5a7dd2;
  color: #ffffff;
}
/* Filter Case */
.filter-agenda [type="checkbox"]:checked + label.btn-grey {
  background-color: #666666;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-red {
  background-color: #f9423a;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-green {
  background-color: #00c389;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-brown {
  background-color: #7c3a2d;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-sky-blue {
  background-color: #6ad1e3;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-deep-blue {
  background-color: #003d4c;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-purple {
  background-color: #572c5f;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-citrus {
  background-color: #97d700;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-yellow {
  background-color: #f0c800;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label.btn-salmon {
  background-color: #fab991;
  color: #ffffff;
}
.filter-agenda [type="checkbox"]:checked + label span::before {
  color: #ffffff;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-grey {
  color: #666666;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-grey:hover {
  color: #ffffff;
  background-color: #666666;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-red {
  color: #f9423a;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-red:hover {
  color: #ffffff;
  background-color: #f9423a;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-green {
  color: #00c389;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-green:hover {
  color: #ffffff;
  background-color: #00c389;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-brown {
  color: #7c3a2d;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-brown:hover {
  color: #ffffff;
  background-color: #7c3a2d;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-sky-blue {
  color: #6ad1e3;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-sky-blue:hover {
  color: #ffffff;
  background-color: #6ad1e3;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-deep-blue {
  color: #003d4c;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-deep-blue:hover {
  color: #ffffff;
  background-color: #003d4c;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-purple {
  color: #572c5f;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-purple:hover {
  color: #ffffff;
  background-color: #572c5f;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-citrus {
  color: #97d700;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-citrus:hover {
  color: #ffffff;
  background-color: #97d700;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-yellow {
  color: #f0c800;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-yellow:hover {
  color: #ffffff;
  background-color: #f0c800;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-salmon {
  color: #fab991;
}
.filter-agenda .filters-mobile [type="checkbox"]:not(:checked) + label.btn-salmon:hover {
  color: #ffffff;
  background-color: #fab991;
}
.btn-cta {
  text-decoration: none;
  display: inline-block;
  padding: 0 10px;
  height: 46px;
  line-height: 46px;
  text-align: center;
}
.btn-cta a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn-cta {
    width: 100%;
    display: block;
  }
}
.text .btn-cta {
  min-width: 200px;
}
.text .btn-cta + .btn-cta {
  margin-top: 10px;
}
a.btn-cta {
  margin-right: 10px;
  text-decoration: none;
}
a.btn-cta:hover,
a.btn-cta:active,
a.btn-cta:focus {
  color: #ffffff;
}
a.btn-cta:active,
a.btn-cta:focus {
  outline: none;
}
.btn-small {
  display: inline-block;
  height: auto;
  line-height: 36px;
  padding: 0 20px;
}
.btn-bottom {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.btn-right {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 979px) {
  .btn-right {
    top: 15px;
    right: 15px;
  }
}
.btn-small-padding {
  padding: 0 12px;
}
/* Social Media Buttons */
.modal-social-bar .st_print_custom {
  position: absolute;
  top: -4px;
  left: -11px;
}
.social-bar {
  position: relative;
  width: 190px;
}
@media screen and (max-width: 979px) {
  .social-bar .sharethis-buttons {
    display: none;
  }
}
.social-bar .sharethis-buttons .first-level .sharethis-wrapper {
  margin-right: 20px;
  height: 20px;
  float: left;
}
.social-bar .sharethis-buttons .first-level .sharethis-wrapper span {
  padding: 0;
}
.social-bar .sharethis-buttons .first-level .sharethis-wrapper span::before {
  line-height: 20px;
  height: 20px;
}
.social-bar .sharethis-buttons .first-level .st_facebook_custom,
.social-bar .sharethis-buttons .first-level .st_instagram_custom,
.social-bar .sharethis-buttons .first-level .st_pinterest_custom,
.social-bar .sharethis-buttons .first-level .st_twitter_custom,
.social-bar .sharethis-buttons .first-level .st_email_custom {
  display: none;
}
.social-bar .sharethis-buttons .first-level .st_share_custom {
  cursor: pointer;
  position: relative;
  color: #999999;
  line-height: 20px;
  display: inline-block;
}
.social-bar .sharethis-buttons .first-level .st_share_custom .text-small-bold {
  line-height: 20px;
}
.social-bar .sharethis-buttons .first-level .st_share_custom:hover,
.social-bar .sharethis-buttons .first-level .st_share_custom:active,
.social-bar .sharethis-buttons .first-level .st_share_custom:focus {
  border-color: #666666;
}
.social-bar .sharethis-buttons .first-level .st_share_custom:hover .text-small-bold,
.social-bar .sharethis-buttons .first-level .st_share_custom:active .text-small-bold,
.social-bar .sharethis-buttons .first-level .st_share_custom:focus .text-small-bold {
  color: #666666;
}
.social-bar .sharethis-buttons .first-level .st_share_custom:hover::before,
.social-bar .sharethis-buttons .first-level .st_share_custom:active::before,
.social-bar .sharethis-buttons .first-level .st_share_custom:focus::before {
  color: #666666;
}
.social-bar .sharethis-buttons .first-level .st_share_custom::before {
  font-weight: normal;
  content: "\e911";
  font-family: icomoon;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  font-size: 20px;
  color: #999999;
  float: left;
  margin-right: 5px;
}
.social-bar .sharethis-buttons .first-level .st_share_custom::after {
  font-size: 20px;
  right: 52px;
  top: 22px;
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #393939 transparent;
}
.social-bar .sharethis-buttons .second-level {
  position: absolute;
  width: 200px;
  right: 0;
  margin-top: 8px;
}
.social-bar .sharethis-buttons .second-level .st_print_custom {
  display: none;
}
.social-bar .sharethis-buttons .second-level .sharethis-wrapper {
  background-color: #393939;
  float: left;
  height: 60px;
  padding: 20px 10px;
}
.social-bar .sharethis-buttons .second-level .sharethis-wrapper span:hover,
.social-bar .sharethis-buttons .second-level .sharethis-wrapper span:active,
.social-bar .sharethis-buttons .second-level .sharethis-wrapper span:focus {
  border-color: #ffffff;
}
.social-bar .sharethis-buttons .second-level .sharethis-wrapper span:hover::before,
.social-bar .sharethis-buttons .second-level .sharethis-wrapper span:active::before,
.social-bar .sharethis-buttons .second-level .sharethis-wrapper span:focus::before {
  color: #ffffff;
}
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom {
  text-decoration: none;
}
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom::before {
  content: "\e912";
  font-family: icomoon;
  font-size: 20px;
}
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom:hover,
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom:active,
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom:focus {
  border-color: #666666;
}
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom:hover::before,
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom:active::before,
.social-bar .sharethis-buttons .sharethis-wrapper .st_print_custom:focus::before {
  color: #666666;
}
.social-bar .sharethis-buttons .sharethis-wrapper span {
  width: 20px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  float: left;
  padding: 20px;
  position: relative;
  cursor: pointer;
}
.social-bar .sharethis-buttons .sharethis-wrapper span:hover,
.social-bar .sharethis-buttons .sharethis-wrapper span:active,
.social-bar .sharethis-buttons .sharethis-wrapper span:focus {
  border-color: #666666;
}
.social-bar .sharethis-buttons .sharethis-wrapper span:hover::before,
.social-bar .sharethis-buttons .sharethis-wrapper span:active::before,
.social-bar .sharethis-buttons .sharethis-wrapper span:focus::before {
  color: #666666;
}
.social-bar .sharethis-buttons .sharethis-wrapper span::before {
  font-family: icomoon;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  font-size: 20px;
  color: #999999;
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_bookmark_custom::before {
  content: "\e914";
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_email_custom::before {
  content: "\e922";
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_facebook_custom::before {
  content: "\e913";
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_instagram_custom::before {
  content: "\e910";
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_pinterest_custom::before {
  content: "\e90e";
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_twitter_custom::before {
  content: "\e90d";
}
.social-bar .sharethis-buttons .sharethis-wrapper span.st_linkedin_custom::before {
  content: "\e90f";
}
.social-bar .sharethis-buttons ~ div {
  clear: both;
}
.social-bar.social-popup-closed .second-level {
  display: none;
}
.social-bar.social-popup-closed .st_share_custom::after {
  visibility: hidden;
}
.activity-calendar-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
  background: #fff;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.activity-calendar-container:after {
  content: "";
  display: block;
  position: fixed;
  /* could also be absolute */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.9);
}
.activity-calendar-container.dashboard {
  width: 370px;
  top: 100%;
  left: auto;
  right: 0;
  position: absolute;
  min-height: auto;
}
.activity-calendar-container .activity-calendar-container-inner {
  background: #ffffff;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.15);
}
.activity-calendar-container .subtitle-regular {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-family: circularProBold, Arial, sans-serif;
  color: #666666;
  padding: 65px 0 20px;
  background: url(/sites/all/themes/custom/alimentarium/images/web_010_ticket@1.5x.svg) no-repeat center 35%;
  background-size: 38px;
}
.activity-calendar-container .calendar-title {
  width: 80%;
  margin: 0 auto 40px;
  text-align: center;
  color: #f9423a;
  font-size: 24px;
  line-height: 24px;
  font-family: circularProBold, Arial, sans-serif;
}
.activity-calendar-container .calendar-legend {
  position: relative;
  color: #f9423a;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: -.5px;
  line-height: 14px;
  padding: 15px 45px;
  border-top: 1px solid #ececec;
  background: url(/sites/all/themes/custom/alimentarium/images/picto_signage.svg) no-repeat 5% center;
}
.activity-calendar-container .calendar-legend:after {
  content: '';
  position: absolute;
  display: block;
  height: 1px;
  width: 82%;
  background: #ececec;
  bottom: 0;
  left: 5%;
}
.activity-calendar-container .close-icon {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 25px;
  right: 20px;
  background: url(/sites/all/themes/custom/alimentarium/images/close-red.svg) no-repeat center;
  background-size: 10px;
  cursor: pointer;
}
.activity-calendar-container.card .subtitle-regular {
  background: none;
  padding: 20px 0;
}
.activity-calendar-container.card .calendar-title {
  margin-bottom: 0;
}
.activity-calendar-container.card .calendar-legend {
  border-top: 0;
}
.activity-calendar-container.card .calendar-legend:after {
  width: 88%;
}
.activity-calendar-container .calendar-block {
  margin: 0;
  padding: 10px 15px 35px;
}
.activity-calendar-container .calendar-block table {
  width: 100%;
  font-size: 14px;
  line-height: 37px;
  font-family: circularProBook, Arial, sans-serif;
  color: #f9423a;
}
.activity-calendar-container .calendar-block table td:first-child {
  padding: 0 0 0 20px;
}
.activity-calendar-container .calendar-block table tr.limited > td:first-child {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_signage.svg) no-repeat 0 center;
}
.activity-calendar-container .calendar-block table tr.not-available {
  color: #BEBEBE;
  cursor: not-allowed;
}
.activity-calendar-container .calendar-block table tr.not-available a {
  color: #bebebe;
  background: #ececec;
  border: 0;
}
.activity-calendar-container .calendar-block table .calendar-time {
  padding: 0 10px;
}
.activity-calendar-container .calendar-block table .calendar-link a {
  width: 85px;
  height: 28px;
  line-height: 28px;
  font-size: 13px;
  padding: 0;
  z-index: 1;
}
.activity-calendar-container .calendar-block table .calendar-link a:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.activity-calendar-container .calendar-block table .calendar-link a:hover {
  background: transparent;
  color: #ffffff;
}
.activity-calendar-container .calendar-block table .calendar-link a:hover:after {
  width: 100%;
}
.activity-calendar-container .calendar-block table .calendar-link a:focus,
.activity-calendar-container .calendar-block table .calendar-link a:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.activity-calendar-container .calendar-block table tr.not-available .calendar-link a:hover {
  color: #bebebe;
  background: #ececec;
}
.activity-calendar-container .calendar-block table tr.not-available .calendar-link a:focus,
.activity-calendar-container .calendar-block table tr.not-available .calendar-link a:active {
  animation: none;
}
.activity-calendar-container .calendar-block table tr.not-available .calendar-link a:after {
  content: none;
}
.activity-calendar-container .reservation-text {
  padding: 20px 0;
  border-top: 1px solid #ececec;
}
.activity-calendar-container .activity-all-dates {
  width: 170px;
  height: 35px;
  line-height: 35px;
  margin: 10% auto 0;
  z-index: 1;
}
.activity-calendar-container .activity-all-dates:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.activity-calendar-container .activity-all-dates:hover {
  background: transparent;
  color: #ffffff;
}
.activity-calendar-container .activity-all-dates:hover:after {
  width: 100%;
}
.activity-calendar-container .activity-all-dates:focus,
.activity-calendar-container .activity-all-dates:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.dashboard-info .activity-calendar-container:after {
  top: auto;
  bottom: 0;
  height: calc(100% - 145px);
}
.calendar,
.calendar-highlight-item {
  padding: 0 30px;
  line-height: 0;
  width: 100%;
}
.calendar .btn-ali,
.calendar-highlight-item .btn-ali {
  margin-top: 15px;
}
.calendar-item {
  width: 100%;
  margin: 10px 0 0;
  display: inline-block;
  height: 90px;
  border-radius: 3px;
  border: solid 1px #ffffff;
  cursor: pointer;
  overflow: hidden;
}
.calendar-item:hover {
  border: solid 1px #ffffff;
}
.calendar-item:hover .calendar-date {
  border-right: solid 1px #ffffff;
}
.calendar-item:hover .calendar-content p,
.calendar-item:hover .calendar-content .text-extra-small {
  color: #ffffff;
}
.calendar-item:first-of-type {
  margin-top: 15px;
}
.calendar-item .calendar-date,
.calendar-item .calendar-event {
  display: inline-block;
  float: left;
}
.calendar-item .calendar-date {
  padding-top: 15px;
  width: 90px;
  height: 90px;
  border-right: solid 1px #ffffff;
  text-align: center;
}
.calendar-item .calendar-event {
  width: calc(100% - 110px);
  margin-top: 10px;
  margin-left: 20px;
}
.calendar-item .calendar-event .calendar-content {
  padding-right: 20px;
}
.calendar-item .calendar-content p,
.calendar-item .calendar-content .text-extra-small {
  color: #ffffff;
  margin-bottom: 0;
}
.calendar-item .calendar-content .text-small-bold {
  font-size: 16px;
  line-height: 18px;
}
.calendar-item.calendar-purple {
  border: solid 1px #572c5f;
}
.calendar-item.calendar-purple .calendar-date {
  border-right: solid 1px #572c5f;
}
.calendar-item.calendar-purple .calendar-content p,
.calendar-item.calendar-purple .calendar-content .text-extra-small {
  color: #572c5f;
}
.calendar-item.calendar-red {
  border: solid 1px #f9423a;
}
.calendar-item.calendar-red .calendar-date {
  border-right: solid 1px #f9423a;
}
.calendar-item.calendar-red .calendar-content p,
.calendar-item.calendar-red .calendar-content .text-extra-small {
  color: #f9423a;
}
.calendar-item.calendar-green {
  border: solid 1px #00c389;
}
.calendar-item.calendar-green .calendar-date {
  border-right: solid 1px #00c389;
}
.calendar-item.calendar-green .calendar-content p,
.calendar-item.calendar-green .calendar-content .text-extra-small {
  color: #00c389;
}
.calendar-item.calendar-purple:hover,
.calendar-item.calendar-red:hover,
.calendar-item.calendar-green:hover {
  border: solid 1px #ffffff;
}
.calendar-item.calendar-purple:hover .calendar-date,
.calendar-item.calendar-red:hover .calendar-date,
.calendar-item.calendar-green:hover .calendar-date {
  border-right: solid 1px #ffffff;
}
.calendar-item.calendar-purple:hover .calendar-content p,
.calendar-item.calendar-red:hover .calendar-content p,
.calendar-item.calendar-green:hover .calendar-content p,
.calendar-item.calendar-purple:hover .calendar-content .text-extra-small,
.calendar-item.calendar-red:hover .calendar-content .text-extra-small,
.calendar-item.calendar-green:hover .calendar-content .text-extra-small {
  color: #ffffff;
}
@media screen and (min-width: 979px) and (max-width: 1169px) {
  .calendar > a.calendar-item:nth-of-type(4) {
    display: none;
  }
}
@media screen and (max-width: 979px) {
  .calendar,
  .calendar-highlight-item {
    padding: 0 15px;
  }
  .calendar-item .calendar-content .mobile-text {
    font-size: 16px;
    line-height: 22px;
  }
}
.collection-card,
.savoir-card {
  border: 1px solid #cacaca;
  margin-top: 20px;
  position: relative;
  padding: 0;
  width: 370px;
  min-height: 600px;
}
.collection-card .e-grid-img-container img,
.savoir-card .e-grid-img-container img {
  width: 100%;
}
.collection-card .collection-txt,
.savoir-card .collection-txt {
  padding: 20px;
  position: relative;
}
.collection-card .collection-txt .text-small,
.savoir-card .collection-txt .text-small {
  color: #808080;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  /* number of lines to show */
  line-height: 24px;
  /* fallback */
  max-height: 245px;
}
.collection-card > a,
.savoir-card > a {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.collection-card > a .learn-more,
.savoir-card > a .learn-more {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: auto;
  margin: auto;
  opacity: 0;
  color: #ffffff;
  border-color: #ffffff;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.collection-card > a span:after,
.savoir-card > a span:after {
  background: #ffffff;
}
.collection-card > a span:hover,
.savoir-card > a span:hover {
  color: #f9423a;
}
.collection-card > a span:hover:after,
.savoir-card > a span:hover:after {
  background: #ffffff;
}
.collection-card .flag-flag-favorite,
.savoir-card .flag-flag-favorite {
  opacity: 0;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  margin: 10px;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
.collection-card .flag-flag-favorite a.unflag-action::before,
.savoir-card .flag-flag-favorite a.unflag-action::before {
  content: "\e92e";
}
.collection-card .flag-flag-favorite a:hover,
.savoir-card .flag-flag-favorite a:hover {
  color: #ffffff;
}
.collection-card .save,
.savoir-card .save {
  display: none;
}
.collection-card::before,
.savoir-card::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(141.99deg, #f9423a 0%, #905a9a 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}
.collection-card:hover .learn-more,
.savoir-card:hover .learn-more,
.collection-card:hover .flag-flag-favorite,
.savoir-card:hover .flag-flag-favorite {
  opacity: 1;
}
.collection-card:hover::before,
.savoir-card:hover::before {
  opacity: 0.8;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .collection-card .collection-txt,
  .savoir-card .collection-txt,
  .collection-card .savoir-txt,
  .savoir-card .savoir-txt {
    height: auto;
    padding: 10px 10px 20px;
  }
  .collection-card .collection-txt .mobile-text-extra-small,
  .savoir-card .collection-txt .mobile-text-extra-small,
  .collection-card .savoir-txt .mobile-text-extra-small,
  .savoir-card .savoir-txt .mobile-text-extra-small {
    font-size: 12px;
    line-height: 16px;
  }
  .collection-card .learn-more,
  .savoir-card .learn-more {
    left: 10%;
    right: 10%;
  }
}
.comment {
  clear: both;
}
.comment .img-container,
.comment .txt-comment {
  display: inline-block;
  float: left;
}
.comment .img-container {
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.comment .img-container img {
  position: static;
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
  vertical-align: middle;
}
.comment .txt-comment {
  margin-left: 18px;
}
.comment .txt-comment .username {
  margin-right: 5px;
}
.comment .txt-comment h3 {
  margin: 0;
}
.comment .txt-comment .links {
  margin-top: 5px;
}
.comment .txt-comment .links li a {
  border-bottom: solid 2px #808080;
}
.comment .txt-comment .links li a:hover {
  color: #572c5f;
  border-bottom: solid 2px #666666;
}
.comment.comment-unpublished .comment-unpublished-status {
  background-color: #e5e5e5;
  border-radius: 15px;
  color: #808080;
  display: inline-block;
  line-height: 24px;
  margin-left: 10px;
  padding: 0 18px;
}
.comment + .comment,
.indented + .comment,
.comment + .indented,
.indented + .indented {
  margin-top: 35px;
}
#comments .indented {
  margin-left: 68px;
}
#comments .indented .indented {
  margin-left: 0;
}
.comment-form {
  margin-top: 25px;
}
.comment-form.title {
  display: none;
}
.comment-form .form-item label {
  display: none;
}
.comment-form .form-item .form-control {
  border: solid 2px #e5e5e5;
  border-radius: 2px;
}
.comment-form .form-item-subject {
  margin-bottom: 0;
}
.comment-form .form-item-subject .form-control {
  border-bottom: 0;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .comment .txt-comment {
    width: calc(100% - 70px);
  }
  #comments .indented {
    margin-left: 38px;
  }
  #comments .indented .indented {
    margin-left: 0;
  }
}
.common-block {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.common-block .embeddedContent {
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.common-block .embeddedContent iframe,
.common-block .embeddedContent object,
.common-block .embeddedContent embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.common-block a {
  color: inherit;
  text-decoration: none;
}
.common-block a:hover {
  color: inherit;
}
.common-block .common-block-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease-in-out 0s;
}
.common-block .common-block-content a.common-block-link {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.common-block .common-block-text {
  display: inline-block;
  width: calc(100% - 60px);
  margin-left: 30px;
  margin-top: 30px;
  z-index: 1;
}
.common-block .common-block-text .text-extra-small,
.common-block .common-block-text .section-title-bold,
.common-block .common-block-text .subtitle-regular {
  margin: 0;
}
.common-block.img-version {
  width: 100%;
  position: relative;
}
.common-block.img-version .img-container {
  position: static;
  display: block;
}
.common-block.img-version .img-container img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover';
  width: 100%;
}
.common-block.img-version .common-block-text {
  position: absolute;
  top: 0;
  left: 0;
}
.common-block.img-version:hover .img-container img {
  /* rotate added due to browser rendering (smoother whith rotate) */
  -webkit-transform: rotate(0.1deg);
  -ms-transform: rotate(0.1deg);
  -o-transform: rotate(0.1deg);
  transform: rotate(0.1deg);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.common-block.video-version {
  width: 100%;
  position: relative;
  background-color: transparent !important;
}
.common-block.video-version .common-block-text {
  width: 75%;
  position: absolute;
  top: 0;
  left: 0;
}
.common-block.video-version .common-block-content {
  margin-bottom: 0;
}
.common-block.video-version .video-container {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.common-block.video-version .video-container video.bgvid {
  height: auto;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.common-block.video-version .video-play-button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #ffffff;
  border-radius: 3px;
  bottom: 30px;
  box-shadow: none;
  left: 30px;
  position: absolute;
  z-index: 2;
  color: #ffffff;
  display: none;
}
.common-block.video-version .video-play-button:hover,
.common-block.video-version .video-play-button:focus,
.common-block.video-version .video-play-button:active {
  background-color: #ffffff;
  border-color: #572c5f;
  color: #572c5f;
}
.common-block.video-version .video-play-button span.icon-play-video {
  margin-right: 10px;
  position: relative;
  vertical-align: middle;
}
.common-block.gradient {
  position: relative;
}
.common-block.gradient::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+50&0.5+0,0+50 */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  /* FF3.6-15 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0)));
  /* Chrome4-9,Safari4-5 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  /* Opera 11.10-11.50 */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  /* IE10 preview */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=0);
  /* IE6-8 */
}
.common-block:not(.img-version):not(.video-version):not(.museum-highlights-common-block):not(.news-common-block).bg-purple .common-block-content:hover {
  background-color: #4e2856;
}
.common-block:not(.img-version):not(.video-version):not(.museum-highlights-common-block):not(.news-common-block).bg-green .common-block-content:hover {
  background-color: #00b982;
}
.common-block:not(.img-version):not(.video-version):not(.museum-highlights-common-block):not(.news-common-block).bg-red .common-block-content:hover {
  background-color: #ed3f37;
}
.common-block:not(.img-version):not(.video-version):not(.museum-highlights-common-block):not(.news-common-block).bg-white .common-block-content:hover {
  background-color: #f2f2f2;
}
.common-block:not(.img-version):not(.video-version):not(.museum-highlights-common-block):not(.news-common-block).bg-dark .common-block-content:hover {
  background-color: #0d0d0d;
}
/* Overrides for page node */
.page-node.node-type-common-block .common-block:before {
  padding-bottom: 0;
}
.page-node.node-type-common-block .common-block .common-block-content {
  position: relative;
}
.page-node.node-type-common-block .common-block .common-block-content .img-container img {
  position: static;
}
/* Ratio of Common-block */
.common-block:before {
  content: "";
  display: block;
  padding-bottom: calc(75% - 5px);
}
.fifty-vertical .common-block:before {
  padding-bottom: calc(37.5% - 12.5px);
}
.fifty-horizontal .common-block:before {
  padding-bottom: calc(50% - 10px);
}
.square .common-block:before {
  padding-bottom: 100%;
}
.twenty-five-full-height .common-block:before {
  padding-bottom: calc(150% + 10px);
}
/* Media Queries */
@media screen and (max-width: 1169px) {
  .common-block.img-version .common-block-text {
    width: 85%;
  }
}
@media screen and (max-width: 979px) {
  .common-block {
    margin-top: 20px;
    min-height: 220px;
    height: auto;
  }
  .common-block .embeddedContent {
    min-height: 220px;
  }
  .common-block .common-block-text {
    margin-top: 15px;
    margin-left: 15px;
  }
  .common-block .common-block-text .subtitle-regular {
    font-size: 17px;
    line-height: 22px;
  }
  .common-block .common-block-content {
    margin-bottom: 20px;
  }
  .common-block.img-version {
    height: 220px;
  }
  .common-block::before,
  .common-block.fifty-vertical::before,
  .common-block.fifty-horizontal::before,
  .common-block.square::before {
    padding-bottom: 0 !important;
  }
  .common-block.twenty-five-full-height::before {
    padding-bottom: 100%;
  }
  .common-block.video-version .common-block-content,
  .common-block.video-version .common-block-content .video-container {
    min-height: 220px;
  }
  .common-block.video-version .video-container {
    height: 220px;
  }
  .common-block.video-version .video-play-button {
    bottom: 15px;
    left: 15px;
  }
  .common-block.museum-highlights-common-block .common-block-content {
    position: relative;
    margin-bottom: 20px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .common-block.video-version .video-container video.bgvid {
    width: auto;
    max-height: 100%;
  }
  .fifty-vertical .common-block.video-version .video-container video.bgvid {
    width: 100%;
    max-height: none;
  }
}
section.contact-us {
  margin-left: 10%;
}
section.contact-us section.main-container {
  display: inline-block;
  margin-right: 10%;
  vertical-align: top;
  width: 65%;
}
section.contact-us aside {
  display: inline-block;
  width: calc(25% - 4px);
  vertical-align: top;
}
section.contact-us aside .common-block {
  margin-top: 0;
  margin-bottom: 20px;
}
section.contact-us aside .common-block .common-block-text {
  margin-left: 10px;
  margin-top: 10px;
}
section.contact-us aside .profile-block {
  border-top: 2px solid #cacaca;
  border-bottom: 2px solid #cacaca;
  padding-top: 20px;
  padding-bottom: 20px;
}
section.contact-us aside .profile-block .contact-us-profile {
  margin-top: 25px;
}
@media screen and (max-width: 979px) {
  .node-type-contact-us section.contact-us {
    padding: 0;
  }
  section.contact-us {
    margin-left: 0;
  }
  section.contact-us section.main-container {
    display: block;
    margin-right: 0;
    width: 100%;
  }
  section.contact-us aside {
    display: block;
    width: 100%;
  }
  section.contact-us aside .profile-block {
    border-bottom: 0;
  }
  section.contact-us .main-title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.contact-us-profile .name,
.contact-us-profile .firstname {
  display: inline-block;
}
.contact-us-profile .phone,
.contact-us-profile .email {
  position: relative;
  padding-left: 20px;
}
.contact-us-profile .phone .icon-phone {
  display: block;
  left: 0;
  position: absolute;
  top: 2px;
}
.contact-us-profile .phone .icon-phone + div {
  display: inline-block;
  margin-left: 10px;
}
.contact-us-profile .email .icon-email {
  display: block;
  left: 0;
  position: absolute;
  top: 2px;
}
.contact-us-profile .email .icon-email + div {
  display: inline-block;
  margin-left: 10px;
}
.dropdown-checkboxes dd,
.dropdown-checkboxes dt {
  margin: 0px;
  padding: 0px;
}
.dropdown-checkboxes ul {
  margin: -1px 0 0 0;
}
.dropdown-checkboxes dd {
  position: relative;
}
.dropdown-checkboxes a,
.dropdown-checkboxes a:visited {
  color: #666666;
  text-decoration: none;
  outline: none;
  font-size: 12px;
}
.dropdown-checkboxes dt a {
  background-color: #ffffff;
  display: block;
  padding: 8px 20px 5px 10px;
  font-size: 18px;
  min-height: 25px;
  line-height: 24px;
  overflow: hidden;
  border: 0;
  width: 272px;
}
.dropdown-checkboxes dd ul {
  z-index: 1;
  background-color: #ffffff;
  border: 0;
  display: none;
  left: 0px;
  padding: 0px 10px;
  position: absolute;
  top: 0;
  width: 280px;
  list-style-type: none;
  height: auto;
  overflow: auto;
}
.dropdown-checkboxes dd ul input {
  margin: 10px 10px 10px 5px;
}
.dropdown-checkboxes span.value {
  display: none;
}
.dropdown-checkboxes dd ul li a {
  padding: 5px;
  display: block;
}
.dropdown-checkboxes dd ul li a:hover {
  background-color: #fff;
}
.dropdown-checkboxes dt a span,
.multiSel span {
  cursor: pointer;
  display: inline-block;
  padding: 0 3px 2px 0;
}
.multiSel span::after {
  content: ',';
}
.multiSel span:last-of-type::after {
  content: '';
}
.easy-breadcrumb {
  font-family: circularProBook, Arial, sans-serif;
  position: absolute;
  padding: 0 calc((100% - 1140px) / 2);
  margin-left: -10px;
  padding-top: 89px;
  color: #f9423a;
  z-index: 1;
}
.easy-breadcrumb a:hover {
  text-decoration: underline;
}
.easy-breadcrumb a,
.easy-breadcrumb span {
  color: #f9423a;
  text-decoration: none;
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .easy-breadcrumb {
    margin-left: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .easy-breadcrumb {
    padding-left: 25px;
  }
}
@media (max-width: 1024px) {
  .easy-breadcrumb {
    display: none !important;
  }
}
.node-type-object .container-fluid > section {
  margin: 100px 10px 0;
}
.page-collection .modal-backdrop.in {
  opacity: 0.8;
  display: none;
}
.modal-open nav.main-nav.fixed {
  left: -13px;
  width: calc(100% + 13px);
}
.e-collection-detail {
  padding-right: 0 !important;
}
.e-collection-detail .modal-dialog {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.e-collection-detail .modal-dialog .modal-content {
  border-radius: 0;
  background-color: #666666;
}
.e-collection-detail .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .modal-throbber-inner {
  width: 300px;
  margin: 0 auto;
}
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .progress {
  height: 36px;
  margin: 0 auto;
  top: 35px;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border-radius: 3px;
  position: relative;
}
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .progress .progress-bar {
  background-color: #808080;
}
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .progress .bar {
  background-color: #f9423a;
  max-width: 300px;
  margin: 0 auto;
  height: 36px;
  float: left;
}
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .progress .bar-percentage {
  position: absolute;
  display: block;
  width: 100%;
  text-align: right;
  font-size: 16px;
  margin: auto;
  color: #f9423a;
  padding: 8px;
  padding-right: 14px;
}
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .progress .progress.active .progress-bar,
.e-collection-detail .modal-dialog .modal-content .modal-body #modal-throbber .progress .progress-bar.active {
  animation: 0.5s linear 0s normal none infinite running progress-bar-stripes;
}
.e-collection-detail .modal-dialog .modal-content .modal-body .close-modal {
  display: inline-block;
  content: "";
  position: absolute;
  top: -50px;
  right: 10px;
  color: #ffffff;
  text-shadow: none;
  opacity: 1;
  font-weight: normal;
  width: 45px;
  height: 40px;
  line-height: 40px;
  background-color: #666666;
  z-index: 999;
  font-size: 20px;
  padding-bottom: 10px;
}
.e-collection-detail .modal-dialog .modal-content .modal-body .close-modal:hover,
.e-collection-detail .modal-dialog .modal-content .modal-body .close-modal:active,
.e-collection-detail .modal-dialog .modal-content .modal-body .close-modal:focus {
  color: #999999;
}
.e-collection-detail .modal-dialog .modal-content .row {
  margin: 0;
}
.e-collection-detail .square .iframe-container,
.e-collection-detail .e-collection-detail-text .detail-container {
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.e-collection-detail .square .iframe-content,
.e-collection-detail .e-collection-detail-text .detail-content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.e-collection-detail .square .iframe-container {
  z-index: 1;
}
.e-collection-detail .square .iframe-container:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.e-collection-detail .square .iframe-container .iframe-content .section {
  float: left;
  margin: 10px;
  position: absolute;
  vertical-align: middle;
  z-index: 1;
  top: 0;
}
.e-collection-detail .square .iframe-container .iframe-content .section span {
  color: #f9423a;
  display: inline-block;
  float: left;
  font-size: 1em;
  padding: 10px 5px 0;
}
.e-collection-detail .square .iframe-container .iframe-content .section span.icon-on-exhibition {
  font-size: 1.4em;
  color: #f9423a;
}
.e-collection-detail .square iframe {
  opacity: 0;
  overflow: hidden;
  height: 100% !important;
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: none;
  border: none;
}
.e-collection-detail .square iframe .e-collection-detail-text .detail-container:before {
  content: "";
  display: block;
  padding-bottom: calc(200% - 20px);
}
.e-collection-detail .square iframe .detail-content {
  height: calc(100% - 40px);
}
.e-collection-detail .square #iframe-throbber {
  margin: 0 auto;
  opacity: 1;
  position: relative;
  top: 50px;
  width: 100%;
}
.e-collection-detail .square #iframe-throbber .progress {
  height: 30px;
  margin: 0 auto;
  position: relative;
  top: 35px;
  width: 50%;
  background-color: #666666;
}
.e-collection-detail .square #iframe-throbber .progress .progress-bar {
  background-color: #808080;
}
.e-collection-detail .square #iframe-throbber .progress .progress.active .progress-bar,
.e-collection-detail .square #iframe-throbber .progress .progress-bar.active {
  animation: 0.5s linear 0s normal none infinite running progress-bar-stripes;
}
.e-collection-detail .e-collection-detail-text {
  padding: 0;
  background-color: #ffffff;
}
.e-collection-detail .e-collection-detail-text .detail-content {
  padding: 20px;
}
.e-collection-detail .e-collection-detail-text .detail-content .object-inventory-number {
  padding-top: 4px;
}
.e-collection-detail .e-collection-detail-text .detail-content ul {
  margin: 0;
  padding: 0;
}
.e-collection-detail .e-collection-detail-text .detail-content ul li {
  padding: 3px 0;
  list-style-type: none;
  border-top: 1px solid #cacaca;
}
.e-collection-detail .e-collection-detail-text .detail-content ul li:last-child {
  border-bottom: 1px solid #cacaca;
}
.e-collection-detail .e-collection-detail-text .detail-content ul li .object-technical-material-item:after {
  content: ", ";
}
.e-collection-detail .e-collection-detail-text .detail-content ul li .object-technical-material-item:last-child:after {
  content: "";
}
.e-collection-detail .e-collection-detail-text .detail-content .public-notes p {
  display: inline;
}
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite a.flag-link-toggle {
  float: left;
  visibility: hidden;
  width: 20px;
  margin-right: 20px;
}
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite a.flag-link-toggle:hover::before,
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite a.flag-link-toggle:active::before,
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite a.flag-link-toggle:focus::before {
  border-color: #666666;
  color: #666666;
}
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite a.flag-link-toggle::before {
  color: #999999;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  visibility: visible;
  width: 20px;
}
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite a.flag-link-toggle.unflag-action::before {
  content: "\e92e";
}
.e-collection-detail .e-collection-detail-text .detail-content .flag-wrapper.flag-flag-favorite .ajax-progress.ajax-progress-throbber {
  color: #999999;
  background-color: #ffffff;
  border: 1px solid #999999;
  border-radius: 50%;
  font-size: 20px;
  height: 20px;
  left: 0;
  line-height: 20px;
  margin: 0;
  padding: 0 7px;
  position: absolute;
  top: 0;
  width: 20px;
}
.e-collection-detail .e-collection-detail-text .detail-content .sharethis-buttons {
  margin: 20px 0 0;
}
.e-collection-detail .e-collection-detail-text .detail-content .sharethis-buttons:before,
.e-collection-detail .e-collection-detail-text .detail-content .sharethis-buttons:after {
  content: " ";
  display: table;
}
.e-collection-detail .e-collection-detail-text .detail-content .sharethis-buttons:after {
  clear: both;
}
.e-collection-detail .e-collection-detail-text .detail-content .related-content-link {
  position: relative;
  background: transparent;
  border: 1px solid #f9423a;
  padding: 0 20px;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  font-size: 14px;
  color: #f9423a;
  transition: .4s;
  text-decoration: none;
  z-index: 1;
}
.e-collection-detail .e-collection-detail-text .detail-content .related-content-link:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.e-collection-detail .e-collection-detail-text .detail-content .related-content-link:hover {
  background: transparent;
  color: #ffffff;
}
.e-collection-detail .e-collection-detail-text .detail-content .related-content-link:hover:after {
  width: 100%;
}
.e-collection-detail .e-collection-detail-text .detail-content .related-content-link:focus,
.e-collection-detail .e-collection-detail-text .detail-content .related-content-link:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.e-collection-detail button {
  width: auto;
}
.e-collection-detail .modal-you-may-also-like {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in;
  -o-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
  pointer-events: none;
}
.e-collection-detail .modal-you-may-also-like:target {
  opacity: 1;
  pointer-events: auto;
}
.e-collection-detail .modal-you-may-also-like > div {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  margin: 0 auto;
}
.e-collection-detail .modal-you-may-also-like > div .you-may-also-like {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 500px;
  padding: 0 calc((100% - 1170px) / 2);
  background-color: #ffffff;
}
.e-collection-detail .modal-you-may-also-like .ymal-close {
  color: #f9423a;
  line-height: 25px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 37px;
  font-size: 18px;
  text-decoration: none;
  z-index: 2;
}
.e-collection-detail .modal-you-may-also-like .ymal-close::before {
  font-weight: bold;
}
.ggskin_text {
  font-size: 0;
}
.modal-content .e-collection-detail-text .detail-container:before,
.node-object .e-collection-detail-text .detail-container:before {
  content: "";
  display: block;
  padding-bottom: calc(200% - 20px);
}
.modal-content .detail-content,
.node-object .detail-content {
  height: calc(100% - 40px);
  position: absolute;
}
.modal-content .social-bar,
.node-object .social-bar {
  position: relative;
}
.modal-content .social-bar .flag-flag-favorite,
.node-object .social-bar .flag-flag-favorite {
  float: left;
  margin-top: 40px;
}
.modal-content .social-bar .second-level,
.node-object .social-bar .second-level {
  right: initial;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .e-collection-detail .modal-dialog .modal-content .row .square {
    padding-right: 0;
  }
  .e-collection-detail .e-collection-detail-text {
    margin-top: 20px;
  }
  .e-collection-detail .e-collection-detail-text .detail-container {
    height: auto;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content {
    position: relative;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content:before {
    padding-bottom: 0;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content .flag-wrapper.flag-flag-favorite {
    float: none;
    display: block;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content .flag-wrapper.flag-flag-favorite:before,
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content .flag-wrapper.flag-flag-favorite:after {
    content: " ";
    display: table;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content .flag-wrapper.flag-flag-favorite:after {
    clear: both;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .detail-content .related-content-link {
    margin-bottom: 20px;
  }
  .e-collection-detail .e-collection-detail-text .detail-container:before {
    padding-bottom: 0;
  }
  .e-collection-detail .e-collection-detail-text .detail-container .subtitle {
    margin-top: 0;
  }
  .e-collection-detail .modal-you-may-also-like > div .you-may-also-like {
    padding: 0;
    top: 0;
  }
  .e-collection-detail .modal-you-may-also-like > div .you-may-also-like > p {
    margin-left: 10px;
  }
  .e-collection-detail .modal-you-may-also-like .ymal-close {
    right: 10px;
    top: 19px;
  }
  .e-collection-detail .social-bar .col-md-12 {
    padding: 0;
  }
  .e-collection-detail .social-bar .col-md-12 .sharethis-buttons {
    padding: 0;
  }
}
.academic-universe {
  width: 100%;
  display: inline-block;
  padding-bottom: 20px;
}
.academic-universe .academic-title {
  margin-left: 40px;
}
.academic-universe .academic-bloc {
  display: inline-block;
  float: left;
  width: calc(25% - 25px);
  margin-left: 20px;
  padding: 30px 0 90px;
  height: 670px;
}
.academic-universe .academic-bloc h3 {
  margin: 0 20px 30px;
}
.academic-universe .academic-bloc > .last,
.academic-universe .academic-bloc > .last > .last {
  border-bottom: solid 1px #cacaca;
}
.academic-universe .academic-bloc .academic-bloc-inner {
  overflow: hidden;
  height: 500px;
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-1 {
  height: 100%;
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-1 .academic-content-inner {
  max-height: calc(100% - 40px);
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-2 {
  height: 50%;
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-2 .academic-content-inner {
  max-height: calc(100% - 40px);
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-3 {
  height: 33.3%;
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-3 .academic-content-inner {
  max-height: calc(100% - 40px);
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-4 {
  height: 25%;
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-4 .academic-content-inner {
  max-height: calc(100% - 40px);
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-5 {
  height: 20%;
}
.academic-universe .academic-bloc .academic-bloc-inner .academic-elements-5 .academic-content-inner {
  max-height: calc(100% - 40px);
}
.academic-universe .academic-content {
  position: relative;
  display: inline-block;
  float: left;
  width: calc(100% - 40px);
  padding: 20px 0;
  margin: 0 20px;
  border-top: solid 1px #cacaca;
}
.academic-universe .academic-content:hover {
  background-color: #f2f2f2;
}
.academic-universe .academic-content .img-container,
.academic-universe .academic-content .academic-txt {
  display: inline-block;
  float: left;
}
.academic-universe .academic-content .img-container {
  position: relative;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.academic-universe .academic-content .img-container img {
  position: static;
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
  vertical-align: middle;
}
.academic-universe .academic-content .img-container.authors {
  border-radius: 50%;
}
.academic-universe .academic-content .academic-txt {
  width: calc(100% - 100px);
  margin-left: 20px;
  color: #666666;
}
.academic-universe .academic-content .academic-txt[class*=" icon-"]::before {
  color: #808080;
  font-size: 20px;
}
.academic-universe .academic-content .academic-txt .icon-external-link::before {
  color: #808080;
}
.academic-universe .academic-content.no-img .img-container {
  display: none;
}
.academic-universe .academic-content.no-img .academic-txt {
  width: 100%;
  margin-left: 0;
}
.academic-universe .academic-content .academic-content-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}
.academic-universe a {
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 979px) {
  .academic-universe {
    margin-top: 0;
    margin-left: -10px;
    width: calc(100% + 20px);
  }
  .academic-universe .academic-bloc {
    width: calc(100% - 40px);
    min-height: 0;
    margin-bottom: 20px;
  }
  .academic-universe .academic-bloc .btn-view-all-au {
    position: absolute;
  }
  .academic-universe .academic-content .academic-txt {
    clear: none;
    display: inline-block;
    float: left;
    width: calc(100% - 100px);
    margin-left: 20px;
    margin-top: 0;
  }
}
.magazine-dossier.common-block .common-block-text {
  position: relative;
}
.magazine-dossier .text-small {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.magazine-dossier .text-extra-small,
.magazine-dossier .section-title-bold {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.magazine-dossier .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #666666;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.magazine-dossier:hover .overlay {
  opacity: 0.95;
}
.magazine-dossier:hover .text-extra-small,
.magazine-dossier:hover .section-title-bold {
  opacity: 0;
  visibility: hidden;
}
.magazine-dossier:hover .text-small {
  opacity: 1;
  visibility: visible;
  color: #ffffff;
}
.magazine-dossier .text-extra-small {
  margin-top: -3px;
}
.node-type-magazine-folder .magazine-folder-title-bar > div,
.view-magazine-folders .magazine-folder-title-bar > div {
  margin-top: 40px;
}
.node-type-magazine-folder .magazine-folder-title-bar,
.view-magazine-folders .magazine-folder-title-bar,
.node-type-magazine-folder > .main-title,
.view-magazine-folders > .main-title {
  margin-left: 20px;
}
@media screen and (max-width: 979px) {
  .node-type-magazine-folder .magazine-folder-title-bar,
  .view-magazine-folders .magazine-folder-title-bar,
  .node-type-magazine-folder > .main-title,
  .view-magazine-folders > .main-title {
    margin-left: 0;
  }
}
.view-magazine-folders .common-block {
  height: 310px;
}
.view-magazine-folders .common-block .img-container img {
  top: calc(-100% - 75px);
}
@media screen and (max-width: 979px) {
  .view-authors .main-title,
  .view-magazine-folders .main-title {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .view-magazine-folders .common-block {
    height: 220px;
  }
  .view-magazine-folders .common-block {
    margin-top: 0px;
  }
  .view-magazine-folders .common-block .common-block-content {
    margin-bottom: 0;
  }
}
.magazine-header {
  display: inline-block;
  width: 100%;
  padding: 37px 20px;
  height: 120px;
}
.magazine-header .main-title,
.magazine-header .separator,
.magazine-header .all-about,
.magazine-header .categorie-select,
.magazine-header > a {
  display: inline-block;
  float: left;
}
.magazine-header .btn-container-header {
  float: right;
}
.magazine-header .btn-container-header .btn-see-all {
  color: #00c389;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  min-width: 200px;
}
.magazine-header .btn-container-header .btn-see-all:hover,
.magazine-header .btn-container-header .btn-see-all:focus,
.magazine-header .btn-container-header .btn-see-all:active {
  color: #ffffff;
  background-color: transparent;
}
.magazine-header .btn-container-header a {
  margin-right: 0;
  margin-left: 20px;
}
.magazine-header .main-title {
  margin: 0 20px 0 0;
  line-height: 50px;
}
.magazine-header .separator {
  height: 80px;
  width: 1px;
  margin-top: -16px;
  background-color: #ffffff;
  margin-right: 20px;
}
.magazine-header .all-about {
  margin-top: -4px;
  max-width: 380px;
}
.magazine-header .all-about p {
  line-height: 28px;
}
.magazine-header .categorie-select {
  position: relative;
}
.magazine-header .categorie-select .wrapper-dropdown {
  /* Size & position */
  position: relative;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 3px;
  min-width: 200px;
  color: #00c389;
  cursor: pointer;
  outline: none;
  text-align: left;
  padding: 0 15px;
}
.magazine-header .categorie-select .wrapper-dropdown:hover,
.magazine-header .categorie-select .wrapper-dropdown:focus,
.magazine-header .categorie-select .wrapper-dropdown:active {
  border: 1px solid #f2f2f2;
}
.magazine-header .categorie-select .wrapper-dropdown::after {
  /* Little arrow */
  position: absolute;
  top: 0;
  margin: auto;
  right: 15px;
  display: inline-block;
  font-family: icomoon;
  content: "\e926";
  color: #00c389;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.magazine-header .categorie-select .wrapper-dropdown .dropdown {
  /* Size & position */
  position: absolute;
  top: 100%;
  left: -1px;
  right: 0;
  z-index: 2;
  min-width: 200px;
  padding: 0 10px 10px;
  margin: 0;
  /* Styles */
  background-color: #ffffff;
  border-radius: 0 0 3px 3px;
  border-style: none solid solid;
  border-width: 0 1px 1px;
  list-style: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  /* Hiding */
  max-height: 292px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.magazine-header .categorie-select .wrapper-dropdown .dropdown li {
  line-height: 20px;
  margin: 0;
  overflow: hidden;
  padding: 10px;
}
.magazine-header .categorie-select .wrapper-dropdown .dropdown li:hover {
  background-color: #f2f2f2;
}
.magazine-header .categorie-select .wrapper-dropdown .dropdown li a {
  display: block;
  text-decoration: none;
  color: #666666;
  padding: 0;
  margin: 0;
  word-wrap: break-word;
}
.magazine-header .categorie-select .wrapper-dropdown.active {
  box-shadow: none;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  border-bottom: none;
  border-color: #cacaca;
}
.magazine-header .categorie-select .wrapper-dropdown.active .dropdown {
  border-color: #cacaca;
  opacity: 1;
  visibility: visible;
}
.magazine-header .categorie-select .wrapper-dropdown.active::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* Media Queries */
@media screen and (max-width: 1169px) {
  .magazine-header .magazine-header-title .all-about {
    max-width: 225px;
  }
  .magazine-header .categorie-select .wrapper-dropdown {
    min-width: 180px;
  }
  .magazine-header .categorie-select .wrapper-dropdown .dropdown {
    min-width: 180px;
  }
  .magazine-header .btn-container-header .btn-see-all {
    min-width: 180px;
  }
}
@media screen and (max-width: 979px) {
  .magazine-header {
    height: auto;
    padding: 37px 15px 20px;
  }
  .magazine-header .main-title {
    margin-right: 10px;
    font-size: 28px;
  }
  .magazine-header .separator {
    margin-right: 10px;
  }
  .magazine-header .magazine-header-title {
    display: block;
    margin: 0 auto;
  }
  .magazine-header .magazine-header-title .all-about {
    max-width: calc(100% - 150px);
  }
  .magazine-header .btn-container-header {
    display: block;
    float: none;
    clear: both;
    padding-top: 20px;
  }
  .magazine-header .btn-container-header a {
    margin: 0;
  }
  .magazine-header .btn-container-header .categorie-select {
    display: block;
    float: none;
    width: 100%;
  }
  .magazine-header .btn-container-header .categorie-select .wrapper-dropdown {
    width: 100%;
  }
  .magazine-header .btn-container-header .categorie-select .wrapper-dropdown .dropdown {
    left: 0;
    margin: 0 -1px;
  }
  .magazine-header .btn-container-header .btn-see-all {
    width: 100%;
    margin-top: 10px;
    text-align: left;
  }
}
.exhibition-card {
  height: 400px;
  width: 565px;
  background-color: #FFFFFF;
  box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 37px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}
.exhibition-card .img-container {
  height: 240px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.exhibition-card a:hover {
  text-decoration: none;
}
.exhibition-card .exhibition-text {
  min-height: 160px;
  width: 100%;
  padding: 20px 20px 40px 20px;
  position: relative;
}
.exhibition-card .exhibition-text .exhibition-title {
  color: #f9423a;
  font-size: 36px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 34px;
}
.exhibition-card .exhibition-text .exhibition-intro {
  margin-top: 20px;
  color: #666666;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  padding: 0 20% 0 0;
  overflow: hidden;
}
.exhibition-card .exhibition-text .exhibition-year {
  text-align: right;
  position: absolute;
  display: block;
  bottom: 20px;
  right: 26px;
  color: #666666;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .exhibition-card {
    margin-right: 15px;
    width: 80vw;
    margin-left: 0;
  }
  .exhibition-card .exhibition-text .exhibition-title {
    font-size: 24px;
  }
}
.exposition_related_exhibition .slick-dots {
  top: auto;
}
.exposition_related_exhibition .slick-arrow {
  bottom: -40px;
}
.exposition_related_exhibition .slick-prev {
  left: 90px;
}
.exposition_related_exhibition .slick-next {
  left: 130px;
}
.exhibition-card-trimmed {
  height: 280px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  position: relative;
  margin: 13px;
}
.exhibition-card-trimmed .field-name-field-visual-image,
.exhibition-card-trimmed .field-name-field-image {
  height: 120px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .exhibition-card-trimmed .field-name-field-visual-image img,
  .exhibition-card-trimmed .field-name-field-image img {
    width: 100%;
    object-fit: cover;
  }
}
.exhibition-card-trimmed .field-name-field-sub-title,
.exhibition-card-trimmed .field-name-field-section-title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 26px;
  padding: 2px 16px 10px 16px;
}
.exhibition-card-trimmed .exhibition-title {
  padding: 10px 25px 0;
}
.exhibition-card-trimmed .exhibition-title a {
  color: #f9423a;
  font-size: 24px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 24px;
  text-decoration: none;
}
.exhibition-card-trimmed .exhibition-title a:hover,
.exhibition-card-trimmed .exhibition-title a:visited {
  color: #f9423a;
  text-decoration: none;
}
.exhibition-card-trimmed .field-name-field-date-year {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.filter-agenda {
  position: relative;
}
.filter-agenda .filters-input,
.filter-agenda .form-calendar {
  padding: 30px 40px;
  display: inline-block;
  float: left;
}
.filter-agenda .filters-input {
  width: 67%;
  height: 100%;
  border-right: solid 2px #ffffff;
  min-height: 400px;
  margin-bottom: 0;
}
.filter-agenda .form-calendar {
  width: 33%;
  border-left: solid 2px #ffffff;
  margin-left: -2px;
}
.filter-agenda .filters-block,
.filter-agenda p {
  clear: both;
}
.filter-agenda p {
  padding-bottom: 0.8em;
  color: #808080;
}
.filter-agenda .filters-block {
  display: inline-block;
  margin-bottom: 20px;
  padding: 0;
}
.filter-agenda .filters-block:last-of-type {
  margin-bottom: 10px;
}
.filter-agenda #edit-field-date-value-min-wrapper,
.filter-agenda #edit-field-date-value-max-wrapper {
  display: none;
}
.filter-agenda .ajax-progress-throbber {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  top: 0;
  left: 0;
}
.filter-agenda .ajax-progress-throbber i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #572c5f;
  font-size: 2em;
}
.filter-agenda div.form-calendar .ui-datepicker a.ui-state-active {
  height: inherit;
}
.filter-agenda div.form-calendar a.datepicker-button.btn-cta {
  font-weight: normal;
}
.filters-desktop input {
  display: none;
}
.filters-desktop label {
  display: inline-block;
  float: left;
  padding: 0 18px;
  margin-right: 10px;
  margin-bottom: 10px;
  min-width: 175px;
  line-height: 46px;
  font-weight: normal;
  cursor: pointer;
  position: relative;
}
.filters-desktop label > div {
  display: inline-block;
  margin-right: 15px;
}
.filters-desktop label.btn-bg-white.btn-grey-sixty {
  color: #666666;
}
.filters-desktop label.btn-bg-white.btn-grey-sixty:hover,
.filters-desktop label.btn-bg-white.btn-grey-sixty:hover span[class^="icon-"] {
  color: #ffffff;
}
.filters-desktop label.btn-bg-white.btn-grey-sixty span[class^="icon-"] {
  color: #666666;
}
.filters-desktop label span[class^="icon-"] {
  float: right;
  font-size: 1.4em;
}
.filters-desktop label span[class^="icon-"]::before {
  line-height: 46px;
}
.filters-desktop [type="checkbox"]:checked + label {
  background-color: #666666;
  color: #ffffff;
}
.filters-mobile .select-container {
  position: relative;
}
.filters-mobile .select-container:nth-of-type(n+2) {
  margin-top: 10px;
}
@media screen and (max-width: 979px) {
  .filters-mobile .select-container:nth-of-type(n+2) {
    margin-top: 4px;
  }
}
.filters-mobile .select-container.date-time-mobile.mobile-open {
  height: 113px;
}
.filters-mobile dl {
  width: 100%;
  border: none;
  text-align: left;
  height: 55px;
  line-height: 55px;
  background-color: #f2f2f2;
  padding: 0;
  display: inline-block;
}
.filters-mobile dl::after {
  font-family: icomoon;
  content: "\e926";
  display: inline-block;
  position: absolute;
  font-size: 24px;
  top: 0;
  right: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.filters-mobile dl a {
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 10px 0 20px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.filters-mobile dl div.form-type-select {
  position: relative;
  z-index: 2;
}
.filters-mobile dl ul {
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 3px;
  padding: 5px 10px;
  position: relative;
}
.filters-mobile dl ul li input[type="checkbox"]:not(:checked),
.filters-mobile dl ul li input[type="checkbox"]:checked {
  left: -9999px;
  position: absolute;
}
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label,
.filters-mobile dl ul li [type="checkbox"]:checked + label {
  position: relative;
  /* permet de positionner les pseudo-éléments */
  cursor: pointer;
  /* affiche un curseur adapté */
  display: block;
  height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  background-color: #ffffff;
}
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label span[class^="icon-"],
.filters-mobile dl ul li [type="checkbox"]:checked + label span[class^="icon-"],
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label span[class^="icon-"],
.filters-mobile dl ul li [type="checkbox"]:checked + label span[class^="icon-"] {
  font-size: 25px;
  font-weight: normal;
  line-height: 40px;
  position: absolute;
  right: 20px;
}
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label span[class^="icon-"]::before,
.filters-mobile dl ul li [type="checkbox"]:checked + label span[class^="icon-"]::before,
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label span[class^="icon-"]::before,
.filters-mobile dl ul li [type="checkbox"]:checked + label span[class^="icon-"]::before {
  line-height: 40px;
}
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label span.option-title,
.filters-mobile dl ul li [type="checkbox"]:checked + label span.option-title {
  line-height: 40px;
}
.filters-mobile dl ul li [type="checkbox"]:not(:checked) + label:hover,
.filters-mobile dl ul li [type="checkbox"]:checked + label:hover {
  color: #ffffff;
  background-color: #666666;
}
.filters-mobile dl ul li [type="checkbox"]:checked + label {
  background-color: #572c5f;
  color: #ffffff;
}
.date-time-mobile {
  margin-bottom: 10px;
}
@media screen and (min-width: 980px) {
  .filter-agenda {
    background-color: #e5e5e5;
    display: inline-block;
    width: 100%;
    height: 100%;
  }
}
.flag-wrapper .ajax-progress.ajax-progress-throbber {
  display: none;
}
.flag-wrapper a {
  text-decoration: none;
  opacity: 1;
}
.flag-wrapper.flag-waiting {
  opacity: 0.5 !important;
}
.flag-wrapper.flag-waiting .ajax-progress.ajax-progress-throbber {
  display: inline-block;
  font-size: 20px;
  margin-left: 5px;
}
.flag-wrapper.flag-waiting .ajax-progress.ajax-progress-throbber .glyphicon::before {
  content: "";
}
.filter-e-grid {
  background-color: #e5e5e5;
  height: 80px;
  line-height: 80px;
  padding-right: 20px;
}
.filter-e-grid .form-group {
  margin-bottom: 0;
}
.filter-e-grid .form-group:nth-of-type(1) .dropdown-checkboxes dd ul {
  z-index: 12;
}
.filter-e-grid .form-group:nth-of-type(2) .dropdown-checkboxes dd ul {
  z-index: 11;
}
.filter-e-grid .form-group:nth-of-type(3) .dropdown-checkboxes dd ul {
  z-index: 10;
}
.filter-e-grid .filter-by,
.filter-e-grid button {
  margin-left: 20px;
}
.filter-e-grid .filter-by,
.filter-e-grid .dropdown-checkboxes {
  display: inline-block;
  float: left;
  height: 80px;
  line-height: 80px;
}
.filter-e-grid .filter-by {
  width: 8%;
  overflow: hidden;
}
.filter-e-grid .filter-by .filter-title {
  display: inline-block;
  line-height: 20px;
  vertical-align: middle;
  width: 100%;
  word-wrap: break-word;
}
.filter-e-grid .dropdown-checkboxes {
  margin-left: 20px;
  margin-bottom: 0;
  width: 19%;
  vertical-align: middle;
  position: relative;
}
.filter-e-grid .dropdown-checkboxes::after {
  font-family: icomoon;
  content: "\e926";
  display: inline-block;
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  top: 0;
  right: 10px;
}
.filter-e-grid .dropdown-checkboxes:hover dt,
.filter-e-grid .dropdown-checkboxes:active dt,
.filter-e-grid .dropdown-checkboxes:focus dt,
.filter-e-grid .dropdown-checkboxes:hover::after,
.filter-e-grid .dropdown-checkboxes:active::after,
.filter-e-grid .dropdown-checkboxes:focus::after {
  color: #ffffff;
}
.filter-e-grid .dropdown-checkboxes:hover dt,
.filter-e-grid .dropdown-checkboxes:active dt,
.filter-e-grid .dropdown-checkboxes:focus dt {
  background-color: #572c5f;
  border: 1px solid #572c5f;
}
.filter-e-grid .dropdown-checkboxes dt .multiSel,
.filter-e-grid .dropdown-checkboxes .filter-container {
  border-radius: 3px;
  height: 46px;
  line-height: 46px;
  width: 100%;
}
.filter-e-grid .dropdown-checkboxes.opened dt {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  border-color: #999999;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 1px 0;
}
.filter-e-grid .dropdown-checkboxes.opened dd ul {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.filter-e-grid .dropdown-checkboxes dt .multiSel {
  padding: 0 10px 0 0;
}
.filter-e-grid .dropdown-checkboxes .filter-container {
  padding: 0 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.filter-e-grid .dropdown-checkboxes .filter-container p.multiSel {
  display: none;
}
.filter-e-grid .dropdown-checkboxes dt {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
}
.filter-e-grid .dropdown-checkboxes dd {
  margin-top: -15px;
}
.filter-e-grid .dropdown-checkboxes dd ul {
  width: 100%;
  border-radius: 3px;
  padding: 10px;
  border-color: #999999;
  border-image: none;
  border-style: none solid solid;
  border-width: 0 1px 1px;
}
.filter-e-grid .dropdown-checkboxes dd ul li {
  line-height: 19px;
  padding: 10px;
  /* Aspect des checkboxes */
  /* :before sert à créer la case à cocher */
  /* Aspect général de la coche */
  /* Aspect si "pas cochée" */
  /* Aspect si "cochée" */
}
.filter-e-grid .dropdown-checkboxes dd ul li:hover {
  background-color: #f2f2f2;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
}
.filter-e-grid .dropdown-checkboxes dd ul li input[type="checkbox"]:not(:checked),
.filter-e-grid .dropdown-checkboxes dd ul li input[type="checkbox"]:checked {
  left: -9999px;
  position: absolute;
}
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:not(:checked) + label,
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:checked + label {
  position: relative;
  /* permet de positionner les pseudo-éléments */
  padding-left: 30px;
  /* fait un peu d'espace pour notre case à venir */
  padding-top: 0;
  /* fait un peu d'espace pour notre case à venir */
  cursor: pointer;
  /* affiche un curseur adapté */
  width: 100%;
  /* Le label s'étend sur toute la ligne */
  line-height: 17px;
  margin-bottom: 0;
}
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:not(:checked) + label:before,
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  /* dim. de la case */
  border: 1px solid #808080;
  background: transparent;
  border-radius: 1px;
  /* angles arrondis */
}
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:not(:checked) + label:after,
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:checked + label:after {
  content: "\e013";
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 9px;
  color: #ffffff;
  background-color: #572c5f;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  width: 17px;
  display: block;
  text-align: center;
}
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  /* coche invisible */
  transform: scale(0);
  /* mise à l'échelle à 0 */
}
.filter-e-grid .dropdown-checkboxes dd ul li [type="checkbox"]:checked + label:after {
  opacity: 1;
  /* coche opaque */
  transform: scale(1);
  /* mise à l'échelle 1:1 */
}
.filter-e-grid .dropdown-checkboxes dd ul label {
  font-weight: normal;
}
.filter-e-grid .btn-container {
  float: right;
  display: inline-block;
  height: 80px;
  line-height: 80px;
  width: 28%;
  text-align: right;
}
.filter-e-grid .btn-container .btn-bg-white.btn-purple {
  border: 1px solid #572c5f;
  background-color: transparent;
}
.filter-e-grid .btn-container .btn-bg-white.btn-purple:hover,
.filter-e-grid .btn-container .btn-bg-white.btn-purple:active,
.filter-e-grid .btn-container .btn-bg-white.btn-purple:focus {
  background-color: #572c5f;
  color: #ffffff;
}
.filter-e-grid .btn-container .btn-plain.btn-purple {
  color: #ffffff;
}
.filter-e-grid .btn-container .btn-plain.btn-purple:hover,
.filter-e-grid .btn-container .btn-plain.btn-purple:active,
.filter-e-grid .btn-container .btn-plain.btn-purple:focus {
  background-color: #ffffff;
  color: #572c5f;
  border: none;
}
.filter-e-grid .btn-container .btn {
  padding: 0 10px;
  outline: none;
  line-height: 20px;
  white-space: normal;
  word-wrap: break-word !important;
}
.filter-e-grid .btn-container .btn-danger:focus {
  background: inherit;
}
.filter-e-grid .btn-container .btn-default.disabled,
.filter-e-grid .btn-container .btn-default[disabled],
.filter-e-grid .btn-container .btn-default.disabled:hover,
.filter-e-grid .btn-container .btn-default[disabled]:hover,
.filter-e-grid .btn-container .btn-default.disabled:focus,
.filter-e-grid .btn-container .btn-default[disabled]:focus,
.filter-e-grid .btn-container .btn-default.disabled.focus,
.filter-e-grid .btn-container .btn-default.focus[disabled] {
  background-color: transparent;
  border: 1px solid #808080;
  color: #808080;
}
.filter-e-grid .btn-container #remove-filters::after {
  content: "\e925";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: bold;
  line-height: 1;
  margin-left: 5px;
  position: relative;
  text-transform: none;
  font-size: 15px;
  top: -2px;
  vertical-align: middle;
}
.filter-e-grid button {
  vertical-align: middle;
}
.filter-e-grid button:first-of-type {
  width: 53%;
}
.filter-e-grid button:nth-of-type(2) {
  margin-left: 15px;
  width: 35%;
}
/* Media Queries */
@media screen and (max-width: 1169px) {
  .filter-e-grid .dropdown-checkboxes {
    margin-left: 10px;
  }
  .filter-e-grid .btn-container button:first-of-type {
    width: 50%;
  }
}
@media screen and (max-width: 1169px) {
  .filter-e-grid .dropdown-checkboxes {
    width: 18%;
  }
  .filter-e-grid .btn-container {
    width: 32%;
  }
  .filter-e-grid .btn-container button:first-of-type {
    line-height: 20px !important;
    padding: 0 10px;
  }
  .filter-e-grid .btn-container button:nth-of-type(2) {
    margin-left: 10px;
    width: 35%;
  }
}
@media screen and (max-width: 979px) {
  .filter-e-grid {
    height: auto;
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    line-height: 0;
    border-radius: 3px;
    position: relative;
  }
  .filter-e-grid::after {
    font-family: icomoon;
    content: "\e926";
    display: inline-block;
    position: absolute;
    font-size: 24px;
    top: 23px;
    right: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .filter-e-grid .filter-by,
  .filter-e-grid .dropdown-checkboxes,
  .filter-e-grid .btn-container,
  .filter-e-grid .btn-container button {
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 46px;
    line-height: 46px;
  }
  .filter-e-grid .btn-container button:first-of-type,
  .filter-e-grid .btn-container button:nth-of-type(2) {
    width: 100%;
    margin-left: 0;
  }
  .filter-e-grid .filter-by {
    padding: 0 10px;
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  .filter-e-grid .filter-by ~ dl,
  .filter-e-grid .filter-by ~ div {
    display: none;
  }
  .filter-e-grid .dropdown-checkboxes {
    margin-top: 14px;
  }
  .filter-e-grid .dropdown-checkboxes:first-of-type {
    margin: 20px 0 0;
  }
  .filter-e-grid .dropdown-checkboxes dd {
    margin-top: 0;
  }
  .filter-e-grid .btn-container {
    margin-top: 30px;
    display: inline-block;
    height: auto;
    padding-bottom: 14px;
  }
  .filter-e-grid .btn-container button {
    margin-top: 14px;
  }
  .filter-e-grid .btn-container button:last-of-type {
    margin-bottom: 14px;
  }
}
.node-type-game .game {
  padding-top: 90px;
}
.node-type-game .field-name-field-body ul {
  list-style: none;
  padding: 0;
}
.node-type-game .field-name-field-body ul li {
  position: relative;
  padding-left: 30px;
}
.node-type-game .field-name-field-body ul li:before {
  content: '-';
  position: absolute;
  left: 0;
  color: #f9423a;
  margin: 0 15px;
}
.node-type-game .related-content-block {
  padding-top: 315px;
  padding-bottom: 65px;
  position: relative;
}
.node-type-game .related-content-block .container-fluid {
  position: relative;
}
.node-type-game .related-content-block .block-subtitle {
  display: block;
  position: absolute;
  top: -150px;
  left: 0;
  opacity: 0.3;
  color: #cccccc;
  font-size: 130px;
  font-family: circularProBold, Arial, sans-serif;
  letter-spacing: -5px;
  line-height: 70px;
}
@media screen and (max-width: 768px) {
  .node-type-game .related-content-block .block-subtitle {
    width: 100%;
    display: block;
    position: absolute;
    top: -70px;
    left: 0;
    height: 200px;
    background: url(/sites/all/themes/custom/alimentarium/images/_article_enlien_bck_pictos.svg) no-repeat center left;
    background-size: contain;
    font-size: 90px;
  }
}
.node-type-game .related-content-block .field-name-field-related-content {
  position: relative;
}
.node-type-game .related-content-block .field-items {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.node-type-game .related-content-block .field-items:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  background: url(/sites/all/themes/custom/alimentarium/images/bkg.svg) repeat center -106px;
  background-size: cover;
  z-index: -1;
  bottom: -206px;
  height: 449px;
}
.node-type-game .related-content-block .field-items:before {
  content: '';
  width: 100%;
  height: 426px;
  position: absolute;
  top: -426px;
  left: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 97px 116px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 556px 216px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 676px 316px no-repeat;
  background-size: 90px;
  z-index: -1;
}
.node-type-game .related-content-block .field-items .field-item {
  width: 370px;
  background-color: #ffffff;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}
.node-type-game .related-content-block .field-items .field-item a {
  text-decoration: none;
}
.node-type-game .related-content-block .field-items .field-item a:focus,
.node-type-game .related-content-block .field-items .field-item a:active,
.node-type-game .related-content-block .field-items .field-item a:hover {
  text-decoration: none;
}
.node-type-game .related-content-block .field-items .field-item a:hover {
  text-decoration: underline;
  color: #f9423a;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .you-may-also-like-text {
  width: 100%;
  min-height: 200px;
  z-index: 1;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .you-may-also-like-text .content-intro {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  padding: 16px 34px;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment {
  align-self: flex-end;
  padding: 0 0 0 34px;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment a {
  color: #f9423a;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment a:focus,
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment a:active,
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment a:hover {
  text-decoration: none;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment .magazine-comment-count {
  padding-left: 30px;
  padding-bottom: 18px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment .magazine-comment-count:before {
  content: "";
  background: url(/sites/all/themes/custom/alimentarium/images/picto_062_pulse@1.5x.svg) no-repeat;
  background-size: contain;
  height: 20px;
  position: absolute;
  width: 20px;
  display: inline-block;
  margin-right: 5px;
  left: 0;
  margin-bottom: -8px;
}
.node-type-game .related-content-block .field-items .field-item .you-may-also-like-card .time-comment .magazine-comment-count a:hover {
  text-decoration: underline;
}
.node-type-game .related-content-block .field-items .field-item:nth-of-type(2) {
  margin-left: 30px;
  margin-top: 0;
  margin-right: 30px;
}
.node-type-game .related-content-block .field-items .field-item:nth-of-type(2) .you-may-also-like-card:before {
  content: '';
  display: block;
  width: 100%;
  height: 228px;
  right: 0;
  position: absolute;
  bottom: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/_article_bg.svg) right;
  background-size: contain;
  z-index: 0;
}
.node-type-game .related-content-block .field-items .field-item:nth-of-type(3) {
  margin-top: -173px;
}
.node-type-game .related-content-block .field-items .field-item:nth-of-type(3) .you-may-also-like-card:before {
  content: '';
  display: block;
  width: 100%;
  height: 162px;
  right: 0;
  position: absolute;
  bottom: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/_article_card_bck3_pictos.svg) no-repeat right bottom;
  background-size: contain;
  z-index: 0;
}
.node-type-game .related-content-block .field-items .field-item:nth-of-type(1) {
  margin-top: -67px;
  position: relative;
}
.node-type-game .related-content-block .field-items .field-item:nth-of-type(1) .you-may-also-like-card:before {
  content: '';
  display: block;
  width: 100%;
  height: 162px;
  right: 0;
  position: absolute;
  bottom: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/_article_card_bck1_pictos.svg) no-repeat right bottom;
  background-size: cover;
  z-index: 0;
}
.node-type-game .related-content-block .field-items .field-item .like-card-image {
  height: 277px;
  overflow: hidden;
}
.node-type-game .related-content-block .field-items .field-item .like-card-image img {
  transition: transform 0.5s;
  height: 100%;
  max-width: none;
}
.node-type-game .related-content-block .field-items .field-item .like-card-image:hover img {
  transform: scale(1.2);
}
.node-type-game .related-content-block .field-items .field-item .content-name {
  color: #666666;
  font-size: 18px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 23px;
  width: 100%;
  padding: 10px 20px;
}
.node-type-game .related-content-block .field-items .field-item .content-title {
  color: #f9423a;
  font-size: 32px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 29px;
  text-decoration: none;
  width: 100%;
  padding: 0  34px;
  word-break: break-word;
}
.node-type-game .related-content-block .field-items .field-item .content-title:focus,
.node-type-game .related-content-block .field-items .field-item .content-title:active,
.node-type-game .related-content-block .field-items .field-item .content-title:hover {
  text-decoration: none;
  color: #f9423a;
}
@media screen and (max-width: 1169px) and (min-width: 1025px) {
  .node-type-game .related-content-block .field-items .field-item {
    width: 100%;
  }
  .node-type-game .related-content-block .field-items .field-item .like-card-image {
    width: 100%;
    overflow: hidden;
  }
  .node-type-game .related-content-block .field-items .field-item .like-card-image img {
    width: 100%;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1) {
    margin: 0;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(2) {
    margin: 30px 0 30px 0;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(3) {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .node-type-game section.game {
    padding: 0 20px;
  }
  .node-type-game .related-content-block {
    padding-top: 90px;
  }
  .node-type-game .related-content-block .field-items:before {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 29px 263px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 556px 216px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 676px 316px no-repeat;
    background-size: 90px;
  }
  .node-type-game .related-content-block .field-items .field-item {
    width: 100%;
  }
  .node-type-game .related-content-block .field-items .field-item .like-card-image {
    width: 100%;
    overflow: hidden;
  }
  .node-type-game .related-content-block .field-items .field-item .like-card-image img {
    width: 100%;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1) {
    margin: 0;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1):before {
    color: #cccccc;
    font-size: 90px;
    letter-spacing: -3.46px;
    line-height: 70px;
    top: -70px;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1):after {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    top: -200px;
    height: 200px;
    background: url(/sites/all/themes/custom/alimentarium/images/_article_enlien_bck_pictos.svg) no-repeat center left;
    background-size: contain;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(2) {
    margin: 30px 0 30px 0;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(3) {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .node-type-game .related-content-block .field-items:before {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 29px 263px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 556px 216px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 676px 316px no-repeat;
    background-size: 90px;
  }
  .node-type-game .related-content-block .field-items .field-item {
    width: 100%;
  }
  .node-type-game .related-content-block .field-items .field-item .like-card-image {
    width: 100%;
    overflow: hidden;
  }
  .node-type-game .related-content-block .field-items .field-item .like-card-image img {
    width: 100%;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1) {
    margin: 0;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1):before {
    color: #cccccc;
    font-size: 90px;
    letter-spacing: -3.46px;
    line-height: 70px;
    top: -70px;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(1):after {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    top: -200px;
    height: 200px;
    background: url(/sites/all/themes/custom/alimentarium/images/_article_enlien_bck_pictos.svg) no-repeat center left;
    background-size: contain;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(2) {
    margin: 30px 0 30px 0;
  }
  .node-type-game .related-content-block .field-items .field-item:nth-of-type(3) {
    margin: 0;
  }
}
.menu-item .subtitle,
.menu-item li {
  border-bottom: solid 1px #cacaca;
}
.menu-item .subtitle {
  padding-bottom: 10px;
}
.menu-item ul {
  padding: 0;
}
.menu-item ul li {
  width: 100%;
  display: inline-block;
  list-style-type: none;
  padding: 10px 0 35px;
}
.menu-item ul li .plate,
.menu-item ul li span {
  display: inline-block;
  float: left;
}
.menu-item ul li .plate {
  width: calc(100% - 90px);
}
.menu-item ul li span {
  width: 90px;
  float: right;
  text-align: right;
}
.menu-col.col-md-6 {
  width: 49%;
}
.menu-col.col-md-6:first-of-type {
  margin-right: 2%;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .menu-col {
    width: 100%;
  }
  .menu-col:first-of-type {
    margin: 0;
  }
  .menu-col:nth-of-type(2) {
    margin-top: 30px;
  }
  .menu-col.col-md-6 {
    width: 100%;
  }
}
.my-pages-tab,
.my-comments-tab {
  width: 100%;
}
.my-pages-tab .img-tab-container,
.my-comments-tab .img-tab-container {
  width: 70px;
  height: 70px;
  line-height: 70px;
  overflow: hidden;
}
.my-pages-tab .img-tab-container img,
.my-comments-tab .img-tab-container img {
  display: inline;
  margin: 0 auto;
  width: auto;
  vertical-align: middle;
}
.my-pages-tab .table.table-striped tr,
.my-comments-tab .table.table-striped tr {
  border-bottom: solid 1px #cacaca;
  position: relative;
  background-color: transparent;
}
.my-pages-tab .table.table-striped tr th,
.my-comments-tab .table.table-striped tr th {
  color: #cacaca;
  font-weight: bold;
  padding-left: 0;
}
.my-pages-tab .table.table-striped tr td,
.my-comments-tab .table.table-striped tr td {
  vertical-align: top;
  padding-left: 0;
  border-top: none;
}
.my-pages-tab .table.table-striped tr:first-of-type,
.my-comments-tab .table.table-striped tr:first-of-type {
  line-height: 45px;
}
.my-pages-tab .table.table-striped tr:last-of-type,
.my-comments-tab .table.table-striped tr:last-of-type {
  border-bottom: solid 1px #cacaca;
}
.my-pages-tab .table.table-striped tr td:first-of-type,
.my-comments-tab .table.table-striped tr td:first-of-type {
  width: 80px;
}
.my-pages-tab .table.table-striped tr td:nth-of-type(2),
.my-comments-tab .table.table-striped tr td:nth-of-type(2) {
  padding-left: 1%;
  width: 38%;
}
.my-pages-tab .table.table-striped tr td:last-of-type,
.my-comments-tab .table.table-striped tr td:last-of-type,
.my-pages-tab .table.table-striped tr th:last-of-type,
.my-comments-tab .table.table-striped tr th:last-of-type {
  text-align: right;
}
.my-pages-tab .table.table-striped tr td:last-of-type,
.my-comments-tab .table.table-striped tr td:last-of-type {
  position: relative;
}
.my-pages-tab .flag-flag-favorite .flag-throbber,
.my-comments-tab .flag-flag-favorite .flag-throbber {
  display: none;
}
.my-pages-tab .delete-action:before,
.my-comments-tab .delete-action:before {
  content: none;
}
.my-pages-tab .delete-action:after,
.my-comments-tab .delete-action:after {
  content: '\00d7';
  margin-left: 5px;
}
.my-pages-tab .mobile-remove,
.my-comments-tab .mobile-remove {
  display: none;
}
.my-pages-tab .mobile-remove > .delete-action:after,
.my-comments-tab .mobile-remove > .delete-action:after,
.my-pages-tab .mobile-remove.delete-action:after,
.my-comments-tab .mobile-remove.delete-action:after {
  margin-left: 0;
}
.my-pages-tab .ajax-comment-removed,
.my-comments-tab .ajax-comment-removed {
  display: none;
}
.my-pages-tab .view-empty,
.my-comments-tab .view-empty {
  font-family: circularProBook, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 24px;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .my-pages-tab .table.table-striped tr th,
  .my-comments-tab .table.table-striped tr th {
    display: none;
  }
  .my-pages-tab .table.table-striped tr td,
  .my-comments-tab .table.table-striped tr td {
    display: block;
    padding: 0 !important;
    margin: 0;
    width: 100% !important;
  }
  .my-pages-tab .table.table-striped tr td:first-of-type,
  .my-comments-tab .table.table-striped tr td:first-of-type {
    width: 80px !important;
    padding: 15px 0 !important;
    display: table-cell;
  }
  .my-pages-tab .table.table-striped tr td:nth-of-type(2),
  .my-comments-tab .table.table-striped tr td:nth-of-type(2) {
    margin-top: 12px !important;
    padding-right: 30px !important;
  }
  .my-pages-tab .table.table-striped tr td:nth-of-type(4),
  .my-comments-tab .table.table-striped tr td:nth-of-type(4) {
    padding-bottom: 15px !important;
  }
  .my-pages-tab .table.table-striped tr td:last-of-type,
  .my-comments-tab .table.table-striped tr td:last-of-type {
    position: static;
    width: 30px !important;
  }
  .my-pages-tab .table.table-striped .desktop-remove,
  .my-comments-tab .table.table-striped .desktop-remove {
    display: none;
  }
  .my-pages-tab .table.table-striped .mobile-remove,
  .my-comments-tab .table.table-striped .mobile-remove {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 30px;
  }
}
.my-profile-card {
  padding: 30px;
  text-align: center;
}
.my-profile-card .my-profile-img {
  width: 240px;
  height: 240px;
  line-height: 240px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.my-profile-card .my-profile-img .field-type-image,
.my-profile-card .my-profile-img .field-items,
.my-profile-card .my-profile-img .field-item {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.my-profile-card .my-profile-img img {
  display: inline;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.my-profile-card .user-profile-card-title {
  display: inline-block;
  float: left;
}
.my-profile-card .user-profile-edit-link {
  float: right;
  text-decoration: underline;
}
.my-profile-card .btn-ali {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .my-profile-card {
    padding: 20px 10px;
    text-align: left;
  }
  .my-profile-card .my-profile-img {
    width: 70px;
    height: 70px;
    line-height: 70px;
    float: left;
    clear: both;
    margin-top: 15px;
  }
  .my-profile-card .profile-txt {
    display: inline-block;
    float: left;
    width: calc(100% - 85px);
    margin-left: 15px;
  }
  .my-profile-card .profile-txt p:first-of-type {
    margin-top: 10px;
  }
  .my-profile-card .btn-ali {
    clear: both;
    width: 100%;
    display: block;
    margin: 0;
  }
}
.field-collection-container {
  border-bottom: none;
}
.node-gallery .carousel.slide ol.carousel-indicators {
  bottom: 86px;
  margin-bottom: 0;
}
.node-gallery .carousel.slide ol.carousel-indicators li {
  background-color: #000;
  opacity: 0.5;
  border: none;
  margin: 3px;
}
.node-gallery .carousel.slide ol.carousel-indicators li.active {
  background-color: #ffffff;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.node-gallery .carousel.slide .carousel-inner .item {
  text-align: center;
  overflow: hidden;
  height: 630px;
}
.node-gallery .carousel.slide .carousel-inner .item .slider-background {
  cursor: pointer;
  height: 630px;
  background-position: center;
  background-repeat: no-repeat;
}
.node-gallery .carousel.slide .carousel-inner-push-down {
  height: 716px;
}
.node-gallery .carousel.slide .carousel-control {
  margin-top: -68px;
}
.node-gallery .carousel-popup .carousel-control {
  margin-top: -72px;
}
.node-gallery .carousel.slide .carousel-control,
.node-gallery .carousel-popup .carousel-control {
  font-size: 20px;
  height: 50px;
  width: 50px;
  top: 50%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  text-decoration: none;
  opacity: 1;
}
.node-gallery .carousel.slide .carousel-control.right,
.node-gallery .carousel-popup .carousel-control.right {
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-right-white.svg) no-repeat center;
  background-size: 24px;
}
.node-gallery .carousel.slide .carousel-control.left,
.node-gallery .carousel-popup .carousel-control.left {
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-right-white.svg) no-repeat center;
  background-size: 24px;
  transform: rotate(180deg);
}
.node-gallery .carousel.slide .carousel-control span,
.node-gallery .carousel-popup .carousel-control span {
  display: none;
}
.node-gallery .main-carousel-caption-container .carousel-caption {
  display: none;
  left: 0;
  position: relative;
  width: 100%;
  margin-right: 10%;
  overflow: hidden;
  padding: 10px;
}
.node-gallery .main-carousel-caption-container .carousel-caption:first-of-type {
  display: none;
}
.node-gallery .carousel-caption-container {
  display: block;
  left: 0;
  position: relative;
  top: 0;
  margin-left: 10%;
  margin-right: 10%;
  overflow: hidden;
}
.node-gallery .carousel-caption {
  font-family: circularProBook, Arial, sans-serif;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 0;
  display: none;
  width: 100%;
  text-align: left;
  text-shadow: none;
}
.node-gallery .carousel-caption:first-of-type {
  display: block;
}
.node-gallery .carousel-caption .carousel-caption-inner {
  text-align: center;
  color: #f9423a;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
}
.node-gallery .carousel-caption .carousel-caption-inner span {
  display: block;
  color: #808080;
}
.node-gallery .carousel-caption .carousel-caption-inner .caption-title {
  font-weight: bold;
}
.node-gallery .carousel-caption .carousel-caption-inner .caption-copyright {
  font-size: 0.75em;
}
.node-gallery .mosaic-gallery {
  max-width: 70%;
  margin: auto;
}
.node-gallery .mosaic-gallery .mosaic-gallery-item {
  text-align: center;
  padding: 10px;
}
.node-gallery .mosaic-gallery .fake-mosaic-gallery-item {
  height: 0;
  padding: 0;
}
.node-gallery .mosaic-gallery img {
  cursor: pointer;
  max-width: 100%;
}
.node-gallery .mosaic-gallery .mosaic-left-side {
  padding: 0;
  margin: 150px 0;
}
.node-gallery .mosaic-gallery .mosaic-right-side {
  padding: 0 0 0 50px;
}
.node-gallery .mosaic-gallery .mosaic-right-side .mosaic-right-side-up {
  margin-bottom: 50px;
  padding: 0;
}
.node-gallery .mosaic-gallery .mosaic-right-side .mosaic-right-side-down {
  padding: 0;
  text-align: center;
}
.node-gallery .mosaic-gallery .mosaic-right-side .mosaic-right-side-down img {
  width: 80%;
}
.node-gallery .carousel-popup-wrapper .carousel-popup-inner-wrapper {
  height: 100%;
  transform: translateY(50%);
}
.node-gallery .carousel-popup-wrapper .modal-dialog {
  display: table;
  margin: auto;
  width: auto;
  transform: translate(0, -50%);
}
.node-gallery .carousel-popup-wrapper .modal-content {
  background-color: transparent;
  border-radius: 0 0 6px 6px;
  box-shadow: none;
  border: none;
  max-width: 100%;
  max-height: 100%;
}
.node-gallery .carousel-popup-wrapper .item {
  margin: -1px;
}
.node-gallery .carousel-popup-wrapper img {
  cursor: pointer;
  max-width: 80vw;
  max-height: calc(100vh - 116px);
  margin: 0 auto;
}
@media screen and (max-width: 979px) {
  .node-gallery .carousel-popup-wrapper img {
    max-height: calc(100vh - 156px);
    max-width: calc(100vw - 26px);
  }
}
.node-gallery .carousel-popup-wrapper .carousel-caption {
  padding: 10px;
  padding-top: 20px;
}
.node-gallery .carousel-popup-wrapper .push-caption-down {
  height: 96px;
  background-color: transparent;
}
.node-gallery .carousel-popup-wrapper .carousel-caption-container {
  margin-right: 0;
  margin-left: 0;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #f6f4f1;
  position: absolute;
  top: auto;
  bottom: 35px;
  width: 100%;
  border-radius: 0 0 6px 6px;
}
.node-gallery .mosaic-progress-block {
  min-height: 300px;
}
@media screen and (max-width: 979px) {
  .node-gallery .mosaic-progress-block {
    min-height: 150px;
  }
}
.node-gallery .mosaic-progress-block .slider-spinner {
  z-index: 0;
}
.slider-spinner {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: #572c5f;
}
/* Media Queries */
@media screen and (max-height: 479px) {
  .node-gallery .carousel-popup-wrapper .push-caption-down {
    height: 46px;
  }
  .content .node-gallery .carousel-caption-container .carousel-caption .carousel-caption-inner {
    min-height: 46px;
    max-height: 86px;
    height: initial;
  }
  .content .node-gallery .carousel-popup-wrapper img {
    padding: 0;
    max-height: calc(100vh - 65px);
    max-width: calc(100vw - 26px);
  }
  .content .node-gallery .carousel-popup-wrapper .carousel-caption {
    padding-top: 5px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 979px) {
  .node-gallery .mosaic-gallery .mosaic-left-side {
    margin: 10px 0;
  }
  .node-gallery .mosaic-gallery .mosaic-right-side {
    padding: 0;
  }
  .node-gallery .mosaic-gallery .mosaic-right-side .mosaic-right-side-up {
    margin-bottom: 10px;
  }
  .node-gallery .mosaic-gallery .mosaic-right-side .mosaic-right-side-down {
    padding: 0;
    text-align: center;
  }
  .node-gallery .mosaic-gallery .mosaic-right-side .mosaic-right-side-down img {
    width: 100%;
  }
  .node-gallery .carousel-popup-wrapper .carousel-caption-container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .node-gallery .carousel-caption-container {
    margin-left: 0;
    margin-right: 0;
  }
  .node-gallery .carousel-caption-container .carousel-caption .carousel-caption-inner {
    height: 120px;
  }
  .node-gallery .carousel.slide .carousel-inner-push-down {
    height: 401px;
  }
  .node-gallery .carousel.slide .carousel-inner .item {
    height: 315px;
  }
  .node-gallery .carousel.slide .carousel-inner .item .slider-background {
    height: 315px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 315px;
  }
  .node-gallery .carousel-popup .carousel-control {
    top: calc(50% - 8px);
  }
}
button.close-popup-btn {
  position: absolute;
  right: 0;
  left: auto;
  font-size: 0px;
  width: 20px;
  height: 20px;
  text-align: center;
  text-decoration: none;
  opacity: 1;
  color: white;
  text-shadow: none;
  z-index: 100;
  top: 0;
  margin: 20px;
  background: url(/sites/all/themes/custom/alimentarium/images/close.svg) no-repeat center;
}
button.close-popup-btn:hover {
  opacity: 0.9;
  color: white;
}
.node-type-getting-here {
  /* Media Queries */
}
.node-type-getting-here .easy-breadcrumb {
  position: static;
}
.node-type-getting-here .map-container {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 35px;
  min-height: 82px;
}
.node-type-getting-here .map-container .map iframe {
  width: 100%;
  height: 400px;
}
.node-type-getting-here .marged-content {
  margin-left: 10%;
  margin-right: 10%;
  overflow: hidden;
}
.node-type-getting-here .marged-content img {
  max-width: 100%;
}
.node-type-getting-here .content-container .body {
  display: inline-block;
  margin-right: 2%;
  vertical-align: top;
}
.node-type-getting-here .content-container .getting-here-block .mobile-map-link {
  margin: 20px;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .node-type-getting-here .map-container {
    min-height: 0;
    margin-bottom: 0px;
  }
  .node-type-getting-here .map-container .title {
    position: relative;
    bottom: 0;
    margin-left: 0;
    text-align: left;
    font-size: 28px;
    line-height: 34px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .node-type-getting-here .map-container .title .field-name-title-field {
    background-color: transparent;
    display: block;
    max-width: 100%;
    padding: 0;
  }
  .node-type-getting-here .map-container .title .main-title {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .node-type-getting-here .content-container {
    margin: 0;
  }
  .node-type-getting-here .content-container .body {
    display: block;
    margin-right: 0;
    width: 100%;
  }
  .node-type-getting-here .content-container .getting-here-block {
    display: block;
    width: 100%;
  }
  .node-type-getting-here h1,
  .node-type-getting-here .h1,
  .node-type-getting-here h2,
  .node-type-getting-here .h2,
  .node-type-getting-here h3,
  .node-type-getting-here .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.getting-here .common-block-area {
  margin-top: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 979px) {
  .getting-here .common-block-area {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}
.getting-here .common-block-area .node-opening-hours-block {
  margin-bottom: 20px;
}
.getting-here .common-block-area .common-block {
  margin-top: 0;
  margin-bottom: 20px;
}
.getting-here .common-block-area .common-block .common-block-content .common-block-text {
  display: inline-block;
  margin-left: 30px;
  margin-top: 30px;
  z-index: 1;
}
.news {
  padding: 0 30px;
  line-height: 0;
}
.news-item {
  display: inline-block;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.news-item .img-container {
  width: 90px;
  height: 90px;
  position: relative;
  overflow: hidden;
}
.news-item .img-container,
.news-item .news-text {
  display: inline-block;
  float: left;
}
.news-item .news-text {
  width: 100%;
}
.news-item:first-of-type {
  margin-top: 20px;
}
.news-item .text-extra-small,
.news-item .text-small {
  margin: 0;
}
.news-item.news-green {
  border-top: solid 1px #00c389;
}
.news-item.news-green:last-of-type {
  border-bottom: solid 1px #00c389;
}
.news-item.news-green .text-extra-small,
.news-item.news-green .text-small {
  color: #00c389;
}
.news-item.news-purple {
  border-top: solid 1px #572c5f;
}
.news-item.news-purple .text-extra-small,
.news-item.news-purple .text-small {
  color: #572c5f;
}
.news-item.news-red {
  border-top: solid 1px #f9423a;
}
.news-item.news-red .text-extra-small,
.news-item.news-red .text-small {
  color: #f9423a;
}
.news-item.news-bg-purple:hover {
  background-color: #4e2856;
}
/* Media Queries */
@media screen and (max-width: 1169px) {
  .news-item:last-of-type {
    display: none;
  }
  .news-green {
    border-top: solid 1px #00c389;
  }
  .news-green:nth-last-of-type(2) {
    border-bottom: solid 1px #00c389;
  }
}
@media screen and (max-width: 979px) {
  .news {
    padding: 0 15px 0 15px;
  }
  .news-green:nth-last-of-type(2) {
    border-bottom: none;
  }
}
div.embed .embedded-node {
  border-bottom: 1px solid #cacaca;
  border-top: 1px solid #cacaca;
  max-width: 210px;
}
div.embed .embedded-node a {
  color: inherit !important;
  display: block;
  text-decoration: none;
}
div.embed .embedded-node a:hover,
div.embed .embedded-node a:focus,
div.embed .embedded-node a:active {
  text-underline: none;
  outline: none;
}
div.embed .embedded-node .embedded-node-type {
  color: #808080;
  padding: 10px 10px 0;
}
div.embed .embedded-node .embedded-node-title {
  padding: 5px 10px 10px;
}
.opening-hour-status {
  margin: 10px 0;
}
.opening-hour-status .opening-hour-status-label {
  vertical-align: middle;
}
.opening-hour-status .opening-hour-status-icon {
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  display: inline-block;
  height: 16px;
  margin-left: 10px;
  position: static;
  vertical-align: middle;
  width: 16px;
}
.opening-hour-status.opening-hour-status-open .opening-hour-status-icon {
  color: #4da93a;
  background-color: #4da93a;
}
.opening-hour-status.opening-hour-status-closed .opening-hour-status-icon {
  color: #e42121;
  background-color: #e42121;
}
.field-opening-hours-week-item {
  margin: 10px 0;
  display: table-row;
}
.field-opening-hours-week-item .opening-hour-day-label {
  display: table-cell;
  padding: 5px 25px 5px 0;
  min-width: 120px;
}
.field-opening-hours-week-item .opening-hour-day-time {
  display: table-cell;
  padding: 5px 0;
}
.field-name-field-opening-hour-exceptions .field-collection-view {
  margin: 0;
  padding: 0;
  border: none;
}
.field-name-field-opening-hour-exceptions .field-collection-view .field-opening-hours-exceptions {
  margin: 10px 0;
  display: table-row;
}
.field-name-field-opening-hour-exceptions .field-collection-view .field-opening-hours-exceptions .opening-hour-day-label {
  display: table-cell;
  padding: 5px 25px 5px 0;
  min-width: 200px;
}
.field-name-field-opening-hour-exceptions .field-collection-view .field-opening-hours-exceptions .opening-hour-day-time {
  display: table-cell;
  padding: 5px 0;
}
ul.pager-load-more li a {
  margin: 0 auto;
  padding: 0;
}
ul.pager-load-more li a:after {
  content: '';
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
ul.pager-load-more li a:hover {
  background: transparent;
  color: #ffffff;
}
ul.pager-load-more li a:hover:after {
  width: 100%;
}
ul.pager-load-more li a:focus,
ul.pager-load-more li a:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.filters-search {
  background-color: #e5e5e5;
  line-height: 80px;
  position: relative;
}
.filters-search .filter-by,
.filters-search button,
.filters-search .dropdown-checkboxes {
  margin-left: 20px;
}
.filters-search .filter-by,
.filters-search .dropdown-checkboxes {
  display: inline-block;
  float: left;
  height: 80px;
  line-height: 80px;
}
.filters-search .filter-by {
  width: 11%;
  overflow: hidden;
}
.filters-search .filter-by .filter-title {
  display: inline-block;
  line-height: 20px;
  vertical-align: middle;
  width: 100%;
  word-wrap: break-word;
}
.filters-search form .views-exposed-widgets {
  margin-bottom: 20px;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type {
  width: 75%;
  padding: 18px 0 13px;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type > label {
  display: none;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  height: auto;
  line-height: 1em;
  padding: 0;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes {
  font-size: 0;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox {
  display: inline-block;
  margin-right: 5px;
  /* Hiding checkbox */
  /* Preparing label */
  /* Aspect si "pas cochée" */
  /* Aspect si "cochée" */
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked),
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked) + label,
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  min-width: 150px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: normal;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked) + label {
  background-color: #ffffff;
  color: #666666;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked) + label:hover {
  background-color: #666666;
  color: #ffffff;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label {
  background-color: #666666;
  border: solid 1px #666666;
  color: #ffffff;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label.btn-white-border {
  border-color: #ffffff;
}
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label:hover,
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label:active,
.filters-search form .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label:focus {
  background-color: #ffffff;
  color: #666666;
}
.filters-search form .views-exposed-widgets .views-submit-button {
  display: none;
}
.filters-search form .views-exposed-widgets .views-reset-button {
  margin: 0 20px 0 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.filters-search form .views-exposed-widgets .views-reset-button button {
  margin: 0;
  background-color: transparent;
  border: 1px solid #572c5f;
}
.filters-search form .views-exposed-widgets .views-reset-button button:hover {
  background-color: #572c5f;
  color: #ffffff;
}
.filters-search form .views-exposed-widgets .views-reset-button button::after {
  content: "\e925";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  margin-left: 5px;
  position: relative;
  text-transform: none;
  font-size: 19px;
  vertical-align: middle;
}
.filters-search .ajax-progress-throbber {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  top: 0;
  left: 0;
}
.filters-search .ajax-progress-throbber i {
  position: absolute;
  top: calc(50% - 14px);
  left: 50%;
  color: #572c5f;
  font-size: 2em;
}
.search-result {
  width: 100%;
  display: inline-block;
  float: left;
  padding: 20px 0;
  border-top: solid 1px #cacaca;
}
.search-result:hover,
.search-result:focus,
.search-result:active {
  background-color: #e5e5e5;
}
.search-result .img-container,
.search-result .txt-search-result {
  display: inline-block;
  float: left;
}
.search-result .item-img-container {
  position: relative;
  overflow: hidden;
  max-width: 320px;
  float: left;
  width: 30%;
}
.search-result .txt-search-result {
  width: calc(100% - 340px);
  margin-left: 20px;
  color: #666666;
}
.search-result .txt-search-result a {
  text-decoration: none;
}
.search-result .txt-search-result .text-extra-small.magazine-article-author {
  margin-top: 10px;
}
.search-result .highlighted-term {
  text-decoration: underline;
}
.search-result .search-result-link {
  display: block;
  overflow: hidden;
}
.search-result .author-social-links {
  width: calc(100% - 340px);
  display: inline-block;
  float: left;
  margin-top: 35px;
}
.search-result .author-social-links a {
  float: left;
  font-size: 24px;
  margin-right: 15px;
  visibility: hidden;
  width: 24px;
  color: #808080;
}
.search-result .author-social-links a:before {
  visibility: visible;
}
.search-result .author-social-links a:hover,
.search-result .author-social-links a:focus,
.search-result .author-social-links a:active {
  color: #572c5f;
}
span.search-result-title,
li.search-result-title {
  color: rgba(0, 0, 0, 0.8);
}
li.search-result-title:after {
  color: #808080;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .view-search .main-title-normal {
    margin-bottom: 20px;
  }
  .view-search .views-row:first-child {
    border-top: none;
    padding-top: 0;
  }
  .filters-search {
    height: auto;
    line-height: 55px;
    background: none;
    margin-bottom: 20px;
  }
  .filters-search .filter-by {
    background-color: #f2f2f2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    display: block;
    height: 55px;
    line-height: 55px;
    margin: 0;
    padding: 0 20px;
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 1;
    float: none;
  }
  .filters-search .filter-by::after {
    font-family: icomoon;
    content: "\e926";
    display: inline-block;
    position: absolute;
    font-size: 24px;
    top: 0;
    right: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #666666;
  }
  .filters-search form#views-exposed-form-search-page {
    display: none;
    background-color: #f2f2f2;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    padding-bottom: 1px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets {
    margin-bottom: 30px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type {
    padding: 0;
    width: 100%;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes {
    padding: 5px 10px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox {
    display: block;
    width: 100%;
    border-radius: 4px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox input[type="checkbox"]:not(:checked),
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox input[type="checkbox"]:checked {
    left: -9999px;
    position: absolute;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked) + label,
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label {
    position: relative;
    /* permet de positionner les pseudo-éléments */
    cursor: pointer;
    /* affiche un curseur adapté */
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    background-color: #ffffff;
    color: #666666;
    font-size: 16px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked) + label span.option-title,
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label span.option-title {
    line-height: 40px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:not(:checked) + label:hover,
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label:hover {
    background-color: #666666;
    color: #ffffff;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox [type="checkbox"]:checked + label {
    background-color: #572c5f;
    border: none;
    color: #ffffff;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-widget-filter-type .bef-select-as-checkboxes .bef-checkboxes .form-type-bef-checkbox:last-child {
    margin-bottom: 20px;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-submit-button {
    display: none;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-reset-button {
    margin: 0;
    padding: 0 10px;
    position: relative;
    width: 100%;
    transform: inherit;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-reset-button button {
    width: 100%;
    text-align: left;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-reset-button button:focus,
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-reset-button button:active {
    box-shadow: none;
    outline: medium none;
  }
  .filters-search form#views-exposed-form-search-page .views-exposed-widgets .views-reset-button button::after {
    position: absolute;
    right: 20px;
    top: calc(50% - 9px);
  }
  .search-result .item-img-container {
    max-width: 70px;
    float: left;
    width: 30%;
    overflow: hidden;
    display: inline-block;
  }
  .search-result .txt-search-result {
    width: calc(100% - 90px);
    margin-left: 20px;
    max-height: 175px;
  }
}
.savoir-card {
  /* For main style please refer to collection-card */
}
.savoir-card .savoir-txt {
  padding: 20px 20px 30px;
}
.savoir-card.people .e-grid-img-container {
  width: 220px;
  height: 220px;
  line-height: 220px;
  margin: 30px auto 20px;
  border-radius: 50%;
  overflow: hidden;
}
.savoir-card.people .e-grid-img-container img {
  display: inline;
  margin: 0 auto;
  height: 101%;
  width: auto;
  vertical-align: middle;
}
.savoir-card.people .savoir-txt {
  text-align: center;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .savoir-card.people .e-grid-img-container {
    width: 140px;
    height: 140px;
    line-height: 140px;
  }
  .savoir-card .savoir-txt {
    padding: 10px 10px 15px;
  }
}
.speciality-card {
  border: 1px solid #cacaca;
  display: block;
  position: relative;
  width: 100%;
}
.speciality-card:last-child {
  margin-bottom: 0px;
}
.speciality-card .speciality-txt {
  display: block;
}
.speciality-card .img-container {
  overflow: hidden;
  height: 0;
}
.speciality-card .img-container img {
  position: static;
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
.speciality-card .speciality-txt {
  padding: 30px;
}
.speciality-card .speciality-txt .subtitle {
  margin-bottom: 15px;
}
.speciality-card.with-img .img-container,
.speciality-card.with-img .speciality-txt {
  width: 49%;
  display: inline-block;
}
.speciality-card.with-img .img-container {
  height: 100%;
  vertical-align: top;
}
.speciality-card.with-img .speciality-txt {
  padding: 30px 30px 0;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .node-type-editorial-page section.editorial-page .text .speciality-card .subtitle,
  .node-type-exhibition section.editorial-page .text .speciality-card .subtitle,
  .node-type-e-savoir section.editorial-page .text .speciality-card .subtitle,
  .node-type-magazine-article section.editorial-page .text .speciality-card .subtitle,
  .node-type-overview section.editorial-page .text .speciality-card .subtitle,
  .node-type-editorial-activity-page section.editorial-page .text .speciality-card .subtitle,
  .node-type-game section.editorial-page .text .speciality-card .subtitle,
  .node-type-editorial-page section.magazine-article .text .speciality-card .subtitle,
  .node-type-exhibition section.magazine-article .text .speciality-card .subtitle,
  .node-type-e-savoir section.magazine-article .text .speciality-card .subtitle,
  .node-type-magazine-article section.magazine-article .text .speciality-card .subtitle,
  .node-type-overview section.magazine-article .text .speciality-card .subtitle,
  .node-type-editorial-activity-page section.magazine-article .text .speciality-card .subtitle,
  .node-type-game section.magazine-article .text .speciality-card .subtitle {
    margin-bottom: 15px;
  }
  .speciality-card .speciality-txt {
    padding: 15px;
    width: 100%;
    word-break: break-word;
  }
  .speciality-card.with-img .img-container,
  .speciality-card.with-img .speciality-txt {
    width: 100%;
  }
  .speciality-card.with-img .img-container {
    max-height: 340px;
  }
  .speciality-card.with-img .speciality-txt {
    padding: 15px;
    height: auto;
  }
}
.slide {
  position: relative;
}
.slide:after {
  content: '';
  display: block;
  clear: both;
}
.slide .image {
  min-width: 100%;
  min-height: 730px;
  background-size: contain;
}
.slide .slide-info {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 550px;
  color: #666666;
  font-family: circularProBook, Arial, sans-serif;
  padding: 38px 70px 70px 0;
}
.slide .slide-info.white-bkg {
  background: rgba(255, 255, 255, 0.9);
}
.slide .slide-info-wrapper {
  opacity: 0;
  transition: opacity 0.5s;
}
.slide .slide-category {
  margin-left: -30px;
}
.slide .field-name-field-slide-category {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 26px;
  font-family: circularProBold, Arial, sans-serif;
}
.slide .field-name-field-slide-title {
  color: #f9423a;
  font-size: 72px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 72px;
}
.slide .field-name-body {
  font-size: 22px;
  line-height: 32px;
}
.slide .field-name-field-button-link {
  padding-top: 30px;
}
.slide .field-name-field-button-link a {
  font-family: circularProBook, Arial, sans-serif;
  display: block;
  background: transparent;
  text-decoration: none;
  border-radius: 4px;
  width: 200px;
  font-size: 16px;
  color: #fff;
  line-height: 46px;
  text-align: center;
  transition: .4s;
  position: relative;
}
.slide .field-name-field-button-link a:before {
  content: '';
  position: absolute;
  background: #f9423a;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 0;
  left: 0;
}
.slide .field-name-field-button-link a:after {
  background: #ffffff;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.slide .field-name-field-button-link a:hover {
  color: #f9423a;
  box-shadow: 0px 0px 14px 0px #ebebeb;
}
.slide .field-name-field-button-link a:hover:after {
  width: 100%;
}
.slide .field-name-field-button-link a:focus,
.slide .field-name-field-button-link a:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.slide .field-name-field-button-link a:focus:before,
.slide .field-name-field-button-link a:active:before {
  box-shadow: 0px 0px 14px 0px #ebebeb;
}
.slideshow {
  position: relative;
  width: 100%;
}
.slide {
  width: 100%;
  top: 0;
  position: absolute;
  align-items: center;
  justify-items: center;
}
.slide--current {
  position: relative;
  z-index: 4;
}
.slide-image {
  width: 60%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  opacity: 0;
  float: right;
  outline: 3px solid transparent;
}
.slide-image:after {
  content: '';
  display: block;
  clear: both;
}
.slide-image-reveal {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  transform: translate3d(-100%, 0, 0);
  z-index: -1;
}
.slide-info {
  margin: 0;
  font-size: 10vw;
  color: var(--color-title);
  position: relative;
  margin-bottom: 1.25rem;
  opacity: 0;
  z-index: 1;
}
.slide--current .slide-image,
.slide--current .slide-info {
  opacity: 1;
}
.slidenav {
  position: absolute;
  top: 25%;
  left: 18%;
}
.nav-dot {
  font-size: 0;
  width: 5px;
  height: 5px;
  background: #f9423a;
  opacity: .4;
  margin: 8px 0;
  border-radius: 50%;
  transition: .4s;
}
.nav-dot.current {
  opacity: 1;
  margin-left: 5px;
}
@media screen and (max-width: 979px) {
  .slide {
    height: 522px;
  }
  .slide .slide-image {
    width: 100%;
    float: none;
  }
  .slide .slide-info {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 35px 50px;
  }
  .slide .slide .slide-category {
    margin-left: -15px;
  }
  .slide .field-name-field-slide-title {
    font-size: 51px;
    line-height: 48px;
    margin: 15px 0;
    word-break: break-word;
  }
  .slide .field-name-body {
    font-size: 18px;
    line-height: 22px;
    width: 75%;
  }
  .nav-dot {
    display: inline-block;
    margin: 0 8px;
    background: #fff;
  }
  .nav-dot.current {
    margin: 0 8px 5px;
  }
  .slidenav {
    top: auto;
    bottom: 3%;
    left: 10%;
    z-index: 1;
  }
  .slidenav.red-dots .nav-dot {
    background: #f9423a;
    opacity: .4;
  }
  .slidenav.red-dots .nav-dot.current {
    opacity: 1;
  }
  .slide--current {
    z-index: 4;
  }
}
@media screen and (max-width: 1023px) {
  .slide .field-name-field-button-link a:hover {
    color: #ffffff;
  }
  .slide .field-name-field-button-link a:after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .slide {
    height: calc(100vh - 188px);
  }
}
@media screen and (max-width: 359px) {
  .slide .field-name-body {
    width: 100%;
  }
}
@keyframes anim-moema-1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100%:after {
    width: 0%;
  }
}
.row.social-block {
  position: relative;
  background: url(/sites/all/themes/custom/alimentarium/images/social-bkg.svg) no-repeat 15% 95px;
  padding: 15% 0 0;
}
.row.social-block .social-block-title {
  position: absolute;
  white-space: nowrap;
  top: -45px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-size: 130px;
  line-height: 70px;
  letter-spacing: -5px;
  font-family: circularProBold, Arial, sans-serif;
  color: #ececec;
  z-index: -1;
}
.social-posts {
  padding-bottom: 45px;
}
.social-posts a:hover {
  text-decoration: none;
}
.social-posts .post {
  width: 285px;
  height: 285px;
  margin-right: 20px;
  position: relative;
}
.social-posts .post .fb-post {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.social-posts .post.tripadv,
.social-posts .post.facebook {
  width: 570px;
}
.social-posts .post.facebook {
  background: #4267b2 url(/sites/all/themes/custom/alimentarium/images/social_facebook.svg) no-repeat 95% 95%;
  display: flex;
}
.social-posts .post.facebook .post-text,
.social-posts .post.facebook .post-image {
  width: 50%;
  height: 100%;
}
.social-posts .post.instagram:after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 15px;
  bottom: 10px;
  background: url(/sites/all/themes/custom/alimentarium/images/instagram.svg) no-repeat center;
  -webkit-background-size: 38px;
  background-size: 32px;
}
.social-posts .post.twitter {
  background: #1c8ded url(/sites/all/themes/custom/alimentarium/images/social_twitter.svg) no-repeat 95% 95%;
}
.social-posts .post.tripadv {
  background: #00a680;
}
.social-posts .post .post-image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.social-posts .post .post-image img {
  display: block;
  height: 100%;
}
.social-posts .post .post-text {
  padding: 50px 40px;
  font-family: circularProBook, Arial, sans-serif;
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
}
.social-posts .post .post-date {
  margin-bottom: 15px;
}
.social-posts .post .ta-title {
  font-family: circularProBold, Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}
.social-posts .post .ta-author {
  font-family: circularProBold, Arial, sans-serif;
  margin-top: 15px;
}
.social-posts .slick-dots {
  bottom: 5px;
}
.social-posts .slick-next,
.social-posts .slick-prev {
  z-index: 1;
  top: auto;
  bottom: -5px;
}
.social-posts .slick-next {
  left: 13%;
}
.social-posts .slick-next:hover,
.social-posts .slick-next:focus {
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-right-red.svg) no-repeat center;
  background-size: 15px;
}
.social-posts .slick-prev {
  left: 10%;
}
.social-posts .slick-prev:hover,
.social-posts .slick-prev:focus {
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-left-red.svg) no-repeat center;
  background-size: 15px;
}
@media screen and (max-width: 1023px) {
  .row.social-block {
    padding: 60% 0 0 20px;
    background-position: -10px 30px;
  }
  .row.social-block .social-block-title {
    width: 500px;
    font-size: 90px;
    line-height: 70px;
    letter-spacing: -3.5px;
    transform: rotate(90deg);
    top: 10%;
    right: -57%;
    left: auto;
  }
  .row.social-block .slick-dots {
    width: 30%;
  }
  .row.social-block .slick-prev {
    left: 30%;
  }
  .row.social-block .slick-next {
    left: 45%;
  }
}
.magazine-block {
  background: url(/sites/all/themes/custom/alimentarium/images/m-bkg.svg) 100% 100% no-repeat;
  background-size: 1510px;
}
.magazine-block .row:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 3% 58% no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 10% 58% no-repeat;
  background-size: 90px;
  z-index: -1;
}
@media (max-width: 1170px) {
  .magazine-block .row:before {
    display: none;
  }
}
.magazine-block .row .homepage-magazine-block {
  padding: 5% 0 6%;
  background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 22% 0.5% no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 793px 10% no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 900px 18% no-repeat;
  background-size: 90px;
}
.magazine-block .magazine-wrapper {
  position: relative;
}
.homepage-magazine-block h3 {
  text-align: center;
  margin-left: -25%;
  font-family: circularProBold, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
}
.homepage-magazine-block .homepage-magazine-block-title {
  top: 0;
  right: -70px;
  display: block;
  position: absolute;
  color: #ECECEC;
  font-family: circularProBold, Arial, sans-serif;
  font-size: 130px;
  line-height: 70px;
  letter-spacing: -5px;
  z-index: -2;
  writing-mode: vertical-rl;
}
@media (max-width: 1170px) {
  .homepage-magazine-block .homepage-magazine-block-title {
    display: none;
  }
}
.homepage-magazine-block .block-magazine-header {
  display: flex;
  justify-content: center;
  margin-bottom: 10%;
}
.homepage-magazine-block .block-magazine-header .field-collection-container {
  width: 330px;
}
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a {
  font-size: 16px;
  position: relative;
}
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:hover {
  background: transparent;
}
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:hover:after {
  width: 100%;
}
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:hover a {
  color: #ffffff;
}
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:focus,
.homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.homepage-magazine-block .block-magazine-items {
  display: flex;
  justify-content: space-between;
}
.homepage-magazine-block .block-magazine-items .block-magazine-item {
  position: relative;
}
.homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(1) {
  margin-top: -6%;
}
.homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(1) .video-item:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}
.homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(3) {
  margin-top: -18%;
}
.homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(3):after {
  content: '';
  background-color: #ffffff;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.homepage-magazine-block .block-magazine-items .video-item,
.homepage-magazine-block .block-magazine-items .magazine-item {
  position: relative;
  width: 370px;
  min-height: 600px;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.2);
}
.homepage-magazine-block .block-magazine-items .video-item.video-item .video-title a:hover,
.homepage-magazine-block .block-magazine-items .magazine-item.video-item .video-title a:hover {
  cursor: auto;
  text-decoration: none;
}
.homepage-magazine-block .block-magazine-items .video-item.video-item .video-stats .video-comment-count,
.homepage-magazine-block .block-magazine-items .magazine-item.video-item .video-stats .video-comment-count {
  display: none;
}
.homepage-magazine-block .block-magazine-items .video-item.video-item .video-image,
.homepage-magazine-block .block-magazine-items .magazine-item.video-item .video-image {
  z-index: 1;
}
.homepage-magazine-block .block-magazine-items .video-item.video-item .video-image .field-item.even,
.homepage-magazine-block .block-magazine-items .magazine-item.video-item .video-image .field-item.even {
  transition: opacity 1s;
}
.homepage-magazine-block .block-magazine-items .video-item.video-item .video-image.hover .field-item.even,
.homepage-magazine-block .block-magazine-items .magazine-item.video-item .video-image.hover .field-item.even {
  opacity: 0;
}
.homepage-magazine-block .block-magazine-items .video-item .magazine-image,
.homepage-magazine-block .block-magazine-items .magazine-item .magazine-image {
  overflow: hidden;
}
.homepage-magazine-block .block-magazine-items .video-item .magazine-image img,
.homepage-magazine-block .block-magazine-items .magazine-item .magazine-image img {
  transition: transform 0.5s;
}
.homepage-magazine-block .block-magazine-items .video-item .magazine-image:hover img,
.homepage-magazine-block .block-magazine-items .magazine-item .magazine-image:hover img {
  transform: scale(1.2);
}
.homepage-magazine-block .block-magazine-items .field-name-field-video-preview {
  position: relative;
  cursor: pointer;
}
.homepage-magazine-block .block-magazine-items .field-name-field-video-preview .field-item {
  overflow: hidden;
}
.homepage-magazine-block .block-magazine-items .field-name-field-video-preview .field-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: #f9423a url(/sites/all/themes/custom/alimentarium/images/play.svg) no-repeat 60% 50%;
  background-size: 33px;
  opacity: .7;
}
.homepage-magazine-block .block-magazine-items .field-name-field-video-preview .field-item img.img-responsive {
  width: 100%;
  max-height: 277px;
}
.homepage-magazine-block .block-magazine-items .magazine-info,
.homepage-magazine-block .block-magazine-items .video-info {
  padding: 20px 40px;
}
.homepage-magazine-block .block-magazine-items .video-category,
.homepage-magazine-block .block-magazine-items .magazine-category {
  font-family: circularProBold, Arial, sans-serif;
  color: #666666;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 10px -20px;
}
.homepage-magazine-block .block-magazine-items .video-title a,
.homepage-magazine-block .block-magazine-items .magazine-title a {
  color: #f9423a;
  font-family: circularProBold, Arial, sans-serif;
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 10px;
  text-decoration: none;
}
.homepage-magazine-block .block-magazine-items .video-infos,
.homepage-magazine-block .block-magazine-items .magazine-infos {
  font-family: circularProBook, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #f9423a;
  margin-bottom: 15px;
}
.homepage-magazine-block .block-magazine-items .video-infos .field-name-field-date,
.homepage-magazine-block .block-magazine-items .magazine-infos .field-name-field-date,
.homepage-magazine-block .block-magazine-items .video-infos .field-name-field-author,
.homepage-magazine-block .block-magazine-items .magazine-infos .field-name-field-author,
.homepage-magazine-block .block-magazine-items .video-infos .field-name-field-author-video,
.homepage-magazine-block .block-magazine-items .magazine-infos .field-name-field-author-video,
.homepage-magazine-block .block-magazine-items .video-infos .video-date,
.homepage-magazine-block .block-magazine-items .magazine-infos .video-date,
.homepage-magazine-block .block-magazine-items .video-infos .magazine-date,
.homepage-magazine-block .block-magazine-items .magazine-infos .magazine-date,
.homepage-magazine-block .block-magazine-items .video-infos .video-author,
.homepage-magazine-block .block-magazine-items .magazine-infos .video-author,
.homepage-magazine-block .block-magazine-items .video-infos .magazine-author,
.homepage-magazine-block .block-magazine-items .magazine-infos .magazine-author {
  display: inline-block;
}
.homepage-magazine-block .block-magazine-items .video-infos .video-date:after,
.homepage-magazine-block .block-magazine-items .magazine-infos .video-date:after,
.homepage-magazine-block .block-magazine-items .video-infos .magazine-date:after,
.homepage-magazine-block .block-magazine-items .magazine-infos .magazine-date:after {
  content: '•';
}
.homepage-magazine-block .block-magazine-items .video-infos .field-name-field-author-video,
.homepage-magazine-block .block-magazine-items .magazine-infos .field-name-field-author-video,
.homepage-magazine-block .block-magazine-items .video-infos .field-name-field-date,
.homepage-magazine-block .block-magazine-items .magazine-infos .field-name-field-date,
.homepage-magazine-block .block-magazine-items .video-infos .field-name-field-author,
.homepage-magazine-block .block-magazine-items .magazine-infos .field-name-field-author {
  margin: 0 3px;
}
.homepage-magazine-block .block-magazine-items .video-teaser,
.homepage-magazine-block .block-magazine-items .magazine-teaser {
  font-family: circularProBook, Arial, sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #666666;
  margin-bottom: 20px;
}
.homepage-magazine-block .block-magazine-items .video-stats,
.homepage-magazine-block .block-magazine-items .magazine-stats {
  font-family: circularProBook, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  position: absolute;
  bottom: 15px;
}
.homepage-magazine-block .block-magazine-items .video-stats a,
.homepage-magazine-block .block-magazine-items .magazine-stats a {
  color: #f9423a;
  text-decoration: none;
}
.homepage-magazine-block .block-magazine-items .video-stats .video-read-time,
.homepage-magazine-block .block-magazine-items .magazine-stats .video-read-time,
.homepage-magazine-block .block-magazine-items .video-stats .magazine-read-time,
.homepage-magazine-block .block-magazine-items .magazine-stats .magazine-read-time,
.homepage-magazine-block .block-magazine-items .video-stats .video-comment-count,
.homepage-magazine-block .block-magazine-items .magazine-stats .video-comment-count,
.homepage-magazine-block .block-magazine-items .video-stats .magazine-comment-count,
.homepage-magazine-block .block-magazine-items .magazine-stats .magazine-comment-count {
  display: inline-block;
}
.homepage-magazine-block .block-magazine-items .video-stats .video-read-time,
.homepage-magazine-block .block-magazine-items .magazine-stats .video-read-time,
.homepage-magazine-block .block-magazine-items .video-stats .magazine-read-time,
.homepage-magazine-block .block-magazine-items .magazine-stats .magazine-read-time {
  margin-right: 10px;
  padding-left: 30px;
  background: url(/sites/all/themes/custom/alimentarium/images/hours.svg) no-repeat 0 0;
  background-size: 16px;
}
.homepage-magazine-block .block-magazine-items .video-stats .video-comment-count,
.homepage-magazine-block .block-magazine-items .magazine-stats .video-comment-count,
.homepage-magazine-block .block-magazine-items .video-stats .magazine-comment-count,
.homepage-magazine-block .block-magazine-items .magazine-stats .magazine-comment-count {
  padding-left: 30px;
  background: url(/sites/all/themes/custom/alimentarium/images/pulse.svg) no-repeat 0 center;
  background-size: 16px;
}
.homepage-magazine-block .field-name-field-magazine-video {
  flex: 1;
}
.homepage-magazine-block .video-popup {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  left: 0;
  top: 0px;
  z-index: 1001;
}
.homepage-magazine-block .video-popup.fullscreen {
  position: fixed;
  width: 70vw;
  height: 70vh;
  padding: 40px 0;
  left: 15vw;
  top: calc(15vh - 40px);
}
.homepage-magazine-block .video-popup .youtube-container--responsive:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/sites/all/themes/custom/alimentarium/images/preloader.gif) center no-repeat;
  background-size: contain;
}
.homepage-magazine-block .video-popup .video-close {
  background: url(/sites/all/themes/custom/alimentarium/images/close.svg) no-repeat center;
  background-size: 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.homepage-magazine-block .video-popup.hover {
  top: 0;
  padding: 0;
  z-index: -1;
}
.homepage-magazine-block .video-popup.hover .video-close {
  display: none;
}
@media screen and (max-width: 1169px) {
  .magazine-block .row {
    background: url(/sites/all/themes/custom/alimentarium/images/pot.svg) 85% 0% no-repeat;
    background-size: 80px;
  }
  .magazine-block .row .homepage-magazine-block {
    padding-top: 137px;
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 81% 3% no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 70% 0.5% no-repeat;
    background-size: 80px;
  }
  .magazine-block .magazine-wrapper {
    position: relative;
  }
  .homepage-magazine-block h3 {
    text-align: left;
    margin-left: 20px;
    font-family: circularProBold, Arial, sans-serif;
    line-height: 23px;
  }
  .homepage-magazine-block .block-magazine-header .field-collection-view {
    width: 80%;
    margin-left: 44px;
  }
  .homepage-magazine-block .block-magazine-items {
    flex-direction: column;
  }
  .homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(1) {
    margin-top: 0;
  }
  .homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(3) {
    margin-top: 0;
  }
  .homepage-magazine-block .block-magazine-items .block-magazine-item:nth-child(3) .field-name-field-video-preview:after {
    display: none;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-video-preview .field-item {
    overflow: hidden;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-video-preview .field-item img.img-responsive {
    min-height: 400px;
    position: relative;
    left: 50%;
    transform: translateX(-50%) scale(1.8);
    width: auto;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-magazines {
    flex: 1;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-magazines > .field-items {
    flex-direction: column;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-magazines > .field-items > .field-item.even {
    margin: 0;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-magazine-video > .field-items {
    flex-direction: column;
  }
  .homepage-magazine-block .block-magazine-items .field-name-field-magazine-video > .field-items > .field-item {
    margin: 0;
  }
  .homepage-magazine-block .block-magazine-items .video-item,
  .homepage-magazine-block .block-magazine-items .magazine-item {
    width: 100%;
    min-height: auto;
    margin-bottom: 25px;
  }
  .homepage-magazine-block .block-magazine-items .magazine-info,
  .homepage-magazine-block .block-magazine-items .video-info {
    padding: 40px 40px;
  }
  .homepage-magazine-block .block-magazine-items .video-category,
  .homepage-magazine-block .block-magazine-items .magazine-category {
    font-size: 18px;
    line-height: 23px;
    margin: 0 0 10px -10px;
  }
  .homepage-magazine-block .block-magazine-items .video-title,
  .homepage-magazine-block .block-magazine-items .magazine-title {
    margin-bottom: 15px;
  }
  .homepage-magazine-block .block-magazine-items .video-title a,
  .homepage-magazine-block .block-magazine-items .magazine-title a {
    line-height: 29px;
  }
  .homepage-magazine-block .block-magazine-items .video-infos,
  .homepage-magazine-block .block-magazine-items .magazine-infos {
    line-height: 18px;
  }
  .homepage-magazine-block .block-magazine-items .video-teaser,
  .homepage-magazine-block .block-magazine-items .magazine-teaser {
    line-height: 24px;
    margin-bottom: 15px;
  }
  .homepage-magazine-block .block-magazine-items .video-stats,
  .homepage-magazine-block .block-magazine-items .magazine-stats {
    position: static;
  }
  .homepage-magazine-block .video-popup {
    top: 75%;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1170px) {
  .magazine-block .row .homepage-magazine-block:after {
    top: 22%;
    right: -158px;
  }
}
@media screen and (max-width: 1169px) and (min-width: 1024px) {
  .magazine-block .row .homepage-magazine-block:after {
    top: 300px;
    right: -147px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  div.magazine-block .row {
    background: url(/sites/all/themes/custom/alimentarium/images/pot.svg) 81% 0% no-repeat;
    background-size: 75px;
  }
  div.magazine-block .row .homepage-magazine-block {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 76% 130px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 63% 40px no-repeat;
    background-size: 81px;
    padding-top: 177px;
  }
  div.magazine-block .row .homepage-magazine-block:after {
    top: 300px;
    right: -140px;
    display: block;
  }
  div.magazine-block .magazine-block {
    background: url("/sites/all/themes/custom/alimentarium/images/_hp_cards_m_bck_mag_pictos.svg") repeat center 100%;
  }
  div.magazine-block .block-magazine-items .field-name-field-video-preview .field-item img.img-responsive {
    min-height: 280px;
  }
}
@media screen and (max-width: 768px) and (max-width: 360px) {
  div.magazine-block .block-magazine-items .field-name-field-video-preview .field-item img.img-responsive {
    min-height: 220px;
  }
}
@media screen and (max-width: 1023px) {
  .magazine-block .magazine-wrapper:after {
    top: 300px;
    right: -147px;
  }
  .magazine-block .row:after {
    background: url(/sites/all/themes/custom/alimentarium/images/pot.svg) 85% 0% no-repeat;
  }
  .magazine-block .row .homepage-magazine-block {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 82% 130px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 71% 40px no-repeat;
    background-size: 81px;
  }
  .magazine-block .row .homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:after {
    display: none;
  }
  .magazine-block .row .homepage-magazine-block .block-magazine-header .field-collection-container .field-collection-item-field-block-header .field-name-field-button-link a:hover {
    color: #f9423a;
  }
  .magazine-block .row .homepage-magazine-block .block-magazine-header .field-collection-container {
    width: 100%;
  }
  .magazine-block .row .homepage-magazine-block:after {
    top: 300px;
    right: -135px;
    display: block;
  }
  .magazine-block .magazine-block {
    background: url("/sites/all/themes/custom/alimentarium/images/_hp_cards_m_bck_mag_pictos.svg") repeat center 100%;
  }
}
@media screen and (max-width: 640px) {
  div.magazine-block div.row {
    background: url(/sites/all/themes/custom/alimentarium/images/pot.svg) 70% 1% no-repeat;
    background-size: 75px;
  }
  div.magazine-block div.row .homepage-magazine-block {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 66% 130px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 45% 40px no-repeat;
    background-size: 81px;
  }
  div.magazine-block div.row .homepage-magazine-block .block-magazine-header {
    margin-right: 100px;
  }
  div.magazine-block div.row .magazine-block .magazine-wrapper:after {
    right: -100px;
    font-size: 100px;
    top: 13%;
  }
}
@media screen and (max-width: 480px) {
  div.magazine-block div.row {
    background: url(/sites/all/themes/custom/alimentarium/images/pot.svg) 65% 1% no-repeat;
    background-size: 75px;
  }
  div.magazine-block div.row .homepage-magazine-block {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 56% 115px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 30% 30px no-repeat;
    background-size: 81px;
  }
}
@media screen and (max-width: 360px) {
  div.magazine-block div.row .homepage-magazine-block {
    background: url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 140px 115px no-repeat, url(/sites/all/themes/custom/alimentarium/images/grid-dots.svg) 60px 30px no-repeat;
    background-size: 81px;
  }
}
.restaurant-block {
  padding-top: 140px;
  padding-bottom: 150px;
}
.restaurant-block .container-fluid {
  width: 100%;
}
.restaurant-block .restaurant-image-info {
  max-height: 850px;
}
.restaurant-block .restaurant-image-info .restaurant-lemon {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_lemon.svg) no-repeat 100% 0;
  background-size: contain;
  height: 130px;
  width: 130px;
  position: absolute;
  transform: rotate(-90deg);
  right: 30px;
  top: -145px;
}
.restaurant-block .restaurant-image-info .restaurant-info {
  background-color: #ffffff;
  display: inline-block;
  left: -175px;
  height: 480px;
  position: relative;
  padding: 30px 0 0 130px;
  vertical-align: bottom;
  width: 475px;
  border-right: 1px solid #ffffff;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-title {
  position: relative;
  left: -30px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-family: CircularProBold, Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 26px;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-second-title {
  color: #f9423a;
  font-size: 36px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 34px;
  margin-bottom: 20px;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-suggestion {
  color: #666666;
  font-size: 24px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 24px;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-price {
  color: #666666;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 30px;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-menu-list {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 25px;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link {
  width: 200px;
  border: 1px solid #f9423a;
  border-radius: 3px;
  text-align: center;
  padding: 11px 0;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link a {
  color: #f9423a;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: none;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:hover a {
  color: #ffffff;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:hover:after {
  width: 100%;
}
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:focus,
.restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.restaurant-block .restaurant-image-info .restaurant-image {
  display: inline-block;
  max-width: 1025px;
  border-bottom: 1px solid #ffffff;
}
.restaurant-block .restaurant-image-info .restaurant-image .restaurant-image-title {
  content: 'miam';
  letter-spacing: -5px;
  font-size: 130px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 70px;
  color: #ececec;
  display: block;
  position: absolute;
  left: calc((50vw - 300px));
  top: -65px;
  z-index: -1;
}
.restaurant-block .restaurant-image-info .restaurant-image .img-responsive {
  display: inherit;
  border: none;
  max-width: 1025px;
  max-height: 850px;
  width: 100%;
}
.restaurant-block .restaurant-comment-row {
  max-width: 1170px;
  margin: 0 auto;
  padding: 63px 95px 150px 95px;
}
.restaurant-block .restaurant-comment-row .comment-cook-hat {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_cookhat.svg) no-repeat 100% 0;
  background-size: contain;
  height: 130px;
  width: 130px;
  position: absolute;
  transform: rotate(-180deg);
  bottom: 310px;
  left: calc(((100vw - 1170px) / 2 - 60px));
}
.restaurant-block .restaurant-comment-row .comment-tomato {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_tomato.svg) no-repeat 100% 0;
  background-size: contain;
  height: 80px;
  width: 80px;
  position: absolute;
  transform: rotate(-180deg);
  right: calc(((100vw - 1170px) / 2 - 20px));
  bottom: 80px;
}
.restaurant-block .restaurant-comment-row .comment-pot {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_pot.svg) no-repeat 100% 0;
  background-size: contain;
  height: 99px;
  width: 100px;
  position: absolute;
  transform: rotate(-180deg);
  bottom: 10px;
  right: calc((50vw - 100px));
}
.restaurant-block .restaurant-comment-row .restaurant-comment {
  margin-right: 35px;
}
.restaurant-block .restaurant-comment-row .restaurant-comment p {
  display: inline;
  color: #f9423a;
  font-size: 36px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 46px;
}
.restaurant-block .restaurant-comment-row .restaurant-comment-author {
  color: #666666;
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
}
@media screen and (min-width: 1200px) and (max-width: 1550px) {
  .restaurant-block .restaurant-image-info {
    position: relative;
  }
  .restaurant-block .restaurant-image-info .restaurant-info {
    left: auto;
    right: 200px;
    bottom: 0;
    width: 460px;
    padding: 30px 0 0 50px;
    position: absolute;
  }
  .restaurant-block .restaurant-image-info .restaurant-image {
    max-width: calc((100vw - 480px));
  }
  .restaurant-block .restaurant-image-info .restaurant-image .img-responsive {
    max-width: calc((100vw - 480px));
  }
  .restaurant-block .restaurant-comment-row .comment-cook-hat {
    left: calc(((100vw - 1170px) / 2 - 20px));
  }
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .restaurant-block .restaurant-image-info .restaurant-lemon {
    height: 90px;
    width: 90px;
    right: -20px;
    top: -140px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info {
    left: auto;
    right: 0;
    top: 270px;
    width: 400px;
    padding: 30px 0 0 50px;
    position: absolute;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-title {
    left: -20px;
  }
  .restaurant-block .restaurant-image-info .restaurant-image .img-responsive {
    max-height: 750px;
  }
  .restaurant-block .restaurant-comment-row .comment-cook-hat {
    height: 67px;
    width: 67px;
    left: 20px;
    top: 735px;
    bottom: unset;
  }
  .restaurant-block .restaurant-comment-row .comment-tomato {
    height: 59px;
    width: 59px;
    right: -11px;
    top: 840px;
    bottom: unset;
  }
  .restaurant-block .restaurant-comment-row .comment-pot {
    height: 74px;
    width: 75px;
    right: 20px;
    bottom: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .restaurant-block {
    padding-top: 130px;
    padding-bottom: 55px;
  }
  .restaurant-block .restaurant-image-info {
    margin-bottom: 132px;
  }
  .restaurant-block .restaurant-image-info .restaurant-lemon {
    height: 90px;
    width: 90px;
    right: -20px;
    top: -140px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info {
    left: auto;
    height: 550px;
    position: absolute;
    padding: 30px 20px 0 60px;
    width: 270px;
    top: 220px;
    right: 19px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-title {
    left: -20px;
    line-height: 23pt;
    margin-bottom: 15px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-second-title {
    margin-bottom: 30px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-suggestion {
    font-size: 20px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-price {
    margin-bottom: 18px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-menu-list {
    margin-bottom: 0;
    height: 215px;
  }
  .restaurant-block .restaurant-image-info .restaurant-image {
    margin-right: 20px;
    overflow: hidden;
    display: block;
    max-width: unset;
  }
  .restaurant-block .restaurant-image-info .restaurant-image .restaurant-image-title {
    left: 20px;
    letter-spacing: -3px;
    font-size: 95px;
    top: -55px;
  }
  .restaurant-block .restaurant-image-info .restaurant-image .img-responsive {
    height: 638px;
    width: 1023px;
    position: relative;
    left: calc((100vw - 1024px));
    max-width: unset;
  }
  .restaurant-block .restaurant-comment-row {
    padding: 115px 40px 5px 20px;
  }
  .restaurant-block .restaurant-comment-row .comment-cook-hat {
    height: 67px;
    width: 67px;
    left: 20px;
    top: 800px;
    bottom: unset;
  }
  .restaurant-block .restaurant-comment-row .comment-tomato {
    height: 59px;
    width: 59px;
    right: -11px;
    top: 905px;
    bottom: unset;
  }
  .restaurant-block .restaurant-comment-row .comment-pot {
    height: 74px;
    width: 75px;
    right: 20px;
    bottom: -104px;
    display: none;
  }
  .restaurant-block .restaurant-comment-row .restaurant-comment p {
    font-size: 20pt;
    line-height: 25pt;
  }
  .restaurant-block .restaurant-comment-row .restaurant-comment-author {
    color: #f9423a;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
  }
}
@media screen and (min-width: 979px) and (max-width: 1024px) {
  .restaurant-block .container-fluid {
    padding: 0;
  }
  .restaurant-block .container-fluid .restaurant-image-info .restaurant-image {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .restaurant-block .restaurant-image-info .restaurant-info {
    width: 370px;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-link a:hover {
    color: #f9423a;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:after {
    display: none;
  }
  .restaurant-block .restaurant-image-info .restaurant-info .restaurant-link:hover a {
    color: #f9423a;
  }
}
@media screen and (max-width: 640px) {
  .restaurant-block .restaurant-image-info .restaurant-info {
    width: 270px;
  }
}
.academy-block {
  padding-top: 150px;
  margin-bottom: 65px;
}
.academy-block .academy-whisk,
.academy-block .academy-strawberry,
.academy-block .academy-octopus {
  position: absolute;
}
.academy-block .academy-whisk {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_whisk.svg) no-repeat center;
  background-size: contain;
  transform: rotate(90deg);
  height: 130px;
  width: 130px;
  right: -180px;
  top: -25px;
}
.academy-block .academy-strawberry {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_strawberry.svg) no-repeat center;
  background-size: contain;
  transform: rotate(-180deg);
  height: 160px;
  width: 160px;
  left: 230px;
  top: 215px;
}
.academy-block .academy-octopus {
  background: url(/sites/all/themes/custom/alimentarium/images/picto_octopus.svg) no-repeat center;
  background-size: contain;
  transform: rotate(-180deg);
  height: 75px;
  width: 75px;
  top: 275px;
  right: 200px;
}
.academy-block .academy-block-title {
  letter-spacing: -10px;
  font-size: 285px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 70px;
  color: #ececec;
  display: block;
  position: absolute;
  z-index: -2;
  top: 30%;
  left: 15px;
}
.academy-block .container-fluid {
  padding-left: 10px;
  padding-right: 10px;
}
.academy-block .views-field-field-platform-link {
  position: relative;
  min-height: 360px;
  width: 536px;
  margin-left: 420px;
}
.academy-block .views-field-field-platform-link .academy-title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 26px;
  position: relative;
  right: 25px;
  margin-bottom: 17px;
}
.academy-block .views-field-field-platform-link .academy-second-title {
  width: 246px;
  color: #f9423a;
  font-size: 36px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 34px;
  margin-bottom: 10px;
}
.academy-block .views-field-field-platform-link .academy-description {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 25px;
}
.academy-block .views-field-field-platform-link .academy-platform-link {
  width: 200px;
  border: 1px solid #f9423a;
  border-radius: 3px;
  text-align: center;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.academy-block .views-field-field-platform-link .academy-platform-link a {
  color: #f9423a;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: none;
}
.academy-block .views-field-field-platform-link .academy-platform-link a:after {
  background: #f9423a;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.academy-block .views-field-field-platform-link .academy-platform-link:hover a {
  color: #ffffff;
  background: transparent;
}
.academy-block .views-field-field-platform-link .academy-platform-link:hover a:active,
.academy-block .views-field-field-platform-link .academy-platform-link:hover a:after {
  width: 100%;
}
.academy-block .views-field-field-platform-link .academy-platform-link:focus,
.academy-block .views-field-field-platform-link .academy-platform-link:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.academy-block .views-field-field-academy-presentation {
  height: 960px;
  padding-top: 125px;
  position: relative;
  z-index: 0;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation {
  height: 468px;
  width: 468px;
  display: inline-flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  padding: 0 100px 45px 30px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:before {
  content: '';
  position: absolute;
  top: 35px;
  width: 32px;
  height: 32px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: block;
  background: url(/sites/all/themes/custom/alimentarium/images/plus_white.svg) no-repeat center;
  background-size: 18px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .academy-presentation-title {
  position: absolute;
  width: 468px;
  color: #f9423a;
  font-size: 18px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 26px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-visual-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-link {
  position: absolute;
  top: 30px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-link .field-item {
  display: block;
  transition: 0.25s ease-in-out;
  position: relative;
  height: 468px;
  width: 468px;
  top: -30px;
  left: -30px;
  border: none;
  color: #ffffff;
  text-decoration: none;
  background-color: #f9423a;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-link .field-item a {
  width: 468px;
  height: 468px;
  color: #ffffff;
  font-size: 72px;
  font-weight: 600;
  line-height: 70px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  top: 120px;
  padding-left: 30px;
  z-index: 5;
  margin: 0;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-link .field-item:hover,
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-link .field-item:active,
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-link .field-item:focus {
  opacity: 1;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-all-link {
  position: absolute;
  bottom: -40px;
  z-index: 5;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-all-link a {
  color: #f9423a;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: none;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-all-link a:after {
  content: '';
  position: absolute;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url(/sites/all/themes/custom/alimentarium/images/arrow-right-red.svg) no-repeat center;
  background-size: 16px;
  margin-left: 5px;
  right: -20px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-all-link a:hover:after {
  animation: scrolltoright 1s infinite;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-visual-name {
  color: #ffffff;
  font-size: 36px;
  font-family: CircularProBold, Arial, sans-serif;
  line-height: 34px;
  margin-bottom: 10px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-description {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation .field-name-field-presentation-description p {
  margin-bottom: 0;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:first-child {
  top: 5px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:first-child .academy-presentation-title {
  left: 240px;
  transform: rotate(-90deg);
  top: 225px;
  text-align: right;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:first-child .field-name-field-presentation-all-link {
  left: 0;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:nth-child(2) {
  right: 80px;
  top: 300px;
  position: relative;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:nth-child(2) .academy-presentation-title {
  padding-left: 55px;
  top: -22px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:nth-child(2) .field-name-field-presentation-all-link {
  left: 0;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:last-child {
  position: absolute;
  right: 0;
  top: 67px;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:last-child .academy-presentation-title {
  left: -245px;
  transform: rotate(-90deg);
  top: 225px;
  text-align: right;
}
.academy-block .views-field-field-academy-presentation .node-academy-presentation:last-child .field-name-field-presentation-all-link {
  right: 35px;
}
.academy-block .field-name-field-presentation-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.academy-block .field-name-field-presentation-image .field-label {
  display: none;
}
@media screen and (max-width: 1023px) {
  .academy-block {
    position: relative;
    width: 100%;
    margin: 0;
  }
  .academy-block .academy-block-title {
    letter-spacing: -10px;
    font-size: 170px;
    font-family: circularProBold, Arial, sans-serif;
    line-height: 70px;
    color: #ececec;
    display: block;
    position: absolute;
    z-index: -2;
    top: -80px;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .academy-block .container-fluid {
    padding: 0;
  }
  .academy-block .container-fluid .homepage-academy-block:before {
    content: "";
    width: 78px;
    height: 78px;
    background: url(/sites/all/themes/custom/alimentarium/images/picto_042_milk@1.5x.svg) no-repeat center 100%;
    position: absolute;
    top: -200px;
    left: 60px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation {
    height: auto;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation:before {
    display: none;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content {
    display: flex;
    flex-direction: column;
    padding: 0 5%;
    position: relative;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content:before {
    content: '';
    background: url(/sites/all/themes/custom/alimentarium/images/picto_octopus.svg) no-repeat center;
    background-size: contain;
    transform: rotate(-180deg);
    height: 75px;
    width: 75px;
    top: -45px;
    left: -35px;
    position: absolute;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:nth-child(2) {
    right: auto;
    top: auto;
    align-self: flex-end;
    margin-top: -5%;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:nth-child(2) .academy-presentation-title {
    width: 100%;
    text-align: right;
    right: 0;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:nth-child(2) .field-name-field-presentation-all-link {
    right: 0;
    left: auto;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:last-child {
    position: relative;
    right: auto;
    top: auto;
    margin-top: -5%;
  }
  .academy-block .container-fluid .academy-octopus {
    display: none;
  }
  .academy-block .container-fluid .academy-strawberry {
    left: auto;
    top: -150px;
    right: -42px;
  }
  .academy-block .container-fluid .views-field-field-platform-link {
    position: relative;
    min-height: 360px;
    margin: 0;
    padding: 20px 40px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .academy-block:before {
    font-size: 167px;
  }
}
@media screen and (max-width: 640px) {
  .academy-block .container-fluid {
    padding: 0;
  }
  .academy-block .container-fluid .homepage-academy-block:before {
    top: -150px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation {
    height: auto;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content {
    display: flex;
    flex-direction: column;
    padding: 8px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-presentation-all-link {
    display: none;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation {
    width: 320px;
    height: 320px;
    padding: 0 5px 35px 15px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:before {
    display: none;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-visual-name {
    margin-bottom: auto;
    margin-top: 10px;
    line-height: 22px;
    font-size: 20px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-presentation-link {
    display: none;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-presentation-description {
    display: none;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:first-child .academy-presentation-title {
    left: 95px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:nth-child(2) {
    right: auto;
    top: auto;
    align-self: flex-end;
    margin-top: -20%;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:nth-child(2) .field-name-field-presentation-all-link {
    display: none;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:nth-child(2) .academy-presentation-title {
    width: 100%;
    text-align: right;
    right: 0;
    top: auto;
    bottom: -22px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:last-child {
    position: relative;
    right: auto;
    top: auto;
    margin-top: -20%;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation {
    width: 320px;
    height: 320px;
    padding: 0 5px 35px 15px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-visual-name {
    font-size: 20px;
  }
  .academy-block .container-fluid .academy-octopus {
    top: 455px;
  }
  .academy-block:before {
    font-size: 127px;
    top: 95px;
  }
  .academy-block .views-field-field-academy-presentation .node-academy-presentation:last-child .academy-presentation-title {
    left: -243px;
  }
}
@media screen and (max-width: 480px) {
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation {
    width: 250px;
    height: 250px;
    padding: 0 5px 5px 5px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-presentation-link {
    top: 10px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:first-child .academy-presentation-title {
    left: 25px;
  }
  .academy-block .container-fluid .academy-octopus {
    top: 526px;
  }
  .academy-block .container-fluid .academy-strawberry {
    top: -107px;
    right: -42px;
    height: 110px;
    width: 110px;
  }
  .academy-block .academy-block-title {
    font-size: 100px;
    top: -65px;
  }
  .academy-block .homepage-academy-block:before {
    top: -140px;
    left: 50px;
  }
}
@media screen and (max-width: 360px) {
  .academy-block:before {
    font-size: 80px;
    top: 100px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation {
    width: 200px;
    height: 200px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation .field-name-field-visual-name {
    font-size: 20px;
  }
  .academy-block .container-fluid .views-field-field-academy-presentation > .field-content .node-academy-presentation:first-child .academy-presentation-title {
    left: -23px;
  }
  .academy-block .container-fluid .academy-octopus {
    top: 612px;
  }
}
.sticky-bar {
  position: absolute;
  opacity: 0;
  float: left;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.sticky-bar.fixed {
  position: fixed;
  left: 0px;
  top: 35%;
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .sticky-bar.fixed {
    margin-left: -1px;
  }
}
.sticky-bar a {
  text-decoration: none;
  color: #ffffff;
}
.sticky-bar a:hover,
.sticky-bar a:focus,
.sticky-bar a:active {
  color: #999999;
}
.sticky-bar table {
  border: medium none;
  box-shadow: none;
  display: block;
  max-width: 100%;
  overflow-x: auto;
}
.sticky-bar table tr {
  border-bottom: 1px solid #ffffff;
}
.sticky-bar table tr td {
  border: medium none;
  padding: 5px 5px 0 0;
}
.sticky-bar .sticky-buttons,
.sticky-bar .tab-content {
  display: inline-block;
  float: left;
}
.sticky-bar .sticky-buttons.showed li a {
  color: rgba(255, 255, 255, 0.3);
}
.sticky-bar .sticky-buttons li {
  display: block;
  float: none;
  width: 50px;
  height: 50px;
  border-bottom: solid 1px #ffffff;
  border-left: solid 1px #ffffff;
  margin-bottom: 0;
  text-align: center;
  border-radius: 0;
}
.sticky-bar .sticky-buttons li a {
  height: 50px;
  font-size: 23.33px;
  padding: 10px;
  color: #ffffff;
}
.sticky-bar .sticky-buttons li a:hover,
.sticky-bar .sticky-buttons li a:active,
.sticky-bar .sticky-buttons li a:focus {
  background-color: transparent;
  color: #ffffff;
  border-color: transparent;
}
.sticky-bar .sticky-buttons li.active {
  border-left: transparent;
  margin-bottom: 0;
  padding-top: 1px;
  padding-left: 1px;
}
.sticky-bar .sticky-buttons li.active > a {
  height: 48px;
  color: white;
  background-color: #572c5f;
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.sticky-bar .sticky-buttons li:last-child,
.sticky-bar .sticky-buttons li:last-child .sticky-bar .sticky-buttons li.active {
  border-bottom: none;
  margin-bottom: -1px;
}
.sticky-bar .sticky-buttons li:last-child a,
.sticky-bar .sticky-buttons li:last-child .sticky-bar .sticky-buttons li.active a {
  height: 61px;
}
.sticky-bar .tab-content {
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
  width: 350px;
  display: none;
}
.sticky-bar .tab-content h3 {
  margin-bottom: 20px;
}
.sticky-bar .tab-content .tab-pane {
  border-radius: 3px 0px 3px 3px;
  padding: 40px;
  min-height: 240px;
}
.sticky-bar .tab-content .tab-pane .new-line {
  margin-top: 30px;
}
.sticky-bar .tab-content .btn-cta {
  width: 100%;
  margin-top: 20px;
}
.sticky-bar .tab-content li p.info {
  display: inline;
}
.sticky-bar #opening-hours .icon-clock:before {
  margin-right: 5px;
}
.sticky-bar #opening-hours ul {
  padding: 0;
}
.sticky-bar #opening-hours ul li {
  list-style-type: none;
  padding: 5px 0;
  border-bottom: solid 1px #ffffff;
}
.sticky-bar #opening-hours ul li:first-child {
  border-top: solid 1px #ffffff;
}
.sticky-bar #opening-hours ul li span:last-of-type {
  float: right;
}
.sticky-bar #agenda ul {
  padding: 0;
  margin-top: 20px;
}
.sticky-bar #agenda ul li {
  list-style-type: none;
  border-top: solid 1px #ffffff;
  padding: 20px 0;
}
.sticky-bar #agenda .btn-cta {
  margin-top: 10px;
}
.sticky-bar #contact-us .sticky-map {
  margin-bottom: 20px;
}
.sticky-bar #contact-us .icon-phone {
  margin-top: 20px;
}
.sticky-bar ul.nav-tabs {
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 0 3px 3px 0;
  overflow: hidden;
  border-bottom: none;
}
.sticky-bar .btn-plain.btn-purple {
  border: solid 1px;
}
.sticky-bar .txt-light-thirty-sticky-bar {
  color: rgba(255, 255, 255, 0.3);
}
/* Media Queries */
@media screen and (max-width: 1404px) {
  .sticky-bar {
    display: none;
  }
}
.webform,
.node-webform {
  font-family: circularProBook, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  color: #666666;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}
.webform .btn-cta,
.node-webform .btn-cta {
  min-width: 200px;
}
.webform .btn-cta + .btn-cta,
.node-webform .btn-cta + .btn-cta {
  margin-top: 10px;
}
.webform form .webform-component,
.node-webform form .webform-component {
  float: left;
  width: 100%;
  margin-bottom: 35px;
}
.webform form .webform-component > label,
.node-webform form .webform-component > label,
.webform form .webform-component > input,
.node-webform form .webform-component > input,
.webform form .webform-component textarea,
.node-webform form .webform-component textarea,
.webform form .webform-component textarea + .grippie,
.node-webform form .webform-component textarea + .grippie,
.webform form .webform-component select,
.node-webform form .webform-component select {
  width: calc(100% - 10px);
}
.webform form .webform-component label,
.node-webform form .webform-component label {
  font-weight: normal;
}
.webform form .webform-component > input,
.node-webform form .webform-component > input,
.webform form .webform-component textarea,
.node-webform form .webform-component textarea,
.webform form .webform-component select,
.node-webform form .webform-component select {
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  border: 2px solid #e5e5e5;
  color: #999999;
  font-size: 16px;
}
.webform form .webform-component > input:focus,
.node-webform form .webform-component > input:focus,
.webform form .webform-component textarea:focus,
.node-webform form .webform-component textarea:focus,
.webform form .webform-component select:focus,
.node-webform form .webform-component select:focus,
.webform form .webform-component > input:active,
.node-webform form .webform-component > input:active,
.webform form .webform-component textarea:active,
.node-webform form .webform-component textarea:active,
.webform form .webform-component select:active,
.node-webform form .webform-component select:active {
  border-color: #666666;
  color: #666666;
  box-shadow: none;
  outline: none;
}
.webform form .webform-component > input,
.node-webform form .webform-component > input,
.webform form .webform-component select,
.node-webform form .webform-component select {
  height: 45px;
}
.webform form .webform-component-radios,
.node-webform form .webform-component-radios,
.webform form .webform-component-checkboxes,
.node-webform form .webform-component-checkboxes {
  /* Aspect des checkboxes et radios */
  /* :before sert à créer la case à cocher */
  /* Aspect général de la coche */
  /* Aspect si "pas cochée" */
  /* Aspect si "cochée" */
}
.webform form .webform-component-radios input[type="checkbox"]:not(:checked),
.node-webform form .webform-component-radios input[type="checkbox"]:not(:checked),
.webform form .webform-component-checkboxes input[type="checkbox"]:not(:checked),
.node-webform form .webform-component-checkboxes input[type="checkbox"]:not(:checked),
.webform form .webform-component-radios input[type="checkbox"]:checked,
.node-webform form .webform-component-radios input[type="checkbox"]:checked,
.webform form .webform-component-checkboxes input[type="checkbox"]:checked,
.node-webform form .webform-component-checkboxes input[type="checkbox"]:checked,
.webform form .webform-component-radios input[type="radio"]:not(:checked),
.node-webform form .webform-component-radios input[type="radio"]:not(:checked),
.webform form .webform-component-checkboxes input[type="radio"]:not(:checked),
.node-webform form .webform-component-checkboxes input[type="radio"]:not(:checked),
.webform form .webform-component-radios input[type="radio"]:checked,
.node-webform form .webform-component-radios input[type="radio"]:checked,
.webform form .webform-component-checkboxes input[type="radio"]:checked,
.node-webform form .webform-component-checkboxes input[type="radio"]:checked {
  left: -9999px;
  position: absolute;
}
.webform form .webform-component-radios [type="checkbox"]:not(:checked) + label,
.node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label,
.webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label,
.node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label,
.webform form .webform-component-radios [type="checkbox"]:checked + label,
.node-webform form .webform-component-radios [type="checkbox"]:checked + label,
.webform form .webform-component-checkboxes [type="checkbox"]:checked + label,
.node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label,
.webform form .webform-component-radios [type="radio"]:not(:checked) + label,
.node-webform form .webform-component-radios [type="radio"]:not(:checked) + label,
.webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label,
.node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label,
.webform form .webform-component-radios [type="radio"]:checked + label,
.node-webform form .webform-component-radios [type="radio"]:checked + label,
.webform form .webform-component-checkboxes [type="radio"]:checked + label,
.node-webform form .webform-component-checkboxes [type="radio"]:checked + label {
  position: relative;
  /* permet de positionner les pseudo-éléments */
  padding-left: 30px;
  /* fait un peu d'espace pour notre case à venir */
  padding-top: 3px;
  /* fait un peu d'espace pour notre case à venir */
  cursor: pointer;
  /* affiche un curseur adapté */
}
.webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:before,
.node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:before,
.webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:before,
.node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:before,
.webform form .webform-component-radios [type="checkbox"]:checked + label:before,
.node-webform form .webform-component-radios [type="checkbox"]:checked + label:before,
.webform form .webform-component-checkboxes [type="checkbox"]:checked + label:before,
.node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label:before,
.webform form .webform-component-radios [type="radio"]:not(:checked) + label:before,
.node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:before,
.webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:before,
.node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:before,
.webform form .webform-component-radios [type="radio"]:checked + label:before,
.node-webform form .webform-component-radios [type="radio"]:checked + label:before,
.webform form .webform-component-checkboxes [type="radio"]:checked + label:before,
.node-webform form .webform-component-checkboxes [type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 5px;
  width: 17px;
  height: 17px;
  /* dim. de la case */
  border: 1px solid #808080;
  background: transparent;
}
.webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:before,
.node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:before,
.webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:before,
.node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:before,
.webform form .webform-component-radios [type="checkbox"]:checked + label:before,
.node-webform form .webform-component-radios [type="checkbox"]:checked + label:before,
.webform form .webform-component-checkboxes [type="checkbox"]:checked + label:before,
.node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label:before {
  border-radius: 1px;
  /* angles arrondis */
}
.webform form .webform-component-radios [type="radio"]:not(:checked) + label:before,
.node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:before,
.webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:before,
.node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:before,
.webform form .webform-component-radios [type="radio"]:checked + label:before,
.node-webform form .webform-component-radios [type="radio"]:checked + label:before,
.webform form .webform-component-checkboxes [type="radio"]:checked + label:before,
.node-webform form .webform-component-checkboxes [type="radio"]:checked + label:before {
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
}
.webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:after,
.node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:after,
.webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:after,
.node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:after,
.webform form .webform-component-radios [type="checkbox"]:checked + label:after,
.node-webform form .webform-component-radios [type="checkbox"]:checked + label:after,
.webform form .webform-component-checkboxes [type="checkbox"]:checked + label:after,
.node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label:after,
.webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
.node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
.webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
.node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
.webform form .webform-component-radios [type="radio"]:checked + label:after,
.node-webform form .webform-component-radios [type="radio"]:checked + label:after,
.webform form .webform-component-checkboxes [type="radio"]:checked + label:after,
.node-webform form .webform-component-checkboxes [type="radio"]:checked + label:after {
  content: "\e013";
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 9px;
  left: 5px;
  font-size: 9px;
  color: #ffffff;
  background-color: #572c5f;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  width: 17px;
  display: block;
  text-align: center;
}
.webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
.node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
.webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
.node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
.webform form .webform-component-radios [type="radio"]:checked + label:after,
.node-webform form .webform-component-radios [type="radio"]:checked + label:after,
.webform form .webform-component-checkboxes [type="radio"]:checked + label:after,
.node-webform form .webform-component-checkboxes [type="radio"]:checked + label:after {
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
}
.webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:after,
.node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:after,
.webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:after,
.node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:after,
.webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
.node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
.webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
.node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  /* coche invisible */
  transform: scale(0);
  /* mise à l'échelle à 0 */
}
.webform form .webform-component-radios [type="checkbox"]:checked + label:after,
.node-webform form .webform-component-radios [type="checkbox"]:checked + label:after,
.webform form .webform-component-checkboxes [type="checkbox"]:checked + label:after,
.node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label:after,
.webform form .webform-component-radios [type="radio"]:checked + label:after,
.node-webform form .webform-component-radios [type="radio"]:checked + label:after,
.webform form .webform-component-checkboxes [type="radio"]:checked + label:after,
.node-webform form .webform-component-checkboxes [type="radio"]:checked + label:after {
  opacity: 1;
  /* coche opaque */
  transform: scale(1);
  /* mise à l'échelle 1:1 */
}
.webform form .webform-component.inline-field,
.node-webform form .webform-component.inline-field {
  display: block;
  float: left;
  min-height: 1px;
  position: relative;
  width: 50%;
}
.webform form .webform-component-select,
.node-webform form .webform-component-select,
.webform form .webform-component-date .form-type-select,
.node-webform form .webform-component-date .form-type-select,
.webform form .webform-component-time .form-type-select,
.node-webform form .webform-component-time .form-type-select {
  position: relative;
}
.webform form .webform-component-select .select2-selection,
.node-webform form .webform-component-select .select2-selection,
.webform form .webform-component-date .form-type-select .select2-selection,
.node-webform form .webform-component-date .form-type-select .select2-selection,
.webform form .webform-component-time .form-type-select .select2-selection,
.node-webform form .webform-component-time .form-type-select .select2-selection {
  outline: none;
  height: 45px;
  border: 1px solid #ECECEC;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none !important;
  background: transparent;
  padding: 0 0 0 7px;
  text-shadow: 0 0 0 #999999;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.webform form .webform-component-select .select2-selection:focus,
.node-webform form .webform-component-select .select2-selection:focus,
.webform form .webform-component-date .form-type-select .select2-selection:focus,
.node-webform form .webform-component-date .form-type-select .select2-selection:focus,
.webform form .webform-component-time .form-type-select .select2-selection:focus,
.node-webform form .webform-component-time .form-type-select .select2-selection:focus,
.webform form .webform-component-select .select2-selection:active,
.node-webform form .webform-component-select .select2-selection:active,
.webform form .webform-component-date .form-type-select .select2-selection:active,
.node-webform form .webform-component-date .form-type-select .select2-selection:active,
.webform form .webform-component-time .form-type-select .select2-selection:active,
.node-webform form .webform-component-time .form-type-select .select2-selection:active,
.webform form .webform-component-select .select2-selection:-moz-focusring,
.node-webform form .webform-component-select .select2-selection:-moz-focusring,
.webform form .webform-component-date .form-type-select .select2-selection:-moz-focusring,
.node-webform form .webform-component-date .form-type-select .select2-selection:-moz-focusring,
.webform form .webform-component-time .form-type-select .select2-selection:-moz-focusring,
.node-webform form .webform-component-time .form-type-select .select2-selection:-moz-focusring {
  color: transparent !important;
  box-shadow: none;
  outline: none;
  text-shadow: 0 0 0 #666666;
}
.webform form .webform-component-select .select2-selection > option:hover,
.node-webform form .webform-component-select .select2-selection > option:hover,
.webform form .webform-component-date .form-type-select .select2-selection > option:hover,
.node-webform form .webform-component-date .form-type-select .select2-selection > option:hover,
.webform form .webform-component-time .form-type-select .select2-selection > option:hover,
.node-webform form .webform-component-time .form-type-select .select2-selection > option:hover,
.webform form .webform-component-select .select2-selection:focus > optgroup > option:checked,
.node-webform form .webform-component-select .select2-selection:focus > optgroup > option:checked,
.webform form .webform-component-date .form-type-select .select2-selection:focus > optgroup > option:checked,
.node-webform form .webform-component-date .form-type-select .select2-selection:focus > optgroup > option:checked,
.webform form .webform-component-time .form-type-select .select2-selection:focus > optgroup > option:checked,
.node-webform form .webform-component-time .form-type-select .select2-selection:focus > optgroup > option:checked {
  background-color: #999999 !important;
  color: #e5e5e5 !important;
  box-shadow: 0 0 10px 100px #999999 inset;
  -webkit-transition: all 0.05s ease-in-out;
  -o-transition: all 0.05s ease-in-out;
  transition: all 0.05s ease-in-out;
}
.webform form .webform-component-select .select2-selection__rendered,
.node-webform form .webform-component-select .select2-selection__rendered,
.webform form .webform-component-date .form-type-select .select2-selection__rendered,
.node-webform form .webform-component-date .form-type-select .select2-selection__rendered,
.webform form .webform-component-time .form-type-select .select2-selection__rendered,
.node-webform form .webform-component-time .form-type-select .select2-selection__rendered {
  font-size: 16px;
  color: #666666;
  padding: 10px 5px;
}
.webform form .webform-component-select .select2-selection__arrow,
.node-webform form .webform-component-select .select2-selection__arrow,
.webform form .webform-component-date .form-type-select .select2-selection__arrow,
.node-webform form .webform-component-date .form-type-select .select2-selection__arrow,
.webform form .webform-component-time .form-type-select .select2-selection__arrow,
.node-webform form .webform-component-time .form-type-select .select2-selection__arrow {
  display: none;
}
.webform form .webform-component-select::after,
.node-webform form .webform-component-select::after,
.webform form .webform-component-date .form-type-select::after,
.node-webform form .webform-component-date .form-type-select::after,
.webform form .webform-component-time .form-type-select::after,
.node-webform form .webform-component-time .form-type-select::after {
  color: #999999;
  content: "\25E2";
  display: inline-block;
  font-size: 0.5em;
  position: absolute;
  right: 20px;
  bottom: 22.5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  line-height: 10px;
}
.webform form .webform-component-date .form-type-select,
.node-webform form .webform-component-date .form-type-select {
  display: inline-block;
  width: 30%;
}
.webform form .webform-component-date .webform-calendar,
.node-webform form .webform-component-date .webform-calendar {
  vertical-align: middle;
}
.webform form .webform-component-time .form-type-select,
.node-webform form .webform-component-time .form-type-select {
  display: inline-block;
  max-width: 47%;
  width: 200px;
}
.webform form .webform-component-time .form-type-select + .form-type-select,
.node-webform form .webform-component-time .form-type-select + .form-type-select {
  margin-left: 10px;
}
.webform form .webform-component-fieldset,
.node-webform form .webform-component-fieldset {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.webform form .webform-component-fieldset .panel-heading,
.node-webform form .webform-component-fieldset .panel-heading {
  background: #e5e5e5 none repeat scroll 0 0;
  border: 1px solid #999999;
  border-radius: 0;
  display: block;
  margin: 0;
  padding: 15px;
  position: relative;
  width: 100%;
}
.webform form .webform-component-fieldset .panel-heading .panel-title,
.node-webform form .webform-component-fieldset .panel-heading .panel-title {
  font-family: circularProBold, Arial;
  font-weight: bold;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  color: #666666;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: #572c5f;
}
.webform form .webform-component-fieldset .panel-body,
.node-webform form .webform-component-fieldset .panel-body {
  border-color: transparent #999999 #999999;
  border-style: none solid solid;
  border-width: 0 1px 1px;
}
.webform form .form-actions,
.node-webform form .form-actions {
  clear: both;
  margin-bottom: 50px;
}
.webform form .form-actions:before,
.node-webform form .form-actions:before,
.webform form .form-actions:after,
.node-webform form .form-actions:after {
  content: " ";
  display: table;
}
.webform form .form-actions:after,
.node-webform form .form-actions:after {
  clear: both;
}
.webform form .form-actions button,
.node-webform form .form-actions button,
.webform form .form-actions a,
.node-webform form .form-actions a,
.webform form .form-actions input,
.node-webform form .form-actions input {
  background-color: #572c5f;
  border: 1px solid #ffffff;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  color: #ffffff;
  font-size: 16px;
  min-width: 200px;
  height: 46px;
}
.webform form .form-actions button:hover,
.node-webform form .form-actions button:hover,
.webform form .form-actions a:hover,
.node-webform form .form-actions a:hover,
.webform form .form-actions input:hover,
.node-webform form .form-actions input:hover,
.webform form .form-actions button:focus,
.node-webform form .form-actions button:focus,
.webform form .form-actions a:focus,
.node-webform form .form-actions a:focus,
.webform form .form-actions input:focus,
.node-webform form .form-actions input:focus,
.webform form .form-actions button:active,
.node-webform form .form-actions button:active,
.webform form .form-actions a:active,
.node-webform form .form-actions a:active,
.webform form .form-actions input:active,
.node-webform form .form-actions input:active {
  border: 1px solid #572c5f;
  background-color: #ffffff;
  color: #572c5f;
}
.webform-confirmation {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 979px) {
  .webform form .webform-component,
  .node-webform form .webform-component {
    margin-bottom: 20px;
  }
  .webform form .webform-component > label,
  .node-webform form .webform-component > label,
  .webform form .webform-component > input,
  .node-webform form .webform-component > input,
  .webform form .webform-component textarea,
  .node-webform form .webform-component textarea,
  .webform form .webform-component textarea + .grippie,
  .node-webform form .webform-component textarea + .grippie,
  .webform form .webform-component select,
  .node-webform form .webform-component select {
    width: 100%;
  }
  .webform form .form-actions,
  .node-webform form .form-actions {
    margin-bottom: 20px;
  }
  .webform form .webform-component-radios,
  .node-webform form .webform-component-radios,
  .webform form .webform-component-checkboxes,
  .node-webform form .webform-component-checkboxes {
    /* Aspect des checkboxes et radios */
    /* :before sert à créer la case à cocher */
    /* Aspect général de la coche */
  }
  .webform form .webform-component-radios [type="checkbox"]:not(:checked) + label,
  .node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label,
  .webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label,
  .node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label,
  .webform form .webform-component-radios [type="checkbox"]:checked + label,
  .node-webform form .webform-component-radios [type="checkbox"]:checked + label,
  .webform form .webform-component-checkboxes [type="checkbox"]:checked + label,
  .node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label,
  .webform form .webform-component-radios [type="radio"]:not(:checked) + label,
  .node-webform form .webform-component-radios [type="radio"]:not(:checked) + label,
  .webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label,
  .node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label,
  .webform form .webform-component-radios [type="radio"]:checked + label,
  .node-webform form .webform-component-radios [type="radio"]:checked + label,
  .webform form .webform-component-checkboxes [type="radio"]:checked + label,
  .node-webform form .webform-component-checkboxes [type="radio"]:checked + label {
    padding-top: 0;
  }
  .webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:before,
  .node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:before,
  .webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:before,
  .node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:before,
  .webform form .webform-component-radios [type="checkbox"]:checked + label:before,
  .node-webform form .webform-component-radios [type="checkbox"]:checked + label:before,
  .webform form .webform-component-checkboxes [type="checkbox"]:checked + label:before,
  .node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label:before,
  .webform form .webform-component-radios [type="radio"]:not(:checked) + label:before,
  .node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:before,
  .webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:before,
  .node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:before,
  .webform form .webform-component-radios [type="radio"]:checked + label:before,
  .node-webform form .webform-component-radios [type="radio"]:checked + label:before,
  .webform form .webform-component-checkboxes [type="radio"]:checked + label:before,
  .node-webform form .webform-component-checkboxes [type="radio"]:checked + label:before {
    top: 0;
  }
  .webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:after,
  .node-webform form .webform-component-radios [type="checkbox"]:not(:checked) + label:after,
  .webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:after,
  .node-webform form .webform-component-checkboxes [type="checkbox"]:not(:checked) + label:after,
  .webform form .webform-component-radios [type="checkbox"]:checked + label:after,
  .node-webform form .webform-component-radios [type="checkbox"]:checked + label:after,
  .webform form .webform-component-checkboxes [type="checkbox"]:checked + label:after,
  .node-webform form .webform-component-checkboxes [type="checkbox"]:checked + label:after,
  .webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
  .node-webform form .webform-component-radios [type="radio"]:not(:checked) + label:after,
  .webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
  .node-webform form .webform-component-checkboxes [type="radio"]:not(:checked) + label:after,
  .webform form .webform-component-radios [type="radio"]:checked + label:after,
  .node-webform form .webform-component-radios [type="radio"]:checked + label:after,
  .webform form .webform-component-checkboxes [type="radio"]:checked + label:after,
  .node-webform form .webform-component-checkboxes [type="radio"]:checked + label:after {
    top: 0;
  }
  .webform form .webform-component.inline-field,
  .node-webform form .webform-component.inline-field {
    width: 100%;
  }
  .webform form .webform-component-date .form-type-select,
  .node-webform form .webform-component-date .form-type-select {
    width: 100%;
    display: block;
  }
}
.you-may-also-like {
  background-color: #f2f2f2;
  padding: 0 10px 100px;
  display: flex;
  flex-wrap: wrap;
}
.you-may-also-like .you-may-also-like-card {
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #ffffff;
}
.you-may-also-like > p.text-small {
  margin-left: 10px;
  color: #f9423a;
  font-size: 20px;
  line-height: 20px;
  width: 100%;
}
.you-may-also-like a {
  color: #f9423a;
  text-decoration: none;
}
.you-may-also-like a:hover {
  text-decoration: underline;
}
.you-may-also-like .content-name {
  color: #666666;
  font-size: 18px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 23px;
  width: 100%;
  padding: 10px 20px;
}
.you-may-also-like .content-title {
  color: #f9423a;
  font-size: 32px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 29px;
  text-decoration: none;
  width: 100%;
  padding: 0 34px;
  word-break: break-word;
}
.you-may-also-like .content-intro {
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  padding: 16px 34px;
  max-height: 260px;
  overflow: hidden;
}
.you-may-also-like .time-comment {
  padding: 10px 10px 10px 34px;
}
.you-may-also-like-card {
  background: #fff;
}
.you-may-also-like-card .you-may-also-like-text {
  margin-top: 20px;
}
.you-may-also-like-card a {
  display: block;
}
.you-may-also-like-card a:focus,
.you-may-also-like-card a:active {
  text-decoration: none;
  outline: none;
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .you-may-also-like-card .you-may-also-like-text {
    padding: 0 10px;
  }
  .you-may-also-like-card .time-comment {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .you-may-also-like > p.text-small {
    margin-left: 0;
    margin-bottom: 21px;
  }
  .you-may-also-like .col-xs-12 {
    padding: 0;
    border-top: 1px solid #cacaca;
  }
  .you-may-also-like .col-xs-12 .you-may-also-like-card .item-img-container {
    max-width: 70px;
    float: left;
    width: 30%;
    overflow: hidden;
    display: inline-block;
  }
  .you-may-also-like .col-xs-12 .you-may-also-like-card .you-may-also-like-text {
    width: calc(100% - 90px);
    display: inline-block;
    margin-left: 20px;
    max-height: 175px;
    padding: 0;
    margin-bottom: 20px;
  }
  .you-may-also-like .col-xs-12 .you-may-also-like-card .you-may-also-like-text .text-list-title {
    margin: 0;
  }
  .you-may-also-like .col-xs-12 .you-may-also-like-card .you-may-also-like-text .text-extra-small {
    font-size: 12px;
    line-height: 16px;
  }
}
section.magazine-article .title-section {
  margin-left: 10%;
  position: relative;
}
section.magazine-article .title-section h1.section-title-bold {
  width: calc(90% - 270px);
}
section.magazine-article .title-section h1.section-title-bold .subtitle {
  display: block;
  font-family: circularProBook, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  color: #666666;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}
section.magazine-article .title-section h1.section-title-bold .subtitle .btn-cta {
  min-width: 200px;
}
section.magazine-article .title-section h1.section-title-bold .subtitle .btn-cta + .btn-cta {
  margin-top: 10px;
}
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite a.flag-link-toggle {
  float: left;
  visibility: hidden;
  width: 20px;
  margin-right: 20px;
}
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite a.flag-link-toggle:hover::before,
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite a.flag-link-toggle:active::before,
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite a.flag-link-toggle:focus::before {
  border-color: #666666;
  color: #666666;
}
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite a.flag-link-toggle::before {
  color: #999999;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  visibility: visible;
  width: 20px;
}
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite a.flag-link-toggle.unflag-action::before {
  content: "\e92e";
}
section.magazine-article .title-section .flag-wrapper.flag-flag-favorite .ajax-progress.ajax-progress-throbber {
  color: #999999;
  background-color: #ffffff;
  border: 1px solid #999999;
  border-radius: 50%;
  font-size: 20px;
  height: 20px;
  left: 0;
  line-height: 20px;
  margin: 0;
  padding: 0 7px;
  position: absolute;
  top: 0;
  width: 20px;
}
section.magazine-article .title-section .sharethis-buttons {
  top: 0;
}
section.magazine-article .full-width-content {
  width: 100%;
}
section.magazine-article .full-width-content img {
  width: 100%;
}
section.magazine-article .full-width-content .field-name-field-ivg-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
section.magazine-article .full-width-content .field-name-field-ivg-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.magazine-article .marged-content {
  margin-left: 10%;
  margin-right: 10%;
  overflow: hidden;
}
section.magazine-article .marged-content img {
  max-width: 100%;
}
@media screen and (max-width: 979px) {
  section.magazine-article .title-section {
    margin-top: 40px;
    margin-left: 0;
  }
  section.magazine-article .title-section h1.section-title-bold {
    width: auto;
  }
  section.magazine-article .title-section .flag-wrapper.flag-flag-favorite {
    display: none;
  }
  section.magazine-article .author-partner .common-block {
    margin-left: -10px;
    margin-right: -10px;
  }
  .node-type-magazine-article section.magazine-article .article-info .margin-bottom-one {
    margin-bottom: 20px;
  }
  .node-type-magazine-article section.magazine-article .marged-content.text {
    margin-bottom: 20px;
  }
  .node-type-magazine-article section.magazine-article .full-width-content {
    margin-top: 20px;
  }
  .node-type-magazine-article section.magazine-article .full-width-content.header-img {
    margin-bottom: 20px;
  }
  .node-type-magazine-article section.magazine-article .full-width-content .field-collection-container,
  .node-type-magazine-article section.magazine-article .full-width-content .field-item,
  .node-type-magazine-article section.magazine-article .full-width-content .field-collection-view {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .node-type-magazine-article section.magazine-article .margin-bottom-five {
    margin-bottom: 30px;
  }
  .node-type-magazine-article section.magazine-article .margin-top-five {
    margin-top: 30px;
  }
}
.popover {
  background-color: #ffffff;
  max-width: 400px;
  border-radius: 3px;
  padding: 30px;
}
.popover .arrow:after {
  border-top-color: #666666 !important;
}
.popover .popover-content {
  padding: 0;
  color: #f9423a;
}
.popover .popover-content .linkit-popin {
  min-width: 340px;
}
.popover .popover-content .teaser {
  font-size: 12px;
  color: #666666;
}
.popover .popover-content .linkit-popin .icon-close,
.linkit-modal .modal-content .modal-body .linkit-popin .icon-close {
  text-shadow: none;
  opacity: 1;
}
.popover .popover-content .linkit-popin .icon-close::before,
.linkit-modal .modal-content .modal-body .linkit-popin .icon-close::before {
  color: #f9423a;
  font-size: 11px;
  position: relative;
  vertical-align: top;
  z-index: 1;
  font-weight: bold;
}
.popover .popover-content .linkit-popin .title,
.linkit-modal .modal-content .modal-body .linkit-popin .title {
  margin-bottom: 10px;
  position: relative;
  top: -3px;
}
.popover .popover-content .linkit-popin .btn-popin,
.linkit-modal .modal-content .modal-body .linkit-popin .btn-popin {
  position: relative;
  background: transparent;
  border: 1px solid #f9423a;
  width: 150px;
  border-radius: 3px;
  display: block;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  color: #f9423a;
  transition: .4s;
  text-decoration: none;
  z-index: 1;
}
.popover .popover-content .linkit-popin .btn-popin:after,
.linkit-modal .modal-content .modal-body .linkit-popin .btn-popin:after {
  background: #f9423a;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.popover .popover-content .linkit-popin .btn-popin:hover,
.linkit-modal .modal-content .modal-body .linkit-popin .btn-popin:hover {
  background: transparent;
  color: #ffffff;
}
.popover .popover-content .linkit-popin .btn-popin:hover:after,
.linkit-modal .modal-content .modal-body .linkit-popin .btn-popin:hover:after {
  width: 100%;
}
.popover .popover-content .linkit-popin .btn-popin:focus,
.linkit-modal .modal-content .modal-body .linkit-popin .btn-popin:focus,
.popover .popover-content .linkit-popin .btn-popin:active,
.linkit-modal .modal-content .modal-body .linkit-popin .btn-popin:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.popover .popover-content .ajax-progress-throbber,
.linkit-modal .modal-content .modal-body .ajax-progress-throbber {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.popover .popover-content .ajax-progress-throbber i,
.linkit-modal .modal-content .modal-body .ajax-progress-throbber i {
  color: #ffffff;
  font-size: 20px;
  height: 18px;
  left: calc(50% - 10px);
  position: absolute;
  top: calc(50% - 10px);
  width: 20px;
}
.linkit-modal .modal-content {
  background-clip: unset;
  background-color: #666666;
  border: medium none;
  border-radius: 3px;
  box-shadow: none;
}
.pop {
  text-decoration: none;
  color: #666666;
  white-space: nowrap;
  word-wrap: normal;
}
.pop:hover,
.pop:active,
.pop:focus {
  text-decoration: underline;
}
.pop .pop-wrap {
  color: #f9423a;
  padding: 3px 6px;
}
.pop .icon-plus {
  color: white;
  background: red;
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  font-size: 22px;
  line-height: 22px;
}
.pop .icon-plus::before {
  content: "\e930";
  position: relative;
  z-index: 1;
  font-size: 21px;
  margin: 1px 0 0 0;
  bottom: 2px;
  top: 0.1px;
  left: 1px;
  display: block;
}
.node-type-author-partner .row {
  margin: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.node-type-author-partner .uploaded {
  animation: fadeInUp 1.5s;
}
.node-type-author-partner .content {
  position: relative;
  overflow: hidden;
}
.node-type-author-partner .magazine-newsletter-block {
  margin-top: 80px;
  margin-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields {
  position: absolute;
  background: transparent;
  top: 50%;
  transform: translateY(-50%);
  right: 12%;
  max-width: 385px;
  width: 100%;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-title {
  font-size: 80px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: circularProBold, Arial, sans-serif;
  position: relative;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-title span {
  font-size: 32px;
  line-height: 1;
  width: 12px;
  padding-left: 0;
  position: absolute;
  top: 1px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-description {
  margin: 0 0 16px 46px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: circularProBold;
  line-height: 20px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form-title {
  display: none;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form {
  margin-left: 7px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div {
  display: flex;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div .form-type-textfield {
  width: 240px;
  background-color: transparent;
  margin-right: -5px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali {
  position: relative;
  color: #ffffff;
  background: #f9423a;
  height: 36px;
  width: 140px;
  border: 0;
  border-radius: 2px;
  margin: 0;
  outline: none;
  transition: .4s;
  vertical-align: top;
  z-index: 1;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  text-align: center;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:focus,
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:active {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:focus:before,
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:active:before {
  box-shadow: 0px 0px 14px 0px #ebebeb;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:after {
  background: #ffffff;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  border-radius: 2px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:hover {
  text-decoration: none;
  color: #f9423a;
  box-shadow: 0px 0px 14px 0px #ebebeb;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali:hover:after {
  width: 100%;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div button.btn-ali.valid {
  background: #f9423a url(/sites/all/themes/custom/alimentarium/images/check.svg) no-repeat 90% center;
  background-size: 15px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input {
  background: transparent;
  border: 1px solid #CCCCCC;
  margin: 0;
  height: 36px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:focus,
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:-webkit-autofill,
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:-webkit-autofill:focus,
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  background: #ffffff;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:focus {
  background: white;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input::placeholder {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input::-webkit-input-placeholder {
  color: #ffffff;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input::-moz-placeholder {
  color: #ffffff;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:-ms-input-placeholder {
  color: #ffffff;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div input:-moz-placeholder {
  color: #ffffff;
}
.node-type-author-partner .magazine-newsletter-block .subscription-fields .subscription-form form > div .text-extra-email::-ms-input-placeholder {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}
.author-partner {
  padding-top: 175px;
  position: relative;
}
.author-partner > .container-fluid {
  position: relative;
}
.author-partner > .container-fluid:before {
  content: '';
  position: absolute;
  left: -181px;
  top: 163px;
  height: 91px;
  width: 75px;
  background: url(/sites/all/themes/custom/alimentarium/images/picto_065_book@1.5x.svg) no-repeat;
  background-size: 75px;
}
@media screen and (max-width: 1440px) {
  .author-partner > .container-fluid:before {
    display: none;
  }
}
.author-partner .author-background-wrap {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 1170px) / 2 + 1222px);
  overflow: hidden;
}
.author-partner .author-background-wrap .author-background {
  filter: blur(25px);
  -webkit-filter: blur(25px);
  background-repeat: no-repeat;
  background-size: cover;
  height: 1232px;
  z-index: -1;
  opacity: 0.3;
}
.author-partner .author-background-wrap .author-background::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  opacity: 0.2;
  height: 100%;
  top: 0;
  z-index: -1;
  background: linear-gradient(141.99deg, #fd776c 0%, #764480 100%);
}
@media screen and (max-width: 1679px) {
  .author-partner .author-background-wrap {
    width: 100%;
  }
}
.author-partner .profile-picture {
  position: relative;
  display: inline-block;
  width: 218px;
  height: 218px;
}
.author-partner .profile-picture::after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0.4;
  border-radius: 50%;
  background: linear-gradient(141.99deg, #fd776c 0%, #764480 100%);
}
.author-partner .profile-picture img {
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 1679px) {
  .author-partner .profile-picture {
    max-width: 218px;
    height: 218px;
    width: 100%;
  }
}
.author-partner .author-title {
  position: absolute;
  left: 42px;
  top: 55px;
  transform: rotate(-90deg);
  transform-origin: 0;
  font-size: 18px;
  line-height: 35px;
  font-family: CircularProBold, Arial, sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .author-partner .author-title {
    left: 12px;
  }
}
.author-partner .author-position {
  font-size: 18px;
  line-height: 26px;
  font-family: CircularProBold, Arial, sans-serif;
}
.author-partner .main-title {
  display: inline-block;
  font-size: 130px;
  line-height: 120px;
  font-family: CircularProBold, Arial, sans-serif;
  color: #f9423a;
  width: 75%;
  margin-bottom: 30px;
}
.author-partner .author-info {
  display: flex;
  min-height: 1155px;
  height: 1155px;
}
@media screen and (max-width: 1679px) and (min-width: 1025px) {
  .author-partner .author-info {
    min-height: 860px;
    height: 860px;
  }
}
@media screen and (max-width: 1024px) {
  .author-partner .author-info {
    flex-wrap: wrap;
    height: auto;
    min-height: auto;
  }
}
.author-partner .author-info .author-left {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  width: 240px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1679px) {
  .author-partner .author-info .author-left {
    width: 250px;
  }
}
@media screen and (max-width: 980px) {
  .author-partner .author-info .author-left {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .author-partner .author-info .author-left {
    width: 100%;
  }
  .author-partner .author-info .author-left .profile-picture {
    margin: 0 auto;
  }
}
.author-partner .author-info .author-right {
  position: relative;
  max-width: 893px;
  padding: 13px 10px 0 55px;
}
@media screen and (max-width: 768px) {
  .author-partner .author-info .author-right {
    padding-left: 60px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .author-partner .author-info .author-right {
    padding-bottom: 30px;
  }
}
.author-partner .field-name-field-author-type {
  font-size: 18px;
  line-height: 26px;
  font-family: CircularProBold, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.6);
  width: 25%;
}
.author-partner .field-name-field-city {
  font-size: 14px;
  line-height: 20px;
  color: #f9423a;
  font-family: circularProBook, Arial, sans-serif;
}
.author-partner .field-name-field-body {
  font-size: 20px;
  line-height: 32px;
  color: #666666;
  font-family: circularProBook, Arial, sans-serif;
  margin-top: 57px;
  max-width: 800px;
  width: 100%;
}
.author-partner .author-social-links {
  margin-top: 36px;
}
.author-partner .author-social-links .field-type-link-field {
  display: inline-block;
  margin-right: 10px;
}
.author-partner .author-social-links .field-items a {
  display: inline-block;
  background: #f9423a;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  position: relative;
}
.author-partner .author-social-links .field-items a::before {
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
}
.author-partner .list-articles {
  margin-bottom: 0;
  position: relative;
  margin-top: -10px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .author-partner .list-articles {
    padding-top: 20px;
  }
}
.author-partner .list-articles:before {
  content: '';
  position: absolute;
  left: -176px;
  bottom: 29px;
  height: 91px;
  width: 75px;
  background: url(/sites/all/themes/custom/alimentarium/images/picto_065_book@1.5x.svg) no-repeat;
  background-size: 75px;
}
.author-partner .list-articles:after {
  content: '';
  position: absolute;
  right: -135px;
  top: 289px;
  height: 119px;
  width: 94px;
  background: url(/sites/all/themes/custom/alimentarium/images/picto_065_book@1.5x.svg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .author-partner .list-articles:after {
    display: none;
  }
}
.author-partner .list-articles .row {
  margin: 0;
}
.author-partner .list-articles .view-header {
  position: relative;
  top: -584px;
  left: 20px;
  font-size: 32px;
  line-height: 30px;
  color: #f9423a;
  font-family: CircularProBold, Arial, sans-serif;
}
@media screen and (max-width: 980px) {
  .author-partner .list-articles .view-header {
    left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .author-partner .list-articles .view-header {
    top: -10px;
    left: 30px;
  }
}
.author-partner .list-articles .views-view-grid .tr-row {
  display: block;
  width: 100%;
}
.author-partner .list-articles .views-view-grid .tr-row .td-col:before {
  content: '';
  display: block;
  width: 100%;
  height: 228px;
  right: 0;
  position: absolute;
  bottom: 0;
  background: url(/sites/all/themes/custom/alimentarium/images/_article_bg.svg) right;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1169px) {
  .author-partner .list-articles .views-view-grid .tr-row .td-col:before {
    background-repeat: repeat !important;
  }
}
@media screen and (max-width: 1169px) {
  .author-partner .list-articles .views-view-grid .tr-row .td-col {
    width: 100%;
  }
}
.author-partner .list-articles .views-view-grid .tr-row.row-last {
  margin-top: -200px;
}
.author-partner .list-articles .views-view-grid .tr-row.row-last .td-col:before {
  height: 162px;
  background: url(/sites/all/themes/custom/alimentarium/images/_article_card_bck3_pictos.svg) no-repeat right bottom;
}
.author-partner .list-articles .views-view-grid .tr-row.row-first {
  margin-top: -80px;
}
.author-partner .list-articles .views-view-grid .tr-row.row-first .td-col:before {
  height: 267px;
  background: url(/sites/all/themes/custom/alimentarium/images/_articl_bg2.svg) no-repeat right bottom;
}
@media screen and (max-width: 1169px) {
  .author-partner .list-articles .views-view-grid .tr-row.row-first {
    margin-top: 0;
  }
}
@media screen and (max-width: 1169px) {
  .author-partner .list-articles .views-view-grid .tr-row.row-last {
    margin-top: 0;
  }
}
@media screen and (max-width: 400px) {
  .author-partner .list-articles .views-view-grid .tr-row {
    width: 100%;
  }
}
.author-partner .list-articles .views-view-grid .td-col {
  width: 370px;
  overflow: hidden;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  align-self: flex-start;
  float: left;
  display: block;
  position: relative;
  background: #ffffff;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-image {
  height: 276px;
  display: flex;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-image:hover img {
  transform: scale(1.2);
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-image .field-content {
  width: 100%;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-image img {
  width: 100%;
  max-width: none;
  height: auto;
  transition: transform 0.5s;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-article-category {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 26px;
  width: 100%;
  padding: 15px 20px 0 20px;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-title-field {
  font-size: 36px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 34px;
  padding: 12px 34px;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-title-field .field-content > a {
  color: #F9423A;
  text-decoration: none;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-created,
.author-partner .list-articles .views-view-grid .td-col .views-field-field-author {
  color: #F9423A;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-created span,
.author-partner .list-articles .views-view-grid .td-col .views-field-field-author span,
.author-partner .list-articles .views-view-grid .td-col .views-field-created a,
.author-partner .list-articles .views-view-grid .td-col .views-field-field-author a {
  color: #F9423A;
  text-decoration: none;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-created span:hover,
.author-partner .list-articles .views-view-grid .td-col .views-field-field-author span:hover,
.author-partner .list-articles .views-view-grid .td-col .views-field-created a:hover,
.author-partner .list-articles .views-view-grid .td-col .views-field-field-author a:hover {
  text-decoration: underline;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-created {
  padding-left: 34px;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-author {
  padding-left: 5px;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-intro {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  padding: 12px 34px 15px 34px;
  color: #666666;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-reading-time {
  padding-left: 34px;
  padding-bottom: 15px;
  display: inline-block;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-field-reading-time:before {
  content: "";
  background: url(/sites/all/themes/custom/alimentarium/images/web_012_hours@1.5x.svg) no-repeat;
  background-size: cover;
  height: 16px;
  width: 16px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: -2px;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-comment-count {
  padding-left: 27px;
  padding-bottom: 15px;
  display: inline-block;
  cursor: pointer;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-comment-count .no-comments {
  color: #f9423a;
}
.author-partner .list-articles .views-view-grid .td-col .views-field-comment-count:before {
  content: "";
  background: url(/sites/all/themes/custom/alimentarium/images/picto_062_pulse@1.5x.svg) no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: -8px;
}
.author-partner .list-articles .views-view-grid .td-col.col-last .views-field-field-image:after {
  display: none;
}
.author-partner .list-articles .views-view-grid tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 1170px;
}
.author-partner .list-articles .views-view-grid tbody:before {
  content: "";
  background: url(/sites/all/themes/custom/alimentarium/images/picto_065_book@1.5x.svg) no-repeat;
  background-size: contain;
  height: 95px;
  width: 95px;
  display: block;
  position: absolute;
  right: -140px;
  top: 200px;
}
@media screen and (max-width: 1600px) {
  .author-partner .list-articles .views-view-grid tbody:before {
    display: none;
  }
}
.author-partner .list-articles .views-view-grid tbody:after {
  content: "";
  background: url(/sites/all/themes/custom/alimentarium/images/picto_074_doublehelix@1.5x.svg) no-repeat;
  background-size: contain;
  height: 120px;
  width: 75px;
  display: block;
  position: absolute;
  left: -165px;
  top: 740px;
}
@media screen and (max-width: 1600px) {
  .author-partner .list-articles .views-view-grid tbody:after {
    display: none;
  }
}
@media screen and (max-width: 1169px) {
  .author-partner .list-articles .views-view-grid tbody {
    flex-direction: column;
    width: 100%;
  }
}
.author-partner .list-articles .pager-load-more {
  margin-top: 0;
  opacity: 0;
}
.author-partner .list-articles .pager-load-more a {
  color: #f9423a;
  border: 1px solid #f9423a;
}
.author-partner .list-articles .pager-load-more a:after {
  background: #f9423a;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.author-partner .list-articles .pager-load-more a:hover {
  background: transparent;
  color: #ffffff;
}
.author-partner .list-articles .pager-load-more a:hover:after {
  width: 100%;
}
.author-partner .list-articles .pager-load-more a:focus {
  background: #f9423a;
  color: #ffffff;
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
@media screen and (min-width: 1680px) {
  .author-partner .list-articles {
    margin-top: -300px;
  }
}
@media screen and (max-width: 1024px) {
  .node-type-author-partner .content #block-easy-breadcrumb-easy-breadcrumb {
    display: none;
  }
  .node-type-author-partner .magazine-newsletter-block {
    width: 100%;
    margin: 70px 0;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-title {
    font-size: 50px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-title span {
    font-size: 20px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-form {
    width: 100%;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-form .form-item-email-customer.form-type-textfield {
    width: 204px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-form .form-item-email-customer.form-type-textfield input.btn-ali {
    height: 36px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-form form > div button.btn-ali {
    height: 36px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .img-responsive {
    display: block;
    width: auto;
    min-height: 350px;
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .author-partner .author-info {
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: unset;
    padding: 0 10px;
  }
  .author-partner .author-info .author-left {
    padding: 0;
    margin-bottom: 40px;
    width: 100%;
  }
  .author-partner .author-info .author-right {
    padding: 0;
    margin-top: -5%;
    max-width: none;
    width: 100%;
  }
  .author-partner .profile-picture {
    display: block;
    max-width: 240px;
    height: 240px;
    margin: 0 auto;
  }
  .author-partner .main-title {
    display: inherit;
    margin-bottom: 30px;
    writing-mode: unset;
    transform: none;
    font-size: 50px;
    line-height: 40px;
    text-align: left;
    padding-left: 30px;
  }
  .author-partner .author-social-links {
    margin-bottom: 40px;
  }
  .author-partner .field-name-field-body {
    font-size: 18px;
    line-height: 28px;
  }
  .author-partner .list-articles {
    margin-top: 40px;
  }
  .author-partner .list-articles .view-header {
    top: -50px;
    left: 10px;
  }
  .node-type-author-partner .magazine-newsletter-block {
    min-height: 350px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-background .subscription-image img {
    max-height: 350px;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
  }
  .node-type-author-partner .magazine-newsletter-block .magazine-subscription-block .subscription-fields .subscription-description {
    line-height: 16px;
  }
}
.activities-overview .marged-content {
  margin-left: 10%;
  margin-right: 10%;
  overflow: hidden;
}
.activities-overview .marged-content img {
  max-width: 100%;
  height: auto;
}
.activities-overview h1.main-title {
  margin-bottom: 35px;
  width: calc(90% - 270px);
}
.activities-overview .exhibition-card {
  margin-bottom: 0;
}
.activities-overview .exhibition-card a {
  color: #333333;
}
.activities-overview .exhibition-card .img-container {
  height: 270px;
}
.activities-overview .field-collection-container .field-items .field-item {
  margin: 0;
}
.activities-overview .field-collection-view {
  padding: 0;
  margin: 0;
  border-bottom: none;
}
.activities-overview .field-collection-view ul.field-collection-view-links {
  height: 0;
}
.activities-overview .field-item {
  margin: 0;
}
.activity-calendar-date-container-table .txt-light-thirty {
  color: #333333;
}
@media screen and (max-width: 979px) {
  .activities-overview .marged-content {
    margin-left: 0;
    margin-right: 0;
  }
  .activities-overview .exhibition-card .img-container {
    height: 245px;
  }
  .activities-overview h1.main-title {
    width: 100%;
  }
  .activities-overview .exhibition-card .exhibition-text {
    height: auto;
  }
}
.node-type-object .easy-breadcrumb {
  font-family: circularProBook, Arial, sans-serif;
  position: absolute;
  padding: 0 calc((100vw - 1170px) / 2);
  padding-top: 40px;
  color: #f9423a;
  z-index: 1;
}
.node-type-object .easy-breadcrumb a {
  color: #f9423a;
  text-decoration: none;
}
.node-type-object .easy-breadcrumb a:hover {
  text-decoration: underline;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .node-type-object .easy-breadcrumb {
    padding-left: 25px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .node-type-object .easy-breadcrumb {
    padding-left: 25px;
  }
}
@media (max-width: 1024px) {
  .node-type-object .easy-breadcrumb {
    display: none;
  }
}
.node-object {
  margin: 100px auto;
}
.node-object .detail-content {
  position: relative;
}
.node-object .row {
  margin: 0;
}
.node-object .e-collection-detail-text .detail-container:before {
  padding-bottom: 0;
}
.node-object .tags .tag {
  background: #ffffff;
  padding: 0;
  margin-bottom: 12px;
}
.node-object .tags .tag a {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  text-align: center;
  color: #f9423a;
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: block;
  padding: 4px 12px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  border: 1px solid #ececec;
}
.node-object .tags .tag a:after {
  background: #f9423a;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.node-object .tags .tag a:before {
  background: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  content: '';
  position: absolute;
  z-index: -2;
  transition: all 0.3s;
}
.node-object .tags .tag a:hover {
  color: #ffffff;
}
.node-object .tags .tag a:hover:after {
  width: 100%;
}
.node-object .tags .tag a:active,
.node-object .tags .tag a:focus {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  animation: anim-moema-1 0.3s forwards;
}
.node-object .social-bar {
  width: 210px;
}
@media screen and (max-width: 979px) {
  .node-object .sharethis-buttons {
    display: block;
  }
}
.node-object .sharethis-buttons .sharethis-wrapper span {
  padding: 18px 18px 18px 0;
  width: 18px;
  height: 18px;
  margin: 0 9px;
}
.node-object .sharethis-buttons .sharethis-wrapper span:before {
  color: #f9423a;
}
.node-object .sharethis-buttons .sharethis-wrapper span:after {
  content: '';
  color: #fff;
  position: absolute;
  left: 51%;
  top: 28%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  height: 36px;
  width: 36px;
}
.node-object .sharethis-buttons .sharethis-wrapper span:hover:before {
  color: #ffffff;
  z-index: 2;
}
.node-object .sharethis-buttons .sharethis-wrapper span:hover:after {
  background: #f9423a;
  z-index: 1;
}
.node-object .subtitle {
  color: #f9423a;
  font-size: 28px;
  line-height: 32px;
}
.node-object .table-title {
  margin-top: 10px;
  color: #f9423a;
  font-size: 24px;
}
.node-object .social-bar:after {
  content: '';
  display: block;
  clear: both;
}
.modal-content .node-object .detail-content {
  position: absolute;
}
.modal-content .node-object .e-collection-detail-text .detail-container:before {
  padding-bottom: calc(200% - 20px);
}
/* Media Queries */
@media screen and (max-width: 979px) {
  .modal-content .node-object .e-collection-detail-text .detail-container:before {
    padding-bottom: 0;
  }
}
.node-type-video .video-item {
  position: relative;
  padding-bottom: 60px;
}
.node-type-video .video-title h1 {
  color: #f9423a;
  font-size: 130px;
  line-height: 120px;
  font-family: circularProBold, Arial, sans-serif;
  margin: 112px calc((100% - 1080px) / 2) 20px;
  max-width: 1170px;
  word-break: break-word;
  position: relative;
  min-height: 160px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .node-type-video .video-title h1 {
    margin: 112px calc((100% - 1050px) / 2) 20px;
  }
}
.node-type-video .social-bar.top {
  margin-left: calc((100% - 1160px) / 2);
  float: left;
  width: 57px;
  transition: margin-bottom 1s;
  position: absolute;
  z-index: 4;
  top: 5px;
}
.node-type-video .social-bar.top .col-md-12 {
  padding: 2px;
}
.node-type-video .social-bar.top .sharethis-wrapper {
  display: flex;
  flex-direction: column;
  width: 18px;
}
.node-type-video .social-bar.top .sharethis-buttons .sharethis-wrapper span {
  padding: 18px 18px 18px 0;
  width: 18px;
  height: 18px;
}
.node-type-video .social-bar.top .sharethis-buttons .sharethis-wrapper span:before {
  color: #f9423a;
}
.node-type-video .social-bar.top .sharethis-buttons .sharethis-wrapper span:after {
  content: '';
  color: #ffffff;
  position: absolute;
  left: 51%;
  top: 28%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  height: 36px;
  width: 36px;
}
.node-type-video .social-bar.top .sharethis-buttons .sharethis-wrapper span:hover:before {
  color: #ffffff;
}
.node-type-video .social-bar.top .sharethis-buttons .sharethis-wrapper span:hover:after {
  background: #f9423a;
}
@media screen and (max-width: 1400px) and (min-width: 1201px) {
  .node-type-video .social-bar.top {
    margin-left: calc((100% - 1140px) / 2);
  }
}
@media screen and (max-width: 1170px) and (min-width: 1025px) {
  .node-type-video .social-bar.top {
    margin-left: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .node-type-video .social-bar.top {
    margin-left: 5px;
  }
  .node-type-video .social-bar.top .sharethis-buttons {
    display: block;
  }
}
.node-type-video .field-name-body {
  margin: 25px 0;
  color: #f9423a;
  font-size: 36px;
  font-family: circularProBold, Arial, sans-serif;
  line-height: 34px;
}
@media screen and (max-width: 1170px) {
  .node-type-video .video-title h1 {
    margin: 112px 60px 20px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .node-type-video .video-title h1 {
    margin: 112px 20px 20px 40px;
    font-size: 52px;
    line-height: 62px;
  }
}
