@charset "UTF-8";

/*------------------------------------------Bsgin Main settings---------------------------------------*/

body {
  font-family: Helvetica, sans-serif;
}

#navigation-box {
  margin: 50px 0px 20px;
  padding: 10px;
  background-color: #212c43;
  min-height: 60px;
  /*	position:relative;*/
}

#navigation-toggle {
  display: none;
  float: right;
  width: 50px;
  height: 50px;
  background-color: #7ccbfc;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: solid 1px #7ccbfc;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(2, 2, 2, 0));
  transition: all 500ms ease-in;
}

#navigation-toggle.open-menu {
  background-color: #f29090;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: solid 1px #f29090;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(2, 2, 2, 0));
}

.menu-icon {
  display: block;
  background: url(/images/close-open-menu-icon.png?d40e6eb99cf168cd7f1d1f0fffe5fc0d) 0 0 no-repeat;
  width: 20px;
  height: 22px;
  margin: 15px auto 0;
  transition: all 500ms ease-in;
}

.open-menu .menu-icon {
  background: url(/images/close-open-menu-icon.png?d40e6eb99cf168cd7f1d1f0fffe5fc0d) 0 100% no-repeat;
}

ul#navigation {
  float: right;
  min-width: 200px;
}

ul#navigation li {
  position: relative;
  padding: 4px;
  border-bottom: 1px solid #1b253b;
}

ul#navigation li:last-child {
  border: none;
}

ul#navigation > li {
  padding: 0;
  float: left;
  line-height: 36px;
  min-height: 36px;
  border: none;
  display: block;
}

ul#navigation a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 7px 0 8px;
}

ul#navigation li:hover ul {
  display: block;
  -webkit-animation: anime 500ms;
  animation: anime 500ms;
}

/*------------------------------------------End Main settings---------------------------------------*/

/*------------------------------------------Bsgin Hover settings---------------------------------------*/

@media (min-width: 993px) {
  ul#navigation > li {
    padding: 0 15px;
  }

  ul#navigation > li > ul {
    display: none;
    width: 240px;
    position: absolute;
    padding: 10px;
    top: 45px;
    z-index: 30;
    left: 0;
    background-color: #000;
    z-index: 50;
    padding: 17px 25px 15px;
    transform-origin: left top;
  }

  ul#navigation li {
    border: none;
  }

@-webkit-keyframes anime {
    from {
      opacity: 0;
      transform: scaleY(0);
    }

    to {
      opacity: 1;
      transform: scaleY(1);
    }
}

@keyframes anime {
    from {
      opacity: 0;
      transform: scaleY(0);
    }

    to {
      opacity: 1;
      transform: scaleY(1);
    }
}
}

@media (max-width: 992px) {
  /*javascript use it*/

  ul#navigation.hidden-c {
    display: none;
  }

  ul#navigation.showen-c {
    display: block;
  }

  ul#navigation ul.showen-c {
    display: block;
  }

  ul#navigation ul.hidden-c {
    display: none;
  }

  /*end*/

  #navigation-toggle {
    display: block;
  }

  ul#navigation {
    display: none;
    float: none;
    padding: 0 15px 15px;
    position: absolute;
    top: 130px;
    right: 11px;
    background: #212c43;
    background: rgba(33, 44, 67, 0.8);
  }

  ul#navigation li {
    border-bottom: 1px solid #1b253b;
  }

  ul#navigation > li {
    float: none;
    margin-top: 1px;
  }

  ul#navigation ul {
    position: static;
    background: #2e292e;
    padding: 0 5px;
    display: none;
    width: 200px;
  }

  ul#navigation li:hover ul {
    display: block;
  }

  ul#navigation li:hover ul.showen-c {
    display: block;
  }

  /* .sub-nav-toggle {
  	display:block;
  	float:right;
  	width:36px;
  	height:34px;
  	cursor:pointer;
  	background:transparent url(../images/components/plus-minus-icon.png) center -34px no-repeat;
  	-o-transition: all 500ms ease-in;
  	-webkit-transition: all 500ms ease-in;
  	-moz-transition: all 500ms ease-in;
  	transition: all 500ms ease-in;

  }

  .sub-nav-toggle.plus {
  	background:transparent url(../images/components/plus-minus-icon.png) center 10px no-repeat;
  } */
}

/*------------------------------------------End Media---------------------------------------*/

a:focus,
a:active,
a:hover {
  outline: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*Custome mobile nav config*/

@media (max-width: 992px) {
  #navigation-toggle,
  #navigation-toggle.open-menu {
    background: none;
    border: none;
    box-shadow: none;
    position: absolute;
    top: 3px;
    right: 15px;
  }

  .header-wrapper ul#navigation {
    min-width: 250px;
    top: 55px;
    right: 15;
    z-index: 30;
    margin-left: 0;
    background-color: #000;
    padding: 17px 20px 15px;
  }

  ul#navigation li {
    border: none;
  }
}

/**
 * Swiper 3.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: December 13, 2016
 */

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */

.swiper-wp8-horizontal {
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  touch-action: pan-x;
}

/* Arrows */

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */

.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */

.swiper-container-3d {
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

/* Fade */

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

/* Document
   ========================================================================== */

html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

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

mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

.text-left {
  text-align: left;
}

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

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: "";
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: " —";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

@font-face {
  font-family: "aleoregular";
  src: url(/fonts/aleo-regular.eot?0c015219a3592929a1ff512fe84d12d2);
  src: url(/fonts/aleo-regular.eot?0c015219a3592929a1ff512fe84d12d2) format("embedded-opentype"), url(/fonts/aleo-regular.woff?0d24faa3e76fad74b332afe3bce7c90d) format("woff"), url(/fonts/aleo-regular.ttf?cff3c445a12881c848960a639e5a0572) format("truetype"), url(/fonts/aleo-regular.svg?34e77f7a93be09f8231703a916ab989c) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "aleobold";
  src: url(/fonts/aleo-bold.eot?2bb9efa81975f278554545f8c1c21fc4);
  src: url(/fonts/aleo-bold.eot?2bb9efa81975f278554545f8c1c21fc4) format("embedded-opentype"), url(/fonts/aleo-bold.woff?21b6c00ee5f0b10c66c35d5f9065f3b7) format("woff"), url(/fonts/aleo-bold.ttf?958d89af0bf92893719a188e6ad7c4b7) format("truetype"), url(/fonts/aleo-bold.svg?1a686c4b7c3868c90b8bebfff03df87d) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "aleoitalic";
  src: url(/fonts/aleo-italic.eot?c169df60fd43d2d73315e4f5f2b0527d);
  src: url(/fonts/aleo-italic.eot?c169df60fd43d2d73315e4f5f2b0527d) format("embedded-opentype"), url(/fonts/aleo-italic.woff?cf121296f465148a8a80af8965997f90) format("woff"), url(/fonts/aleo-italic.ttf?23e81efbf3a986da2397fea767424e70) format("truetype"), url(/fonts/aleo-italic.svg?3967cb690fbdbdb4238b4a3ca6b398c4) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "aleobolditalic";
  src: url(/fonts/aleo-bolditalic.eot?fbcc39dd7c113131ace4edecf95c8eaf);
  src: url(/fonts/aleo-bolditalic.eot?fbcc39dd7c113131ace4edecf95c8eaf) format("embedded-opentype"), url(/fonts/aleo-bolditalic.woff?d41d4e703df53a78d640a2ef3ce99d5c) format("woff"), url(/fonts/aleo-bolditalic.ttf?e4fef3acc7d50fe3ef8523a90aa97b57) format("truetype"), url(/fonts/aleo-bolditalic.svg?bc75888a09ebbbe4dd4c55547f74ad70) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "museo_sans500";
  src: url(/fonts/MuseoSans_500-webfont.eot?3f3e43c1e5950f344d8fbd529443514a);
  src: url(/fonts/MuseoSans_500-webfont.eot?3f3e43c1e5950f344d8fbd529443514a) format("embedded-opentype"), url(/fonts/MuseoSans_500-webfont.woff?2b58723086e9bd41f0d84303befaec98) format("woff"), url(/fonts/MuseoSans_500-webfont.ttf?fdd440cecd49f7098d8f7cadf3c140db) format("truetype"), url(/fonts/MuseoSans_500-webfont.svg?848b21bc4aa6278e997afaa09ce8c1de) format("svg");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
}

.wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

.wrapper-images {
  /* background-image: url(../images/bg-image.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #B1B2B4;
}

h1 {
  color: #000;
  font-size: 30px;
  font-family: "aleoregular", sans-serif;
  margin-top: 32px;
  margin-bottom: 23px;
}

h2 {
  color: #000;
  font-size: 27px;
  font-family: "aleoregular", sans-serif;
  margin-top: 70px;
  margin-bottom: 23px;
}

h3 {
  color: #000;
  font-size: 24px;
  font-family: "aleoregular", sans-serif;
  margin-top: 40px;
  margin-bottom: 24px;
}

h4 {
  color: #000;
  font-size: 21px;
  font-family: "aleoregular", sans-serif;
  margin-top: 70px;
  margin-bottom: 24px;
}

h5 {
  color: #000;
  font-size: 18px;
  font-family: "aleoregular", sans-serif;
  margin-top: 70px;
  margin-bottom: 24px;
}

.unslyled {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

p {
  font-size: 15px;
  line-height: 28px;
  color: #000;
  margin-bottom: 28px;
}

.text--light {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

a {
  font-size: 13px;
  color: #000;
  transition: 0.3s;
}

a:hover,
a:focus {
  color: #E2343E;
  text-decoration: none;
}

a:focus {
  outline: none;
}

:focus {
  outline: none;
}

textarea {
  resize: none;
}

/* input,
textarea {
    -webkit-appearance: none;
} */

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.panel-body:before,
.panel-body:after,
.nav:before,
.nav:after {
  content: " ";
  display: table;
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.panel-body:after,
.nav:after {
  clear: both;
}

.devider-wrapper {
  width: 100%;
  padding: 0 15px;
}

.devider {
  width: 100%;
  height: 1px;
  background-color: #dbdee1;
}

.devider-huge {
  width: 100%;
  height: 6px;
  background-color: #dbdee1;
  margin-bottom: 60px;
  margin-top: 55px;
}

.wave-devider {
  position: relative;
  margin-top: 20px;
  margin-bottom: 17px;
  overflow: hidden;
  padding-top: 8px;
}

.wave-devider:before {
  content: "";
  background-image: url(/images/wave-dark.svg?8db3f2c2543f50e3b9b996448f9af50a);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.list li {
  font: 18px "aleobolditalic", sans-serif;
  color: #000;
  margin-bottom: 20px;
}

table {
  width: 100%;
}

.col-width-lg {
  width: 45%;
}

.col-width {
  width: 22%;
}

.col-width-sm {
  width: 11%;
}

/* draw any selected text white on black background */

::-moz-selection {
  background: #000;
  color: #ffffff;
}

::selection {
  background: #000;
  color: #ffffff;
}

.top-scroll {
  bottom: 55px;
  height: 50px;
  position: fixed;
  right: 5%;
  width: 50px;
  z-index: 100;
}

.top-scroll a {
  background: url(/images/arrow.svg?9823d4ad217238fd2b87eef0c0152be3) repeat scroll center center rgba(10, 112, 178, 0.8);
  display: block;
  height: 50px;
}

.top-scroll a:hover {
  background: url(/images/arrow.svg?9823d4ad217238fd2b87eef0c0152be3) repeat scroll center center rgba(254, 80, 90, 0.8);
}

.inv-em {
  top: -5px;
  text-align: left;
}

.invalid_field {
  border-color: #E2343E !important;
}

.login .success {
  background-color: #ffd564;
  font: 18px "aleobold", sans-serif;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  padding-bottom: 28px;
  padding-top: 39px;
  margin-top: 50px;
  margin-bottom: 58px;
}

.form .success {
  font: 24px "aleoitalic", sans-serif;
  padding-top: 67px;
  padding-bottom: 66px;
}

.form .success-huge {
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  display: inline-block;
  margin-bottom: 12px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}

@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }

  .title_new_movies {
    width: 300px !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

/* @media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
} */

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

.fade {
  opacity: 1;
  transition: opacity 0.15s linear;
}

/* .fade.in {
    opacity: 1;
} */

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}

.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ffffff;
  border-color: #cccccc;
}

.btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}

.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary .badge {
  color: #337ab7;
  background-color: #ffffff;
}

.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #398439;
  border-color: #255625;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff;
}

.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}

.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}

.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}

.panel-default {
  border-color: #dddddd;
}

.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #ffffff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.nav > li.disabled > a {
  color: #777777;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #dddddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.color {
  width: 65px;
  height: 65px;
  box-shadow: 1px 2px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 5px;
}

.color--main {
  background-color: #000;
}

.color--red {
  background-color: #E2343E;
}

.color--yellow {
  background-color: #ffd564;
}

.color--grey {
  background-color: #969b9f;
}

.color--grey-light {
  background-color: #dbdee1;
}

.color--grey-lighter {
  background-color: #f5f5f5;
}

.container--add {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 17px;
}

.container {
  position: relative;
  clear: both;
}

.col--remove {
  padding: 0;
}

.header-wrapper {
  background: #2e292e;
  position: relative;
  z-index: 120;
  height: 55px;
}

.header-wrapper--home {
  background: #000;
  position: fixed;
  height: 115px;
  width: 100%;
  z-index: 101;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.5);
}

.footer-wrapper {
  background-color: #000;
  background-repeat: repeat;
  overflow: hidden;
  margin-top: 60px;
  color: #fff;
}

.footer-wrapper .nav-link .nav-link__item {
  color: #fff;
}

.select-area {
  background-color: #f5f5f5;
  padding: 13px 20px 2px;
}

.select-area .select {
  display: inline-block;
  margin-right: 40px;
}

.select-area .datepicker {
  margin-right: 35px;
  position: relative;
  top: -20px;
}

.tags-area {
  border-top: 1px solid #dbdee1;
  border-bottom: 1px solid #dbdee1;
  margin-top: 40px;
  padding-top: 13px;
  padding-bottom: 6px;
}

.tags-area--thin {
  padding-top: 8px;
  padding-bottom: 1px;
  margin-top: 27px;
}

.banner-top {
  position: relative;
  height: 90px;
  background-color: #e9e9e9;
}

.banner-top img {
  position: absolute;
  left: 50%;
  margin-left: -800px;
}

.banner-top:before {
  content: "";
  width: 100%;
  height: 47px;
  background-color: rgba(255, 255, 255, 0.45);
  position: absolute;
  top: 21px;
  left: 0;
}

.adv-place {
  margin-bottom: 50px;
}

.adv-place img {
  max-width: 100%;
}

.control-panel {
  position: absolute;
  right: 15px;
  top: 10px;
}

.content-wrapper {
  overflow: hidden;
  margin: 57px 0;
}

.modify--bottom {
  margin-bottom: 32px;
}

.specific--wrapper {
  background-color: #f7f8f9;
  padding: 43px 0 44px;
}

.feather-wrapper {
  margin-top: 33px;
  margin-bottom: 13px;
}

.search-wrapper {
  background-color: #0a70b2;
  height: 86px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
}

.list-input {
  margin-left: 48px;
  padding-bottom: 1px;
  padding-top: 2px;
}

.col--modificator {
  margin-left: 18px;
}

.info-wrapper {
  border-top: 6px solid #dbdee1;
  border-bottom: 6px solid #dbdee1;
  overflow: hidden;
  padding-top: 14px;
  padding-bottom: 16px;
  margin-top: 52px;
}

.comment-sets {
  margin-top: 40px;
  padding-bottom: 7px;
}

.sitebar {
  margin-top: 105px;
  padding-left: 12px;
}

.sitebar img {
  max-width: 100%;
}

.banner-wrap {
  margin: 10px 0;
  border: 1px solid #dbdee1;
}

.footer-info {
  padding-top: 64px;
}

.footer-info .heading-special--small {
  float: left;
  margin-right: 11px;
}

.overflow-wrapper {
  overflow: hidden;
}

.marginb-sm {
  margin-bottom: 10px;
}

.comming-wrapper {
  margin-bottom: 195px;
}

.wrap-select {
  margin-top: 25px;
}

.gallery-wrapper {
  overflow: hidden;
  margin-bottom: 50px;
}

.contant--right .post {
  padding-right: 0;
  padding-left: 30px;
}

.contant--right .post--preview {
  padding-left: 0;
}

.contant--right .preview-wrapper {
  padding-left: 30px;
}

.contant--right .page-heading {
  padding-left: 60px;
  background-position: 30px 50%;
}

.contant--right .comment-wrapper {
  padding-left: 30px;
}

.sitebar--left {
  padding-right: 12px;
  padding-left: 0;
  margin-top: 0;
}

.first-banner--left {
  margin-top: 0;
}

.typography-wrap {
  padding: 0 15px;
}

.list-wrapper {
  overflow: hidden;
}

.list-wrapper .list {
  margin-top: 80px;
}

.order-container {
  margin-top: 48px;
  margin-bottom: 78px;
}

.coloum-wrapper {
  margin-top: 60px;
}

.logo {
  position: absolute;
  top: 16px;
  left: 15px;
  z-index: 2;
}

.logo img {
  /* width: 75px; */
  width: 137px;
  height: 75px;
}

#navigation-box {
  background-color: transparent;
  margin-top: 35px;
  min-height: 55px;
}

/* ul#navigation {
  margin-right: 280px;
} */

ul#navigation a {
  font: 16px "Roboto", sans-serif;
  color: #fff;
  transition: 0.3s;
}

ul#navigation a:hover {
  color: #FFE500;
}

.heading {
  font: 16px "aleoregular", sans-serif;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 16px;
}

.heading--outcontainer {
  margin-left: 15px;
  margin-right: 15px;
}

.heading--top {
  margin-top: 56px;
}

.heading--strong {
  font-size: 21px;
  font-family: "aleobold", sans-serif;
}

.page-heading {
  padding-left: 30px;
  margin-top: 56px;
  margin-bottom: 27px;
  font: 20px "aleobold", sans-serif;
  color: #000;
  text-transform: uppercase;
  background-image: url(/images/scarf2.png?5a017544b8c4a45bdb702ebc5bf57456);
  background-size: 21px 6px;
  background-position: left center;
  background-repeat: no-repeat;
}

.page-heading2 {
  padding-left: 30px;
  margin-top: 56px;
  margin-bottom: 27px;
  font: 20px "aleobold", sans-serif;
  color: #000;
  text-transform: uppercase;
  background-image: url(/images/scarf3.png?7cdb98c394bf91ca8712b1f735339dd6);
  background-size: 21px 6px;
  background-position: left center;
  background-repeat: no-repeat;
}

.page-heading3 {
  padding-left: 30px;
  margin-top: 56px;
  margin-bottom: 27px;
  font: 20px "aleobold", sans-serif;
  color: #000;
  text-transform: uppercase;
  background-image: url(/images/scarf.png?1b1561bef45bca1d96b9f4520ac2dbbd);
  background-size: 21px 6px;
  background-position: left center;
  background-repeat: no-repeat;
}

.heading-special {
  font-size: 22px;
  line-height: 20px;
  color: #000;
  font-family: "aleobold", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 6px;
}

.heading-special .heading-edition {
  font-size: 16px;
  font-weight: normal;
  font-family: "aleoitalic", sans-serif;
  text-transform: lowercase;
}

.error-wrapper {
  text-align: center;
}

.checkout-wrapper {
  border-bottom: 1px solid #dbdee1;
  margin-bottom: 60px;
  padding-bottom: 50px;
}

.lower--hight {
  padding-top: 20px;
}

.heading-special--small {
  font-family: "aleoregular", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
}

.heading-special--small .title-edition {
  font-family: "aleoitalic", sans-serif;
  text-transform: lowercase;
  color: #E2343E;
}

.text-helper {
  color: #969b9f;
  font-family: "aleoitalic", sans-serif;
  font-size: 16px;
}

.text-helper .fa {
  padding-right: 7px;
}

.btn-md {
  color: #ffffff;
  padding: 11px 17px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16), inset 0 2px rgba(255, 255, 255, 0.2);
  font: 12px "aleobold", sans-serif;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-md:hover {
  color: #ffffff;
}

.btn--warning {
  color: #000;
  background-color: #ffe500;
  border: solid 1px #ffc936;
}

.btn--warning:hover {
  color: #000;
  background-color: #ffe08d;
  border-color: transparent;
}

.btn--danger {
  background-color: #E2343E;
  border: solid 1px #f42a36;
}

.btn--danger:hover {
  background-color: #f8212c;
  border-color: transparent;
}

.btn--success {
  background-color: #90bf34;
  border: solid 1px #90bf34;
}

.btn--success:hover {
  background-color: #acc876;
  border-color: transparent;
}

.btn--shine {
  background-color: #ff971d;
  border: solid 1px #ff971d;
}

.btn--shine:hover {
  background-color: #ffb865;
  border-color: transparent;
}

.btn--info {
  background-color: #6dc5dd;
  border: solid 1px #6ac7f7;
}

.btn--info:hover {
  background-color: #9ccce4;
  border-color: transparent;
}

.btn--ready {
  background-color: #ba5091;
  border: solid 1px #ba5091;
}

.btn--ready:hover {
  background-color: #b6749d;
  border-color: transparent;
}

.btn--slow {
  background-color: #66b8a1;
  border: solid 1px #66b8a1;
}

.btn--slow:hover {
  background-color: #8ecab9;
  border-color: transparent;
}

.btn--default {
  background-color: #537f9b;
  border: solid 1px #537f9b;
}

.btn--default:hover {
  background-color: #7f9fb3;
  border-color: transparent;
}

.btn-demo {
  margin-left: -15px;
  width: 100%;
  margin-bottom: 11px;
}

.btn--sign {
  font: 13px "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffd564;
  position: relative;
  margin-right: 3px;
  transition: 0.3s;
}

.btn--sign:before {
  content: "";
  background-image: url(/images/wave.svg?2afdb94d893ee360df18f4bb5dbb4879);
  background-repeat: no-repeat;
  background-size: 48px 4px;
  width: 48px;
  height: 4px;
  position: absolute;
  top: 24px;
  left: 12px;
}

.btn--sign:hover,
.btn--sign:focus {
  color: #b4b1b2;
}

.btn--sign:hover:before,
.btn--sign:focus:before {
  background-image: url(/images/wave-hover.svg?642063347f1d35c21760762bb404054a);
}

.btn--book {
  padding: 7px 17px;
}

.btn--wide {
  padding-left: 28px;
  padding-right: 28px;
}

.btn--wider {
  padding-left: 32px;
  padding-right: 32px;
}

.watchlist {
  font-size: 13px;
  color: #000;
  border: 1px solid #000;
  border-radius: 3px;
  position: relative;
  padding: 5px 14px 6px 14px;
  transition: 0.5s;
}

/* .watchlist:before {
    content: '\f055';
    color: #000;
    font-family: "FontAwesome";
    font-size: 16px;
    position: absolute;
    top: 4px;
    left: 11px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
} */

/* .watchlist:hover,
.watchlist:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: #969b9f;
    border-color: #969b9f;
}

.watchlist:hover:before,
.watchlist:focus:before {
    color: #ffffff;
} */

.watchlist--map {
  float: right;
}

.watchlist--map:before {
  content: "";
}

.read-more {
  font: 16px "aleoregular", sans-serif;
  color: #E2343E;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 6px 15px 5px 11px;
  transition: 0.5s;
}

.read-more:after {
  content: "";
  font-family: "FontAwesome";
  color: #E2343E;
  padding-left: 12px;
  transition: 0.5s;
}

.read-more:hover,
.read-more:focus {
  background-color: #E2343E;
  color: #ffffff;
  text-decoration: none;
}

.read-more:hover:after {
  color: #ffffff;
}

.watchlist,
.read-more {
  display: inline-block;
  margin-bottom: 15px;
}

.link--bigger {
  font-size: 16px;
  font-weight: bold;
}

.link--huge {
  font-size: 20px;
}

.link--text {
  font-size: 15px;
  color: #969b9f;
  transition: 0.3s;
}

.link--text:hover {
  color: #ffffff;
  background-color: #000;
}

.accordion-wrap {
  min-height: 365px;
}

.panel-group {
  margin-top: 10px;
  margin-bottom: 0;
}

.panel-group .panel {
  border-radius: 0px;
  box-shadow: none;
  border: none;
}

.panel-group .panel-heading {
  position: relative;
  border: 1px solid #dbdee1;
  border-radius: 0px;
  background-color: transparent;
  padding: 14px 15px 17px 55px;
  color: #000;
  transition: 0.3s;
}

.panel-collapse .panel-body {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 21px;
  padding: 13px 15px 10px 35px;
  color: #000;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
  border: none;
}

.panel-heading .marker {
  border-right: 1px solid #DADEE1;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 35px;
  transition: 0.3s;
}

.panel-heading .custom1 {
  display: none;
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 11px;
  margin-top: -14px;
  color: #000;
  transition: 0.3s;
}

.panel-heading .custom2 {
  display: inline-block;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 12px;
  margin-top: -24px;
  color: #000;
  transition: 0.3s;
}

.panel-heading .collapsed .custom1 {
  display: inline-block;
}

.panel-heading .collapsed .custom2 {
  display: none;
}

.accordion-light .panel + .panel {
  margin-top: 10px;
}

.accordion-light .panel-title {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.accordion-light .marker {
  font-weight: normal;
}

.accordion-light .panel-heading:hover {
  border-color: #E2343E;
  color: #E2343E;
}

.accordion-light .panel-heading:hover .marker {
  background-color: #E2343E;
  border-color: transparent;
}

.accordion-light .panel-heading:hover .marker .custom1,
.accordion-light .panel-heading:hover .marker .custom2 {
  color: #ffffff;
}

.accordion-dark .panel + .panel {
  margin-top: 4px;
}

.accordion-dark .panel-heading {
  border: none;
  padding: 0;
}

.accordion-dark .panel-body {
  background-color: #000;
  color: #b4b1b2;
  padding-bottom: 27px;
}

.accordion-dark .panel-title > a,
.accordion-dark .panel-title > a.collapsed:hover {
  display: block;
  padding: 17px 15px 18px 55px;
  background-color: #000;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
}

.accordion-dark .panel-title > a .marker,
.accordion-dark .panel-title > a.collapsed:hover .marker {
  background-color: #000;
  border-color: transparent;
}

.accordion-dark .panel-title > a .marker .custom1,
.accordion-dark .panel-title > a.collapsed:hover .marker .custom1,
.accordion-dark .panel-title > a .marker .custom2,
.accordion-dark .panel-title > a.collapsed:hover .marker .custom2 {
  color: #ffffff;
}

.accordion-dark .panel-title > a.collapsed {
  background-color: #f7f8f9;
  color: #000;
}

.accordion-dark .panel-title > a.collapsed .marker {
  background-color: #f7f8f9;
  border-right: 3px solid #ffffff;
}

.accordion-dark .panel-title > a.collapsed .marker .custom1,
.accordion-dark .panel-title > a.collapsed .marker .custom2 {
  color: #000;
}

.alert {
  position: relative;
  border-radius: 0;
  padding-left: 56px;
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 10px;
}

.alert span {
  bottom: 0;
  color: #FFFFFF;
  font-size: 15px;
  left: 0;
  padding-left: 12px;
  padding-top: 13px;
  position: absolute;
  top: 0;
  width: 35px;
}

.alert-success {
  background-color: #E1FFD9;
  border: 1px solid #92DA7F;
  color: #46a92c;
}

.alert-warning {
  background-color: #FFF9D5;
  border: 1px solid #F0D229;
  color: #daba06;
}

.alert-danger {
  background-color: #FFD3D0;
  border: 1px solid #F25549;
  color: #f25549;
}

.alert-info {
  background-color: #E7F4FF;
  border: 1px solid #9AC8F1;
  color: #4fa7f5;
}

.alert-success span {
  background-color: #92DA7F;
}

.alert-warning span {
  background-color: #F0D229;
}

.alert-danger span {
  background-color: #F25549;
}

.alert-info span {
  background-color: #9AC8F1;
}

.icon-flag:before {
  content: "";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}

.icon-bell:before {
  content: "";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}

.icon-warning:before {
  content: "";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}

.icon-info:before {
  content: "";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 13px;
}

.alert .close {
  opacity: 1;
  float: right;
  font-size: 13px;
  position: relative;
}

/* .alert .close:before {
    content: "\f00d";
    font-size: 13px;
    font-family: "FontAwesome";
} */

/* .alert-success .close:before {
    color: #46a92c;
} */

.alert-warning .close:before {
  color: #daba06;
}

.alert-danger .close:before {
  color: #f25549;
}

.alert-info .close:before {
  color: #4fa7f5;
}

.price {
  padding-right: 40px;
  padding-bottom: 20px;
  text-align: center;
  margin-top: 10px;
}

.price .price-inner {
  /* background-color: #000; */
  position: relative;
  z-index: 5;
}

.price .price-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #000;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.price .price__package {
  font: 16px "aleoregular", sans-serif;
  color: #ffffff;
  text-transform: capitalize;
  padding-top: 16px;
  padding-bottom: 15px;
  margin-bottom: 0px;
}

.price .price__value {
  font: 40px "aleobold", sans-serif;
  color: #E2343E;
  background-color: #fafafa;
  background-image: url(/images/price-pattern.jpg?65d922f305aeab324666954b75067552);
  background-repeat: repeat;
  background-position: center;
  padding-top: 26px;
  padding-bottom: 27px;
}

.price .price__feather {
  font: 15px "Roboto", sans-serif;
  color: #b4b1b2;
  padding-top: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(180, 177, 178, 0.2);
}

.price .last-point {
  border: none;
}

.price .price__btn {
  padding-bottom: 33px;
}

.progress .progress__info {
  font-weight: bold;
  margin-bottom: 6px;
}

.progress .progress__bar {
  height: 15px;
  padding: 1px;
  border-radius: 3px;
  background-color: #000;
}

.progress .progress__bar .progress__current {
  background-color: #ffd564;
  height: 100%;
  border-radius: 2px 0 0 2px;
}

.promo {
  background-color: #E2343E;
  text-align: center;
  padding: 48px 0px 10px;
}

.promo .promo__head {
  font: 30px "aleobold", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 21px;
}

.promo .promo__describe {
  font: 18px "aleoitalic", sans-serif;
  color: #000;
  font-weight: 300;
  padding-bottom: 45px;
}

.promo-field {
  margin-right: 13px;
}

.store-variant {
  position: relative;
  padding: 9px 0 11px;
}

.store-variant:before {
  content: "";
  background-image: url(/images/wave-dark.svg?8db3f2c2543f50e3b9b996448f9af50a);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: -4px;
  left: 50%;
  margin-left: -42px;
}

.store-variant a {
  display: block;
  padding: 7px 0 5px;
}

.store-variant a:hover {
  background-color: #000;
}

.store-variant img {
  width: 50%;
}

.tabs {
  margin-top: 10px;
}

.nav-tabs {
  border: none;
}

.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border: none;
  padding: 16px 26px 14px;
  background: transparent;
  border-radius: 0;
  font: 16px "Roboto", sans-serif;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  color: #E2343E;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #f5f5f5;
  border: none;
  padding: 16px 53px 14px;
  color: #000;
}

.tab-content {
  clear: both;
  background-color: #f5f5f5;
  padding: 26px 30px 13px;
  text-align: left;
}

