.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
}

.fc-rtl .fc-popover .fc-header {
  flex-direction: row-reverse;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "mirror" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-mirror-skeleton {
  z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to timegrid/daygrid */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}

.fc-event,
.fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}

/* Event Dragging
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-dragging.fc-selected {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.fc-event.fc-dragging:not(.fc-selected) {
  opacity: 0.75;
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}

/* Icons
--------------------------------------------------------------------------------------------------
from https://feathericons.com/ and built with IcoMoon
*/
@font-face {
  font-family: "fcicons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "fcicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fc-icon-chevron-left:before {
  content: "\e900";
}

.fc-icon-chevron-right:before {
  content: "\e901";
}

.fc-icon-chevrons-left:before {
  content: "\e902";
}

.fc-icon-chevrons-right:before {
  content: "\e903";
}

.fc-icon-minus-square:before {
  content: "\e904";
}

.fc-icon-plus-square:before {
  content: "\e905";
}

.fc-icon-x:before {
  content: "\e906";
}

.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}

/* Buttons
--------------------------------------------------------------------------------------------------
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
*/
/* reset */
.fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

.fc-button {
  -webkit-appearance: button;
}

.fc-button:not(:disabled) {
  cursor: pointer;
}

.fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* theme */
.fc-button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}

.fc-button:hover {
  color: #212529;
  text-decoration: none;
}

.fc-button:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.fc-button:disabled {
  opacity: 0.65;
}

/* "primary" coloring */
.fc-button-primary {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}

.fc-button-primary:hover {
  color: #fff;
  background-color: #1e2b37;
  border-color: #1a252f;
}

.fc-button-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

.fc-button-primary:disabled {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}

.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  background-color: #1a252f;
  border-color: #151e27;
}

.fc-button-primary:not(:disabled):active:focus,
.fc-button-primary:not(:disabled).fc-button-active:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

/* icons within buttons */
.fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.fc-button-group > .fc-button {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.fc-button-group > .fc-button:hover {
  z-index: 1;
}

.fc-button-group > .fc-button:focus,
.fc-button-group > .fc-button:active,
.fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}

.fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}

.fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}

/* inner content */
.fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75em;
}

.fc-toolbar h2 {
  font-size: 1.75em;
  margin: 0;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-view-container {
  position: relative;
}

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

@media print {
  .fc {
    max-width: 100% !important;
  }
  /* Global Event Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc-event {
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
  .fc-event .fc-resizer {
    display: none;
  }
  /* Table & Day-Row Restyling
  --------------------------------------------------------------------------------------------------*/
  .fc th,
  .fc td,
  .fc hr,
  .fc thead,
  .fc tbody,
  .fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }
  /* kill the overlaid, absolutely-positioned components */
  /* common... */
  .fc-bg,
  .fc-bgevent-skeleton,
  .fc-highlight-skeleton,
  .fc-mirror-skeleton,
  .fc-bgevent-container,
  .fc-business-container,
  .fc-highlight-container,
  .fc-mirror-container {
    display: none;
  }
  /* don't force a min-height on rows (for DayGrid) */
  .fc tbody .fc-row {
    height: auto !important;
    /* undo height that JS set in distributeHeight */
    min-height: 0 !important;
    /* undo the min-height from each view's specific stylesheet */
  }
  .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    padding-bottom: 0 !important;
    /* use a more border-friendly method for this... */
  }
  .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }
  .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
       making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }
  /* Undo month-view event limiting. Display all events and hide the "more" links
  --------------------------------------------------------------------------------------------------*/
  .fc-more-cell,
  .fc-more {
    display: none !important;
  }
  .fc tr.fc-limited {
    display: table-row !important;
  }
  .fc td.fc-limited {
    display: table-cell !important;
  }
  .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }
  /* TimeGrid Restyling
  --------------------------------------------------------------------------------------------------*/
  /* undo the min-height 100% trick used to fill the container's height */
  .fc-time-grid {
    min-height: 0 !important;
  }
  /* don't display the side axis at all ("all-day" and time cells) */
  .fc-timeGrid-view .fc-axis {
    display: none;
  }
  /* don't display the horizontal lines */
  .fc-slats,
  .fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    display: none !important;
    /* important overrides inline declaration */
  }
  /* let the container that holds the events be naturally positioned and create real height */
  .fc-time-grid .fc-content-skeleton {
    position: static;
  }
  /* in case there are no events, we still want some height */
  .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }
  /* kill the horizontal spacing made by the event container. event margins will be done below */
  .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }
  /* TimeGrid *Event* Restyling
  --------------------------------------------------------------------------------------------------*/
  /* naturally position events, vertically stacking them */
  .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }
  /* for events that continue to a future day, give the bottom border back */
  .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }
  /* indicate the event continues via "..." text */
  .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }
  /* for events that are continuations from previous days, give the top border back */
  .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }
  /* indicate the event is a continuation via "..." text */
  .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }
  /* time */
  /* undo a previous declaration and let the time text span to a second line */
  .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }
  /* hide the the time that is normally displayed... */
  .fc-time-grid .fc-event .fc-time span {
    display: none;
  }
  /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
  .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }
  /* Vertical Scroller & Containers
  --------------------------------------------------------------------------------------------------*/
  /* kill the scrollbars and allow natural height */
  .fc-scroller,
  .fc-day-grid-container,
  .fc-time-grid-container {
    /* */
    overflow: visible !important;
    height: auto !important;
  }
  /* kill the horizontal border/padding used to compensate for scrollbars */
  .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }
  /* Button Controls
  --------------------------------------------------------------------------------------------------*/
  .fc-button-group,
  .fc button {
    display: none;
    /* don't display any button-related controls */
  }
}
/* Scroller
--------------------------------------------------------------------------------------------------*/
.fc-scroller-clip {
  overflow: hidden;
  /* for clipping scrollbars */
  position: relative;
  /* so things like scrollfollowers can attach to this */
}

/* supresses rendering of native scrollbars */
/* on .fc-scroller */
.fc-no-scrollbars {
  background: rgba(255, 255, 255, 0);
  /* hack for dynamic DOM nodes (in Chrome OSX at least) */
}

.fc-no-scrollbars::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.fc-scroller-canvas {
  position: relative;
  /* origin for bg */
  box-sizing: border-box;
  /* so that padding (for gutter) will be part of height */
  min-height: 100%;
}

.fc-scroller-canvas > .fc-bg {
  z-index: 1;
  /* make default? */
}

.fc-scroller-canvas > .fc-content {
  z-index: 2;
  /* make default? */
  position: relative;
  /* origin for inner content */
  border-style: solid;
  border-width: 0;
}

.fc-scroller-canvas.fc-gutter-left > .fc-content {
  border-left-width: 1px;
  margin-left: -1px;
}

.fc-scroller-canvas.fc-gutter-right > .fc-content {
  border-right-width: 1px;
  margin-right: -1px;
}

.fc-scroller-canvas.fc-gutter-top > .fc-content {
  border-top-width: 1px;
  margin-top: -1px;
}

/* content is responsible for bottom border */
/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-rtl .fc-timeline {
  direction: rtl;
}

.fc-scrolled .fc-head .fc-scroller {
  z-index: 2;
  /* so drop shadow will go above body panes */
}

.fc-timeline.fc-scrolled .fc-head .fc-scroller {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.075);
}

.fc-timeline .fc-body .fc-scroller {
  z-index: 1;
}

/*
on most tables that expand to the edges, kill the outer border,
because the container elements take care of it.
example tables:
.fc-scroller-canvas .fc-content table
.fc-scroller-canvas .fc-bg .fc-slats table
*/
.fc-timeline .fc-scroller-canvas > div > table,
.fc-timeline .fc-scroller-canvas > div > div > table {
  border-style: hidden;
}

/*
for resource rows (in both the spreadsheet and timeline areas),
undo previous rule in order to always show last border.
*/
.fc-timeline .fc-scroller-canvas > .fc-content > .fc-rows > table {
  border-bottom-style: none;
}

/* Table Cell Common
--------------------------------------------------------------------------------------------------*/
.fc-timeline th,
.fc-timeline td {
  white-space: nowrap;
}

.fc-timeline .fc-cell-content {
  overflow: hidden;
}

.fc-timeline .fc-cell-text {
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
}

/*
Cells at the start of a week
TODO: figure out better styling

.fc-ltr .fc-timeline .fc-em-cell div {
  border-left: 3px solid #eee;
  height: 100%;
}
.fc-rtl .fc-timeline .fc-em-cell {
  border-right-width: 3px;
}
*/
/* head */
.fc-timeline th {
  vertical-align: middle;
}

.fc-timeline .fc-head .fc-cell-content {
  padding-top: 3px;
  padding-bottom: 3px;
}

.fc-timeline .fc-head .fc-time-area .fc-cell-content {
  overflow: visible;
}

/* Time Area
--------------------------------------------------------------------------------------------------*/
.fc-time-area col {
  min-width: 2.2em;
  /* detected by JS */
}

/* head */
.fc-ltr .fc-time-area .fc-chrono th {
  text-align: left;
}

.fc-rtl .fc-time-area .fc-chrono th {
  text-align: right;
}

