@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,400;0,500;1,400;1,500&display=swap");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

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

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

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

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

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

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: rgb(231.8902439024, 220.3353658537, 88.6097560976);
  background: #ebe16f;
}

.alert-info {
  border-color: rgb(191.1428571429, 227.6326530612, 244.3571428571);
  background: #d5edf8;
}

.alert-error {
  border-color: rgb(247.8125, 204.6875, 206.484375);
  background: #fbe3e4;
}

.alert-success {
  border-color: rgb(221.7207792208, 233.7012987013, 173.7987012987);
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.bouton, .blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff !important;
  font-weight: 400;
  padding: 4px 18px;
  background: #2980b9;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.9em;
}
.bouton:hover, .blue-btn:hover, .bouton:focus, .blue-btn:focus {
  color: #fff !important;
  outline: none;
  background: #222;
}
.bouton:active, .blue-btn:active {
  top: 1px;
}

.blue-btn {
  background-color: #2980b9;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: rgb(37.2991150442, 116.4460176991, 168.3008849558);
}
.blue-btn:active {
  background-color: rgb(36.3738938053, 113.5575221239, 164.1261061947);
}

.bouton.secondary {
  color: #222 !important;
  background-color: rgba(255, 255, 255, 0.9);
}
.bouton.secondary:hover {
  background-color: rgb(255, 255, 255);
}
.bouton.secondary.grey {
  background-color: #eee;
  border: 1px solid #eee;
}
.bouton.secondary.grey:hover {
  background-color: #fff;
  border-color: #ddd;
}
.bouton.picto {
  padding-right: 50px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center right 14px;
}
.bouton.picto.small {
  padding-right: 36px;
  background-size: 16px 16px;
  background-position: center right 10px;
}
.bouton.picto:hover {
  background-position: center right 10px;
}
.bouton.picto.fleche {
  background-image: url("../images/pictos/black/arrow.png");
}
.bouton.picto.info {
  background-image: url("../images/pictos/black/information.png");
}
.bouton.picto.filters {
  background-image: url("../images/pictos/black/filter.png");
}
.bouton.primary.fleche, .bouton.dark.fleche {
  background-image: url("../images/pictos/white/arrow.png");
}
.bouton.primary.info, .bouton.dark.info {
  background-image: url("../images/pictos/white/information.png");
}
.bouton.primary.filters, .bouton.dark.filters {
  background-image: url("../images/pictos/white/filter.png");
}
.bouton.primary {
  background-color: var(--wp--cinelatino--section-active-color-80);
}
.bouton.primary:hover {
  background-color: var(--wp--cinelatino--section-active-color-100);
}
.bouton.primary.ressources {
  background-color: var(--wp--cinelatino--section-ressources-color-80);
}
.bouton.primary.ressources:hover {
  background-color: var(--wp--cinelatino--section-ressources-color-100);
}
.bouton.primary.actions {
  background-color: var(--wp--cinelatino--section-actions-color-80);
}
.bouton.primary.actions:hover {
  background-color: var(--wp--cinelatino--section-actions-color-100);
}
.bouton.primary.pro {
  background-color: var(--wp--cinelatino--section-pro-color-80);
}
.bouton.primary.pro:hover {
  background-color: var(--wp--cinelatino--section-pro-color-100);
}
.bouton.primary.programmation {
  background-color: var(--wp--cinelatino--section-programmation-color-80);
}
.bouton.primary.programmation:hover {
  background-color: var(--wp--cinelatino--section-programmation-color-100);
}
.bouton.dark {
  background-color: #444;
}
.bouton.dark:hover {
  background-color: #222;
}
.bouton.autre {
  opacity: 0.8;
}
.bouton.autre:hover {
  opacity: 1;
}
.bouton.small {
  font-size: 0.8em;
  padding: 2px 14px;
}
.bouton .picto-left,
.bouton .picto-right {
  height: 18px;
  width: auto;
  margin-bottom: -2px;
}
.bouton .picto-left {
  margin-left: -4px;
  margin-right: 12px;
}
.bouton .picto-right {
  margin-right: -4px;
  margin-left: 12px;
}
.bouton.small .picto-left,
.bouton.small .picto-right {
  height: 16px;
}

.shadow {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
}
.shadow:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08);
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #222;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: rgb(246.6, 247.8, 249.8);
  outline: none;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet
******************************************************************/
/*********************
GENERAL STYLES
	*********************/
body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  letter-spacing: 0.025em;
  line-height: 1.8;
  color: #222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.desktop-1030 {
  display: none;
}

hr {
  margin: 3em 0;
  height: 1px;
  border: 0;
  background: #bbb;
}
h1 + hr, h2 + hr, h3 + hr, h4 + hr, h5 + hr, h6 + hr {
  margin-top: -0.5em;
  background: #eee;
}

strong, b, .strong {
  font-weight: 500;
}

.picto span {
  display: none !important;
}

#inner-content {
  padding-top: 3em;
}

.translated-content:not(.fr) {
  display: none;
}
html[lang=es-ES] .translated-content.es {
  display: block !important;
}
html[lang=es-ES] .translated-content.fr {
  display: none !important;
}
html[lang=en-EN] .translated-content.en, html[lang=en-US] .translated-content.en {
  display: block !important;
}
html[lang=en-EN] .translated-content.fr, html[lang=en-US] .translated-content.fr {
  display: none !important;
}
html[lang=pt-PT] .translated-content.pt, html[lang=pt-BR] .translated-content.pt {
  display: block !important;
}
html[lang=pt-PT] .translated-content.fr, html[lang=pt-BR] .translated-content.fr {
  display: none !important;
}

/*


********************
LAYOUT & GRID STYLES
	*********************/
.wrap {
  width: calc(100% - 3em);
  margin: 0 auto;
}

#content {
  min-height: 80vh;
}
.page-template-page-template-sections #content {
  padding-bottom: 0;
}

.cadre.gauche {
  margin-right: 30px;
}

.cadre.droite {
  margin-left: 30px;
}

/*


********************
LINK STYLES
	*********************/
a {
  color: #444;
  transition: all 0.2s;
  /* mobile tap color this highlights links on iPhones/iPads. so it basically works like the :hover selector for mobile devices. */
}
a:hover, a:focus {
  color: #222;
}
/*


*****************************************************************
H1, H2, H3, H4, H5 STYLES
	******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.03em;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
}

.underline {
  padding-left: 6px;
}
.underline span {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  z-index: 1;
}
.underline span::before {
  content: "";
  z-index: -1;
  width: calc(100% + 50px);
  position: absolute;
  bottom: 2px;
  left: -6px;
  height: 20px;
  background-color: var(--wp--cinelatino--section-active-color-40);
}

h2.underline span::before {
  height: 18px;
  width: calc(100% + 40px);
}

.section-page.fond-noir .underline span::before {
  background-color: var(--wp--cinelatino--section-active-color-90);
}

.section-page.fond-couleur_section .underline span::before {
  background-color: rgba(255, 255, 255, 0.3);
}

h1, .h1 {
  font-size: 3em;
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h2, .h2 {
  font-size: 2em;
  margin-bottom: 0.666em;
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h2.underline, h2.titre-section, .h2.underline, .h2.titre-section {
  font-size: 2.5em;
}

h3, .h3 {
  font-size: 1.666em;
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h4, .h4 {
  font-size: 1.25em;
  font-weight: 500;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h5, .h5 {
  font-size: 0.846em;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h6, .h6 {
  font-size: 1em;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*


********************
HEADER AND NAVIGATION
	*********************/
.header {
  background-color: #fff;
}
.header .pictos-header {
  display: none;
}
.header #inner-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header #inner-header .menu-button-container {
  text-align: right;
}
.header #inner-header .menu-button-container a {
  display: inline-block;
}
.header .primary-nav-container {
  order: 0;
  width: 100%;
  padding: 0.75em 1em 0.5em;
  background: #fafafa;
  border-bottom: 2px solid #ddd;
  border-color: var(--wp--cinelatino--section-active-color-70);
}
.header .primary-nav span.label-section-desktop {
  display: none;
}
.header .logo {
  z-index: 89;
  order: 1;
  margin: 1em 1em 1em 1.25em;
}
.header .logo img {
  width: 160px;
  max-width: calc(100vw - 160px - 3em);
}
.header .logo.logo-main, .header .logo.logo-sticky {
  display: none;
}
.header .mobile-buttons {
  order: 2;
  margin: 8px 0.5em 0 1em;
}
.header .mobile-buttons > div {
  display: inline-block;
  vertical-align: top;
}
.header .mobile-button-container {
  width: 45px;
  height: 45px;
}
.header .mobile-button-container a {
  display: block;
  padding: 13px 11px 20px;
}
.header .mobile-button-container img {
  max-width: 100%;
  height: auto;
}
.header .mobile-button-container span {
  display: none;
}
.header .menu-button {
  position: relative;
  z-index: 80;
}
.header .menu-button > span {
  display: none;
}
.header .menu-button div {
  width: 45px;
  height: 50px;
  padding: 20px 0.8em 10px 8px;
  position: relative;
}
.header .menu-button div:hover {
  cursor: pointer;
}
.header .menu-button div span {
  border-radius: 3px;
  background-clip: padding-box;
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1c1e;
  position: absolute;
  transition: transform 0.5s ease-in-out, top 0.25s ease-in-out 0.5s, opacity 0.25s ease-in-out 0.5s;
  transform-origin: center;
}
.header .menu-button div span.top {
  top: 15px;
}
.header .menu-button div span.middle {
  top: 22px;
}
.header .menu-button div span.bottom {
  top: 29px;
}
.header .secondary-nav-container {
  display: none;
}

.mobile-menu-wrapper .lang-item a {
  color: #666;
  font-weight: bold;
  text-decoration: none;
  opacity: 0.7;
}
.mobile-menu-wrapper .lang-item a:hover {
  opacity: 1;
}
.mobile-menu-wrapper .lang-item a img {
  display: none;
}
.mobile-menu-wrapper .lang-item.current-lang a {
  opacity: 1;
}
.mobile-menu-wrapper .lang-item.lang-item-fr a::before {
  content: "FR";
}
.mobile-menu-wrapper .lang-item.lang-item-es a::before {
  content: "ES";
}
.mobile-menu-wrapper .lang-item.lang-item-pt a::before {
  content: "PT";
}
.mobile-menu-wrapper .lang-item.lang-item-en a::before {
  content: "EN";
}

.cinelatino-flag-switcher {
  align-self: start;
  padding-top: 13px;
  cursor: pointer;
}
.cinelatino-flag-switcher:hover ul {
  overflow: visible;
  border-color: #ccc;
}
.cinelatino-flag-switcher:hover ul li {
  background: #fff;
}
.cinelatino-flag-switcher ul {
  list-style: none;
  position: relative;
  top: -5px;
  height: 23px;
  z-index: 10;
  overflow: hidden;
  border-radius: 4px;
}
.cinelatino-flag-switcher ul::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 4px;
  background-image: url("../images/down-filled-triangular-arrow-black.png");
  background-repeat: no-repeat;
  height: 7px;
  width: 7px;
  background-size: contain;
  opacity: 0.7;
}
.cinelatino-flag-switcher ul li {
  width: 100%;
  padding: 3px 15px 3px 6px;
  display: block !important;
  margin: 0 !important;
}
.cinelatino-flag-switcher ul li:first-of-type {
  padding-top: 6px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cinelatino-flag-switcher ul li:last-of-type {
  padding-bottom: 6px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cinelatino-flag-switcher ul li:not(.current-language) {
  transition: 0.3s all;
}
.cinelatino-flag-switcher ul li a {
  text-decoration: none;
  line-height: 0;
  text-align: left;
  display: block;
  height: 100%;
  width: 100%;
}
.cinelatino-flag-switcher ul li a img {
  width: 20px !important;
  border-radius: 6px;
  overflow: hidden;
}

.header.scrolled-header {
  position: fixed;
  background: #fff;
  top: -120px;
  z-index: 91;
  width: 100%;
  -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
}
.header.scrolled-header #inner-header {
  padding: 0;
  position: relative;
}
.header.scrolled-header #inner-header::after, .header.scrolled-header #inner-header::before {
  display: none;
}
.header.scrolled-header #inner-header .logo {
  display: none;
  margin: 0 1em 0 2em;
}
.header.scrolled-header #inner-header .logo img {
  width: 120px;
}
.header.scrolled-header #inner-header .logo.logo-sticky {
  display: block;
}
.header.scrolled-header #inner-header .primary-nav-container {
  display: none;
}

body.menu-ouvert {
  overflow: hidden;
}

.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  right: -100vw;
  opacity: 0;
  background: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  overflow-y: scroll;
  transition: 0.4s all;
}
body.menu-ouvert .mobile-menu-wrapper {
  right: 0;
  opacity: 1;
}

.mobile-menu-primary-nav-wrapper,
.primary-nav-wrapper {
  padding: 1em 1em;
}

.primary-nav {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
  margin: 0;
}
.primary-nav li {
  font-family: "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 6px;
  font-size: 0.875em;
  opacity: 0.9;
}
.primary-nav li.active-section {
  opacity: 1;
  background: var(--wp--cinelatino--section-active-color-80);
}
.primary-nav li.active-section a {
  color: #fff;
  padding: 4px 9px;
}
.primary-nav a {
  text-decoration: none;
  color: #222;
}

.mobile-menu-secondary-nav-wrapper {
  padding: 1.25em 1.25em;
  color: #fff;
  background: var(--wp--cinelatino--section-active-color-70);
}
.mobile-menu-secondary-nav-wrapper a {
  color: #fff;
  text-decoration: none;
}
.mobile-menu-secondary-nav-wrapper a:focus, .mobile-menu-secondary-nav-wrapper a:active, .mobile-menu-secondary-nav-wrapper a:hover {
  color: #fff;
}

.secondary-items-container {
  max-width: 600px;
  margin: 0 auto;
}

.close-menu-button-container {
  float: right;
  margin: 15px 0 0 0;
}
.close-menu-button-container a {
  display: block;
  width: 45px;
  height: 50px;
  padding: 20px 20px 10px;
}
.close-menu-button-container a > span {
  display: none;
}
.close-menu-button-container div span {
  border-radius: 3px;
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  transform-origin: center;
}
.close-menu-button-container div span.top {
  transform: rotate(45deg);
}
.close-menu-button-container div span.bottom {
  transform: rotate(-45deg);
}

.logo-mobile-menu {
  display: block;
  margin: 0 60px 10px 0;
}
.logo-mobile-menu img {
  max-width: 50vw;
}

form.searchform {
  padding: 1em 0;
  margin: 0 auto;
  font-size: 0.9em;
}
form.searchform fieldset.post-types {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 20px 30px;
}
form.searchform fieldset.post-types input {
  display: inline-block;
  width: auto;
}
form.searchform fieldset.post-types label {
  margin: 0 20px 0 8px;
  font-size: 1.1em;
}
form.searchform div {
  position: relative;
}
form.searchform input {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  background: #fff;
  border-radius: 50px;
  padding-right: 50px;
  padding-left: 20px;
  padding: 2em;
  box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.07);
  transition: all 0.2s;
}
form.searchform input::placeholder {
  color: #999;
}
form.searchform input:active, form.searchform input:focus {
  background: #fff !important;
  box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.14);
}
form.searchform button {
  display: block;
  position: absolute;
  right: 0px;
  top: 0;
  height: 70px;
  width: 70px;
  background-color: transparent;
  background-image: url("../images/pictos/black/search.png");
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
  border: 0;
}
form.searchform button span {
  display: none;
}

.mobile-menu-wrapper .language-swicher {
  font-family: "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  font-size: 1.25em;
  padding: 5px 20px;
  margin: 0 auto;
}
.mobile-menu-wrapper .language-swicher a {
  color: #222;
}

.secondary-nav {
  margin: 10px 0;
}
.secondary-nav > li > a {
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2em;
  display: block;
  margin-bottom: -8px;
}
.secondary-nav ul {
  margin: 0 0 15px;
}
.secondary-nav ul li {
  font-size: 1.125em;
  padding: 3px 0 1px 30px;
}
.secondary-nav ul li a:focus, .secondary-nav ul li a:active {
  margin-left: 6px;
}

.pictos-header-mobile {
  border-top: 1px solid #fff;
  margin: 40px 0 100px;
  padding-top: 20px;
}
.pictos-header-mobile li {
  height: 50px;
}
.pictos-header-mobile img {
  max-width: 30px;
  margin-bottom: -6px;
  margin-right: 10px;
  transition: all 0.2s;
}
.pictos-header-mobile a:focus img, .pictos-header-mobile a:active img {
  margin-right: 16px;
}

.cover-container {
  overflow: hidden;
}
.cover-container .cover-image {
  height: 50vh;
  position: absolute;
  width: 100%;
  z-index: 2;
  background-size: cover;
  background-position: center center;
}
.cover-container .cover-image .copyright {
  position: absolute;
  top: 0;
  right: 20px;
}
.cover-container .cover-mobile-over {
  height: 50vh;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  padding-bottom: 1em;
  color: #fff;
}
.cover-container .cover-mobile-over a {
  color: #fff;
}
.cover-container .cover-mobile-over h1 {
  margin-top: 20px;
  width: 100%;
}
.cover-container .cover-mobile-over > * {
  margin-bottom: 0;
}

.cover-container.small-cover-container {
  position: relative;
  height: 40vw;
}
.cover-container.small-cover-container .cover-image {
  height: 40vw;
}
.cover-container.small-cover-container .cover-mobile-over {
  height: 40vw;
  padding: 1em 0;
}
.cover-container.small-cover-container .cover-mobile-bottom {
  width: 100%;
  font-size: 1.125em;
}

