/* box-sizing */
.fr-window,
.fr-window [class^="fr-"],
.fr-overlay,
.fr-overlay [class^="fr-"],
.fr-spinner,
.fr-spinner [class^="fr-"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fr-window {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font: 13px/20px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, sans-serif;
  /* Chrome hack, this fixes a visual glitch when quickly toggling a video */
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

/* z-index */
.fr-overlay {
  z-index: 99998;
}

.fr-window {
  z-index: 99999;
}

.fr-spinner {
  z-index: 100000;
}

/* overlay */
.fr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.fr-overlay-background {
  float: left;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  filter: alpha(opacity=70);
}

.fr-overlay-ui-fullclick .fr-overlay-background {
  background: #292929;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* mobile touch has position:absolute to allow zooming */
.fr-window.fr-mobile-touch,
.fr-overlay.fr-mobile-touch {
  position: absolute;
  overflow: visible;
}

/* some properties on the window are used to toggle things
 * like margin and the fullclick mode,
 * we reset those properties after measuring them
 */
.fr-measured {
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.fr-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-page {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fr-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fr-hovering-clickable .fr-container {
  cursor: pointer;
}

/*
   padding:
   youtube & vimeo always have buttons on the outside
   side button = 72 = 54 + (2 * 9 margin)
   close button = 48
*/
/* padding ui:inside */
.fr-ui-inside .fr-container {
  padding: 50px;
}

.fr-ui-inside.fr-no-sides .fr-container {
  padding: 20px;
}

.fr-ui-outside .fr-container {
  padding: 20px 82px;
}

.fr-ui-outside.fr-no-sides .fr-container {
  padding: 20px 48px;
}

@media all and (max-width: 767px) {
  .fr-ui-inside .fr-container {
    padding: 100px;
  }
}

/*
@media all and (max-width: 700px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 700px) {
  .fr-ui-inside .fr-container {
    padding: 12px 12px;
  }

  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 12px;
  }

  .fr-ui-outside .fr-container {
    padding: 12px 72px;
  }

  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 12px 48px;
  }
}
@media all and (max-width: 500px) and (orientation: portrait),
all and (orientation: landscape) and (max-height: 500px) {
  .fr-ui-inside .fr-container {
    padding: 0px 0px;
  }

  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 0px;
  }

  .fr-ui-outside .fr-container {
    padding: 0px 72px;
  }

  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 0px 48px;
  }
}
*/
.fr-ui-fullclick .fr-container {
  padding: 0;
}

.fr-ui-fullclick.fr-no-sides .fr-container {
  padding: 0;
}

.fr-ui-fullclick.fr-type-video .fr-container {
  padding: 0px 62px;
}

.fr-ui-fullclick.fr-no-sides.fr-type-video .fr-container {
  padding: 48px 0px;
}

.fr-overflow-y .fr-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fr-content,
.fr-content-background {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: visible;
}

.fr-content-element {
  float: left;
  width: 100%;
  height: 100%;
}

.fr-content-background {
  background: #101010;
}

.fr-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #efefef;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.fr-info-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  line-height: 1%;
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}

.fr-ui-inside .fr-info-background {
  filter: alpha(opacity=80);
  opacity: .8;
  zoom: 1;
}

.fr-ui-outside .fr-info-background {
  background: #0d0d0d;
}

.fr-content .fr-info {
  top: auto;
  bottom: 0;
}

.fr-info-padder {
  display: block;
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: auto;
}

.fr-caption {
  width: auto;
  display: inline;
  white-space: wrap;
}

.fr-position {
  color: #b3b3b3;
  float: right;
  line-height: 21px;
  opacity: 0.99;
  position: relative;
  text-align: right;
  margin-left: 15px;
  white-space: nowrap;
}

.fr-position-outside,
.fr-position-inside {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 12px;
  width: auto;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 20px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  display: none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.fr-position-inside {
  border: 0;
}

.fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  filter: alpha(opacity=80);
  opacity: .8;
  zoom: 1;
}

.fr-position-text {
  color: #b3b3b3;
}

.fr-position-outside .fr-position-text,
.fr-position-inside .fr-position-text {
  float: left;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.fr-ui-outside .fr-position-outside {
  display: block;
}

.fr-ui-outside .fr-info .fr-position {
  display: none;
}

.fr-ui-inside.fr-no-caption .fr-position-inside {
  display: block;
}

.fr-info a,
.fr-info a:hover {
  color: #ccc;
  border: 0;
  background: none;
  text-decoration: underline;
}

.fr-info a:hover {
  color: #eee;
}

.fr-ui-outside.fr-no-caption .fr-info {
  display: none;
}

.fr-ui-inside.fr-no-caption .fr-caption {
  display: none;
}

.fr-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.fr-stroke-vertical {
  width: 1px;
  height: 100%;
}

.fr-stroke-horizontal {
  padding: 0 1px;
}

.fr-stroke-right {
  left: auto;
  right: 0;
}

.fr-stroke-bottom {
  top: auto;
  bottom: 0;
}

.fr-stroke-color {
  float: left;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.fr-info .fr-stroke-color {
  background: rgba(80, 80, 80, 0.3);
}

.fr-ui-outside.fr-has-caption .fr-content .fr-stroke-bottom {
  display: none;
}

.fr-ui-fullclick .fr-stroke {
  display: none;
}

.fr-ui-fullclick .fr-content-background {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fr-info .fr-stroke-top {
  display: none;
}

.fr-side {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 72px;
  margin: 0 9px;
  margin-top: -36px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  zoom: 1;
}

.fr-side-previous {
  left: 0;
}

.fr-side-next {
  right: 0;
  left: auto;
}

.fr-side-disabled {
  cursor: default;
}

.fr-side-hidden {
  display: none !important;
}

.fr-side-button {
  float: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.fr-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010;
  background-color: #ccc;
}

.fr-side-button-icon {
  float: left;
  position: relative;
  height: 100%;
  width: 100%;
  zoom: 1;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-side {
    width: 54px;
    height: 60px;
    margin: 0;
    margin-top: -30px;
  }
  .fr-side-button {
    width: 48px;
    height: 60px;
    margin: 0 3px;
  }
}

.fr-close {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.fr-close-background,
.fr-close-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 26px;
  width: 26px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.fr-close-background {
  background-color: #000;
}

.fr-thumbnails {
  position: absolute;
  overflow: hidden;
}

.fr-thumbnails-disabled .fr-thumbnails {
  display: none !important;
}

.fr-thumbnails-horizontal .fr-thumbnails {
  width: 100%;
  height: 12%;
  min-height: 74px;
  max-height: 160px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.fr-thumbnails-vertical .fr-thumbnails {
  height: 100%;
  width: 10%;
  min-width: 74px;
  max-width: 160px;
  left: 0;
}

.fr-thumbnails,
.fr-thumbnails * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-thumbnails-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
}

.fr-thumbnails-vertical .fr-thumbnails-wrapper {
  top: 50%;
  left: 0;
}

.fr-thumbnails-slider {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  zoom: 1;
}

.fr-thumbnails-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.fr-thumbnails-thumbs {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}

.fr-thumbnails-slide {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.fr-thumbnail-frame {
  position: absolute;
  zoom: 1;
  overflow: hidden;
}

.fr-thumbnail {
  position: absolute;
  width: 30px;
  height: 100%;
  left: 50%;
  top: 50%;
  zoom: 1;
  cursor: pointer;
  margin: 0 10px;
}

.fr-ltIE9 .fr-thumbnail * {
  overflow: hidden;
  z-index: 1;
  zoom: 1;
}

.fr-thumbnail-wrapper {
  position: relative;
  background: #161616;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  display: inline;
  z-index: 0;
}

.fr-thumbnail-overlay {
  cursor: pointer;
}

.fr-thumbnail-active .fr-thumbnail-overlay {
  cursor: default;
}

.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  overflow: hidden;
  border-style: solid;
  border-color: transparent;
}

.fr-ltIE9 .fr-thumbnail-overlay-border {
  border-width: 0 !important;
}

.fr-thumbnail .fr-thumbnail-image {
  position: absolute;
  filter: alpha(opacity=85);
  opacity: .85;
  max-width: none;
}

/*
.fr-thumbnail:hover .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=99);
  opacity: .99;
}

.fr-thumbnail-active .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=35);
  opacity: .35;
}
*/
.fr-thumbnail-active {
  cursor: default;
}

.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-thumbnail-loading-background {
  background-color: #161616;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: .8;
  position: relative;
  float: left;
}

.fr-thumbnail-loading-icon {
  display: none;
}

.fr-thumbnail-error .fr-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
}

.fr-thumbnails-side {
  float: left;
  height: 100%;
  width: 28px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}

.fr-thumbnails-side-previous {
  margin-left: 12px;
}

.fr-thumbnails-side-previous .fr-thumbnails-side-button-icon::before {
  content: '\e804';
}

.fr-thumbnails-side-next {
  margin-right: 12px;
}

.fr-thumbnails-side-next .fr-thumbnails-side-button-icon::before {
  content: '\e898';
}

.fr-thumbnails-side-previous .fr-thumbnails-side-button-icon::before,
.fr-thumbnails-side-next .fr-thumbnails-side-button-icon::before {
  font-family: fonticons;
  color: #FFFFFF;
  font-size: 15px;
  display: block;
  height: 100%;
  margin-top: 6px;
  margin-left: 11px;
}

.fr-thumbnails-vertical .fr-thumbnails-side {
  height: 28px;
  width: 100%;
  margin: 10px 0;
}

.fr-thumbnails-vertical .fr-thumbnails-side-previous {
  margin-top: 20px;
}

.fr-thumbnails-vertical .fr-thumbnails-side-next {
  margin-bottom: 20px;
}

.fr-thumbnails-side-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.fr-thumbnails-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #922743;
  cursor: pointer;
}

.fr-thumbnails-side-button-disabled * {
  cursor: default;
  opacity: 0.2;
}

.fr-thumbnails-side-button-icon {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame {
  clear: both;
}

.fr-window-ui-fullclick .fr-thumbnails {
  background: #090909;
}

.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-horizontal .fr-info .fr-stroke-bottom {
  display: block !important;
}

.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-vertical .fr-info .fr-stroke-left {
  display: block !important;
}

.fr-thumbnails-horizontal .fr-thumbnails-thumbs {
  padding: 12px 5px;
}

.fr-thumbnails-vertical .fr-thumbnails-thumbs {
  padding: 5px 12px;
}

.fr-thumbnails-measured .fr-thumbnails-thumbs {
  padding: 0 !important;
}

@media all and (min-height: 700px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 16px 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 16px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 16px;
  }
}

@media all and (min-height: 980px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 20px 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 20px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 20px;
  }
}

@media all and (min-width: 1200px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 8px 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 16px;
  }
}

@media all and (min-width: 1800px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 10px 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 10px 0;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 500px) {
  .fr-thumbnails-horizontal .fr-thumbnails {
    display: none !important;
  }
}

@media all and (max-width: 700px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-thumbnails-vertical .fr-thumbnails {
    display: none !important;
  }
}

@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-page {
    min-width: 100%;
  }
  .fr-page {
    min-height: 100%;
  }
}

.fr-window-ui-fullclick .fr-side-next-outside,
.fr-window-ui-fullclick .fr-side-previous-outside,
.fr-window-ui-fullclick .fr-close-outside,
.fr-window-ui-fullclick .fr-content .fr-side-next,
.fr-window-ui-fullclick .fr-content .fr-side-previous,
.fr-window-ui-fullclick .fr-content .fr-close,
.fr-window-ui-fullclick .fr-content .fr-info,
.fr-window-ui-outside .fr-side-next-fullclick,
.fr-window-ui-outside .fr-side-previous-fullclick,
.fr-window-ui-outside .fr-close-fullclick,
.fr-window-ui-outside .fr-content .fr-side-next,
.fr-window-ui-outside .fr-content .fr-side-previous,
.fr-window-ui-outside .fr-content .fr-close,
.fr-window-ui-outside .fr-content .fr-info,
.fr-window-ui-inside .fr-page > .fr-info,
.fr-window-ui-inside .fr-side-next-fullclick,
.fr-window-ui-inside .fr-side-previous-fullclick,
.fr-window-ui-inside .fr-close-fullclick,
.fr-window-ui-inside .fr-side-next-outside,
.fr-window-ui-inside .fr-side-previous-outside,
.fr-window-ui-inside .fr-close-outside {
  display: none !important;
}

/*
.fr-toggle-ui {
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}


.fr-visible-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-visible-inside-ui .fr-ui-inside .fr-toggle-ui {
  opacity: 1;
}

.fr-hidden-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.fr-ltIE9.fr-hidden-fullclick-ui .fr-box>.fr-toggle-ui,
.fr-ltIE9.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  display: none;
}
*/
.fr-spinner {
  position: fixed;
  width: 52px;
  height: 52px;
  background: #101010;
  background: rgba(16, 16, 16, 0.85);
  border-radius: 5px;
}

.fr-spinner div {
  position: absolute;
  top: 0;
  left: 0;
  height: 64%;
  width: 64%;
  margin-left: 18%;
  margin-top: 18%;
  opacity: 1;
  -webkit-animation: fresco-12 1.2s infinite ease-in-out;
  animation: fresco-12 1.2s infinite ease-in-out;
}

.fr-spinner div:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  background: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fr-spinner div.fr-spin-1 {
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.fr-spinner div.fr-spin-2 {
  -ms-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.fr-spinner div.fr-spin-3 {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.fr-spinner div.fr-spin-4 {
  -ms-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.fr-spinner div.fr-spin-5 {
  -ms-transform: rotate(150deg);
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.fr-spinner div.fr-spin-6 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.fr-spinner div.fr-spin-6 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.fr-spinner div.fr-spin-7 {
  -ms-transform: rotate(210deg);
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.fr-spinner div.fr-spin-8 {
  -ms-transform: rotate(240deg);
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.fr-spinner div.fr-spin-9 {
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.fr-spinner div.fr-spin-10 {
  -ms-transform: rotate(300deg);
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.fr-spinner div.fr-spin-11 {
  -ms-transform: rotate(330deg);
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.fr-spinner div.fr-spin-12 {
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fr-thumbnail-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
}

.fr-thumbnail-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 8px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  -webkit-animation: fr-thumbnail-spin 1.1s infinite linear;
  animation: fr-thumbnail-spin 1.1s infinite linear;
}

.fr-thumbnail-spinner-spin,
.fr-thumbnail-spinner-spin:after {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

@-webkit-keyframes fr-thumbnail-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fr-thumbnail-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fr-error {
  float: left;
  position: relative;
  background-color: #ca3434;
  width: 160px;
  height: 160px;
}

.fr-error-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
}

/*
CUSTOM THEME
*/
.fr-ui-inside .fr-container {
  padding: 100px 265px;
}

.fr-window-skin-custom.fr-showing-type-image .fr-side.fr-side-disabled {
  opacity: 0.2;
}

.fr-window-skin-custom.fr-showing-type-video .fr-side.fr-side-disabled {
  opacity: 0;
}

.fr-window-skin-custom .fr-side {
  width: 30px;
  height: 50px;
}

.fr-window-skin-custom .fr-side-button-background {
  background-color: #922743;
}

.fr-window-skin-custom .fr-side-previous {
  left: -45px;
}

.fr-window-skin-custom .fr-side-next {
  right: -45px;
}

.fr-window-skin-custom .fr-side-previous .fr-side-button-icon::before,
.fr-window-skin-custom .fr-side-next .fr-side-button-icon::before {
  padding-top: 50%;
  font-family: fonticons;
  color: #FFFFFF;
  font-size: 30px;
  display: block;
  height: 100%;
}

.fr-window-skin-custom .fr-close {
  /* top: -55px; */
  width: 40px;
  height: 40px;
}

.fr-window-skin-custom .fr-close .fr-close-background {
  background: #922743;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
}

.fr-window-skin-custom .fr-close .fr-close-background::before {
  color: #FFFFFF;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  content: 'FERMER';
  position: absolute;
  left: -55px;
  top: 10px;
}

.fr-window-skin-custom .fr-close .fr-close-icon {
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  position: relative;
}

.fr-window-skin-custom .fr-close .fr-close-icon::before {
  margin-top: 10px;
  font-family: fonticons;
  color: #FFFFFF;
  font-size: 25px;
  display: block;
  content: '\e88e';
}

.fr-window-skin-custom .fr-side-previous .fr-side-button-icon::before {
  content: '\e804';
}

.fr-window-skin-custom .fr-side-next .fr-side-button-icon::before {
  content: '\e898';
}

.fr-window-skin-custom .fr-info-padder {
  position: absolute;
  width: 100%;
  padding: 15px 0;
}

.fr-window-skin-custom .fr-info-padder .fr-info-background {
  background: transparent;
}

.fr-window-skin-custom .fr-thumbnails .fr-thumbnail-active .fr-thumbnail-overlay {
  border: 2px solid #922743;
}

.main-title__icon--top .icon {
  color: #922743;
  font-size: 2em;
}

#desti-points-forts .item-strengths .item__wrapper, #desti-points-forts-mobile .item-strengths .item__wrapper {
  background-color: #922743;
  border-top: 5px solid #6a1c31;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#desti-points-forts .item-strengths .item__wrapper:hover, #desti-points-forts-mobile .item-strengths .item__wrapper:hover {
  padding-top: 40px;
  padding-bottom: 40px;
  cursor: default;
}

#desti-points-forts .item-strengths .item__title, #desti-points-forts-mobile .item-strengths .item__title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.375em;
}

#desti-points-forts .item-strengths .item__desc {
  font-size: 1em;
}

#desti-points-forts-mobile {
    padding-bottom: 20px;
}

.bl-white #desti-points-forts-mobile .item-strengths .item__wrapper p {
    color: #FFFFFF;
}

#portfolio-block .col-title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5em !important;
  position: relative;
}

#portfolio-block .col-title .title-1st {
  color: #922743;
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
}

#portfolio-block .col-title .title-2nd {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 36px;
  line-height: 1em;
}

#portfolio-block .col-title .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  color: #d2c6bf;
  font-size: 3em;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

#portfolio-block .portolio__items .row-same-height {
  min-height: 480px;
  height: 100%;
}

#portfolio-block .portolio__items .col-table-row {
  display: table-row;
  height: 100%;
}

#portfolio-block .portolio__items .col-cell {
  width: 50%;
  height: 100%;
}

#portfolio-block .portolio__items .item {
  position: relative;
  overflow: hidden;
}