/* body slats (vertical lines) */
.fc-time-area .fc-slats {
  /* fc-bg is responsible for a lot of this now! */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-time-area .fc-slats table {
  height: 100%;
}

.fc-time-area .fc-slats .fc-minor {
  border-style: dotted;
}

.fc-time-area .fc-slats td {
  border-width: 0 1px;
  /* need to do this. sometimes -1 margin wouldn't hide the dotted */
}

.fc-ltr .fc-time-area .fc-slats td {
  border-right-width: 0;
}

.fc-rtl .fc-time-area .fc-slats td {
  border-left-width: 0;
}

/* body content containers
   can be within rows or directly within the pane's content
*/
.fc-time-area .fc-bgevent-container,
.fc-time-area .fc-highlight-container {
  position: absolute;
  z-index: 2;
  /* only for directly within pane. not for row. overridden later */
  top: 0;
  bottom: 0;
  width: 0;
}

.fc-ltr .fc-time-area .fc-mirror-container,
.fc-ltr .fc-time-area .fc-bgevent-container,
.fc-ltr .fc-time-area .fc-highlight-container {
  left: 0;
}

.fc-rtl .fc-time-area .fc-mirror-container,
.fc-rtl .fc-time-area .fc-bgevent-container,
.fc-rtl .fc-time-area .fc-highlight-container {
  right: 0;
}

.fc-time-area .fc-bgevent,
.fc-time-area .fc-highlight {
  position: absolute;
  top: 0;
  bottom: 0;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-timeline .fc-now-indicator {
  /* both the arrow and the line */
  z-index: 3;
  /* one above scroller's fc-content */
  top: 0;
}

.fc-time-area .fc-now-indicator-arrow {
  margin: 0 -6px;
  /* 5, then one more to counteract scroller's negative margins */
  /* triangle pointing down... */
  border-width: 6px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
}

.fc-time-area .fc-now-indicator-line {
  margin: 0 -1px;
  /* counteract scroller's negative margins */
  bottom: 0;
  border-left-width: 1px;
}

/* Event Container
--------------------------------------------------------------------------------------------------*/
.fc-time-area .fc-event-container {
  position: relative;
  z-index: 2;
  /* above bgevent and highlight */
  width: 0;
  /* for event positioning. will end up on correct side based on dir */
}

.fc-time-area .fc-mirror-container {
  /* also an fc-event-container */
  position: absolute;
  z-index: 3;
  top: 0;
}

.fc-time-area .fc-event-container {
  padding-bottom: 8px;
  top: -1px;
}

.fc-time-area tr:first-child .fc-event-container {
  top: 0;
}

.fc-no-overlap .fc-time-area .fc-event-container {
  padding-bottom: 0;
  top: 0;
}

/* Time Grid Events
--------------------------------------------------------------------------------------------------*/
.fc-timeline-event {
  position: absolute;
  display: flex;
  border-radius: 0;
  padding: 2px 1px;
  margin-bottom: 1px;
}

.fc-no-overlap .fc-timeline-event {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.fc-ltr .fc-timeline-event {
  flex-direction: row;
  margin-right: 1px;
}

.fc-rtl .fc-timeline-event {
  margin-left: 1px;
}

.fc-timeline-event .fc-time-wrap {
  flex-shrink: 0;
  min-width: 0;
}

.fc-timeline-event .fc-title-wrap {
  flex-grow: 1;
  min-width: 0;
}

.fc-timeline-event .fc-time,
.fc-timeline-event .fc-title {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  padding: 0 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}

.fc-timeline-event .fc-time {
  font-weight: bold;
}

.fc-timeline-event.fc-not-start:before,
.fc-timeline-event.fc-not-end:after {
  content: "";
  align-self: center;
  width: 0;
  height: 0;
  margin: 0 1px;
  border: 5px solid #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.5;
}

.fc-ltr .fc-timeline-event.fc-not-start:before,
.fc-rtl .fc-timeline-event.fc-not-end:after {
  border-left: 0;
}

.fc-ltr .fc-timeline-event.fc-not-end:after,
.fc-rtl .fc-timeline-event.fc-not-start:before {
  border-right: 0;
}

/* Divider between resources and time area
--------------------------------------------------------------------------------------------------*/
.fc-timeline .fc-divider {
  width: 3px;
  border-style: double;
  /* overcome neighboring borders */
}

.fc-timeline .fc-head > tr > .fc-divider {
  border-bottom: 0;
}

.fc-timeline .fc-body > tr > .fc-divider {
  border-top: 0;
}

/* Resource Area
--------------------------------------------------------------------------------------------------*/
.fc-resource-area {
  width: 30%;
}

.fc-resource-area col {
  width: 40%;
  min-width: 70px;
  /* will be read by JS */
}

.fc-resource-area col.fc-main-col {
  width: 60%;
  /* make the first column in a nested setup bigger */
}

.fc-flat .fc-expander-space {
  /* fc-flat is opposite of fc-nested */
  display: none;
}

.fc-ltr .fc-resource-area tr > * {
  text-align: left;
}

.fc-rtl .fc-resource-area tr > * {
  text-align: right;
}

.fc-resource-area .fc-cell-content {
  padding-left: 4px;
  padding-right: 4px;
}

/* head */
.fc-resource-area .fc-super th {
  text-align: center;
}

.fc-resource-area th > div {
  position: relative;
}

.fc-resource-area th .fc-cell-content {
  position: relative;
  z-index: 1;
}

.fc-resource-area th .fc-col-resizer {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 5px;
}

.fc-timeline .fc-col-resizer {
  cursor: col-resize;
}

.fc-ltr .fc-resource-area th .fc-col-resizer {
  right: -3px;
}

.fc-rtl .fc-resource-area th .fc-col-resizer {
  left: -3px;
}

/* body */
.fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  padding-top: 8px;
  padding-bottom: 8px;
}

.fc-no-overlap .fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  padding-top: 6px;
  padding-bottom: 6px;
}

.fc-resource-area .fc-icon {
  /* the expander and spacers before the expander */
  display: inline-block;
  width: 1em;
  /* ensure constant width, esp for empty icons */
  text-align: center;
}

.fc-resource-area .fc-expander {
  cursor: pointer;
  opacity: 0.65;
}

/* body resource rows */
.fc-time-area .fc-rows {
  position: relative;
  z-index: 3;
}

.fc-time-area .fc-rows td > div {
  position: relative;
}

.fc-time-area .fc-rows .fc-bgevent-container,
.fc-time-area .fc-rows .fc-highlight-container {
  z-index: 1;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

@font-face {
  font-family: "e";
  src: url("../fonts/euclid-flex-bold-normal.woff2") format("woff2"), url("../fonts/euclid-flex-bold-normal.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "e";
  src: url("../fonts/euclid-flex-regular-normal.woff2") format("woff2"), url("../fonts/euclid-flex-regular-normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "e";
  src: url("../fonts/euclid-flex-light-normal.woff2") format("woff2"), url("../fonts/euclid-flex-light-normal.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
* {
  -webkit-touch-callout: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.editor-post-title__block .editor-post-title__input {
  font-size: 80px;
}

h1, .title_1, .editor-post-title__block .editor-post-title__input {
  font: 700 72px/0.972 "e";
}

h2, .title-2, .faq-single h1 {
  font: 700 42px/1.048 "e";
}

h3, .title-3 {
  font: 700 28px/1.143 "e";
}

h4, .title-4 {
  font: 200 28px/1.286 "e";
}

h5, .title-5 {
  font: 400 18px/1.111 "e";
}

h6, .title-6 {
  font: 700 16px/1.25 "e";
}

body, .editor-writing-flow {
  font: 400 16px/1.5 "e";
}

.link {
  font: 400 14px/1.286 "e";
  position: relative;
  padding-bottom: 5px;
  padding-right: 14px;
  display: inline-block;
}
.link:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #901f1f;
  position: absolute;
  right: 0;
  top: 7px;
}
.link:after {
  content: "";
  background: #901f1f;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
}

b {
  font-weight: 700;
}

.number {
  font: 400 28px/1.571 "e";
}

@media (max-width:767px) {
  h1, .title_1, .editor-post-title__block .editor-post-title__input {
    font-size: 36px;
  }
  h2, .title-2, .faq-single h1 {
    font-size: 34px;
    hyphens: auto;
  }
  h3, .title-3 {
    font-size: 28px;
  }
  h4, .title-4 {
    font-size: 28px;
  }
  h5, .title-5 {
    font-size: 18px;
  }
  h6, .title-6 {
    font-size: 16px;
  }
  body, .editor-writing-flow {
    font-size: 16px;
  }
  .link {
    font-size: 14px;
  }
  .number {
    font-size: 28px;
  }
}
a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

hr {
  background: #D8D8D8;
  height: 1px;
  border: none;
}

.editor-writing-flow blockquote {
  border-left-color: #901f1f !important;
}
.editor-writing-flow blockquote p {
  font: 400 24px/1.143 "e" !important;
}

.text blockquote {
  border-left: solid 20px #901f1f;
  font-size: 28px;
  padding: 30px 0 30px 28px;
  margin: 50px 0;
}
@media (max-width:767px) {
  .text blockquote {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 24px;
    border-left-width: 15px;
    padding: 20px 0 20px 20px;
  }
}

.text ul:not([class]) li, .text ul:not([class]) li, .text ul[class=""], .text ul:not([class]), .editor-writing-flow ul:not([class]) li, .editor-writing-flow ul:not([class]) li, .editor-writing-flow ul[class=""], .editor-writing-flow ul:not([class]) {
  list-style: none;
}
.text ul:not([class]) li li, .text ul:not([class]) li li, .text ul[class=""] li, .text ul:not([class]) li, .editor-writing-flow ul:not([class]) li li, .editor-writing-flow ul:not([class]) li li, .editor-writing-flow ul[class=""] li, .editor-writing-flow ul:not([class]) li {
  position: relative;
  padding-left: 30px;
}
.text ul:not([class]) li li:before, .text ul:not([class]) li li:before, .text ul[class=""] li:before, .text ul:not([class]) li:before, .editor-writing-flow ul:not([class]) li li:before, .editor-writing-flow ul:not([class]) li li:before, .editor-writing-flow ul[class=""] li:before, .editor-writing-flow ul:not([class]) li:before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: black;
  top: 16px;
  left: 0;
}
.text p + h1, .text p + h2, .text p + h3, .text ul + h1, .text ul + h2, .text ul + h3, .text figure + h1, .text figure + h2, .text figure + h3, .editor-writing-flow p + h1, .editor-writing-flow p + h2, .editor-writing-flow p + h3, .editor-writing-flow ul + h1, .editor-writing-flow ul + h2, .editor-writing-flow ul + h3, .editor-writing-flow figure + h1, .editor-writing-flow figure + h2, .editor-writing-flow figure + h3 {
  margin-top: 50px;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6, .text p, .text ul:not([class]) li, .text ul:not([class]) li, .text ul[class=""], .text ul:not([class]), .editor-writing-flow h1, .editor-writing-flow h2, .editor-writing-flow h3, .editor-writing-flow h4, .editor-writing-flow h5, .editor-writing-flow h6, .editor-writing-flow p, .editor-writing-flow ul:not([class]) li, .editor-writing-flow ul:not([class]) li, .editor-writing-flow ul[class=""], .editor-writing-flow ul:not([class]) {
  display: block;
  color: inherit;
  margin: 0 0 25px 0;
}
.text h1:last-child, .text h2:last-child, .text h3:last-child, .text h4:last-child, .text h5:last-child, .text h6:last-child, .text p:last-child, .text ul:not([class]) li:last-child, .text ul:not([class]) li:last-child, .text ul[class=""]:last-child, .text ul:not([class]):last-child, .editor-writing-flow h1:last-child, .editor-writing-flow h2:last-child, .editor-writing-flow h3:last-child, .editor-writing-flow h4:last-child, .editor-writing-flow h5:last-child, .editor-writing-flow h6:last-child, .editor-writing-flow p:last-child, .editor-writing-flow ul:not([class]) li:last-child, .editor-writing-flow ul:not([class]) li:last-child, .editor-writing-flow ul[class=""]:last-child, .editor-writing-flow ul:not([class]):last-child {
  margin-bottom: 0;
}
.text h6, .editor-writing-flow h6 {
  margin-bottom: 20px;
}
.text em, .text i, .editor-writing-flow em, .editor-writing-flow i {
  font-style: italic;
}
.text strong, .text b, .editor-writing-flow strong, .editor-writing-flow b {
  font-weight: 700;
}

/* default classes */
body, html {
  scroll-behavior: smooth;
  position: relative;
}

.float--left {
  float: left;
}

.float--right {
  float: right;
}

.clear, .clearfix {
  clear: both;
}

.center {
  text-align: center;
}

.full {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.bkg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  z-index: 10;
  position: relative;
}
.wrapper.wrapper--padded {
  padding-left: 20px;
  padding-right: 20px;
}
.wrapper.wrapper--small {
  max-width: 840px;
}
.wrapper.wrapper--small.wrapper--padded {
  max-width: 880px;
}
.wrapper.wrapper--medium {
  max-width: 1000px;
}
.wrapper.wrapper--medium.wrapper--padded {
  max-width: 1040px;
}
.wrapper.wrapper--large {
  max-width: 1240px;
}
.wrapper.wrapper--large.wrapper--padded {
  max-width: 1280px;
}

.vertical-center-wrapper {
  display: flex;
  align-items: center;
}
.no-flexbox .vertical-center-wrapper {
  display: block;
}
.no-flexbox .vertical-center-wrapper .vertical-center-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* disclaimer */
#error_browser_wrapper {
  display: none;
}

.error--browser {
  width: 100%;
  height: 100%;
  position: relative;
}
.error--browser #header-wrapper, .error--browser #page, .error--browser #footer-wrapper {
  display: none !important;
}
.error--browser #error_browser_wrapper {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
}
.error--browser #error_browser {
  width: 500px;
  margin: 100px 0 0 -250px;
  position: relative;
  left: 50%;
}
.error--browser #error_browser .logo {
  margin: 0 auto;
}
.error--browser #error_browser ul li {
  float: left;
  width: 25%;
}
.error--browser #error_browser ul li a {
  white-space: nowrap;
  color: white;
  text-decoration: none;
}
.error--browser #error_browser ul li a img {
  height: 60px;
  width: auto;
}

#page {
  position: relative;
  z-index: 10;
}

.page-content {
  position: relative;
}

.bicolors {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.bicolors:before, .bicolors:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  z-index: 0;
}
.bicolors:before {
  background: black;
  left: 0;
}
.bicolors:after {
  background: white;
  right: 0;
}
.bicolors.inverse:before {
  background: white;
}
.bicolors.inverse:after {
  background: black;
}

.sep {
  text-align: center;
  width: 7px;
  height: 7px;
  display: inline-block;
  transform: rotate(-45deg);
  background: white;
}

.menu-page {
  width: 50%;
  float: right;
  height: 130px;
  margin-top: -100px;
  border-top: 5px solid #901f1f;
  background: white;
  padding-left: 50px;
  padding-top: 40px;
  position: relative;
  z-index: 10;
}