.no-image-film-header {
  background: #fff;
}
.no-image-film-header .main-details {
  margin: 0 !important;
  color: inherit;
}
.no-image-film-header .main-details a {
  color: inherit;
}
.wrapped-cover-container.small-cover-container .cover-mobile-over {
  width: 100%;
  padding: 1em 3em !important;
}

.no-image-film-header .cover-mobile-over {
  padding: 1em 0;
  margin: 0;
}

.no-image-film-header .cover-mobile-bottom {
  margin: 0;
}

.fiche-section .cover-mobile-over h1 {
  padding-bottom: 30px;
}

.cover-container + #inner-content {
  padding-top: 0;
}

/********************
POSTS & CONTENT STYLES
	*********************/
.alignleft, img.alignleft, .alignright, img.alignright {
  max-width: 45% !important;
  margin-bottom: 1em;
}
.alignleft.size-thumbnail, img.alignleft.size-thumbnail, .alignright.size-thumbnail, img.alignright.size-thumbnail {
  border-radius: 10px;
}

.aligncenter, img.aligncenter {
  margin-bottom: 1em;
}

/* at this larger size, we can start to align images */
.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.hentry {
  background-color: #fff;
  border-radius: 10px;
}
.hentry header {
  padding: 1em 0 1.5em;
}
.hentry footer p {
  margin: 0;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* post meta */
.byline {
  color: #9fa6b4;
  font-size: 0.8em;
}
/* entry content */
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content ul {
  list-style: disc;
  padding-left: 15px;
}
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin-bottom: 1.5em;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #1a1c1e;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 2px 0 7px;
  color: #666;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

/* end .wp-caption */
.tags {
  margin: 0;
}

/*


*****************************************************************
PAGE NAVI STYLES
	******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  padding: 1em 1em 0.5em;
  min-width: 1em;
  display: block;
  color: inherit;
}
.pagination span.current {
  font-weight: 500;
  border-bottom: 2.5px solid var(--wp--cinelatino--section-active-color-100);
}
.pagination a:hover, .pagination a:focus {
  color: var(--wp--cinelatino--section-active-color-100);
}
.pagination a.next {
  font-size: 1.2em;
  padding-top: 0.55em;
}
.pagination .current {
  cursor: default;
  color: #222;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #222;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*




********************
SIDEBARS & ASIDES
	*********************/
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*


********************
FOOTER STYLES
	*********************/
.footer {
  clear: both;
  background: #111;
  color: #f8f9fa;
  padding: 20px 0 30px;
  font-size: 0.9em;
}
.footer a {
  color: #ccc;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer .footer-header h2 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 3px;
  line-height: 1.65;
  font-weight: 500;
}
.footer .footer-header h2 strong {
  color: var(--wp--cinelatino--section-active-color-100);
}
.footer .footer-header h2 img {
  margin-right: 100%;
}
.footer .footer-header p {
  margin: 2px 0;
}
.footer .footer-header p a:not(:last-child) {
  margin-right: 20px;
}
.footer .footer-cols {
  clear: both;
}
.footer .footer-col {
  margin: 20px 0;
  font-size: 0.9em;
}
.footer .footer-col h2 {
  margin: 0;
  font-size: 1em;
}
.footer .footer-col h2::after {
  content: " _";
  color: var(--wp--cinelatino--section-active-color-100);
}
.footer .footer-col ul {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.footer .footer-footer {
  font-size: 0.9em;
  opacity: 0.7;
}

.rs-footer {
  margin-right: 6px;
}
.rs-footer img {
  max-width: 13px;
  margin-bottom: -2px;
  margin-right: 2px;
  transition: all 0.2s;
  opacity: 0.7;
}
.rs-footer a:hover img {
  opacity: 0.9;
}

/*



********************
DIAPORAMA ACCUEILS SECTIONS
	*********************/
.diapo-accueil {
  height: 75vh;
  position: relative;
  padding: 0 !important;
}
.diapo-accueil.diapo-accueil-festival {
  height: 60vh;
}
.diapo-accueil .diapo-images {
  padding-left: 0 !important;
  list-style: none;
  position: absolute;
  margin: 0;
  overflow: hidden;
}
.diapo-accueil .diapo-images, .diapo-accueil .diapo-images .slick-list, .diapo-accueil .diapo-images .slick-track, .diapo-accueil .diapo-images li {
  width: 100%;
  height: 100%;
}
.diapo-accueil .diapo-images li {
  background-color: #222;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.diapo-accueil .diapo-images li .copyright {
  position: absolute;
  top: 0px;
  right: 20px;
}
.diapo-accueil .diapo-images .slick-prev {
  display: none !important;
}
.diapo-accueil .diapo-images .slick-next {
  position: absolute;
  right: 1.75em;
  bottom: 116px;
  z-index: 6;
  color: transparent;
  background-color: transparent;
  background-image: url("../images/pictos/white/arrow-diapo.png");
  height: 40px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  opacity: 0;
  transition: all 0.3s;
}
.diapo-accueil:hover .slick-next {
  opacity: 0.4;
}
.diapo-accueil:hover .slick-next:hover {
  opacity: 0.7;
}
.diapo-accueil .diapo-content {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  width: 100%;
  color: #fff;
}
.diapo-accueil .diapo-content h1 {
  margin: 0 0 6px;
}
.diapo-accueil .diapo-content p {
  margin: 0;
  line-height: 1.8;
}
.diapo-accueil .diapo-content .diapo-boutons {
  margin-bottom: 0;
}
.diapo-accueil .diapo-content .diapo-boutons li {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.vertical.copyright {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  padding: 0px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  font-weight: 200;
  opacity: 0.5;
}

.voile-full,
.voile-bottom {
  position: relative;
  z-index: 2;
}
.voile-full::before, .voile-full::after,
.voile-bottom::before,
.voile-bottom::after {
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
}

.voile-full::before {
  z-index: 3;
  background: rgba(0, 0, 0, 0.1);
}

.voile-bottom::after {
  z-index: 3;
  background: linear-gradient(0deg, rgb(2, 0, 36) 0%, rgba(0, 0, 0, 0.8267507687) 40%, rgba(255, 255, 255, 0) 80%);
  opacity: 0.3;
}

.picto-play {
  position: relative;
  z-index: 2;
  display: block;
}
.picto-play::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  z-index: 3;
  background-image: url("../images/play.png");
  background-size: contain;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  transition: 0.6s all;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.4s;
}
.picto-play:hover::before {
  transform: rotate(-360deg) scale(1.1);
}

section.home-section.provisoire {
  min-height: 70vh;
}

/********************
FICHES FILMS
	*********************/
.add-film-to-fav {
  filter: sepia(100) grayscale(1);
  opacity: 0.7;
  transition: all 0.2s;
}
.add-film-to-fav:hover, .add-film-to-fav.is-fav {
  opacity: 0.5;
  filter: sepia(0) grayscale(0);
}
h1 .add-film-to-fav {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  line-height: 0;
  margin-left: 0px;
}
.add-film-to-fav img {
  margin: 0;
  max-height: 100%;
}

.share-bouton {
  opacity: 0.7;
  transition: all 0.2s;
  height: 24px;
  line-height: 0;
}
.share-bouton:hover {
  opacity: 0.9;
}
.share-bouton img {
  margin: 0;
  max-height: 100%;
}
h1 .share-bouton {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.share-bouton.black {
  opacity: 0.5;
}
.share-bouton.black:hover {
  opacity: 0.7;
}
.header-filmcc-blank .share-bouton, .article-header .share-bouton {
  height: 20px;
}

.fiche-film .invites {
  background: var(--wp--cinelatino--section-active-color-50);
  width: 100%;
  padding: 5px 20px;
  border-radius: 6px;
}
.fiche-film .invites li:not(:last-child) {
  border-bottom: 1px dotted var(--wp--cinelatino--section-active-color-70);
}
.fiche-film .bande-annonce {
  margin: 50px 0;
}
.fiche-film .lien-prog-scolaire {
  margin-bottom: 30px;
}
.fiche-film .lien-prog-scolaire .bouton {
  margin-left: 40px;
  background: var(--wp--cinelatino--section-actions-color-80);
}
.fiche-film .lien-prog-scolaire .bouton:hover {
  background: var(--wp--cinelatino--section-actions-color-100);
}
.fiche-film .columns-container {
  display: flex;
  flex-wrap: wrap;
}
.fiche-film .columns-container .column {
  width: 100%;
}
.fiche-film .columns-container .right-column {
  order: 1;
}
.fiche-film .columns-container .left-column {
  order: 2;
}
.fiche-film .columns-container .left-column .synopsis {
  margin-top: 0;
}

.seances-compact {
  background: #f7f7f7;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.seances-compact > div {
  padding: 0px 30px 20px;
}
.seances-compact > header {
  padding: 20px 30px 10px;
}
.seances-compact > header h2 {
  margin: 0;
  display: inline-block;
  border-bottom: 3px solid var(--wp--cinelatino--section-active-color-100);
  padding: 10px 20px 15px 15px;
}
.seances-compact > header h2 img {
  width: 22px;
  margin-right: 20px;
}
.seances-compact > header img {
  width: 28px;
  opacity: 0.8;
  height: auto;
  margin-right: 10px;
  margin-bottom: -2px;
}
.seances-compact > header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.seances-compact > header nav a {
  padding: 6px 16px;
  text-decoration: none;
  opacity: 0.5;
  border-bottom: 3px solid transparent;
}
.seances-compact > header nav a:hover {
  opacity: 0.9;
}
.seances-compact > header nav a.active {
  opacity: 1;
  border-color: var(--wp--cinelatino--section-active-color-100);
}
.seances-compact ul {
  margin: 0;
}
.seances-compact ul li {
  padding: 10px 0;
}
.seances-compact ul li .day,
.seances-compact ul li .hour {
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  line-height: 1em;
  position: relative;
  bottom: -1px;
}
.seances-compact ul li .hour {
  font-weight: 500;
  margin-right: 10px;
}
.seances-compact ul li:not(:last-of-type) {
  border-bottom: 1px dotted #ddd;
}
.seances-compact ul li .comment {
  display: block;
}
.seances-compact ul li img.picto-seance {
  height: 18px;
  width: auto;
  margin: 0;
  margin-left: 8px;
  margin-bottom: -2px;
}
.seances-compact #seances-region {
  display: none;
}

.courts-programme article {
  margin-bottom: 30px;
}
.courts-programme article aside {
  border-radius: 10px;
}
.courts-programme article > div ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.9em;
}
.courts-programme article > div .excerpt {
  font-size: 0.9em;
}

.picto.book-session {
  padding: 4px;
  line-height: 0;
  display: inline-block;
  width: 28px;
  width: 28px;
  border-radius: 50%;
  position: relative;
  bottom: -3px;
  margin-left: 5px;
}
.picto.book-session img {
  width: 20px;
  opacity: 0.8;
}
.picto.book-session:hover {
  background: #fff;
}
.picto.book-session:hover img {
  opacity: 1;
}

.secondary-details dl {
  display: grid;
  border-radius: 7px;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
}
.secondary-details dl dt, .secondary-details dl dd {
  padding: 12px;
}
.secondary-details dl dt {
  font-weight: 500;
}
.secondary-details dl dt.ce-film-a-ete-soutenu-par {
  align-self: center;
}
.secondary-details dl dt:nth-of-type(odd),
.secondary-details dl dd:nth-of-type(odd) {
  background: #eee;
}
.secondary-details dl dd p {
  margin: 5px 0;
}
.secondary-details dl dd p:first-of-type {
  margin-top: 0;
}
.secondary-details dl dd p:last-of-type {
  margin-bottom: 0;
}

.details-cc img {
  width: 120px;
}

.prize-cd {
  font-size: 1.125em;
}
.prize-cd strong {
  border-bottom: 4px solid var(--wp--cinelatino--section-pro-color-60);
  padding: 5px;
}

.secondary-cd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.secondary-cd dl {
  margin: 0 15px 0 5px;
  padding: 10px 0 0;
  border-bottom: 1px dotted #ccc;
}
.secondary-cd dl dt {
  font-weight: 500;
}
.secondary-cd dl dd {
  padding-bottom: 10px;
}
.secondary-cd dl dd p {
  margin: 0;
}
.secondary-cd::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #fff;
}

.synopsis-public-cd {
  margin-bottom: 30px;
}

.invites li {
  clear: both;
  padding: 30px 0;
  display: flex;
  align-items: center;
}
.invites li:hover h3, .invites li:hover p {
  left: 3px;
}
.invites h3 {
  font-size: 1.33em;
  margin: 0 0 8px;
}
.invites p {
  line-height: 1.4;
  margin: 0;
}
.invites h3, .invites p {
  position: relative;
  left: 0;
  transition: all 0.2s;
}
.invites a {
  color: inherit;
}

.portrait-rond {
  width: 80px;
  height: 80px;
  min-width: 80px;
  float: left;
  margin-right: 20px;
}
.portrait-rond a {
  display: block;
  width: 100%;
  height: 100%;
}

.copyright-portrait {
  font-size: 0.8em;
  color: #BBB;
  margin-top: 0;
  margin-bottom: 30px;
}

#inner-content main > .columns-container:first-child {
  margin-top: -2em;
}

.column > div {
  margin: 3em 0;
}

.portrait-rond {
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}

.video-container {
  width: 82vw;
  height: 48vw;
  background-color: #111;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.video-container span {
  display: none;
}
.video-container a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 4;
}

.main-details {
  font-weight: 500;
}
.main-details a {
  text-decoration: none;
}
.main-details a:not(.bouton):hover {
  text-decoration: underline;
}
.main-details li {
  display: inline-block;
  margin-bottom: 6px;
}
.main-details li:not(:last-child) {
  margin-right: 10px;
}
.main-details li.detail-section {
  margin-bottom: 0;
}
.main-details li.detail-section a {
  display: inline-block;
  padding: 1px 10px;
  border-radius: 6px;
  color: #fff;
  margin-bottom: 6px;
}
.main-details li.detail-section a:hover {
  opacity: 0.9;
  text-decoration: none;
}
.main-details li.detail-section a:not(:last-child) {
  margin-right: 10px;
}
.main-details li.detail-premiere, .main-details li.detail-scolaire a {
  color: #222;
  padding: 0 10px;
  border-radius: 6px;
  border: 2px solid #222;
  text-decoration: none;
  display: inline-block;
}
.main-details li.detail-scolaire a:not(:first-of-type) {
  margin-left: 10px;
}
.main-details.session li:not(:last-child) {
  margin-right: 20px;
}
.main-details.session .bouton {
  margin-left: 20px;
}

.tippy-box[data-theme~=just-film-fav] {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.4px;
  text-align: center;
}
.tippy-box[data-theme~=just-film-fav] a {
  display: inline;
  color: #fff !important;
  text-decoration: underline;
}
.tippy-box[data-theme~=just-film-fav] a:hover {
  color: var(--wp--cinelatino--section-active-color-100) !important;
}

.tippy-box[data-theme~=share] {
  margin-bottom: 0;
}
.tippy-box[data-theme~=share] .share-label {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  display: inline-block;
  position: relative;
  top: -3px;
}
.tippy-box[data-theme~=share] .share-label::before {
  display: none !important;
}
.tippy-box[data-theme~=share] a {
  display: inline-block;
  padding: 0px 4px;
  position: relative;
  bottom: -2px;
  transition: 0.3s;
}
.tippy-box[data-theme~=share] a img {
  width: 21px;
  height: auto;
}
.tippy-box[data-theme~=share]:hover a {
  opacity: 0.8;
}
.tippy-box[data-theme~=share]:hover a:hover {
  opacity: 1;
}

.synopsis + .header-scolaire {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--wp--cinelatino--section-active-color-50);
}

.caracs-scolaires {
  padding: 20px 0 !important;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--wp--cinelatino--section-active-color-50);
}
.caracs-scolaires label {
  font-weight: 500;
}
.caracs-scolaires ul {
  list-style: none;
  padding-left: 0;
}
.caracs-scolaires ul li {
  padding: 5px 0;
}

/********************
FORMS STYLES
	*********************/
.gform_body input,
.gform_body textarea {
  border-color: #ddd !important;
}
.gform_body label,
.gform_body legend {
  font-size: 1em !important;
}
.gform_body .ginput_complex.ginput_container_email label {
  display: none !important;
}