.tab-content p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 21px;
}

.tabs--vertical .nav-tabs {
  display: block;
  float: left;
}

.tabs--vertical .nav-tabs > li {
  float: none;
}

.tabs--vertical .nav-tabs > li > a,
.tabs--vertical .nav-tabs > li > a:hover,
.tabs--vertical .nav-tabs > li > a:focus {
  padding: 14px 10px 14px 0;
}

.tabs--vertical .nav-tabs > li.active > a,
.tabs--vertical .nav-tabs > li.active > a:hover,
.tabs--vertical .nav-tabs > li.active > a:focus {
  color: #E2343E;
  background-color: transparent;
  border-left: 6px solid #E2343E;
  padding-left: 10px;
}

.tabs--vertical .tab-content {
  margin-left: 115px;
  clear: none;
  background-color: #E2343E;
  padding: 28px 40px 23px;
  min-height: 258px;
}

.tabs--vertical .tab-content * {
  color: #ffffff;
}

.testionaial {
  margin-top: 10px;
}

.testionaial .testionaial__images {
  float: left;
  margin-right: 10px;
}

.testionaial .testionaial__author {
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 0;
  padding-top: 14px;
}

.testionaial .testionaial__organization {
  font-size: 13px;
  font-style: italic;
}

.testionaial .testionaial__text {
  font: 13px "Roboto", sans-serif;
  color: #000;
  font-style: italic;
  margin-top: 30px;
  /* padding: 23px 25px; */
  line-height: 21px;
  border: 1px solid #dadee1;
  position: relative;
}

.testionaial .testionaial__text:after,
.testionaial .testionaial__text:before {
  bottom: 100%;
  left: 35px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}

.testionaial .testionaial__text:after {
  border-color: rgba(48, 159, 255, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.testionaial .testionaial__text:before {
  border-color: rgba(218, 222, 225, 0);
  border-bottom-color: #dadee1;
  border-width: 11px;
  margin-left: -11px;
}

.search {
  position: relative;
  top: -10px;
}

.search .search__field {
  display: inline-block;
  width: 100%;
  padding: 9px 300px 9px 19px;
  margin-top: 14px;
  line-height: 18px;
  border-radius: 3px;
  border: solid 1px #dbdee1;
  background-color: #fff;
  color: #000;
  font-size: 13px;
}

.search .search__sort {
  opacity: 0;
}

.search .search__button {
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 3;
  height: 74%;
}

.search .sbHolder {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 141px;
  width: 140px;
  height: 35px;
  border: none;
  border-left: 1px solid #dbdee1;
  background-color: #fff;
}

.search .sbHolder .sbSelector {
  margin-top: 4px;
  margin-left: 5px;
  color: #000;
  font-size: 13px;
}

.search .sbHolder .sbOptions {
  width: 140px;
  top: 37px !important;
  border: none;
  padding: 14px 7px;
  z-index: 23;
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.search .sbHolder .sbOptions a {
  color: #b4b1b2;
  border: none;
}

.search .sbHolder .sbOptions a:hover,
.search .sbHolder .sbOptions a:focus {
  color: #ffffff;
}

.search .sbHolder .sbToggle {
  top: 10px;
  right: -2px;
}

.search .sbHolder .sbToggle:before {
  content: "";
  color: #000;
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.search .sbHolder .sbToggleOpen:before {
  content: "";
}

.sbHolder {
  outline: none;
}

.post {
  padding-right: 30px;
}

.post .post__image-link {
  display: block;
  position: relative;
}

.post .post__image-link img {
  max-width: 100%;
  width: 100%;
}

.post .post__image-link:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.35s;
}

.post .post__image-link:hover:before {
  width: 90%;
  height: 80%;
  left: 5%;
  right: 5%;
  top: 10%;
  bottom: 10%;
  opacity: 1;
}

.post .post__image-link:after {
  content: "";
  font: 20px "FontAwesome";
  color: #ffffff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  transition: 0.35s;
}

.post .post__image-link:hover:after {
  opacity: 1;
}

.post .post__title-link {
  font: 30px "aleoregular", sans-serif;
}

.post .post__date {
  position: relative;
  padding-left: 20px;
  margin-bottom: 18px;
  font-size: 12px;
}

.post .post__date:before {
  content: "";
  font-size: 12px;
  font-family: "FontAwesome";
  color: #000;
  position: absolute;
  top: -1px;
  left: 1px;
}

.post .post__images {
  margin-bottom: 40px;
}

.post .post__images img {
  max-width: 100%;
  border: 6px solid #ffffff;
}

.post .post__images--right {
  padding: 0;
  margin-left: 54px;
}

.post .post__images--right:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #000;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: -1;
}

.post .post__images--left {
  padding: 0;
  margin-right: 54px;
}

.post .post__images--left:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #000;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.line--marker li {
  padding-left: 40px;
  background-image: url(/images/line-marker.png?cc8ede33d587efcfe9c8e5d650b3dc46);
  background-repeat: no-repeat;
  background-position: left center;
}

.quote {
  border: none;
  background-color: #ffd564;
  color: #000;
  font: 28px "aleoitalic", sans-serif;
  padding: 55px 50px 15px;
}

.quote .quote__author {
  font-size: 16px;
  font-style: normal;
  font-family: "aleobold", sans-serif;
  color: #ffffff;
  text-align: right;
  position: relative;
  z-index: 5;
  margin-top: 45px;
}

.quote .quote__author:before {
  content: "";
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  position: absolute;
  top: 6px;
  left: -55px;
}

.quote .quote__author .quote__author-name {
  background-color: #ffd564;
  position: relative;
  padding-left: 10px;
}

.quote--intext {
  margin-left: -15px;
  margin-right: 35px;
  margin-top: 9px;
}

.text--coloum {
  padding-left: 0;
  padding-right: 30px;
}

.tags {
  position: relative;
  padding-left: 20px;
}

.tags .tags__label {
  font-size: 13px;
  color: #000;
  display: inline-block;
  float: left;
  margin-top: 2px;
  margin-right: 25px;
}

.tags .tags__item {
  display: inline-block;
  color: #969b9f;
  font-size: 12px;
  padding-right: 16px;
}

.tags .tags__item:hover {
  color: #000;
}

.tags .item-active {
  color: #000;
}

.tags .item-wrap {
  display: inline-block;
}

.tags:before {
  content: "";
  color: #969b9f;
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 2px;
  left: 0px;
}

.share {
  margin-top: 26px;
}

.share .share__marker {
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.share .addthis_button_tweet {
  margin-left: 11px;
  margin-right: -20px;
}

.social {
  padding-top: 4px;
}

.social .social__variant {
  position: relative;
  width: 30px;
  height: 31px;
  border-radius: 16px;
  background-color: #dbdee1;
  color: #000;
  font-size: 16px;
  text-align: center;
  padding-top: 8px;
  margin-left: 16px;
  transition: 0.3s;
}

.social .social__variant:after {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 23px;
  border: solid 2px #dbdee1;
  position: absolute;
  top: -8px;
  left: -8px;
  transition: 0.3s;
}

.social .social__variant:hover {
  color: #ffffff;
  background-color: #E2343E;
}

.social .social__variant:hover:after {
  border-color: #E2343E;
}

.social--hide {
  padding-top: 0;
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 15px;
  cursor: pointer;
  z-index: 20;
  background-color: #ffd564;
  transition: 0.5s;
  transition-delay: 0.2s;
}

.social--hide:before {
  content: "+";
  font: 18px "Roboto", sans-serif;
  color: #000;
  font-weight: bold;
  position: absolute;
  top: 3px;
  left: 11px;
}

.social--hide .social__name {
  padding-left: 27px;
  padding-top: 5px;
  display: inline-block;
  font-size: 13px;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.1s;
}

.social--hide .social__variant {
  position: absolute;
  top: 0px;
  opacity: 0;
  transition: 0.5s;
  padding: 0 7px;
  background-color: transparent;
  font-size: 13px;
  margin-left: 0;
}

.social--hide .social__variant:after {
  display: none;
}

.social--hide .social__variant:hover {
  background-color: transparent;
  color: #E2343E;
}

.social--hide .social__variant.social--first {
  left: 70px;
}

.social--hide .social__variant.social--second {
  left: 96px;
}

.social--hide .social__variant.social--third {
  left: 123px;
}

.social--hide:hover {
  width: 170px;
}

.social--hide:hover .social__name {
  opacity: 1;
}

.social--hide:hover .social__variant {
  opacity: 1;
  top: 9px;
}

.social--hide:hover .social__variant.social--first {
  transition-delay: 0.1s;
}

.social--hide:hover .social__variant.social--second {
  transition-delay: 0.2s;
}

.social--hide:hover .social__variant.social--third {
  transition-delay: 0.3s;
}

.social--position {
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin-left: -15px;
}

.comment-form {
  margin-bottom: 40px;
}

.comment-form .comment-form__text {
  width: 100%;
  min-height: 78px;
  padding: 8px 19px;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #dbdee1;
  font-size: 13px;
  color: #b4b1b2;
}

.comment-form .comment-form__info {
  margin-top: 19px;
  font: 13px "Roboto", sans-serif;
  color: #969b9f;
  display: inline-block;
}

.comment-form .comment-form__btn {
  float: right;
  margin-top: 9px;
}

.comment {
  position: relative;
  border-top: 1px solid #f5f5f5;
  padding-top: 30px;
}

.comment .comment__images {
  float: left;
  margin-right: 18px;
}

.comment .comment__author {
  padding-top: 6px;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 20px;
  font-weight: bold;
  position: relative;
  padding-left: 23px;
  overflow: hidden;
}

.comment .comment__date {
  font-size: 13px;
  margin-bottom: 0;
  color: #969b9f;
  line-height: 20px;
}

.comment .comment__message {
  clear: both;
  font-size: 13px;
  line-height: 21px;
  margin-top: 7px;
}

.comment .comment__reply {
  position: absolute;
  top: 43px;
  right: 0;
  font-size: 14px;
  color: #E2343E;
}

.comment .comment__reply:before {
  content: "";
  font-size: 14px;
  color: #E2343E;
  font-family: "FontAwesome";
  margin-right: 10px;
}

.comment .comment__reply:hover,
.comment .comment__reply:hover:before {
  opacity: 0.7;
}

.comment--last {
  border-bottom: 1px solid #f5f5f5;
}

.social-used {
  width: 16px;
  height: 16px;
  font-size: 10px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 8px;
  left: 0;
}

.social-used.fa-facebook {
  background-color: #3b5998;
  padding-top: 4px;
  padding-left: 2px;
}

.social-used.fa-vk {
  background-color: #507296;
  padding-top: 3px;
}

.category {
  background-color: #000;
  padding: 56px 24px 10px;
  position: relative;
}

.category:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 13px;
  left: 50%;
  margin-left: -20px;
}

.category .category__title {
  font-size: 22px;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 28px;
  font-family: "aleobold", sans-serif;
}

.category .category__title .title-edition {
  font-size: 16px;
  font-weight: normal;
  font-family: "aleoitalic", sans-serif;
  text-transform: lowercase;
}

.category .category__item {
  position: relative;
  color: #b4b1b2;
  padding-left: 15px;
  margin-bottom: 18px;
  display: inline-block;
  line-height: 13px;
  transition: 0.3s;
}

.category .category__item:before {
  content: "";
  color: #ffffff;
  font: 6px "FontAwesome";
  position: absolute;
  top: 3px;
  left: 0;
}

.category .category__item:hover {
  color: #ffffff;
}

#loading-container {
  text-align: center;
}

#loading-container img {
  width: 40px;
  height: 40px;
  margin-top: 30px;
}

.twitter-article {
  margin-top: 13px;
}

.twitter-article + .twitter-article {
  margin-top: 46px;
}

#twitter-feed p {
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 14px;
}

#twitter-feed p a {
  color: #969b9f;
}

.twitter-pic {
  float: left;
  margin-right: 11px;
}

#twitter-feed .twitter-author {
  font-size: 14px;
  font-weight: bold;
  padding-top: 3px;
  margin-bottom: 0;
}

.tweetprofilelink a {
  font-size: 12px;
  color: #969b9f;
  font-family: Arial, sans-serif;
}

.twitter-text {
  position: relative;
}

.twitter-text .tweet-time {
  position: absolute;
  bottom: -25px;
  left: 0;
}

.nav-link {
  margin-top: 63px;
}

.nav-link .nav-link__item {
  display: inline-block;
  font-size: 12px;
  padding-left: 1px;
  margin-bottom: 10px;
}

.nav-link .nav-link__item:before {
  content: "";
  margin-right: 25px;
  font: 12px "FontAwesome";
  color: #fff;
  transition: 0.3s;
}

.nav-link .nav-link__item:hover:before {
  color: #E2343E;
}

.copy {
  font-family: "aleoitalic", sans-serif;
  font-size: 13px;
  padding-bottom: 45px;
  color: #fff;
}

.copy a {
  color: #FFE500;
  transition: all 0.35s ease-in-out;
}

.nav-link li {
  list-style: none;
}

.copy a:hover {
  color: #E2343E;
}

.copy-bottom {
  position: absolute;
  bottom: 23px;
  width: 100%;
}

.copy-bottom .copy {
  padding-bottom: 0;
  margin-bottom: 0;
  text-align: center;
}

.swiper-slide img {
  max-width: 100%;
  height: 180px;
}

.post__preview {
  position: relative;
}

.post__preview .arrow-left {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}

.post__preview .arrow-left:before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(/images/left-arrow.svg?3546b4a564e10dff09568300ffb9f8e1);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  transition: 0.3s;
}

.post__preview .arrow-left .slider__info {
  margin: 18px 10px 18px 55px;
  opacity: 0;
  transition: 0.3s;
  width: 130px;
  display: none;
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  line-height: 21px;
}

.post__preview .arrow-left:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}

.post__preview .arrow-left:hover .slider__info {
  opacity: 1;
  display: inline-block;
}

.post__preview .arrow-left:hover:before {
  left: 9px;
  margin-top: -22px;
}

.post__preview .arrow-right {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}

.post__preview .arrow-right:before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(/images/right-arrow.svg?587a45960a8e803d2e9fe40e0648af0f);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  transition: 0.3s;
}

.post__preview .arrow-right .slider__info {
  margin: 18px 55px 18px 10px;
  opacity: 0;
  transition: 0.3s;
  width: 130px;
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  line-height: 21px;
  position: absolute;
  top: 0px;
  left: -145px;
}

.post__preview .arrow-right:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}

.post__preview .arrow-right:hover .slider__info {
  opacity: 1;
  display: inline-block;
  left: 0;
}

.post__preview .arrow-right:hover:before {
  right: 9px;
  margin-top: -22px;
}

.post .no-hover {
  transition: 0s;
}

.post .no-hover:before {
  transition: 0s;
}

.post .no-hover:hover {
  width: 40px;
  height: 40px;
  margin-top: -18px;
  background: none;
  border: none;
}

.arrow-left.no-hover:hover:before {
  left: 3px;
}

.arrow-right.no-hover:hover:before {
  right: 3px;
}

.menu-icon {
  position: relative;
  background-image: none;
}

.icon-toggle {
  display: inline-block;
  transition: 0.3s;
  position: absolute;
  top: -4px;
  left: -3px;
}

.lines {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 4px;
  background-color: #ffffff;
  /*create the upper and lower lines as pseudo-elements of the middle line*/
}

.lines:before,
.lines:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  transform-origin: 50% 50%;
}

.lines:before {
  top: 7px;
}

.lines:after {
  top: -7px;
}

.icon-toggle .lines {
  transition: background 0.3s 0.6s ease;
}

.icon-toggle .lines:before,
.icon-toggle .lines:after {
  transform-origin: 50% 50%;
  transition: top 0.3s 0.6s ease, transform 0.3s ease;
}

.open-menu .icon-toggle .lines {
  transition: background 0.3s 0s ease;
  background: transparent;
}

.open-menu .icon-toggle .lines:before,
.open-menu .icon-toggle .lines:after {
  transition: top 0.3s ease, transform 0.3s 0.5s ease;
  top: 0;
  width: 24px;
}

.open-menu .icon-toggle .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}

.open-menu .icon-toggle .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

ul#navigation li.mega-menu__coloum {
  padding-left: 30px;
  border: none;
}

ul#navigation li.mega-menu__coloum--outheading {
  padding-top: 44px;
}

ul#navigation > li {
  padding-bottom: 21px;
}

ul#navigation > li > ul.mega-menu {
  width: 1140px;
  left: -792px;
  top: 45px;
  background-color: #000;
}

.mega-menu__heading {
  font-size: 13px;
  color: #ffffff;
  margin: 13px 0 17px;
}

ul#navigation li.mega-menu__nav-item {
  padding: 0;
  border: none;
  padding-left: 23px;
}

ul#navigation li.mega-menu__nav-item:before {
  content: "";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 14px;
  left: 0;
  transition: 0.3s;
}

ul#navigation li.mega-menu__nav-item:hover:before {
  color: #ffffff;
}

#navigation .menu__nav-item {
  padding: 0;
  border: none;
  padding-left: 23px;
}

#navigation .menu__nav-item:before {
  content: "";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 14px;
  left: 0;
  transition: 0.3s;
}

#navigation .menu__nav-item:hover:before {
  color: #ffffff;
}

.auth {
  position: relative;
  z-index: 21;
}

.auth .auth__show {
  background-color: #000;
  display: inline-block;
  padding-top: 10px;
  padding-left: 4px;
  padding-bottom: 13px;
  min-width: 104px;
  position: relative;
  z-index: 3;
}

.auth .auth__image img {
  width: 31px;
  height: 31px;
}

.auth .auth__function {
  background-color: #000;
  width: 220px;
  padding: 19px 29px 21px;
  display: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  transform-origin: left top;
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 2;
}

.auth .auth__function .auth__function-item {
  color: #B4B1B2;
  display: inline-block;
  padding: 5px 0px 5px 25px;
  position: relative;
}

.auth .auth__function .auth__function-item:hover {
  color: #ffffff;
}

.auth .auth__function .auth__function-item:before {
  content: "";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 12px;
  left: 0;
  transition: 0.3s;
}

.auth .auth__function .auth__function-item:hover:before {
  color: #ffffff;
}

.auth .btn--singin {
  position: absolute;
  top: 9px;
  left: 39px;
  padding-right: 20px;
  z-index: 15;
  color: #B4B1B2;
}

.auth .btn--singin:before {
  left: 9px;
  background-image: url(/images/wave-hover.svg?642063347f1d35c21760762bb404054a);
}

.drop_arrow:after {
  content: "";
  color: #fff;
  font: 11px "FontAwesome";
  position: absolute;
  top: 9px;
  right: 0;
  transition: 0.3s;
}

.btn--singin:hover,
.btn--singin:hover:after {
  color: #ffffff;
}

.btn--singin:hover:before {
  background-image: url(/images/wave-light-sm.svg?d02115999cd8e1b1855b676a9a5c370e);
}

.auth__show:hover {
  cursor: pointer;
}

.auth__show:hover + .btn--singin,
.auth__show:hover + .btn--singin:after {
  color: #ffffff;
}

.auth__show:hover + .btn--singin:before {
  background-image: url(/images/wave-light-sm.svg?d02115999cd8e1b1855b676a9a5c370e);
}

.open-function {
  display: block !important;
  -webkit-animation: anime 500ms;
  animation: anime 500ms;
}

.datepicker {
  position: relative;
  display: inline-block;
  z-index: 15;
}

.datepicker .datepicker__input {
  width: 90px;
  border: none;
  cursor: pointer;
  color: #E2343E;
  background-color: transparent;
  position: relative;
  transition: 0.3s;
}

/* .datepicker:hover .datepicker__input {
    color: #000;
} */

.datepicker:before {
  content: "";
  color: #E2343E;
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  top: 3px;
  right: -2px;
  z-index: -1;
  transition: 0.3s;
}

.datepicker:hover:before {
  color: #000;
}

.datepicker:after {
  content: "";
  /* background-image: url('../images/components/wave-danger.svg'); */
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 88px;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -2px;
}

/* .datepicker:hover:after {
    background-image: url('../images/components/wave-main.svg');
} */

.datepicker .datepicker__marker {
  font-weight: bold;
  padding-right: 10px;
}

.datepicker .datepicker__marker .fa {
  padding-right: 5px;
}

.datepicker--sample {
  margin-left: -40px;
}

.ui-datepicker {
  border: none;
  border-radius: 2px;
  padding: 0;
  margin-left: -170px;
  margin-top: 15px;
  background-color: #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
}

.ui-datepicker:after {
  bottom: 100%;
  right: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(76, 65, 69, 0);
  border-bottom-color: #000;
  border-width: 7px;
  border-collapse: separate;
}

.ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
  border-radius: 0;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  color: #ffffff;
  font: 14px "aleoregular", sans-serif;
  margin-top: 11px;
  margin-bottom: 13px;
}

.ui-datepicker .ui-datepicker-calendar {
  background-color: #000;
}

.ui-datepicker .ui-datepicker-calendar thead {
  background-color: rgba(0, 0, 0, 0.1);
}

.ui-datepicker .ui-datepicker-prev {
  left: 6px;
  top: 11px;
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url(/images/sm-left-arrow.svg?841e280a7e8db804a4c8e7179f361bce);
  background-repeat: no-repeat;
  background-position: center;
}

.ui-datepicker .ui-datepicker-prev:hover {
  background: none;
  border: none;
  border-radius: 0;
  left: 6px;
  top: 11px;
}

.ui-datepicker .ui-datepicker-prev:hover .ui-icon {
  background-image: url(/images/sm-left-arrow-hover.svg?74a0ced75142fc1879b2a5756740aaca);
  border: none;
  border-radius: 0;
  padding: 0;
}

.ui-datepicker .ui-datepicker-next {
  border: none;
  border-radius: 0;
  padding: 0;
  right: 6px;
  top: 11px;
}

.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url(/images/sm-right-arrow.svg?0472a7b7d5b27fe4b454e31a69b1727e);
  background-repeat: no-repeat;
  background-position: center;
}

.ui-datepicker .ui-datepicker-next:hover {
  background: none;
  border: none;
  border-radius: 0;
  right: 6px;
  top: 11px;
}

.ui-datepicker .ui-datepicker-next:hover .ui-icon {
  background-image: url(/images/sm-right-arrow-hover.svg?2f313326df5101aaf40baeb2afbe521f);
}

.ui-datepicker th {
  font-family: "museo_sans500";
  font-size: 11px;
  color: #b4b1b2;
}

.ui-datepicker .ui-state-default {
  background: none;
  border: none;
  box-shadow: none;
  font-family: "museo_sans500";
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  padding: 6px 2px;
}

.ui-datepicker .ui-datepicker-current-day .ui-state-default,
.ui-datepicker td:hover .ui-state-default {
  position: relative;
}

.ui-datepicker .ui-datepicker-current-day .ui-state-default:before,
.ui-datepicker td:hover .ui-state-default:before {
  content: "";
  background-image: url(/images/corner-left.png?f67ff1b318283c0b5999b848668356ae);
  background-repeat: no-repeat;
  width: 5px;
  height: 31px;
  position: absolute;
  top: -1px;
  left: 0px;
}

.ui-datepicker .ui-datepicker-current-day .ui-state-default:after,
.ui-datepicker td:hover .ui-state-default:after {
  content: "";
  background-image: url(/images/corner-right.png?73a86129f72900bbe2d4b78e609c88b5);
  background-repeat: no-repeat;
  width: 5px;
  height: 31px;
  position: absolute;
  top: -1px;
  right: 0px;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.6;
}

.ui-datepicker .ui-datepicker-current-day .ui-state-default,
.ui-datepicker td:hover .ui-state-default {
  color: #E2343E;
}

.select {
  margin-left: 50px;
  padding-bottom: 5px;
}

.select .sbHolder {
  background-color: transparent;
  border: none;
  height: 35px;
  width: 85px;
}

.select .sbSelector {
  color: #E2343E;
  position: relative;
  text-align: right;
  padding-right: 20px;
  width: auto;
  /* float: right; */
  display: inline-block;
  transition: 0.3s;
}

.select .sbSelector:hover {
  color: #000;
}

.select .sbSelector:before {
  content: "";
  color: #E2343E;
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  top: 0px;
  right: 1px;
  z-index: 0;
  transition: 0.3s;
}

.select .sbSelector:hover:before {
  color: #000;
}

/* .select .sbSelector:after {
    content: '';
    background-image: url('../images/components/wave-danger.svg');
    -webkit-background-size: 40px 4px;
    background-size: 40px 4px;
    background-repeat: repeat-x;
    width: 100%;
    height: 4px;
    position: absolute;
    right: 0;
    bottom: 2px;
} */

/* .select .sbSelector:hover:after {
    background-image: url('../images/components/wave-main.svg');
} */

.select .sbToggle {
  right: auto;
  left: -32px;
  top: 6px;
}

.select .sbToggle:hover {
  color: #000;
}

.select .sbToggle:before {
  content: "";
  font: 16px "FontAwesome";
  color: #000;
  position: absolute;
  top: 1px;
  left: -17px;
}

.select .sbToggle:after {
  content: "City";
  font: 13px "Roboto", sans-serif;
  font-weight: bold;
}

.select .sbOptions {
  margin-top: 11px;
  margin-left: -120px;
  border: none;
  background-color: #000;
  width: 210px;
  padding: 19px 24px 21px;
  display: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  border-radius: 2px;
  transform-origin: left top;
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 34;
  overflow: visible;
}

.select .sbOptions:after {
  content: " ";
  height: 0;
  width: 0;
  bottom: 100%;
  right: 20px;
  border: solid transparent;
  position: absolute;
  border-color: rgba(76, 65, 69, 0);
  border-bottom-color: #000;
  border-width: 7px;
}

.select .sbOptions a {
  border: none;
  color: #B4B1B2;
  display: inline-block;
  padding: 5px 0px 5px 25px;
  position: relative;
}

.select .sbOptions a:hover {
  color: #ffffff;
}

.select .sbOptions a:before {
  content: "";
  color: #b4b1b2;
  font: 5px "FontAwesome";
  position: absolute;
  top: 12px;
  left: 0;
  transition: 0.3s;
}

.select .sbOptions a:hover:before {
  color: #ffffff;
}

.mega-select .mega-select__point {
  font-weight: bold;
  font-size: 13px;
  float: left;
  margin-top: 2px;
  margin-right: 30px;
}

.mega-select .filter-wrap {
  position: relative;
  display: inline-block;
  margin: 0 13px;
}

.mega-select .mega-select__filter {
  position: relative;
}

.mega-select .mega-select__filter:after {
  content: "";
  /* background-image: url('../images/components/wave-main.svg'); */
  background-repeat: repeat-x;
  background-size: 40px 4px;
  height: 4px;
  width: 48px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  margin-left: -24px;
}

.mega-select .mega-select__filter:hover:after {
  background-image: url(/images/wave-danger.svg?3c2c0755490757c529a5a70a8218ece5);
}

.mega-select .filter--active {
  color: #E2343E;
}

.mega-select .filter--active:after,
.mega-select .filter--active:hover:after {
  display: none;
}

.mega-select .select__field {
  width: 550px;
  border-radius: 3px;
  background-color: #fff;
  border: solid 1px #dbdee1;
  font-size: 13px;
  color: #000;
  padding: 8px 20px 9px;
  margin-top: 7px;
  float: left;
  margin-right: -3px;
}

.mega-select .select__btn {
  margin-top: 6px;
  display: inline-block;
  float: right;
}

.mega-select .select__btn a {
  display: none;
}

.mega-select .select__btn--sample {
  float: none;
  margin-top: 14px;
}

.mega-select .select__dropdowns {
  position: relative;
}