@media (min-width:1025px) {
  .mobile-only {
    display: none;
  }
}
@media (max-width:1024px) {
  .desktop-only {
    display: none;
  }
}
@media (max-width:767px) {
  .bicolors {
    display: none;
  }
}
.btn {
  padding: 20px 100px 20px 25px;
  border-radius: 37px;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.3);
  display: inline-block;
  font: inherit;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: black;
  margin-top: 30px;
  margin-bottom: 30px;
  text-decoration: none !important;
  background-color: white;
  position: relative;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.btn span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-21px);
}
.btn span svg path.fill {
  fill: #000000;
  transition: transform 0.2s linear, fill 0.2s linear;
}
.btn span svg path.stroke {
  stroke: #000000;
  transition: transform 0.2s linear, stroke 0.2s linear;
}
.btn span svg .trait {
  transform-origin: 42px 20.5px;
}
.btn span svg .carre {
  transform-origin: 46.5px 20.5px;
}
.btn span svg .cercle {
  transform-origin: 46.5px 20.5px;
}
.btn:hover, .btn.hover, .btn .btn-hover, .btn .page-category .category-wrapper .liste-formations .formation .click:hover ~ .btn, .page-category .category-wrapper .liste-formations .formation .btn .click:hover ~ .btn, .btn .page-home .formations .liste-formations .formation .click:hover ~ .btn, .page-home .formations .liste-formations .formation .btn .click:hover ~ .btn {
  background-color: #901f1f !important;
  color: white;
}
.btn:hover span path.fill, .btn.hover span path.fill, .btn .btn-hover span path.fill, .btn .page-category .category-wrapper .liste-formations .formation .click:hover ~ .btn span path.fill, .page-category .category-wrapper .liste-formations .formation .btn .click:hover ~ .btn span path.fill, .btn .page-home .formations .liste-formations .formation .click:hover ~ .btn span path.fill, .page-home .formations .liste-formations .formation .btn .click:hover ~ .btn span path.fill {
  fill: white;
}
.btn:hover span path.stroke, .btn.hover span path.stroke, .btn .btn-hover span path.stroke, .btn .page-category .category-wrapper .liste-formations .formation .click:hover ~ .btn span path.stroke, .page-category .category-wrapper .liste-formations .formation .btn .click:hover ~ .btn span path.stroke, .btn .page-home .formations .liste-formations .formation .click:hover ~ .btn span path.stroke, .page-home .formations .liste-formations .formation .btn .click:hover ~ .btn span path.stroke {
  stroke: white;
}
.btn:hover span svg .trait, .btn.hover span svg .trait, .btn .btn-hover span svg .trait, .btn .page-category .category-wrapper .liste-formations .formation .click:hover ~ .btn span svg .trait, .page-category .category-wrapper .liste-formations .formation .btn .click:hover ~ .btn span svg .trait, .btn .page-home .formations .liste-formations .formation .click:hover ~ .btn span svg .trait, .page-home .formations .liste-formations .formation .btn .click:hover ~ .btn span svg .trait {
  transform: scaleX(0.33);
}
.btn:hover span svg .carre, .btn.hover span svg .carre, .btn .btn-hover span svg .carre, .btn .page-category .category-wrapper .liste-formations .formation .click:hover ~ .btn span svg .carre, .page-category .category-wrapper .liste-formations .formation .btn .click:hover ~ .btn span svg .carre, .btn .page-home .formations .liste-formations .formation .click:hover ~ .btn span svg .carre, .page-home .formations .liste-formations .formation .btn .click:hover ~ .btn span svg .carre {
  transform: rotate(180deg);
}
.btn:hover span svg .cercle, .btn.hover span svg .cercle, .btn .btn-hover span svg .cercle, .btn .page-category .category-wrapper .liste-formations .formation .click:hover ~ .btn span svg .cercle, .page-category .category-wrapper .liste-formations .formation .btn .click:hover ~ .btn span svg .cercle, .btn .page-home .formations .liste-formations .formation .click:hover ~ .btn span svg .cercle, .page-home .formations .liste-formations .formation .btn .click:hover ~ .btn span svg .cercle {
  transform: scale(0.92);
}
.btn.btn-black {
  background-color: black;
  color: white;
}
.btn.btn-black span svg path.fill {
  fill: white;
}
.btn.btn-black span svg path.stroke {
  stroke: white;
}

#header-wrapper {
  background: black;
  z-index: 120;
  position: relative;
}
#header-wrapper #header {
  position: relative;
  color: white;
  padding-top: 40px;
  padding-bottom: 35px;
}
#header-wrapper #header .site-logo {
  position: absolute;
  left: 20px;
  top: 40px;
}
#header-wrapper #header nav {
  margin-left: 150px;
  font-weight: 700;
  line-height: 42px;
}
#header-wrapper #header nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 58px;
}
#header-wrapper #header nav ul li a {
  display: inline-block;
  transition: color linear 0.1s;
}
#header-wrapper #header nav ul li.contact {
  float: right;
  margin-right: 0;
}
#header-wrapper #header nav ul li.contact a {
  background: #901f1f;
  padding: 0px 30px;
  border-radius: 36px;
  height: 42px;
  line-height: 40px;
  display: inline-block;
  color: white;
}
#header-wrapper #header nav ul li.contact a:hover {
  color: #000000;
}
#header-wrapper #header nav ul li ul {
  position: absolute;
  display: none;
  background: black;
  width: 300px;
  font-weight: 200;
  padding: 20px;
}
#header-wrapper #header nav ul li ul li a {
  color: white;
}
#header-wrapper #header nav ul li.current-menu-item a, #header-wrapper #header nav ul li.current-menu-parent a {
  color: #901f1f;
}
#header-wrapper #header nav ul li.current-menu-item.contact a, #header-wrapper #header nav ul li.current-menu-parent.contact a {
  color: #000000;
}
#header-wrapper #header nav ul li:hover ul {
  display: block;
}
#header-wrapper #header nav ul li:hover ul li a {
  color: white;
}
#header-wrapper #header nav ul li:hover ul li a:hover {
  color: #901f1f;
}
#header-wrapper #header nav ul li:hover a {
  color: #901f1f;
}

.header-burger {
  display: none;
  position: absolute;
  right: 0;
  padding: 20px 20px;
  height: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  top: 0;
}

#mobile-menu-wrapper {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 110;
  background-color: black;
  color: white;
  transform: translateY(-100%) translateY(75px);
  visibility: hidden;
  transition: transform cubic-bezier(0.86, 0, 0.07, 1) 0.6s 0s, visibility 0s linear 0.6s;
}
#mobile-menu-wrapper.show {
  transform: none;
  visibility: visible;
  transition: transform cubic-bezier(0.86, 0, 0.07, 1) 0.6s 0s, visibility 0s linear 0s;
}
#mobile-menu-wrapper .mobile-menu-scroller {
  position: absolute;
  top: 100px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  overflow-y: scroll;
}
#mobile-menu-wrapper .mobile-menu-scroller nav:first-child {
  margin-top: 10px;
  margin-bottom: 20px;
}
#mobile-menu-wrapper .mobile-menu-scroller nav:last-child {
  margin-bottom: 100px;
}
#mobile-menu-wrapper .mobile-menu > li {
  margin-bottom: 10px;
}
#mobile-menu-wrapper .mobile-menu > li > a {
  font-weight: 700;
}
#mobile-menu-wrapper .mobile-menu > li > a[href="#"] {
  pointer-events: none;
}
#mobile-menu-wrapper .mobile-menu .sub-menu {
  margin-left: 10px;
  margin-bottom: 20px;
  margin-top: 5px;
}
#mobile-menu-wrapper .mobile-menu .sub-menu li {
  margin-bottom: 10px;
}
#mobile-menu-wrapper .mobile-menu .contact {
  margin-top: 20px;
}
#mobile-menu-wrapper .mobile-menu .contact a {
  background: #901f1f;
  padding: 0 30px;
  border-radius: 36px;
  height: 42px;
  line-height: 40px;
  display: inline-block;
  color: white;
}
#mobile-menu-wrapper .mobile-menu .contact a:hover {
  color: #000000;
}

@media (max-width:1276px) {
  #header-wrapper #header nav ul li {
    margin-right: 20px;
  }
}
@media (max-width:1024px) {
  #header-wrapper #header nav ul li {
    margin-right: 10px;
  }
  #header-wrapper #header nav ul li.contact a {
    padding: 0 20px;
  }
}
@media (max-width:960px) {
  .header-burger, #mobile-menu-wrapper {
    display: block;
  }
  #header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  #header-wrapper #header {
    padding-top: 32px;
    padding-bottom: 27px;
  }
  #header-wrapper #header nav {
    display: none;
  }
  #header-wrapper #header .site-logo {
    transform: translate(-30px, -50px) scale(0.56);
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  #header-wrapper #header .site-logo.scrolling {
    transform: translate(-40px, -66px) scale(0.37);
  }
}
#footer-wrapper {
  border-top: 1px solid #EBEBEB;
  position: relative;
  z-index: 100;
}
#footer-wrapper #footer {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
#footer-wrapper #footer .site-logo {
  position: absolute;
  left: 20px;
  top: -55px;
}
#footer-wrapper #footer .footer-content .col {
  float: left;
  margin-right: 100px;
  width: calc(33.3% - 100px);
}
#footer-wrapper #footer .footer-content .col a:hover {
  text-decoration: underline;
}
#footer-wrapper #footer .footer-content .col a[href="#"] {
  pointer-events: none;
}
#footer-wrapper #footer .footer-content .col .telephone {
  font-weight: 700;
  margin-top: 40px;
}
#footer-wrapper #footer .footer-content .col .footer-menu li {
  font-weight: 700;
  margin-bottom: 30px;
}
#footer-wrapper #footer .footer-content .col .footer-menu li ul {
  margin-top: 30px;
}
#footer-wrapper #footer .footer-content .col .footer-menu li ul li {
  font-weight: 400;
}
#footer-wrapper #footer .subfooter {
  overflow: hidden;
  margin-top: 36px;
  font: 400 12px/35px "e";
}
#footer-wrapper #footer .subfooter .copyright {
  float: left;
}
#footer-wrapper #footer .subfooter .protectim {
  float: right;
}
#footer-wrapper #footer .subfooter .protectim img {
  vertical-align: middle;
}
@media (max-width:960px) {
  #footer-wrapper #footer .footer-content .col {
    margin-right: 30px;
    width: calc(33.3% - 30px);
  }
}
@media (max-width:767px) {
  #footer-wrapper #footer {
    padding-top: 50px;
  }
  #footer-wrapper #footer .site-logo {
    top: -35px;
  }
  #footer-wrapper #footer .site-logo img {
    max-width: 70px;
  }
  #footer-wrapper #footer .footer-content .col {
    width: calc(50% - 30px);
    font-size: 10px;
  }
  #footer-wrapper #footer .footer-content .col .telephone {
    margin-top: 20px;
  }
  #footer-wrapper #footer .footer-content .col:nth-child(1) {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    font-size: 16px;
  }
  #footer-wrapper #footer .footer-content .col .footer-menu li {
    margin-bottom: 20px;
  }
  #footer-wrapper #footer .footer-content .col .footer-menu li ul {
    margin-top: 20px;
  }
  #footer-wrapper #footer .footer-content .col .footer-menu li ul li {
    margin-bottom: 20px;
  }
  #footer-wrapper #footer .subfooter .copyright, #footer-wrapper #footer .subfooter .protectim {
    float: none;
  }
}

.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb div {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}
.breadcrumb div + div:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: white;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 0 5px;
}
@media (max-width:767px) {
  .breadcrumb {
    display: none;
  }
}