.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  justify-content: flex-end !important;
}
.gform_wrapper input[type=submit],
.gform_wrapper input.gform_next_button,
.gform_wrapper input.gform_previous_button,
.gform_wrapper button.gform-theme-button:not(.gform_delete_file) {
  font-size: 1.125em !important;
  padding: 15px 30px !important;
}
.gform_wrapper .gchoice input[type=radio] + label,
.gform_wrapper .gchoice input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  margin: 4px 0 6px 10px !important;
}
.gform_wrapper .inline .gfield_checkbox,
.gform_wrapper .inline .gfield_radio {
  flex-direction: row !important;
  flex-wrap: wrap !important;
}
.gform_wrapper .inline .gfield_checkbox .gchoice_other_control,
.gform_wrapper .inline .gfield_radio .gchoice_other_control {
  margin-left: 20px;
  grid-column: none;
}
.gform_wrapper .inline-label.inline .gfield_label {
  float: left;
  margin: 3px 20px 0 0;
  font-size: 1.1em !important;
  width: 140px;
}
.gform_wrapper .gform-field-label {
  font-weight: 500 !important;
}
.gform_wrapper .gchoice_other_control[disabled=disabled] {
  opacity: 0.2 !important;
}
.gform_wrapper .gfield > label,
.gform_wrapper .gfield > legend {
  font-weight: bold;
}
.gform_wrapper p.add-director-button-container {
  grid-column: span 12;
}
.gform_wrapper .section-director {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  inline-size: 100%;
  row-gap: var(--gf-form-gap-y);
  column-gap: var(--gf-form-gap-x);
}
.gform_wrapper .section-director .gfield--type-section h3 {
  font-size: 1.25em;
  margin-bottom: 5px;
}
.gform_wrapper .remove-director.button {
  background: #fff !important;
  color: inherit !important;
  border-color: #ccc !important;
  margin-left: 40px !important;
}
.gform_wrapper .remove-director.button:hover {
  background: #eee !important;
}
.gform_wrapper .gform_fields > .add-director-button-container .remove-director {
  display: none;
}
.gform_wrapper .gf_progressbar_wrapper {
  margin: 40px 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.gform_wrapper .gfield_required_asterisk {
  font-size: 2em;
  line-height: 0em;
  position: relative;
  top: 3px;
}
.gform_wrapper .gform_page_footer {
  padding-top: 50px;
}

.gform-theme--framework .gfield--type-choice .gchoice {
  align-items: center;
}

.gform-theme--framework .gform_validation_errors:focus {
  outline: 0 !important;
}

body .gform_wrapper.gform-theme {
  --gf-font-size-primary: 1em;
  --gf-radius: 6px !important;
  --gf-color-primary: #20569b;
  --gf-color-primary-darker: #14417b;
  --gf-color-primary-lighter: #2b6cbf;
  --gf-field-pg-prog-bar-bg-color-blue:#127e97;
  --gf-field-section-border-style: dotted;
}

.gf_progressbar_title {
  font-weight: 500 !important;
}

.gform_wrapper .gfield--type-jaugeradio .gchoice .gform-field-label {
  font-weight: normal !important;
}
.gform_wrapper .gfield--type-jaugeradio .gchoice input[disabled=disabled] + label,
.gform_wrapper .gfield--type-jaugeradio .gchoice .few-left {
  color: #999;
}
.gform_wrapper .gfield--type-jaugeradio .gchoice .fully-booked {
  color: var(--gf-ctrl-label-color-req);
}

#gform_3 .gfield_description u,
#gform_3 #field_3_148 u {
  color: #dd320b;
  text-decoration: none;
  font-weight: bold;
}

#field_3_109,
#field_3_182,
#field_3_183 {
  padding: 20px;
  border: 2px solid #ccc;
  background: #eee;
  border-radius: 5px;
}
#field_3_109 legend,
#field_3_182 legend,
#field_3_183 legend {
  position: relative;
  top: 31px;
  border-top: 2px solid #ccc;
  padding: 20px 0;
}
#field_3_109:not(.gfield_contains_required) legend,
#field_3_182:not(.gfield_contains_required) legend,
#field_3_183:not(.gfield_contains_required) legend {
  top: 32px;
}

#gform_3.collectif .section-director,
#gform_3.collectif .add-director-button-container {
  display: none !important;
}

.gform_fields > .gfield--type-section h3 {
  font-size: 2em;
  margin-bottom: 20px;
}
.gform_fields > .gfield--type-section:not(:first-of-type) {
  margin-top: 30px;
  padding-bottom: 0;
  border-color: #eee;
}
.gform_fields > .gfield--type-section:not(:first-of-type) h3 {
  font-size: 2em;
  margin: 10px 0 0px;
}

.gform_fields > .gfield--type-section + .gfield--type-section:not(:first-of-type) {
  margin-top: -20px;
}

#gform_9 #field_9_84 .ginput_container {
  display: none !important;
}
#gform_9 #field_9_84 .gfield_description {
  font-size: 1em;
  color: #222;
}
#gform_9 #field_9_84 .gfield_description img {
  max-width: 100px;
  height: auto;
  margin-top: 20px;
  padding: 2px;
  border: 1px solid #ddd;
}
#gform_9 .hidden-field {
  display: none;
}

.otgs-development-site-front-end {
  display: none !important;
}

.entry-content .elementor.elementor-edit-area .elementor-element .elementor-image-box-wrapper p.elementor-image-box-description {
  color: pink;
}

.title-switcher-container {
  margin: 1em 0;
  display: flex;
  justify-content: flex-start;
}
.title-switcher-container h1, .title-switcher-container h2 {
  max-width: calc(100% - 100px);
  margin: 0;
}
.cover-container .title-switcher-container h1, .cover-container .title-switcher-container h2 {
  max-width: none;
}
.cover-container .title-switcher-container .cinelatino-flag-switcher {
  width: 200px;
  margin-left: 0px;
}
.title-switcher-container .cinelatino-flag-switcher {
  display: inline-block;
  vertical-align: top;
  height: auto;
  padding: 15px 0 0;
  margin-right: -5px;
  align-self: center;
  margin-left: 80px;
}
.title-switcher-container .cinelatino-flag-switcher ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  display: inline-block;
  overflow: visible;
}
.title-switcher-container .cinelatino-flag-switcher ul::after {
  display: none;
}
.title-switcher-container .cinelatino-flag-switcher ul li {
  background: transparent !important;
  display: inline-block !important;
  width: auto;
  padding: 3px;
  opacity: 0.85;
}
.title-switcher-container .cinelatino-flag-switcher ul li:not(.current-language) {
  filter: grayscale(0.1);
  opacity: 0.5;
}
.title-switcher-container .cinelatino-flag-switcher ul li:not(.current-language):hover {
  opacity: 1;
  filter: grayscale(0);
}

.sessioncc-title {
  font-size: 3em;
}

main iframe {
  max-width: 100%;
}

.entry-content ul {
  list-style: disc;
  padding-left: 20px;
}

.home-section-part h1 {
  margin: 20px 0 0;
}

section.gris {
  background: #f6f6f6;
}

section.dark {
  background: #1a1a1a;
  color: #fff;
}
section.dark a {
  color: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  list-style: none !important;
  padding: 0 !important;
  margin: 30px 0;
}
.cards li {
  width: 100%;
}

p.empty-cards {
  width: 100% !important;
  display: none;
  font-style: italic;
}

.card a {
  text-decoration: none;
}

label.label-image {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 2px 8px 1px;
  background: #fff;
  font-size: 0.6em;
  text-transform: uppercase;
  z-index: 9;
}
label.label-image i.picto {
  width: 14px;
  height: 14px;
}

.card.title-card > div {
  height: 60vw;
  background-color: #444;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.cards.type-filmcd .card.title-card > div {
  height: 100vw;
}
.card.title-card > div > a,
.card.title-card > div .card-fav-wrapper {
  display: flex;
  position: relative;
  z-index: 4;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  justify-content: end;
  flex-direction: column;
  transition: 0.2s all;
}
.card.title-card > div > a span,
.card.title-card > div .card-fav-wrapper span {
  display: block;
  width: 100%;
}
.card.title-card > div > a:hover,
.card.title-card > div .card-fav-wrapper:hover {
  padding-left: 1.3em;
  padding-right: 0.7em;
}
.card.title-card > div .card-fav-wrapper > a {
  position: absolute;
  height: 100%;
  width: 100%;
}
.card.title-card > div .card-fav-wrapper .add-film-to-fav {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  line-height: 0;
  margin-left: 5px;
  top: -1px;
}

.films-siblings-cd .card.title-card div {
  height: 60vw;
}

.grosplan-grid {
  gap: 10px;
}
.grosplan-grid .card:nth-of-type(4),
.grosplan-grid .card:nth-of-type(5) {
  display: none;
}

.card.content-card div.image {
  height: 60vw;
  background-color: #444;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.card.content-card div.image::after {
  opacity: 0;
}
.card.content-card div.image a {
  display: flex;
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
}
.card.content-card .desktop-excerpt {
  display: none;
}
.card.content-card .mobile-over-bottom {
  padding: 1.5em 1em;
}
.card.content-card .mobile-over-bottom a.arrow-after::after {
  top: 1px;
}
.card.content-card .mobile-over-bottom .excerpt {
  margin: 0;
  line-height: 1.6;
}

.sortie-card {
  min-height: 500px;
  width: 90vw;
}
.sortie-card .label-text {
  display: none;
}
.sortie-card .poster-container {
  position: relative;
}
.sortie-card .poster-container img {
  width: 100%;
}
.sortie-card .poster-container a {
  display: block;
}
.sortie-card ul {
  margin: 3px 0;
}
.sortie-card .date-sortie {
  font-weight: 500;
}
.sortie-card .titre-sur-les-ecrans .h3::after {
  display: none !important;
}

.excerpt a {
  margin-left: 40px;
}