#portfolio-block .portolio__items .item .item__img {
  display: block;
  width: 100%;
  height: 100%;
}

#portfolio-block .portolio__items .item .item__img .icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.25em;
  color: #282623;
}

#portfolio-block .portolio__items .item .item__img img {
  will-change: transform;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

#portfolio-block .portolio__items .item .item__img:hover img {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
}

#portfolio-block .portolio__items .item:hover {
  cursor: pointer;
}

#portfolio-block .portolio__items .item .items__count {
  position: absolute;
  font-size: 1.25em;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFFFFF;
}

#portfolio-block .portolio__items .item .item__count-overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

#portfolio-block .portolio__items .col-left {
  position: relative;
}

#portfolio-block .portolio__items .col-left .col__wrapper {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

#portfolio-block .portolio__items .col-left .item {
  width: 100%;
  height: 100%;
}

#portfolio-block .portolio__items .col-right .col__wrapper {
  margin-left: 15px;
}

#portfolio-block .portolio__items .col-right .item {
  height: 150px;
  margin-bottom: 15px;
}

#portfolio-block .portolio__items .col-right .item:last-child {
  margin-bottom: 0px;
}

#block-fr-contact.bl-contact--cloned {
  width: 200px;
  position: absolute;
  top: 0;
  right: -250px;
}