.mega-select .select__group {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 43px;
  left: 0;
  z-index: 75;
  display: none;
  padding: 19px 30px 20px;
  margin-left: 1px;
  width: 596px;
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.mega-select .select__group .select__variant {
  color: #b4b1b2;
  font-size: 13px;
  padding: 6px 0;
  cursor: pointer;
  transition: 0.3s;
}

.mega-select .select__group .select__variant:hover {
  color: #ffffff;
}

.select__dropdowns--sample .select__group {
  top: 0;
}

.pagination {
  padding-right: 30px;
  display: block;
}

.pagination .pagination__prev {
  font: 13px "aleoregular", sans-serif;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 0 9px 43px;
  margin-left: -8px;
  background-image: url(/images/left-arrow-dark.svg?21428fa99ee4c8860cc39baafab3f883);
  background-repeat: no-repeat;
  background-position: left center;
}

.pagination .pagination__prev:hover {
  color: #E2343E;
  background-image: url(/images/left-arrow-danger.svg?99543fb62f8265943037fbae417c4ab5);
  background-position: 0 50%;
}

.pagination .pagination__next {
  font: 13px "aleoregular", sans-serif;
  color: #000;
  text-transform: uppercase;
  float: right;
  display: inline-block;
  padding: 8px 43px 9px 0;
  margin-right: -8px;
  background-image: url(/images/right-arrow-dark.svg?dbcaf52d9449abb87d78355807fa8ce8);
  background-repeat: no-repeat;
  background-position: right center;
}

.pagination .pagination__next:hover {
  color: #E2343E;
  background-image: url(/images/right-arrow-danger.svg?6511d40fb692a050b21dcd2765f89b54);
}

.booking-pagination {
  text-align: center;
  margin-top: 57px;
  margin-bottom: 90px;
}

.booking-pagination .booking-pagination__prev {
  display: inline-block;
  padding: 6px 14px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  transition: 0.4s;
}

.booking-pagination .booking-pagination__prev:hover {
  color: #ffffff;
  background-color: #E2343E;
}

.booking-pagination .booking-pagination__prev:hover .arrow__text {
  color: #ffffff;
  border-color: #ffffff;
}

.booking-pagination .booking-pagination__prev:hover .arrow__text:before {
  color: #ffffff;
}

.booking-pagination .booking-pagination__prev:hover .arrow__info {
  color: #ffffff;
}

.booking-pagination .booking-pagination__next {
  display: inline-block;
  padding: 6px 14px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  transition: 0.4s;
}

.booking-pagination .booking-pagination__next:hover {
  color: #ffffff;
  background-color: #E2343E;
}

.booking-pagination .booking-pagination__next:hover .arrow__text {
  color: #ffffff;
  border-color: #ffffff;
}

.booking-pagination .booking-pagination__next:hover .arrow__text:before {
  color: #ffffff;
}

.booking-pagination .booking-pagination__next:hover .arrow__info {
  color: #ffffff;
}

.booking-pagination .hide--arrow {
  display: none;
}

.booking-pagination .arrow__text {
  position: relative;
  font: 16px "aleoregular", sans-serif;
  color: #E2343E;
  text-transform: uppercase;
  border-bottom: 1px solid #dbdee1;
  margin-bottom: 2px;
  padding: 0 48px 5px;
  transition: 0.4s;
  display: block;
}

.booking-pagination .arrow--prev:before {
  content: "";
  font: 15px "FontAwesome";
  color: #E2343E;
  position: absolute;
  top: 18px;
  left: -2px;
  transition: 0.4s;
}

.booking-pagination .arrow--next:before {
  content: "";
  font: 15px "FontAwesome";
  color: #E2343E;
  position: absolute;
  top: 18px;
  right: -2px;
  transition: 0.4s;
}

.booking-pagination .arrow__info {
  font: 14px "aleoitalic", sans-serif;
  color: #969b9f;
  transition: 0.4s;
}

.booking-pagination--margin {
  margin-top: 112px;
}

.movie .movie__info {
  margin-left: -15px;
  margin-right: -15px;
}

.movie .movie__images {
  position: relative;
  border: 3px solid #ffd564;
}

.movie .movie__images img {
  max-width: 100%;
  width: 100%;
}

.movie .movie__title {
  display: inline-block;
  margin-bottom: -6px;
  max-width: 330px;
}

.movie .movie__rate {
  position: relative;
  padding: 35px 17px 19px;
  border: 3px solid #ffd564;
  border-top: none;
  font: 16px "aleoregular", sans-serif;
  color: #000;
}

.movie .movie__rate .score {
  display: inline-block;
  padding-left: 15px;
}

.movie .movie__rate .movie__rate-number {
  font: 11px "Roboto", sans-serif;
  display: block;
}

.movie .movie__rating {
  width: 47px;
  height: 47px;
  padding-top: 10px;
  border-radius: 24px;
  background-color: #ffd564;
  border: solid 3px #fff;
  font: 16px "Roboto", sans-serif;
  color: #000;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 6px;
  left: 6px;
}

.movie .movie__time {
  position: relative;
  font-size: 13px;
  color: #E2343E;
  margin-bottom: 20px;
  padding-left: 20px;
}

.movie .movie__time:before {
  content: "";
  font: 16px "FontAwesome";
  color: #E2343E;
  position: absolute;
  top: 6px;
  left: 0;
}

.movie .movie__option {
  font-size: 13px;
  margin-bottom: 3px;
}

.movie .comment-link {
  position: relative;
  display: inline-block;
  font: 16px "aleoregular", sans-serif;
  color: #E2343E;
  margin-top: 30px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.movie .comment-link:after {
  content: "";
  background-image: url(/images/wave-danger.svg?3c2c0755490757c529a5a70a8218ece5);
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -2px;
}

.movie .comment-link:hover {
  color: #000;
}

.movie .comment-link:hover:after {
  /* background-image: url('../images/components/wave-main.svg'); */
}

.movie .movie__btns {
  position: absolute;
  right: 0;
  top: 0;
}

.movie .movie__btns .btn {
  display: block;
}

.movie .movie__btns .watchlist {
  float: right;
  margin-top: 20px;
}

.movie .movie__describe {
  font-size: 13px;
}

.movie .movie__media {
  padding: 20px 5px;
  position: relative;
  width: 100%;
  height: 162px;
  background-image: url(/images/bg-movie.png?5243181a7afa3cc8ea32deb28a1febb8);
  background-repeat: repeat-x;
}

.movie .movie__media .swiper-container {
  max-height: 120px;
}

.movie .movie__media .movie__media-switch {
  position: absolute;
  top: -48px;
  right: 0;
}

.movie .movie__media .list--photo {
  margin-right: -3px;
  border-radius: 3px 0 0 3px;
  padding-left: 41px;
  padding-right: 21px;
}

.movie .movie__media .list--photo:before {
  content: "";
  font-size: 13px;
  top: 5px;
  left: 21px;
}

.movie .movie__media .list--video {
  border-radius: 0 3px 3px 0;
  padding-left: 41px;
  padding-right: 21px;
}

.movie .movie__media .list--video:before {
  content: "";
  font-size: 13px;
  top: 5px;
  left: 21px;
}

.movie .movie__media .movie__media-item {
  padding: 0 5px;
  display: block;
}

.time-select {
  margin-top: 8px;
}

.time-select .time-select__group {
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
  background-color: #f5f5f5;
}

.time-select .time-select__group:before {
  content: "";
  width: 2px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  left: 31%;
  top: 0;
}

.time-select .time-select__group:after {
  content: "";
  width: 2px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  left: 31%;
  bottom: 0;
}

.time-select .group--first:before {
  display: none;
}

.time-select .group--last:after {
  display: none;
}

.time-select .time-select__place {
  font-size: 16px;
  margin-top: 21px;
  margin-left: 5px;
  margin-bottom: 23px;
}

.time-select .time-select__item {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-size: 12px;
  background-color: #ffd564;
  padding: 9px 15px 8px 14px;
  margin: 5px 16px 5px 0;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}

.time-select .time-select__item:hover {
  background-color: #E2343E;
  color: #fff;
}

.time-select .time-select__item:hover a {
  color: #fff;
}

.time-select .time-select__item a span {
  font-weight: bold;
}

.time-select .time-select__item .not_seance {
  color: red;
  font-size: 16px;
}

.time-select .time-select__item:hover .not_seance {
  color: #fff;
  font-size: 16px;
}

/* .time-select .time-select__item:before {
    content: '';
    width: 54px;
    height: 28px;
    border: 1px solid #ffffff;
    position: absolute;
    top: 3px;
    left: 3px;
} */

/* .time-select .time-select__item:after {
    content: '';
    width: 64px;
    height: 34px;
background-image: url(../images/components/bg-time.png);
    background-repeat: no-repeat;
    -webkit-background-size: 64px 34px;
    background-size: 64px 34px;
    position: absolute;
    top: 0px;
    left: -2px;
    z-index: -1;
} */

.time-select .time-select__item:hover:after {
  /* background-image: url(../images/components/bg-time-hover.png); */
}

.time-select .time-select__item.active {
  background-color: #E2343E;
}

.time-select .time-select__item.active:after {
  background-image: url(/images/bg-time-hover.png?7fc374b02688129e4812c6c893917237);
}

.time-select .items-wrap {
  padding-top: 15px;
  margin-bottom: 5px;
}

.time-select--wide {
  margin-top: -3px;
  margin-bottom: 15px;
}

.time-select--wide .time-select__group:before,
.time-select--wide .time-select__group:after {
  left: 23%;
}

#cimenas-map {
  height: 100%;
  min-height: 404px;
  margin-top: 8px;
}

#cinema-map {
  height: 530px;
  width: 100%;
}

#location-map {
  height: 380px;
  width: 100%;
  margin-bottom: -60px;
}

.hide-map {
  display: none;
}

.show-time {
  display: none;
}

.pop_up_box_text {
  display: block;
}

.pop_up_box_text:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(76, 65, 69, 0);
  border-right-color: #000;
  border-width: 7px;
  margin-top: -7px;
}

.mfp-counter {
  display: none;
}

.mfp-zoom-out-cur {
  cursor: auto;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.25s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.25s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.cinema {
  position: relative;
}

.cinema .cinema__images {
  position: relative;
  display: block;
}

.cinema .cinema__images img {
  max-width: 100%;
}

.cinema .cinema__images:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(76, 65, 69, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.5s;
}

.cinema .cinema__images:hover:before {
  opacity: 0;
}

.cinema .cinema-title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 45px;
  margin-top: 5px;
}

.cinema .cinema-rating {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  padding-top: 38px;
  font: 20px "aleobold", sans-serif;
  text-align: center;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  transition: 0.5s;
}

.cinema .cinema-rating:before {
  content: "";
  /* background-image: url(../images/rate/star-off.svg); */
  background-repeat: no-repeat;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -7px;
}

.cinema .cinema-rating:after {
  content: "";
  /* background-image: url(../images/rate/star-off.svg); */
  background-repeat: no-repeat;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -7px;
}

.cinema .cinema__images:hover .cinema-rating {
  transform: scale(0);
  opacity: 0;
}

.cinema-wrap {
  margin-top: 30px;
  overflow: hidden;
  margin-bottom: 10px;
}

.cinema-wrap .row:before,
.cinema-wrap .row:after {
  display: initial;
}

.trailer-wrapper {
  margin-top: 30px;
  overflow: hidden;
  margin-bottom: 60px;
}

.trailer-block {
  overflow: hidden;
  padding-bottom: 65px;
  margin-top: 30px;
  border-bottom: 1px solid #dbdee1;
  position: relative;
}

.hidden-content {
  display: none;
  overflow: hidden;
  clear: both;
}

.trailer {
  background-color: #000;
  height: 100%;
  overflow: hidden;
}

.trailer .trailer__name {
  font: 13px "aleoregular", sans-serif;
  color: #ffffff;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 20px;
}

.trailer .trailer__number {
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  z-index: 12;
}

.trailer .trailer__number:before {
  content: "";
  color: #7c7578;
  font: 42px "FontAwesome";
  position: absolute;
  top: -13px;
  left: 50%;
  margin-left: -22px;
  z-index: -1;
}

.trailer-sample {
  display: block;
  margin-bottom: 10px;
}

.trailer-sample img {
  max-width: 100%;
}

.trailer-btn {
  display: block;
  width: 25px;
  height: 5px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  bottom: 20px;
  padding: 15px 0;
}

.trailer-btn .btn-circled {
  margin-left: 10px;
  position: relative;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #000;
  transition: 0.3s;
}

.trailer-btn .btn-circled:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #000;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: -10px;
}

.trailer-btn .btn-circled:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #000;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: -10px;
}

.trailer-btn:hover .btn-circled,
.trailer-btn:hover .btn-circled:before,
.trailer-btn:hover .btn-circled:after {
  background-color: #E2343E;
}

.trailer-block--short {
  padding-bottom: 30px;
}

.rates {
  background-color: #f5f5f5;
  border-bottom: 2px solid #ffffff;
}

.rates .rates__obj {
  padding-left: 20px;
}

.rates .rates__obj * {
  font-size: 16px;
}

.rates .rates__obj .rates__obj-name {
  position: relative;
  display: block;
  padding: 25px 0;
}

.rates .rates__obj .rates__obj-name:before {
  background-color: #FFFFFF;
  content: "";
  height: 25px;
  right: 0;
  position: absolute;
  top: 0;
  width: 2px;
}

.rates .rates__obj .rates__obj-name:after {
  background-color: #FFFFFF;
  bottom: 0;
  content: "";
  height: 25px;
  right: 0;
  position: absolute;
  width: 2px;
}

.rates .rates__vote {
  text-align: center;
  font-size: 13px;
}

.rates .rates__result {
  text-align: center;
  font: 20px "aleobold", sans-serif;
  background-color: #ffd564;
}

.rates .rates__stars .score {
  margin-left: 50px;
}

.rates .rates__stars .score img {
  width: 15px;
  height: 15px;
}

.rates .rates__done {
  font-size: 13px;
  color: #000;
  margin-left: -17px;
}

.rates:first-of-type .rates__obj-name:before {
  display: none;
}

.rates:last-of-type .rates__obj-name:after {
  display: none;
}

.rates--top {
  background-color: #fff0c7;
}

.rates--top .rates__obj-name {
  font-weight: bold;
}

.offer {
  background-color: #000;
  overflow: hidden;
  display: block;
  text-align: center;
  min-height: 325px;
  padding: 0 25px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.offer .offer__head {
  position: relative;
  height: 120px;
  display: block;
  margin-bottom: 41px;
}

.offer .offer__head:before {
  background-image: url(/images/wave-light.svg?58b8d82716e3ac9a45aeb0505802d443);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  bottom: 0px;
  content: "";
  height: 8px;
  left: 50%;
  margin-left: -42px;
  position: absolute;
  width: 84px;
}

.offer .offer__name {
  color: #ffffff;
  font: 30px "aleobold", sans-serif;
  text-transform: uppercase;
  margin-top: 44px;
  margin-bottom: 17px;
  transition: 0.3s;
}

.offer .offer__datail {
  color: #ffffff;
  font: 18px "aleoitalic", sans-serif;
  text-transform: none;
  font-weight: 300;
  line-height: 21px;
  transition: 0.3s;
}

.offer .offer__full {
  color: #b4b1b2;
  font-size: 13px;
  transition: 0.3s;
}

.offer:hover {
  background-color: #ffd564;
}

.offer:hover .offer__name,
.offer:hover .offer__datail,
.offer:hover .offer__full {
  color: #000;
}

.offer-place {
  color: #E2343E;
  font-family: "aleoitalic", sans-serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 23px;
}

.offers-block {
  overflow: hidden;
  margin-top: -10px;
  margin-bottom: 32px;
}

.offers-block--last {
  margin-bottom: -30px;
}

.gallery-item {
  /* border-bottom: 1px solid #dbdee1; */
  margin-top: 20px;
  margin-bottom: 10px;
  max-width: 524px;
}

.gallery-item .gallery-item__image {
  display: block;
  position: relative;
}

.gallery-item .gallery-item__image img {
  max-width: 100%;
  width: 100%;
}

.gallery-item .gallery-item__image:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.35s;
}

.gallery-item .gallery-item__image:hover:before {
  width: 80%;
  height: 80%;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
  opacity: 1;
}

.gallery-item .gallery-item__image:after {
  content: "";
  font: 20px "FontAwesome";
  color: #ffffff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  transition: 0.35s;
}

.gallery-item .gallery-item__image:hover:after {
  opacity: 1;
}

.gallery-item .gallery-item__descript {
  position: relative;
  margin-top: 8px;
  display: block;
}

.gallery-item .gallery-item__descript .gallery-item__icon {
  padding: 0 11px 0 13px;
  color: #ffffff;
  position: relative;
  z-index: 5;
}

.gallery-item .gallery-item__descript .gallery-item__name {
  display: inline-block;
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: #363639;
  font-weight: bold;
  padding-left: 8px;
  margin-bottom: 9px;
  transition: 0.3s;
}

.gallery-item .gallery-item__descript:hover .gallery-item__name {
  color: #ffffff;
}

/* .gallery-item .gallery-item__descript:before {
    content: '';
    width: 40px;
    height: 28px;
    background-color: #ffd564;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
} */

.gallery-item .gallery-item__descript:hover:before {
  width: 100%;
}

.contact {
  text-align: center;
}

.contact .contact__title {
  font: 30px "aleobold", sans-serif;
  line-height: 30px;
  margin-top: 45px;
  margin-bottom: 23px;
}

.contact .contact__describe {
  font-size: 22px;
  font-weight: normal;
  font-family: "aleoitalic", sans-serif;
}

.contact .contact__mail {
  display: inline-block;
  padding: 0 15px 0 42px;
  font-size: 16px;
  margin-top: 46px;
  position: relative;
}

.contact .contact__mail:before {
  content: "";
  font: 16px "FontAwesome";
  color: #000;
  position: absolute;
  top: 4px;
  left: 15px;
}

.contact .contact__tel {
  display: inline-block;
  padding: 0 15px 0 42px;
  font-size: 16px;
  margin-top: 46px;
  position: relative;
}

.contact .contact__tel:before {
  content: "";
  font: 16px "FontAwesome";
  color: #000;
  position: absolute;
  top: 4px;
  left: 15px;
}

.form {
  text-align: center;
}

.form .form__title {
  font: 30px "aleobold", sans-serif;
  line-height: 30px;
  margin-bottom: 26px;
}

.form .form__name,
.form .form__mail,
.form .form__message {
  margin-bottom: 10px;
  width: 100%;
  border: none;
  box-shadow: none;
  border: 1px solid #dbdee1;
  border-radius: 3px;
  font-size: 13px;
  color: #b4b1b2;
  padding: 9px 18px 10px;
}

.form .form__message {
  min-height: 110px;
}

.contact-form-wrapper {
  background-color: #ffd564;
  overflow: hidden;
  margin: 76px 0;
  padding: 56px 0 60px;
}

.contact-info {
  text-align: left;
}

.contact-info .contact-info__field {
  position: relative;
  width: 360px;
  display: inline-block;
  margin-right: 28px;
}

.contact-info .contact-info__field .form__mail {
  padding-left: 60px;
}

.contact-info .contact-info__field:before {
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 3px 0 0 3px;
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 0;
}

.contact-info .contact-info__field:after {
  content: "";
  color: #b4b1b2;
  font: 13px "FontAwesome";
  position: absolute;
  top: 10px;
  left: 15px;
}

.contact-info .contact-info__field-mail:after {
  content: "";
  left: 13px;
}

.contact-info .contact-info__field-tel:after {
  content: "";
}

.error {
  margin-top: 240px;
  margin-bottom: 140px;
  background-color: #000;
  padding-top: 93px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.error .error__image {
  height: 99px;
  width: 207px;
}

.error .error__text {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 20px;
  font-family: "aleobold", sans-serif;
  margin-top: -3px;
  margin-bottom: 46px;
}

.couter {
  overflow: hidden;
  text-align: center;
  margin-top: 390px;
  margin-bottom: 70px;
}

.couter .timer-wrap {
  display: inline-block;
  position: relative;
  padding: 8px;
}

.couter .timer-bg {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 180px;
  height: 180px;
  border-radius: 90px;
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 3px #fff;
}

.couter .digits {
  font: 50px "Roboto", sans-serif;
  color: #ffffff;
  font-weight: bold;
  display: block;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  text-align: center;
}

.couter .digits-label {
  font: 20px "aleoitalic", sans-serif;
  color: #ffffff;
  margin-top: -2px;
  position: absolute;
  top: 123px;
  left: 0;
  width: 100%;
  text-align: center;
}

.couter .digits + div > canvas {
  transform: rotateY(-180deg);
}

.order {
  text-align: center;
}

.order .order__images {
  width: 76px;
}

.order .order__title {
  font: 30px "aleobold", sans-serif;
  text-transform: uppercase;
  line-height: 26px;
  margin-top: 5px;
}

.order .order__descript {
  font-size: 16px;
  text-transform: none;
  font-weight: normal;
  font-family: "aleoitalic", sans-serif;
}

.order .order__control {
  margin-top: 36px;
}

.order .order__control .order__control-btn {
  border: 1px solid #000;
  border-radius: 3px;
  color: #000;
  font-size: 13px;
  padding: 4px 20px 6px 20px;
  position: relative;
  transition: all 0.5s ease 0s;
}

.order .order__control .order__control-btn.active,
.order .order__control .order__control-btn:hover,
.order .order__control .order__control-btn:focus {
  background-color: #969B9F;
  border-color: #969B9F;
  color: #FFFFFF;
  text-decoration: none;
}

.order .order__control .order__control-btn.active {
  padding: 4px 15px 6px 28px;
}

.order__control-btn.active:before {
  content: "";
  color: #FFFFFF;
  font: 13px "FontAwesome";
  left: 12px;
  position: absolute;
  top: 6px;
  transition: 0.5s;
}

.order-step-area {
  border-bottom: 1px solid #dbdee1;
  padding-bottom: 2px;
  margin-left: 15px;
  margin-right: 15px;
}

.order-step-area .order-step {
  font: 16px "aleoregular", sans-serif;
  padding-left: 55px;
  position: relative;
  width: 33.2%;
  display: inline-block;
}

.order-step-area .order-step:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 21px 46px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  left: 0;
  top: -1px;
}

.order-step-area .order-step:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.order-step-area .first--step {
  margin-right: -3px;
}

.order-step-area .first--step:before {
  border-color: transparent transparent #ffd564 transparent;
}

.order-step-area .first--step:after {
  background-color: #ffd564;
}

.order-step-area .second--step {
  margin-right: -3px;
}

.order-step-area .second--step:before {
  border-color: transparent transparent #E2343E transparent;
}

.order-step-area .second--step:after {
  background-color: #E2343E;
}

.order-step-area .third--step:before {
  border-color: transparent transparent #000 transparent;
}

.order-step-area .third--step:after {
  background-color: #000;
  width: 101%;
}

.order-step-area .order-step--disable {
  color: #dbdee1;
}

.order-step-area .order-step--disable:before {
  border-color: transparent transparent #dbdee1 transparent;
}

.order-step-area .order-step--disable:after {
  background-color: #dbdee1;
}

.choose-film .film-images {
  position: relative;
}

.choose-film .film-images:before {
  content: "";
  width: 99.8%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.choose-film .film-images:hover:before {
  opacity: 0;
}

.choose-film .choose-film__title {
  font-size: 13px;
  padding-left: 10px;
}

.choose-film .film--choosed {
  position: relative;
}

.choose-film .film--choosed:before {
  opacity: 0;
}

.choose-film .film--choosed:after {
  content: "";
  color: #000;
  font: 20px "FontAwesome";
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  padding-top: 40px;
  background-color: #ffd564;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

.choose-film .swiper-slide:hover {
  cursor: url(/images/cursor.png?c5d50e5594d4c801cab4cc54b75a010d), auto;
}

.choose-indector {
  position: relative;
  z-index: 13;
  width: 100%;
  background-color: #000;
  color: #ffffff;
  font-size: 13px;
  border-radius: 3px;
  padding: 6px 21px 7px;
  cursor: pointer;
}

.choose-indector:before {
  content: "";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 8px;
  right: 21px;
}

.hide-content:before {
  content: "";
}

.choose-indector--film {
  margin-top: -9px;
  margin-bottom: 10px;
}

.choose-sits {
  text-align: center;
  margin-top: 70px;
}

.choose-sits .choose-sits__info {
  display: inline-block;
  font-size: 13px;
  padding: 10px 20px 0 40px;
  margin-bottom: 52px;
}

.choose-sits .choose-sits__info .sits-price {
  position: relative;
  display: inline-block;
  padding: 0 22px;
}

.choose-sits .choose-sits__info .sits-price:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}

.choose-sits .choose-sits__info .marker--none:before {
  display: none;
}

.choose-sits .choose-sits__info .sits-state {
  position: relative;
  display: inline-block;
  padding: 0 25px;
}

.choose-sits .choose-sits__info .sits-state:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}

.sits-anchor {
  position: relative;
  color: #969b9f;
  font-size: 13px;
}

.sits-anchor:before {
  content: "";
  background-color: #969b9f;
  width: 380px;
  height: 5px;
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -190px;
}

.sits {
  position: relative;
  margin-top: 35px;
}

.sits .sits__indecator {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px;
  border: 1px solid #000;
  font-size: 13px;
  padding-top: 5px;
}

.sits .sits__line {
  width: 30px;
  position: absolute;
  top: -1px;
  left: 0;
}

.sits .sits__number {
  margin-top: 60px;
  font-size: 0;
}

.sits .sits__checked {
  position: relative;
  width: 50px;
  height: 450px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 5px;
  padding: 50px 10px 60px;
}

.sits .sits__checked:before {
  content: "";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 20px;
  left: 18px;
}

.sits .sits__checked:after {
  content: "=";
  font: 13px;
  color: #ffffff;
  position: absolute;
  bottom: 41px;
  left: 20px;
}

.sits .sits__checked .checked-place {
  overflow: hidden;
  max-height: 340px;
}

.sits .sits__checked .checked-result {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.sits .sits__checked .choosen-place {
  display: block;
  color: #ffffff;
  font-size: 10px;
  padding: 8px 0;
}

.sits .sits__row {
  font-size: 0;
}

.sits .sits__row .sits__place {
  position: relative;
  margin: 5px;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  font-size: 10px;
  color: #ffffff;
  z-index: 13;
  text-indent: -9999px;
}

.sits .sits__row .sits__place:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}

.sits .sits__row .sits__place:hover {
  text-indent: 0;
  cursor: pointer;
}

.sits .sits__row .sits__place:hover:before {
  background-color: #000;
}

.sits .sits__row .sits-state--not:hover {
  text-indent: -9999px;
  cursor: auto;
}

.sits .sits__row .sits-state--not:hover:before {
  background-color: #dbdee1;
}

.sits .sits__row .sits-state--your {
  text-indent: -9999px;
}

.sits .sits__row .sits-state--your:after {
  content: "";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 7px;
  left: 9px;
  z-index: 15;
  text-indent: 0px;
}

.sits .sits__row .sits-state--your:hover {
  text-indent: -9999px;
}

.sits .sits__row .sits-state--your:hover:after {
  content: "";
  left: 10px;
}

.additional-margin {
  margin-top: 20px;
}

.sits__line .additional-margin {
  margin-top: 25px;
}

.sits-area--mobile {
  text-align: left;
  margin-top: 20px;
}

.sits-area--mobile img {
  max-width: 100%;
}

.sits-area--mobile .sbHolder {
  display: block;
  float: left;
  margin-right: 15px;
  width: 140px;
  height: 35px;
  border: 1px solid #DBDEE1;
  background-color: #fff;
}

.sits-area--mobile .sbHolder .sbSelector {
  margin-top: 4px;
  margin-left: 5px;
  color: #000;
  font-size: 13px;
}

.sits-area--mobile .sbHolder .sbOptions {
  width: 140px;
  top: 37px !important;
  border: none;
  padding: 14px 7px;
  z-index: 23;
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.sits-area--mobile .sbHolder .sbOptions a {
  color: #b4b1b2;
  border: none;
}

.sits-area--mobile .sbHolder .sbOptions a:hover,
.sits-area--mobile .sbHolder .sbOptions a:focus {
  color: #ffffff;
}

.sits-area--mobile .sbHolder .sbToggle {
  top: 10px;
  right: -2px;
}

.sits-area--mobile .sbHolder .sbToggle:before {
  content: "";
  color: #000;
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.sits-area--mobile .sbHolder .sbToggleOpen:before {
  content: "";
}

.sits-area--mobile .sits-select {
  margin-bottom: 20px;
}

.sits-area--mobile .watchlist {
  margin-top: 2px;
  display: block;
  margin: 20px 0;
  width: 120px;
}

.sits-area--mobile .sits__checked {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #000;
  margin-top: 0px;
  padding: 0px 50px;
}

.sits-area--mobile .sits__checked:before {
  content: "";
  font: 13px "FontAwesome";
  color: #ffffff;
  position: absolute;
  top: 18px;
  left: 18px;
}

.sits-area--mobile .sits__checked:after {
  content: "=";
  font: 13px;
  color: #ffffff;
  position: absolute;
  bottom: 16px;
  right: 55px;
}

.sits-area--mobile .sits__checked .checked-place {
  overflow: hidden;
  max-width: 80%;
}

.sits-area--mobile .sits__checked .checked-result {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 100%;
  text-align: right;
  padding-top: 5px;
}

.sits-area--mobile .sits__checked .choosen-place {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  font-size: 12px;
  padding: 16px 0;
}

.book-result {
  margin: -9px 0 -7px;
}

.book-result .book-result__item {
  display: inline-block;
  font-size: 13px;
  color: #000;
  padding-right: 30px;
}

.book-result .book-result__count {
  padding: 0 25px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 2px;
}

.book-result .booking-cost {
  color: #E2343E;
}

.reservation-message {
  position: relative;
  font-size: 13px;
  padding-left: 45px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.reservation-message:before {
  content: "";
  background-image: url(/images/speech.svg?8584ff53688f5a96e72f0b60eb4cae57);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 42px 36px;
  width: 45px;
  height: 40px;
  position: absolute;
  top: -4px;
  left: -1px;
}

.reservation-message:after {
  content: "i";
  font: 18px "aleobold", sans-serif;
  color: #000;
  position: absolute;
  top: 2px;
  left: 18px;
}

.ticket {
  width: 1170px;
  position: relative;
  margin-top: 68px;
  padding: 37px 0;
  text-align: center;
  background-image: url(/images/stroke.svg?0ae126e4b7e779cf654a581b8cc8d3fe);
  background-repeat: no-repeat;
}

.ticket .ticket__inner {
  border: 3px solid #dbdee1;
  overflow: hidden;
  float: left;
  height: 300px;
  width: 820px;
}

.ticket .ticket__indecator {
  position: relative;
  border: 3px solid #dbdee1;
  width: 50px;
  float: left;
  height: 300px;
  font-family: "PT Mono";
  font-size: 12px;
  color: #dbdee1;
}

.ticket .indecator-text {
  position: absolute;
  width: 100px;
}

.ticket .indecator-text:before {
  content: "";
  background-image: url(/images/stars-light.svg?e9aa011f58bfcc70aa4d704bcba41c60);
  background-repeat: no-repeat;
  width: 80px;
  height: 16px;
  position: absolute;
  top: 0px;
  left: -95px;
}

.ticket .indecator-text:after {
  content: "";
  background-image: url(/images/stars-light.svg?e9aa011f58bfcc70aa4d704bcba41c60);
  background-repeat: no-repeat;
  width: 80px;
  height: 16px;
  position: absolute;
  top: 0px;
  right: -95px;
}

.ticket .indecator--pre {
  margin-right: -3px;
}

.ticket .indecator--post {
  margin-left: -3px;
}

.ticket .pre--text {
  transform: rotate(90deg) translateZ(0);
  margin-top: 137px;
  left: -26px;
}

.ticket .post--text {
  transform: rotate(-90deg) translateZ(0);
  margin-top: 137px;
  left: -29px;
}

.ticket .ticket__place {
  color: #E2343E;
}

.ticket .ticket__item {
  display: block;
  margin-bottom: 10px;
  font-family: "PT Mono";
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
}

.ticket .ticket__item--primery {
  font-size: 20px;
}

.ticket .ticket__date,
.ticket .ticket__time {
  display: inline-block;
  margin-right: 30px;
  margin-top: 30px;
}

.ticket .ticket__price {
  margin-top: 40px;
}

.ticket .ticket__film {
  border-bottom: 1px solid #dbdee1;
  padding-bottom: 44px;
  margin-bottom: 28px;
}

.ticket .ticket__movie {
  text-transform: none;
}

.ticket-primery {
  overflow: hidden;
  border-left: 3px double #dbdee1;
  margin-top: 37px;
  padding: 27px 35px 22px 30px;
}

.ticket-secondary {
  float: left;
  text-align: left;
  padding: 47px 80px 30px 60px;
}

.ticket-position {
  display: inline-block;
  overflow: hidden;
}

.ticket-control {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
}

.ticket-control .list--download {
  border-radius: 3px 0 0 3px;
  margin-right: -5px;
}

.ticket-control .list--download:before {
  content: "";
  font-size: 13px;
  top: 5px;
}

.ticket-control .list--print {
  border-radius: 0 3px 3px 0;
}

.ticket-control .list--print:before {
  content: "";
  font-size: 13px;
  top: 5px;
}

.booking-form input {
  display: none;
}

.bannercontainer {
  width: 100%;
  position: relative;
  padding: 0;
  max-height: 500px;
  overflow: hidden;
}

.tparrows.tp-leftarrow.hebe {
  background: none;
  display: block;
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  color: #ffffff;
  border: 3px solid transparent;
  transform: matrix(1, 0, 0, 1, 20, -11) !important;
  transition: 0.3s;
}

.tparrows.tp-leftarrow.hebe:before {
  content: "";
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  background-color: transparent;
  background-image: url(/images/left-arrow.svg?3546b4a564e10dff09568300ffb9f8e1);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  transition: 0.3s;
}

.tparrows.tp-leftarrow.hebe .slider__info {
  margin: 18px 10px 18px 55px;
  opacity: 0;
  transition: 0.3s;
  width: 130px;
  display: none;
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  line-height: 21px;
  text-align: right;
  padding-right: 15px;
  padding-left: 10px;
}

.tparrows.tp-leftarrow.hebe .slider__info:before {
  content: "back";
  font: 13px "aleoitalic", sans-serif;
  color: #ffd564;
  position: absolute;
  bottom: 22px;
  right: 19px;
}

.tparrows.tp-leftarrow.hebe .slider__info:after {
  content: "";
  background-image: url(/images/wave.svg?2afdb94d893ee360df18f4bb5dbb4879);
  background-repeat: no-repeat;
  background-size: 48px 4px;
  width: 48px;
  height: 4px;
  position: absolute;
  bottom: 43px;
  right: 19px;
}

.tparrows.tp-leftarrow.hebe:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -41px !important;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
}

.tparrows.tp-leftarrow.hebe:hover .slider__info {
  opacity: 1;
  display: inline-block;
}

.tparrows.tp-leftarrow.hebe:hover:before {
  left: 9px;
  margin-top: -20px;
}

.tparrows.tp-rightarrow.hebe {
  background: none;
  margin-top: -18px !important;
  display: block;
  width: 40px;
  height: 40px;
  left: auto !important;
  right: 0 !important;
  min-width: auto;
  min-height: auto;
  color: #ffffff;
  border: 3px solid transparent;
  transform: matrix(1, 0, 0, 1, -20, -11) !important;
  transition: 0.3s;
}

.tparrows.tp-rightarrow.hebe:before {
  content: "";
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  background-color: transparent;
  background-image: url(/images/right-arrow.svg?587a45960a8e803d2e9fe40e0648af0f);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  transition: 0.3s;
}

.tparrows.tp-rightarrow.hebe .slider__info {
  margin: 18px 55px 18px 10px;
  opacity: 0;
  transition: 0.3s;
  width: 130px;
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  line-height: 21px;
  position: absolute;
  top: 0px;
  left: -145px;
  padding-right: 10px;
  padding-left: 15px;
}

.tparrows.tp-rightarrow.hebe .slider__info:before {
  content: "next";
  font: 13px "aleoitalic", sans-serif;
  color: #ffd564;
  position: absolute;
  top: 67px;
  left: 19px;
}

.tparrows.tp-rightarrow.hebe .slider__info:after {
  content: "";
  background-image: url(/images/wave.svg?2afdb94d893ee360df18f4bb5dbb4879);
  background-repeat: no-repeat;
  background-size: 48px 4px;
  width: 48px;
  height: 4px;
  position: absolute;
  top: 53px;
  left: 19px;
}

.tparrows.tp-rightarrow.hebe:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px !important;
  border: 3px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
}

.tparrows.tp-rightarrow.hebe:hover .slider__info {
  opacity: 1;
  display: inline-block;
  left: 0;
}

.tparrows.tp-rightarrow.hebe:hover:before {
  right: 9px;
  margin-top: -20px;
}

.tp-leftarrow.hebe,
.tp-rightarrow.hebe {
  top: 50% !important;
  margin-top: -18px !important;
}

.arrow-left {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}

.arrow-left:before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(/images/left-arrow.svg?3546b4a564e10dff09568300ffb9f8e1);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  transition: 0.3s;
}