a.arrow-after {
  position: relative;
  display: inline-block;
  padding-right: 45px;
  text-decoration: none;
  color: inherit;
}
a.arrow-after::after {
  position: absolute;
  display: block;
  content: "";
  top: 2px;
  right: 0;
  height: 24px;
  width: 32px;
  background-image: url("../images/pictos/black/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
a.arrow-after:hover::after {
  right: -5px;
}

.section-festival .boutons {
  padding: 1.5em 0;
}

.boutons {
  text-align: right;
}
.boutons .bouton {
  margin: 0 0 8px 30px;
}

main section {
  padding: 1em 0;
}
.page-template-page-template-sections main section {
  padding: 0;
}

.fiche-personnalite main {
  min-height: 300px;
}
.fiche-personnalite .filmo h3 {
  margin-bottom: 0;
}
.fiche-personnalite .portrait-rond {
  float: right;
  margin: 0 0 20px 20px;
}

#gform_wrapper_8 .gfield--type-email label,
#gform_wrapper_8 .gform_footer {
  display: none;
}

.logos-rs ul {
  display: flex;
  gap: 20px;
}
.logos-rs a {
  display: inline-block;
}
.logos-rs li, .logos-rs img {
  max-width: 32px;
}
.logos-rs span {
  display: none;
}

.inline-gallery::before {
  content: "";
  height: 100%;
  width: 10000px;
  position: absolute;
  left: -10000px;
  top: 0;
  z-index: 1;
}
.inline-gallery .slick-list {
  overflow: visible;
}
.inline-gallery .slick-slide {
  height: auto !important;
}
.inline-gallery li {
  padding-right: 20px;
  opacity: 0.33;
  transition: opacity 0.3s;
}
.inline-gallery li.slick-current {
  opacity: 1;
}
.inline-gallery img {
  height: 240px;
}

.cards.cards-gallery {
  display: block;
  margin-right: -2em !important;
}
.cards.cards-gallery .slick-arrow.slick-next {
  right: 50px;
}
.cards.cards-gallery li.card {
  width: auto;
  padding-right: 2em;
}
.cards.cards-gallery .slick-slide {
  height: auto !important;
}

.diapo-sorties-home {
  position: relative;
}
.diapo-sorties-home .slick-arrow {
  position: absolute;
  top: 95vw;
  z-index: 9;
  transition: opacity 0.4s;
  color: transparent;
  background-color: transparent;
  border: 0;
  background-image: url("../images/pictos/white/arrow.png");
  background-size: contain;
  width: 50px;
  height: 50px;
  opacity: 0.8;
}
.diapo-sorties-home .slick-arrow:hover {
  opacity: 1;
}
.diapo-sorties-home .slick-arrow.slick-next {
  right: 20px;
}
.diapo-sorties-home .slick-arrow.slick-prev {
  left: 20px;
  transform: rotate(180deg);
}

.slick-inline {
  position: relative;
}
.slick-inline .slick-arrow {
  position: absolute;
  top: calc(50% - 16px);
  z-index: 9;
  transition: opacity 0.4s;
  color: transparent;
  background-color: transparent;
  border: 0;
  background-image: url("../images/pictos/white/arrow-diapo.png");
  background-size: contain;
  width: 32px;
  height: 32px;
  opacity: 0.6;
}
.slick-inline .slick-arrow:hover {
  opacity: 1;
}
.slick-inline .slick-arrow.slick-disabled {
  opacity: 0;
}
.slick-inline .slick-prev {
  left: 20px;
  transform: rotate(-180deg);
}
.slick-inline .slick-next {
  right: 20px;
}

.active-section-background {
  margin-top: 40px;
  background: var(--wp--cinelatino--section-active-color-40);
}

.films-siblings {
  padding: 2em 0;
}
.films-siblings h2 a {
  color: inherit;
  text-decoration: none;
}
.films-siblings .cards {
  margin: 2em 0;
}

section.direct-access {
  background: #f6f6f6;
  padding: 2em 0;
}
section.direct-access li {
  background: #fff;
  margin: 2em 0;
}

.horizontal-overview {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
.horizontal-overview > * {
  width: 100%;
}
.horizontal-overview aside {
  height: 45vw;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.horizontal-overview aside a {
  display: block;
  height: 100%;
  width: 100%;
}
.horizontal-overview aside img {
  width: 100%;
}
.horizontal-overview > div {
  padding: 1.5em 2em;
}
.horizontal-overview > div > * {
  margin: 0;
}
.archive-sur-ecrans .horizontal-overview {
  border-radius: 0;
}
.archive-sur-ecrans .horizontal-overview aside {
  padding-top: 1.5em;
}
.archive-sur-ecrans .horizontal-overview aside,
.archive-sur-ecrans .horizontal-overview aside a {
  height: auto;
}
.archive-sur-ecrans .horizontal-overview .picto-play.no-thumb {
  background: #101010;
}

.mixitup-filters {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.mixitup-filters fieldset {
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mixitup-filters fieldset label {
  font-weight: 500;
}
.mixitup-filters fieldset label::after {
  content: " : ";
}
.mixitup-filters button {
  border: 0;
  border-radius: 5px;
  padding: 2px 10px;
  background: #eee;
}
.mixitup-filters button.mixitup-control-active, .mixitup-filters button.actif {
  background: var(--wp--cinelatino--section-active-color-40);
}

.tax-section .mixitup-container {
  position: relative;
  padding-top: 0;
}
.tax-section .mixitup-container .mixitup-filters {
  padding: 30px 0;
  background: #fff;
  position: sticky;
  top: 50px;
  z-index: 9;
}

i.picto {
  height: 18px;
  width: 18px;
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: -4px;
  margin-right: 10px;
}
i.picto.calendar {
  background-image: url("../images/pictos/black/calendar.png");
}
i.picto.calendar.white {
  background-image: url("../images/pictos/white/calendar.png");
}
i.picto.info {
  background-image: url("../images/pictos/black/information.png");
}
i.picto.info.white {
  background-image: url("../images/pictos/white/information.png");
}

.archive-actus article,
.agenda-annee article {
  margin: 3em 0;
}
.archive-actus article aside,
.agenda-annee article aside {
  border-radius: 10px;
}
.archive-actus article aside .label-image,
.agenda-annee article aside .label-image {
  border-radius: 3px;
  opacity: 0.7;
}
.archive-actus article .date-agenda,
.agenda-annee article .date-agenda {
  font-size: 1.25em;
  display: inline-block;
  background: #222;
  padding: 4px 12px;
  color: #fff;
}
.archive-actus article .article-header,
.agenda-annee article .article-header {
  padding-bottom: 0 !important;
}
.archive-actus article .excerpt,
.agenda-annee article .excerpt {
  padding: 0;
}
.archive-actus article .excerpt > p:last-child,
.agenda-annee article .excerpt > p:last-child {
  margin-bottom: 0;
}
.archive-actus article .excerpt a,
.agenda-annee article .excerpt a {
  margin-left: 5px;
}

.agenda-annee > article:first-child {
  margin-top: 0;
}
.agenda-annee article > div {
  padding-top: 1em;
  padding-bottom: 1em;
}
.agenda-annee h2 {
  margin: 16px 0 8px;
}
.agenda-annee footer {
  text-align: right;
  padding: 30px 0;
}

.date-lieu {
  font-size: 0.9em;
  padding: 2px 17px;
  border-radius: 7px;
  text-transform: uppercase;
  background: #eee;
  display: inline-flex;
  gap: 20px;
}

.agenda-sorties:last-child {
  margin-bottom: -30px;
}
.agenda-sorties h1 {
  margin: 0.45em 0 0.3em;
}
.agenda-sorties .slick-inline li {
  padding-right: 40px;
}
.agenda-sorties .slick-inline li p {
  margin: 0;
}
.agenda-sorties .slick-inline img {
  width: 100%;
}
.agenda-sorties footer {
  text-align: right;
  padding-bottom: 30px;
}

.archive-sur-ecrans .details-sortie {
  margin: 10px 0;
}
.archive-sur-ecrans .bouton {
  margin-left: -9px;
}
.archive-sur-ecrans article {
  margin: 3em 0 0;
}

.single-post #main {
  margin-bottom: 50px;
}

.single-post .date-lieu {
  display: inline-block;
  padding: 6px 20px;
  margin: 0 0 30px;
}

.date-lieu-agenda {
  font-weight: 500;
  display: inline-block;
  float: right;
  background: #f6f6f6;
  padding: 20px;
  margin-top: -20px !important;
  margin-left: 40px !important;
}
.date-lieu-agenda span {
  font-weight: normal;
}

.single-post .article-footer {
  text-align: right;
}
.single-post .article-footer .bouton {
  margin-left: 20px;
}

.page-template-page-template-sections #inner-content,
.page-template-page-template-sections #content,
.page-template-page-template-sections .entry-content {
  padding: 0;
}
.page-template-page-template-sections .section-page:first-of-type:last-of-type {
  min-height: 80vh;
}

.section-page {
  padding: 2em 0;
  clear: both;
}
.section-page .section-page-wrapper > *:last-child,
.section-page .contenu > *:last-child {
  margin-bottom: 0;
}
.section-page h1, .section-page h2 {
  margin: 10px 0 40px;
}
.section-page.fond-noir, .section-page.fond-couleur_section {
  background: #111;
  color: #fff;
  padding: 3em 0;
}
.section-page.fond-noir .inline-gallery::before, .section-page.fond-couleur_section .inline-gallery::before {
  background: #111;
}
.section-page.fond-noir a, .section-page.fond-couleur_section a {
  color: rgba(255, 255, 255, 0.8);
}
.section-page.fond-noir a:hover, .section-page.fond-couleur_section a:hover {
  color: #fff;
}
.section-page.fond-noir hr, .section-page.fond-couleur_section hr {
  background: rgba(255, 255, 255, 0.2);
}
.section-page.fond-gris {
  background: #f6f6f6;
}
.section-page.fond-gris .inline-gallery::before {
  background: #f6f6f6;
}
.section-page.fond-couleur_section_clair {
  background-color: var(--wp--cinelatino--section-active-color-10);
}
.section-page.fond-couleur_section_clair .inline-gallery::before {
  background: var(--wp--cinelatino--section-active-color-10);
}
.section-page.fond-couleur_section {
  background-color: var(--wp--cinelatino--section-active-color-100);
}
.section-page.fond-couleur_section .inline-gallery::before {
  background: var(--wp--cinelatino--section-active-color-100);
}
.section-page.fond-gris + .section-page.fond-gris {
  padding-top: 0;
}
.section-page.fond-gris + .section-page.fond-gris h2 {
  margin-top: 0;
}
.section-page.fond-couleur_section_clair + .section-page.fond-couleur_section_clair {
  padding-top: 0;
}
.section-page.fond-couleur_section_clair + .section-page.fond-couleur_section_clair h2 {
  margin-top: 0;
}
.section-page.fond-couleur_section + .section-page.fond-couleur_section {
  padding-top: 0;
}
.section-page.fond-couleur_section + .section-page.fond-couleur_section h2 {
  margin-top: 0;
}
.section-page.fond-blanc + .section-page.fond-blanc {
  padding-top: 0;
}
.section-page.fond-blanc + .section-page.fond-blanc h2 {
  margin-top: 0;
}
.section-page .section-page-wrapper > div {
  clear: both;
}

.contenu {
  padding: 1em 0;
}
h2 + .contenu {
  padding-top: 0;
}
.contenu p:last-child {
  margin-bottom: 0;
}

.contenu.lire-la-suite .contenu-visible p:last-child,
.contenu.lire-la-suite .contenu-cache p:last-child {
  margin-bottom: 0;
}
.contenu.lire-la-suite .contenu-cache {
  display: none;
  padding-top: 20px;
}

.div-first-p p:not(:first-of-type) {
  display: none;
}

p .lire-la-suite-toggle,
p .next-ps-toggle,
li .lire-la-suite-toggle {
  margin-left: 20px;
}

.lire-la-suite-toggle .hidden,
.next-ps-toggle .hidden {
  display: none;
}
.lire-la-suite-toggle .showed,
.next-ps-toggle .showed {
  display: inline;
}
.lire-la-suite-toggle.hidden .hidden,
.next-ps-toggle.hidden .hidden {
  display: inline;
}
.lire-la-suite-toggle.hidden .showed,
.next-ps-toggle.hidden .showed {
  display: none;
}

.ligne-boutons {
  padding: 15px 0;
}
.ligne-boutons ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.contenu + .ligne-boutons {
  padding-top: 10px;
}

.ligne-logos {
  padding: 5px 0;
}
.ligne-logos ul {
  list-style: none;
  padding: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.ligne-logos ul:not(:first-child) {
  margin-top: 40px;
}
.ligne-logos ul li {
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ligne-logos ul li a, .ligne-logos ul li img {
  display: block;
  max-width: 100%;
  max-height: 40px;
  margin: 0;
}
.ligne-logos + .ligne-logos {
  border-top: 1px solid #eee;
}

.vignettes {
  margin: 10px 0;
  padding: 30px 0;
}
.vignettes .wrapper {
  display: flex;
  gap: 20px;
}
.vignettes.vignettes-sur-6-colonnes {
  padding: 10px 0;
}
.vignettes.vignettes-sur-6-colonnes .vignette {
  width: calc(50% - 20px);
}
.vignettes.vignettes-sur-6-colonnes .vignette aside {
  height: 25vw;
}
.vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-vertical aside {
  height: 52vw;
}
.vignettes:not(.defilant) {
  flex-wrap: wrap;
}
.vignettes aside {
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center center;
}
.vignettes aside a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 1;
}
.vignettes aside:hover + .titre a {
  color: var(--wp--cinelatino--section-active-color-100);
}
.vignettes p {
  margin: 5px 0;
}
.vignettes .titre {
  font-weight: 500;
}
.vignettes .titre a {
  color: inherit;
  text-decoration: none;
}
.vignettes .titre a:hover {
  color: var(--wp--cinelatino--section-active-color-100);
}
.vignettes .vignette.type-vignette-rond {
  width: 120px;
  text-align: center;
  line-height: 1.5;
  font-size: 0.9em;
}
.vignettes .vignette.type-vignette-rond aside {
  height: 100px !important;
  width: 100px !important;
  border-radius: 50%;
}
.vignettes .vignette.type-vignette-rond h3 {
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
}
.vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond aside {
  width: 140px !important;
  height: 140px !important;
}

.readmore-vignette {
  width: 80vw;
  max-width: 1000px;
  border-radius: 10px;
  padding: 40px 13px 40px 40px !important;
}
.readmore-vignette .readmore-vignette-wrapper {
  padding: 0 27px 0 0;
  max-height: 60vh;
  min-height: 50vh;
  overflow-x: auto;
}
.readmore-vignette .alignright:first-child {
  width: 30%;
}
.readmore-vignette h3:first-child,
.readmore-vignette .alignright + h3 {
  margin-top: 0;
}

.section-vignettes,
.pantalla {
  margin: 30px 0 20px;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}
.section-vignettes .vignettes-3-colonnes,
.pantalla .vignettes-3-colonnes {
  margin-top: 30px;
}

.vignettes .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.vignettes .vignette {
  width: 100%;
}
.vignettes .vignette.type-vignette-full header {
  padding: 0;
}
.vignettes .vignette.type-vignette-full header img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0;
}
.vignettes .vignette aside {
  border-radius: 10px;
  width: 100%;
  height: 50vw;
  background-size: cover;
  background-position: center center;
}
.vignettes .vignette aside a {
  display: block;
  height: 100%;
  width: 100%;
}
.vignettes .vignette.type-vignette-vertical aside {
  height: 120vw;
}
.vignettes .vignette h2, .vignettes .vignette h3 {
  margin-bottom: 8px;
}
.vignettes .vignette h2 a, .vignettes .vignette h3 a {
  color: inherit;
  text-decoration: none;
}
.vignettes .vignette p {
  margin: 0;
}
.vignettes .vignette p:last-child {
  margin-top: 8px;
  text-align: right;
}

.archive.category-blog-mediapart article {
  border-radius: 0;
  margin: 1em 0;
  padding: 1em 0;
}
.archive.category-blog-mediapart article.no-thumb-mediapart div {
  padding: 0;
}
.archive.category-blog-mediapart article p {
  margin: 7px 0;
}
.archive.category-blog-mediapart article h2 {
  margin: 12px 0 7px;
}
.archive.category-blog-mediapart article .read-more {
  opacity: 0.5;
}
.archive.category-blog-mediapart article .read-more:hover {
  opacity: 1;
}

.login-page {
  display: flex;
  flex-wrap: wrap;
}
.login-page .register-form,
.login-page .login-form {
  width: 100%;
}
.login-page .register-form .form-wrapper,
.login-page .login-form .form-wrapper {
  padding: 30px;
  background: #f6f6f6;
  border-radius: 10px;
}
.login-page .register-form .form-wrapper h2,
.login-page .login-form .form-wrapper h2 {
  margin-top: 10px;
}
.login-page .register-form .login-username label,
.login-page .register-form .login-password label,
.login-page .login-form .login-username label,
.login-page .login-form .login-password label {
  font-weight: 500;
}
.login-page .login-form input[type=text],
.login-page .login-form input[type=password] {
  margin-top: 5px;
  background: #fff;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 6px;
  box-shadow: rgba(18, 25, 97, 0.08) 0px 1px 4px 0px;
}
.login-page .login-form input[type=text]:focus, .login-page .login-form input[type=text]:active,
.login-page .login-form input[type=password]:focus,
.login-page .login-form input[type=password]:active {
  box-shadow: rgba(32, 76, 229, 0.3) 0px 0px 0px 3px;
}
.login-page .register-form {
  order: 2;
}
.login-page .login-submit {
  text-align: right;
}
.login-page .forgotten-password {
  padding: 10px 20px;
}

.espace-membre input[type=submit] {
  background: #222 !important;
  color: #fff !important;
  font-size: 1em !important;
  padding: 8px 20px !important;
  border: 0;
  border-radius: 4px;
  font-weight: 500;
}
.espace-membre input[type=submit].gform_button {
  background: var(--wp--cinelatino--section-active-color-100) !important;
}

.espace-membre.logged-in {
  padding: 2px;
  border-radius: 10px;
  overflow: hidden;
}
.espace-membre nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
}
.espace-membre nav ul li {
  width: auto;
  margin: 0;
  padding: 0 24px 12px 0;
  transition: background 0.2s;
}
.espace-membre nav ul li a {
  text-decoration: none;
  background: #f6f6f6;
  padding: 4px 20px;
  display: inline-block;
  border-radius: 32px;
  border: 1px solid #f6f6f6;
}
.espace-membre nav ul li a:hover {
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.espace-membre nav ul li.active a {
  background: #222;
  border-color: #222;
  color: #fff;
  cursor: default;
}
.espace-membre nav ul li.page-deconnexion a {
  background: #fff;
  border: 1px solid #666;
}
.espace-membre nav ul li.page-deconnexion a:hover {
  border-color: #e6e6e6;
  background: #e6e6e6;
}
.espace-membre .section-espace-membre {
  background: #fff;
  padding: 16px 0;
}
.espace-membre .section-espace-membre footer {
  margin-top: 40px;
  text-align: right;
}

.section-espace-membre.compte aside {
  text-align: right;
}
.section-espace-membre.compte .modif-compte {
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  display: none;
}
.section-espace-membre.favoris .no-films {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.section-espace-membre.favoris .card {
  position: relative;
}
.section-espace-membre.favoris .card .remove-fav {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 5px;
  z-index: 9;
}
.section-espace-membre.favoris .card .remove-fav img {
  width: 16px;
  height: auto;
}
.section-espace-membre.favoris footer .bouton {
  margin-left: 20px;
}
.section-espace-membre.accreditation .coordonnees {
  border-left: 2px solid var(--wp--cinelatino--section-active-color-60);
  padding: 4px 0 4px 20px;
}
.section-espace-membre.accreditation section.verso-badge {
  background: var(--wp--cinelatino--section-active-color-10);
  padding: 8px 30px;
  margin: 45px 0;
  border-radius: 8px;
}

.fav-editions-precedentes {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}
.fav-editions-precedentes .films-fav-editions-precedentes {
  display: none;
}

.single-atelier .breadcrumb {
  margin: 0 auto 40px;
}
.single-atelier .secondary-details {
  margin-top: 40px;
}

.lieux-carte .carte {
  float: none;
  display: block;
  width: 100%;
}
.lieux-carte .carte img {
  width: 100%;
  max-width: none !important;
  margin: 20px 0 !important;
  float: none !important;
}
.lieux-carte p {
  margin-bottom: 5px;
}
.lieux-carte p > span:first-child {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  width: 28px;
  height: 28px;
  text-align: center;
  border-radius: 14px;
  margin-right: 7px;
  position: relative;
  top: -1px;
}

.single-filmcc .image-right-filmcc img {
  width: 100%;
  border-radius: 7px;
}
.single-filmcc #content {
  padding-bottom: 0;
}
.single-filmcc .logo-cc {
  float: right;
  width: 100px;
  margin-left: 20px;
}

.single-filmcd .logo-cd {
  display: none;
}

.header-filmcc-blank + section .synopsis .main-details .detail-section {
  display: none;
}
.header-filmcc-blank + section .synopsis .main-details, .header-filmcc-blank + section .synopsis .main-details a {
  color: inherit !important;
}

.header-filmcc-image .detail-section a {
  background: var(--wp--cinelatino--section-active-color-100);
}

.director-filmcc h2 {
  margin-top: 0;
}
.director-filmcc footer {
  text-align: right;
}
.director-filmcc .filmo h3 {
  font-size: 1.5em;
  margin: 35px 0 0;
}

.films-siblings-cc {
  margin-top: 0;
  background: var(--wp--cinelatino--section-active-color-70);
  color: #fff;
}

.single-filmcd #content {
  padding-bottom: 0;
}

.secondary-cc.more-cd img {
  max-width: 100%;
  margin-top: 40px;
}

.infos-protegees .wrap {
  padding: 30px 0;
}
.infos-protegees .wrap p:first-of-type {
  padding-left: 70px;
  margin-right: -10px;
  position: relative;
}
.infos-protegees .wrap p:first-of-type::before {
  content: "";
  height: 48px;
  width: 48px;
  position: absolute;
  opacity: 0.6;
  left: 0;
  top: 2px;
  border: 2px solid #000;
  border-radius: 50%;
  background-image: url("../images/pictos/black/lock.png");
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center center;
}

.glossary-cc-cd .table-wrapper {
  overflow-x: auto;
}
.glossary-cc-cd table {
  min-width: 800px;
  border: 0;
}
.glossary-cc-cd table thead {
  border-radius: 20px;
  overflow: hidden;
}
.glossary-cc-cd table thead th {
  background: #222;
  color: #fff;
  text-align: left;
  padding: 15px 15px;
  font-weight: 500;
  font-size: 1.125em;
}
.glossary-cc-cd table thead th:first-of-type {
  border-top-left-radius: 10px;
}
.glossary-cc-cd table thead th:last-of-type {
  border-top-right-radius: 10px;
}
.glossary-cc-cd table tbody td {
  padding: 10px 15px;
  border: 0;
}
.glossary-cc-cd table tbody td:first-of-type {
  border-left: 1px solid #eee;
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  line-height: 1.3;
}
.glossary-cc-cd table tbody td:last-of-type {
  border-right: 1px solid #eee;
  font-size: 0.9em;
}
.glossary-cc-cd table tbody a {
  text-decoration: none;
}
.glossary-cc-cd table tbody a:hover {
  text-decoration: underline;
}

.mixitup-filters-glossary {
  padding: 10px 0 40px;
}
.mixitup-filters-glossary fieldset {
  padding: 0;
  border: 0;
}

.glossary-container {
  overflow: hidden;
}

.guide-pro li {
  margin: 20px 0;
  padding: 20px 0;
}
.guide-pro li:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.guide-pro li .portrait {
  width: 80vw;
  height: 80vw;
  background-size: cover;
  background-position: center center;
}
.guide-pro li .coordonnees p {
  margin: 4px 0;
}
.guide-pro li .coordonnees .langues img {
  width: 18px;
  height: auto;
  margin-bottom: -4px;
}
.guide-pro li .coordonnees .langues img:not(:last-of-type) {
  margin-right: 6px;
}
.guide-pro li .activite {
  display: inline-block;
  background: #eee;
  text-transform: uppercase;
  padding: 1px 10px;
  border-radius: 7px;
}
.guide-pro li .nom {
  font-weight: 500;
}
.guide-pro li .organisme {
  font-weight: 500;
}
.guide-pro li .organisme span {
  font-weight: 400;
}
.guide-pro li .liens {
  font-size: 0.9em;
}
.guide-pro li .liens a {
  text-decoration: none;
}
.guide-pro li .liens a:hover img {
  opacity: 0.9;
}
.guide-pro li .liens img {
  width: 18px;
  margin-bottom: -4px;
  margin-right: 10px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.guide-pro li .description {
  font-size: 0.9em;
}

.liste-rdv-cd {
  margin: 20px 0;
  padding: 15px 30px;
  border-radius: 7px;
  background: #f6f6f6;
}
.liste-rdv-cd h3 {
  margin: 13px 0 10px;
  color: #333;
}
.liste-rdv-cd h4 {
  font-size: 1.125em;
  margin-bottom: 0;
  color: #333;
  margin-top: 30px;
}
.liste-rdv-cd li {
  margin: 6px 0;
}
.liste-rdv-cd li ul {
  display: inline-block;
  width: calc(100% - 100px);
  margin: 0;
}
.liste-rdv-cd li ul li {
  display: inline-block;
}
.liste-rdv-cd span {
  padding: 3px 7px;
  margin-right: 10px;
}
.liste-rdv-cd span.heure {
  background: #fff;
  border-radius: 4px;
  font-weight: 500;
}
.liste-rdv-cd.porteur .pros span {
  margin: 0 30px 0 10px;
}
.liste-rdv-cd.porteur span.heure {
  background: #444;
  color: #fff;
}

.espace-membre-notice {
  padding: 1px 20px;
  margin: 20px 0;
  border-left: 3px solid #ccc;
}
.espace-membre-notice p {
  margin: 2px 0;
}
.espace-membre-notice.success {
  border-left-color: #0c990c;
}
.espace-membre-notice.warning {
  border-left-color: #f4ae07;
}
.espace-membre-notice.error {
  border-left-color: #d50f0f;
}

.gfur-activation {
  padding-top: 40px;
}
.gfur-activation #signup-welcome .h3 {
  font-size: 1em;
  padding-left: 0;
}

.section-films + .section-ateliers {
  padding-top: 20px;
  margin-top: 60px;
  border-top: 1px solid #ddd;
}

.search-result {
  padding: 30px 0;
  border-radius: 0;
}
.search-result:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.search-result .entry-header {
  padding: 0;
}
.search-result .entry-content {
  padding: 0;
}
.search-result .entry-content p {
  margin: 5px 0;
}
.search-result .byline {
  margin: 4px 0 0;
}
.search-result .read-more:not(.no-excerpt) {
  margin-left: 20px;
}
.search-result h3 {
  margin: 8px 0 0;
}
.search-result h3 label {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  padding: 4px 14px;
  margin-right: 20px;
  position: relative;
  top: -5px;
  border-radius: 5px;
  background: #eee;
}
.search-result h3 .cinelatino-flag-switcher {
  margin-left: 20px;
  padding-top: 3px;
}
.search-result h3 .cinelatino-flag-switcher li {
  opacity: 0.8 !important;
}
.search-result h3 .cinelatino-flag-switcher li:hover {
  opacity: 1 !important;
}
.search-result img.post-thumb {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

body.single .category-sur-les-ecrans .entry-content .details-sortie {
  margin: 0 0 30px;
  font-weight: 500;
  list-style: none;
  padding: 0;
}

.agenda-pro {
  margin-top: 50px;
}
.agenda-pro section .wrap > ul > li {
  clear: both;
  margin: 30px 0;
  padding: 10px 0 30px;
}
.agenda-pro section .wrap > ul > li:not(:first-child) {
  border-top: 1px solid #ccc;
  padding-top: 50px;
}
.agenda-pro section .wrap > ul > li .infos-lieu {
  width: 40%;
  float: right;
  margin-left: 40px;
}
.agenda-pro section .wrap > ul > li .infos-lieu label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85em;
  font-weight: 600;
  display: block;
}
.agenda-pro section .wrap > ul > li .infos-lieu div {
  margin-bottom: 20px;
}
.agenda-pro section .wrap > ul > li .heure {
  display: inline-block;
  background: #fff;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 2px 10px;
  font-weight: 500;
}
.agenda-pro section .wrap > ul > li .content p {
  margin: 8px 0;
}
.agenda-pro section .wrap > ul > li .content ul {
  list-style: disc;
  padding-left: 16px;
}
.agenda-pro section .wrap > ul > li footer {
  text-align: right;
}
.page-id-22038 .entry-content img.cadre,
.page-id-22038 .entry-content img.alignleft,
.page-id-22038 .entry-content img.alignright,
.page-id-22038 .entry-content img {
  float: right;
  margin: 0 0 0 20px;
  border-radius: 4px;
  width: 200px;
  height: auto;
}
.page-id-22038 .entry-content hr {
  margin: 1.5em 0;
}

.inscription-newsletter div iframe {
  border-radius: 10px;
  overflow: hidden;
  max-width: 600px;
  margin-left: -45px;
}

.section-page:not(.fond-blanc) .inscription-newsletter div {
  margin-bottom: 30px;
}
.section-page:not(.fond-blanc) .inscription-newsletter div iframe {
  margin-left: 0;
}

.error404 .entry-content {
  padding: 0;
}
.error404 .entry-content p {
  margin: 0;
}

.contacts-structure li {
  line-height: 1.6;
  font-size: 0.9em;
  margin: 5px 0;
  padding-left: 35px;
  position: relative;
}
.contacts-structure li a {
  text-decoration: none;
}
.contacts-structure li.adresse * {
  margin: 0;
}
.contacts-structure li::after {
  content: "";
  opacity: 0.5;
  height: 17px;
  width: 17px;
  position: absolute;
  top: 2px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.contacts-structure li:hover::after {
  opacity: 0.8;
}
.contacts-structure li.telephone::after {
  background-image: url("../images/pictos/black/telephone.png");
}
.contacts-structure li.adresse::after {
  background-image: url("../images/pictos/black/marker.png");
}
.contacts-structure li.email::after {
  background-image: url("../images/pictos/black/mail.png");
}
.contacts-structure li.website::after {
  background-image: url("../images/pictos/black/website.png");
}

.single-structure main .cards {
  clear: both;
}
.single-structure main > h3:not(:first-of-type) {
  border-top: 1px solid #ccc;
  padding-top: 30px;
  margin-top: 50px;
}

.sitemap > div {
  margin-top: 50px;
}
.sitemap > div:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid #ccc;
}
.sitemap h2 {
  margin-bottom: 12px;
}
.sitemap h2::before {
  content: "— ";
}
.sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap a {
  text-decoration: none;
}
.sitemap a:not([href="#"]):hover {
  text-decoration: underline;
}
.sitemap a[href="#"] {
  text-decoration: none !important;
  cursor: text;
}

.sitemap-festival h2::before {
  color: var(--wp--cinelatino--section-festival-color-100);
}

.sitemap-programmation h2::before {
  color: var(--wp--cinelatino--section-programmation-color-100);
}

.sitemap-actions h2::before {
  color: var(--wp--cinelatino--section-actions-color-100);
}

.sitemap-pro h2::before {
  color: var(--wp--cinelatino--section-pro-color-100);
}

.sitemap-ressources h2::before {
  color: var(--wp--cinelatino--section-ressources-color-100);
}

.sitemap-nav > li {
  padding: 4px 0;
}
.sitemap-nav > li > a {
  font-weight: 500;
}
.sitemap-nav ul, .sitemap-nav li {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
}

.home-section-part .section-page {
  overflow-x: hidden;
}

.suivez-galerie h2 {
  margin-bottom: 10px;
}
.suivez-galerie .container > div:first-of-type {
  padding-bottom: 40px;
}

.programmation-agenda {
  position: relative;
  transition: 0.3s opacity;
  min-height: 80vh;
  display: flex;
  flex-wrap: wrap;
}
.programmation-agenda .mixitup-filters-edition,
.programmation-agenda .mixitup-header {
  order: 0;
  background: #fff;
  position: relative;
  z-index: 9;
}
.programmation-agenda .mixitup-filters-edition {
  padding-top: 30px;
  width: 100%;
  position: sticky !important;
  top: 50px;
}
.programmation-agenda .mixitup-filters-edition form {
  display: none;
  padding: 30px 10px;
  height: 100vh;
}
.programmation-agenda .mixitup-filters-edition fieldset {
  display: flex;
  width: 100%;
}
.programmation-agenda .mixitup-filters-edition fieldset input {
  margin-right: 10px;
}
.programmation-agenda .mixitup-filters-edition .picto.info img {
  width: 18px;
  height: auto;
  opacity: 0.6;
  margin-left: 10px;
  cursor: pointer;
  margin-bottom: -3px;
}
.programmation-agenda .mixitup-filters-edition .picto.info img:hover {
  opacity: 0.8;
}
.programmation-agenda .mixitup-filters-edition .controls-wrapper {
  display: block;
  padding-bottom: 20px;
  background: #fff;
}
.programmation-agenda .mixitup-filters-edition .button-controls-mobile .bouton {
  width: 100%;
  font-size: 1.25em;
  padding: 10px 20px;
}
.programmation-agenda .toggle-radio-container {
  display: flex;
  background: #eee;
  height: 44px;
  padding: 2px;
  border-radius: 22px;
  position: relative;
}
.programmation-agenda .toggle-radio-container::before {
  background: var(--wp--cinelatino--section-active-color-60);
  content: "";
  height: 40px;
  border-radius: inherit;
  z-index: 1;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.4s;
}
.programmation-agenda .toggle-radio-container[data-active-radio=films]::before {
  right: auto;
  margin-left: 0;
  width: 92px;
}
.programmation-agenda .toggle-radio-container[data-active-radio=agenda]::before {
  margin-left: 88px;
  width: 106px;
}
.programmation-agenda .toggle-radio-container .radio {
  border-radius: 16px;
}
.programmation-agenda .toggle-radio-container .radio.selected label {
  color: #fff;
  font-weight: 500;
}
.programmation-agenda .toggle-radio-container input {
  display: none;
}
.programmation-agenda .toggle-radio-container label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 4px 24px;
  cursor: pointer;
  transition: color 0.3s;
}
.programmation-agenda p.no-result {
  display: none;
  font-style: italic;
}
.programmation-agenda header + .items-wrapper header {
  border-top: 0;
}
.programmation-agenda .items-wrapper {
  width: 100%;
  order: 2;
}
.programmation-agenda .items-wrapper.jour {
  order: 1 !important;
}
.programmation-agenda .items-wrapper.jour header {
  position: sticky;
  top: 60px;
  background: #fff;
  z-index: 3;
  padding-bottom: 10px;
}
.programmation-agenda .items-wrapper header {
  padding-top: 15px;
  border-top: 1px solid #ddd;
  margin: 10px 0 15px;
}
.programmation-agenda .items-wrapper header h2 {
  margin: 10px 0;
}
.programmation-agenda .items-wrapper header p {
  margin: 0;
  font-style: italic;
}
.programmation-agenda .items-wrapper header .arrow-after {
  margin: 0 0 20px 10px;
  font-style: normal;
  float: right;
}
.programmation-agenda .items-wrapper.jour header {
  border: 0;
}
.programmation-agenda fieldset {
  display: inline-block;
  border: 0;
  padding-left: 0;
}
.programmation-agenda fieldset:not(.radio-group) {
  width: 100%;
}
.programmation-agenda fieldset.active-filter select {
  font-weight: 500;
  border-bottom: 2px solid var(--wp--cinelatino--section-active-color-70);
}
.programmation-agenda fieldset input:checked + label {
  font-weight: 500;
  border-bottom: 3px solid var(--wp--cinelatino--section-active-color-20);
}
.programmation-agenda fieldset select {
  max-width: none;
  position: relative;
  top: 2px;
  width: 100%;
}
.programmation-agenda .radio-group-label {
  display: none;
}
.programmation-agenda::after {
  transition: 0.3s all;
}
.programmation-agenda.loading > * {
  opacity: 0.3;
}
.programmation-agenda.loading::after {
  content: "";
  background-image: url("../images/progress.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 100px;
  margin-top: -25px;
  margin-left: -25px;
  animation: spinning 2s infinite;
  z-index: 9;
  opacity: 0.7;
}
.programmation-agenda .items-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  clear: both;
  overflow: hidden;
}
.programmation-agenda .items-container > div {
  transition: all 0.2s;
}
.programmation-agenda .items-container > div a {
  text-decoration: none;
}
.programmation-agenda .items-container > div aside {
  border-radius: 8px;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.programmation-agenda .items-container > div aside label {
  position: absolute;
  top: 9px;
  right: 9px;
}
.programmation-agenda .items-container > div aside a {
  display: block;
  width: 100%;
  height: 100%;
}
.programmation-agenda .items-container > div label {
  color: #fff !important;
  font-size: 0.9em;
  padding: 0px 10px;
  border-radius: 4px;
}
.programmation-agenda .items-container > div h3 {
  margin: 15px 0 0px;
}
.programmation-agenda .items-container > div h3 img.picto-seance {
  height: 18px;
  width: auto;
  margin: 0;
  margin-left: 10px;
}
.programmation-agenda .items-container > div h3 .add-film-to-fav.picto {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  line-height: 0;
  margin-left: 5px;
  top: x1px;
  opacity: 0.5;
}
.programmation-agenda .items-container > div h3 .add-film-to-fav.picto:hover {
  opacity: 0.6;
}
.programmation-agenda .items-container > div h3 .add-film-to-fav.picto.is-fav {
  opacity: 0.8;
}
.programmation-agenda .items-container > div h3 .add-film-to-fav.picto.is-fav:hover {
  opacity: 0.7;
}
.programmation-agenda .items-container > div h3 .picto {
  margin-left: 10px;
  position: relative;
  top: 2px;
}
.programmation-agenda .items-container > div p {
  margin: 0;
  font-size: 0.8em;
}
.programmation-agenda .items-container > div h3, .programmation-agenda .items-container > div p {
  transition: all 0.2s;
}
.programmation-agenda .items-container > div.films {
  width: 43%;
  margin-bottom: 20px;
}
.programmation-agenda .items-container > div.films aside {
  height: 23vw;
}
.programmation-agenda .items-container > div.films:hover > h3, .programmation-agenda .items-container > div.films:hover > p {
  margin-left: 4px;
  margin-right: -4px;
}
.programmation-agenda .items-container > div.agenda {
  transition: all 0.1s;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.programmation-agenda .items-container > div.agenda:hover {
  margin-left: 2px;
  margin-right: -2px;
}
.programmation-agenda .items-container > div.agenda.temps-fort {
  background: var(--wp--cinelatino--section-active-color-40);
  margin-top: 20px;
  padding: 10px;
  margin-bottom: 6px;
  border: 0;
  border-radius: 10px;
}
.programmation-agenda .items-container > div.agenda.temps-fort p:first-of-type {
  margin-top: 7px;
}
.programmation-agenda .items-container > div.agenda.temps-fort h3 {
  clear: both;
  margin-top: 17px;
  margin-left: 0;
}
.programmation-agenda .items-container > div.agenda h3 {
  font-size: 1.5em;
  margin: 5px 0 0 75px;
}
.programmation-agenda .items-container > div.agenda h3 .director {
  font-size: 0.5em;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-left: 10px;
  position: relative;
  bottom: 1px;
}
.programmation-agenda .items-container > div.agenda .date {
  display: none;
}
.programmation-agenda .items-container > div.agenda .hour {
  font-weight: 500;
}
.programmation-agenda .items-container > div.agenda aside {
  width: 60px;
  height: 37px;
  float: left;
  margin-right: 15px;
}
.programmation-agenda .items-container > div.agenda label {
  padding: 2px 10px;
  font-size: inherit;
  position: relative;
  top: -1px;
  margin-right: 7px;
}
.programmation-agenda .items-container > div.agenda p span:not(:last-of-type) {
  margin-right: 7px;
}

.section-events .agenda {
  margin: 0;
  padding: 30px 0;
}
.section-events .agenda:not(:first-of-type) {
  border-top: 1px solid #ddd;
}
.section-events .agenda aside {
  width: 85vw;
  height: 50vw;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.section-events .agenda p, .section-events .agenda h3 {
  margin: 0 0 8px 0;
}
.section-events .agenda span {
  color: #555;
}
.section-events .agenda span:not(:first-child) {
  margin-left: 10px;
}
@keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ligne-agenda {
  background: #111;
}
.ligne-agenda .container {
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
  align-items: center;
  padding-right: 50px;
}
.ligne-agenda header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}
.ligne-agenda header img {
  width: 40px;
  height: auto;
}
.ligne-agenda ul {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.ligne-agenda li {
  font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ligne-agenda li span {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 1.5em;
}
.ligne-agenda li span:nth-of-type(2) {
  font-size: 2.33em;
}
.ligne-agenda li a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 20px;
  transition: all 0.2s;
}
.ligne-agenda li a:hover {
  margin-top: -1px;
}
.ligne-agenda li.current {
  background-color: var(--wp--cinelatino--section-active-color-100);
}
.ligne-agenda ul {
  position: relative;
  padding: 0 80px 0 40px;
}
.ligne-agenda ul .slick-arrow {
  position: absolute;
  z-index: 9;
  transition: opacity 0.4s;
  color: transparent;
  background-color: transparent;
  border: 0;
  background-image: url("../images/pictos/white/arrow.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 24px;
  height: 100%;
}
.ligne-agenda ul .slick-arrow:hover {
  opacity: 1;
}
.ligne-agenda ul .slick-arrow.slick-next {
  right: 40px;
}
.ligne-agenda ul .slick-arrow.slick-prev {
  left: 10px;
  transform: rotate(180deg);
}
.ligne-agenda ul .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}

.actus-agenda {
  padding: 30px 0;
}
.actus-agenda .container {
  display: flex;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
.actus-agenda .container > div {
  width: 100%;
}
.actus-agenda h2 {
  margin-top: 0;
}
.actus-agenda .excerpt {
  display: inline-block !important;
}
.actus-agenda .actu-1 {
  order: 1;
  margin-bottom: 0;
}
.actus-agenda .cards {
  margin-bottom: 0;
  grid-template-columns: 1fr !important;
}
.actus-agenda .card.sortie-card,
.actus-agenda .horizontal-overview {
  width: 100%;
  min-height: 0;
  border-radius: 0;
}
.actus-agenda .card.sortie-card div.image,
.actus-agenda .horizontal-overview div.image {
  height: 50vw;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  overflow: hidden;
}
.actus-agenda .card.sortie-card .mobile-over-bottom,
.actus-agenda .horizontal-overview .mobile-over-bottom {
  padding: 1.5em 1em;
}
.actus-agenda .card.sortie-card .mobile-over-bottom p,
.actus-agenda .horizontal-overview .mobile-over-bottom p {
  margin-top: 3px;
  line-height: 2;
}
.actus-agenda .card.sortie-card .mobile-over-bottom a,
.actus-agenda .horizontal-overview .mobile-over-bottom a {
  text-decoration: none;
  color: #222;
}
.actus-agenda .agenda {
  order: 3;
  background-color: var(--wp--cinelatino--section-active-color-10);
  padding: 20px;
  border-radius: 20px;
}
.actus-agenda .agenda .seances-compact {
  background: transparent;
}
.actus-agenda .agenda .seances-compact .session-title {
  font-weight: 500;
  text-decoration: none;
}
.actus-agenda .agenda .seances-compact .hall {
  color: #777;
  font-size: 0.97em;
  margin-left: 10px;
}
.actus-agenda .agenda .seances-compact .comment {
  font-size: 0.9em;
}
.actus-agenda .agenda h2 {
  margin-bottom: 10px;
}
.actus-agenda .agenda footer {
  text-align: right;
}
.actus-agenda .actus-suite {
  order: 2;
  padding-bottom: 40px;
}
.actus-agenda .actus-suite .hidden-actus {
  display: none;
}
.actus-agenda .actus-suite ul {
  margin-bottom: 0;
}
.actus-agenda .actus-suite footer {
  display: none;
  text-align: right;
}

.invites-edition {
  margin-top: 30px;
}
.invites-edition .section {
  padding: 30px 0;
}
.invites-edition .section:nth-of-type(odd) {
  background: #f6f6f6;
}
.invites-edition .section:last-of-type {
  padding-bottom: 50px;
}
.invites-edition .section h2 a {
  text-decoration: none;
}
.invites-edition .section h2 a:hover {
  text-decoration: underline;
}

.liste-invites li {
  padding-right: 20px;
}
.liste-invites li h3 {
  margin: 14px 0 2px;
}
.liste-invites li p {
  font-size: 0.95em;
}
.liste-invites p a {
  text-decoration: none;
}
.liste-invites p a:hover {
  text-decoration: underline;
}

.boutons-header-section {
  text-align: left;
  margin: -10px 0 20px;
}
.boutons-header-section.no-image {
  margin: -30px 0 30px;
}
.boutons-header-section .bouton:first-of-type {
  margin-left: 0;
}

.wp-core-ui #login p.reset-pass-submit button.wp-generate-pw {
  background: #fff !important;
}

.films-pantalla {
  padding: 20px 0;
}
.films-pantalla ul {
  list-style: none;
  padding: 0;
}
.films-pantalla h2 {
  margin-bottom: 1em;
}
.films-pantalla > ul > li {
  margin: 0 0 40px;
  display: flex;
  align-items: top;
  gap: 20px;
}
.films-pantalla > ul > li > * {
  width: 50%;
}
.films-pantalla > ul > li .affiche img {
  margin: 0;
  width: 100%;
}
.films-pantalla > ul > li > div > * {
  margin: 5px 0;
}
.films-pantalla > ul > li p, .films-pantalla > ul > li .bouton {
  font-size: 0.85em;
}
.films-pantalla > ul > li h4 {
  font-size: 1.125em;
  margin-bottom: 10px;
}
.films-pantalla > ul > li .liens {
  margin-left: -10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.caption-copyright {
  opacity: 0.7 !important;
}

.fiche-overview {
  margin: 30px 0;
}
.fiche-overview aside {
  border-radius: 10px;
  height: 170px;
}
.fiche-overview h2 {
  margin: 15px 0;
  font-size: 2em;
}
.fiche-overview h3 {
  margin: 10px 0;
}
.fiche-overview .main-details {
  padding: 0;
  color: #444;
}
.fiche-overview .main-details li, .fiche-overview .main-details a {
  color: inherit;
}
.fiche-overview .sessions {
  margin-right: 7px;
}
.fiche-overview .sessions::before {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  margin-bottom: -7px;
  content: "";
  background-image: url("../images/pictos/black/schedule.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.fiche-overview .session img {
  margin: 0;
}
.fiche-overview .session .picto-seance {
  width: 21px;
  height: auto;
  margin-bottom: -3px;
}
.fiche-overview .session span {
  margin-right: 7px;
}
.fiche-overview .session span.day, .fiche-overview .session span.hour {
  font-weight: 500;
  color: var(--wp--cinelatino--section-active-color-100);
}
.fiche-overview.fiche-filmcc {
  border-radius: 5px;
}
.fiche-overview.fiche-filmcc aside {
  border-radius: 5px;
}
.fiche-overview.fiche-filmcd {
  border-radius: 5px;
}
.fiche-overview.fiche-filmcd aside {
  border-radius: 5px;
  height: 100vw;
}

.documents-pedagogiques .filtres {
  padding: 20px 30px 10px;
  border: 2px solid var(--wp--cinelatino--section-active-color-70);
  margin: 0 0 30px;
  border-radius: 10px;
}
.documents-pedagogiques .filtres form {
  display: flex;
  gap: 10px 20px;
}
.documents-pedagogiques .filtres form select {
  backround-color: #f6f6f6;
}
.documents-pedagogiques .filtres h3 {
  margin: 8px 10px 0 0;
}

.ressources-scolaires {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
.ressources-scolaires h3 {
  margin-bottom: 8px;
}
.ressources-scolaires h3 + p {
  margin-bottom: 10px;
}
.ressources-scolaires h4 {
  margin: 0;
  font-size: 1.125em;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  .bouton {
    font-size: 1em;
  }
  .bouton.small {
    font-size: 0.9em;
  }
  /*********************
  NAVIGATION STYLES
  	*********************/
  .header .logo {
    margin: 1em 1em 1em 1.75em;
  }
  .header .primary-nav-container {
    padding: 0.75em 1.5em 0.75em;
  }
  .secondary-nav,
  .pictos-header-mobile ul {
    columns: 2;
    gap: 20px;
  }
  .secondary-nav > li,
  .pictos-header-mobile ul > li {
    break-inside: avoid-column;
  }
  .header .mobile-buttons {
    margin: 8px 1em 0 1em;
  }
  .mobile-menu-primary-nav-wrapper {
    padding: 1em 1.5em;
  }
  .mobile-menu-secondary-nav-wrapper {
    padding: 1.25em 1.75em;
  }
  /*

  ********************
  POSTS & CONTENT STYLES
  	*********************/
  .category-sur-les-ecrans.single-post .thumb {
    max-width: 250px;
  }
  .section-vignettes h2,
  .vignettes-2-colonnes h2,
  .pantalla h2 {
    font-size: 2.5em;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette,
  .vignettes.vignettes-sur-4-colonnes .vignette {
    width: calc(50% - 20px);
  }
  .vignettes.vignettes-sur-3-colonnes .vignette aside,
  .vignettes.vignettes-sur-4-colonnes .vignette aside {
    height: 25vw;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-vertical aside,
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-vertical aside {
    height: 58vw;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-rond,
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond {
    width: calc(33% - 20px);
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-rond aside,
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond aside {
    width: 120px !important;
    height: 120px !important;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-vertical {
    width: calc(50% - 20px);
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-vertical aside {
    height: 60vw;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond {
    width: calc(50% - 20px);
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond aside {
    width: 180px !important;
    height: 180px !important;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette {
    width: calc(33% - 20px);
  }
  .vignettes.vignettes-sur-6-colonnes .vignette aside {
    height: 18vw;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-vertical aside {
    height: 37vw;
  }
  .guide-pro li {
    display: flex;
    flex-wrap: wrap;
  }
  .guide-pro li .portrait {
    width: 160px;
    height: 160px;
    float: left;
    border-radius: 7px;
  }
  .guide-pro li .coordonnees {
    padding: 0 0 0 30px;
  }
  .guide-pro li .coordonnees :first-child {
    margin-top: 0;
  }
  .guide-pro li .description {
    clear: left;
  }
  .cards.type-filmcd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2em;
    row-gap: 2.5em;
  }
  .cards.type-filmcd .card.title-card > div {
    height: 50vw;
  }
  .search-result img.post-thumb {
    height: 40px;
    margin-left: 20px;
    width: auto;
    float: right;
  }
  .thumb-sur-les-ecrans {
    max-width: 50% !important;
  }
  .programmation-agenda .items-container > div p {
    font-size: 0.9em;
  }
  .programmation-agenda .items-container > div.films {
    width: 28%;
  }
  .programmation-agenda .items-container > div.films aside {
    height: 16vw;
  }
  .programmation-agenda .items-container > div.agenda {
    padding: 20px 0;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort h3 {
    padding-top: 15px;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort p:last-child {
    margin: 0;
  }
  .programmation-agenda .items-container > div.agenda h3 {
    margin: 5px 0 0 110px;
  }
  .programmation-agenda .items-container > div.agenda h3 .director {
    font-size: 0.6em;
  }
  .programmation-agenda .items-container > div.agenda p {
    margin-left: 110px;
  }
  .programmation-agenda .items-container > div.agenda aside {
    width: 90px;
    height: 50px;
    margin-right: 20px;
  }
  .section-events .agenda aside {
    width: 100px;
    height: 60px;
    margin: 0 15px 0 0;
    float: left;
  }
  .section-events .agenda p, .section-events .agenda h3 {
    margin: 0 0 8px 120px;
  }
  .single-filmcd .logo-cd {
    display: block;
    float: right;
    width: 200px;
    margin-left: 20px;
    margin-top: 20px;
  }
  .films-pantalla > ul > li {
    align-items: center;
    gap: 40px;
  }
  .films-pantalla > ul > li > aside {
    width: 160px;
  }
  .films-pantalla > ul > li > div {
    width: calc(100% - 200px);
  }
  .films-pantalla > ul > li h3 {
    margin-bottom: 10px;
  }
  .fiche-overview aside {
    height: 250px;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  	*********************/
  h1 {
    font-size: 4em;
  }
  .section-page {
    padding: 3em 0;
  }
  .ligne-boutons {
    padding: 30px 0;
  }
  .cover-container + #inner-content {
    padding-top: 1.5em;
  }
  .diapo-accueil .diapo-content .diapo-boutons {
    margin-bottom: 10px;
  }
  .diapo-accueil .diapo-content .diapo-boutons li {
    margin-bottom: 20px;
  }
  .title-switcher-container h1, .title-switcher-container h2 {
    max-width: calc(100% - 180px);
  }
  .archive.category-blog-mediapart article:not(:first-of-type) {
    border-top: 1px solid var(--wp--cinelatino--section-active-color-40);
  }
  /*


  ********************
  LAYOUT & GRID STYLES
  	*********************/
  /*


  ********************
  HEADER STYLES
  	*********************/
  .cover-container {
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: end;
    flex-wrap: wrap;
  }
  .cover-container > *:last-child {
    padding-bottom: 1em !important;
  }
  .cover-container .cover-image {
    height: 70vh;
  }
  .cover-container .cover-mobile-over {
    height: auto;
    padding-bottom: 0;
  }
  .cover-container .cover-mobile-bottom {
    position: relative;
    z-index: 3;
  }
  .fiche-film.template-wrapped .cover-container.small-cover-container .cover-mobile-over {
    padding: 1em 1.5em 0.5em;
  }
  .main-details {
    color: #fff;
  }
  .main-details a {
    color: #fff;
  }
  .main-details li.detail-premiere,
  .main-details li.detail-scolaire a {
    background-color: #fff;
    padding: 1px 10px;
    border: none;
  }
  .synopsis,
  .main-content,
  .caracs-scolaires {
    font-size: 1.125em;
  }
  .video-container {
    width: 650px;
    height: 370px;
  }
  .picto-play::before {
    width: 64px;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
  }
  .courts-programme article {
    grid-template-columns: 250px auto;
  }
  /*


  ********************
  SIDEBARS & ASIDES
  	*********************/
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
  .diapo-accueil .diapo-images .slick-next {
    right: 3em;
  }
  .diapo-accueil .diapo-content .wrap > * {
    max-width: 550px;
  }
  .diapo-accueil .diapo-content p {
    font-size: 1.1em;
  }
  .diapo-accueil .diapo-content .diapo-boutons li {
    margin: 0 30px 20px 0;
  }
  section.home-section h2 {
    font-size: 3em;
  }
  .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2em;
    row-gap: 2.5em;
  }
  .card.title-card > div {
    height: 30vw;
  }
  .films-siblings-cd .card.title-card > div {
    height: 30vw;
  }
  .cards .sortie-card {
    width: 45vw;
  }
  .diapo-sorties-home .slick-arrow {
    top: 52vw;
  }
  .cards.type-filmcd {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cards.type-filmcd .card.title-card > div {
    height: 40vw;
  }
  .cards.grosplan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    row-gap: 1em;
  }
  .cards.grosplan-grid .card.content-card .mobile-over-bottom {
    height: auto;
  }
  .cards.grosplan-grid .card:first-of-type {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .cards.grosplan-grid .card:not(:first-of-type) div.image {
    height: 25vw;
  }
  .cards.grosplan-grid .card:nth-of-type(4),
  .cards.grosplan-grid .card:nth-of-type(5) {
    display: block;
    order: 5;
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cards.grosplan-grid .card:nth-of-type(6) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 6;
  }
  .cards.grosplan-grid .card:nth-of-type(4) {
    grid-row-start: 3;
  }
  .cards.grosplan-grid .card:nth-of-type(5) {
    grid-row-start: 4;
  }
  .accueil-festival-grid {
    gap: 20px;
  }
  .accueil-festival-grid .card:first-of-type {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .accueil-festival-grid .card:first-of-type div.image {
    height: 35vw;
  }
  label.label-image {
    font-size: 0.8em;
  }
  label.label-image i.picto {
    margin-bottom: -2px;
  }
  .liste-invites {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .fiche-personnalite .portrait-rond {
    margin: -10px -10px 20px 20px;
  }
  #content.template-wrapped {
    background: var(--wp--cinelatino--section-active-color-10);
  }
  #content.template-wrapped #inner-content {
    border-radius: 10px;
    overflow: hidden;
  }
  #content.template-wrapped .cover-container.small-cover-container {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
  }
  #content.template-wrapped main {
    background: #fff;
    padding: 3em 3em;
    border-radius: 10px;
  }
  #content.template-wrapped main header {
    padding: 0 0 25px;
  }
  #content.template-wrapped main header > :first-child {
    margin-top: 0;
  }
  .cover-container.small-cover-container {
    height: 40vw;
  }
  .cover-container.small-cover-container .cover-mobile-bottom {
    font-size: 1em;
    padding: 0 3em 0 !important;
  }
  .no-image-film-header .cover-mobile-bottom {
    font-size: 1em;
    padding: 0 3em 0 !important;
  }
  .no-image-film-header .cover-mobile-over {
    padding: 1em 3em 0 !important;
  }
  .suivez-galerie .container {
    display: flex;
    gap: 80px;
  }
  .suivez-galerie .container > div:first-of-type {
    position: relative;
    min-width: 320px;
    z-index: 3;
  }
  .suivez-galerie .container > div:nth-of-type(2) {
    width: calc(100% - 500px);
  }
  .suivez-galerie .inline-gallery .slick-prev {
    left: -50px;
  }
  .suivez-galerie .inline-gallery .slick-next {
    right: -50px;
  }
  .suivez-galerie .inline-gallery li {
    padding-right: 30px;
  }
  .suivez-galerie .inline-gallery img {
    height: 300px;
  }
  .horizontal-overview {
    display: grid;
    grid-template-columns: 35% 65%;
  }
  .horizontal-overview aside {
    height: 100%;
  }
  .archive-sur-ecrans .horizontal-overview {
    grid-template-columns: 150px auto;
  }
  .archive-actus article > div {
    padding: 1.5em 2em;
  }
  .archive-actus article.mediapart > div {
    padding: 1em 2em;
  }
  .vignettes {
    gap: 30px;
  }
  .vignettes.vignettes-portrait .vignette {
    width: 160px;
    font-size: 1em;
  }
  .vignettes.vignettes-portrait .vignette aside {
    height: 140px;
    width: 140px;
  }
  .vignettes .vignette aside {
    transition: 0.3s all;
  }
  .vignettes .vignette:hover aside {
    opacity: 0.95;
  }
  .ligne-logos {
    padding: 15px 0;
  }
  .ligne-logos ul {
    column-gap: 10px;
    row-gap: 20px;
  }
  .ligne-logos ul li {
    width: 110px;
    height: 50px;
  }
  .ligne-logos ul li a, .ligne-logos ul li img {
    max-height: 50px;
  }
  .login-page {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }
  .login-page .register-form,
  .login-page .login-form {
    width: auto;
    flex-basis: auto;
  }
  .lieux-carte {
    position: relative;
    margin-bottom: 60px;
  }
  .lieux-carte .carte {
    position: sticky;
    top: 80px;
    float: right;
    width: 40%;
  }
  .lieux-carte h3 + p,
  .lieux-carte p + p {
    margin-right: 45%;
  }
  .lieux-carte p {
    margin-bottom: 5px;
  }
  .lieux-carte p > span:first-child {
    display: inline-block;
    font-size: 0.9em;
    font-weight: 600;
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 14px;
    margin-right: 7px;
    position: relative;
    top: -1px;
  }
  .single-filmcc .image-right-filmcc {
    margin-bottom: 30px;
    max-width: 300px;
    float: right;
    margin-left: 70px;
  }
  .single-filmcc section {
    clear: both;
  }
  .single-filmcc .synopsis .main-details {
    margin-bottom: -5px;
  }
  .single-filmcc .cover-mobile-bottom .main-details {
    font-size: 1.125em;
  }
  .director-filmcc .portrait-rond {
    width: 140px;
    height: 140px;
  }
  .single-personnalite h1 {
    margin-bottom: 0;
  }
  .single-personnalite .portrait-rond + header {
    padding-bottom: 0 !important;
  }
  .secondary-cd {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mixitup-filters-glossary {
    display: flex;
  }
  .mixitup-filters-glossary fieldset {
    padding: 20px 0 20px 30px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette {
    width: calc(50% - 20px);
  }
  .vignettes.vignettes-sur-2-colonnes .vignette aside {
    height: 280px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-vertical aside {
    height: 60vw;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond {
    width: calc(50% - 20px);
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond aside {
    width: 260px !important;
    height: 260px !important;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-vertical aside {
    height: 60vw;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-rond aside {
    width: 160px !important;
    height: 160px !important;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond {
    width: calc(24% - 20px);
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond aside {
    width: 130px !important;
    height: 130px !important;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette {
    width: calc(33% - 20px);
  }
  .vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-vertical aside {
    height: 40vw;
  }
  .search-result img.post-thumb {
    height: 80px;
  }
  .agenda-pro section ul li .heure br {
    display: none;
  }
  .agenda-pro section ul li .infos-lieu {
    width: 240px;
  }
  .agenda-pro section ul li footer {
    text-align: left;
    padding-top: 10px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer .footer-header h2 img {
    margin-right: 30px;
  }
  .footer .footer-cols {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    column-gap: 5%;
  }
  .footer .footer-cols ul:not(.archives) {
    display: block;
  }
  .footer .footer-cols ul.archives {
    max-width: 250px;
  }
  .ligne-agenda .container {
    column-gap: 10px;
  }
  .ligne-agenda header {
    padding-left: 40px;
  }
  .actus-agenda .container {
    align-items: flex-start;
  }
  .actus-agenda .container .actu-1 {
    padding: 20px 0 0;
    width: 60%;
  }
  .actus-agenda .container .actu-1 .cards .card.sortie-card div.image {
    height: 35vw;
  }
  .actus-agenda .container .agenda {
    order: 2;
    margin-top: 20px;
    width: 35%;
    margin-left: 4.9%;
  }
  .actus-agenda .container .actus-suite {
    order: 3;
    padding-bottom: 0px;
  }
  .actus-agenda .container .actus-suite ul {
    display: flex;
    flex-wrap: wrap;
  }
  .actus-agenda .container .actus-suite ul li {
    padding-bottom: 30px;
  }
  .actus-agenda .container .actus-suite .horizontal-overview {
    width: 100%;
  }
  .actus-agenda .container .actus-suite div.image {
    height: 170px;
  }
  .actus-agenda .container .actus-suite div.image + div {
    padding-left: 40px;
    align-self: center;
  }
  .programmation-agenda .mixitup-filters-edition {
    padding-top: 0px;
    position: relative !important;
    top: 0;
  }
  .programmation-agenda .mixitup-filters-edition form {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    padding: 20px 0 0;
    height: auto;
  }
  .programmation-agenda .mixitup-filters-edition fieldset {
    display: flex;
    width: auto !important;
    padding: 0;
  }
  .programmation-agenda .mixitup-filters-edition fieldset.select-wrapper {
    padding-top: 10px;
  }
  .programmation-agenda .mixitup-filters-edition fieldset select {
    width: 300px;
  }
  .programmation-agenda .mixitup-filters-edition .controls-wrapper {
    display: block;
    padding-bottom: 20px;
    background: #fff;
  }
  .programmation-agenda .mixitup-filters-edition .button-controls-mobile {
    display: none !important;
  }
  .programmation-agenda header + .items-wrapper header {
    border-top: 1px solid #ccc;
  }
  .programmation-agenda .items-wrapper header {
    padding-top: 30px;
    margin: 20px 0 10px;
  }
  .programmation-agenda .items-wrapper header .arrow-after {
    margin-left: 20px;
    float: none;
  }
  .programmation-agenda .items-container > div p {
    font-size: 0.9em;
  }
  .programmation-agenda .items-container > div.films {
    width: 21.5%;
  }
  .programmation-agenda .items-container > div.films aside {
    height: 12vw;
  }
  .programmation-agenda .items-container > div.agenda {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort {
    padding: 16px 20px;
    font-size: 115%;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort p:first-of-type {
    margin-top: 7px;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort aside {
    width: 130px;
    height: 80px;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort h3 {
    clear: none;
    margin-top: 0 !important;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort h3, .programmation-agenda .items-container > div.agenda.temps-fort p {
    margin-left: 160px !important;
  }
  .programmation-agenda .items-container > div.agenda h3 {
    font-size: 1.5em;
    margin: 5px 0 2px 126px !important;
  }
  .programmation-agenda .items-container > div.agenda h3 span.director {
    margin-left: 20px;
  }
  .programmation-agenda .items-container > div.agenda p {
    margin-left: 126px;
  }
  .programmation-agenda .items-container > div.agenda p label, .programmation-agenda .items-container > div.agenda p span:not(:last-of-type) {
    margin-right: 20px;
  }
  .programmation-agenda .items-container > div.agenda aside {
    width: 100px;
    height: 60px;
    margin-right: 26px;
  }
  .section-events .agenda aside {
    width: 120px;
    height: 70px;
    margin: 0 15px 0 0;
    float: left;
  }
  .section-events .agenda p, .section-events .agenda h3 {
    margin: 0 0 8px 150px;
  }
  .section-events .agenda .arrow-after {
    margin-left: 20px;
  }
  .boutons-header-section {
    padding-bottom: 20px;
  }
  .single-filmcc .logo-cc {
    width: 200px;
    margin-top: -15px;
    margin-left: 40px;
  }
  .single-filmcc .header-filmcc-blank + section {
    clear: none;
  }
  .single-filmcc .header-filmcc-blank + section .logo-cc {
    margin-top: -30px;
    width: 200px;
  }
  .fiche-overview {
    grid-template-columns: 30% 70%;
  }
  .fiche-overview.fiche-filmcc aside {
    height: 175px !important;
  }
  .fiche-overview.fiche-filmcc > div {
    padding: 1.5em 2em 0.5em;
  }
  .fiche-overview > div {
    padding: 0.5em 2em;
  }
  .fiche-overview.fiche-filmcd {
    grid-template-columns: 15% 85%;
  }
  .fiche-overview.fiche-filmcd aside {
    height: 18vw !important;
  }
  .fiche-overview.fiche-filmcd > div {
    padding: 1.5em 2em 0.5em;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  /*********************
  GENERAL STYLES
    *********************/
  .wrap {
    width: 990px;
  }
  .small-wrap,
  .template-wrapped .wrap {
    width: 900px;
  }
  .desktop-1030 {
    display: block;
  }
  h2 {
    font-size: 2.5em;
  }
  h2.underline, h2.titre-section {
    font-size: 2.75em;
  }
  #container {
    overflow-x: initial;
  }
  /*
  }


  ********************
  HEADER STYLES
    *********************/
  .header {
    background: #fff;
    border-bottom: 3px solid var(--wp--cinelatino--section-active-color-70);
  }
  .header #inner-header {
    margin: 0 auto;
    position: relative;
    /* end .nav */
  }
  .header #inner-header .mobile-buttons {
    display: none !important;
  }
  .header #inner-header .logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 14%;
    margin-left: 10px;
    text-align: center;
    margin: 1.5em 0 0 0px;
  }
  .header #inner-header .logo img {
    width: 120px;
  }
  .header #inner-header .primary-nav-container {
    position: relative;
    margin-left: 14%;
    border: none;
    padding: 0;
  }
  .header #inner-header .primary-nav-container .primary-nav {
    gap: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .header #inner-header .primary-nav-container .primary-nav li {
    border-right: 2px solid #fff;
    padding: 0;
    height: 54px;
    max-width: 140px;
    transition: 0.3s all;
  }
  .header #inner-header .primary-nav-container .primary-nav li .label-section-mobile {
    display: none;
  }
  .header #inner-header .primary-nav-container .primary-nav li .label-section-desktop {
    display: inline;
  }
  .header #inner-header .primary-nav-container .primary-nav li a {
    display: inline-block;
    padding: 12px 18px 14px;
    line-height: 1.333em;
    height: 100%;
    width: 100%;
    text-align: center;
    color: inherit;
    display: flex;
    align-items: center;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
  }
  .header #inner-header .primary-nav-container .primary-nav li:not(.active-section) a {
    color: #999;
  }
  .header #inner-header .primary-nav-container .primary-nav li:not(.active-section) a:hover {
    color: #444;
  }
  .header #inner-header .primary-nav-container .primary-nav li.active-section {
    background: var(--wp--cinelatino--section-active-color-30);
  }
  .header #inner-header .primary-nav-container .primary-nav li.active-section:hover {
    background: var(--wp--cinelatino--section-active-color-50);
  }
  .header #inner-header .primary-nav-container .primary-nav li.section-festival:not(.active-section):hover a {
    border-bottom-color: var(--wp--cinelatino--section-festival-color-50);
  }
  .header #inner-header .primary-nav-container .primary-nav li.section-programmation:not(.active-section):hover a {
    border-bottom-color: var(--wp--cinelatino--section-programmation-color-50);
  }
  .header #inner-header .primary-nav-container .primary-nav li.section-pro:not(.active-section):hover a {
    border-bottom-color: var(--wp--cinelatino--section-pro-color-50);
  }
  .header #inner-header .primary-nav-container .primary-nav li.section-actions:not(.active-section):hover a {
    border-bottom-color: var(--wp--cinelatino--section-actions-color-50);
  }
  .header #inner-header .primary-nav-container .primary-nav li.section-ressources:not(.active-section):hover a {
    border-bottom-color: var(--wp--cinelatino--section-ressources-color-50);
  }
  .header #inner-header .secondary-nav-container {
    display: block !important;
    margin-left: 14%;
    width: 82%;
  }
  .header #inner-header .secondary-nav-container .secondary-nav {
    columns: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    border: 0;
    padding-top: 0;
    text-align: right;
    /* end .menu ul li */
  }
  .header #inner-header .secondary-nav-container .secondary-nav li a {
    text-align: left;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li {
    padding-bottom: 0;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li:first-of-type {
    margin-left: -1.1em;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li.menu-item-11118 a {
    background-color: var(--wp--cinelatino--section-active-color-10);
    border-radius: 5px;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li.menu-item-11118 a:hover {
    background-color: var(--wp--cinelatino--section-active-color-30);
    color: inherit;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li:hover > a, .header #inner-header .secondary-nav-container .secondary-nav > li.current-menu-item a {
    color: var(--wp--cinelatino--section-active-color-100);
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li.menu-item-has-children {
    padding-right: 13px;
    position: relative;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 5px;
    height: 94%;
    width: 8px;
    opacity: 0.7;
    background-image: url("../images/down-filled-triangular-arrow-black.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .header #inner-header .secondary-nav-container .secondary-nav > li.menu-item-has-children:hover::after {
    opacity: 1;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li {
    display: inline-block;
    position: relative;
    /* showing sub-menus */
  }
  .header #inner-header .secondary-nav-container .secondary-nav li a {
    text-decoration: none;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    border-bottom: 0;
    font-size: 0.9em;
    padding: 0.25em 0.75em;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children {
    text-align: left;
    margin-top: 0;
    margin-left: -10px;
    padding: 10px 0 0;
    background: #fff;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 8999;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li {
    padding: 0;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li a,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li a {
    padding: 6px 10px 6px 20px;
    border-right: 0;
    display: block;
    width: 220px;
    font-size: 0.8em;
    opacity: 0.7;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li a:hover,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li a:hover {
    opacity: 1;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li ul,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li ul {
    top: 0px;
    left: calc(100% + 20px);
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li ul li,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li ul li {
    font-size: 0.9em;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li ul li:first-of-type,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li ul li:first-of-type {
    padding-top: 4px;
  }
  .header #inner-header .secondary-nav-container .secondary-nav li ul.sub-menu li ul li a::before,
  .header #inner-header .secondary-nav-container .secondary-nav li ul.children li ul li a::before {
    content: "> ";
  }
  .header #inner-header .secondary-nav-container .secondary-nav li:hover > ul {
    top: auto;
    visibility: visible;
    opacity: 1;
    display: block !important;
  }
  .header #inner-header .secondary-nav {
    margin: 12px 0 18px;
  }
  .header #inner-header .pictos-header {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    margin: 0 10px 0 0;
    padding: 0;
    height: 54px;
    align-items: center;
    width: auto !important;
  }
  .header #inner-header .pictos-header h2 {
    display: none;
  }
  .header #inner-header .pictos-header ul {
    text-align: right;
    margin: 0;
    display: inline-block;
  }
  .header #inner-header .pictos-header > ul > li img {
    opacity: 0.9;
  }
  .header #inner-header .pictos-header > ul:hover > li img {
    opacity: 0.5;
  }
  .header #inner-header .pictos-header > ul:hover > li:hover img {
    opacity: 1;
  }
  .header #inner-header .pictos-header li {
    margin: 0 0px 0 0;
    display: inline-block;
  }
  .header #inner-header .pictos-header a {
    background: transparent;
    padding: 0 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .header #inner-header .pictos-header a:hover {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .header #inner-header .pictos-header a img {
    position: static;
    width: 18px;
    transition: opacity 0.3s;
  }
  .header #inner-header .pictos-header span {
    display: none;
  }
  .header.scrolled-header #inner-header {
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
  }
  .header.scrolled-header #inner-header .logo {
    position: static;
    order: 1;
    margin-left: 0;
    margin-right: 0;
  }
  .header.scrolled-header #inner-header .logo img {
    height: 34px;
    width: auto;
  }
  .header.scrolled-header #inner-header .primary-nav-container {
    order: 2;
    margin: 0;
    display: block;
    width: auto;
  }
  .header.scrolled-header #inner-header .primary-nav-container .primary-nav li {
    height: 50px;
  }
  .header.scrolled-header #inner-header .primary-nav-container .primary-nav li a {
    padding: 12px 24px 12px;
  }
  .header.scrolled-header #inner-header .primary-nav-container .primary-nav li:not(.active-section) {
    display: none;
  }
  .header.scrolled-header #inner-header .secondary-nav-container {
    width: auto;
    order: 3;
    margin: 0;
  }
  .header.scrolled-header #inner-header .secondary-nav-container .secondary-nav {
    margin: 0;
    margin-top: -9px;
    margin-left: 20px;
    column-gap: 10px;
    row-gap: 0;
    font-size: 16px;
  }
  .header.scrolled-header #inner-header .secondary-nav-container .secondary-nav > li:first-of-type {
    margin-left: 0;
  }
  .header.scrolled-header #inner-header .secondary-nav-container .secondary-nav::before, .header.scrolled-header #inner-header .secondary-nav-container .secondary-nav::after {
    display: none;
  }
  .header.scrolled-header #inner-header .pictos-header {
    display: none;
  }
  /*

  ********************
  NAVIGATION STYLES
    *********************/
  .diapo-accueil {
    height: 82vh;
  }
  .diapo-accueil.diapo-accueil-festival {
    height: 72vh;
  }
  .diapo-accueil .diapo-images .slick-next {
    bottom: 146px;
  }
  .diapo-accueil .diapo-content {
    bottom: 50px;
  }
  .diapo-accueil .diapo-content h1 {
    font-size: 4.5em;
  }
  .diapo-accueil .diapo-content .wrap > * {
    max-width: 630px;
  }
  .fiche-film.template-full .main-details {
    font-size: 1.125em;
  }
  .fiche-film.template-wrapped .cover-container.small-cover-container .cover-mobile-over,
  .fiche-film.template-wrapped .no-image-film-header .cover-mobile-over {
    padding: 1em 3em 0.5em;
  }
  .courts-programme article {
    grid-template-columns: 150px auto;
  }
  .courts-programme article > div {
    padding: 1.5em 2em;
  }
  .courts-programme article > div .arrow-after {
    display: none;
  }
  h1 .add-film-to-fav {
    margin-left: 24px;
    height: 36px;
  }
  .columns-container {
    display: flex;
    gap: 5%;
  }
  .columns-container .left-column {
    width: 60% !important;
    order: 1 !important;
  }
  .columns-container .right-column {
    width: 35% !important;
    order: 2 !important;
  }
  .fiche-film .columns-container .left-column .synopsis {
    margin-top: 3em;
  }
  .video-container {
    width: 600px;
    height: 340px;
  }
  .video-container.picto-play::before {
    width: 96px;
    height: 96px;
    margin-left: -48px;
    margin-top: -48px;
  }
  .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2.5em;
    row-gap: 2em;
  }
  .cards.type-filmcd {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .cards.type-filmcd .card.title-card > div {
    height: 280px;
  }
  .card.title-card > div {
    height: 220px;
  }
  .films-siblings-cd .card.title-card > div {
    height: 320px;
  }
  .liste-invites .portrait-rond {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }
  .fiche-personnalite .portrait-rond {
    width: 140px;
    height: 140px;
    min-width: 140px;
    float: left;
    margin: 0 40px 20px 0;
  }
  .cover-container.small-cover-container, .cover-container.small-cover-container .cover-image {
    height: 400px;
  }
  .cover-container.small-cover-container .cover-mobile-bottom {
    font-size: 1em;
    padding: 0 3em 0 !important;
  }
  .no-image-film-header .cover-mobile-bottom {
    font-size: 1em;
    padding: 0 3em 0 !important;
  }
  .cards.grosplan-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: 220px 220px auto auto;
    gap: 2em;
  }
  .section-actions .cards.grosplan-grid {
    grid-template-rows: 220px 220px;
    margin-bottom: 40px;
  }
  .cards.grosplan-grid li.card.content-card {
    width: 100% !important;
  }
  .cards.grosplan-grid li.card.content-card div.image {
    height: 100% !important;
    filter: grayscale(0.1);
    transition: filter 0.2s;
  }
  .cards.grosplan-grid li.card.content-card:not(.sortie-card) div.image::after {
    opacity: 0.3;
  }
  .cards.grosplan-grid li.card.content-card .mobile-over-bottom {
    padding: 1.5em 1.5em 1em;
    transition: padding 0.2s;
  }
  .cards.grosplan-grid li.card.content-card .mobile-over-bottom a.arrow-after::after {
    background-image: url("../images/pictos/white/arrow.png");
  }
  .cards.grosplan-grid li.card.content-card:not(.sortie-card):hover div.image {
    filter: grayscale(0);
  }
  .cards.grosplan-grid li.card.content-card:not(.sortie-card):hover .arrow-after::after,
  .cards.grosplan-grid li.card.content-card:not(.sortie-card):hover a .h3::after {
    right: -5px;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card {
    width: 370px !important;
    height: 750px;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card .diapo-sorties-home .slick-arrow {
    top: 420px;
  }
  .cards.grosplan-grid .card:not(:first-of-type) .excerpt {
    display: none;
  }
  .cards.grosplan-grid .card:not(:first-of-type) a .h3::after {
    display: inline-block;
    content: "";
    position: relative;
    right: 0;
    margin: 2px 0 -3px 20px;
    height: 24px;
    width: 32px;
    background-image: url("../images/pictos/white/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s;
  }
  .cards.grosplan-grid .card:not(:first-of-type) .mobile-over-bottom {
    padding-bottom: 0.5em !important;
  }
  .cards.grosplan-grid .card:not(:first-of-type).card:nth-of-type(4) a .h3::after, .cards.grosplan-grid .card:not(:first-of-type).card:nth-of-type(5) a .h3::after {
    display: none;
  }
  .cards.grosplan-grid .card:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .cards.grosplan-grid .card:nth-of-type(1) .h3 {
    font-size: 2em;
  }
  .cards.grosplan-grid .card:nth-of-type(2),
  .cards.grosplan-grid .card:nth-of-type(3) {
    grid-column-start: 3;
    grid-column-end: 3;
  }
  .cards.grosplan-grid .card:nth-of-type(2) {
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .cards.grosplan-grid .card:nth-of-type(3) {
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cards.grosplan-grid .card:nth-of-type(4) {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .cards.grosplan-grid .card:nth-of-type(4) .mobile-over-bottom {
    padding-bottom: 1em !important;
  }
  .cards.grosplan-grid .card:nth-of-type(5) {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .cards.grosplan-grid .card:nth-of-type(6) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 5;
  }
  .card.content-card:not(.sortie-card) {
    position: relative;
  }
  .card.content-card:not(.sortie-card) .mobile-over-bottom {
    position: absolute;
    bottom: 0;
    z-index: 5;
    color: #fff;
  }
  .card.content-card:not(.sortie-card) .mobile-over-bottom a {
    color: #fff;
  }
  .card.content-card:not(.sortie-card):nth-of-type(4) .excerpt.mobile-excerpt, .card.content-card:not(.sortie-card):nth-of-type(5) .excerpt.mobile-excerpt {
    display: none;
  }
  .card.content-card:not(.sortie-card):nth-of-type(4) .excerpt.desktop-excerpt, .card.content-card:not(.sortie-card):nth-of-type(5) .excerpt.desktop-excerpt {
    display: block;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card div.image {
    height: 55% !important;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card a.arrow-after::after {
    background-image: url("../images/pictos/black/arrow.png");
  }
  .cards.grosplan-grid li.card.content-card.sortie-card .mobile-over-bottom {
    padding: 1.5em 0.5em;
  }
  .suivez-galerie .container {
    gap: 100px;
  }
  .suivez-galerie .inline-gallery .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .suivez-galerie .inline-gallery .slick-prev {
    left: -50px;
  }
  .suivez-galerie .inline-gallery .slick-next {
    right: -50px;
  }
  .suivez-galerie .inline-gallery li {
    padding-right: 30px;
  }
  .suivez-galerie .inline-gallery img {
    height: 400px;
  }
  .horizontal-overview {
    display: grid;
    grid-template-columns: 26% 74%;
  }
  .template-wrapped .horizontal-overview {
    grid-template-columns: 33% 67%;
  }
  .horizontal-overview aside {
    height: 100%;
  }
  .horizontal-overview > div {
    padding: 2em;
  }
  .archive-sur-ecrans .horizontal-overview {
    grid-template-columns: 150px auto;
  }
  .ligne-logos ul {
    column-gap: 30px;
    row-gap: 30px;
  }
  .ligne-logos ul li {
    width: 130px;
    height: 60px;
  }
  .ligne-logos ul li a, .ligne-logos ul li img {
    max-height: 60px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond aside {
    width: 380px;
    height: 380px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond h3 {
    font-size: 1.5em;
  }
  .vignettes.vignettes-sur-3-colonnes .wrapper {
    row-gap: 50px;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette {
    width: calc(33% - 18px);
  }
  .vignettes.vignettes-sur-3-colonnes .vignette aside {
    height: 180px;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-rond aside {
    width: 200px;
    height: 200px;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-rond h3 {
    font-size: 1.4em;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-vertical aside {
    height: 420px;
  }
  .vignettes.vignettes-sur-4-colonnes .wrapper {
    row-gap: 50px;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette {
    width: calc(25% - 25px);
  }
  .vignettes.vignettes-sur-4-colonnes .vignette aside {
    height: 140px;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette p {
    font-size: 0.9em;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-vertical aside {
    height: 320px;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond {
    width: calc(25% - 25px);
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond aside {
    width: 150px !important;
    height: 150px !important;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond h3 {
    font-size: 1.25em;
  }
  .vignettes.vignettes-sur-4-colonnes .bouton {
    padding: 2px 14px;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette {
    width: calc(16.5% - 25px);
  }
  .vignettes.vignettes-sur-6-colonnes .vignette aside {
    height: 95px;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette p {
    font-size: 0.9em;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-rond aside {
    width: 120px !important;
    height: 120px !important;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-vertical aside {
    height: 200px;
  }
  .vignettes.vignettes-sur-6-colonnes .bouton {
    padding: 2px 14px;
  }
  .archive.category-blog-mediapart article .read-more {
    float: right;
  }
  .header-filmcc-image + #inner-content {
    padding: 1.5em 0;
  }
  .secondary-details {
    margin-top: 3em;
  }
  .secondary-cc {
    padding: 3em 0;
  }
  .secondary-cc .wrap {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 70px;
  }
  .secondary-cc h2 {
    font-size: 1.75em;
  }
  .secondary-cc h2:not(:first-child) {
    margin-top: 2em;
  }
  .secondary-cc .secondary-details dl {
    border-radius: 7px;
  }
  .secondary-cc .secondary-details {
    font-size: 0.9em;
  }
  .secondary-cc.more-cd .wrap {
    grid-template-columns: 50% 45%;
  }
  .secondary-cd dl {
    margin: 0 30px 0 5px;
  }
  .glossary-cc-cd table tbody td:first-of-type {
    border-left: 1px solid #eee;
    font-family: "Bebas Neue", "Roboto Condensed", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    line-height: 1.3;
  }
  .glossary-cc-cd table tbody td:last-of-type {
    border-right: 1px solid #eee;
    font-size: 0.9em;
  }
  .guide-pro:not(.readmore-vignette) li .coordonnees {
    width: calc(50% - 160px);
  }
  .guide-pro:not(.readmore-vignette) li .description {
    width: 50%;
    padding: 0 0 0 30px;
    font-size: 1em;
  }
  .guide-pro.readmore-vignette li {
    padding: 0;
  }
  .guide-pro.readmore-vignette li .portrait {
    width: 120px;
    height: 120px;
  }
  .guide-pro.readmore-vignette li .coordonnees {
    display: flex;
    padding-left: 0;
    width: calc(100% - 130px);
  }
  .guide-pro.readmore-vignette li .coordonnees > div {
    width: 50%;
    padding-left: 40px;
  }
  .guide-pro.readmore-vignette li .description {
    font-size: 1em;
    padding-top: 30px;
  }
  .agenda-pro section ul li .heure {
    float: left;
  }
  .agenda-pro section ul li .content {
    margin-left: 180px;
  }
  .agenda-pro section ul li h3 {
    margin-top: 6px;
  }
  .agenda-pro section ul li .infos-lieu {
    padding: 5px 0 14px;
  }
  .inscription-newsletter.lang-both {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .inscription-newsletter.lang-both div iframe {
    width: 500px;
  }
  .contacts-structure ul {
    background: #f6f6f6;
    border-radius: 20px;
    width: 410px;
    padding: 20px;
    margin: 20px 0 50px;
  }
  .contacts-structure ul.has-contacts {
    float: right;
    margin: 0 0 30px 30px;
  }
  .contacts-structure > div {
    line-height: 1.6;
  }
  .contacts-structure > div p {
    margin: 10px 0;
  }
  .ligne-agenda {
    margin-top: -1px;
  }
  .ligne-agenda .container {
    padding-right: 0;
    width: 990px;
    margin: 0 auto;
  }
  .ligne-agenda .container header {
    padding-left: 0;
  }
  .ligne-agenda ul .slick-slide {
    width: auto !important;
  }
  .ligne-agenda ul .slick-list {
    width: 100% !important;
  }
  .ligne-agenda ul .slick-track {
    width: auto !important;
    display: flex;
    justify-content: space-between;
  }
  .programmation-agenda .items-wrapper header {
    position: sticky;
    top: 35px !important;
    background: #fff;
    z-index: 3;
    padding-bottom: 10px;
  }
  .programmation-agenda .items-container > div.films {
    width: 22.5%;
  }
  .programmation-agenda .items-container > div.films aside {
    height: 145px;
  }
  .programmation-agenda .items-container > div.agenda.temps-fort {
    margin-bottom: 12px;
  }
  .section-events .agenda {
    clear: both;
  }
  .section-events .agenda aside {
    width: 150px;
    height: 90px;
    margin: 0 15px 30px 0;
    float: left;
  }
  .section-events .agenda p, .section-events .agenda h3 {
    margin: 0 0 8px 190px;
  }
  .actus-agenda {
    padding: 40px 0;
  }
  .actus-agenda .container .agenda {
    padding: 30px;
    margin-top: 0;
  }
  .actus-agenda .container .actu-1 .cards .card.sortie-card div.image {
    height: 350px;
  }
  .actus-agenda .container .actus-suite .actu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .actus-agenda .container .actus-suite .actu-wrapper .horizontal-overview {
    grid-template-columns: 36% 64%;
    align-items: center;
  }
  .actus-agenda .container .actus-suite .actu-wrapper .horizontal-overview div.image {
    height: 120px;
  }
  .actus-agenda .container .actus-suite .actu-wrapper .mobile-over-bottom {
    padding: 10px 20px;
  }
  .actus-agenda .container .actus-suite .actu-wrapper p {
    font-size: 0.95em;
  }
  .grille-videos {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    column-gap: 20px;
  }
  .grille-videos > p {
    width: 300px;
  }
  .grille-videos > p > iframe {
    width: 300px;
    height: 180px;
  }
  .grille-videos.wrapped {
    grid-template-columns: 260px 260px 260px;
  }
  .grille-videos.wrapped > p {
    width: 260px;
  }
  .grille-videos.wrapped > p > iframe {
    width: 260px;
    height: 160px;
  }
  .vignettes .vignette.type-vignette-rond h3 {
    font-size: 1.25em;
  }
  body.archive.tax-section .header #inner-header .secondary-nav-container .secondary-nav > li.current-menu-item a {
    color: inherit !important;
  }
  .login-page {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
  }
  .login-page .login-form {
    width: 350px;
    flex-grow: 1;
    order: 3;
  }
  .login-page .register-form {
    order: 2;
  }
  .header-programmation-complete .cover-mobile-over .breadcrumb {
    width: 100%;
  }
  .header-programmation-complete .cover-mobile-over h1 {
    width: 70%;
  }
  .header-programmation-complete .cover-mobile-over .boutons {
    width: 29%;
    text-align: right;
    padding-bottom: 36px;
  }
  .films-pantalla > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .films-pantalla > ul > li {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .films-pantalla > ul > li > aside {
    width: 145px;
  }
  .films-pantalla > ul > li > div {
    width: calc(100% - 166px);
  }
  .fiche-overview {
    grid-template-columns: 24% 76%;
  }
  .fiche-overview > div {
    padding: 0.5em 2em 1em;
  }
  .fiche-overview.fiche-filmcc aside {
    height: 150px !important;
  }
  .fiche-overview.fiche-filmcd {
    grid-template-columns: 15% 85%;
  }
  .fiche-overview.fiche-filmcd aside {
    height: 200px !important;
  }
}
@media only screen and (min-width: 1110px) {
  .header #inner-header .logo {
    width: 16%;
    margin-left: 10px;
  }
  .header #inner-header .logo img {
    width: 150px;
  }
  .header #inner-header .primary-nav-container,
  .header #inner-header .secondary-nav-container {
    margin-left: 19%;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  .wrap {
    width: 1200px;
  }
  .small-wrap,
  .template-wrapped .wrap {
    width: 1000px;
  }
  .header #inner-header .logo {
    margin-left: 1.75em;
    margin-top: 20px;
  }
  .header #inner-header .logo img {
    width: 180px;
  }
  .header #inner-header .primary-nav-container {
    margin-left: 21%;
    overflow-x: hidden;
  }
  .header #inner-header .primary-nav-container::after {
    position: absolute;
    top: 0;
    right: -2000px;
    width: 2000px;
    height: 100%;
    content: "";
    background: inherit;
  }
  .header #inner-header .primary-nav-container .primary-nav li {
    max-width: 154px;
  }
  .header #inner-header .primary-nav-container .primary-nav li a {
    padding: 12px 20px 14px;
    letter-spacing: 0.1;
  }
  .header #inner-header .secondary-nav-container {
    margin-left: 21%;
  }
  .header #inner-header .pictos-header {
    margin-right: 20px;
  }
  .header #inner-header .pictos-header li {
    margin: 0 6px 0 0;
  }
  .header.scrolled-header #inner-header {
    padding: 0;
    justify-content: flex-start;
    align-items: center;
  }
  .header.scrolled-header #inner-header .logo {
    margin: 0 40px 0 1em;
  }
  .header.scrolled-header #inner-header .secondary-nav-container .secondary-nav {
    margin-left: 35px;
  }
  .cover-container.small-cover-container, .cover-container.small-cover-container .cover-image {
    height: 450px;
  }
  .diapo-accueil .diapo-content h1 {
    font-size: 4.5em;
  }
  .cards.type-filmcd .card.title-card > div {
    height: 330px;
  }
  .card.title-card > div {
    height: 250px;
  }
  .films-siblings-cd .card.title-card > div {
    height: 300px;
  }
  .liste-invites {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cards.grosplan-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    grid-template-rows: 240px 240px auto auto;
  }
  .cards.grosplan-grid .sortie-card {
    height: 850px;
    grid-column-start: 3;
    grid-column-end: 4;
  }
  .cards.grosplan-grid .card:nth-of-type(4) .excerpt,
  .cards.grosplan-grid .card:nth-of-type(5) .excerpt {
    display: block;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card {
    width: 420px !important;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card .diapo-sorties-home .slick-arrow {
    top: 500px;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card {
    height: 850px;
  }
  .cards.grosplan-grid li.card.content-card.sortie-card div.image {
    height: 59% !important;
  }
  .horizontal-overview {
    grid-template-columns: 21% 79%;
  }
  .template-wrapped .horizontal-overview {
    grid-template-columns: 28% 72%;
  }
  .archive-sur-ecrans .horizontal-overview {
    grid-template-columns: 150px auto;
  }
  .liste-sorties {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .ligne-logos ul {
    column-gap: 40px;
    row-gap: 40px;
  }
  .ligne-logos ul li a, .ligne-logos ul li img {
    max-height: 70px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette aside {
    height: 350px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-vertical aside {
    height: 800px;
  }
  .vignettes.vignettes-sur-2-colonnes .vignette.type-vignette-rond aside {
    width: 450px !important;
    height: 450px !important;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette aside {
    height: 210px;
  }
  .vignettes.vignettes-sur-3-colonnes .vignette.type-vignette-vertical aside {
    height: 520px;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette aside {
    height: 160px;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-vertical aside {
    height: 380px;
  }
  .vignettes.vignettes-sur-4-colonnes .vignette.type-vignette-rond aside {
    width: 170px !important;
    height: 170px !important;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette aside {
    height: 110px;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-vertical aside {
    height: 246px;
  }
  .vignettes.vignettes-sur-6-colonnes .vignette.type-vignette-rond aside {
    width: 130px !important;
    height: 130px !important;
  }
  .inscription-newsletter.lang-both div iframe {
    width: 600px;
  }
  .ligne-agenda .container {
    width: 1200px;
  }
  .ligne-agenda header img {
    width: 48px;
  }
  .ligne-agenda ul li span {
    font-size: 2em;
  }
  .ligne-agenda ul li span:nth-of-type(2) {
    font-size: 3em;
  }
  .ligne-agenda ul li a {
    padding: 20px 35px;
  }
  .courts-programme article {
    grid-template-columns: 220px auto;
    margin-bottom: 40px;
  }
  .courts-programme article > div {
    padding: 1em 2em;
  }
  .courts-programme article > div .arrow-after {
    display: inline-block;
  }
  .actus-agenda .container .actu-1 .cards .card.sortie-card div.image {
    height: 420px;
  }
  .actus-agenda .container .actus-suite .actu-wrapper .horizontal-overview {
    grid-template-columns: 26% 74%;
  }
  .actus-agenda .container .actus-suite .actu-wrapper .horizontal-overview div.image {
    height: 100px;
  }
  .actus-agenda .container .actus-suite .actu-wrapper .mobile-over-bottom {
    padding: 10px 15px 10px 25px;
  }
  .actus-agenda .container .actus-suite .actu-wrapper p {
    font-size: 0.95em;
  }
  .grille-videos {
    grid-template-columns: 390px 390px 390px;
  }
  .grille-videos > p {
    width: 390px;
  }
  .grille-videos > p > iframe {
    width: 390px;
    height: 235px;
  }
  .grille-videos.wrapped {
    grid-template-columns: 290px 290px 290px;
  }
  .grille-videos.wrapped > p {
    width: 290px;
  }
  .grille-videos.wrapped > p > iframe {
    width: 290px;
    height: 180px;
  }
  .login-page {
    gap: 100px;
  }
  .single-filmcd .logo-cd {
    width: 250px;
    margin-left: 40px;
    margin-top: 10px;
  }
  .films-pantalla > ul > li {
    gap: 30px;
  }
  .films-pantalla > ul > li > aside {
    width: 155px;
  }
  .films-pantalla > ul > li > div {
    width: calc(100% - 185px);
  }
  .fiche-overview.fiche-filmcd {
    grid-template-columns: 12% 88%;
  }
  .fiche-overview.fiche-filmcd aside {
    height: 200px !important;
  }
}
@media only screen and (min-width: 1500px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Very Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  .header #inner-header .secondary-nav-container .secondary-nav li a {
    font-size: 1em;
  }
  .header #inner-header .primary-nav-container .primary-nav li {
    max-width: 164px;
  }
  .header #inner-header .primary-nav-container .primary-nav li a {
    padding: 12px 28px 14px;
  }
  .template-wrapped .wrap {
    width: 1200px;
  }
  .secondary-cd {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