.header-page {
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 700px;
  color: white;
  position: relative;
}
.header-page .onHeader {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../img/onheader.png) top left repeat;
  opacity: 0.6;
  display: none;
}
.page-single-formation .header-page .onHeader, .category .header-page .onHeader {
  display: block;
}
.header-page.header-page--small {
  min-height: 430px;
}
.header-page .wrapper {
  height: 100%;
}
.header-page .content {
  max-width: 750px;
  padding-top: 200px;
  padding-left: 150px;
}
.header-page h1 + p {
  margin-top: 20px;
}
.header-page .header-page-meta-wrapper {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}
.header-page .header-page-meta-wrapper .header-page-meta {
  max-width: 440px;
  margin-left: 150px;
  font-size: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item {
  display: inline-block;
  vertical-align: top;
  max-width: 170px;
  font-size: 0;
  text-align: center;
}
.header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item:not(:last-child) {
  margin-right: 50px;
  margin-bottom: 20px;
}
.header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item svg, .header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item span {
  display: inline-block;
  vertical-align: top;
}
.header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item svg {
  max-width: 40px;
  height: auto;
  margin-top: 5px;
}
.header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item span {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width:1276px) {
  .header-page .content {
    padding-left: 80px;
  }
  .header-page .header-page-meta-wrapper .header-page-meta {
    margin-left: 80px;
  }
}
@media (max-width:1024px) {
  .header-page .content {
    padding-left: 0;
  }
  .header-page .header-page-meta-wrapper .header-page-meta {
    margin-left: 0;
  }
}
@media (max-width:767px) {
  .header-page {
    min-height: 430px;
  }
  .header-page.header-page--small {
    min-height: 250px;
  }
  .header-page .content {
    padding-top: 130px;
    padding-bottom: 0;
  }
  .header-page .header-page-meta-wrapper {
    position: relative;
    bottom: auto;
    margin-top: 20px;
  }
  .header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item svg {
    margin-bottom: 8px;
  }
  .header-page .header-page-meta-wrapper .header-page-meta .header-page-meta-item span {
    max-width: 100%;
  }
}
.page-home {
  background: black;
}
.page-home .header-page {
  background-image: url(../img/home/part-ecole.jpg);
}
.page-home .header-page .content {
  max-width: 830px;
}
.page-home .formations {
  position: relative;
  background: black;
  padding-top: 60px;
  padding-bottom: 100px;
}
.page-home .formations:before {
  content: "";
  width: 75%;
  background: white;
  position: absolute;
  right: 0;
  top: 150px;
  bottom: 90px;
}
.page-home .formations h2 {
  color: white;
  margin-bottom: 30px;
}
.page-home .formations .link {
  color: white;
}
.page-home .formations .link.mobile-only {
  margin-top: 30px;
}
.page-home .formations .liste-formations {
  border-left: 1px solid #B9B4B4;
  margin-top: 90px;
  position: relative;
  padding-left: 50px;
  padding-bottom: 70px;
}
.page-home .formations .liste-formations .formation {
  width: calc(33.3% - 30px);
  height: 400px;
  float: left;
  margin: 0 15px 15px 15px;
  color: white;
  padding: 20px;
  position: relative;
  text-align: center;
}
.page-home .formations .liste-formations .formation .bkg {
  background: black no-repeat top center;
  background-size: cover;
  transition: transform 0.4s ease;
}
.page-home .formations .liste-formations .formation .shadow {
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.75);
  transition: transform 0.4s ease, opacity 0.4s linear;
}
.page-home .formations .liste-formations .formation .click {
  height: auto;
  bottom: -30px;
  z-index: 1000;
}
.page-home .formations .liste-formations .formation .click:hover ~ .bkg, .page-home .formations .liste-formations .formation .click:hover ~ .shadow {
  transform: scale(1.03);
}
.page-home .formations .liste-formations .formation .click:hover ~ .shadow {
  opacity: 0.6;
}
.page-home .formations .liste-formations .formation .content-formation {
  position: absolute;
  bottom: 60px;
  width: calc(100% - 40px);
}
.page-home .formations .liste-formations .formation .sep {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-home .formations .liste-formations .formation .btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
.page-home .formations-top h1, .page-home .formations-top p {
  color: white;
  max-width: 550px;
  margin: 30px 50px;
}
.page-home .formations-top:before {
  display: none;
}
.page-home .formations-top .liste-formations {
  border: none;
  border-right: 1px solid white;
}
.page-home .formations-top .liste-formations p {
  margin: 0;
}
.page-home .academie {
  background: black;
  color: white;
  padding-top: 60px;
  overflow: hidden;
}
.page-home .academie h3 {
  margin-bottom: 20px;
}
.page-home .academie h3, .page-home .academie p {
  max-width: 400px;
}
.page-home .academie .block {
  float: left;
  width: calc(50% - 15px);
  margin-top: 50px;
}
.page-home .academie .block .desc {
  max-width: 400px;
}
.page-home .academie .block.block1 {
  margin-right: 15px;
}
.page-home .academie .block.block1 .image {
  margin-left: -140px;
  margin-bottom: 30px;
  max-width: calc(100% + 140px);
}
.page-home .academie .block.block1 .image img {
  max-width: 100%;
}
.page-home .academie .block.block2 {
  margin-left: 15px;
}
.page-home .academie .block.block2 .image {
  margin-top: 30px;
  max-width: calc(100% + 140px);
  margin-right: -140px;
}
.page-home .academie .block.block2 .image img {
  max-width: 100%;
}
.page-home .academie .block.block2 .image.mobile-only {
  margin-top: 0;
  margin-bottom: 30px;
}
.page-home .academie .block.block3 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: black;
  float: none;
  padding: 160px 80px 85px 80px;
}
.page-home .clients {
  position: relative;
}
.page-home .clients h2 {
  margin-bottom: 50px;
}
.page-home .clients .protectim-sat {
  border-left: 1px solid #B9B4B4;
  padding: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 50%;
  float: left;
}
.page-home .clients .protectim-sat p {
  margin-bottom: 20px;
}
.page-home .clients .liste-clients {
  color: white;
  width: 50%;
  float: left;
  padding: 100px 0 50px 100px;
}
.page-home .clients .liste-clients img {
  vertical-align: middle;
  margin-left: 50px;
  margin-bottom: 50px;
}
.page-home .clients .liste-clients img:nth-child(3n+1) {
  margin-left: 0;
}
.page-home .contacts {
  position: relative;
}
.page-home .contacts .map {
  width: 50%;
  float: right;
}
.page-home .contacts .map .image {
  margin-left: -140px;
  line-height: 0;
}
.page-home .contacts .map .image img {
  max-width: 100%;
}
.page-home .contacts .contact {
  width: 50%;
  float: right;
  padding: 100px 0 50px 100px;
}
.page-home .contacts .contact h3 {
  margin: 30px 0;
}
@media (max-width:1276px) {
  .page-home .clients .liste-clients img {
    margin-left: 30px;
  }
  .page-home .formations .liste-formations .formation .btn {
    width: 85%;
  }
}
@media (max-width:1024px) {
  .page-home .formations .liste-formations .formation .btn {
    width: 91%;
  }
  .page-home .clients .liste-clients img {
    margin-left: 10px;
  }
}
@media (max-width:960px) {
  .page-home .formations:before {
    width: 60%;
  }
  .page-home .formations .liste-formations .formation {
    width: 95%;
    height: 500px;
    margin-bottom: 60px;
  }
  .page-home .formations .liste-formations .formation .btn {
    max-width: 230px;
  }
  .page-home .formations .liste-formations .formation .content-formation {
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-home .clients .protectim-sat {
    padding: 20px 50px 20px 20px;
  }
  .page-home .clients .liste-clients {
    padding-left: 50px;
    padding-top: 70px;
  }
  .page-home .clients .liste-clients img {
    margin-left: 30px;
  }
  .page-home .clients .liste-clients img:nth-child(3n+1) {
    margin-left: 30px;
  }
  .page-home .clients .liste-clients img:nth-child(2n+1) {
    margin-left: 0px;
  }
  .page-home .contacts .contact {
    padding: 50px 0px 50px 50px;
  }
}
@media (max-width:767px) {
  .page-home .formations h2 {
    margin-bottom: 15px;
  }
  .page-home .formations .link-desktop {
    display: none;
  }
  .page-home .liste-formations-wrapper {
    position: relative;
    padding-top: 60px;
  }
  .page-home .liste-formations-scroller-wrapper {
    overflow: hidden;
    margin-left: -20px;
    margin-right: -20px;
    height: 455px;
  }
  .page-home .liste-formations-scroller-bar {
    width: calc(100% - 120px) !important;
    right: 0;
    position: absolute !important;
    top: 30px;
  }
  .page-home .formations:before {
    display: none;
  }
  .page-home .formations .liste-formations {
    padding-left: 0;
    border-left: 0;
    margin-top: 0;
  }
  .page-home .formations .liste-formations .formation {
    margin: 15px 20px 40px 20px;
    height: 400px;
    width: calc(100vw - 40px);
    max-width: 280px;
  }
  .page-home .formations .liste-formations .formation + .formation {
    margin-left: 0;
  }
  .page-home .academie .block {
    width: 100%;
    float: none;
  }
  .page-home .academie .block.block1 .image {
    margin-left: 0;
    max-width: 100%;
  }
  .page-home .academie .block.block2 {
    margin-left: 0;
  }
  .page-home .academie .block.block2 .image {
    margin-right: 0;
    max-width: 100%;
  }
  .page-home .academie .block.block3 {
    padding: 20px;
    margin-top: 100px;
  }
  .page-home .clients {
    background: white;
    padding-top: 1px;
  }
  .page-home .clients .protectim-sat {
    float: none;
    width: 100%;
    border-left: 0;
    padding: 0;
  }
  .page-home .clients .liste-clients {
    background: black;
    width: calc(100% + 40px);
    padding: 50px 20px;
    margin: 0px -20px 0px -20px;
  }
  .page-home .clients .liste-clients img {
    margin: 17px !important;
  }
  .page-home .clients .liste-clients img:nth-child(3n+1) {
    margin-left: 50px;
  }
  .page-home .clients .liste-clients img:nth-child(2n+1) {
    margin-left: 0;
  }
  .page-home .contacts {
    overflow: hidden;
    background: white;
  }
  .page-home .contacts .map {
    float: none;
    width: 100%;
  }
  .page-home .contacts .map .image {
    width: calc(100% + 140px);
    margin-left: -70px;
  }
  .page-home .contacts .contact {
    float: none;
    width: 100%;
    padding: 30px 0;
  }
}

.page-category .main-category + .main-category {
  margin-top: 60px;
}
.page-category .main-category-header {
  text-align: center;
  margin-bottom: 50px;
}
.page-category .main-category-header h1 {
  margin-bottom: 30px;
}
.page-category .header-page {
  background-image: url(../img/home/part-ecole.jpg);
  min-height: 450px;
}
.page-category .header-page .content {
  max-width: 830px;
  padding-top: 100px;
}
.page-category .header-page .content h1 {
  margin-bottom: 30px;
}
.page-category .category-wrapper {
  padding-bottom: 200px;
  margin-top: 80px;
}
.page-category .category-wrapper .category-child {
  margin-bottom: 50px;
}
.page-category .category-wrapper .category-child .title-3 {
  margin-bottom: 20px;
}
.page-category .category-wrapper .category-child p, .page-category .category-wrapper .category-child .title-3 {
  max-width: 530px;
}
.page-category .category-wrapper .liste-formations {
  margin-top: 50px;
}
.page-category .category-wrapper .liste-formations {
  margin-right: -15px;
  margin-left: -15px;
}
.page-category .category-wrapper .liste-formations .formation {
  background: white;
  display: block;
  float: left;
  width: calc(33.3% - 30px);
  margin: 0 15px 60px 15px;
  text-align: center;
  padding: 33px 20px 60px 20px;
  position: relative;
  min-height: 320px;
}
.page-category .category-wrapper .liste-formations .formation .shadow {
  transition: opacity 0.4s linear, transform 0.4s ease;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.3);
}
.page-category .category-wrapper .liste-formations .formation .click {
  height: auto;
  bottom: -30px;
  z-index: 1000;
}
.page-category .category-wrapper .liste-formations .formation .click:hover ~ .shadow {
  opacity: 0.4;
  transform: scale(1.03);
}
.page-category .category-wrapper .liste-formations .formation .icone {
  min-height: 60px;
  margin-bottom: 10px;
}
.page-category .category-wrapper .liste-formations .formation .icone svg {
  max-width: 70px;
  max-height: 70px;
}
.page-category .category-wrapper .liste-formations .formation h3 {
  margin-bottom: 10px;
  min-height: 100px;
}
.page-category .category-wrapper .liste-formations .formation .btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 73%;
}
.page-category .category-wrapper .liste-formations .formation .sep {
  background: #901f1f;
}
@media (max-width:960px) {
  .page-category .menu-page {
    display: none;
  }
  .page-category .category-wrapper .liste-formations .formation {
    width: calc(50% - 30px);
  }
  .page-category .header-page .content {
    padding-top: 210px;
  }
}
@media (max-width:767px) {
  .page-category .category-wrapper {
    padding-bottom: 80px;
  }
  .page-category .category-wrapper .liste-formations {
    margin-right: -20px;
    margin-left: -20px;
    position: relative;
    padding-top: 50px;
    margin-top: 30px;
  }
  .page-category .category-wrapper .liste-formations.a-horz-scroller--no-scroll {
    padding-top: 0;
    margin-top: 20px;
  }
  .page-category .category-wrapper .liste-formations .a-horz-scroller-arrow rect {
    stroke: #000;
  }
  .page-category .category-wrapper .liste-formations .a-horz-scroller-arrow path {
    fill: #000;
  }
  .page-category .category-wrapper .liste-formations .a-horz-scroller-arrow {
    margin-left: 20px;
  }
  .page-category .category-wrapper .liste-formations .scroller-bar-wrapper {
    border-bottom-color: black;
    width: calc(100% - 160px);
    right: 20px;
    position: absolute;
    top: 30px;
  }
  .page-category .category-wrapper .liste-formations .scroller-bar-wrapper span {
    background: black;
  }
  .page-category .category-wrapper .liste-formations .scroller {
    padding-bottom: 30px;
  }
  .page-category .category-wrapper .liste-formations .scroller .clear:not(:last-child) {
    display: none;
  }
  .page-category .category-wrapper .liste-formations .formation {
    margin: 15px 20px 40px 20px;
    width: calc(100vw - 40px);
    max-width: 280px;
  }
  .page-category .category-wrapper .liste-formations .formation:not(:first-child) {
    margin-left: 0;
  }
  .page-category .category-wrapper .liste-formations .formation .btn {
    width: 82%;
  }
  .page-category .header-page .content {
    padding-top: 250px;
  }
}