.arrow-left .slider__info {
  margin: 18px 10px 18px 55px;
  opacity: 0;
  transition: 0.3s;
  width: 130px;
  display: none;
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  line-height: 21px;
}

.arrow-left:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}

.arrow-left:hover .slider__info {
  opacity: 1;
  display: inline-block;
}

.arrow-left:hover:before {
  left: 9px;
  margin-top: -22px;
}

.arrow-right {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  z-index: 3;
  color: #ffffff;
  border: 3px solid transparent;
}

.arrow-right:before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(/images/right-arrow.svg?587a45960a8e803d2e9fe40e0648af0f);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  transition: 0.3s;
}

.arrow-right .slider__info {
  margin: 18px 55px 18px 10px;
  opacity: 0;
  transition: 0.3s;
  width: 130px;
  font: 13px "aleoitalic", sans-serif;
  color: #ffffff;
  line-height: 21px;
  position: absolute;
  top: 0px;
  left: -145px;
}

.arrow-right:hover {
  color: #ffffff;
  width: 195px;
  height: 125px;
  margin-top: -61px;
  border: 3px solid #ffffff;
  background-position: 17px 36px;
  background-color: rgba(0, 0, 0, 0.2);
}

.arrow-right:hover .slider__info {
  opacity: 1;
  display: inline-block;
  left: 0;
}

.arrow-right:hover:before {
  right: 9px;
  margin-top: -22px;
}

.post .no-hover {
  transition: 0s;
}

.post .no-hover:before {
  transition: 0s;
}

.post .no-hover:hover {
  width: 40px;
  height: 40px;
  margin-top: -18px;
  background: none;
  border: none;
}

.arrow-left.no-hover:hover:before {
  left: 3px;
}

.arrow-right.no-hover:hover:before {
  right: 3px;
}

.slide .slide__name {
  font-size: 80px;
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.slide .slide__name--smaller {
  font-size: 60px;
  width: 100%;
  text-align: center;
  margin-left: 0;
  left: 0 !important;
  z-index: 40;
}

.slide .tp-splitted {
  text-align: center;
}

.slide .slide__name--specific {
  font-family: "aleoregular", sans-serif;
}

.slide .highlight {
  color: #c2c2c2;
}

.slide .slide__descript {
  color: #c1c1c1;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  width: 100%;
  text-align: center;
  margin-left: 0px;
  left: 0 !important;
}

.slide .slide__time {
  font: 18px "Roboto", sans-serif;
  color: #ffffff;
  z-index: 40;
}

.slide .slide__date {
  font: 18px "Roboto", sans-serif;
  color: #ffffff;
  font-weight: bold;
  z-index: 40;
}

.slide .position-center {
  width: 100%;
  left: 0 !important;
  text-align: center;
}

.slide .postion-place--one {
  margin-left: -90px;
}

.slide .postion-place--two {
  margin-left: -32px;
}

.slide .postion-place--three {
  margin-left: 20px;
}

.slide .postion-place--four {
  margin-left: 70px;
}

.slide .slide__text {
  font: 13px "Roboto", sans-serif;
  color: #ffffff;
  text-align: right;
  line-height: 21px;
}

.slide .slide__link {
  font: 16px "aleoregular", sans-serif;
  color: #E2343E;
  text-transform: uppercase;
  padding-right: 20px;
}

.slide .slide__link:before {
  content: "";
  font: 16px "FontAwesome";
  color: #E2343E;
  position: absolute;
  top: 2px;
  right: 0;
  transition: 0.3s;
}

.slide .slide__link:hover {
  opacity: 0.7;
  color: #E2343E;
}

.slide .slider-wrap-btn {
  width: 100%;
  text-align: center;
  margin-left: 0px;
  left: 0 !important;
  z-index: 40;
}

.slide .slider--btn {
  color: #ffffff;
}

.slide .slider--btn:hover {
  color: #ffffff;
}

.slide .slide__video .media-element {
  position: absolute;
  left: 50%;
  margin-left: 0px;
  margin-top: -250px;
}

.slide .slide__video {
  left: 0 !important;
}

.fading-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
}

.movie-best {
  position: relative;
  margin-top: -100px;
  z-index: 50;
}

.movie-best .movie-best__rating {
  /* background-color: #ffd564; */
  /* background-color: #0A70B2; */
  text-align: center;
  font: 20px "aleobold", sans-serif;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 25px;
  padding-top: 26px;
  position: relative;
  margin-bottom: 5px;
  margin-left: 0 !important;
  width: 100%;
}

/* .movie-best .movie-best__rating:before {
  content: "";
  background-image: url("../images/icons/stars.svg");
  background-repeat: no-repeat;
  height: 20px;
  left: 50%;
  margin-left: -205px;
  position: absolute;
  top: 27px;
  width: 95px;
}
.movie-best .movie-best__rating:after {
  content: "";
  background-image: url("../images/icons/stars.svg");
  background-repeat: no-repeat;
  height: 20px;
  margin-right: -205px;
  position: absolute;
  right: 50%;
  top: 27px;
  width: 95px;
} */

.movie-best .movie-best__check {
  cursor: pointer;
  position: relative;
  /*background-color: #ffd564;
  */
  background-color: #0A70B2;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font: 12px;
  text-transform: uppercase;
  color: #000;
  padding-top: 55px;
  padding-bottom: 15px;
  margin-left: 0 !important;
  width: 100%;
  transition: background-color 0.6s;
  -webkit-transition: background-color 0.6s;
  -moz-transition: background-color 0.6s;
  -ms-transition: background-color 0.6s;
  -o-transition: background-color 0.6s;
  margin-top: 5px;
  box-shadow: 5px 5px 18px -7px;
  border-radius: 9px;
}

.movie-best .movie-best__check:hover {
  background-color: #f42a36;
  box-shadow: 5px 5px 5px -15px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.movie-best .movie-best__check a {
  color: #fff;
  text-align: center;
  font-size: 15px;
}

/* .movie-best .movie-best__check:before {
  content: '';
  width: 20px;
  height: 55px;
  background-image: url(../images/icons/mause.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: 50%;
  margin-left: -10px;
} */

.movie-best .movie-beta__info {
  background-color: #000;
  padding: 0 10px;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  transform: translateY(0%);
  transition: 0.5s;
  width: 100%;
}

.movie-best .movie-beta__info li {
  border-bottom: 1px solid rgba(180, 177, 178, 0.5);
  padding-top: 7px;
  padding-bottom: 3px;
}

.movie-best .movie-beta__info .last-block {
  border: none;
  margin-bottom: 0;
}

.movie-best .movie-beta__info * {
  color: #b4b1b2;
  margin-bottom: 14px;
  padding: 0 5px;
  line-height: 14px;
  font-size: 13px;
}

.movie-best .movie-beta__info .slide__link {
  color: #E2343E;
  font: 16px "aleoregular", sans-serif;
  padding-right: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: 0.3s;
  border-radius: 3px;
  padding-top: 4px;
  padding-bottom: 5px;
  padding-right: 30px;
}

.movie-best .movie-beta__info .slide__link:before {
  color: #E2343E;
  content: "";
  font: 16px "FontAwesome";
  position: absolute;
  right: 10px;
  top: 6px;
  transition: 0.3s;
}

.movie-best .movie-beta__info .slide__link:hover {
  background-color: #E2343E;
  color: #ffffff;
}

.movie-best .movie-beta__info .slide__link:hover:before {
  color: #ffffff;
}

.movie-best .movie-beta__info .best-voted {
  padding-top: 10px;
  padding-bottom: 7px;
  display: inline-block;
  margin-bottom: 8px;
}

.movie-best .movie-beta__info .movie__time {
  position: relative;
  padding-left: 23px;
}

.movie-best .movie-beta__info .movie__time:before {
  content: "";
  font: 16px "FontAwesome";
  color: #b4b1b2;
  position: absolute;
  top: 0px;
  left: 3px;
}

.movie-best .movie-beta__item {
  width: 16.666666%;
  float: left;
  position: relative;
  z-index: 7;
  height: 250px;
  padding: 0;
  margin: 0;
}

.movie-best .movie-beta__item .best-rate {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  color: #000;
  font: bold 20px "Aleo", sans-serif;
  height: 100px;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  padding-top: 38px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100px;
  transition: 0.5s;
}

.movie-best .movie-beta__item .best-rate:before {
  /* background-image: url("../images/rate/star-off.svg"); */
  background-repeat: no-repeat;
  background-size: 14px 14px;
  content: "";
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  top: 20px;
  width: 14px;
}

.movie-best .movie-beta__item .best-rate:after {
  /* background-image: url("../images/rate/star-off.svg"); */
  background-repeat: no-repeat;
  background-size: 14px 14px;
  bottom: 20px;
  content: "";
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 14px;
}

.movie-best .movie-beta__item img {
  max-width: 100%;
  height: 100%;
  width: 100%;
}

.movie-best .movie-beta__item:hover .movie-beta__info {
  transform: translateY(100%);
  visibility: visible;
}

.movie-best .movie-beta__item:hover .best-rate {
  background-color: #ffd564;
}

.mega-select-marker {
  margin-bottom: 3px;
  display: inline-block;
}

.mega-select-marker .select-marker {
  margin-bottom: 0;
  font-family: "aleobold", sans-serif;
  color: #000;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 34px;
  display: inline-block;
}

.mega-select-marker .select-marker span {
  font-size: 24px;
  text-transform: none;
}

.mega-select-marker .marker-indecator {
  margin-top: -4px;
  display: inline-block;
  float: left;
  position: relative;
  z-index: 10;
  display: none;
}

.mega-select-marker .marker-indecator:before {
  content: "";
  background-repeat: no-repeat;
  width: 140px;
  height: 140px;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -70px;
  z-index: -1;
}

.mega-select-marker .location:before {
  background-image: url(/images/location.svg?5d86e24b158e44198fd0219c14b03a63);
}

.mega-select-marker .cinema:before {
  background-image: url(/images/camera.svg?80e69e20c8c0f6ca3030037dce525658);
  width: 200px;
  margin-left: -20px;
}

.mega-select-marker .film-category:before {
  background-image: url(/images/fiml.svg?f214f94cc06e37bdd1d81fd4d87bef9d);
}

.mega-select-marker .actors:before {
  background-image: url(/images/actors.svg?4c4f4d288a7f12a6f83f19011c89db37);
  width: 200px;
  margin-left: -100px;
}

.mega-select-marker .director:before {
  background-image: url(/images/director.svg?5d251d7432d6d54fd87ae58ac38fef91);
  top: -25px;
}

.mega-select-marker .country:before {
  background-image: url(/images/country.svg?67c23799d434756d09e8ecee024a1fd8);
}

.mega-select-top {
  padding-top: 72px;
  padding-bottom: 34px;
  margin-bottom: -10px;
}

.social-group {
  padding-top: 50px;
}

.social-group .social-group__head {
  color: #000;
  position: relative;
  margin-bottom: 98px;
  font: 30px "aleobold", sans-serif;
  line-height: 21px;
  margin-top: 20px;
}

.social-group .social-group__head:before {
  content: "";
  background-image: url(/images/wave-dark.svg?8db3f2c2543f50e3b9b996448f9af50a);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  bottom: -56px;
  left: 0;
}

.social-group .social-group__content {
  color: #000;
  font-size: 16px;
  line-height: 26px;
}

.social-group .facebook-group {
  border: 1px solid #dbdee1;
  padding: 20px 10px 20px 10px;
}

.social-group .twitter-group {
  border: 1px solid #dbdee1;
  padding: 25px 25px 35px;
}

.social-group .twitter-group #tw3 {
  display: none;
}

.social-group .twitter-group .twitter-article {
  margin-bottom: -9px;
}

.social-group .twitter-group #twitter-feed {
  position: relative;
}

.social-group .twitter-group #twitter-feed .twitter__head {
  font-size: 18px;
  font-family: Arial;
  font-weight: bold;
  color: #333;
  padding-top: 3px;
  margin-bottom: 23px;
}

.social-group .twitter-group #twitter-feed .twitter__follow {
  position: absolute;
  top: 0;
  right: 0;
}

.social-group .twitter-group #twitter-actions {
  float: right;
  margin-top: -9px;
}

.social-group .twitter-group #twitter-actions .intent {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 15px;
}

.social-group .twitter-group #twitter-actions #intent-reply {
  background-image: url(/images/reply.svg?0671b809fad28de139e33b11aea7b429);
  background-repeat: no-repeat;
}

.social-group .twitter-group #twitter-actions #intent-reply:hover {
  background-image: url(/images/reply-hover.svg?54d3c0fb2b423d87bfdc8e72b79c1671);
}

.social-group .twitter-group #twitter-actions #intent-retweet {
  background-image: url(/images/retweet.svg?201333355ddbb4fbd03f24f18bdfad97);
  background-repeat: no-repeat;
}

.social-group .twitter-group #twitter-actions #intent-retweet:hover {
  background-image: url(/images/retweet-hover.svg?a5f140d2ce1e6e7535b1083e7d305c65);
}

.social-group .twitter-group #twitter-actions #intent-fave {
  background-image: url(/images/fave.svg?2b69ce349d6c52847ba6f4979c1327e8);
  background-repeat: no-repeat;
}

.social-group .twitter-group #twitter-actions #intent-fave:hover {
  background-image: url(/images/fave-hover.svg?f6a2eb9dc134088a973912d29e1b9e84);
}

.social-group .twitter-group .twitter-text .tweet-time {
  bottom: auto;
  left: auto;
  right: 0;
  top: -45px;
}

.icon-block .fa {
  color: #000;
  font-size: 50px;
  padding-bottom: 40px;
  padding-top: 40px;
  width: 120px;
  text-align: center;
}

.table--icons th {
  background-color: #ffd564;
  font: 18px "Roboto", sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
  padding: 21px 25px;
  color: #000;
}

.table--icons tr {
  background-color: #F5F5F5;
}

.table--icons td {
  border: 1px solid #ffffff;
  font-size: 14px;
  padding: 21px 25px;
  color: #000;
}

.table--icons .fa {
  font-size: 20px;
}

.login {
  background-color: #ffffff;
  padding-top: 58px;
  padding-bottom: 22px;
}

.login .login__title {
  font-size: 22px;
  font-family: "aleobold", sans-serif;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 28px;
}

.login .login__title .login-edition {
  font-size: 16px;
  font-weight: normal;
  font-family: "aleoitalic", sans-serif;
  text-transform: none;
}

.login .login__tracker {
  text-align: center;
  font: 16px "aleoitalic", sans-serif;
  color: #000;
  margin: 33px 0 35px;
}

.login .form__tracker {
  font-size: 13px;
  display: block;
  margin-top: 39px;
}

.login .form__tracker:hover {
  color: #E2343E;
}

.login .login__input {
  font-size: 13px;
  color: #b4b1b2;
  width: 100%;
  box-shadow: none;
  -webkit-appearance: none;
  border: 1px solid #dbdee1;
  border-radius: 3px;
  margin: 5px 0;
  padding: 9px 20px 8px;
}

.login .login__check-info {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #b4b1b2;
  display: block;
  margin-top: 3px;
  margin-bottom: 27px;
}

.login .login__control {
  text-align: center;
}

.checkbox {
  width: 13px;
  height: 13px;
  border: 1px solid #e0e4e6;
  display: block;
  clear: left;
  float: left;
  border-radius: 3px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  background-image: url(/images/checked.png?b77898c0632d6f35aa872ad88732a43f);
  background-position: 0 0;
  margin-right: 10px;
  margin-top: 6px;
}

.field-wrap {
  padding: 0 40px;
  margin: 0 auto;
  max-width: 400px;
}

/* Overlay style */

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(76, 65, 69, 0.6);
  z-index: 300;
}

/* Overlay closing cross */

.overlay .overlay-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 0px;
  overflow: hidden;
  border: none;
  background-color: transparent;
  color: transparent;
  outline: none;
  z-index: 310;
}

.overlay .overlay-close:before {
  content: "";
  font-size: 13px;
  font-family: "FontAwesome";
  color: #000;
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  text-align: center;
}

.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.overlay-hugeinc.open .container {
  margin-top: 75px;
}

.overlay-hugeinc .login {
  perspective: 1200px;
  opacity: 0.4;
  transform: translateY(-25%) rotateX(35deg);
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open .login {
  opacity: 1;
  transform: rotateX(0deg);
}

.overlay-hugeinc.close .login {
  transform: translateY(25%) rotateX(-35deg);
}

.logo--dark {
  top: 100px;
  left: 50%;
  margin-left: -68px;
}

.logo--dark img {
  width: 111px;
  height: 17px;
}

.logo--dark .slogan--dark {
  font-style: italic;
  font-size: 12px;
  margin-top: 3px;
}

.logo--lg {
  top: 175px;
  left: 50%;
  margin-left: -151px;
}

.logo--lg img {
  width: 302px;
  height: 50px;
}

.coming-title {
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  font-family: "aleoitalic", sans-serif;
  margin-top: 18px;
}

.copy--light {
  color: #ffffff;
  font: 16px "Roboto", sans-serif;
  font-style: italic;
}

.copy-bottom--high {
  bottom: 88px;
}

.social--colored {
  text-align: center;
  background-color: #f5f5f5;
  padding-top: 34px;
  padding-bottom: 41px;
}

.social--colored .social__variant {
  color: #ffffff;
  margin-right: 13px;
  margin-left: 13px;
}

.social--colored .social__variant.fa-facebook {
  background-color: #3b5998;
}

.social--colored .social__variant.fa-facebook:after {
  border-color: #3b5998;
}

.social--colored .social__variant.fa-twitter {
  background-color: #00acee;
}

.social--colored .social__variant.fa-twitter:after {
  border-color: #00acee;
}

.social--colored .social__variant.fa-tumblr {
  background-color: #34526f;
}

.social--colored .social__variant.fa-tumblr:after {
  border-color: #34526f;
}

.social--colored .social__variant.fa:hover {
  background-color: #000;
}

.social--colored .social__variant.fa:hover:after {
  border-color: #000;
}

.price--gold .price-inner {
  background-color: #0A70B2;
}

.price--gold .price-inner:before {
  border-color: #0A70B2;
}

.price--gold .price__package,
.price--gold .price__value,
.price--gold .price__feather {
  color: #000;
}

.price--gold .price__feather {
  border-color: rgba(255, 255, 255, 0.3);
}

.progress--light .progress__bar {
  background-color: #dbdee1;
}

.progress--light .progress__bar .progress__current {
  background-color: #E2343E;
}

.progress--lines .progress__bar {
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.progress--lines .progress__bar .progress__current {
  background-color: #dbdee1;
}

.progress--lines .progress__bar:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dbdee1;
  position: absolute;
  top: 7px;
  left: 1px;
}

.promo--short {
  background: transparent;
  border-top: 6px solid #000;
  border-bottom: 6px solid #000;
  padding: 28px 20px 10px;
}

.promo--short .promo__head {
  color: #000;
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
  margin-top: 8px;
}

.promo--short .promo__head:before {
  content: "";
  background-image: url(/images/wave-dark.svg?8db3f2c2543f50e3b9b996448f9af50a);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: -116px;
}

.promo--short .promo__head:after {
  content: "";
  background-image: url(/images/wave-dark.svg?8db3f2c2543f50e3b9b996448f9af50a);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: -116px;
}

.promo--short .promo__describe {
  padding-bottom: 25px;
}

.promo--short .promo__images {
  display: block;
  margin: 0 auto;
  width: 76px;
}

.promo--info {
  padding: 39px 60px 32px;
  background-color: #000;
  margin-top: 54px;
  text-align: left;
}

.promo--info .promo__head {
  color: #fff;
  text-transform: none;
  position: relative;
  margin-bottom: 57px;
}

.promo--info .promo__head:before {
  content: "";
  background-image: url(/images/wave-light.svg?58b8d82716e3ac9a45aeb0505802d443);
  background-repeat: no-repeat;
  background-size: 84px 8px;
  width: 84px;
  height: 8px;
  position: absolute;
  bottom: -31px;
  left: 0;
}

.promo--info .promo__content {
  position: relative;
}

.promo--info .promo__content .content__text {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}

.promo--info .promo__content .btn--follow {
  position: absolute;
  right: 0;
  bottom: 0;
}

.testionaial--corner {
  background-color: #f5f5f5;
  min-height: 240px;
  margin-bottom: 10px;
}

.testionaial--corner .testionaial__images {
  margin-right: 20px;
  position: relative;
}

.testionaial--corner .testionaial__images:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #f5f5f5 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.testionaial--corner .testionaial__images:after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  right: 14px;
  transform: skewX(45deg);
}

.testionaial--corner .testionaial__author {
  padding-top: 27px;
}

.testionaial--corner .testionaial__text {
  border: none;
  font-style: normal;
  margin-top: 0px;
  padding-top: 6px;
  padding-bottom: 5px;
}

.testionaial--corner .testionaial__text:before,
.testionaial--corner .testionaial__text:after {
  display: none;
}

.testionaial--rect {
  padding-right: 20px;
  padding-bottom: 20px;
}

.testionaial--rect .testimonial-inner {
  background-color: #E2343E;
  position: relative;
  padding: 0px 40px 39px;
}

.testionaial--rect .testimonial-inner:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 6px solid #000;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.testionaial--rect .testionaial__author {
  text-align: right;
  font-size: 16px;
  font-family: "aleoitalic", sans-serif;
  color: #ffffff;
  font-weight: normal;
}

.testionaial--rect .testionaial__text {
  border: none;
  color: #ffffff;
  font-style: normal;
  margin-top: 0;
  padding: 33px 0 10px;
}

.testionaial--rect .testionaial__text:before,
.testionaial--rect .testionaial__text:after {
  display: none;
}

.post--preview {
  padding-right: 20px;
}

.post--preview .post__image {
  width: 50%;
  float: left;
  margin-right: 13px;
  position: relative;
}

.post--preview .post__image img {
    max-width: 100%;
    /* height: 200px;
    width: 100%; */
}

.post--preview .post__date {
  overflow: hidden;
  margin-bottom: 1px;
  padding-top: 14px;
}

.post--preview .post__date:before {
  top: 13px;
}

.post--preview .post__title {
  min-height: 60px;
  max-width: 105px;
  display: inline-block;
  min-height: 70px;
}

.post--preview .post--btn {
  font-size: 13px;
  padding-left: 7px;
  padding-right: 7px;
  margin-left: -7px;
  margin-top: 10px;
}

.post--preview--wide .post__image {
  width: 100%;
}

.post--preview--wide .post__title {
  font-size: 16px;
  max-width: 200px;
}

.post--preview--wide .post--btn {
  font-size: 16px;
}

.post--news .post__text {
  font-size: 13px;
  line-height: 21px;
}

.post--news h1 {
  margin-bottom: 0;
}

.pagination--full {
  padding-right: 0;
}

.comment--answer {
  padding-left: 30px;
}

.comment--answer:before {
  content: "";
  font: 14px "FontAwesome";
  color: #000;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -3px;
}

.comment-more {
  text-align: center;
  margin-top: 34px;
}

.comment-more .watchlist {
  padding-left: 41px;
  padding-right: 19px;
}

.comment-more .watchlist:before {
  content: "";
  font-size: 13px;
  left: 21px;
}

.category--popular:before {
  background-image: url(/images/heart.svg?d98b1a2c16bac6253c810bc4fa4fa534);
}

.category--discuss:before {
  background-image: url(/images/comment.svg?10ea682ee78f247f700c3083c9ce985b);
}

.category--cooming:before {
  background-image: url(/images/film.svg?915f894255c275743e489e9274f7436f);
}

.category--count {
  color: #ffffff;
  font-size: 13px;
}

.category--count ol {
  padding-left: 25px;
}

.category--count .category__item {
  padding-left: 0;
}

.category--count .category__item:before {
  display: none;
}

.category--light {
  background-color: transparent;
  padding-left: 3px;
  padding-right: 3px;
}

.category--light .category__title {
  color: #000;
}

.category--light .category__item {
  color: #000;
  transition: 0.3s;
}

.category--light .category__item:before {
  color: #000;
  transition: 0.3s;
}

.category--light .category__item:hover {
  color: #E2343E;
}

.category--light .category__item:hover:before {
  color: #E2343E;
}

.category--light .category__item--static {
  cursor: auto;
  display: block;
}

.category--light .category__item--static:hover {
  color: #000;
}

.category--light .category__item--static:hover:before {
  color: #000;
}

.categoty--position {
  padding-top: 48px;
}

.tags--dark {
  padding-left: 0;
  margin: 10px 0 20px;
}

.tags--dark:before {
  display: none;
}

.tags--dark .tags__item {
  display: inline-block;
  background-color: #000;
  color: #e5e5da;
  padding: 1px 9px 3px;
  margin-right: -2px;
  margin-bottom: -1px;
  font-size: 11px;
  transition: 0.3s;
}

.tags--dark .tags__item:hover {
  background-color: #E2343E;
  color: #ffffff;
}

.tags--unmarked {
  padding-left: 0;
}

.tags--unmarked:before {
  display: none;
}

.tags--unmarked .tags__item {
  font-size: 13px;
  padding-right: 26px;
}

.tags--aside {
  float: right;
  margin-right: -26px;
  min-width: 280px;
  margin-top: -35px;
}

.choose-container .select {
  float: left;
}

.choose-container .datepicker {
  margin-top: 4px;
  margin-left: 50px;
}

.choose-container--short {
  margin-top: -13px;
}

.select--cinema {
  margin-left: 80px;
}

.select--cinema .sbToggle {
  left: -66px;
}

.select--cinema .sbToggle:before {
  content: "";
  font-size: 14px;
  top: 2px;
}

.select--cinema .sbToggle:after {
  content: "Cinema";
}

.select--film-category {
  margin-left: 84px;
}

.select--film-category .sbToggle {
  left: -66px;
}

.select--film-category .sbToggle:before {
  content: "";
  font-size: 14px;
  top: 2px;
}

.select--film-category .sbToggle:after {
  content: "Catégories";
}

.movie--preview {
  margin-top: 40px;
  margin-left: -15px;
  overflow: hidden;
}

.movie--preview .movie__images {
  border: none;
}

.movie--preview .movie__feature .movie__feature-item {
  position: relative;
  width: 32.5%;
  margin-top: 2px;
  margin-right: -1px;
  padding-right: 16px;
  background-color: #000;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
}

.movie--preview .movie__feature .movie__feature--comment:before {
  content: "";
  font: 14px "FontAwesome";
  color: #7c7578;
  position: absolute;
  top: 23px;
  right: 9px;
}

.movie--preview .movie__feature .movie__feature--video:before {
  content: "";
  font: 14px "FontAwesome";
  color: #7c7578;
  position: absolute;
  top: 24px;
  right: 14px;
}

.movie--preview .movie__feature .movie__feature--photo:before {
  content: "";
  font: 14px "FontAwesome";
  color: #7c7578;
  position: absolute;
  top: 24px;
  right: 9px;
}

.movie--preview .movie__rate {
  border: none;
  border-top: 1px solid #dbdee1;
  border-bottom: 1px solid #dbdee1;
  padding-top: 30px;
  padding-bottom: 12px;
}

.movie--preview .movie__rate .score {
  padding-left: 0;
  margin-bottom: 1px;
}

.movie--preview .movie__rating {
  left: 149px;
}

.movie--preview .movie__show-btn {
  padding-bottom: 5px;
  padding-right: 20px;
  position: absolute;
  top: 18px;
  right: 0;
  color: #E2343E;
}

.movie--preview .movie__show-btn:hover {
  color: #000;
}

.movie--preview .movie__show-btn:before {
  color: #E2343E;
  content: "";
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  right: 1px;
  top: 3px;
  transition: all 0.3s ease 0s;
  z-index: 0;
}

.movie--preview .movie__show-btn:hover:before {
  color: #000;
}

.movie--preview .movie__show-btn:after {
  /* background-image: url("../images/components/wave-danger.svg"); */
  background-repeat: repeat-x;
  background-size: 40px 4px;
  bottom: 2px;
  content: "";
  height: 4px;
  position: absolute;
  right: 0;
  width: 100%;
}

.movie--preview .movie__show-btn:hover:after {
  /* background-image: url("../images/components/wave-main.svg"); */
}

.movie--preview .movie__option {
  line-height: 25px;
}

.movie--preview .time-select {
  display: none;
  margin-top: 42px;
}

.preview-footer {
  margin-top: 26px;
  position: relative;
}

.movie--full .movie__feature .movie__feature-item {
  padding-right: 22px;
  padding-top: 21px;
  width: 32%;
}

.movie--time {
  overflow: hidden;
  padding-right: 40px;
  margin-bottom: 23px;
  min-height: 205px;
}

.movie--time .movie__images {
  border: none;
}

.movie--time .movie__title {
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
}

.movie--time .movie__time {
  margin-top: 4px;
  margin-bottom: 8px;
}

.movie--time .movie__time:before {
  top: 3px;
}

.movie--time .time-select .time-select__item {
  margin-right: 8px;
  margin-bottom: 1px;
}

.movie-time-wrap {
  overflow: hidden;
}