/* Slider */
#equipe-specialiste {
  background: transparent url("../../cssImages/ajax-loader.gif") no-repeat center center;
}

#equipe-specialiste .slider {
  position: relative;
}

#equipe-specialiste .box-slider-content {
  display: none;
}

#equipe-specialiste .box-slider-content.slick-initialized {
  display: block;
  background: #FFFFFF;
}

#equipe-specialiste .box-slider-content {
  display: block;
  background: #FFFFFF;
}

/* Dots */
.slick-dots {
  opacity: 0.8;
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #f2eae5;
  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  background-color: #922743;
}

.box-slider {
  padding: 0;
}

.box-slider .slick-arrow {
  background: #282623;
  color: #FFFFFF;
  z-index: 200;
  width: 30px;
  height: 40px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-slider .slick-arrow.slick-prev {
  left: -15px;
}

.box-slider .slick-arrow.slick-next {
  right: -15px;
}

.box-slider .specialist-item {
  padding: 0;
  position: relative;
}

.box-slider .spc__pic {
  padding: 0;
  overflow: hidden;
  height: 315px;
}

.box-slider .spc__pic img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}

@media screen\0 {
  .box-slider .spc__pic img {
    font-family: 'object-fit: cover; object-position: center;';
  }
}

.box-slider .spc__text {
  padding: 30px;
}