.page-single-formation .header-page .content {
  max-width: 1000px;
}
.page-single-formation .menu-page .btn {
  margin: -10px 0 0 0;
}
.page-single-formation .col--right, .page-single-formation .col--left {
  width: 50%;
}
.page-single-formation .formation-content-top {
  padding-top: 80px;
  padding-bottom: 75px;
  width: 100%;
}
.page-single-formation .formation-content-top .col--right {
  float: right;
}
.page-single-formation .formation-content-top .col--left {
  float: left;
}
.page-single-formation .formation-content-top .col--right {
  max-width: 420px;
}
.page-single-formation .formation-content-top .col--right h3 {
  margin-bottom: 8px;
}
.page-single-formation .formation-content-top .col--right h3 svg {
  margin: -2px 12px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.page-single-formation .formation-content-top .col--right P + h3 {
  margin-top: 30px;
}
.page-single-formation .formation-content-top .col--left {
  max-width: 500px;
  padding-right: 50px;
}
.page-single-formation .formation-content-contenus h4 {
  font: 400 18px/1 "e";
  color: #901f1f;
  margin-bottom: 30px;
}
.page-single-formation .formation-content-contenus .texte {
  margin-bottom: 90px;
}
.page-single-formation .formation-content-contenus .sequences {
  position: relative;
  margin-bottom: 50px;
  margin-top: 30px;
}
.page-single-formation .formation-content-contenus .sequences:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #D8D8D8;
  position: absolute;
  left: 0;
  top: 54px;
}
.page-single-formation .formation-content-contenus .sequences .a-horz-scroller-arrow {
  top: -66px;
  left: 340px;
}
.page-single-formation .formation-content-contenus .sequences .a-horz-scroller-arrow.a-horz-scroller-arrow-right {
  left: 390px;
}
.page-single-formation .formation-content-contenus .sequences .a-horz-scroller-arrow svg rect {
  stroke: black;
}
.page-single-formation .formation-content-contenus .sequences .a-horz-scroller-arrow svg path {
  fill: black;
}
.page-single-formation .formation-content-contenus .sequences .a-horz-scroller-bar-wrapper {
  position: absolute;
  width: calc(100% - 470px);
  border-bottom: 1px solid black;
  top: -50px;
  right: 0;
}
.page-single-formation .formation-content-contenus .sequences .a-horz-scroller-bar-wrapper > span {
  background-color: black;
}
.page-single-formation .formation-content-contenus .sequences + h4 + .sequences .a-horz-scroller-arrow {
  top: -70px;
}
.page-single-formation .formation-content-contenus .sequences + h4 + .sequences .a-horz-scroller-bar-wrapper {
  top: -50px;
}
.page-single-formation .formation-content-contenus .sequences .sequence {
  float: left;
  padding-right: 60px;
  width: 200px;
  margin-bottom: 30px;
}
.page-single-formation .formation-content-contenus .sequences .sequence .number {
  color: #901f1f;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}
.page-single-formation .formation-content-contenus .sequences .sequence .number:after {
  content: "";
  background: #901f1f;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  position: absolute;
  left: 2px;
  bottom: 0;
}
.page-single-formation .formation-content-contenus .sequences .sequence .titre {
  font: 700 16px/1 "e";
}
.page-single-formation .formation-content-contenus .sequences .sequence .plus {
  margin-top: 20px;
  cursor: pointer;
  display: inline-block;
}
.page-single-formation .formation-content-contenus .sequences .sequence .plus:hover svg path {
  stroke: #000000;
}
.page-single-formation .formation-content-moyens {
  background: black;
  color: white;
  display: flex;
}
.page-single-formation .formation-content-moyens .col--left {
  position: relative;
}
.page-single-formation .formation-content-moyens .col--left .image {
  background-position: top center;
}
.page-single-formation .formation-content-moyens .col--right {
  padding: 70px 80px 30px 80px;
}
.page-single-formation .formation-content-moyens .col--right ul {
  margin: 40px 0;
}
.page-single-formation .formation-content-moyens .col--right ul li {
  padding-left: 55px;
  position: relative;
  max-width: 350px;
  margin-bottom: 25px;
}
.page-single-formation .formation-content-moyens .col--right ul li:last-child {
  margin-bottom: 0;
}
.page-single-formation .formation-content-moyens .col--right ul li svg {
  max-width: 41px;
  position: absolute;
  top: 4px;
  left: 0;
}
.page-single-formation .formation-content-moyens .col--right .certification {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  margin-bottom: 40px;
  background-size: 207px 125px !important;
}
.page-single-formation .formation-content-moyens .col--right .certification:last-child {
  margin-right: 0 !important;
}
.page-single-formation .formation-content-moyens .col--right .certification.certification--datadocke {
  width: 93px;
  height: 57px;
  background: url("../img/formation/sprite-logo-certifications.png") no-repeat -107px -51px;
}
.page-single-formation .formation-content-moyens .col--right .certification.certification--protectim {
  width: 137px;
  height: 51px;
  background: url("../img/formation/sprite-logo-certifications.png") no-repeat -70px -0px;
}
.page-single-formation .formation-content-moyens .col--right .certification {
  /*
  &.certification--cnaps {
      width:  (140px / 2);
      height: (150px / 2);
      background: url('../img/formation/sprite-logo-certifications.png') no-repeat (-0px / 2) (-0px / 2);
  }
  */
}
.page-single-formation .formation-content-moyens .col--right .certification.certification--sgs {
  width: 107px;
  height: 50px;
  background: url("../img/formation/sprite-logo-certifications.png") no-repeat -0px -75px;
}
.page-single-formation h3 svg {
  margin-right: 20px;
  fill: #901f1f;
}
.page-single-formation .planning {
  margin-bottom: 100px;
}

@media (max-width:960px) {
  .page-single-formation .menu-page {
    width: 40%;
    padding-left: 70px;
  }
  .page-single-formation .formation-content-moyens .col--right {
    width: 60%;
  }
  .page-single-formation .formation-content-moyens .col--right .certification {
    margin-right: 30px;
  }
  .page-single-formation .formation-content-moyens .col--left {
    width: 40%;
  }
}
@media (max-width:767px) {
  .page-single-formation .menu-page {
    float: none;
    width: 100%;
    background: none;
    border-top: none;
    padding: 0 20px 0 20px;
    height: auto;
    margin-top: -32px;
  }
  .page-single-formation .menu-page .btn {
    margin: 0;
    font-size: 15px;
    padding-left: 18px;
    border-radius: 32px;
  }
  .page-single-formation .col--right, .page-single-formation .col--left {
    width: 100% !important;
    float: none !important;
  }
  .page-single-formation .formation-content-top {
    padding-top: 60px;
  }
  .page-single-formation .formation-content-top .col--left {
    margin-top: 50px;
    padding-right: 0;
  }
  .page-single-formation .formation-content-contenus h4 {
    margin-bottom: 95px;
  }
  .page-single-formation .formation-content-contenus .sequences:before {
    top: 59px;
  }
  .page-single-formation .formation-content-contenus .sequences .sequence {
    width: 160px;
  }
  .page-single-formation .formation-content-contenus .sequences .a-horz-scroller-arrow {
    left: 0;
    top: -50px;
  }
  .page-single-formation .formation-content-contenus .sequences .a-horz-scroller-arrow.a-horz-scroller-arrow-right {
    left: 50px;
  }
  .page-single-formation .formation-content-contenus .sequences .a-horz-scroller-bar-wrapper {
    position: relative;
    width: 100%;
    top: -73px;
  }
  .page-single-formation .formation-content-moyens {
    display: block;
  }
  .page-single-formation .formation-content-moyens .col--left {
    max-height: 360px;
  }
  .page-single-formation .formation-content-moyens .col--left:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .page-single-formation .formation-content-moyens .col--right {
    padding: 50px 20px;
  }
  .page-single-formation .formation-content-moyens .col--right .certification {
    transform: scale(0.8);
    margin-left: -10px;
    margin-right: 10px;
  }
}
.page-academie {
  padding-bottom: 100px;
}
.page-academie .header-page {
  background-image: url(../img/academie/header.jpg);
}
.page-academie .header-page .content {
  padding-top: 470px;
}
.page-academie .menu-page, .page-academie .menu-page-fixed {
  z-index: 100;
}
.page-academie .menu-page .border, .page-academie .menu-page-fixed .border {
  position: absolute;
  height: 5px;
  width: 100%;
  top: 0px;
  left: 0;
  transform: scaleX(0);
  background: #901f1f;
  transform-origin: 0 0;
}
.page-academie .menu-page .content, .page-academie .menu-page-fixed .content {
  max-width: 600px;
}
.page-academie .menu-page .content a, .page-academie .menu-page-fixed .content a {
  display: inline-block;
  float: left;
  margin-right: 50px;
  width: calc(33.3% - 50px);
  color: #999999;
  transition: color linear 0.1s;
}
.page-academie .menu-page .content a:hover, .page-academie .menu-page-fixed .content a:hover {
  color: black;
}
.page-academie .menu-page .content a span, .page-academie .menu-page-fixed .content a span {
  display: block;
  font: 700 18px/1 "e";
  color: black;
}
.page-academie .menu-page-fixed {
  width: 50%;
  float: right;
  height: 90px;
  background: white;
  padding-left: 20px;
  padding-top: 13px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 0;
  transform: translateY(-150px);
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
}
.page-academie .menu-page-fixed .content {
  max-width: 100%;
}
.page-academie .menu-page-fixed .content a br {
  display: none;
}
.page-academie .menu-page-fixed.show {
  transform: translateY(0px);
}
.page-academie .page-wrapper .part {
  position: relative;
  width: 100%;
}
.page-academie .page-wrapper .part .bloc {
  position: relative;
}
.page-academie .page-wrapper .part .bloc .number {
  font: 400 241px/1 "e";
  color: #F0F0F0;
  position: absolute;
  top: 0;
  left: -32px;
  z-index: 0;
}
.page-academie .page-wrapper .part .bloc h2 {
  position: relative;
}
.page-academie .page-wrapper .part .bloc .image img {
  max-width: 100%;
}
.page-academie .page-wrapper .part .bloc.bloc-left {
  float: left;
  width: 50%;
}
.page-academie .page-wrapper .part .bloc.bloc-right {
  float: right;
  width: 50%;
}
.page-academie .page-wrapper .part .bloc.bloc-bottom {
  padding: 0 100px;
}
.page-academie .page-wrapper .part.part1 .bloc-left {
  padding: 125px 0px 0px 100px;
}
.page-academie .page-wrapper .part.part1 .bloc-left p {
  max-width: 90%;
}
.page-academie .page-wrapper .part.part1 .bloc-right {
  margin-top: 100px;
}
.page-academie .page-wrapper .part.part1 .bloc-right .image {
  margin-left: 100px;
  line-height: 0;
}
.page-academie .page-wrapper .part.part1 .bloc-right p {
  padding-left: 60px;
}
.page-academie .page-wrapper .part.part1 .bloc-right .recherche {
  background: url(../svg/ico-clarifier.svg) left top 7px no-repeat;
}
.page-academie .page-wrapper .part.part1 .bloc-right .monter {
  background: url(../svg/ico-monter.svg) left top 7px no-repeat;
}
.page-academie .page-wrapper .part.part1 .bloc-right .profils {
  background: url(../svg/ico-profils.svg) left top 7px no-repeat;
}
.page-academie .page-wrapper .part.part1 .bloc-rouge {
  padding: 90px 80px;
  background: #901f1f;
  color: white;
}
.page-academie .page-wrapper .part.part1 .bloc-bottom {
  color: #901f1f;
  border-left: 1px solid #901f1f;
  padding-left: 80px;
  margin-left: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 860px;
}
.page-academie .page-wrapper .part.part2 {
  background: black;
  color: white;
  overflow: hidden;
}
.page-academie .page-wrapper .part.part2 .image {
  line-height: 0;
}
.page-academie .page-wrapper .part.part2 .image img {
  max-width: 100%;
}
.page-academie .page-wrapper .part.part2 .bloc-left {
  padding: 100px 0px 0px 100px;
  width: 45%;
  overflow: hidden;
}
.page-academie .page-wrapper .part.part2 .bloc-left-image, .page-academie .page-wrapper .part.part2 .bloc-right-image {
  padding: 0;
  width: 50%;
  float: left;
  line-height: 0;
}
.page-academie .page-wrapper .part.part2 .bloc-left-image img, .page-academie .page-wrapper .part.part2 .bloc-right-image img {
  max-width: 100%;
}
.page-academie .page-wrapper .part.part2 .bloc-left-image {
  margin-top: 100px;
}
.page-academie .page-wrapper .part.part2 .bloc-right-image {
  padding-bottom: 50px;
  background: white;
  margin-top: 50px;
}
.page-academie .page-wrapper .part.part2 .bloc-right {
  padding: 125px 0px 0px 100px;
  margin-top: 60px;
  float: left;
}
.page-academie .page-wrapper .part.part2 .bloc-right .number {
  color: #1F1F1F;
}
.page-academie .page-wrapper .part.part2 .peoples .people {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.page-academie .page-wrapper .part.part2 .peoples .people.hide {
  opacity: 0.3;
}
.page-academie .page-wrapper .part.part2 .bios {
  background: #901f1f;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: -62px;
  padding: 70px 80px;
  transform: translateX(70vw);
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
}
.page-academie .page-wrapper .part.part2 .bios .close {
  margin-bottom: 30px;
  cursor: pointer;
}
.page-academie .page-wrapper .part.part2 .bios.show {
  transform: translateX(0);
}
.page-academie .page-wrapper .part.part2 .bios .bio {
  display: none;
}
.page-academie .page-wrapper .part.part2 .bios .bio.show {
  display: block;
}
.page-academie .page-wrapper .part.part3 .bloc-left {
  padding: 100px 0px 0px 100px;
  max-width: 45%;
}
.page-academie .page-wrapper .part.part3 .bloc-right-bottom {
  margin-top: 50px;
  padding-right: 130px;
}
.page-academie .page-wrapper .part.part3 .bloc-left-bottom {
  padding: 50px 0;
}
.page-academie .page-wrapper .part.part3 .image {
  border: 10px solid #901f1f;
  line-height: 0;
}
@media (max-width:1276px) {
  .page-academie .menu-page {
    padding-left: 40px;
    width: 60%;
  }
  .page-academie .page-wrapper .part.part2 .bloc-left {
    padding-left: 20px;
  }
  .page-academie .page-wrapper .part.part2 .bloc-left .peoples .people {
    margin-right: 10px;
  }
}
@media (max-width:960px) {
  .page-academie .menu-page {
    padding-left: 40px;
    width: 100%;
  }
  .page-academie .page-wrapper .part.part1 .bloc-left {
    padding-left: 50px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-right .image {
    margin-left: 50px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-right .bloc-rouge {
    padding: 50px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-bottom {
    margin-left: 50px;
    padding-left: 30px;
  }
  .page-academie .page-wrapper .part.part2 .bloc-left {
    padding-top: 40px;
  }
  .page-academie .page-wrapper .part.part2 .bloc-left .peoples .people {
    width: calc(50% - 10px);
  }
  .page-academie .page-wrapper .part.part2 .bloc-left .peoples .people img {
    max-width: 100%;
  }
  .page-academie .page-wrapper .part.part2 .bloc-right {
    padding-left: 50px;
    margin-top: 0;
  }
  .page-academie .page-wrapper .part.part2 .bios {
    left: 0;
    right: -44px;
  }
  .page-academie .page-wrapper .part.part3 .bloc-left {
    padding-left: 50px;
  }
}
@media (max-width:767px) {
  .page-academie .menu-page {
    display: none;
  }
  .page-academie .header-page .content {
    padding-top: 370px;
  }
  .page-academie .page-wrapper .part .bloc.bloc-left, .page-academie .page-wrapper .part .bloc.bloc-right {
    width: 100%;
    float: none;
    padding: 20px;
  }
  .page-academie .page-wrapper .part .bloc .number {
    font-size: 221px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-left {
    padding-top: 100px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-left p {
    max-width: 100%;
  }
  .page-academie .page-wrapper .part.part1 .bloc-right {
    margin-top: 20px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-right .image {
    margin-left: 0px;
    margin: 0 -20px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-right .bloc-rouge {
    padding: 20px;
    margin: 0 -20px;
  }
  .page-academie .page-wrapper .part.part1 .bloc-bottom {
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-academie .page-wrapper .part.part2 .bloc-left .peoples .people {
    width: calc(33.3% - 10px);
    margin: 5px;
  }
  .page-academie .page-wrapper .part.part2 .bloc-right {
    padding-top: 100px;
  }
  .page-academie .page-wrapper .part.part2 .bios {
    display: none;
  }
  .page-academie .page-wrapper .part.part2 .bloc-left-image {
    width: 100%;
    margin-top: 0;
    float: left;
    padding-right: 20%;
  }
  .page-academie .page-wrapper .part.part2 .bloc-right-image {
    width: 100%;
    margin-top: 0;
    float: right;
    padding-bottom: 0;
    padding-left: 20%;
  }
  .page-academie .page-wrapper .part.part3 .bloc-left {
    max-width: 100%;
    padding-top: 100px;
  }
  .page-academie .page-wrapper .part.part3 .bloc-left.bloc-left-bottom {
    padding-top: 0;
  }
  .page-academie .page-wrapper .part.part3 .bloc-right-bottom {
    margin-top: 0;
  }
}

.page-vous-accompagner .header-page {
  background-image: url(../img/vous-accompagner/header-new.jpg);
}
.page-vous-accompagner .header-page .content {
  padding-top: 400px;
  max-width: 800px;
}
.page-vous-accompagner .section {
  margin-top: 100px;
}
.page-vous-accompagner .section .left-block {
  float: left;
  width: 50%;
}
.page-vous-accompagner .section .left-block .image {
  margin-right: 40px;
}
.page-vous-accompagner .section .left-block .wrapper-content h2 {
  padding-right: 40px;
}
.page-vous-accompagner .section .left-block .wrapper-content p {
  max-width: 460px;
}
.page-vous-accompagner .section .right-block {
  float: right;
  width: 50%;
}
.page-vous-accompagner .section .right-block .image {
  margin-left: 100px;
}
.page-vous-accompagner .section .right-block .wrapper-content {
  margin-left: 125px;
}
.page-vous-accompagner .section .block .wrapper-content {
  position: relative;
  padding-top: 100px;
}
.page-vous-accompagner .section .block .wrapper-content .back-number {
  font: 400 241px/0.73 "e";
  position: absolute;
  z-index: 0;
  opacity: 0.06;
  top: 0;
  left: -150px;
}
.page-vous-accompagner .section .block .wrapper-content h2 {
  margin-bottom: 50px;
}
.page-vous-accompagner .section .block .wrapper-content p.text-marged-bottom {
  margin-bottom: 60px;
}
.page-vous-accompagner .section .block .wrapper-content + .wrapper-content {
  margin-top: 50px;
}
.page-vous-accompagner .section img {
  width: 100%;
  display: block;
  height: auto;
}
.page-vous-accompagner #financer-votre-formation .block .wrapper-content {
  padding-top: 30px;
}
.page-vous-accompagner #financer-votre-formation .left-block, .page-vous-accompagner #demarches-cnaps .left-block {
  padding: 0px 0px 0px 100px;
}
.page-vous-accompagner #document-prerequis .right-block {
  padding: 0px 100px 0px 0px;
}
.page-vous-accompagner .wrapper--innover {
  background: black url(../img/vous-accompagner/demarches.jpg) right top no-repeat;
  background-size: cover;
  color: white;
}
.page-vous-accompagner .wrapper--innover .block {
  padding: 50px 0px 150px 100px;
}
.page-vous-accompagner .wrapper--innover .block p {
  margin-top: 30px;
  max-width: 460px;
}
@media (max-width:960px) {
  .page-vous-accompagner #financer-votre-formation .left-block, .page-vous-accompagner #demarches-cnaps .left-block {
    padding: 0px 0px 0px 50px;
  }
  .page-vous-accompagner #financer-votre-formation .left-block .back-number, .page-vous-accompagner #demarches-cnaps .left-block .back-number {
    left: -80px;
  }
  .page-vous-accompagner #document-prerequis .right-block {
    padding-right: 50px;
  }
  .page-vous-accompagner .section .right-block .wrapper-content {
    margin-left: 50px;
  }
  .page-vous-accompagner .wrapper--innover .left-block {
    width: 100%;
    padding: 100px;
  }
  .page-vous-accompagner .wrapper--innover .left-block p {
    max-width: 100%;
  }
}
@media (max-width:767px) {
  .page-vous-accompagner .menu-page {
    display: none;
  }
  .page-vous-accompagner .header-page .content {
    padding-top: 250px;
  }
  .page-vous-accompagner .section {
    margin-top: 50px;
  }
  .page-vous-accompagner .section .left-block, .page-vous-accompagner .section .right-block {
    width: 100%;
    float: none;
  }
  .page-vous-accompagner .section .left-block .image, .page-vous-accompagner .section .right-block .image {
    margin-left: 0;
    margin-right: 0;
  }
  .page-vous-accompagner .section .left-block .wrapper-content h2 {
    padding-right: 0;
  }
  .page-vous-accompagner .section .block .wrapper-content .back-number {
    left: -80px;
  }
  .page-vous-accompagner .section .right-block .wrapper-content {
    margin: 0;
  }
  .page-vous-accompagner #financer-votre-formation .right-block {
    display: none;
  }
  .page-vous-accompagner #document-prerequis .left-block {
    display: none;
  }
  .page-vous-accompagner #financer-votre-formation .left-block, .page-vous-accompagner #demarches-cnaps .left-block {
    padding: 0px 20px 0px 20px;
  }
  .page-vous-accompagner #document-prerequis .right-block {
    padding: 0px 20px 0px 20px;
  }
  .page-vous-accompagner #demarches-cnaps .left-block {
    margin-top: 50px;
  }
  .page-vous-accompagner .wrapper--innover {
    background: black;
    color: white;
  }
  .page-vous-accompagner .wrapper--innover .block {
    padding: 50px 20px 150px 20px;
  }
  .page-vous-accompagner .wrapper--innover .block p {
    margin-top: 30px;
    max-width: 100%;
  }
}