.movie-time-wrap .datepicker {
  margin-bottom: 33px;
  padding-left: 15px;
}

.movie--test {
  width: 50%;
  float: left;
}

.movie--test .movie__images {
  width: 50%;
  border: none;
  position: relative;
}

.movie--test .movie__images:before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  position: absolute;
  top: 0;
  z-index: 20;
}

.movie--test .movie__images:after {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  top: 0;
}

.movie--test .movie-beta__link {
  display: block;
  position: relative;
}

.movie--test .movie-beta__link:after {
  content: "";
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 19;
}

.movie--test .movie-beta__link:hover:after {
  background-color: rgba(255, 255, 255, 0.4);
}

.movie--test .movie__info {
  overflow: hidden;
  padding: 17px 17px;
  position: relative;
  min-height: 200px;
  margin: 0;
}

.movie--test .movie__title {
  font-size: 16px;
  font-weight: bold;
}

.movie--test .movie__time {
  margin-bottom: 0;
}

.movie--test .movie__rate {
  border: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.movie--test .movie__rate .movie__rating {
  display: block;
  position: absolute;
  top: -13px;
  right: 30px;
  left: auto;
}

.movie--test .movie__rate .score {
  position: absolute;
  top: 2px;
  left: 0;
}

.movie--test .movie__rate .score img {
  width: 15px;
}

.movie--test--light {
  background-color: #f5f5f5;
}

.movie--test--light .movie__images:before {
  border-color: transparent #f5f5f5 transparent transparent;
}

.movie--test--light .movie__images:after {
  background-color: #f5f5f5;
}

.movie--test--dark {
  background-color: #dbdee1;
}

.movie--test--dark .movie__images:before {
  border-color: transparent #dbdee1 transparent transparent;
}

.movie--test--dark .movie__images:after {
  background-color: #dbdee1;
}

.movie--test--left .movie__images {
  float: left;
}

.movie--test--left .movie__images:before {
  border-width: 0 20px 20px 0;
  right: 0;
}

.movie--test--left .movie__images:after {
  right: 14px;
  transform: skewX(45deg);
}

.movie--test--right .movie__images {
  float: right;
}

.movie--test--right .movie__images:before {
  border-width: 20px 20px 0 0;
  left: 0;
}

.movie--test--right .movie__images:after {
  left: 14px;
  transform: skewX(-45deg);
}

.movie--test--right.movie--test--light .movie__images:before {
  border-color: #f5f5f5 transparent transparent transparent;
}

.movie--test--right.movie--test--dark .movie__images:before {
  border-color: #dbdee1 transparent transparent transparent;
}

.rates--full .rates__stars .score {
  margin-left: 80px;
}

.cinema--full .cinema__title {
  font: 24px "aleobold", sans-serif;
  text-transform: uppercase;
}

.cinema--full .cinema__rating {
  background-color: #ffd564;
  width: 750px;
  margin: 0 auto;
  font: 16px "aleobold", sans-serif;
  padding-top: 28px;
  padding-bottom: 27px;
  display: block;
  position: relative;
}

.cinema--full .cinema__rating:before {
  content: "";
  background-image: url(/images/stars.svg?56ab8f3ae4d121a0dd85c1e1dc9bc46e);
  background-repeat: no-repeat;
  width: 95px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 26px;
  margin-left: -143px;
}

.cinema--full .cinema__rating:after {
  content: "";
  background-image: url(/images/stars.svg?56ab8f3ae4d121a0dd85c1e1dc9bc46e);
  background-repeat: no-repeat;
  width: 95px;
  height: 20px;
  position: absolute;
  right: 50%;
  top: 26px;
  margin-right: -143px;
}

.cinema--full .cinema__info {
  background-color: #ffd564;
  width: 750px;
  margin: 0px auto;
  padding-top: 20px;
  padding-bottom: 21px;
}

.cinema--full .cinema__info .cinema__info-item {
  font-size: 13px;
  margin-bottom: 2px;
}

.cinema--full .cinema__gallery {
  overflow: hidden;
  max-height: 240px;
}

.cinema--full .cinema__gallery .swiper-slide {
  position: relative;
}

.cinema--full .cinema__gallery .swiper-slide:before {
  content: "";
  background-color: #fff;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.cinema--full .cinema__gallery .swiper-slide:hover {
  cursor: url(/images/cursor.png?c5d50e5594d4c801cab4cc54b75a010d), auto;
}

.cinema--full .cinema__gallery .swiper-slide:hover:before {
  opacity: 0;
}

.cinema-container {
  padding-top: 52px;
  text-align: center;
}

.share--centered {
  display: inline-block;
  margin-bottom: 11px;
}

.comment--light .comment {
  border-color: #fff;
}

.offer {
  background-repeat: no-repeat;
  background-position: 50% 7px;
}

.offer--winter {
  background-image: url(/images/snow-dark.svg?85fd8809025d9cdbc2c4c244f13f97c6);
}

.offer--family {
  background-image: url(/images/users-dark.svg?2020dcfdd52465d7b0da439a3d498813);
}

.offer--day {
  background-image: url(/images/wizard-dark.svg?7b594eb6fb3dc87d42ce10f6fea6459e);
}

.offer--teen {
  background-image: url(/images/smile-dark.svg?6733cd80f6ea83da17877cebc3a182d4);
}

.offer--gift {
  background-image: url(/images/gift-dark.svg?c1299bb788040c4d40fddf7bc7942cbb);
}

.offer--winter:hover {
  background-image: url(/images/snow-light.svg?eadb94cd985a46d42e338d9f2929a88c);
}

.offer--family:hover {
  background-image: url(/images/users-light.svg?b5fcabf75adb1fe5148e82a46d096f54);
}

.offer--day:hover {
  background-image: url(/images/wizard-light.svg?58b43af9d86d22d778fdaed09f906bb3);
}

.offer--teen:hover {
  background-image: url(/images/smile-light.svg?149d3c45adba2ab1c4c604b872242ced);
}

.offer--gift:hover {
  background-image: url(/images/gift-light.svg?a8ade36c8f02883d066ccdbcb3a48bbc);
}

.gallery-item .gallery-item--video:before,
.gallery-item .gallery-item--video-link:before {
  background-color: #E2343E;
}

.choose-sits__info--first {
  border-right: 1px solid #000;
}

.sits-price--cheap:before {
  background-color: #fff0c7;
}

.sits-price--middle:before {
  background-color: #ffc8cb;
}

.sits-price--expensive:before {
  background-color: #cdb4bd;
}

.sits-state--not:before {
  background-color: #dbdee1;
}

.sits-state--your:before {
  background-color: #000;
}

.auth--home {
  position: absolute;
  top: -10px;
  right: 155px;
}

.auth--home .auth__show {
  background: transparent;
}

.btn-control--home {
  margin-top: 1px;
}

.twitter--large .twitter__head {
  display: none;
}

.twitter--large .twitter-follow-button {
  display: none;
}

@media (min-width: 1930px) {
  .slide__video video {
    width: 2560px !important;
    height: 1440px !important;
  }

  .wrapper {
    min-height: 100%;
  }

  .footer-wrapper--mod {
    clear: both;
    position: relative;
    z-index: 10;
    height: 233px;
    margin-top: -233px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  ul#navigation > li > ul.mega-menu {
    width: 940px;
    left: -592px;
  }

  .quote {
    padding-left: 35px;
    padding-right: 35px;
  }

  .post__preview .arrow-right {
    right: -2px;
  }

  .post--preview .post__image {
    float: none;
  }

  .post--preview--wide .post__title {
    max-width: 160px;
  }

  .post--preview--wide .post__image {
    width: 100%;
    float: left;
  }

  .post--preview .post__title {
    min-height: 90px;
  }

  .promo--info .promo__content .btn--follow {
    bottom: -40px;
    right: -40px;
  }

  .post--preview--full .post__title {
    display: block;
    max-width: 210px;
    min-height: 45px;
  }

  .movie .movie__media {
    padding-top: 33px;
  }

  .movie--preview .movie__feature .movie__feature-item {
    width: 49.5%;
  }

  .trailer .trailer__name {
    margin-bottom: 18px;
  }

  .trailer .trailer__number {
    margin-bottom: 16px;
  }

  .offer {
    padding: 0 15px;
    min-height: 345px;
  }

  .mega-select-marker .select-marker {
    margin-bottom: 60px;
  }

  .mega-select--full {
    width: 100%;
  }

  .mega-select--full .mega-select {
    float: none !important;
  }

  .mega-select--full .mega-select .select__field {
    width: 100%;
    padding-right: 23%;
  }

  .mega-select--full .mega-select .select__btn {
    margin-top: -38px;
  }

  .movie--test .movie__info {
    min-height: 173px;
  }

  .movie--test .movie__option {
    line-height: 13px;
  }

  .movie--test .movie__rate .movie__rating {
    right: 20px;
  }

  .facebook-group .fgroup {
    width: 180px !important;
    height: 323px !important;
  }

  .movie-best .movie-beta__info .best-voted {
    padding-top: 5px;
    padding-bottom: 3px;
    margin-bottom: 4px;
  }

  .margin-slider {
    margin-right: 40px;
  }

  .ticket {
    width: 950px;
    background-size: 950px 375px;
  }

  .ticket .ticket__inner {
    width: 760px;
  }

  .ticket-secondary,
  .ticket-primery {
    padding-left: 30px;
    padding-right: 35px;
  }

  .select .sbOptions {
    margin-left: 0;
  }

  .select .sbOptions:after {
    right: auto;
    left: 40px;
  }

  .items-wrap {
    padding-left: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .control-panel {
    margin-right: 75px;
  }

  ul#navigation {
    margin-right: 0;
  }

  ul#navigation > li > ul.mega-menu {
    width: 100%;
    width: 200px;
    background-color: #2e292e;
    padding: 0 15px;
  }

  ul#navigation li.mega-menu__coloum {
    padding-left: 0;
  }

  #navigation .mega-menu .mega-menu__list {
    display: block;
    background-color: transparent;
  }

  ul#navigation li.mega-menu__coloum--outheading {
    padding-top: 0;
    margin-top: -4px;
  }

  .search {
    top: 10px;
  }

  .post--preview .post__image {
    width: 75%;
    float: none;
  }

  .post--preview--wide .post__image {
    width: 100%;
    float: none;
  }

  .post .post__date {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .footer-info {
    padding-top: 30px;
    text-align: center;
  }

  .footer-info .heading-special--small {
    float: none;
    margin-right: 0;
  }

  .social {
    padding-bottom: 25px;
  }

  .copy {
    padding-bottom: 12px;
  }

  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
    padding-left: 24px;
    padding-right: 24px;
  }

  .promo--info .promo__content .btn--follow {
    bottom: -20px;
    right: -20px;
  }

  .mega-select .select__field {
    width: 588px;
  }

  .mega-select .select__group {
    width: 496px;
  }

  .mega-select-present .text-helper {
    margin-left: 515px;
  }

  .mega-select--full {
    width: 100%;
  }

  .mega-select--full .mega-select {
    float: none !important;
  }

  .mega-select--full .mega-select .select__field {
    width: 100%;
    padding-right: 28%;
  }

  .mega-select--full .mega-select .select__btn {
    margin-top: -38px;
  }

  .watchlist--map {
    margin: 20px 0 10px;
  }

  .movie .movie__rate {
    padding-left: 3px;
    padding-right: 3px;
  }

  .movie .movie__btns {
    top: auto;
    bottom: 0;
    right: auto;
    left: -240px;
  }

  .movie .movie__btns--full {
    top: 0;
    bottom: auto;
    right: 0;
    left: auto;
  }

  .movie--preview .col-sm-7 {
    min-height: 420px;
  }

  .movie--preview .movie__rate {
    padding-left: 10px;
  }

  .movie--preview .movie__rating {
    left: 125px;
  }

  .movie--preview .movie__btns {
    left: -175px;
  }

  .movie--preview .movie__btns .watchlist {
    margin-bottom: 0;
  }

  .movie--preview .movie__btns .watchlist {
    margin-top: 3px;
  }

  .select-area .select {
    margin-right: 35px;
  }

  .trailer .trailer__name {
    margin-bottom: 20px;
  }

  .trailer .trailer__number {
    margin-bottom: 18px;
  }

  .rates .rates__stars .score {
    margin-left: 10px;
    width: 95px !important;
  }

  .rates .rates__done {
    margin-left: 0;
  }

  .offer {
    padding: 0 15px;
    min-height: 345px;
  }

  .wrapper-images {
    background-size: 2120px 1250px;
  }

  .auth--home {
    right: 145px;
  }

  .movie--test {
    width: 100%;
  }

  .movie-best {
    margin-top: -50px;
  }

  .movie-best .movie-beta__item {
    width: 25%;
  }

  .mega-select-marker .select-marker {
    margin-bottom: 60px;
  }

  .facebook-group {
    margin-bottom: 15px;
  }

  .facebook-group .fgroup {
    width: 180px !important;
    height: 323px !important;
  }

  .sits .sits__row .sits__place {
    width: 25px;
    height: 25px;
    margin: 4px;
  }

  .sits .sits__number {
    margin-top: 100px;
  }

  .margin-slider {
    margin-right: 75px;
  }

  .movie--full .movie__about {
    min-height: 415px;
  }

  .movie--time .time-select {
    clear: both;
    margin-left: 20px;
  }

  .ticket {
    left: 50%;
    margin-left: -585px;
    transform: scale(0.7);
    margin-top: -50px;
    margin-bottom: -50px;
  }

  .ticket-secondary,
  .ticket-primery {
    padding-left: 15px;
    padding-right: 20px;
  }

  .single-cin .ui-datepicker {
    margin-left: -60px;
  }

  .sits .sits__indecator {
    margin: 1px;
  }

  .select .sbOptions {
    margin-left: 0;
  }

  .select .sbOptions:after {
    right: auto;
    left: 40px;
  }
}

@media (max-width: 767px) {
  .control-panel {
    margin-right: 75px;
  }

  ul#navigation {
    margin-right: 0;
  }

  ul#navigation > li > ul.mega-menu {
    width: 100%;
    width: 200px;
    background-color: #2e292e;
    padding: 0 15px;
  }

  ul#navigation li.mega-menu__coloum {
    padding-left: 0;
  }

  #navigation .mega-menu .mega-menu__list {
    display: block;
    background-color: transparent;
  }

  ul#navigation li.mega-menu__coloum--outheading {
    padding-top: 0;
    margin-top: -4px;
  }

  .post__preview .arrow-left,
  .post__preview .arrow-right,
  .post__preview .arrow-left:before,
  .post__preview .arrow-right:before,
  .tparrows.tp-leftarrow.hebe,
  .tparrows.tp-rightarrow.hebe,
  .tparrows.tp-leftarrow.hebe:before,
  .tparrows.tp-rightarrow.hebe:before {
    transition: 0s;
  }

  .post__preview .arrow-left:hover,
  .post__preview .arrow-right:hover,
  .tparrows.tp-leftarrow.hebe:hover,
  .tparrows.tp-rightarrow.hebe:hover {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
  }

  .post__preview .arrow-right .slider__info,
  .post__preview .arrow-right:hover .slider__info,
  .post__preview .arrow-left:hover .slider__info,
  .tparrows.tp-leftarrow.hebe .slider__info,
  .tparrows.tp-leftarrow.hebe:hover .slider__info,
  .tparrows.tp-rightarrow.hebe .slider__info,
  .tparrows.tp-rightarrow.hebe:hover .slider__info {
    display: none;
  }

  .post__preview .arrow-left:hover:before,
  .tparrows.tp-leftarrow.hebe:hover:before {
    left: 3px;
  }

  .post__preview .arrow-right:hover:before,
  .tparrows.tp-rightarrow.hebe:hover:before {
    right: 3px;
  }

  .tparrows.tp-leftarrow.hebe:hover {
    margin-top: -61px !important;
  }

  .tparrows.tp-leftarrow.hebe:hover:before {
    margin-top: 23px;
  }

  .tparrows.tp-rightarrow.hebe:hover:before {
    margin-top: 23px;
  }

  .search {
    top: 10px;
  }

  .banner-wrap {
    max-width: 250px;
  }

  .panel-group {
    margin-bottom: 20px;
  }

  .post {
    padding-right: 0;
    overflow: hidden;
  }

  .post .post--btn {
    margin-left: -125px;
    margin-top: 90px;
  }

  .post--preview {
    margin-bottom: 20px;
  }

  .sitebar {
    padding-bottom: 20px;
    padding-left: 0;
    margin-top: 60px;
  }

  .banner-wrap {
    text-align: center;
    height: 250px;
  }

  .banner-wrap img {
    max-height: 100%;
  }

  .post__images {
    float: none !important;
  }

  .post .post__images--left {
    margin-right: 20px;
  }

  .post .post__images--right {
    margin-left: 20px;
  }

  .footer-info {
    padding-top: 30px;
    text-align: center;
  }

  .footer-info .heading-special--small {
    float: none;
    margin-right: 0;
  }

  .social__variant {
    margin-bottom: 25px;
  }

  .copy {
    padding-bottom: 12px;
  }

  .promo {
    margin-bottom: 15px;
  }

  .promo--info .promo__content .btn--follow {
    bottom: -40px;
    right: -40px;
  }

  .price {
    padding-right: 20px;
  }

  .watchlist,
  .read-more {
    display: inline-block;
    margin-bottom: 15px;
  }

  .mega-select .select__field {
    width: 100%;
    padding-right: 220px;
  }

  .mega-select .select__group {
    width: 100%;
    top: 46px;
  }

  .mega-select-present .text-helper {
    margin-left: 0;
    float: right;
    margin-right: 10px;
  }

  .mega-select .mega-select__point {
    margin-right: 10px;
  }

  .mega-select .filter-wrap {
    margin: 0 5px;
  }

  .mega-select .mega-select__filter {
    font-size: 12px;
  }

  .mega-select--full {
    width: 100%;
  }

  .mega-select--full .mega-select {
    float: none !important;
  }

  .mega-select--full .mega-select .select__btn {
    margin-top: -38px;
  }

  .mega-select--full .mega-select .select__field {
    padding-right: 30%;
  }

  .contant--right .post {
    padding-left: 0px;
  }

  .contant--right .preview-wrapper {
    padding-left: 0px;
  }

  .contant--right .page-heading {
    padding-left: 30px;
    background-position: 0px 50%;
  }

  .contant--right .comment-wrapper {
    padding-left: 0px;
  }

  .sitebar--left {
    padding-right: 0;
    margin-top: 60px;
  }

  .pagination {
    padding: 0;
  }

  .col--modificator {
    margin-left: 0;
  }

  .movie .movie__images,
  .movie .movie__rate {
    max-width: 190px;
  }

  .movie .movie__media {
    margin-top: 50px;
  }

  .movie .movie__media .movie__media-switch {
    top: -40px;
    right: auto;
    left: 0;
  }

  .movie--test .movie__images {
    max-width: 100%;
  }

  .movie__feature {
    max-width: 190px;
  }

  .select {
    margin-left: 0;
  }

  .select.select--cinema {
    margin-left: 50px;
  }

  .select.select--film-category {
    margin-left: 34px;
  }

  .datepicker {
    margin-top: 23px;
  }

  .watchlist--map {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .time-select .time-select__place {
    margin-bottom: 0;
  }

  .time-select .time-select__group:before,
  .time-select .time-select__group:after {
    display: none;
  }

  .select .sbHolder {
    margin-left: 50px;
  }

  .select .sbOptions {
    z-index: 30;
  }

  .datepicker--sample {
    margin-left: 0px;
  }

  .cinema .cinema__images {
    max-width: 272px;
  }

  .trailer,
  .trailer-sample {
    max-width: 524px;
    margin-bottom: 15px;
    display: block;
  }

  .rates .rates__stars .score {
    margin: 0px auto;
    width: 95px !important;
  }

  .rates .rates__done {
    margin-left: 0;
  }

  .cinema--full .cinema__rating,
  .cinema--full .cinema__info {
    width: 100%;
  }

  .tab-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .movie--time {
    padding-right: 0;
  }

  .logo--dark {
    top: 60px;
  }

  .error {
    margin-top: 160px;
    padding-top: 73px;
    padding-bottom: 80px;
  }

  .wrapper-images {
    background-size: 2120px 1250px;
  }

  .auth--home {
    right: 145px;
  }

  .movie--test {
    width: 100%;
  }

  .movie-best .movie-beta__item {
    width: 33.3%;
  }

  .mega-select-marker .select-marker {
    margin-bottom: 60px;
  }

  .movie-best {
    padding: 0 15px;
    margin-top: -10px;
  }

  .change--col {
    padding: 0;
  }

  .movie-best .movie-best__check {
    overflow: hidden;
  }

  .movie-best .movie-beta__info {
    width: 100%;
  }

  .social-group .social-group__content {
    margin-bottom: 15px;
  }

  .facebook-group,
  .twitter-group {
    max-width: 270px;
  }

  .preview-footer {
    border-top: 1px solid #DBDEE1;
    border-bottom: 1px solid #DBDEE1;
  }

  .movie--preview .movie__rate {
    border: none;
  }

  .order-step-area .order-step {
    width: 100%;
    margin-bottom: 25px;
  }

  .contact-info .contact-info__field {
    width: auto;
  }

  .sits-area {
    width: 950px;
  }

  .sits .sits__number {
    margin-top: 100px;
  }

  .post--preview .post__image {
    width: 100%;
    max-width: 115px;
  }

  .post--preview .post--btn {
    display: block;
    margin-top: 15px;
    width: 135px;
    margin-left: 130px;
  }

  .movie--test {
    width: 30%;
    margin: 10px;
  }

  .movie--test .movie__images {
    width: 100%;
  }

  .movie--test .movie__images:after,
  .movie--test .movie__images:before {
    display: none;
  }

  .banner-wrap {
    display: inline-block;
    margin: 20px;
    margin-left: 0;
    max-width: 225px;
    width: 30.6%;
    height: auto;
  }

  .banner-wrap--last {
    margin-right: 0;
  }

  .promo {
    padding-bottom: 48px;
  }

  .store-variant {
    display: inline-block;
    width: 30%;
  }

  .store-variant:after {
    background-image: url(/images/wave-dark.svg?8db3f2c2543f50e3b9b996448f9af50a);
    background-repeat: no-repeat;
    background-size: 84px 8px;
    content: "";
    height: 8px;
    left: 50%;
    margin-left: -42px;
    position: absolute;
    bottom: -4px;
    width: 84px;
  }

  .facebook-group {
    float: left;
    margin-right: 45px;
  }

  .social-group .twitter-group {
    overflow: hidden;
    min-height: 375px;
  }

  .similar-wrap {
    width: 32%;
    display: inline-block;
  }

  .similar-wrap .post__image {
    float: none;
  }

  .similar-wrap .post--btn {
    margin-left: 0px;
  }

  .margin-slider {
    margin-right: 100px;
  }

  .movie-mobile {
    float: left;
    margin-right: 20px;
  }

  .mobile-category {
    width: 45.5%;
    display: inline-block;
    margin: 10px;
  }

  .rs-cat {
    margin-right: 0px;
    margin-left: 20px;
  }

  .ls-cat {
    margin-left: 0px;
    margin-right: 20px;
  }

  .movie--time .movie__images {
    float: left;
    margin-right: 15px;
  }

  .movie--time .movie__time {
    overflow: hidden;
  }

  .offer {
    min-height: 350px;
  }

  .sits .sits__number {
    margin-top: 100px;
  }

  .sits-area {
    width: 840px;
    position: relative;
    left: 50%;
    margin-left: -420px;
    transform: scale(0.6);
    margin-top: -150px;
    margin-bottom: -150px;
  }

  .ticket {
    left: 50%;
    margin-left: -585px;
    transform: scale(0.5);
    margin-top: -90px;
    margin-bottom: -90px;
  }

  .ticket-secondary,
  .ticket-primery {
    padding-left: 15px;
    padding-right: 20px;
  }

  .watchlist--map {
    display: block;
    float: none;
    max-width: 185px;
  }

  .single-cin .ui-datepicker {
    margin-left: -60px;
  }

  .social-group .social-group__content {
    margin-bottom: 40px;
  }

  .mega-select .select__btn--sample {
    margin-top: -31px;
    float: right;
  }

  .select .sbOptions {
    margin-left: 0;
  }

  .select .sbOptions:after {
    right: auto;
    left: 40px;
  }
}

@media (max-width: 800px) {
  .watchlist--map {
    display: block;
    float: none;
    max-width: 190px;
  }

  .watchlist--map-full {
    float: right;
    margin-top: 0;
  }

  .tab-pane .container {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .wrapper-images {
    background-size: 2220px 1350px;
  }

  .slide .slide__video .media-element {
    margin-top: -200px;
  }

  .movie--test {
    width: 45%;
    margin: 10px;
    max-width: 215px;
  }

  .banner-top,
  .banner-wrap,
  .adv-place {
    display: none;
  }

  .store-variant {
    display: block;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .store-variant:after {
    display: none;
  }

  .store-variant img {
    width: 100%;
  }

  .similar-wrap {
    width: 100%;
    display: block;
  }

  .similar-wrap .post__image {
    float: left;
  }

  .similar-wrap .post--btn {
    margin-left: 125px;
  }

  .similar-wrap .post__title {
    max-width: 115px;
    min-height: 70px;
  }

  .movie__media-item {
    margin-top: 7px;
  }

  .movie-mobile {
    float: none;
    margin-right: 0;
  }

  .movie .movie__btns {
    position: relative;
  }

  .movie .movie__btns .watchlist {
    float: none;
  }

  .movie .movie__btns .btn {
    display: inline-block;
    margin-right: 10px;
  }

  .watchlist--map-full {
    display: block;
    float: none;
    max-width: 190px;
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .facebook-group {
    float: none;
    margin-bottom: 20px;
  }

  .rs-cat {
    margin: 0;
  }

  .ls-cat {
    margin: 0;
  }

  .mobile-category {
    width: 100%;
    display: block;
    margin: 10px 0px;
  }

  .movie--time .time-select {
    clear: both;
    margin-left: 20px;
  }

  .offers-wrap {
    width: 100%;
  }

  .sits-area {
    transform: scale(0.5);
    margin-top: -200px;
    margin-bottom: -230px;
  }

  .ticket {
    left: 50%;
    margin-left: -585px;
    transform: scale(0.4);
  }
}

@media (max-width: 480px) {
  .nav-link .nav-link__item {
    margin-left: -5px;
  }

  .nav-link .nav-link__item:before {
    margin-right: 5px;
  }

  #navigation-box {
    min-height: 102px;
  }

  #navigation-toggle,
  #navigation-toggle.open-menu {
    left: auto;
    right: 10px;
  }

  .header-wrapper ul#navigation {
    left: auto;
    right: 10px;
    top: 102px;
  }

  .search-wrapper {
    height: 135px;
  }

  .search .sbHolder {
    top: 75px;
    border: none;
    right: auto;
    left: 50%;
    margin-left: -140px;
    border-radius: 3px;
  }

  .search .search__button {
    /* top: 74px;
    right: auto; */
    left: 70%;
  }

  .search .search__field {
    padding-right: 19px;
  }

  .post__preview .arrow-left,
  .post__preview .arrow-right,
  .post__preview .arrow-left:before,
  .post__preview .arrow-right:before,
  .tp-leftarrow.hebe,
  .tp-rightarrow.hebe,
  .tp-leftarrow.hebe:before,
  .tp-rightarrow.hebe:before {
    transition: 0s;
  }

  .post__preview .arrow-left:hover,
  .post__preview .arrow-right:hover,
  .tp-leftarrow.hebe:hover,
  .tp-rightarrow.hebe:hover {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
  }

  .post__preview .arrow-right .slider__info,
  .post__preview .arrow-right:hover .slider__info,
  .post__preview .arrow-left:hover .slider__info,
  .tp-leftarrow.hebe:hover .slider__info,
  .tp-rightarrow.hebe .slider__info,
  .tp-rightarrow.hebe:hover .slider__info {
    display: none;
  }

  .post__preview .arrow-left:hover:before,
  .tp-leftarrow.hebe:hover:before {
    left: 3px;
  }

  .post__preview .arrow-right:hover:before,
  .tp-rightarrow.hebe:hover:before {
    right: 3px;
  }

  .tp-leftarrow.hebe:hover:before {
    margin-top: 23px;
  }

  .tp-rightarrow.hebe:hover:before {
    margin-top: 23px;
  }

  .list-input {
    padding-left: 10px;
  }

  .quote--intext {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote .quote__author .quote__author-name {
    padding-left: 2px;
  }

  .comment .comment__reply {
    top: 40px;
  }

  .tabs--vertical .nav-tabs {
    float: none;
  }

  .tabs--vertical .tab-content {
    margin-left: 0;
  }

  .mega-select .select__field {
    padding-right: 20px;
  }

  .mega-select .select__field {
    margin-top: 10px;
  }

  .mega-select .mega-select__point {
    margin-right: 10px;
    float: none;
  }

  .mega-select .filter-wrap {
    margin: 5px;
  }

  .ui-datepicker {
    margin-left: -85px;
  }

  .tags--aside {
    margin-top: 0;
    margin-right: 0;
    float: none;
  }

  .col-width-lg {
    width: 67%;
  }

  .rates .rates__vote {
    display: none;
  }

  .rates .rates__obj-name:before,
  .rates .rates__obj-name:after {
    display: none;
  }

  .wrapper-images {
    background-size: 3120px 1950px;
  }

  .logo--lg {
    margin-left: -130px;
  }

  .logo--lg img {
    width: 260px;
    height: 42px;
  }

  .header-wrapper--home {
    position: relative;
    height: 105px;
  }

  .auth--home {
    right: 130px;
  }

  .slide .slide__video .media-element {
    margin-top: -130px;
  }

  .movie-best .movie-beta__item {
    width: 50%;
  }

  .third--item {
    display: none;
  }

  .post--preview .post--btn {
    display: block;
    margin-top: 0px;
    width: 135px;
    margin-left: 0px;
  }

  .mega-select--full .mega-select .select__field {
    padding-right: 80px;
  }

  .movie--test {
    width: 100%;
    margin: 10px 0px;
    max-width: 100%;
    display: block;
  }

  .movie__media-item {
    margin-top: 0px;
  }

  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:hover,
  .nav-tabs > li.active > a:focus {
    background: none;
    padding-left: 7px;
    padding-right: 7px;
    color: #E2343E;
  }

  .nav-tabs > li > a,
  .nav-tabs > li > a:hover,
  .nav-tabs > li > a:focus {
    padding-left: 7px;
    padding-right: 7px;
  }

  .cinema-item {
    width: 100%;
  }

  .facebook-group {
    margin-right: 0;
  }

  .similar-wrap .post__title {
    min-height: 100px;
  }

  /* .hidden-exrtasm {
    display: none;
  } */

  .sits-area {
    transform: scale(0.3);
    margin-top: -250px;
    margin-bottom: -280px;
  }

  .ticket {
    left: 50%;
    margin-left: -585px;
    transform: scale(0.3);
    margin-top: -130px;
    margin-bottom: -130px;
  }

  .mega-select-marker .select-marker {
    line-height: 45px;
  }

  .mega-select-marker .select-marker span {
    font-size: 18px;
    line-height: 20px;
  }

  .mega-select-marker .cinema:before {
    margin-left: -70px;
  }

  .movie--test .movie__info {
    min-height: 175px;
  }

  .movie--test .movie__rate {
    position: relative;
    margin-left: -17px;
    margin-top: 20px;
  }

  .sits-area--mobile .sbHolder {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }

  .sits-area--mobile .sbHolder .sbOptions {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .ui-datepicker {
    margin-left: -10px;
  }

  .movie-best {
    margin-top: 10px;
  }

  .movie-best .movie-beta__item {
    width: 100%;
  }

  .second--item {
    display: none;
  }

  .movie-best .movie-best__rating:before,
  .movie-best .movie-best__rating:after {
    display: none;
  }

  .rates .rates__obj .rates__obj-name {
    font-size: 14px;
    padding: 15px 0;
  }

  .rates .rates__result {
    font-size: 16px;
  }

  .preview-footer {
    border: none;
  }

  .movie--preview .movie__rate {
    border-top: 1px solid #DBDEE1;
    border-bottom: 1px solid #DBDEE1;
    min-height: 110px;
  }

  .movie--preview .movie__show-btn {
    top: 72px;
    left: 15px;
    right: auto;
  }

  .choose-container .datepicker {
    margin-left: 0px;
  }

  .watchlist--map {
    float: none;
  }

  .single-cin .ui-datepicker {
    margin-left: -5px;
  }

  .choose-container--short .select .sbToggle {
    left: -20px;
  }

  .choose-container--short .select .sbHolder {
    margin-left: 35px;
    margin-right: 10px;
  }

  .post--preview .post__title {
    min-height: 105px;
    max-width: 105px;
  }

  .movie-best {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .movie-best .movie-beta__info {
    position: relative;
    visibility: visible;
  }

  .movie-best .movie-beta__item:hover .movie-beta__info {
    transform: translateY(0%);
  }

  .movie-best .movie-beta__item .best-rate {
    top: 25%;
  }
}

@media (max-width: 319px) {
  .post--preview .post__image {
    width: 100%;
  }
}

/**Custom*/

.advertise {
  z-index: 10;
  width: 47px;
  height: 47px;
  padding-top: 10px;
  border-radius: 24px;
  border: solid 3px #fff;
  font: 12px "Roboto", sans-serif;
  color: #000;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #E2343E;
  color: #fff;
  font-weight: bold;
}

.button-go {
  margin-top: -35px;
}

/**  Hero  **/

#hero {
  /* overflow: hidden; */
  min-height: 100vh !important;
/* min-height: 600px !important;*/
height: 100vh !important;
margin-top: 115px;
}

@media(min-width:275px) and (max-width:481px){
    #hero {

        margin-top: 0 !important;
      }
}

#hero .scroll,
#content_hero .scroll {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  -webkit-animation: ScrollDown 1.5s infinite;
  animation: ScrollDown 1.5s infinite;
}