.box-slider .spc__text .spc__text--title {
  color: #922743;
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5em !important;
  text-align: left;
  margin-bottom: 15px;
}

.box-slider .spc__text .spc__text--desc {
  text-align: justify;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-slider .spc__pic {
    height: 260px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-slider .spc__pic {
    height: 200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #temoignages-block .comment__title .comment__title--txt,
  #temoignages-block .comment__title .comment__title--note {
    width: 100%;
    text-align: left;
    float: left;
  }
}

/* Temoignages block */
#temoignages-block .content,
#temoignages-block .modal-content,
#temoignages-modal .content,
#temoignages-modal .modal-content {
  background: #d2c6bf;
}

#temoignages-block .content .col-title,
#temoignages-block .modal-content .col-title,
#temoignages-modal .content .col-title,
#temoignages-modal .modal-content .col-title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5em !important;
}

#temoignages-block .content .col-title .icon,
#temoignages-block .modal-content .col-title .icon,
#temoignages-modal .content .col-title .icon,
#temoignages-modal .modal-content .col-title .icon {
  color: #922743;
  font-size: 1.5em;
}

#temoignages-block .content .comment-item,
#temoignages-block .modal-content .comment-item,
#temoignages-modal .content .comment-item,
#temoignages-modal .modal-content .comment-item {
  margin-bottom: 15px;
}