.page-single .header-page {
  min-height: 450px;
}
.page-single .header-page .content {
  padding-top: 160px;
  padding-bottom: 0;
}
.page-single .wrapper-text {
  max-width: 640px;
  margin: 90px 0 200px 150px;
  position: relative;
}
.page-single .wrapper-text blockquote {
  margin-left: -79px;
}
.page-single .wrapper-text img {
  max-width: 100%;
}
.page-single:not(.page-interview) .wrapper-text:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #B9B4B4;
  left: -80px;
}
@media (max-width:1276px) {
  .page-single .wrapper-text {
    margin-left: 80px;
  }
  .page-single .wrapper-text blockquote {
    margin-left: -20px;
  }
}
@media (max-width:1024px) {
  .page-single .wrapper-text {
    margin-left: 0;
  }
  .page-single .menu-page {
    display: none;
  }
  .page-single .header-page .content {
    padding-top: 250px;
  }
}
@media (max-width:767px) {
  .page-single .header-page {
    min-height: 350px;
  }
  .page-single .header-page .content {
    padding-top: 260px;
  }
}

.page-interview .header-page--interview {
  min-height: 0 !important;
}
.page-interview .header-page--interview.header-page--interview--has-image .bkg {
  width: 50%;
  float: right;
  margin-right: -20px;
}
.page-interview .header-page--interview.header-page--interview--has-image .bkg:after {
  content: "";
  display: block;
  padding-bottom: 104%;
}
.page-interview .header-page--interview.header-page--interview--has-image .content {
  position: absolute;
  bottom: 0;
}
.page-interview .header-page--interview .content {
  max-width: 650px;
  margin-bottom: 80px;
}
.page-interview .header-page--interview .content h1 {
  margin-bottom: 20px;
}
.page-interview .header-page--interview .content h2 {
  font-weight: 400;
}
.page-interview .wrapper-text {
  max-width: 460px;
}
.page-interviews .interviews-list {
  margin-top: 100px;
  margin-bottom: 200px;
}
.page-interviews .interviews-list-item {
  margin-bottom: 100px;
  overflow: hidden;
}
.page-interviews .interviews-list-item .interviews-list-item-img {
  width: 49%;
  position: relative;
}
.page-interviews .interviews-list-item .interviews-list-item-img:before {
  content: "";
  display: block;
  padding-bottom: 62%;
  background: rgba(211, 211, 211, 0.2);
}
.page-interviews .interviews-list-item .interviews-list-item-img .bkg-cover {
  background-position: top center;
}
.page-interviews .interviews-list-item .interviews-list-item-content {
  width: 51%;
  position: relative;
  padding-top: 30px;
}
.page-interviews .interviews-list-item .interviews-list-item-content h6 {
  margin-top: 5px;
  margin-bottom: 20px;
}
.page-interviews .interviews-list-item:nth-child(odd) .interviews-list-item-img {
  float: left;
}
.page-interviews .interviews-list-item:nth-child(odd) .interviews-list-item-content {
  float: left;
  padding-left: 60px;
  padding-right: 80px;
}
.page-interviews .interviews-list-item:nth-child(even) .interviews-list-item-img {
  float: right;
}
.page-interviews .interviews-list-item:nth-child(even) .interviews-list-item-content {
  float: left;
  padding-left: 80px;
  padding-right: 40px;
}
@media (max-width:1024px) {
  .page-interviews .interviews-list-item:nth-child(odd) .interviews-list-item-content {
    padding-right: 60px;
  }
  .page-interviews .interviews-list-item:nth-child(even) .interviews-list-item-content {
    padding-left: 60px;
  }
}
@media (max-width:767px) {
  .page-interviews .interviews-list {
    max-width: 500px !important;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .page-interviews .interviews-list .interviews-list-item {
    margin-bottom: 60px;
    overflow: visible;
  }
  .page-interviews .interviews-list .interviews-list-item .interviews-list-item-img {
    margin-right: -20px;
    margin-left: -20px;
  }
  .page-interviews .interviews-list .interviews-list-item .interviews-list-item-img, .page-interviews .interviews-list .interviews-list-item .interviews-list-item-content {
    width: auto;
    float: none !important;
  }
  .page-interviews .interviews-list .interviews-list-item .interviews-list-item-content {
    padding-top: 20px;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

.page-nous-contacter .header-page {
  background-image: url(../img/nous-contacter/header.jpg);
}
.page-nous-contacter .header-page .content {
  padding-top: 400px;
  max-width: 500px;
}
.page-nous-contacter .tabs-container {
  margin: 100px 0 115px;
  border-left: solid 1px #B9B4B4;
  padding: 0 80px 90px;
}
.page-nous-contacter .tabs-container .tab {
  overflow: hidden;
  margin-bottom: 35px;
}
.page-nous-contacter .tabs-container .tab .tab-link {
  float: left;
  cursor: pointer;
  margin-right: 38px;
  transition: 0.3s;
  opacity: 0.13;
  margin-top: 12px;
}
.page-nous-contacter .tabs-container .tab .tab-link.current {
  opacity: 1;
  font-size: 42px;
  margin-top: 0;
}
.page-nous-contacter .tabs-container .tab .tab-link:hover {
  opacity: 1;
}
.page-nous-contacter .tabs-container .tab-content {
  display: none;
  border-top: none;
  animation: fadeEffect 1s;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 {
  margin-left: -0.5%;
  max-width: 528px;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row {
  overflow: hidden;
  margin-bottom: 15px;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label {
  display: block;
  margin: 0 1%;
  width: 98%;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label input, .page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label textarea, .page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label select {
  font: 400 16px/24px "e";
  border: 1px solid #979797;
  padding: 11px 16px 11px;
  width: 100%;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label .select-container {
  position: relative;
  display: block;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label .select-container select:hover {
  cursor: pointer;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label .select-container:after {
  z-index: -1;
  position: absolute;
  top: 22px;
  right: 15px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #901f1f;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label span.wpcf7-not-valid-tip {
  color: #901f1f;
  font-size: 12px;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label.half {
  float: left;
  width: 48%;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form .btn {
  margin: 25px 0 0;
}
.page-nous-contacter .tabs-container .tab-content .wpcf7 form div.wpcf7-validation-errors {
  border: none;
  background-color: #901f1f;
  color: white;
  padding: 26px 22px;
}
.page-nous-contacter .tabs-container .tab-content.current {
  display: block;
}
@media (max-width:767px) {
  .page-nous-contacter .header-page {
    background-image: url(../img/nous-contacter/header.jpg);
  }
  .page-nous-contacter .header-page .content {
    padding-top: 360px;
  }
  .page-nous-contacter .menu-page {
    display: none;
  }
  .page-nous-contacter .tabs-container {
    padding: 0 20px;
    max-width: 500px;
    border: none;
    margin: 55px auto 115px;
  }
  .page-nous-contacter .tabs-container .tab {
    overflow: hidden;
    margin-bottom: 35px;
  }
  .page-nous-contacter .tabs-container .tab .tab-link {
    font-size: 20px;
    line-height: 25px;
    margin-right: 14px;
    margin-top: 8px;
  }
  .page-nous-contacter .tabs-container .tab .tab-link.current {
    font-size: 28px;
    line-height: 36px;
    margin-top: 0;
  }
  .page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label.half {
    float: none;
    width: 98%;
  }
  .page-nous-contacter .tabs-container .tab-content .wpcf7 form .row label.half:first-of-type {
    margin-bottom: 15px;
  }
}

.pagination {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.pagination:empty {
  display: none;
}
.pagination h2 {
  display: none;
}
.pagination .prev, .pagination .next {
  display: none;
}
.pagination .page-numbers {
  padding-right: 7px;
  margin-right: 2px;
  position: relative;
}
.pagination .page-numbers:after {
  content: ".";
  position: absolute;
  right: 0;
}
.pagination .page-numbers.current {
  font-weight: 700;
}

.page-metiers h2, .page-metiers h3 {
  margin-bottom: 10px;
}
.page-metiers .intro p {
  color: #901f1f;
  padding-left: 50px;
  border-left: 1px solid #901f1f;
  max-width: 720px;
  margin: 50px 50px 50px 0;
}
.page-metiers .focus .photo {
  float: right;
  width: 40%;
}
.page-metiers .focus .photo img {
  max-width: 100%;
}
.page-metiers .focus .interview {
  float: left;
  width: 50%;
  margin-right: 10%;
}
.page-metiers .focus .interview p {
  max-width: 450px;
}
.page-metiers .focus .interview .question {
  margin-top: 50px;
}
.page-metiers .focus .interview .question .titre {
  font: 700 28px/1 "e";
  margin-bottom: 10px;
}
.page-metiers .focus .metiers-content {
  background: black;
  color: white;
  margin-top: 50px;
}
.page-metiers .focus .metiers-content h2 {
  margin-bottom: 30px;
}
.page-metiers .focus .metiers-content .metiers {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.page-metiers .focus .metiers-content .metiers .metier {
  width: calc(50% - 50px);
  float: left;
}
.page-metiers .focus .metiers-content .metiers .metier:nth-child(2) {
  margin-right: 100px;
}
@media (max-width:767px) {
  .page-metiers .menu-page {
    display: none;
  }
  .page-metiers .intro p {
    margin-right: 0;
    padding-left: 20px;
  }
  .page-metiers .focus .photo, .page-metiers .focus .interview {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .page-metiers .focus .metiers-content .metiers {
    padding: 30px 20px;
  }
  .page-metiers .focus .metiers-content .metiers .metier {
    width: 100%;
    float: none;
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
}

.page-404 {
  background: black;
  color: white;
  text-align: center;
  padding: 100px 0px;
}
.page-404 h1 {
  font-size: 125px;
}
.page-404 p {
  margin: 30px 0px;
  font: 700 42px/1 "e";
}

.faq-single h1 {
  margin-bottom: 30px;
}
.faq-single .menu-page {
  display: none;
}
.faq-single .wrapper-text {
  width: calc(68% - 200px);
  float: left;
}
.faq-single .faq-col-right {
  float: left;
  width: 32%;
  padding-left: 80px;
  margin: 90px 0 200px 0;
}
.faq-single .faq-col-right ul {
  margin-top: 20px;
}
.faq-single .faq-col-right li {
  margin-bottom: 20px;
}
.faq-single .faq-col-right a {
  border-bottom: 1px solid #901f1f;
}
.faq-single .faq-col-right a:hover {
  color: #901f1f;
}
@media (max-width:1276px) {
  .faq-single .wrapper-text {
    width: calc(68% - 80px);
  }
}
@media (max-width:1024px) {
  .faq-single .wrapper-text {
    width: 68%;
  }
  .faq-single .faq-col-right {
    padding-left: 40px;
  }
}
@media (max-width:960px) {
  .faq-single .wrapper-text, .faq-single .faq-col-right {
    width: 100%;
    float: none;
  }
  .faq-single .faq-col-right {
    padding-left: 0;
  }
}

.faq-archive .text a {
  border-bottom: 1px solid #901f1f;
  line-height: 1.6;
}
.faq-archive .text a:hover {
  color: #901f1f;
}

.page-template-tmpl-agenda .page-wrapper {
  margin-top: 100px;
}
.page-template-tmpl-agenda section {
  margin-bottom: 100px;
}
.page-template-tmpl-agenda .main-category-header {
  margin-bottom: 60px;
}
.page-template-tmpl-agenda .main-category-header p {
  margin-bottom: 30px;
}
.page-template-tmpl-agenda h3 svg {
  margin-right: 20px;
  fill: #901f1f;
}

.tooltip {
  z-index: 20;
  pointer-events: none;
  background: white;
  border: 1px solid black;
  padding: 2px 5px;
}
.tooltip:before {
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid white;
  border-left: 5px solid transparent;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.page-template-tmpl-agenda .tooltip[x-placement=top]::before {
  top: auto;
  bottom: -5px;
  border-right: 5px solid transparent;
  border-bottom: none;
  border-top: 5px solid white;
  border-left: 5px solid transparent;
}

.single-formation .tooltip {
  margin-top: 20px;
}

.agenda {
  margin-bottom: 60px;
}
.agenda .selectFormation {
  font: 700 16px/1.286 "e";
  position: relative;
  padding-bottom: 5px;
  padding-right: 14px;
  display: inline-block;
  margin: 10px 0;
}
.agenda .selectFormation select, .agenda .selectFormation option {
  font: 700 16px/1.286 "e";
}
.agenda .selectFormation:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #901f1f transparent transparent transparent;
  position: absolute;
  top: 6px;
  right: 0px;
}
.agenda .selectFormation:after {
  content: "";
  background: #901f1f;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.agenda .session {
  padding-left: 5px;
  position: relative;
  margin: 10px 0px;
  display: flex;
  justify-content: space-between;
}
.agenda .session.hide {
  display: none;
}
.agenda .session:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #901f1f;
  position: absolute;
  left: 0;
  top: 17px;
}
.agenda .session .date {
  padding: 7px 12px;
  font-weight: 600;
}
.agenda .session .places-dispo {
  color: #901f1f;
  border: 1px solid #901f1f;
  padding: 5px 10px;
  display: inline-block;
}
.agenda .session .places-dispo.complet {
  background: #000000;
  border-color: #000000;
  color: white;
}
.agenda .seeall.hide {
  display: none;
}

.page-template-tmpl-agenda .agenda .session, .page-template-tmpl-agenda .agenda .seeall {
  display: none;
}
.page-template-tmpl-agenda .agenda .session.show, .page-template-tmpl-agenda .agenda .seeall.show {
  display: flex;
}
.page-template-tmpl-agenda .agenda .seeall.show {
  display: inline-block;
}

.planning .fc-timeline .fc-resource-area th, .planning .fc-timeline .fc-resource-area td, .fc .fc-timeline .fc-resource-area th, .fc .fc-timeline .fc-resource-area td {
  white-space: initial;
}
.planning .fc-timeline .fc-resource-area .fc-expander + .fc-cell-text, .fc .fc-timeline .fc-resource-area .fc-expander + .fc-cell-text {
  color: #901f1f;
  padding-left: 10px;
}
.planning .fc-timeline .fc-resource-area .fc-icon, .fc .fc-timeline .fc-resource-area .fc-icon {
  height: 12px;
  width: 12px;
}
.planning .fc-timeline .fc-resource-area .fc-cell-text, .fc .fc-timeline .fc-resource-area .fc-cell-text {
  font-size: 12px;
  font-weight: bold;
  padding-left: 10px;
  width: calc(100% - 40px);
}
.planning .fc-timeline .fc-resource-area .fc-cell-text a:hover, .fc .fc-timeline .fc-resource-area .fc-cell-text a:hover {
  color: #901f1f;
}
.planning .fc-timeline .fc-resource-area .fc-expander, .fc .fc-timeline .fc-resource-area .fc-expander {
  position: relative;
  opacity: 1;
}
.planning .fc-timeline .fc-resource-area .fc-icon-plus-square:before, .fc .fc-timeline .fc-resource-area .fc-icon-plus-square:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #901f1f;
  position: absolute;
  top: 6px;
  left: 10px;
}
.planning .fc-timeline .fc-resource-area .fc-icon-minus-square:before, .fc .fc-timeline .fc-resource-area .fc-icon-minus-square:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #901f1f transparent transparent transparent;
  position: absolute;
  top: 9px;
  left: 5px;
}
.planning .fc-button-primary, .fc .fc-button-primary {
  background: white;
  color: #000000;
}
.planning .fc-button-primary:not(:disabled):active, .planning .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active, .fc .fc-button-primary:not(:disabled).fc-button-active {
  background: white;
  color: grey;
}
.planning .fc-widget-header .fc-sticky, .fc .fc-widget-header .fc-sticky {
  color: #901f1f;
  font: 600 18px/1 "e";
  text-transform: capitalize;
}
.planning .fc-toolbar.fc-header-toolbar, .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
}
.planning .fc-prev-button, .planning .fc-next-button, .fc .fc-prev-button, .fc .fc-next-button {
  background: url(../svg/rounded-arrow-left.svg) center center no-repeat;
  margin: 20px 10px 20px 0;
  width: 40px;
  height: 40px;
  border: 0;
  /*
  border: 1px solid $color-grey;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  padding: 0;
  */
}
.planning .fc-prev-button .fc-icon, .planning .fc-next-button .fc-icon, .fc .fc-prev-button .fc-icon, .fc .fc-next-button .fc-icon {
  color: #000000;
  display: none;
}
.planning .fc-next-button, .fc .fc-next-button {
  transform: rotate(180deg);
}

:root {
  --ld-color-primitives-blue-100: rgb(92.6711484594%, 65.956302521%, 65.956302521%);
  --ld-color-primitives-blue-150: rgb(89.1282913165%, 49.4991596639%, 49.4991596639%);
  --ld-color-primitives-blue-175: rgb(85.5854341737%, 33.0420168067%, 33.0420168067%);
  --ld-color-primitives-blue-200: rgb(81.156302521%, 17.4711484594%, 17.4711484594%);
  --ld-color-primitives-blue-500: #901f1f;
  --ld-color-primitives-blue-800: rgb(40.0134453782%, 8.6140056022%, 8.6140056022%);
}

.page-archive-sfwd-courses,
.page-single-sfwd-courses,
.page-single-sfwd-lessons,
.page-single-sfwd-quiz {
  padding-bottom: 100px;
}
.page-archive-sfwd-courses .page-wrapper,
.page-single-sfwd-courses .page-wrapper,
.page-single-sfwd-lessons .page-wrapper,
.page-single-sfwd-quiz .page-wrapper {
  margin-top: 60px;
}

.page-archive-sfwd-courses .courses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.page-archive-sfwd-courses .course-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.page-archive-sfwd-courses .course-item h2 {
  margin: 16px 0 8px;
  font: 700 20px/1.2 "e";
}
.page-archive-sfwd-courses .course-item h2 a {
  color: inherit;
  text-decoration: none;
}
.page-archive-sfwd-courses .course-item h2 a:hover {
  color: #901f1f;
}
.page-archive-sfwd-courses .course-item p {
  color: #666;
  margin-bottom: 16px;
}
.page-archive-sfwd-courses .course-item .btn {
  display: inline-block;
  padding: 10px 24px;
  background: #901f1f;
  color: white;
  text-decoration: none;
  font: 500 14px/1 "e";
}
.page-archive-sfwd-courses .course-item .btn:hover {
  background: rgb(40.0134453782%, 8.6140056022%, 8.6140056022%);
}
@media (max-width:1024px) {
  .page-archive-sfwd-courses .courses-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:767px) {
  .page-archive-sfwd-courses .courses-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.page-single-sfwd-courses .wrapper-text {
  max-width: 860px;
}
.page-single-sfwd-courses .text {
  font-size: 16px;
  line-height: 1.7;
}

.sat-profile-courses-link {
  margin: 32px 0;
}
.sat-profile-courses-link a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 37px;
  background-color: black;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s linear;
}
.sat-profile-courses-link a:hover {
  background-color: #901f1f;
}

.sat-student-login {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}
.sat-student-login__card {
  width: 100%;
  max-width: 380px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.08);
  text-align: center;
}
.sat-student-login__logo {
  width: 64px;
  margin-bottom: 24px;
}
.sat-student-login__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
}
.sat-student-login__courses-link {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
}
.sat-student-login__courses-link a {
  color: #901f1f;
}
.sat-student-login #loginform {
  text-align: left;
}
.sat-student-login #loginform p {
  margin-bottom: 20px;
}
.sat-student-login #loginform label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.sat-student-login #loginform input[type=text],
.sat-student-login #loginform input[type=password] {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  transition: border-color 0.2s linear;
}
.sat-student-login #loginform input[type=text]:focus,
.sat-student-login #loginform input[type=password]:focus {
  border-color: #901f1f;
}
.sat-student-login #loginform .login-remember {
  font-size: 13px;
}
.sat-student-login #loginform .login-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 0;
}
.sat-student-login #loginform .login-remember input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}
.sat-student-login #loginform .login-submit {
  margin-bottom: 0;
}
.sat-student-login #loginform .login-submit input.button.button-primary {
  width: 100%;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 25px;
  border: none;
  border-radius: 37px;
  background-color: black;
  color: white;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s linear;
}
.sat-student-login #loginform .login-submit input.button.button-primary:hover {
  background-color: #901f1f;
}
.sat-student-login__pwd-wrap {
  position: relative;
}
.sat-student-login__pwd-wrap input {
  padding-right: 44px !important;
}
.sat-student-login__pwd-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
}
.sat-student-login__pwd-toggle.is-visible {
  color: #901f1f;
}