#hero .carousel-inner,
#hero .carousel-inner .item {
  height: 100%;
  min-height: 600px;
  text-align: center;
  background-color: #000;
  /* background-position: center;
  background-size: cover; */
}

#hero .carousel-inner .item:before,
#content_hero:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  /* background-image: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%); */
}

#hero .container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  margin: auto;
  transform: none;
  align-items: center;
  justify-content: center;
}

#hero .container .blurb {
  position: relative;
  width: 100%;
  margin-top: 50px;
  -webkit-animation: Blurb 0.5s 0.5s forwards;
  animation: Blurb 0.5s 0.5s forwards;
  text-align: left;
  opacity: 1;
}

#hero .container .blurb h1 {
  font-size: 52px;
  font-weight: 300;
  padding: 0;
  -webkit-animation: Heading 0.5s 0.5s forwards;
  animation: Heading 0.5s 0.5s forwards;
  letter-spacing: 3px;
  opacity: 1;
  color: #fff;
  border: none;
}

#hero .container .blurb .buttons {
  margin-top: 300px;
  -webkit-animation: Buttons 0.5s 0.5s forwards;
  animation: Buttons 0.5s 0.5s forwards;
  opacity: 1;
}

#hero .container .blurb .buttons .btn-slider {
  border: none;
  background-image: linear-gradient(to right, #a23f3f, #f4002e);
}

#hero .container .blurb .buttons .btn1 {
  font-size: 13px;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  width: auto;
  padding: 12px 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  border-width: 2px;
  border-radius: 30px;
}

#hero .container .blurb .buttons .btn-slider span,
#hero .container .blurb .buttons .btn-slider span:hover {
  position: relative;
  z-index: 1;
  color: #fff;
}

#hero .container .blurb .buttons .btn-slider:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  transition: all 0.3s;
  transform: translateZ(10px);
}

#hero .container .blurb p {
  font-size: 18px;
  color: #fff;
}

#hero .container .blurb .certificate {
  font-size: 13px;
  font-weight: bold;
  line-height: 48px;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 8px;
  transform: translateY(2px);
  text-align: center;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 50%;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
  }

  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    transform: translate3d(100%, 0, 0);
  }

  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    transform: translate3d(-100%, 0, 0);
  }

  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

.carousel-control .icon-prev:before {
  content: "‹";
}

.carousel-control .icon-next:before {
  content: "›";
}

.carousel-indicators {
  position: absolute;
  bottom: 130px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

.position-absolute {
  position: absolute !important;
  top: 0;
  right: 0;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-primary[href]:focus,
.badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:focus,
.badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-success[href]:focus,
.badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-info[href]:focus,
.badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:focus,
.badge-warning[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-danger[href]:focus,
.badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-light[href]:focus,
.badge-light[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-dark[href]:focus,
.badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.banner_image {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 75px;
  background-position-y: -700px;
  position: relative;
  background-attachment: fixed;
}

.banner_image_cine {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 75px;
  background-position-y: -300px;
  position: relative;
  background-attachment: fixed;
}

#overlay {
  position: absolute;
  /* Sit on top of the page content */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 21, 21, 0.4);
  /* Black background with opacity */
  cursor: pointer;
  /* Add a pointer on hover */
}

@media (max-width: 357px) {
  .banner_image {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    background-position-y: 0;
    position: relative;
    background-attachment: fixed;
  }

  .banner_image_cine {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    background-position-y: 0;
    position: relative;
    background-attachment: fixed;
  }
}

@media (min-width: 357px) and (max-width: 850px) {
  .banner_image {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    background-position-y: 0;
    position: relative;
    background-attachment: fixed;
  }

  .banner_image_cine {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    background-position-y: 0;
    position: relative;
    background-attachment: fixed;
  }
}

@media (min-width: 851px) {
  .banner_image {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 75px;
    background-position-y: -600px;
    position: relative;
    background-attachment: fixed;
  }

  .banner_image_cine {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 75px;
    background-position-y: -150px;
    position: relative;
    background-attachment: fixed;
  }
}

.center-movies {
  display: flex;
  justify-content: center;
}

@media (min-width: 315px) and (max-width: 405px) {
  .center-movies {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .movie-best .movie-beta__item {
    width: 100%;
    height: 400px;
  }

  .movie-beta__item a img {
    height: 100%;
  }
}

.evenements .cm-bloc-title,
.bloc-evenements .cm-bloc-title {
  border-color: #ff9d00;
}

.prestations .cm-bloc-title,
.bloc-prestations .cm-bloc-title {
  border-color: #ffd300;
}

.infos .cm-bloc-title,
.infos-pratiques .cm-bloc-title,
.bloc-infos .cm-bloc-title {
  border-color: #67c7c5;
}

.jeune-public .cm-bloc-title,
.bloc-jeune-public .cm-bloc-title {
  border-color: #FFD200;
}

.newsletter .cm-bloc-title,
.bloc-newsletter .cm-bloc-title {
  border-color: #C43778;
}

body {
  font-family: "BarlowSemiCondensedRegular", Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  height: 5rem;
}

.navbar .navbar-brand {
  width: 190px;
  padding: 1rem 3rem 1rem 0;
}

.navbar .navbar-brand span {
  display: none;
}

.navbar .navbar-toggle {
  padding: 0;
  margin: 0.8rem 0 0.8rem 3rem;
  border-radius: 0;
}

.navbar .navbar-toggle .icon {
  color: #222;
  font-size: 1.6rem;
  padding: 0.7rem;
}

.navbar .navbar-toggle .icon-menu {
  display: inherit;
}

.navbar .navbar-toggle .icon-fermer-menu {
  display: none;
}

.navbar .navbar-container {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.navbar .navbar-container .navbar-nav {
  background-color: #fff;
}

.navbar .navbar-container .navbar-nav > li > a {
  text-transform: uppercase;
  color: #fff;
}

.navbar .navbar-container .navbar-nav > li > a.dropdown-toggle .caret {
  float: right;
  border: none;
  margin-right: 1rem;
  font-size: 0.7rem;
}

.navbar .navbar-container .navbar-nav > li > a.dropdown-toggle .caret:before {
  color: #000;
  content: "î¤„";
  font-family: "icomoon";
}

.navbar .navbar-container .navbar-nav > li > a:hover,
.navbar .navbar-container .navbar-nav > li > a:focus {
  background-color: transparent;
}

.navbar .navbar-container .navbar-nav > li.open > a.dropdown-toggle .caret:before {
  content: "î¤–";
}

.navbar .navbar-container .navbar-nav > li.accueil {
  background-color: #000;
}

.navbar .navbar-container .navbar-nav > li.films.active,
.navbar .navbar-container .navbar-nav > li.films:hover {
  background-color: #00adda;
}

.navbar .navbar-container .navbar-nav > li.films a.active {
  color: #fff;
}

.navbar .navbar-container .navbar-nav > li.cinecafe.active,
.navbar .navbar-container .navbar-nav > li.cinecafe:hover {
  background-color: #e22129;
}

.navbar .navbar-container .navbar-nav > li.cinecafe a.active {
  color: #fff;
}

.navbar .navbar-container .navbar-nav > li.evenements.active,
.navbar .navbar-container .navbar-nav > li.evenements:hover {
  background-color: #ff9d00;
}

.navbar .navbar-container .navbar-nav > li.evenements a.active {
  color: #fff;
}

.navbar .navbar-container .navbar-nav > li.prestations.active,
.navbar .navbar-container .navbar-nav > li.prestations:hover {
  background-color: #ffd300;
}

.navbar .navbar-container .navbar-nav > li.prestations a.active,
.navbar .navbar-container .navbar-nav > li.prestations:hover {
  color: #000;
}

.navbar .navbar-container .navbar-nav > li.pratique.active,
.navbar .navbar-container .navbar-nav > li.pratique:hover {
  background-color: #67c7c5;
}

.navbar .navbar-container .navbar-nav > li.pratique a.active,
.navbar .navbar-container .navbar-nav > li.pratique:hover {
  color: #000;
}

.navbar .navbar-container .navbar-nav > li.dropdown .dropdown-menu {
  background-color: #fff;
}

.navbar .navbar-container .navbar-nav > li.dropdown a {
  color: #000;
}

.navbar .navbar-tools-container {
  display: none;
  position: absolute;
  top: 7px;
  left: 0;
}

.navbar .navbar-tools-container .navbar-tools li {
  display: inline-block;
}

.navbar .navbar-tools-container .navbar-tools li.navbar-tools-toggle {
  display: none;
}

.navbar .navbar-tools-container .navbar-tools li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0.5rem;
  margin: 0;
  font-size: 2.4rem;
  line-height: 2.4rem;
  color: #000;
}

.navbar .navbar-tools-container .navbar-tools li a .value {
  display: none;
}

.navbar .navbar-tools-container .navbar-tools li a:hover {
  background-color: transparent;
}

.navbar .navbar-tools-container .navbar-tools li.facebook {
  margin-left: 1.5rem;
}

.menu-open .navbar .navbar-toggle .icon {
  background-color: #222;
  color: #fff;
}

.menu-open .navbar .navbar-toggle .icon-menu {
  display: none;
}

.menu-open .navbar .navbar-toggle .icon-fermer-menu {
  display: inherit;
}

.menu-open .navbar .navbar-container {
  max-height: 1000px;
  overflow: visible;
  transition: max-height 1s ease-in-out;
}

.menu-open .navbar .navbar-tools-container {
  display: block;
}

.menu-open .navbar .navbar-brand {
  display: none;
}

.btn-voir-seances,
.btn-reserver {
  display: block;
  background-color: #0A70B2;
  background-color: #0A70B2;
  color: #000;
  margin: 0 0.5rem;
  padding: 3px 7px 2px;
  border-radius: 0;
  text-align: left;
  position: relative;
  font-size: 1.2rem;
  text-align: left;
}

.btn-seance {
  display: block;
  background-color: #0A70B2;
  margin-right: 1rem;
  color: #fff;
  margin: 0 0.5rem;
  padding: 3px 7px 2px;
  border-radius: 0;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 1.2rem;
  border-right: 0.3rem solid white;
  transition: all 0.25s ease-in-out;
}

/* .btn-seance:hover{
    background-color: #FFE500;
} */

.bloc-films-seances .header {
  position: relative;
  margin-bottom: 1.5rem;
}

.bloc-films-seances .header .form-group label {
  display: inline-block;
  width: 40%;
  vertical-align: middle;
}

.bloc-films-seances .header .form-group .form-control {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  background-color: #fff;
}

.bloc-films-seances .header .masquer-seances {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #000;
}

.bloc-films-seances .header .masquer-seances .value {
  display: none;
}

.bloc-films-seances .seances .liste-seances {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bloc-films-seances .seances .liste-seances > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.3rem 0 0;
  margin-bottom: 0.8rem;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-infos,
.bloc-films-seances .seances .liste-seances > li .col-seances-horaires {
  display: block;
  min-height: 3rem;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-infos > span {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-infos .film-title {
  font-weight: bold;
  font-size: 1.1em;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-infos .film-caracteristiques {
  width: 28%;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-horaires {
  font-size: 1.2em;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-horaires .col-horaire-seance {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-horaires .col-horaire-seance .btn-reserver {
  font-weight: normal;
  text-align: center;
  width: 100%;
  padding-left: 0.3rem;
  padding-right: 2.5rem;
  margin: 0;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-horaires .col-horaire-seance .btn-reserver:after {
  font-size: 1.4rem;
  width: 2rem;
}

.bloc-films-seances .seances .liste-seances > li .col-seances-horaires .col-horaire-seance .btn-seance {
  font-weight: normal;
  text-align: center;
  width: 100%;
  padding-left: 0.3rem;
  padding-right: 2.5rem;
  margin: 0;
}

.bloc-films-seances.seances-on .seances,
.bloc-films-seances.seances-on .masquer-seances {
  display: block;
}

.bloc-films-seances #carousel-films {
  margin-bottom: 1.5rem;
}

.bloc-films-seances #carousel-films .slide-film {
  background-color: #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.bloc-films-seances #carousel-films .affiche img {
  width: auto !important;
  min-width: 100%;
}

.bloc-films-seances #carousel-films .caption {
  padding: 0.5rem;
  height: 6.5rem;
}

.bloc-films-seances #carousel-films .caption .title {
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}

.bloc-films-seances #carousel-films .caption .caracteristiques {
  margin-top: 0.5rem;
}

.bloc-films-seances #carousel-films .caption .caracteristiques .icon {
  font-size: 1.6rem;
  margin-right: 0.3rem;
}

.bloc-films-seances #carousel-films .caption .caracteristiques > span {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.2rem;
}

.bloc-films-seances #carousel-films .owl-nav {
  display: none;
}

.bloc-films-seances #carousel-films .owl-dots {
  width: 100%;
  margin: 0 0 1rem 0;
}

.bloc-films-seances #carousel-films .owl-dots .owl-dot {
  background-color: #D5D5D5;
  width: 10%;
  height: 0.5rem;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: inline-block;
  text-indent: -99em;
  overflow: hidden;
}

.bloc-films-seances #carousel-films .owl-dots .owl-dot.active {
  background-color: #00adda;
}

.bloc-films-seances #carousel-films .owl-cm-nav {
  margin: 1.5rem 0;
}

.bloc-films-seances #carousel-films .owl-cm-nav .owl-next,
.bloc-films-seances #carousel-films .owl-cm-nav .owl-prev {
  display: none;
}

.bloc-films-seances #carousel-films.carousel-1 .owl-dots .owl-dot {
  width: calc(100% / 1);
}

.bloc-films-seances #carousel-films.carousel-2 .owl-dots .owl-dot {
  width: calc(100% / 1);
}

.bloc-films-seances #carousel-films.carousel-3 .owl-dots .owl-dot {
  width: calc(100% / 2);
}

.bloc-films-seances #carousel-films.carousel-4 .owl-dots .owl-dot {
  width: calc(100% / 2);
}

.bloc-films-seances #carousel-films.carousel-5 .owl-dots .owl-dot {
  width: calc(100% / 3);
}

.bloc-films-seances #carousel-films.carousel-6 .owl-dots .owl-dot {
  width: calc(100% / 3);
}

.bloc-films-seances #carousel-films.carousel-7 .owl-dots .owl-dot {
  width: calc(100% / 4);
}

.bloc-films-seances #carousel-films.carousel-8 .owl-dots .owl-dot {
  width: calc(100% / 4);
}

.bloc-films-seances #carousel-films.carousel-9 .owl-dots .owl-dot {
  width: calc(100% / 5);
}

.bloc-films-seances #carousel-films.carousel-10 .owl-dots .owl-dot {
  width: calc(100% / 5);
}

.bloc-films-seances #carousel-films.carousel-11 .owl-dots .owl-dot {
  width: calc(100% / 6);
}

.bloc-films-seances #carousel-films.carousel-12 .owl-dots .owl-dot {
  width: calc(100% / 6);
}

.bloc-films-seances #carousel-films.carousel-13 .owl-dots .owl-dot {
  width: calc(100% / 7);
}

.bloc-films-seances #carousel-films.carousel-14 .owl-dots .owl-dot {
  width: calc(100% / 7);
}

.bloc-films-seances #carousel-films.carousel-15 .owl-dots .owl-dot {
  width: calc(100% / 8);
}

.bloc-films-seances #carousel-films.carousel-16 .owl-dots .owl-dot {
  width: calc(100% / 8);
}

.bloc-films-seances #carousel-films.carousel-17 .owl-dots .owl-dot {
  width: calc(100% / 9);
}

.bloc-films-seances #carousel-films.carousel-18 .owl-dots .owl-dot {
  width: calc(100% / 9);
}

.bloc-films-seances #carousel-films.carousel-19 .owl-dots .owl-dot {
  width: calc(100% / 10);
}

.bloc-films-seances #carousel-films.carousel-20 .owl-dots .owl-dot {
  width: calc(100% / 10);
}

.bloc-films-seances #carousel-films.carousel-21 .owl-dots .owl-dot {
  width: calc(100% / 11);
}

.bloc-films-seances #carousel-films.carousel-22 .owl-dots .owl-dot {
  width: calc(100% / 11);
}

.bloc-films-seances #carousel-films.carousel-23 .owl-dots .owl-dot {
  width: calc(100% / 12);
}

.bloc-films-seances #carousel-films.carousel-24 .owl-dots .owl-dot {
  width: calc(100% / 12);
}

.bloc-films-seances #carousel-films.carousel-25 .owl-dots .owl-dot {
  width: calc(100% / 13);
}

.bloc-films-seances #carousel-films.carousel-26 .owl-dots .owl-dot {
  width: calc(100% / 13);
}

.bloc-films-seances #carousel-films.carousel-27 .owl-dots .owl-dot {
  width: calc(100% / 14);
}

.bloc-films-seances #carousel-films.carousel-28 .owl-dots .owl-dot {
  width: calc(100% / 14);
}

.bloc-films-seances #carousel-films.carousel-29 .owl-dots .owl-dot {
  width: calc(100% / 15);
}

.bloc-films-seances #carousel-films.carousel-30 .owl-dots .owl-dot {
  width: calc(100% / 15);
}

.bloc-films-seances #carousel-films.carousel-31 .owl-dots .owl-dot {
  width: calc(100% / 16);
}

.bloc-films-seances #carousel-films.carousel-32 .owl-dots .owl-dot {
  width: calc(100% / 16);
}

.bloc-films-seances #carousel-films.carousel-33 .owl-dots .owl-dot {
  width: calc(100% / 17);
}

.bloc-films-seances #carousel-films.carousel-34 .owl-dots .owl-dot {
  width: calc(100% / 17);
}

.bloc-films-seances #carousel-films.carousel-35 .owl-dots .owl-dot {
  width: calc(100% / 18);
}

.bloc-films-seances #carousel-films.carousel-36 .owl-dots .owl-dot {
  width: calc(100% / 18);
}

.bloc-films-seances #carousel-films.carousel-37 .owl-dots .owl-dot {
  width: calc(100% / 19);
}

.bloc-films-seances #carousel-films.carousel-38 .owl-dots .owl-dot {
  width: calc(100% / 19);
}

.bloc-films-seances #carousel-films.carousel-39 .owl-dots .owl-dot {
  width: calc(100% / 20);
}

.bloc-films-seances #carousel-films.carousel-40 .owl-dots .owl-dot {
  width: calc(100% / 20);
}

.bloc-films-seances #carousel-films.carousel-41 .owl-dots .owl-dot {
  width: calc(100% / 21);
}

.bloc-films-seances #carousel-films.carousel-42 .owl-dots .owl-dot {
  width: calc(100% / 21);
}

.bloc-films-seances #carousel-films.carousel-43 .owl-dots .owl-dot {
  width: calc(100% / 22);
}

.bloc-films-seances #carousel-films.carousel-44 .owl-dots .owl-dot {
  width: calc(100% / 22);
}

.bloc-films-seances #carousel-films.carousel-45 .owl-dots .owl-dot {
  width: calc(100% / 23);
}

.bloc-films-seances #carousel-films.carousel-46 .owl-dots .owl-dot {
  width: calc(100% / 23);
}

.bloc-films-seances #carousel-films.carousel-47 .owl-dots .owl-dot {
  width: calc(100% / 24);
}

.bloc-films-seances #carousel-films.carousel-48 .owl-dots .owl-dot {
  width: calc(100% / 24);
}

.bloc-films-seances #carousel-films.carousel-49 .owl-dots .owl-dot {
  width: calc(100% / 25);
}

.bloc-films-seances #carousel-films.carousel-50 .owl-dots .owl-dot {
  width: calc(100% / 25);
}

.bloc-films-seances .footer .all-films {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  font-weight: bold;
}

.bloc-films-seances .footer .pgm-mail,
.bloc-films-seances .footer .pgm-download {
  font-size: 1.1rem;
  display: inline-block;
  width: 55%;
}

.bloc-films-seances .footer .pgm-download {
  width: 43.8%;
}

.item-evenement {
  margin-bottom: 2rem;
}

.item-evenement .item-image {
  margin: 0 1rem 0 0;
  padding: 0;
}

.item-evenement .item-image img {
  max-width: 100%;
  height: auto;
}

.item-evenement .item-infos {
  font-size: 0.9rem;
}