#temoignages-block .content .comment-item:nth-child(odd) .comment__footer,
#temoignages-block .modal-content .comment-item:nth-child(odd) .comment__footer,
#temoignages-modal .content .comment-item:nth-child(odd) .comment__footer,
#temoignages-modal .modal-content .comment-item:nth-child(odd) .comment__footer {
  float: left;
}

#temoignages-block .content .comment-item:nth-child(even) .comment__footer,
#temoignages-block .modal-content .comment-item:nth-child(even) .comment__footer,
#temoignages-modal .content .comment-item:nth-child(even) .comment__footer,
#temoignages-modal .modal-content .comment-item:nth-child(even) .comment__footer {
  float: right;
}

#temoignages-block .content .comment-item.item--fake,
#temoignages-block .modal-content .comment-item.item--fake,
#temoignages-modal .content .comment-item.item--fake,
#temoignages-modal .modal-content .comment-item.item--fake {
  height: 0px;
  opacity: 0;
}

#temoignages-block .content .comment-item:after,
#temoignages-block .modal-content .comment-item:after,
#temoignages-modal .content .comment-item:after,
#temoignages-modal .modal-content .comment-item:after {
  content: '';
  clear: both;
  display: block;
}

#temoignages-block .content .comment-item .comment__wrapper,
#temoignages-block .modal-content .comment-item .comment__wrapper,
#temoignages-modal .content .comment-item .comment__wrapper,
#temoignages-modal .modal-content .comment-item .comment__wrapper {
  background: #FFFFFF;
  padding: 15px;
  border-radius: 15px;
}