@media (max-width:767px) {
  .sat-student-login {
    padding: 40px 16px;
  }
  .sat-student-login__card {
    padding: 32px 24px;
  }
}
.horz-scroller-wrapper .a-horz-scroller-bar-wrapper {
  position: relative;
  width: 100%;
  border-bottom: 1px solid white;
  overflow: hidden;
  height: 5px;
}
.horz-scroller-wrapper .a-horz-scroller-bar-wrapper > span {
  position: absolute;
  height: 100%;
  left: 0;
  background-color: white;
  bottom: 0;
}
.horz-scroller-wrapper.a-horz-scroller--no-scroll .a-horz-scroller-arrow, .horz-scroller-wrapper.a-horz-scroller--no-scroll .a-horz-scroller-bar-wrapper {
  display: none;
}
.horz-scroller-wrapper .scroller-mask {
  overflow: hidden;
}
.horz-scroller-wrapper .a-horz-scroller-arrow {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 0;
}
.horz-scroller-wrapper .a-horz-scroller-arrow.a-horz-scroller-arrow-right svg {
  transform: rotate(180deg);
}
.horz-scroller-wrapper .a-horz-scroller {
  overflow: hidden;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.horz-scroller-wrapper .a-horz-scroller-arrow {
  position: absolute;
  top: 0;
}
.horz-scroller-wrapper .a-horz-scroller-arrow.a-horz-scroller-arrow-right {
  left: 50px;
}

.home-natural-form--wrapper {
  position: relative;
  background: black;
}
.home-natural-form--wrapper:before {
  content: "";
  width: calc(100% - 140px);
  background: white;
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 0px;
}
.home-natural-form--wrapper .content {
  padding: 40px 90px;
  position: relative;
}

.home-natural-form h3 {
  margin-bottom: 24px;
}
.home-natural-form .phrase + .phrase {
  margin-top: 12px;
}
.home-natural-form .btn {
  margin-top: 40px;
  margin-bottom: 0;
}

@media (max-width:1276px) {
  .home-natural-form--wrapper .content {
    padding: 40px 40px 40px 170px;
  }
}
@media (max-width:767px) {
  .home-natural-form--wrapper {
    position: relative;
    z-index: 100;
    overflow: visible;
    margin-bottom: 50px;
  }
  .home-natural-form--wrapper .btn {
    position: absolute;
    bottom: 0;
    margin: 0;
    transform: translateY(50%);
  }
  .home-natural-form--wrapper:before {
    display: none;
  }
  .home-natural-form--wrapper .content {
    background: white;
    padding: 40px 20px 90px 20px;
  }
}
.custom-select-wrapper select {
  display: none;
}

.custom-select-value {
  cursor: pointer;
  border-bottom: 4px solid #901f1f;
  transition: color 0.1s linear;
}
.custom-select-value:hover {
  color: #901f1f;
  /*
  border-bottom-color: black;

  &:after {
      border-top-color: black;
  }*/
}
.custom-select-value:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 16px;
  border-top: 7px solid #901f1f;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.custom-select-popin-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s;
  background: rgba(0, 0, 0, 0.3);
}
.custom-select-popin-overlay.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s linear 0s, visibility 0s linear 0s;
}
.custom-select-popin-overlay.show .custom-select-popin {
  transform: translate(-50%, -50%) scale(1);
}
.custom-select-popin-overlay .custom-select-popin {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 10px 0;
  display: inline-block;
  transform: translate(-50%, -50%) scale(0.8);
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.75);
  transition: transform cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}