.item-evenement .item-infos .item-type {
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.item-evenement .item-infos .item-title {
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.item-evenement .item-actions {
  clear: both;
  display: block;
  background-color: #0A70B2;
  margin: 1rem 0 0 1rem;
  padding: 0;
  border-radius: 0;
  text-align: left;
  font-size: 0;
}

.item-evenement .item-actions a {
  font-size: 1rem;
  font-family: "BarlowSemiCondensedRegular", Helvetica, Arial, sans-serif;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  height: 2.5rem;
  line-height: 2rem;
}

.item-evenement .item-actions a.voir {
  width: 100%;
}

.item-evenement .item-actions a.voir span {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 7px 2px;
}

.item-evenement .item-actions a:hover {
  text-decoration: none;
}

.item-evenement .item-actions.horaire a.voir span {
  width: 60%;
}

.item-evenement .item-actions.horaire a.voir span.horaire {
  width: 38%;
  text-align: right;
}

.item-evenement .item-actions.reserver a.voir {
  width: calc(100% - 2rem);
}

.item-evenement .item-actions.reserver a.btn-resa {
  width: 2rem;
  line-height: 2.5rem;
  text-align: center;
  background-color: #ff9d00;
  color: #fff;
}

.bloc-evenements .evenements-focus .item-evenement,
.bloc-evenements .evenements-focus .item-image,
.bloc-evenements .evenements-focus .item-infos {
  padding-left: 0;
  padding-right: 0;
}

.bloc-evenements .evenements-focus .item-evenement {
  margin-bottom: 0;
  height: 260px;
}

.bloc-evenements .evenements-focus .item-evenement .item-image {
  margin-bottom: 1rem;
}

.bloc-evenements .evenements-focus .item-evenement .item-infos {
  font-size: 1.2rem;
}

.bloc-evenements .evenements-focus .item-evenement .item-infos .item-type {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bloc-evenements .evenements-focus .item-evenement .item-infos .item-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.bloc-evenements .evenements-focus .item-evenement .item-infos .item-actions a {
  font-size: 1.4rem;
}

.bloc-evenements .evenements-actions a {
  margin-right: 1.5rem;
}

.bloc-evenements .evenements-list .item-evenement {
  margin-bottom: 1.5rem;
  padding: 0;
}

.bloc-autopromo {
  padding: 2rem 0;
}

.bloc-autopromo .cm-bloc-row {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0 !important;
}

.bloc-autopromo a {
  position: relative;
  margin-bottom: 1.5rem;
}

.bloc-autopromo a:last-of-type {
  margin-bottom: 0;
}

.bloc-autopromo a img {
  max-width: 100%;
  height: auto;
}

.bloc-autopromo a .slogan {
  display: block;
  width: calc(100% - 3rem);
  padding: 1.5rem 3rem;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bloc-autopromo a.achetez .slogan {
  font-family: "BarlowSemiCondensedSemiBold", Helvetica, Arial, sans-serif;
  color: #000;
  font-size: 2rem;
  line-height: normal;
}

.bloc-autopromo a.achetez .slogan span {
  font-size: 3rem;
  display: block;
}

.bloc-autopromo a.reservez-table .slogan,
.bloc-autopromo a.plan-acces .slogan,
.bloc-autopromo a.toutes-prestations .slogan,
.bloc-autopromo a.espace-pro .slogan {
  font-family: "BarlowSemiCondensedSemiBold", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 2rem;
  line-height: normal;
}

.bloc-autopromo a.reservez-table .slogan span,
.bloc-autopromo a.plan-acces .slogan span,
.bloc-autopromo a.toutes-prestations .slogan span,
.bloc-autopromo a.espace-pro .slogan span {
  margin-top: 1rem;
  font-size: 1.4rem;
  display: block;
}

.bloc-autopromo a.plan-acces .slogan,
.bloc-autopromo a.toutes-prestations .slogan {
  text-transform: uppercase;
}

.bloc-autopromo a.plan-acces .slogan {
  font-family: "BarlowSemiCondensedRegular", Helvetica, Arial, sans-serif;
  font-size: 3rem;
}

.bloc-autopromo a.reservez-table .slogan {
  font-size: 2.3rem;
}

.bloc-autopromo a.reservez-table .slogan span {
  font-size: 1.8rem;
  font-family: "BarlowSemiCondensedRegular", Helvetica, Arial, sans-serif;
}

.bloc-newsletter .newsletter-form {
  padding-left: 0;
  padding-right: 0;
}

.bloc-newsletter .newsletter-form .form-inline {
  margin-top: 1.5rem;
}

.bloc-newsletter .newsletter-form .form-control {
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  margin-right: 0.5rem;
}

.item-liste-films {
  margin-bottom: 1rem;
  min-height: 190px;
}

.item-liste-films .item-image {
  margin: 0;
  padding: 0;
}

.item-liste-films .item-image img {
  width: 120px;
  height: 160px;
}

.item-liste-films .seances {
  background-color: #0A70B2;
}

.item-liste-films .item-infos {
  font-size: 1.5rem;
}

.item-liste-films .item-infos .item-type {
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1rem;
}

.item-liste-films .item-infos .item-title {
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 2rem;
  color: #00adda;
}

.calendrier h3 {
  font-size: 1.5rem;
}

.bloc-autres-films.cm-bloc {
  margin-bottom: 0;
}

.liste-films {
  margin-bottom: 1.5rem;
}

.liste-films .item {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 1rem);
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: #fff;
}

.liste-films .item:nth-of-type(even) {
  margin-right: 0;
  margin-left: 0.5rem;
}

.liste-films .item .affiche {
  margin: -0.5rem -0.5rem 1rem -0.5rem;
}

.liste-films .item .affiche img {
  width: 100%;
  max-width: 100%;
}

.liste-films .item .caption {
  height: 5rem;
}

.liste-films .item .caption .title {
  font-size: 1.2rem;
  margin: 0;
  max-height: 3rem;
  overflow: hidden;
}

.liste-films .item .caption .caracteristiques {
  margin-top: 0.5rem;
}

.liste-films .item .caption .caracteristiques .icon {
  font-size: 1.6rem;
  margin-right: 0.3rem;
}

.liste-films .item .btn-voir-seances {
  margin: 1rem -0.25rem 0;
  font-size: 1.1rem;
  height: 2.6rem;
}

.bloc-fil-ariane ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bloc-fil-ariane ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-transform: uppercase;
}

.bloc-fil-ariane ul li a {
  display: inline-block;
  color: #000;
  font-weight: bold;
  padding: 0;
}

.bloc-fil-ariane ul li a:after {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem 0 1rem;
  font-family: "icomoon";
  content: "î¤Œ";
  font-weight: lighter;
  font-size: 1rem;
}

.bloc-fil-ariane ul li.current {
  font-weight: normal;
}

.bloc-fil-ariane ul li.accueil .value {
  display: none;
}

.bloc-fiche-film .presentation-film {
  padding-left: 0;
  padding-right: 0;
  font-size: 1.2rem;
  line-height: normal;
}

.bloc-fiche-film .visuel-film .affiche-film {
  margin-bottom: 1.5rem;
}

.bloc-fiche-film .visuel-film .affiche-film img {
  max-width: 100%;
  width: 100%;
}

.bloc-fiche-film .visuel-film .btn-cm-bannonce {
  font-weight: bold;
  margin: 0 0 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 2.5rem;
  width: 100%;
}

.bloc-fiche-film .visuel-film .btn-cm-bannonce:before {
  font-family: "icomoon";
  content: "î¤ƒ";
  font-weight: normal;
  font-size: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.bloc-fiche-film .visuel-film .classification-film {
  margin-bottom: 1.5rem;
}

.bloc-fiche-film .visuel-film .classification-film ul {
  margin: 0;
  padding: 0;
}

.bloc-fiche-film .visuel-film .classification-film ul li {
  margin: 0 0.5rem 0 0;
  padding: 0;
  display: inline-block;
}

.bloc-fiche-film .infos-film {
  margin-bottom: 1.5rem;
}

.bloc-fiche-film .infos-film > .cm-bloc-row {
  padding-left: 0;
  padding-right: 0;
}

.bloc-fiche-film .infos-film .titre-film {
  text-transform: uppercase;
  font-size: 2rem;
  border-left: 0.3rem solid #00adda;
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.bloc-fiche-film .infos-film h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.bloc-fiche-film .infos-film .row-seances .liste-seances {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bloc-fiche-film .infos-film .row-seances .liste-seances li {
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.bloc-fiche-film .infos-film .row-seances .liste-seances li > span {
  display: block;
  margin-bottom: 0.5rem;
  height: 2.5rem;
}

.bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-infos .seance-date {
  font-size: 1.4rem;
  font-weight: bold;
}

.bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-horaires .col-horaire-seance {
  display: inline-block;
  padding: 0 0.5rem 0 0;
  width: 25%;
  margin-right: 0.3rem;
}

.bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-horaires .col-horaire-seance .btn-reserver,
.bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-horaires .col-horaire-seance .btn-seance {
  height: 2.6rem;
  line-height: 2.5rem;
  padding: 0 5px 0 0;
  margin: 0;
  font-size: 1.2rem;
  font-weight: normal;
  width: 100%;
  background-color: #D6D6D6;
  border: none;
}

.bloc-fiche-film .infos-film .row-critiques .item-critique {
  padding-left: 1rem;
  border-left: 2px solid #D6D6D6;
}

.bloc-fiche-film .infos-film .row-critiques .item-critique .critique-source {
  font-size: 1.3rem;
}

.bloc-fiche-film .infos-film .row-critiques .item-critique .critique-texte {
  font-style: italic;
}

.bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto > [class^=col-] {
  padding: 0;
}

.bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item {
  background-color: #fff;
  margin-bottom: 1.5rem;
}

.bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item .visuel {
  margin: 0;
}

.bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item .visuel img {
  width: 100%;
  max-width: 100%;
}

.bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item .info {
  text-align: center;
  padding: 1.5rem;
}

.bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item .info .title {
  font-size: 2.1rem;
}

.bloc-cine-cafe-resto-espace > .cm-bloc-row {
  padding-right: 0;
  padding-left: 0;
}

.bloc-cine-cafe-resto-espace .col-avis .header-avis {
  background-color: #000;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  padding: 1.1rem 4rem;
}

.bloc-cine-cafe-resto-espace .col-avis .btn-cm-avis {
  display: block;
  font-size: 1.6rem;
  background-color: #e22129;
  color: #fff;
  text-align: center;
  border-radius: 0;
  margin-bottom: 1.5rem;
}

.bloc-cine-cafe-resto-espace .col-avis .visuel {
  margin-bottom: 1.5rem;
  padding: 0;
}

.bloc-cine-cafe-resto-espace .col-avis .visuel img {
  width: 90px;
}

.bloc-cine-cafe-resto-espace .col-avis .trip-advisor {
  padding: 0;
  margin-bottom: 1.5rem;
}

.bloc-cine-cafe-resto-espace .col-avis .trip-advisor .TA_selfserveprop > img {
  position: absolute;
}

.bloc-cine-cafe-resto-espace .col-avis .trip-advisor #CDSWIDSSP {
  max-width: 100%;
  width: 100% !important;
}

.bloc-cine-cafe-resto-espace .col-avis .trip-advisor #CDSWIDSSP .widSSPData .widSSPBranding dt.widSSPTagline {
  width: 100%;
  font-size: 0.9rem;
}

.bloc-cine-cafe-resto-espace .col-avis .trip-advisor #CDSWIDSSP .widSSPData .widSSPTrvlRtng .widSSPOverall div {
  font-size: 0.9rem;
}

.bloc-cine-cafe-resto-espace .col-avis .trip-advisor #CDSWIDSSP .widSSPH11 {
  font-size: 0.9rem;
}

.bloc-cine-cafe-resto-espace .col-avis .liste-logos .logo-wrapper {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0 0.75rem;
}

.bloc-cine-cafe-resto-espace .col-avis .liste-logos .logo-wrapper .logo {
  width: 100%;
}

.infos-pratiques-tarifs .main-row .col-tarifs,
.infos-pratiques-tarifs .main-row .col-paiement,
.infos-pratiques-tarifs .main-row .col-operations {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.infos-pratiques-tarifs .main-row .col-tarifs .tarifs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.infos-pratiques-tarifs .main-row .col-tarifs .tarifs li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.infos-pratiques-tarifs .main-row .col-paiement .moyens-paiement {
  background-color: #D6D6D6;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.infos-pratiques-tarifs .main-row .col-paiement .moyens-paiement p:nth-of-type(2) strong {
  text-decoration: underline;
}

.infos-pratiques-tarifs .main-row .col-paiement .billetterie-online {
  margin-bottom: 1.5rem;
  /* background: #222 url("../images/salle_de_cinema.jpg") 0 0 no-repeat; */
  color: #fff;
  background-size: cover;
  padding: 1.5rem;
  text-align: left;
}

.infos-pratiques-tarifs .main-row .col-paiement .billetterie-online a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.infos-pratiques-tarifs .main-row .col-operations .title {
  text-transform: uppercase;
}

.infos-pratiques-tarifs .main-row .col-operations a {
  display: block;
  margin-bottom: 1.5rem;
}

.infos-pratiques-formules .main-row .col-formules,
.infos-pratiques-formules .main-row .col-partenaires {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.infos-pratiques-formules .main-row .col-formules > .cm-bloc-row,
.infos-pratiques-formules .main-row .col-partenaires > .cm-bloc-row {
  padding-right: 0;
  padding-left: 0;
}

.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-solo,
.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-tribu {
  margin-bottom: 1.5rem;
}

.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-solo .place,
.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-tribu .place {
  display: block;
  margin-bottom: 0.5rem;
}

.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-solo .frais,
.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-tribu .frais {
  list-style: none;
  margin: 0;
  padding: 0;
}

.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-solo .frais li,
.infos-pratiques-formules .main-row .col-formules .detail-formules .abo-tribu .frais li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.infos-pratiques-formules .main-row .col-formules .detail-formules .legend {
  font-size: 1.2rem;
}

.infos-pratiques-formules .main-row .col-partenaires .offrez {
  background-color: #67c7c5;
  padding: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.infos-pratiques-formules .main-row .col-partenaires .offrez .header-offrez {
  font-size: 2.5rem;
  padding-left: 3.2rem;
  position: relative;
  line-height: 2.2rem;
  margin-bottom: 1rem;
}

.infos-pratiques-formules .main-row .col-partenaires .offrez .header-offrez .icon {
  display: inline-block;
  position: absolute;
  transform: translate(-125%, 12%);
  font-size: 3rem;
}

.infos-pratiques-formules .main-row .col-partenaires .cineplay {
  padding: 0;
  margin-bottom: 1.5rem;
}

.infos-pratiques-formules .liste-spectacles .item {
  margin-bottom: 3rem;
}

.infos-pratiques-formules .liste-spectacles .item .item-title {
  border-left: 3px solid #67c7c5;
  padding-left: 1.5rem;
}

.infos-pratiques-formules .liste-spectacles .item .tarifs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.infos-pratiques-formules .liste-spectacles .item .tarifs li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.presentation-prestations > [class^=col-] {
  padding: 0 1rem;
}

.presentation-prestations .item {
  background-color: #fff;
  margin-bottom: 1.5rem;
}

.presentation-prestations .item .visuel {
  margin: 0;
}

.presentation-prestations .item .visuel img {
  width: 100%;
  max-width: 100%;
}

.presentation-prestations .item .info {
  text-align: center;
  padding: 1.5rem;
}

.presentation-prestations .item .info .title {
  font-size: 2.1rem;
}

.presentation-prestations .item .info p {
  text-align: justify;
}

.presentation-prestations .item .info li {
  text-align: left;
}

.films .row-sous-menu a {
  margin-right: 1rem;
}

.films .row-sous-menu a.current {
  background-color: #00adda;
  border-color: #00adda;
  color: #fff;
}

.films .row-seances {
  padding: 0;
}

.films .row-seances li {
  list-style: none;
  margin: 4px 0 6px 0;
  padding: 0;
  border-bottom: 1px solid #D5D5D5;
}

.films .row-seances li a {
  margin-left: 0.5rem;
  font-weight: bold;
}

.films .row-seances .hour {
  background-color: #D5D5D5;
  padding: 2px 4px;
  display: inline-block;
  width: 4rem;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .main-footer {
    background-size: 40%;
    background-position: 5% 0;
    padding: 2rem 0;
    font-size: 1.2rem;
  }

  .main-footer .col-adresse {
    border-bottom: none;
    text-align: right;
    padding: 0 1.5rem 0 0;
  }

  .main-footer .col-menu-footer {
    border-left: 5px solid #FFD200;
    text-align: left;
    padding: 0 0 0 1.5rem;
  }

  .main-footer .col-menu-footer > ul > li {
    margin-bottom: 0;
  }

  .main-footer .col-menu-footer ul.submenu {
    padding-left: 0;
    border-left: none;
  }

  .main-footer .col-menu-footer ul.submenu li {
    display: inline-block;
  }

  .main-footer .col-menu-footer ul.submenu li a {
    display: inline-block;
  }

  .main-footer .col-menu-footer ul.submenu li a:after {
    content: "";
    border-right: 1px solid;
    margin: 0 0.5rem;
  }

  .cm-bloc-title {
    font-size: 2rem;
  }

  .cm-carousel .owl-nav {
    display: none;
  }

  .cm-carousel .owl-dots {
    margin-top: 1rem;
    text-align: center;
  }

  .cm-carousel .owl-dots .owl-dot {
    display: inline-block;
    background-color: #D6D6D6;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    margin-right: 1rem;
  }

  .cm-carousel .owl-dots .owl-dot.active {
    background-color: #00adda;
  }

  .home .cm-carousel .owl-dots .owl-dot.active,
  .bloc-home .cm-carousel .owl-dots .owl-dot.active {
    background-color: #00adda;
  }

  .films .cm-carousel .owl-dots .owl-dot.active,
  .bloc-films .cm-carousel .owl-dots .owl-dot.active {
    background-color: #00adda;
  }

  .cafe-restau .cm-carousel .owl-dots .owl-dot.active,
  .bloc-cafe-restau .cm-carousel .owl-dots .owl-dot.active {
    background-color: #e22129;
  }

  .evenements .cm-carousel .owl-dots .owl-dot.active,
  .bloc-evenements .cm-carousel .owl-dots .owl-dot.active {
    background-color: #ff9d00;
  }

  .prestations .cm-carousel .owl-dots .owl-dot.active,
  .bloc-prestations .cm-carousel .owl-dots .owl-dot.active {
    background-color: #ffd300;
  }

  .infos .cm-carousel .owl-dots .owl-dot.active,
  .bloc-infos .cm-carousel .owl-dots .owl-dot.active {
    background-color: #67c7c5;
  }

  .jeune-public .cm-carousel .owl-dots .owl-dot.active,
  .bloc-jeune-public .cm-carousel .owl-dots .owl-dot.active {
    background-color: #FFD200;
  }

  .newsletter .cm-carousel .owl-dots .owl-dot.active,
  .bloc-newsletter .cm-carousel .owl-dots .owl-dot.active {
    background-color: #C43778;
  }

  .navbar .navbar-brand {
    padding: 1rem 1.5rem;
  }

  .navbar .navbar-header {
    display: inline-block;
    vertical-align: middle;
    width: 21rem;
  }

  .navbar .navbar-header .navbar-toggle {
    display: none;
  }

  .navbar .navbar-container .navbar-nav {
    display: none;
  }

  .navbar .navbar-container .navbar-nav > li > a {
    text-transform: uppercase;
    color: #000;
    font-size: 1.3rem;
    padding: 1rem 1rem;
    letter-spacing: -0.09rem;
  }

  .navbar .navbar-container .navbar-nav > li > a.dropdown-toggle .caret {
    margin-left: 0.5rem;
  }

  .navbar .navbar-container .navbar-nav > li > a.dropdown-toggle .caret:before {
    color: #000;
  }

  .navbar .navbar-container .navbar-nav > li.dropdown .dropdown-menu {
    background-color: #fff;
  }

  .navbar .navbar-tools-container {
    display: block;
    position: relative;
    float: right;
  }

  .navbar .navbar-tools-container .navbar-tools li.navbar-tools-toggle {
    display: inline-block;
  }

  .navbar .navbar-tools-container .navbar-tools li.navbar-tools-toggle .tools-toggle {
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    padding: 0.5rem;
    margin: 0 1rem 0 0;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #000;
  }

  .menu-open .navbar .navbar-header .navbar-brand {
    display: inherit;
  }

  .menu-open .navbar .navbar-header .navbar-toggle {
    display: block;
    position: absolute;
    right: -1.5rem;
  }

  .menu-open .navbar .navbar-header .navbar-toggle .icon-bar {
    background-color: #0A70B2;
  }

  .menu-open .navbar .navbar-container {
    display: inline-block;
    vertical-align: middle;
  }

  .menu-open .navbar .navbar-container .navbar-nav {
    display: block;
  }

  .menu-open .navbar .navbar-tools-container {
    display: none;
  }

  .bloc-films-seances .header .choix-seance .all-films,
  .bloc-films-seances .header .choix-seance .voir-seance {
    font-size: 1rem;
    padding: 0.3rem;
    margin-left: 0.8rem;
  }

  .bloc-films-seances .header .choix-seance .voir-seance {
    min-width: 6rem;
    position: relative;
  }

  .bloc-films-seances .header .choix-seance .voir-seance.on {
    background-color: #00adda;
    color: #fff;
    padding-right: 0.5rem;
  }

  .bloc-films-seances .seances .liste-seances > li {
    font-size: 0;
  }

  .bloc-films-seances .seances .liste-seances > li .col-seances-infos,
  .bloc-films-seances .seances .liste-seances > li .col-seances-horaires {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    height: 4rem;
    width: 30%;
  }

  .bloc-films-seances .seances .liste-seances > li .col-seances-horaires {
    width: 70%;
  }

  .bloc-films-seances .seances .liste-seances > li .col-seances-horaires .col-horaire-seance {
    width: calc(97% / 5);
    font-size: 14px;
  }

  .bloc-films-seances #carousel-films.carousel-1 .owl-dots .owl-dot {
    width: calc(100% / 1);
  }

  .bloc-films-seances #carousel-films.carousel-2 .owl-dots .owl-dot {
    width: calc(100% / 1);
  }

  .bloc-films-seances #carousel-films.carousel-3 .owl-dots .owl-dot {
    width: calc(100% / 1);
  }

  .bloc-films-seances #carousel-films.carousel-4 .owl-dots .owl-dot {
    width: calc(100% / 1);
  }

  .bloc-films-seances #carousel-films.carousel-5 .owl-dots .owl-dot {
    width: calc(100% / 1);
  }

  .bloc-films-seances #carousel-films.carousel-6 .owl-dots .owl-dot {
    width: calc(100% / 2);
  }

  .bloc-films-seances #carousel-films.carousel-7 .owl-dots .owl-dot {
    width: calc(100% / 2);
  }

  .bloc-films-seances #carousel-films.carousel-8 .owl-dots .owl-dot {
    width: calc(100% / 2);
  }

  .bloc-films-seances #carousel-films.carousel-9 .owl-dots .owl-dot {
    width: calc(100% / 2);
  }

  .bloc-films-seances #carousel-films.carousel-10 .owl-dots .owl-dot {
    width: calc(100% / 2);
  }

  .bloc-films-seances #carousel-films.carousel-11 .owl-dots .owl-dot {
    width: calc(100% / 3);
  }

  .bloc-films-seances #carousel-films.carousel-12 .owl-dots .owl-dot {
    width: calc(100% / 3);
  }

  .bloc-films-seances #carousel-films.carousel-13 .owl-dots .owl-dot {
    width: calc(100% / 3);
  }

  .bloc-films-seances #carousel-films.carousel-14 .owl-dots .owl-dot {
    width: calc(100% / 3);
  }

  .bloc-films-seances #carousel-films.carousel-15 .owl-dots .owl-dot {
    width: calc(100% / 3);
  }

  .bloc-films-seances #carousel-films.carousel-16 .owl-dots .owl-dot {
    width: calc(100% / 4);
  }

  .bloc-films-seances #carousel-films.carousel-17 .owl-dots .owl-dot {
    width: calc(100% / 4);
  }

  .bloc-films-seances #carousel-films.carousel-18 .owl-dots .owl-dot {
    width: calc(100% / 4);
  }

  .bloc-films-seances #carousel-films.carousel-19 .owl-dots .owl-dot {
    width: calc(100% / 4);
  }

  .bloc-films-seances #carousel-films.carousel-20 .owl-dots .owl-dot {
    width: calc(100% / 4);
  }

  .bloc-films-seances #carousel-films.carousel-21 .owl-dots .owl-dot {
    width: calc(100% / 5);
  }

  .bloc-films-seances #carousel-films.carousel-22 .owl-dots .owl-dot {
    width: calc(100% / 5);
  }

  .bloc-films-seances #carousel-films.carousel-23 .owl-dots .owl-dot {
    width: calc(100% / 5);
  }

  .bloc-films-seances #carousel-films.carousel-24 .owl-dots .owl-dot {
    width: calc(100% / 5);
  }

  .bloc-films-seances #carousel-films.carousel-25 .owl-dots .owl-dot {
    width: calc(100% / 5);
  }

  .bloc-films-seances #carousel-films.carousel-26 .owl-dots .owl-dot {
    width: calc(100% / 6);
  }

  .bloc-films-seances #carousel-films.carousel-27 .owl-dots .owl-dot {
    width: calc(100% / 6);
  }

  .bloc-films-seances #carousel-films.carousel-28 .owl-dots .owl-dot {
    width: calc(100% / 6);
  }

  .bloc-films-seances #carousel-films.carousel-29 .owl-dots .owl-dot {
    width: calc(100% / 6);
  }

  .bloc-films-seances #carousel-films.carousel-30 .owl-dots .owl-dot {
    width: calc(100% / 6);
  }

  .bloc-films-seances #carousel-films.carousel-31 .owl-dots .owl-dot {
    width: calc(100% / 7);
  }

  .bloc-films-seances #carousel-films.carousel-32 .owl-dots .owl-dot {
    width: calc(100% / 7);
  }

  .bloc-films-seances #carousel-films.carousel-33 .owl-dots .owl-dot {
    width: calc(100% / 7);
  }

  .bloc-films-seances #carousel-films.carousel-34 .owl-dots .owl-dot {
    width: calc(100% / 7);
  }

  .bloc-films-seances #carousel-films.carousel-35 .owl-dots .owl-dot {
    width: calc(100% / 7);
  }

  .bloc-films-seances #carousel-films.carousel-36 .owl-dots .owl-dot {
    width: calc(100% / 8);
  }

  .bloc-films-seances #carousel-films.carousel-37 .owl-dots .owl-dot {
    width: calc(100% / 8);
  }

  .bloc-films-seances #carousel-films.carousel-38 .owl-dots .owl-dot {
    width: calc(100% / 8);
  }

  .bloc-films-seances #carousel-films.carousel-39 .owl-dots .owl-dot {
    width: calc(100% / 8);
  }

  .bloc-films-seances #carousel-films.carousel-40 .owl-dots .owl-dot {
    width: calc(100% / 8);
  }

  .bloc-films-seances #carousel-films.carousel-41 .owl-dots .owl-dot {
    width: calc(100% / 9);
  }

  .bloc-films-seances #carousel-films.carousel-42 .owl-dots .owl-dot {
    width: calc(100% / 9);
  }

  .bloc-films-seances #carousel-films.carousel-43 .owl-dots .owl-dot {
    width: calc(100% / 9);
  }

  .bloc-films-seances #carousel-films.carousel-44 .owl-dots .owl-dot {
    width: calc(100% / 9);
  }

  .bloc-films-seances #carousel-films.carousel-45 .owl-dots .owl-dot {
    width: calc(100% / 9);
  }

  .bloc-films-seances #carousel-films.carousel-46 .owl-dots .owl-dot {
    width: calc(100% / 10);
  }

  .bloc-films-seances #carousel-films.carousel-47 .owl-dots .owl-dot {
    width: calc(100% / 10);
  }

  .bloc-films-seances #carousel-films.carousel-48 .owl-dots .owl-dot {
    width: calc(100% / 10);
  }

  .bloc-films-seances #carousel-films.carousel-49 .owl-dots .owl-dot {
    width: calc(100% / 10);
  }

  .bloc-films-seances #carousel-films.carousel-50 .owl-dots .owl-dot {
    width: calc(100% / 10);
  }

  .bloc-films-seances .footer {
    text-align: right;
  }

  .bloc-films-seances .footer .pgm-mail,
  .bloc-films-seances .footer .pgm-download {
    font-size: 0.8rem;
    width: auto;
  }

  #bandeau-header {
    background-color: #000;
  }

  #bandeau-header .bandeau-container {
    position: relative;
  }

  #bandeau-header .bandeau-container .img-bandeau {
    max-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
  }

  #bandeau-header .bandeau-container .slogan {
    position: absolute;
    top: 3.5rem;
    right: 15px;
    padding: 0 1.5rem 0 0;
    font-size: 3rem;
    text-align: right;
    line-height: normal;
    border-right: 0.5rem solid;
    color: #fff;
  }

  #bandeau-header .bandeau-container .slogan span {
    display: block;
  }

  #bandeau-header.films .bandeau-container .slogan,
  #bandeau-header.home .bandeau-container .slogan {
    border-color: #00adda;
  }

  #bandeau-header.films .bandeau-container .slogan span,
  #bandeau-header.home .bandeau-container .slogan span {
    color: #00adda;
  }

  #bandeau-header.films .bandeau-container .slogan {
    border-color: #00adda;
  }

  #bandeau-header.films .bandeau-container .slogan span {
    color: #00adda;
  }

  #bandeau-header.cafe-resto .bandeau-container .slogan {
    border-color: #e22129;
  }

  #bandeau-header.cafe-resto .bandeau-container .slogan span {
    color: #e22129;
  }

  #bandeau-header.evenements .bandeau-container .slogan {
    border-color: #ff9d00;
  }

  #bandeau-header.evenements .bandeau-container .slogan span {
    color: #ff9d00;
  }

  #bandeau-header.infos-pratiques .bandeau-container .slogan {
    border-color: #67c7c5;
  }

  #bandeau-header.infos-pratiques .bandeau-container .slogan span {
    color: #67c7c5;
  }

  #bandeau-header.jeune-public .bandeau-container .slogan {
    border-color: #FFD200;
  }

  #bandeau-header.jeune-public .bandeau-container .slogan span {
    color: #FFD200;
  }

  #bandeau-header.prestations .bandeau-container .slogan {
    border-color: #ffd300;
  }

  #bandeau-header.prestations .bandeau-container .slogan span {
    color: #ffd300;
  }

  .item-evenement .item-infos {
    padding-bottom: 2rem;
  }

  .item-evenement .item-actions {
    margin-left: calc(33.33333% + 1rem);
    margin-right: 1.5rem;
    top: -2.5rem !important;
    position: relative;
  }

  .evenements .row-sous-menu a {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  .evenements .row-sous-menu a.current {
    background-color: #ff9d00;
    border-color: #ff9d00;
    color: #fff;
  }

  .bloc-evenements .evenements-focus .item-evenement {
    margin-bottom: 1rem;
  }

  .bloc-evenements .evenements-focus .item-evenement .item-image {
    margin-bottom: 0;
  }

  .bloc-evenements .evenements-focus .item-evenement .item-infos {
    padding-left: 3rem;
  }

  .bloc-evenements .evenements-focus .item-evenement .item-infos .item-type {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .bloc-evenements .evenements-focus .item-evenement .item-infos .item-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .bloc-evenements .evenements-focus .item-evenement .item-actions {
    margin-left: calc(33.33333% + 4rem);
    width: 33.33333%;
  }

  .bloc-evenements .evenements-focus .item-evenement .item-actions a {
    font-size: 1.1rem;
    line-height: 2rem;
  }

  .bloc-evenements .evenements-actions {
    margin-bottom: 2rem;
  }

  .bloc-evenements .evenements-actions a {
    font-size: 1.2rem;
    margin-right: 1rem;
  }

  .bloc-evenements .evenements-list .item-evenement:nth-child(odd) {
    padding-left: 0;
  }

  .bloc-evenements .evenements-list .item-evenement:nth-child(even) {
    padding-right: 0;
  }

  .bloc-evenements .evenements-list .item-evenement .item-infos {
    font-size: 1.1rem;
  }

  .bloc-evenements .evenements-list .item-evenement .item-infos .item-type {
    font-size: 1.4rem;
  }

  .bloc-evenements .evenements-list .item-evenement .item-infos .item-title {
    font-size: 1.3rem;
  }

  .bloc-evenements .evenements-list .item-evenement .item-actions a {
    font-size: 1.2rem;
  }

  .bloc-autopromo {
    padding: 3rem 0;
  }

  .bloc-autopromo a {
    margin-bottom: 0;
  }

  .bloc-autopromo a .slogan {
    padding: 1.5rem 2rem;
  }

  .bloc-autopromo a.achetez .slogan {
    font-size: 1.5rem;
    letter-spacing: -0.05rem;
  }

  .bloc-autopromo a.achetez .slogan span {
    font-size: 2rem;
  }

  .bloc-autopromo a.espace-pro .slogan {
    font-size: 1.6rem;
  }

  .bloc-autopromo a.espace-pro .slogan span {
    font-size: 1.2rem;
  }

  .bloc-newsletter .newsletter-form .form-inline {
    margin-top: 0;
  }

  .bloc-newsletter .newsletter-form .form-control {
    margin-right: 1.5rem;
  }

  .bloc-autres-films .header .btn-cm-default {
    margin-top: -3rem;
  }

  .liste-films {
    margin-bottom: 1.5rem;
  }

  .liste-films .item {
    width: calc(19.7% - 1.5rem);
    margin-right: 1.5rem;
  }

  .liste-films .item:nth-of-type(even) {
    margin-right: 1.5rem;
    margin-left: 0;
  }

  .liste-films .item:last-of-type {
    margin-right: 0;
  }

  .liste-films .item .affiche {
    margin: -0.5rem -0.5rem 1rem -0.5rem;
  }

  .liste-films .item .affiche img {
    width: 100%;
    max-width: 100%;
  }

  .liste-films .item .caption {
    height: 5rem;
  }

  .liste-films .item .caption .title {
    font-size: 1.45rem;
    margin: 0;
    max-height: 3rem;
    overflow: hidden;
  }

  .liste-films .item .caption .caracteristiques {
    margin-top: 0.5rem;
  }

  .liste-films .item .caption .caracteristiques .icon {
    font-size: 1.6rem;
    margin-right: 0.3rem;
  }

  .liste-films .item .btn-voir-seances {
    margin: 1rem -0.25rem 0;
    font-size: 1.4rem;
    height: 2.6rem;
    text-decoration: none;
  }

  .item-liste-films .item-infos {
    padding-bottom: 2rem;
  }

  .item-liste-films .item-actions {
    margin-left: calc(33.33333% + 1rem);
    margin-right: 1.5rem;
    top: -2.5rem !important;
    position: relative;
  }

  .bloc-fiche-film .visuel-film .classification-film {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .bloc-fiche-film .visuel-film .classification-film ul li {
    margin: 0.5rem 0;
    padding: 0.5rem 1.5rem;
    display: block;
    background-color: #fff;
  }

  .bloc-fiche-film .visuel-film .classification-film ul li span {
    font-family: "BarlowSemiCondensedSemiBold", Helvetica, Arial, sans-serif;
  }

  .bloc-fiche-film .visuel-film .classification-film ul li .icon {
    margin-right: 1rem;
  }

  .bloc-fiche-film .visuel-film h4 {
    text-transform: uppercase;
    font-size: 1.6rem;
  }

  .bloc-fiche-film .visuel-film .share-film {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .bloc-fiche-film .visuel-film .share-film ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .bloc-fiche-film .visuel-film .share-film ul li {
    margin: 0 1rem 0 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }

  .bloc-fiche-film .visuel-film .share-film ul li .icon {
    font-size: 2.5rem;
  }

  .bloc-fiche-film .visuel-film .share-film ul li .value {
    display: none;
  }

  .bloc-fiche-film .visuel-film .plus-cinema h4 .icon {
    vertical-align: middle;
  }

  .bloc-fiche-film .visuel-film .plus-cinema h4 .icon .value {
    display: none;
  }

  .bloc-fiche-film .visuel-film .plus-cinema .item-plus-cinema {
    width: 100%;
    /* background: url("../images/bgd_plusdecinema.png") 0 0 repeat-x; */
    background-size: contain;
    margin-bottom: 1.5rem;
    height: 5rem;
    color: #fff;
  }

  .bloc-fiche-film .visuel-film .plus-cinema .item-plus-cinema a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem 5rem 1rem 1.5rem;
    color: #fff;
  }

  .bloc-fiche-film .visuel-film .plus-cinema .item-plus-cinema a:after {
    font-family: "icomoon";
    content: "î¤Œ";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .bloc-fiche-film .visuel-film .plus-cinema .autopromo-groupe {
    /* background: url("../images/salle_de_cinema.jpg") 0 0 no-repeat; */
    background-size: cover;
    width: 100%;
    min-height: 11rem;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
  }

  .bloc-fiche-film .visuel-film .plus-cinema .autopromo-groupe strong {
    display: block;
    margin-bottom: 1rem;
  }

  .bloc-fiche-film .visuel-film .plus-cinema .autopromo-groupe a {
    color: #fff;
    text-decoration: underline;
  }

  .bloc-fiche-film .infos-film .titre-film {
    font-size: 2.2rem;
  }

  .bloc-fiche-film .infos-film .row-seances .liste-seances li {
    font-size: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .bloc-fiche-film .infos-film .row-seances .liste-seances li > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    height: 2.5rem;
  }

  .bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-infos {
    width: 15%;
  }

  .bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-horaires {
    width: 85%;
  }

  .bloc-fiche-film .infos-film .row-seances .liste-seances li .col-seances-horaires .col-horaire-seance {
    font-size: 1.4rem;
    padding-right: 0;
  }

  .bloc-cine-cafe-resto-presentation .row-sous-menu a {
    margin-right: 1rem;
  }

  .bloc-cine-cafe-resto-presentation .row-sous-menu a.current {
    background-color: #e22129;
    border-color: #e22129;
    color: #fff;
  }

  .bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto {
    margin-bottom: 0;
  }

  .bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto > div[class^=col-] {
    padding: 0 0.75rem;
  }

  .bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto > div[class^=col-]:first-of-type {
    padding-left: 0;
    padding-right: 1.5rem;
  }

  .bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto > div[class^=col-]:last-of-type {
    padding-left: 1.5rem;
    padding-right: 0;
  }

  .bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item {
    margin-bottom: 0;
  }

  .bloc-cine-cafe-resto-presentation .presentation-cine-cafe-resto .item .info {
    min-height: 250px;
  }

  .bloc-cine-cafe-resto-espace {
    font-size: 0;
  }

  .bloc-cine-cafe-resto-espace .col-espace,
  .bloc-cine-cafe-resto-espace .col-avis {
    width: 66%;
    font-size: 14px;
    vertical-align: top;
    display: inline-block;
  }

  .bloc-cine-cafe-resto-espace .col-avis {
    width: 33%;
    float: left;
  }

  .bloc-cine-cafe-resto-espace .col-avis .header-avis {
    padding: 1.1rem 2rem;
  }

  .bloc-cine-cafe-resto-espace .col-avis .btn-cm-avis {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }

  .bloc-films-seances .header .choix-seance {
    margin: 1.2rem auto;
  }

  .bloc-films-seances .header .choix-seance .all-films,
  .bloc-films-seances .header .choix-seance .voir-seance {
    font-size: 1.6rem;
    padding: 0.6rem 1.2rem;
    margin-left: 0.8rem;
  }

  .bloc-films-seances .header .choix-seance .voir-seance {
    width: auto;
    border: 1px solid #0A70B2;
  }

  .bloc-films-seances .header .choix-seance .voir-seance.onclose {
    padding-right: 3rem;
  }

  .bloc-films-seances .header .choix-seance .voir-seance.onclose:after {
    font-family: "icomoon";
    content: "î¤";
    font-weight: normal;
    display: inline-block;
    margin-right: -2rem;
    margin-left: 1rem;
  }

  .bloc-films-seances #carousel-films .caption {
    height: 7rem;
  }

  .bloc-films-seances #carousel-films .caption .title {
    font-size: 1.7rem;
  }

  .bloc-films-seances #carousel-films .owl-cm-nav {
    margin: 0 0;
    text-align: center;
  }
}