#temoignages-block .content .comment-item .comment__title,
#temoignages-block .modal-content .comment-item .comment__title,
#temoignages-modal .content .comment-item .comment__title,
#temoignages-modal .modal-content .comment-item .comment__title {
  font-weight: bold;
}

#temoignages-block .content .comment-item .comment__title .comment__title--txt,
#temoignages-block .modal-content .comment-item .comment__title .comment__title--txt,
#temoignages-modal .content .comment-item .comment__title .comment__title--txt,
#temoignages-modal .modal-content .comment-item .comment__title .comment__title--txt {
  font-size: 0.8125em;
  line-height: 1em;
}

#temoignages-block .content .comment-item .comment__title .comment__title--note .note--wording,
#temoignages-block .modal-content .comment-item .comment__title .comment__title--note .note--wording,
#temoignages-modal .content .comment-item .comment__title .comment__title--note .note--wording,
#temoignages-modal .modal-content .comment-item .comment__title .comment__title--note .note--wording {
  font-size: 0.6875em;
}

#temoignages-block .content .comment-item .comment__title .comment__title--note .note--ico .icon,
#temoignages-block .modal-content .comment-item .comment__title .comment__title--note .note--ico .icon,
#temoignages-modal .content .comment-item .comment__title .comment__title--note .note--ico .icon,
#temoignages-modal .modal-content .comment-item .comment__title .comment__title--note .note--ico .icon {
  color: #27507e;
  display: table-cell;
}