.custom-select-popin-overlay .custom-select-popin .custom-select-option-item {
  font: 200 20px/1.286 "e";
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.custom-select-popin-overlay .custom-select-popin .custom-select-option-item:hover, .custom-select-popin-overlay .custom-select-popin .custom-select-option-item.selected {
  background: rgba(0, 0, 0, 0.03);
}
.custom-select-popin-overlay .custom-select-popin .custom-select-option-item.hide {
  display: none;
}
.custom-select-popin-overlay .custom-select-popin .custom-select-option-item:last-child {
  border-bottom: none;
}

.popin-overlay {
  position: fixed;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s linear 0s, visibility 0s linear 0.2s;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popin-overlay.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s linear 0s, visibility 0s linear 0s;
}
.popin-overlay .popin-scroll-wrapper {
  padding: 50px 50px 60px 50px;
  overflow: hidden;
}
.popin-overlay .popin-wrapper {
  max-width: 680px;
  max-height: 100vh;
  width: 100%;
  background: white;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.ios .popin-overlay .popin-wrapper {
  overflow-y: scroll;
}
.popin-overlay .popin-close {
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: 0;
  padding: 20px 15px;
  content: "";
  background: url(../svg/plus.svg) center center no-repeat;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
}
.popin-overlay .popin-inner {
  margin: auto;
  max-width: 550px;
  position: relative;
}
.popin-overlay .popin-inner .popin-title {
  text-align: center;
  margin-bottom: 15px;
}
.popin-overlay .popin-inner .popin-title h4 {
  color: #901f1f;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.popin-overlay .popin-inner .popin-title h4:after {
  content: "";
  background: #901f1f;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
}
.popin-overlay .popin-inner .popin-title h3 {
  font-size: 35px;
}
.popin-overlay .popin-inner .text {
  margin-top: 30px;
}
.popin-overlay .popin-inner .btn {
  margin-right: 30px;
}
.popin-overlay .popin-inner .popin-title {
  font: 700 28px/1.143 "e";
}
.popin-overlay .popin-cookie-cta-wrapper {
  text-align: center;
}
.popin-overlay .popin-cookie-cta-wrapper a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  padding: 10px 57px 10px 15px;
}
.popin-overlay .popin-cookie-cta-wrapper a span svg {
  width: 40px;
}

@media (max-width:767px) {
  .popin-overlay .popin-scroll-wrapper {
    padding: 50px 20px;
  }
  .popin-overlay .popin-scroll-wrapper .popin-cookie-cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: white;
    box-shadow: 2px -2px 30px -8px rgba(0, 0, 0, 0.3);
  }
  .popin-overlay .popin-scroll-wrapper .popin-cookie-cta-wrapper a {
    /*margin: 0;*/
    margin-right: 10px;
    margin-left: 0;
    font-size: 15px;
  }
}