.advertise_prog {
  border-radius: 50%;
  background-color: red;
  width: 25px;
  height: 25px;
  display: inline-block;
  font-size: 15px;
  text-align: center;
  color: white;
}

.fa-heart {
  color: red;
}

.infos {
  background: #0a70b2;
  padding: 5px;
  color: white;
  border-radius: 8px;
}

.all_movies {
  padding-left: 15px;
}

.all_movies a {
  font-size: 15px;
}

.liste-seances li {
  transition-duration: 0.4s;
}

/* .liste-seances li:hover {
    background-color: #0A70B2;

} */

.title_marg {
  margin-left: 10px;
}

.slick-prev:before,
.slick-next:before {
  color: red;
  opacity: 1;
}

.slick-next:before {
  content: "";
  background: url(/images/iconmonstr-arrow-25.svg?2baba32dd0f37a4c81035ec4ef6fec3f) 0 0 no-repeat !important;
  display: block;
  height: 64px;
  width: 67px;
  margin-top: -125px;
  margin-left: 8px;
}

.slick-prev:before {
  content: "";
  background: url(/images/iconmonstr-arrow-64.svg?89879f66475909b0035d1385d0bcd6e2) 0 0 no-repeat !important;
  display: block;
  height: 64px;
  width: 67px;
  margin-top: -125px;
}

.link_movies {
  margin-top: -29px;
}

/***** material button *****/

.btn-float {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border: none;
  font-size: 18px;
  color: #fff;
  text-align: center;
  position: relative;
  transition: 0.3s;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.11);
}

.btn-float:hover {
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.13);
}

.btn-float:active,
.btn-float:focus {
  outline: none;
}

.btn-float + .btn-float {
  margin-left: 5px;
}

.yellow {
  background: #0a70b2;
}

.blue {
  background: #40c4ff;
}

.green {
  background: #00e676;
}

.purple {
  background: #8e24aa;
}

.pink {
  background: #0a70b2;
  position: fixed;
  z-index: 999999 !important;
}

.icon-bars {
  /*background: #fff;
  */
  /*height: 1px;
  */
  width: 22px;
  margin: auto;
  display: block;
  position: relative;
  -moz-transition: 1s 0.01s;
  -o-transition: 1s 0.01s;
  -webkit-transition: 1s 0.01s;
  -webkit-transition-delay: 0.6s 0.3s;
  transition: 1s 0.01s;
  -ms-transition: 1s 0.01s;
}

/* .icon-bars:after {
    content: '';
    position: absolute;
    height: 22px;
    width: 1px;
    background: #fff;
    top: -10px;
} */

.float-btn-group {
  position: relative;
  float: right;
  transition: 0.3s;
}

.float-btn-group .btn-triger {
  z-index: 15;
  float: left;
}

.float-btn-group .btn-list {
  position: absolute;
  right: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.float-btn-group .btn-list li {
  display: inline-block;
}

.float-btn-group.open .icon-bars {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.model-0 .float-btn-group {
  width: 65px;
  padding-left: 15px;
  min-height: 65px;
  overflow: hidden;
  top: -68px;
}

.model-0 .float-btn-group .btn-list {
  opacity: 0;
  width: 418px;
  position: fixed;
}

.model-0 .float-btn-group.open {
  /* width: 285px; */
  width: 122px;
}

.model-0 .float-btn-group.open .btn-list {
  opacity: 1;
  z-index: 9999;
}

.model-1 {
  background: #cfd8dc;
}

.model-1 .float-btn-group {
  margin: auto;
  float: none;
  width: 50px;
}

.model-1 .float-btn-group .icon-bars {
  transition: 0.3s;
}

.model-1 .float-btn-group .btn-list {
  background: rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  overflow: hidden;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: 0.3s 0.3s;
  -o-transition: 0.3s 0.3s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: 0.3s 0.3s;
  border-radius: 50%;
}

.model-1 .float-btn-group .btn-list .btn-float {
  position: absolute;
  background: none;
  box-shadow: none;
  transform: scale(0, 0);
  margin: auto;
}

.model-1 .float-btn-group .btn-list .btn-float:nth-child(1) {
  left: 0;
  right: 0;
  top: 10px;
}

.model-1 .float-btn-group .btn-list .btn-float:nth-child(2) {
  left: 10px;
  top: 0;
  bottom: 0;
}

.model-1 .float-btn-group .btn-list .btn-float:nth-child(3) {
  left: 0;
  right: 0;
  bottom: 10px;
}

.model-1 .float-btn-group .btn-list .btn-float:nth-child(4) {
  right: 10px;
  top: 0;
  bottom: 0;
}

.model-1 .float-btn-group.open .btn-list {
  width: 200px;
  height: 200px;
  left: -75px;
  top: -75px;
  opacity: 1;
}

.model-1 .float-btn-group.open .btn-list .btn-float {
  transform: scale(1.1, 1.1);
  -moz-transition: 0.3s 0.6s;
  -o-transition: 0.3s 0.6s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.6s;
  transition: 0.3s 0.6s;
}

.model-1 .float-btn-group.open .btn-list .btn-float:hover {
  transition: 0.3s;
  text-shadow: 1px 4px 1px #666;
}

.model-2 {
  background: #b0bec5;
}

.model-2 .float-btn-group {
  float: left;
}

.model-2 .float-btn-group .icon-bars {
  transition: 0.3s;
}

.model-2 .float-btn-group .btn-list .btn-float {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transform: scale(0, 0);
}

.model-2 .float-btn-group .btn-list .btn-float:nth-child(1) {
  -moz-transition: 0.2s 0.3s;
  -o-transition: 0.2s 0.3s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.3s;
  transition: 0.2s 0.3s;
}

.model-2 .float-btn-group .btn-list .btn-float:nth-child(2) {
  -moz-transition: 0.2s 0.5s;
  -o-transition: 0.2s 0.5s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.5s;
  transition: 0.2s 0.5s;
}

.model-2 .float-btn-group .btn-list .btn-float:nth-child(3) {
  -moz-transition: 0.2s 0.7s;
  -o-transition: 0.2s 0.7s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.7s;
  transition: 0.2s 0.7s;
}

.model-2 .float-btn-group .btn-list .btn-float:nth-child(4) {
  -moz-transition: 0.2s 0.92s;
  -o-transition: 0.2s 0.92s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.92s;
  transition: 0.2s 0.92s;
}

.model-2 .float-btn-group.open .btn-list .btn-float {
  opacity: 1;
  transform: scale(0.9, 0.9);
}

.model-2 .float-btn-group.open .btn-list .btn-float:nth-child(1) {
  top: -220px;
  -moz-transition: 0.2s 0.9s;
  -o-transition: 0.2s 0.9s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.9s;
  transition: 0.2s 0.9s;
}

.model-2 .float-btn-group.open .btn-list .btn-float:nth-child(2) {
  top: -165px;
  -moz-transition: 0.2s 0.7s;
  -o-transition: 0.2s 0.7s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.7s;
  transition: 0.2s 0.7s;
}

.model-2 .float-btn-group.open .btn-list .btn-float:nth-child(3) {
  top: -110px;
  -moz-transition: 0.2s 0.5s;
  -o-transition: 0.2s 0.5s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.5s;
  transition: 0.2s 0.5s;
}

.model-2 .float-btn-group.open .btn-list .btn-float:nth-child(4) {
  top: -55px;
  -moz-transition: 0.2s 0.3s;
  -o-transition: 0.2s 0.3s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.3s;
  transition: 0.2s 0.3s;
}

.model-3 {
  background: #90a4ae;
}

.model-3 .float-btn-group {
  float: none;
  width: 50px;
  margin: auto;
}

.model-3 .float-btn-group .icon-bars {
  transition: 0.3s;
}

.model-3 .float-btn-group .btn-list {
  background: #fff;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  left: 0;
  overflow: hidden;
  opacity: 0;
}

.model-3 .float-btn-group .btn-list .btn-float {
  transition: 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 0);
}

.model-3 .float-btn-group .btn-list .btn-float:nth-child(2) {
  left: 50px;
}

.model-3 .float-btn-group .btn-list .btn-float:nth-child(3) {
  left: 160px;
}

.model-3 .float-btn-group .btn-list .btn-float:nth-child(4) {
  left: 215px;
}

.model-3 .float-btn-group.open .btn-list {
  width: 270px;
  left: -110px;
  opacity: 1;
}

.model-3 .float-btn-group.open .btn-list .btn-float {
  -moz-transition: 0.2s 0.3s;
  -o-transition: 0.2s 0.3s;
  -webkit-transition: 0.2s;
  -webkit-transition-delay: 0.3s;
  transition: 0.2s 0.3s;
  transform: scale(0.9, 0.9);
}

.model-4 {
  background: #78909c;
}

.model-4 .float-btn-group .icon-bars {
  transition: 0.3s;
}

.model-4 .float-btn-group .btn-list .btn-float {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
}

.model-4 .float-btn-group .btn-list .btn-float:nth-child(1) {
  -moz-transition: 0.3s 1.2s;
  -o-transition: 0.3s 1.2s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 1.2s;
  transition: 0.3s 1.2s;
}

.model-4 .float-btn-group .btn-list .btn-float:nth-child(2) {
  -moz-transition: 0.3s 0.9s;
  -o-transition: 0.3s 0.9s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.9s;
  transition: 0.3s 0.9s;
}

.model-4 .float-btn-group .btn-list .btn-float:nth-child(3) {
  -moz-transition: 0.3s 0.6s;
  -o-transition: 0.3s 0.6s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.6s;
  transition: 0.3s 0.6s;
}

.model-4 .float-btn-group .btn-list .btn-float:nth-child(4) {
  -moz-transition: 0.3s 0.3s;
  -o-transition: 0.3s 0.3s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: 0.3s 0.3s;
}

.model-4 .float-btn-group.open .btn-list .btn-float {
  opacity: 1;
}

.model-4 .float-btn-group.open .btn-list .btn-float:nth-child(1) {
  right: 230px;
  -moz-transition: 0.3s 0.3s;
  -o-transition: 0.3s 0.3s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: 0.3s 0.3s;
}

.model-4 .float-btn-group.open .btn-list .btn-float:nth-child(2) {
  right: 165px;
  -moz-transition: 0.3s 0.6s;
  -o-transition: 0.3s 0.6s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.6s;
  transition: 0.3s 0.6s;
}

.model-4 .float-btn-group.open .btn-list .btn-float:nth-child(3) {
  right: 110px;
  -moz-transition: 0.3s 0.9s;
  -o-transition: 0.3s 0.9s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.9s;
  transition: 0.3s 0.9s;
}

.model-4 .float-btn-group.open .btn-list .btn-float:nth-child(4) {
  right: 55px;
  -moz-transition: 0.3s 1.2s;
  -o-transition: 0.3s 1.2s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 1.2s;
  transition: 0.3s 1.2s;
}

.model-5 {
  background: #607d8b;
}

.model-5 .float-btn-group {
  float: none;
  width: 50px;
  margin: auto;
}

.model-5 .float-btn-group .icon-bars {
  transition: 0.4s;
}

.model-5 .float-btn-group .btn-list {
  border-radius: 50px;
  transform: rotate(360deg);
  -moz-transition: -moz-transform 0.4s, width 0.3s 0.5s, opacity 0.3s 0.1s, left 0.3s 0.5s;
  -o-transition: -o-transform 0.4s, width 0.3s 0.5s, opacity 0.3s 0.1s, left 0.3s 0.5s;
  -webkit-transition: -webkit-transform 0.4s, width 0.3s, opacity 0.3s, left 0.3s;
  -webkit-transition-delay: 0s, 0.5s, 0.1s, 0.5s;
  transition: transform 0.4s, width 0.3s 0.5s, opacity 0.3s 0.1s, left 0.3s 0.5s;
  width: 50px;
  height: 50px;
  left: 0;
  overflow: hidden;
  opacity: 0;
}

.model-5 .float-btn-group .btn-list .btn-float {
  transition: 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.5, 1.5);
}

.model-5 .float-btn-group .btn-list .btn-float:nth-child(2) {
  left: 50px;
}

.model-5 .float-btn-group .btn-list .btn-float:nth-child(3) {
  left: 160px;
}

.model-5 .float-btn-group .btn-list .btn-float:nth-child(4) {
  left: 215px;
}

.model-5 .float-btn-group.open .icon-bars {
  transform: rotate(-225deg);
}

.model-5 .float-btn-group.open .btn-list {
  -moz-transition: -moz-transform 0.4s 0.1s, opacity 0.3s 0.1s;
  -o-transition: -o-transform 0.4s 0.1s, opacity 0.3s 0.1s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.3s;
  -webkit-transition-delay: 0.1s, 0.1s;
  transition: transform 0.4s 0.1s, opacity 0.3s 0.1s;
  transform: rotate(0);
  width: 270px;
  left: -110px;
  opacity: 1;
}

.model-6 {
  background: #546e7a;
}

.model-6 .float-btn-group {
  float: none;
  margin: auto;
  width: 50px;
}

.model-6 .float-btn-group .icon-bars {
  -moz-transition: 0.3s 1.3s;
  -o-transition: 0.3s 1.3s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 1.3s;
  transition: 0.3s 1.3s;
}

.model-6 .float-btn-group .btn-list {
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
}

.model-6 .float-btn-group .btn-list .btn-float {
  position: absolute;
  transform: scale(0, 0);
  left: 0;
  top: 0;
  margin: auto;
}

.model-6 .float-btn-group .btn-list .btn-float:nth-child(1) {
  -moz-transition: 0.3s 0.3s;
  -o-transition: 0.3s 0.3s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: 0.3s 0.3s;
}

.model-6 .float-btn-group .btn-list .btn-float:nth-child(2) {
  -moz-transition: 0.3s 0.6s;
  -o-transition: 0.3s 0.6s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.6s;
  transition: 0.3s 0.6s;
}

.model-6 .float-btn-group .btn-list .btn-float:nth-child(3) {
  -moz-transition: 0.3s 0.9s;
  -o-transition: 0.3s 0.9s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 0.9s;
  transition: 0.3s 0.9s;
}

.model-6 .float-btn-group .btn-list .btn-float:nth-child(4) {
  -moz-transition: 0.3s 1.2s;
  -o-transition: 0.3s 1.2s;
  -webkit-transition: 0.3s;
  -webkit-transition-delay: 1.2s;
  transition: 0.3s 1.2s;
}

.model-6 .float-btn-group.open .icon-bars {
  transition: 0.3s;
}

.model-6 .float-btn-group.open .btn-list .btn-float {
  transform: scale(0.9, 0.9);
}

.model-6 .float-btn-group.open .btn-list .btn-float:nth-child(1) {
  left: -75px;
  top: 0px;
}

.model-6 .float-btn-group.open .btn-list .btn-float:nth-child(2) {
  left: -40px;
  top: -65px;
}

.model-6 .float-btn-group.open .btn-list .btn-float:nth-child(3) {
  left: 40px;
  top: -65px;
}

.model-6 .float-btn-group.open .btn-list .btn-float:nth-child(4) {
  left: 75px;
  top: 0px;
}

.model-6 .float-btn-group.open .btn-list .btn-float:hover {
  transition: 0.3s;
  text-shadow: 1px 4px 1px #666;
}

/*======
  ****  btn programme slider active ***
  =======*/

.btn_slide {
  top: -800px !important;
}

.pink_slide {
  margin-left: -386px !important;
}

/*======
  **** fin btn programme slider active ***
  =======*/

.col--remove {
  transition: 0.6s;
}

.col--remove:hover {
  transform: translateY(-12px);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transform: translateY(-12px);
  -moz-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  -o-transform: translateY(-12px);
  box-shadow: 3px 4px 16px 6px rgba(0, 0, 0, 0.17);
}

.link_read {
  text-align: center;
}

.slick-next:hover,
.slick-prev:hover {
  top: 54%;
  zoom: 1.2;
}

.logo:hover {
  transform: rotateY(180deg);
  transition: 0.3s;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

.page-heading {
  width: 487px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2) 1 0;
     border-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2) 1 0;
  padding-bottom: 5px;
}

.page-heading2 {
  width: 387px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2) 1 0;
     border-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2) 1 0;
  padding-bottom: 5px;
}

.page-heading3 {
  width: 287px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2) 1 0;
     border-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2) 1 0;
  padding-bottom: 5px;
}

.border_prog {
  --borderWidth: 3px;
  background: #ffffff;
  position: relative;
  border-radius: var(--borderWidth);
  box-shadow: 5px 5px 25px -4px;
  -webkit-border-radius: var(--borderWidth);
  -moz-border-radius: var(--borderWidth);
  -ms-border-radius: var(--borderWidth);
  -o-border-radius: var(--borderWidth);
  transition: 0.3s;
}

.border_prog:hover {
  box-shadow: none;
  transition: 0.3s;
}

.border_prog:after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #FFE500, #E2343E, #0A70B2);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  -webkit-animation: animatedgradient 3s ease alternate infinite;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.seances {
  padding-bottom: 8px;
}

.movie-best .movie-best__check {
  margin-bottom: 75px;
}

.section_top_title {
  margin-bottom: -91px;
}

.movie-items {
  padding-bottom: 0px !important;
}

.title_marg a:hover {
  color: #f8212c;
}

.prog_link p a {
  font-size: 15px;
  background-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2);
  -webkit-background-clip: text;
}

.icon_voix {
  /* background: #0A70B2; */
  background-image: linear-gradient(to right, #FFE500, #E2343E, #0A70B2 90%);
}

/*==========
** media queries
===========*/

@media (max-width: 480px) {
  .slick-dots {
    display: none !important;
  }

  .page-heading {
    margin-top: 30px !important;
  }

  .ticket-container {
    opacity: 1;
    box-shadow: 0px -3px 11px -1px rgba(0, 0, 0, 0.6);
  }

  .slider {
    padding-top: 0px;
  }
}

@media (max-width: 490px) {
  .page-heading {
    width: 263px;
  }
}

@media (max-width: 650px) {
  .pink {
    top: 207px;
  }

  .model-0 .float-btn-group .btn-list {
    top: 207px;
    width: 218px;
  }

  .model-0 .float-btn-group {
    width: 196px;
  }
}

@media (max-width: 768px) {
  .pink {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .consent_form p {
    margin-top: 10px;
    width: 96%;
  }
}

@media (max-width: 1200px) {
  .slick-arrow {
    display: none !important;
  }
}

@media (min-width: 652px) and (max-width: 767px) {
  .pink {
    top: 195px !important;
  }

  .model-0 .float-btn-group.open .btn-list {
    top: 195px !important;
    width: 194px;
  }

  .model-0 .float-btn-group {
    width: 175px;
  }

  .model-0 .float-btn-group.open {
    width: 252px;
  }
}

@media (min-width: 768px) {
  .model-0 .float-btn-group.open {
    width: 248px;
  }

  .model-0 .float-btn-group.open .btn-list {
    width: 94px;
  }

  .model-0 .float-btn-group {
    width: 101px;
  }
}

@media (min-width: 900px) {
  .model-0 .float-btn-group.open .btn-list {
    width: 160px;
  }
}

@media (min-width: 1300px) {
  .model-0 .float-btn-group.open .btn-list {
    width: 180px;
  }
}

@media (min-width: 1400px) {
  .model-0 .float-btn-group.open .btn-list {
    width: 250px;
  }
}

@media (min-width: 1500px) {
  .model-0 .float-btn-group.open .btn-list {
    width: 20%;
  }
}

@media (min-width: 1600px) {
  .model-0 .float-btn-group.open .btn-list {
    width: 25%;
  }
}

.float-btn-group {
  display: none !important;
}

.link_prog_ti {
  margin-left: 18px;
}

.post--preview--wide {
  padding: 12px !important;
}

/*==============================================================
======= bouton de validation formulaire de contact =============
==============================================================*/

input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #e2e5e7;
}

input:not([type=submit]) {
  border: 1px solid #e1e4e6;
  height: 40px;
  padding: 5px 15px;
  font-style: italic;
}

input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

.check_form_imput {
  display: none !important;
}

.input_form {
  display: flex;
  flex-direction: column;
  margin-bottom: -44px;
}

.label_input_form {
  margin-bottom: 10px;
}

input[type=checkbox]:checked + label:after {
  display: block;
}

input[type=checkbox] + label:after {
  content: url(/images/checked.png?b77898c0632d6f35aa872ad88732a43f);
  font-family: "fontello";
  position: absolute;
  left: 6px;
  top: 5px;
  display: none;
}

.consent_form {
  margin-left: 14px;
}

.bloc-films-seances {
  margin-top: 108px;
}

.choix-seance a {
  margin-bottom: 10px;
}

/*============ page mes information compte client ===================*/

.label_newsletter_info {
  margin-top: -28px;
  margin-left: 36px;
}

.champ_newsletter {
  display: flex;
  flex-direction: column-reverse;
}

.movie__movie-slogan {
  color: #E2343E;
  font-size: 15px;
}

/*============ page tarifs ===================*/

.price--gold .price__feather,
.price__btn p {
  color: #ffffff;
}

.title_new_movies {
  width: 400px;
}

/*============ page evenement show ===================*/

.swiper-slide img {
  max-width: 100%;
  max-height: 366px !important;
  height: 100%;
}

.paginat_event {
  margin-bottom: 50px;
}

.category_all {
  margin-bottom: 25px !important;
}

.title_name {
  margin-top: 223px !important;
}

.testionial_all {
  padding: 10px;
}

/*================== modif accueil =======================*/

.title_event {
  width: 322px;
}

.btn_type {
  cursor: unset !important;
  background-color: #fff;
  border: solid 1px #f42a36;
  color: red;
}

.btn--danger:hover {
  background-color: #fff;
  border: solid 1px #f42a36;
  color: red;
}

.section_type {
  margin-top: 15px;
}

.poster_top {
  margin-top: -29px;
}

.avertissement {
  color: red;
}

/*
**** template de style Warp Code
**** style css sur-meusure
*/

.champ {
  height: 44px !important;
}

.ht-header {
  background: #1D1D1B;
}

.select-area,
.select-area .select {
  width: 100%;
}

.select-area .select {
  display: flex;
  justify-content: space-around;
}

.select-area .datepicker {
  top: 0 !important;
}

.datepicker .datepicker__input {
  border-bottom: 1px solid #3B8DC1;
}

.datepicker:before {
  content: "";
  color: #E2343E;
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  top: 3px;
  right: 4px;
  z-index: -1;
  transition: 0.3s;
}

.datepicker .datepicker__input {
  width: 114px;
}

.select .sbSelector:after {
  content: "";
  /* background-image: url('../images/components/wave-danger.svg'); */
  background-size: 40px 4px;
  background-repeat: repeat-x;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: 2px;
  border-bottom: 1px solid #3B8DC1;
}

.panel-body p {
  text-align: left;
}

.gallery-item .gallery-item__descript:hover .gallery-item__name {
  color: #E2343E !important;
}

.price .price-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.tri_action {
  color: #000;
  font-size: 15px;
}

.price {
  /* padding-right: 40px; */
  padding-bottom: 20px;
  text-align: center;
  margin-top: 0 !important;
  /* width: 30%; */
}

.product_title {
  margin-top: 0px;
}

/* .tab-content{
    background-color: #DBDEE1;
    box-shadow: 11px 12px 19px -18px;

}

.movie__images img{
    box-shadow: 10px 10px 21px -9px;

} */

/* .container{
    min-height: 500px;
} */

.movie__option {
  font-size: 15px;
}

.image_product_card {
  width: 150px;
}

.flex_card {
  display: flex;
}

.form_validate_product {
  width: 100%;
}

.detail_card {
  display: flex;
  justify-content: space-around;
}

.input_class {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.title_address_livraison {
  margin-top: 147px;
  margin-bottom: 75px;
}

.create_adddress {
  padding: 54px;
  background: #E9ECEF;
  margin-bottom: 25px;
}

.separat {
  border: 1px solid #3B8DC1;
}

.collection-item,
.info_perso {
  padding: 25px;
  background: #e9edf1;
  margin-bottom: 25px;
}

.title_commande {
  margin-top: 125px;
}

.card_condition {
  font-size: 25px;
}

.add_card_index,
.link_show {
  text-align: center;
}

.card_address-confirm {
  display: flex;
  border: 1px solid #adaaaa;
  padding: 16px;
}

.collection-item h5 {
  margin-bottom: 50px;
}

.collection-item input {
  margin-right: 25px;
}

.list-unstyled {
  margin-bottom: 20px;
  min-height: 140px;
}

.btn_address_gestion {
  margin-top: 52px;
  margin-bottom: 52px;
  background: #0A70B2;
  color: #fff;
}

.option_address {
  height: 418px;
}

.detail_product_card {
  padding: 25px;
  display: flex;
}

.flex_product_confirme,
.detail_card_confirme {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.detail_card1 {
  margin-bottom: 50px;
}

.pro-thumbnail_card {
  margin-left: 5%;
}

.pro-title_card {
  margin-left: 4%;
}

.pro-price_card {
  margin-left: 0%;
}

.pro-quantity_card {
  margin-left: -1%;
}

.pro-remove_card {
  margin-right: 2%;
}

.separat_card_confirme {
  border: 1px solid #dbdee0;
}

.tva_card {
  padding-right: 2%;
}

.total_ttc_card {
  border: 2px solid #c7cacc;
}

.condition_legal {
  padding: 2%;
}

.confirmation_header {
  margin-top: 125px;
}

.confirme_message {
  background: #0A70B2;
  padding: 10px;
}

.confirme_message h3,
.confirme_message p {
  color: #fff;
  text-align: center;
}

.moyen_paiement {
  margin-top: 9px;
  padding: 25px;
  border: 2px solid #c7cacc;
}

.confirmation_address {
  padding: 25px;
}

.stripe_lien {
  font-size: 15px;
  font-weight: bold;
}

.StripeElement {
  height: 68px !important;
  padding: 23px 25px !important;
  width: 72% !important;
}

.button_confirm_payement {
  margin-top: 25px !important;
}

.card-content {
  margin-top: 25px;
}

.button1 {
  background-color: #0A70B2;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.my_compte:hover {
  color: #0A70B2;
}

.dashboard_mycompte {
  display: flex;
}

.nav_mycompte {
  width: 26%;
}

.text_mycompte {
  margin-top: 3px;
}

.marg_mycompte {
  margin-bottom: 15px;
}

.title_mycompte {
  margin-top: 60px;
  margin-bottom: 60px;
  font-weight: bold;
  font-size: 32px;
}

.update_infp_perso label {
  margin-bottom: 15px;
}

.champ_newsletter {
  margin-top: 35px;
  margin-bottom: 15px;
}

.btn_update_info {
  width: 28% !important;
}

.title_address {
  margin-top: 190px;
}

.type_address {
  margin-top: -30px !important;
}

.margin_info {
  margin-right: 5px;
}

.btn_info_address {
  margin-bottom: 90px;
}

.card_address,
.detail_product_command {
  background: #dbdee0;
  padding: 25px;
}

.btn_back {
  margin-top: 15px;
}

.detail_margin {
  margin-bottom: -43px;
}

.back_orders {
  margin-top: 25px;
}

.payment_order_command {
  font-size: 15px;
}

.logout_client {
  margin-bottom: 100px;
}

.back_compte_custom {
  margin-top: 25px;
  margin-bottom: 120px;
}

.total_item_responsive {
  display: none;
}

.alert {
  font-size: 17px;
  text-align: center;
}

@media (max-width: 992px) {
  .panier_out {
    margin-left: 94%;
    margin-top: -58px;
    font-size: 14px;
  }

  .panier_out a {
    color: #fff;
  }

  .flex_product_confirme {
    display: none;
  }

  .detail_card_confirme {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .total_item_responsive {
    display: block;
  }

  .StripeElement {
    width: 100% !important;
  }

  .dashboard_mycompte {
    flex-direction: column-reverse;
  }

  .btn_update_info {
    width: 100% !important;
  }

  .btn_info_address {
    display: flex;
    flex-direction: column-reverse;
  }

  .create_address {
    margin-bottom: 30px;
  }

  .display_orders {
    display: none;
  }

  .movie-beta__info {
    display: none;
  }

  .similar-wrap .post__title {
    min-height: 50px;
  }
}

@media (max-width: 640px) {
  .product_title {
    margin-top: 25px;
  }

  .panier_out {
    margin-left: 92%;
  }
}

@media (max-width: 589px) {
  .section_porfolio {
    width: 100%;
  }

  .gallery-item--photo {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .control-panel {
    top: 15px;
    right: 55%;
    margin-right: -90px;
    display: flex;
    flex-direction: column;
  }

  .panier_out {
    margin-left: 90%;
    margin-top: -99px;
    font-size: 13px;
  }

  .search .search__button {
    top: 70px;
    left: 33%;
  }
}

@media (min-width: 993px) {
  .panier_out {
    display: none;
  }
}

.close:hover {
  opacity: 0.6;
}

.close:before {
  transform: rotate(45deg);
}

.close:after {
  transform: rotate(-45deg);
}

.alert-success {
  border-radius: 15px;
  box-shadow: 8px 10px 21px -17px black;
}

.alert-dismissable {
  border-radius: 15px;
  box-shadow: 8px 10px 21px -17px black;
}

.movie-list {
  display: flex;
  justify-content: center;
}

#hero .container .blurb h1 {
  font-size: 49px;
}

.title_mention {
  margin-top: 150px;
  font-size: 18px;
}

.img_associe img {
  height: 300px !important;
}

@media (max-width: 600px) {
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .img_associe {
    width: 250px !important;
    margin-bottom: 15px;
  }
}

/*Modal Vidéo Bande annonce**/

.close {
  float: right;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: black;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  margin-top: -15px;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  color: black;
  text-decoration: none;
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: black;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

iframe {
  height: 100%;
  width: 100%;
}

.banner_title {
  color: #fff;
  font-weight: bold;
  margin-top: 200px;
  font-size: 35px;
  text-transform: uppercase;
  text-align: center;
}

.gallery-item .gallery--product {
  display: block;
  position: relative;
}

.gallery-item .gallery--product img {
  max-width: 100%;
  width: 100%;
  max-height: 200px;
  height: 200px;
}

.gallery-item .gallery--product:before {
  /* content: ''; */
  width: 100%;
  height: 100%;
  /* border: 3px solid #ffffff; */
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  position: absolute;
  /* top: 0;
  left: 0; */
  transition: 0.35s;
}

.gallery--product:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.75);
}

/*
.gallery-item .gallery--product:hover:before {
    width: 80%;
    height: 80%;
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 10%;
    opacity: 1;
}

.gallery-item .gallery--product:after {
    content: "\f04b";
    font: 20px "FontAwesome";
    color: #ffffff;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
}

.gallery-item .gallery--product:hover:after {
    opacity: 1;
} */