#temoignages-block .content .comment-item .comment__title .comment__title--note .note--ico .icon:before,
#temoignages-block .modal-content .comment-item .comment__title .comment__title--note .note--ico .icon:before,
#temoignages-modal .content .comment-item .comment__title .comment__title--note .note--ico .icon:before,
#temoignages-modal .modal-content .comment-item .comment__title .comment__title--note .note--ico .icon:before {
  margin: 0;
}

#temoignages-block .content .comment-item .comment__desc,
#temoignages-block .modal-content .comment-item .comment__desc,
#temoignages-modal .content .comment-item .comment__desc,
#temoignages-modal .modal-content .comment-item .comment__desc {
  font-style: italic;
  font-size: 0.8125em;
  line-height: 1em;
  margin-top: 10px;
}

#temoignages-block .content .comment-item .comment__footer,
#temoignages-block .modal-content .comment-item .comment__footer,
#temoignages-modal .content .comment-item .comment__footer,
#temoignages-modal .modal-content .comment-item .comment__footer {
  text-align: center;
  margin: 0 30px;
}

#temoignages-block .content .comment-item .comment__footer .comment__arrow--top,
#temoignages-block .modal-content .comment-item .comment__footer .comment__arrow--top,
#temoignages-modal .content .comment-item .comment__footer .comment__arrow--top,
#temoignages-modal .modal-content .comment-item .comment__footer .comment__arrow--top {
  margin: 0 auto;
  display: block;
  height: 0;
  width: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #FFFFFF;
}

#temoignages-block .content .comment-item .comment__footer .comment__arrow--down,
#temoignages-block .modal-content .comment-item .comment__footer .comment__arrow--down,
#temoignages-modal .content .comment-item .comment__footer .comment__arrow--down,
#temoignages-modal .modal-content .comment-item .comment__footer .comment__arrow--down {
  margin: 0 auto;
  display: block;
  height: 0;
  width: 0;
  border-top: 15px solid #FFFFFF;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

#temoignages-block .content .comment-item .comment__footer .comment__date,
#temoignages-block .modal-content .comment-item .comment__footer .comment__date,
#temoignages-modal .content .comment-item .comment__footer .comment__date,
#temoignages-modal .modal-content .comment-item .comment__footer .comment__date {
  font-size: 0.625em;
}

#temoignages-block .content .comment-item .comment__footer .comment__author,
#temoignages-block .modal-content .comment-item .comment__footer .comment__author,
#temoignages-modal .content .comment-item .comment__footer .comment__author,
#temoignages-modal .modal-content .comment-item .comment__footer .comment__author {
  font-size: 0.8125em;
  font-weight: bold;
  color: #922743;
}

#temoignages-block .readmore-reviews.collapsed .mobile--not-collapsed,
#temoignages-modal .readmore-reviews.collapsed .mobile--not-collapsed {
  display: block;
}

#temoignages-modal .modal-dialog {
  max-width: 700px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #temoignages-block .content .col-title {
    font-size: 1.125em !important;
  }
}

/* Video block */
#video-block .outer-flex-container {
  border-top: 5px solid #d2c6bf;
  padding: 0 15px 15px 15px;
}

#video-block .col-title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5em !important;
}

#video-block .col-title .icon {
  color: #922743;
  font-size: 1.75em;
}

#video-block .col-text {
    font-size: 0.85em;
}

#video-block .content {
  position: relative;
  overflow: hidden;
}

#video-block .content:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
}

#video-block .content .content__btn {
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
  background: #922743;
  padding: 15px;
  font-size: 1em;
  color: #FFFFFF;
  border-radius: 100px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 5px solid rgba(255, 255, 255, 0.7);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

#video-block .content .content__btn:hover {
  -webkit-animation: none;
          animation: none;
}

#video-block .content .content__btn .icon {
  font-size: 1.875em;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
            box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
            box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

#video-block .content img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#video-block .content .push__overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(146, 39, 67, 0.5);
  background: -webkit-linear-gradient(45deg, rgba(146, 39, 67, 0.8), rgba(27, 56, 88, 0.5));
  background: -o-linear-gradient(45deg, rgba(146, 39, 67, 0.8), rgba(27, 56, 88, 0.5));
  background: linear-gradient(45deg, rgba(146, 39, 67, 0.8), rgba(27, 56, 88, 0.5));
}

.no-flexbox #video-block .outer-flex-container .content {
  width: 100%;
  display: block;
  height: 100%;
  position: relative;
}

.no-flexbox #video-block .outer-flex-container .content > .fresco {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video-block .content {
    min-height: 360px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #video-block .col-title {
    font-size: 1.125em !important;
  }
}

@media only screen and (max-width: 768px) {
  #video-block {
    margin-top: 30px;
  }
  #video-block .content {
    min-height: 360px;
  }
}

/* Selected product block */
#selection-conseillers .selection-products {
  position: relative;
}

#selection-conseillers .selection-products .selection__title--main {
  table-layout: fixed;
  margin: 0 auto;
  overflow: hidden;
}

#selection-conseillers .selection-products .selection__title--main .col-table-row {
  width: 100%;
}

#selection-conseillers .selection-products .selection__title--main .col-table-row > div {
  vertical-align: middle;
}

#selection-conseillers .selection-products .selection__title--main .selection-text {
  padding: 0 0 0 20px;
  text-align: left;
}

#selection-conseillers .selection-products .selection__title--main .selection-text .selection__title {
  font-size: 1.125em;
  font-weight: bold;
}

#selection-conseillers .selection-products .selection__title--main .selection-text .selection__desc {
  font-size: 0.875em;
}

#selection-conseillers .selection-products .selection__title--main .selection-text .selection__desc .spc--name {
  color: #922743;
  font-weight: bold;
  font-style: italic;
}

#selection-conseillers .selection-products .selection-spc__thumbnail {
  width: 80px;
  margin: 0 30px 0 0;
  height: 100%;
}

#selection-conseillers .selection-products .selection-spc__thumbnail figure {
  max-width: 80px;
}

#selection-conseillers .selection-products .selection__product .product-item {
  overflow: hidden;
}

#selection-conseillers .selection-products .selection__product .product-item .push__overlay {
  background: transparent url("../cssImages/bgBlackAlpha50.png") repeat center;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  width: 100%;
  position: absolute;
  height: 50%;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#selection-conseillers .selection-products .selection__product .product-item:hover .push__overlay {
  height: 70%;
}

#selection-conseillers .selection__product .product-item {
  height: 135px;
  margin: 15px 0;
}

#selection-conseillers .selection__product .product-item > a.link-fwh {
  position: relative;
}

#selection-conseillers .selection__product .product-item .product__thumb {
  height: 100%;
}

#selection-conseillers .selection__product .product-item .product__name {
  color: #FFFFFF;
  position: absolute;
  left: 10px;
  right: 50px;
  bottom: 10px;
}

#selection-conseillers .selection__product .product-item .product__name .product--name {
  font-weight: bold;
  font-size: 0.875em;
}

#selection-conseillers .selection__product .product-item .product__name .product--desti {
  font-size: 0.6875em;
}

#selection-conseillers .selection__product .product-item .product__cta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px;
  background: #922743;
}

#selection-conseillers .selection__product .product-item .product__cta .icon {
  color: #FFFFFF;
}

#selection-conseillers .selection__product .product-item:hover .product__comment {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
      transform: none;
}

#selection-conseillers .selection__product .product-item .product__comment {
  opacity: 0;
  -webkit-transform: translate3d(0, 10%, 0);
  transform: translate3d(0, 10%, 0);
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  color: #282623;
  font-size: 0.875em;
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 15px;
  left: 15px;
  right: 15px;
  text-align: center;
}

#selection-conseillers .selection__product .product-item .product__comment .icon-arrow--top {
  position: absolute;
  top: -10px;
  left: 50%;
  margin: 0 auto;
  display: block;
  height: 0;
  width: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.8);
}

@media screen\0 {
  #selection-conseillers .selection-products .selection__product .product-item .push__overlay {
    height: 40%;
  }
  #selection-conseillers .selection-products .selection__product .product-item:hover .push__overlay {
    height: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #selection-conseillers .selection__product .product-item .product__comment {
    font-size: 0.75em;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #selection-conseillers .selection-products .selection__title--main {
    min-height: 90px;
  }
}

/* VIMEO */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#video-block .video-bg {
  background: #000;
}

#video-block .thumb-push-to-play {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 300;
}

#video-block .video-bg iframe {
  width: 100%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
#content-wrapper__spc.row:before, #content-wrapper__spc.row:after {display: none !important;}