/*
Theme Name: Tomra
Author: Erki Adams
Description: Tomra web theme
Version: 1.0.0.
*/


/*
 * Globals
 */

@import url("https://fonts.googleapis.com/css?family=Prompt:300,300i,400,500,700,700i");


/****************/
/***   TABS   ***/
/****************/
.tab-pane {
  display: none; }
.tab-pane.active {
  display: block; }

.basicLightbox {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: .01;
  transition: opacity 0.4s ease;
  z-index: 1000;
  /*will-change: opacity;*/ }
.basicLightbox--visible {
  opacity: 1; }
.basicLightbox__placeholder {
  max-width: 100%;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  z-index: 1;
  /*will-change: transform;*/ }
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child,
.basicLightbox__placeholder > iframe:first-child:last-child {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 95%;
  max-height: 95%; }
.basicLightbox__placeholder > video:first-child:last-child,
.basicLightbox__placeholder > iframe:first-child:last-child {
  pointer-events: auto; }
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
  width: auto;
  height: auto; }
.basicLightbox__placeholder > [data-basicLightbox] {
  display: block !important; }
.basicLightbox--img .basicLightbox__placeholder,
.basicLightbox--video .basicLightbox__placeholder,
.basicLightbox--iframe .basicLightbox__placeholder {
  width: 100%;
  height: 100%;
  pointer-events: none; }
.basicLightbox--visible .basicLightbox__placeholder {
  transform: scale(1); }

[data-basicLightbox] {
  display: none !important; }
  
/****************************/
/*******   SLIDEOUT MENU   ******/
/****************************/
body {
  width: 100%;
  height: 100%; }

.slideout-menu {
  background: #000;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none; }

.slideout-menu-left {
  left: 0; }

.slideout-menu-right {
  right: 0; }

.slideout-panel {
  position: relative;
  z-index: 1;
  will-change: transform;
  /* background-color: #121212; */
  /* A background-color is required */
  min-height: 100vh; }

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden; }

.slideout-open .slideout-menu {
  display: block; }
  
  

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  
@media (max-width: 360px) {
	.hamburger {
		padding: 15px 5px;
	}
}
  
.hamburger:hover {
  opacity: 0.7; }
.hamburger.is-active:hover {
  opacity: 0.7; }
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff; }

.hamburger-box {
  width: 30px;
  height: 22px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }
.hamburger-inner::before {
  top: -10px; }
.hamburger-inner::after {
  bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 60px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 60px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 60px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 60px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 60px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 60px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; }
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease; }
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0; }
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease; }
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0; }
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in; }
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important; }
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -60px;
  top: -60px;
  transform: translate3d(60px, 60px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -60px;
  top: -60px;
  transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in; }
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important; }
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -60px;
  top: 60px;
  transform: translate3d(60px, -60px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -60px;
  top: 60px;
  transform: translate3d(-60px, -60px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px; }
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }
.hamburger--slider .hamburger-inner::after {
  top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4.2857142857px, -8px, 0);
  opacity: 0; }
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }
.hamburger--slider-r .hamburger-inner::after {
  top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(4.2857142857px, -8px, 0);
  opacity: 0; }
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear; }
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear; }
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity; }
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s; }
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; }
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear; }
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity; }
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s; }
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; }
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg); }


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

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

body {
  /*line-height: 1; */
}

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }
  
  
/*************************/
/*******   GLOBAL   ******/
/*************************/
html {
  height: 100%; }

body {
  background: #000;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  position: relative;
  height: 100%; }

a {
  color: #00A7F6; }

strong {
  font-weight: 700; }
strong i {
  font-weight: 300i; }

i {
  font-weight: 300i; }
i strong {
  font-weight: 700i; }

em {
  font-style: italic; }

a.btn {
  background: rgba(17, 17, 29, 0.5);
  border: 1px solid rgba(204, 204, 204, 0.25);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  line-height: 30px;
  display: inline-block;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  transition: all 200ms ease-out; 
}

a.btn:hover {
  border: 1px solid #00A7F6;
  color: #fff;
  background: rgba(17, 17, 29, 0.2);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.1); 
}

/*************************/
/*******   HEADER   ******/
/*************************/


header {
  background: #06060e;
  border-bottom: 1px solid #1C1C1C;
  z-index: 102; 
}
  
header::after {
  clear: both;
  content: "";
  display: block; 
}

header a.logo {
  display: inline-block;
  float: left;
  width: 120px;
  height: 24px;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  background: url("img/logo_tomra_menu.png") 0 0 no-repeat;
  background-size: 120px 24px;
  margin: 22px 20px 20px; 
}
  
header .hamburger {
  float: right;
  margin: 5px 4px 0 0; 
}
  
header nav.mainmenu {
  display: none;
  float: left;
  margin-left: 42px;
  margin-left: 42px; 
}
  
header nav.mainmenu ul {
  list-style: none; 
}
  
header nav.mainmenu ul li {
  display: inline;
  margin-right: 10px; 
}
  
header nav.mainmenu ul li a {
  color: #C0C0C3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  height: 60px;
  line-height: 58px;
  padding: 2px 10px 0 10px;
  padding: 2px 10px 0;
  transition: color 100ms ease-in-out; 
}
  
header nav.mainmenu ul li a:hover {
  color: #fff; 
}
  
header nav.mainmenu ul li.current_page_item a {
  border-bottom: 4px solid #0095CF;
  color: #fff; 
}

@media (min-width: 768px) {
  header a.logo {
    display: inline-block;
    float: left;
    width: 120px;
    height: 24px;
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
    background: url("img/logo_tomra_menu.png") 0 0 no-repeat;
    background-size: 120px 24px;
    margin: 22px 20px 20px; 
  }

}

@media (min-width: 1180px) {
  header nav.mainmenu {
    display: block; 
  }
  header .hamburger {
    display: none; 
  } 
}

/*************************/
/*******   FOOTER   ******/
/*************************/

footer {
  background: #08080E;
  border-top: 1px solid #1C1C1C;
  font-size: 14px;
  color: #B2B2B2;
  width: 100%; 
}

footer a {
  color: #B2B2B2;
  text-decoration: none;
  border-bottom: 2px solid #595959; 
}

footer a:hover {
  border-color: #737272; 
}

footer .wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-template-columns: 100%;
  padding-top: 18px;
  padding-bottom: 18px; 
}

footer .wrapper .left {
  grid-column: 1 / 2;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px; 
}

footer .wrapper .left h2 {
  line-height: normal;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0; 
}

footer .wrapper .left p {
  margin: 0 0 10px 0; 
}

footer .wrapper .right {
  grid-column: 1 / 2;
  text-align: center;
  align-self: flex-end;
  margin-top: 5px;
  margin-bottom: 5px; 
  width: 100%; 
  display: inline-block; 
}

footer .wrapper .right ul {
  list-style: none;
  padding-bottom: 10px;
  line-height: 25px; 
}

footer .wrapper .right ul li {
  display: inline; 
}

footer .wrapper .right ul li span.sep {
  display: inline-block;
  padding: 0 5px; 
}

footer .wrapper .social {
  display: flex; 
  margin: 5px 10px; 
  align-self: flex-end; 
}


@media (min-width: 1280px) {
  footer .wrapper {
    justify-content: space-between;
    align-items: center;
    display: -ms-grid;
    grid-template-columns: 50% 50%;
    -ms-grid-columns: 1fr 1fr;
    padding-top: 18px;
    padding-bottom: 18px; 
  }
  
  footer .wrapper .left {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px; 
  }
  
  footer .wrapper .left h2 {
    line-height: normal;
    margin: 0 0 2px 0; 
  }
  
  footer .wrapper .left p {
    margin: 0 0 2px 0; 
  }
  
  footer .wrapper .right {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    text-align: right;
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 0; 
	width: auto; 
	display: flex; 
  } 
}

.footer-left {
  font-weight: normal !important;
  font-size: 12px !important;
  color: #595959 !important;
}

footer .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 12px;
  padding: 0;
  border: 0;
  background: #5E5E5E;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #fff;
  min-width: 140px;
  height: 32px;
  text-shadow: none;

  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

footer .right {
  display: flex;
  flex-direction: row;
}

footer .btn:hover {
  border: 0;
  background: #5E5E5E;
}

footer .btn i {
  margin-right: 12px;
  font-size: 16px;
}


/*****************************/
/*******   TYPOGRAPHY   ******/
/*****************************/
.fab {
  font-family: 'Font Awesome 5 Brands'; 
}
  

/********************************/
/*******   SLIDEOUT MENU   ******/
/********************************/
#hamburger nav {
  padding: 5px 20px;
  margin-bottom: 120px; }
#hamburger nav ul li {
  overflow: hidden;
  margin: 10px 10px; }
#hamburger nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 4px; }
#hamburger nav ul li.current_page_item a {
  color: #fff;
  border-bottom: 4px solid #0095CF; }

#hamburger .langmenu {
  display: block;
  float: none;
  position: absolute;
  left: 25px;
  right: 15px;

  bottom: 15%;
}
#hamburger .langmenu label {
  width: auto;
  box-sizing: border-box;
  text-indent: 0;
  width: 100%;
  text-align: left;
  padding: 0 0 0 34px;
  line-height: 36px;
  background-position: 7px 7px; }
#hamburger .langmenu ul {
  top: auto;
  bottom: 42px;
  left: 0;
  right: 0; } 
 


#hamburger .drop-content {
  display: block;
  position: relative;
  top: inherit;
  left: inherit;
  border: none;
  padding: 0;
  min-width: auto;
}

#hamburger .drop-content ul li {
  margin: 0;
}

#hamburger .drop-content ul li a {
  margin: 0;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  text-transform: none;
  padding: 6px 4px;
}

#hamburger .drop-content ul li.active a {
  border: none;
  color: #00A7F6;
}

#hamburger .drop-content ul li:hover a {
  color: #00A7F6;
}

#hamburger .drop .ico-arrow-down {
  display: none;
}

.hide {
  display: none;
} 



/*
 * Blog name and description
 */

.blog-header {
  padding-top: 20px;
  padding-bottom: 20px;
}
.blog-title {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: normal;
}
.blog-description {
  font-size: 20px;
  color: #999;
}


/*
 * Main column and sidebar layout
 */

.blog-main {
  font-size: 18px;
  line-height: 1.5;
}

/* Sidebar modules for boxing content */
.sidebar-module {
  padding: 15px;
  margin: 0 -15px 15px;
}
.sidebar-module-inset {
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.sidebar-module-inset p:last-child,
.sidebar-module-inset ul:last-child,
.sidebar-module-inset ol:last-child {
  margin-bottom: 0;
}

a.btn.watchCategory {
  background: #00A7F6;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5), inset 0 -2px 0 0 rgba(0, 0, 0, 0.11);
  border: none;
  position: relative;
  font-weight: 400;
  padding: 8px 20px;
  line-height:16px;
  margin-bottom: 5px;
  text-transform: none;
}
a.btn.watchCategory:hover {
  color: #fff;
  background: #2abbff; }

/***********************/
/*******   HERO   ******/
/***********************/
section.hero {
  height: 420px;
  position: relative;
  overflow: hidden;
  clear: both; 
  z-index: 1;}
section.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 1) 95%); }
section.hero .wrapper {
  padding: 30px 30px 0 30px;
  display: -ms-flexbox;
  -ms-flex-direction: column;
  position: relative;
  display: grid;
  height: 100%;
  -ms-flex-item-align: justify;
  -ms-flex-positive: 1;
  -ms-flex-pack: center;
  align-content: center;
  z-index: 100; }

section.hero .wrapper .text {
  /*-webkit-animation-name: fadeInUp;*/
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  /*animation-name: fadeInUp;*/
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: left;
  -ms-grid-column-align: center;
  justify-self: center; }
section.hero .wrapper .text h1 {
  font-size: 7.5vw;
  line-height: 9vw;
  text-transform: uppercase;
  font-weight: 500; }
section.movie-hero .wrapper .text h1 i {
  font-style: italic;
}
section.hero .wrapper .text h2 {
  font-size: 4vw;
  line-height: 6vw;
  max-width: 80%; }
section.hero .wrapper .text h2 b {
  font-weight: bold; }
section.hero .wrapper .text h2 i {
  font-style: italic; }
section.hero .wrapper .text a.btn {
  background: rgba(17, 17, 29, 0.5);
  border: 1px solid rgba(204, 204, 204, 0.25);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  line-height: 30px;
  display: block;
  text-align: center;
  padding: 10px 20px;
  margin-top: 20px;
  transition: all 200ms ease-out; }
section.hero .wrapper .text a.btn:hover {
  border: 1px solid #00A7F6;
  color: #00A7F6;
  background: rgba(17, 17, 29, 0.2);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.1); }
section.hero .wrapper .text a.btn:active {
  background: rgba(17, 17, 29, 0.5); }
section.hero video {
  /*-webkit-animation-name: fadeIn;*/
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  /*animation-name: fadeIn;*/
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 99;
  top: 0;
  width: 100% !important;
  height: auto !important;
  width: auto !important;
  height: 100% !important; }

@media (min-width: 768px) {
  section.hero {
    height: 600px;
    padding-top: 6.5vw;
    padding-bottom: 3.6vw; }
  section.hero .wrapper {
    height: 150px; }
  section.hero .wrapper .text {
    width: 100%; }
  section.hero .wrapper .text h1 {
    font-size: 5vw;
    line-height: 5vw;
    text-transform: uppercase; }
  section.hero .wrapper .text h2 {
    font-size: 2.4vw;
    line-height: 4vw; }
  section.hero video {
    width: auto !important;
    height: 100% !important;
    min-height: 720px; } }

@media (min-width: 992px) {
  section.hero {
    height: 600px;
    padding-top: 4.5vw;
    padding-bottom: 3.2vw; }
  section.hero .wrapper {
    height: 150px; }
  section.hero .wrapper .text h1 {
    font-size: 4.5vw;
    line-height: 6vw;
    text-transform: uppercase; }
  section.hero .wrapper .text h2 {
    font-size: 1.8vw;
    line-height: 2.0vw; }
  section.hero video {
    width: 100% !important;
    height: auto !important;
    min-height: 720px; } }

@media (min-width: 1400px) {
  section.hero {
    padding-top: 3.6vw;
    padding-bottom: 2.5vw; }
  section.hero .wrapper {
    max-width: inherit;
    width: auto;
    margin: 0 auto; }
  section.hero .wrapper .text h1 {
    font-size: 2.5vw;
    line-height: 3vw;
    text-transform: uppercase; }
  section.hero .wrapper .text h2 {
    font-size: 1vw;
    line-height: 1.2vw;
    font-weight: 400;}
  section.hero video {
    width: 100% !important;
    height: auto !important; } }

/***********************/
/*******   HERO   ******/
/***********************/
section.movie-hero {
  height: 55vh;
  position: relative;
  overflow: hidden;
  clear: both;
  z-index: 1;}
section.movie-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-image: linear-gradient(-180deg, rgba(21, 21, 21, 0.5) 10%, #121212 95%); }
section.movie-hero .wrapper {
  position: relative;
  display: grid;
  display: -ms-flexbox;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  height: 70vh;
  align-content: center;
  z-index: 100; }
section.movie-hero .wrapper .text {
  /*-webkit-animation-name: fadeInUp;*/
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  /*animation-name: fadeInUp;*/
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: left;
  justify-self: stretch;
  margin-right: 20px;
  margin-left: 20px;
  max-width: 100%; }
section.movie-hero .wrapper .text h1 {
  font-size: 6vw;
  line-height: 9vw;
  text-transform: none;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 10px; }
section.movie-hero .wrapper .text h2 {
  font-size: 4vw;
  line-height: 6vw;
  max-width: 100%;
  margin-bottom: 20px; }
section.movie-hero .wrapper .text .upcoming-notice {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: 5px;
  box-sizing: border-box; }
section.movie-hero .wrapper .text .upcoming-notice:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 28px;
  margin-top: 2px;
  margin-right: 10px;
  margin-bottom: -6px;
  background: url("img/ico_calendar.svg") 0 0 no-repeat; }
section.movie-hero .upcoming-notice a.notify-me {
  border: 1px solid #00A7F6;
  font-weight: 400;
  border-radius: 3px;
  line-height: 32px;
  display: inline-block;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin: 10px 0 10px 0px;
  font-size: 16px;
  box-sizing: border-box;
  text-decoration: none;
  transition: background 200ms ease-in-out;
  text-align: center; }
section.movie-hero .upcoming-notice a.notify-me:hover {
  background: #000; }
section.movie-hero .wrapper .text a.btn {
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  text-align: center; }
section.movie-hero .wrapper .text .title {
  display: flex; }
section.movie-hero video {
  /*-webkit-animation-name: fadeIn;*/
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  /*animation-name: fadeIn;*/
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 99;
  top: 0;
  /* width: auto; */
  /* height: 100%; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.movie-hero.bundle {
  height: 30vh;
  min-height: 300px; }
section.movie-hero.bundle .wrapper {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }
section.movie-hero .movies-filter {
  border: 1px solid green; }
section.movie-hero .movies-filter .wrapper {
  border: 1px solid red; }

@media (min-width: 768px) {
  section.movie-hero {
    width: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    clear: both; }
  section.movie-hero:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 1) 95%); }
  section.movie-hero video {
    /* width: auto; */
    /* height: 100vh; */ }
  section.movie-hero .wrapper .text {
    /*-webkit-animation-name: fadeInUp;*/
    -moz-animation-name: fadeInUp;
    -ms-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    /*animation-name: fadeInUp;*/
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -ms-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    -ms-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: left;
    justify-self: stretch;
    margin-right: 100px;
    margin-left: 100px;
    max-width: 1180px; }
  section.movie-hero .wrapper .text h1 {
    font-size: 34px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500; }
  section.movie-hero .wrapper .text h2 {
    font-size: 24px;
    line-height: 36px;
    max-width: 100%; }
  section.movie-hero .wrapper .text a.btn {
    margin-top: 20px;
    margin-right: 10px;
    display: inline-block; }
  section.movie-hero .wrapper .text .upcoming-notice {
    display: inline-block;
    width: auto;
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 5px; }
  section.movie-hero .wrapper .text .upcoming-notice:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 28px;
    margin-right: 10px;
    margin-bottom: -6px;
    background: url("img/ico_calendar.svg") 0 0 no-repeat; }
  section.movie-hero .upcoming-notice a.notify-me {
    display: inline-block;
    width: auto;
    margin-left: 10px; }
  section.movie-hero.bundle {
    height: auto;
    min-height: auto; }
  section.movie-hero.bundle .wrapper {
    height: 24vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
  section.movie-hero.bundle .wrapper .text {
    text-align: center; }
  section.movie-hero.bundle .wrapper .text h1 {
    text-align: center;
    text-transform: none;
    font-weight: 700;
    margin-top: 0; 
    height: 50px;
    overflow: hidden;
    
}
  section.movie-hero.bundle .wrapper .text a.btn {
    margin: 20px auto; } }

@media (min-width: 992px) {
  section.movie-hero video {
    /*-webkit-animation-name: fadeIn;*/
    -moz-animation-name: fadeIn;
    -ms-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    /*animation-name: fadeIn;*/
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -ms-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    -ms-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 99;
    top: 0; } }

@media (min-width: 1400px) {
  section.movie-hero video {
    /* width: 100%; */
    /* height: auto; */ } }

@media (orientation: landscape) {
  section.movie-hero video {
    /* width: 100%; */
    /* object-fit: fill; */
  }
}


/* MOVIE DETAIL */
section.movie-hero {
  display: flex;
  justify-content: center;

}

.movie-data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  padding: 0 100px 0 100px;
  width: 100%;
  height: 70vh;
  max-width: 1200px;
}

.movie-poster {
  display: flex;
  flex-direction: column;
  max-width: 355px;
}

.movie-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  /*flex: 1;*/
  flex-wrap: nowrap;
  margin-left: 100px;
}

.movie-info .sep {
  display: inline-block;
  padding: 0 12px;
}

.movie-info h1 {
  margin: 0 0 24px 0;
  padding: 0;
  font-size: 54px;
  line-height: 60px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}

.movie-info h1 i {
  font-style: italic;
}

.movie-info h2 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  color: #fff;
}

.movie-list {
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  list-style-type: none;
  color: #A3A3A3;
}

.movie-list li {
  margin: 0;
  padding: 6px 0;
}

.movie-list label {
  padding: 0 6px 0 0;
  font-weight: 500;
}

.watch-all-movies {
  min-height:200px;
  padding: 15px 0 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.movie-actions {
  padding: 15px 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.movie-actions .btn {
  margin-right: 24px;
}

.link {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}

.link .ico {
  margin-right: 12px;
}

.movie-details {
  margin: 0 auto;
  max-width: 1200px;
  min-height: 40vh;
}

.r-rated {
  vertical-align: middle;
  padding: 15px 10px 0 10px;
}

.r-rated i.badge {
  vertical-align: middle;
  border: 2px solid #fff;
  background: #3B3B42;
  color: #fff;
  display: inline-block;
  margin-right: 12px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.r-rated i.badge span.border {
  display: inline-block;
  border: 2px solid #000;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  height: 40px;

  width: 40px;
  line-height: 40px;
  border-radius: 50%;
}

section.movie-details .tab-content {
  display: flex;
  padding: 50px;
}

.tab-content .tab-pane {
  flex: 1;
}

.tab-side {
  margin-left: 84px;
  max-width: 240px;
}

.tab-side .trailers-area {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.tab-side .trailers-area a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin: 0 0 12px 0;
}

.tab-side .trailers-area a:before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #0095CF url(img/ico_play.svg) 13px 11px no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -19px;
  margin-left: -19px;
}

.tab-side .trailers-area img {
  border: 2px solid #fff;
  width: 100%;
  min-height: 140px;
  height: 100%;
}

.tab-side .trailers-area h3 {
  padding-bottom: 6px;
}

.tab-side h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
}

.tab-side p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  color: #fff;
}

.text-area {
  padding: 0 0 40px 0;
}

.movie-poster {
  max-width: 300px;
}

.movie-poster img {
  width: 100%;
}

/*******************************/
/*******   MOVIES INDEX   ******/
/*******************************/
.backdrop {
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
  position: relative;
  margin-top: -80px; }

.backdrop.backdrop-search {
  margin-top: 0px;
  padding-top: 10vw;
}

.backdrop.backdrop-category-banner {
  margin-top: -270px;
}

.no-results-wrapper {
  padding: 40px;
}

.no-results-container {
  width: 100%;
  background: #1d1d1d;
  height: 400px;
}

.no-results-wrapper .no-results-text {
  font-size: 40px;
  font-weight: 500;
  color: #8f8f92;
  text-align: center;
}

@media (min-width: 600px) and (max-width: 900px) {
  .backdrop.backdrop-search {
    padding-top: 12vw;
  }
  .no-results-wrapper {
    padding: 30px;
  }
}

@media (min-width: 500px) and (max-width: 600px) {
  .backdrop.backdrop-search {
    padding-top: 22vw;
  }
  .no-results-wrapper {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .backdrop.backdrop-search {
    padding-top: 35vw;
  }
  .no-results-wrapper {
    padding: 20px;
  }
}

.backdrop:not(.backdrop-search)::before {
  display: flex;
  position: absolute;
  top: -100px;
  left: 0;
  content: "";
  opacity: 0.5;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, #000000 100%);
  width: 100%;
  height: 100px;
  z-index: 100;
}

section.movies-index {
  /*-webkit-animation-name: fadeInUp;*/
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  /*animation-name: fadeInUp;*/
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  min-height: 20vh;
  display: -ms-flexbox;
  -ms-flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  padding-top: 10px;
  padding-bottom: 0px;
  padding-left: 20px;
  margin-right: 7%;
  margin-bottom: 0;
  overflow-x: auto;
  box-sizing: border-box;
  z-index: 102; }
section.movies-index a.movie {
  width: 100%;
  padding: 0;
  text-decoration: none;
  padding-right: 20px;
  display: inline-block;
  vertical-align: top; }
section.movies-index a.movie span.thumb {
  line-height: 0;
  border: 2px solid #595959;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  float: left;
  position: relative; }
section.movies-index a.movie span.thumb img.pic {
  width: 100%; }
section.movies-index a.movie span.thumb span.trailer {
  float: left;
  display: none;
  width: 100%;
  opacity: 1; }
section.movies-index a.movie span.thumb span.trailer video {
  width: 100%;
  font-size: 0;
  float: left; }
section.movies-index a.movie span.thumb span.play {
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 100;
  text-indent: -9999px;
  left: 10px;
  bottom: 10px;
  background: #0095CF url("img/ico_play.svg") 10px 8px no-repeat;
  background-size: 16px 16px;
  cursor: pointer; }
section.movies-index a.movie .description {
  display: inline-block;
  padding: 18px 12px 12px 12px;
  color: #fff;
  text-decoration: none; }
section.movies-index a.movie .description h3 {
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 0; }
section.movies-index a.movie .description i {
  font-style: italic;
}
section.movies-index a.movie .description .info {
  font-size: 14px; }
section.movies-index a.movie video {
  width: 100%; }

.view-more {
  text-decoration: none;
}

.back-to-main-page {
  text-decoration: none;
  margin-bottom: 15px;
}

.category-title {
  display: inline-block;
  font-size: 36px;
  margin-right: 20px;
  margin-bottom: 15px;
}
.forFree {
  color: #00A7F6;
}

.banner-small {
  display: block; }

.banner-large {
  display: none; }

.placeholder {
  display: none; }

a.placeholder2 {
  width: 100%;
  box-sizing: border-box;
  padding-right: 16px;
  margin-bottom: 50px; }
a.placeholder2 img.banner {
  width: 100%;
  height: auto; }

@media (min-width: 768px) {
  .backdrop {
    background: rgba(0, 0, 0, 0.5);
    margin-top: -425px;
    z-index: 101;
    position: relative; }
	
  .backdrop.backdrop-category-banner {
    margin-top: -585px;
  }
	
  section.movies-index {
    margin-top: 0;
    position: relative;
    grid-template-columns: 50% 50%;
    grid-gap: 0px;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: row;
    -ms-flex-pack: center;
    padding-top: 10px;
    padding-right: 30px;
    padding-left: 30px;
    margin-bottom: 0;
    overflow-x: visible; }
  section.movies-index a.movie {
    padding-right: 0;
    -ms-flex-direction: column;
    margin: 0px 0.4em;
    width: 48%; }
  section.movies-index a.movie span.thumb img.pic {
    height: 195px; }
  .placeholder2 {
    height: 100%;
    overflow: hidden;
    padding-bottom: 30px; }
  .placeholder2 .banner-wrapper img.banner {
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    height: 100%;
    object-fit: cover; }
  .placeholder3 {
    height: 300px; } }

@media (min-width: 992px) {
  section.movies-index {
    margin-top: 0;
    display: -ms-flexbox;
    -ms-flex-direction: row;
    -ms-flex-pack: start;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    position: relative;
    z-index: 101; }
  section.movies-index a.movie {
    padding-right: 0;
    -ms-flex-direction: column;
    margin: 0px 0.4em;
    width: 23.6%; }
  section.movies-index a.movie span.thumb {
    transition: all 200ms ease-in-out;
    position: relative;
    height: 146px; }
  section.movies-index a.movie span.thumb img.pic {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 146px; }
  section.movies-index a.movie span.thumb span.trailer {
    display: block; }
  section.movies-index a.movie span.thumb span.play {
    transition: all 200ms ease-in-out; }
  section.movies-index a.movie span.thumb span.play:hover {
    z-index:9999;
    transform: scale(1.1); }
  section.movies-index a.movie:hover span.thumb {
    z-index:9999;
    transform: scale(1.06);
    transition: all 500ms ease-in-out; }
  section.movies-index a.movie:hover span.thumb img.pic {
    opacity: 0;
    transition: all 500ms ease-in-out; }
  section.movies-index a.movie:hover span.thumb span.trailer {
    display: inline-block; }
  section.movies-index a.movie:hover.novideo span.thumb img.pic {
    opacity: 1; }
  section.movies-index a.movie:hover.novideo span.thumb span.trailer {
    display: none; }
  section.movies-index .placeholder {
    display: block;
    margin-right: 20px;
    padding-right: 0;
    -ms-flex-direction: column;
    width: 22%; }
  @supports (display: grid) {
    section.movies-index .placeholder {
      width: auto;
      margin-right: 0px; } }
  section.movies-index .placeholder1 {
    height: 200%;
    position: relative;
    overflow: hidden; }
  section.movies-index .placeholder1 img.banner {
    position: absolute;
    margin-left: 50%;
    transform: translateX(-50%); }
  .banner-small {
    display: none; }
  .banner-large {
    display: block; } }

@media (min-width: 1200px) {
	section.movies-index {
    grid-gap: 2px; }
  section.movies-index a.movie span.thumb {
    height: 166px; }
  section.movies-index a.movie span.thumb img.pic {
    height: 166px; }
}

@media (min-width: 1400px) {
  section.movies-index {
    grid-gap: 6px; }
  section.movies-index a.movie span.thumb {
    height: 186px; }
  section.movies-index a.movie span.thumb img.pic {
    height: 186px; } }
	
@media (min-width: 1600px) {
  section.movies-index a.movie span.thumb {
    height: 202px;
  }
  section.movies-index a.movie span.thumb img.pic {
    height: 202px;
  }
}

@media (min-width: 1800px) {
  section.movies-index a.movie span.thumb {
    height: 244px;
  }
  section.movies-index a.movie span.thumb img.pic {
    height: 244px;
  }
}

	
@media (min-width: 1650px) {
  section.movies-index {
    grid-gap: 12px; } }




.category {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: flex-end;
  position: relative;
  padding: 0 0 6px 30px;
}

.category h2 {
  margin: 0;
  padding: 0;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  letter-spacing: -.86px;
  color: #fff;
}

.category-more {
  margin: 0 0 12px 24px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #01A7F6;
}

.category-more .ico {
  position: relative;
  bottom: -3px;
  margin: 0 0 0 12px;
}

.category-view {
  flex-direction: column;
  align-items: flex-start;
}

.category-view h2 {
  text-transform: uppercase;
}

.category-view .category-more {
  margin-left: 0;
}

.category-view .category-more .ico {
  margin: 0 12px 0 0;
}

.ico-caret-right {
  display: inline-block;
  background: url("img/ico-caret-blue-right.svg") no-repeat 0 0;
  width: 10px;
  height: 16px;
}

.ico-caret-white-right {
  display: inline-block;
  background: url("img/ico-caret-white-right.svg") no-repeat 0 0;
  width: 10px;
  height: 16px;
}

.ico-caret-left {
  display: inline-block;
  background: url("img/ico-caret-blue-left.svg") no-repeat 0 0;
  width: 10px;
  height: 16px;
}

/****************************/
/*******   ARTICLES  ******/
/****************************/

.article {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-header .container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.article-header {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.article-header img {
    width: 100%;
}

.article-content {
  padding: 0 0 60px 0;
}

.article-inner {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}

.article .type {
  margin: 0;
  padding: 0 0 24px 0;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  color: #9E9E9E;
}

.article .cat {
  display: inline-block;
  border-right: solid 1px #9E9E9E;
  padding-right: 18px;
  margin-right: 18px;
}

.article h1 {
  margin: 0;
  padding: 0;
  font-size: 52px;
  line-height: 60px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -1px;
  color: #fff;
}

.article-image {
  display: flex;
  justify-content: center;
}

.article-image-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  min-height: 60px;
  text-align: center;
  position: relative;
}

.article-image-wrap:before {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(6,6,13,0.00) 54%, #06060D 100%);
}

.article-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.article-content .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 100px 0 100px;
  background: #06060D;
  max-width: 1000px;
}

.article-content .editable {
  max-width: 800px;
}

.editable {
  margin: 0;
  color: #fff;
}

.editable .opening {
  margin: 0;
  padding: 0 0 40px 0;
  font-size: 25px;
  line-height: 40px;
  font-weight: 300;
}

.editable h3 {
  margin: 0;
  padding: 0 0 12px 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.editable p {
  margin: 0 !important;
  padding: 0 0 40px 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

.editable a {
  text-decoration: underline;
  color: #02A6F6;
}

.editable abbr {
  padding: 0 6px;
  background: #323238;
}

.editable blockquote {
  margin: 0;
  padding: 0 0 40px 0;
  position: relative;
  max-width: 700px;
  
  font-size: 36px;
  line-height: 50px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
}

/**
.editable blockquote p {
  margin: 0;
  padding: 0;
  font-size: 36px;
  line-height: 50px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
}
**/

.editable blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: -60px;
  background: url("img/icon-blockquote.svg") no-repeat 0 0;
  width: 36px;
  height: 28px;
}

.editable .quote-author {
  margin-top: 18px;
  padding: 0 0 0 24px;
  border-left: solid 1px #686868;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  font-style: normal;
}

.editable .quote-author strong {
  display: block;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
}

.editable .quote-author span {
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  color: #686868;
}

.editable ul {
  margin: 0;
  padding: 0 0 40px 0;
  list-style-type: none;
}

.editable ul li {
  position: relative;
  padding: 12px 0 12px 36px;
}

.editable ul li:before {
  display: block;
  content: "";
  position: absolute;
  top: 22px;
  left: 12px;
  background: #02A6F6;
  width: 2px;
  height: 2px;
}

.editable .img-right {
  float: right;
  margin: 0 0 40px 40px;
}

.editable .img-left {
  float: left;
  margin: 0 40px 40px 0;
}

.editable .article-video {
  padding: 0 0 40px 0;
}

.article-gallery {
  margin: 0;
  padding: 0 0 40px 0;
}

.article-gallery ul {
  margin: 0 -6px;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: row;
}

.article-gallery ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 6px;
}

.article-gallery ul li:before {
  display: none;
}

.article-gallery ul a {
  display: flex;
  opacity: .7;
  transition: opacity ease-in-out .1s;
}

.article-gallery ul a:hover {
  opacity: 1;
}

.article-list {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 67px 0 0 0;
}

.article-list-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  min-height: 160px;
  background: #14141B;
  width: 100%;
}

.article-list-header  h1 {
  margin: 0;
  padding: 0;
  font-size: 52px;
  line-height: 60px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -1px;
  color: #fff;
}

.article-list .nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.article-list .nav li {
  display: flex;
  padding: 0 9px;
}

.article-list .nav li a {
  color: #B2B2B2;
  text-decoration: none;
  display: inline-block;
  padding: 16px 12px;
  border-bottom: 2px solid transparent;
}

.article-list .nav li a:hover {
  color: #fff;
}

.article-list .nav li.active a {
  color: #00A7F6;
  border-color: #00A7F6;
}

.article-list-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  max-width: 1218px;
}

.article-wide,
.article-small {
  display: flex;
  position: relative;
  margin: 6px;
}

.article-wide a,
.article-small a {
  display: flex;
}

.article-info {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  margin: 0 30px;
  padding: 30px;
  background: rgba(6, 6, 13, .9);
  pointer-events: none;
}

.article-info h2 {
  margin: 0;
  padding: 0 0 9px 0;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
}

.article-info p {
  margin: 0;
  padding: 3px 0 9px 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: #fff;
}

.article-info .read-more {
  display: block;
  padding-top: 9px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #01A7F6;
}

.article-info .read-more .fa {
  font-size: 16px;
  position: relative;
  top: 1px;
  margin-left: 6px;
}

/* Langmenu */
.langmenu {
  display: none;
  float: right;
  margin-top: 13px;
  margin-right: 12px;
  position: relative; }
.langmenu label {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid #595959;
  border-radius: 4px;
  text-indent: -9999px;
  cursor: pointer;
  background: url("img/ico_globe.svg") center center no-repeat;
  background-size: 20px 20px;
  opacity: 0.75; }
.langmenu label:hover {
  border: 1px solid #00A7F6;
  opacity: 1; }
.langmenu input[type="checkbox"] {
  display: none; }
.langmenu ul {
  display: none;
  position: absolute;
  border: 1px solid #595959;
  top: 42px;
  right: 0;
  min-width: 160px;
  border-radius: 2px;
  background: #121212;
  font-size: 14px; }
.langmenu ul li {
  border-bottom: 1px solid #595959; }
.langmenu ul li a {
  display: block;
  white-space: nowrap;
  line-height: 36px;
  padding-right: 12px;
  padding-left: 12px;
  text-decoration: none;
  color: #fff; }
.langmenu ul li.active a {
  color: #00A7F6; }
.langmenu ul li:hover {
  background: #0a0a0a; }
.langmenu ul li:last-child {
  border-bottom: none; }
.langmenu input[type=checkbox]:checked ~ ul {
  display: block; }
.langmenu input[type=checkbox]:checked ~ label {
  border: 1px solid #00A7F6;
  opacity: 1; }

@media (min-width: 768px) {
  .langmenu label {
    display: inline;
    padding: 6px 10px 6px 38px;
    width: auto;
    background: url("img/ico_globe.svg") 6px 6px no-repeat;
    text-indent: initial;
    white-space: nowrap;
    line-height: 36px; }
  @supports (display: grid) {
    .langmenu label {
      padding: 0 10px 0 38px;
      display: inline-block; } } }

@media (min-width: 992px) {
  .langmenu {
    display: block; } }


.langmenu label {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0 35px 0 10px;
}

.langmenu label:after {
  display: flex;
  content: "";
  position: absolute;
  top: 15px;
  right: 12px;
  background: url("img/select_carret.svg") no-repeat 0 0;
  width: 11px;
  height: 6px;
  opacity: 0.6;
}

.langmenu .flag {
  margin-right: 12px;
}

.langmenu ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 29px;
}

.langmenu ul li.active a:after {
  display: flex;
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  background: url("img/ico-check-blue.svg") no-repeat 0 0;
  width: 12px;
  height: 9px;
}

@media (max-width: 1100px) {
  .langmenu {
    display: block;
  }
}

@media (max-width: 768px){ 
  .print {
    margin-top: 40px;
  }
  section.video_filters .item label {
    display: inline-block;
  }

  section.movie-hero {
    padding-bottom: 50px;
    height: auto;
  }
  .movie-info {
    margin-left: 0;
    margin-top: 107px;
  }

  .movie-data {
    flex-direction: column-reverse;
  }

  .langmenu label .flag {
    margin-right: 0;
  }

  .langmenu label {
    width: auto;
  }

  .langmenu-text {
    display: none;
  }
  
  .movie-poster {
    padding-top: 36px;
  }
}

.flag {
  display: flex;
  width: 24px;
  height: 24px;
}

.flag-et { background: url("img/flag-et.svg") no-repeat 0 0; }
.flag-en { background: url("img/flag-en.svg") no-repeat 0 0; }
.flag-ru { background: url("img/flag-ru.svg") no-repeat 0 0; }
.flag-lv { background: url("img/flag-lv.svg") no-repeat 0 0; }

/* Pagination */
.pager {
  margin-bottom: 60px;
  text-align: left;
}
.pager > li > a {
  width: 140px;
  padding: 10px 20px;
  text-align: center;
  border-radius: 30px;
}



/********************************/
/*******   MOVIE DETAILS   ******/
/********************************/
section.movie-details {
  min-height: 40vh; }
section.movie-details ul.nav {
  background: #06060E;
  text-align: center;
  font-size: 14px;
  font-weight: bold; }
section.movie-details ul.nav li {
  display: inline; }
section.movie-details ul.nav li a {
  color: #B2B2B2;
  text-decoration: none;
  display: inline-block;
  padding: 20px 10px 16px;
  margin-right: 8px;
  margin-left: 8px; }
section.movie-details ul.nav li.active a {
  color: #00A7F6;
  border-bottom: 2px solid #00A7F6; }
section.movie-details .tab-content {
  background: #06060E;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 20px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  display: -ms-flexbox; }
section.movie-details .tab-content .poster {
  -ms-flex-negative: 0;
  margin-right: 30px;
  grid-column: 1 / 2;
  grid-row: 2 / 3; }
section.movie-details .tab-content .poster img {
  border: 2px solid #fff;
  width: 100%; }
@supports (display: grid) {
  section.movie-details .tab-content .poster {
    margin-right: auto; } }
section.movie-details .tab-content .poster .actions {
  padding-top: 40px;
  padding-bottom: 50px;
  text-align: center; }
section.movie-details .tab-content .poster .actions a.btn.primary {
  display: inline-block; }
section.movie-details .tab-content .poster .movie-tags {
  padding: 15px 10px 0 10px; }
section.movie-details .tab-content .poster .movie-tags a {
  color: #fff; }
section.movie-details .tab-content .poster .movie-tags a:hover {
  text-decoration: none; }
section.movie-details .tab-content .poster .movie-meta {
  padding: 15px 10px 0 10px; }
section.movie-details .tab-content .poster .r-rated {
  vertical-align: middle;
  padding: 15px 10px 0 10px; }
section.movie-details .tab-content .poster .r-rated i.badge {
  vertical-align: middle;
  border: 2px solid #fff;
  background: #3B3B42;
  color: #fff;
  display: inline-block;
  margin-right: 12px; }
section.movie-details .tab-content .poster .r-rated i.badge span.border {
  display: inline-block;
  border: 2px solid #000;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  height: 40px; }
section.movie-details .tab-content .poster .r-rated i.badge.r {
  border-radius: 50%;
  border-radius: 50%;
  width: 44px;
  height: 44px; }
section.movie-details .tab-content .poster .r-rated i.badge.r span.border {
  border-radius: 50%;
  width: 40px;
  line-height: 40px; }
section.movie-details .tab-content .poster .r-rated i.badge.nc {
  transform: rotate(45deg);
  width: 32px;
  height: 32px;
  margin-left: 8px;
  margin-right: 16px; }
section.movie-details .tab-content .poster .r-rated i.badge.nc span.border {
  width: 28px;
  transform: rotate(0deg);
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  position: relative; }
section.movie-details .tab-content .poster .r-rated i.badge.nc span.border span.value {
  transform: rotate(-45deg);
  position: absolute;
  line-height: 28px;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0; }
section.movie-details .tab-content .poster .r-rated i.badge.g {
  width: 44px;
  height: 44px; }
section.movie-details .tab-content .poster .r-rated i.badge.g span.border {
  width: 40px;
  line-height: 40px; }
section.movie-details .tab-content .tab-pane {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: none; }
section.movie-details .tab-content .tab-pane .play-area {
  border: 1px solid #1C1C1C;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  margin-bottom: 10px; }
section.movie-details .tab-content .tab-pane .trailers-area {
  margin-bottom: 20px;
  overflow: hidden; }
section.movie-details .tab-content .tab-pane .trailers-area h2 {
  margin-bottom: 8px; }
section.movie-details .tab-content .tab-pane .trailers-area a {
  display: block;
  float: left;
  width: 140px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin: 0 10px 0 0; }
section.movie-details .tab-content .tab-pane .trailers-area a .txt {
  display: inline-block;
  padding: 6px; }
section.movie-details .tab-content .tab-pane .trailers-area a img {
  border: 2px solid #fff; }
section.movie-details .tab-content .tab-pane .trailers-area a:hover img {
  border-color: #00A7F6; }
section.movie-details .tab-content .tab-pane .trailers-area a:hover:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -14px;
  transform: scale(1.1);
  transition: all 100ms ease-in-out; }
section.movie-details .tab-content .tab-pane .trailers-area a:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #0095CF url("img/ico_play.svg") 8px 7px no-repeat;
  background-size: 15px 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -14px; }
section.movie-details .tab-content .tab-pane p {
  line-height: 25px;
  font-size: 14px;
  margin-bottom: 28px; }
section.movie-details .tab-content .tab-pane .cast ul {
  line-height: 24px;
  break-inside: avoid;
  margin-bottom: 24px; }
section.movie-details .tab-content .tab-pane .cast ul li {
  overflow: hidden;
  font-size: 14px;
  color: #B2B2B2;
  font-weight: 500; }
section.movie-details .tab-content .tab-pane .cast ul li ul li {
  font-size: 16px;
  font-weight: 300;
  color: #fff; }
section.movie-details .tab-content .tab-pane.active {
  display: block; }
section.movie-details .bottom-actions {
  background: #06060E;
  text-align: center;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px; }
section.movie-details .bottom-actions a.btn {
  margin: 15px 20px;
  display: block; }

@media (min-width: 768px) {
  section.movie-details {
    min-height: 40vh; }
  section.movie-details ul.nav {
    background: #06060E;
    text-align: center;
    font-size: 16px;
    font-weight: bold; }
  section.movie-details ul.nav li {
    display: inline; }
  section.movie-details ul.nav li a {
    color: #B2B2B2;
    text-decoration: none;
    display: inline-block;
    padding: 20px 10px 16px;
    margin-right: 20px;
    margin-left: 20px; }
  section.movie-details ul.nav li.active a {
    color: #00A7F6;
    border-bottom: 2px solid #00A7F6; }
  section.movie-details .tab-content {
    background: #06060E;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 30px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 2fr; }
  section.movie-details .tab-content .poster {
    grid-column: 1 / 2;
    grid-row: 1 / 2; }
  section.movie-details .tab-content .poster img {
    border: 2px solid #fff; }
  section.movie-details .tab-content .tab-pane {
    grid-column: 2 / 3;
    display: none;
    padding-top: 0;
    padding-bottom: 0; }
  section.movie-details .tab-content .tab-pane p {
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 28px; }
  section.movie-details .tab-content .tab-pane .cast {
    columns: 230px 4; }
  section.movie-details .tab-content .tab-pane .cast ul {
    line-height: 24px;
    break-inside: avoid;
    margin-bottom: 24px; }
  section.movie-details .tab-content .tab-pane .cast ul li {
    font-size: 14px;
    color: #B2B2B2;
    font-weight: 500; }
  section.movie-details .tab-content .tab-pane.active {
    display: block; }
  section.movie-details .bottom-actions {
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 50px; }
  section.movie-details .bottom-actions a.btn {
    margin-right: 5px;
    margin-left: 5px;
    display: inline-block; } }

@media (min-width: 992px) {
  section.movie-details .tab-content .tab-pane p {
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 28px; } }

@media (min-width: 1400px) {
  section.movie-details .bottom-actions {
    margin-bottom: 50px;
    padding-top: 50px;
    padding-bottom: 50px; }
  section.movie-details .bottom-actions a.btn {
    margin-right: 5px;
    margin-left: 5px;
    display: inline-block; } }
	
	
.lightbox-header {
  margin-right: 0;
  margin-left: auto;
  width: 10px; }
.lightbox-header a.close-link {
  color: #5A5A5A;
  font-size: 32px;
  line-height: 32px;
  text-decoration: none;
  float: right;
  padding: 10px;
  margin-top: -54px;
  transition: color 200ms ease-out; }
.lightbox-header a.close-link::after {
  clear: both;
  content: "";
  display: block; }
.lightbox-header a.close-link:hover {
  color: #00A7F6;
  transition: color 100ms ease-out; }


.videoWrapper {
  width: 80vw;
  height: 45vw; }

@media screen and (orientation: landscape) and (min-width: 320px) and (max-width: 480px) {
  .videoWrapper {
    width: 112vh;
    height: 80vh; } }

@media screen and (orientation: portrait) and (min-width: 320px) and (max-width: 480px) {
  .videoWrapper {
    width: 100vw;
    height: 56vw; } }

.lightbox {
  /*.lightbox-header {
        @include clearfix;
        a.close-link {
            color: $footer-text;
            font-size: 32px;
            line-height: 32px;
            text-decoration: none;
            @include clearfix;
            float: right;
            @include padding(10px);
            transition: color 200ms ease-out;
            &:hover {
                color: $link-colored;
                transition: color 100ms ease-out;
            }
        }
    }*/ }
.lightbox .video-wrapper {
  border: 2px solid #5A5A5A;
  position: relative;
  padding-bottom: 56.25%;
  /*16:9*/
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 100%; }
.lightbox .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  
  

.basicLightbox__placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.basicLightbox__placeholder > [data-basicLightbox] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}

section.video_filters {
  float: none !important;
  position: absolute;
  top: -45px;
  right: 55px;
  padding: 0;
}

.trailer iframe {
  border: 1px solid #3C3C43;
  background: #000;
  width: 898px;
  height: 500px;
}

.lightbox.trailer > div {
  position: relative;
  width: 900px !important;
}

.lightbox-header {
  position: relative;
  display: flex;
  margin: 0; }

.lightbox-header a.close-link {
  position: absolute;
  top: -55px;
  right: 0;
  float: none;
  margin-top: 0;
  z-index: 9999;
  font-size: 4em;
}

.lightbox.payment .lightbox-body .tab-content .tab-pane .paymeths .promo a.btn {
  margin: 0 !important;
}

@media (min-width: 900px) {
  .lightbox-header {
    position: relative;
  }
}

@media (max-width: 1100px) {
  .movie-data {
    padding: 0 50px;
  }

  .movie-info {
    margin-left: 50px;
  }

  .movie-actions {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .movie-actions .primary {
    margin-bottom: 24px;
  }

  .langmenu {
    display: block;
  }
}

@media (max-width: 640px), (max-height: 640px) {
  .lightbox-header a.close-link {
    bottom: inherit;
    top: 0; }

  .lightbox-header {
    position: unset;
  }
}

@media (max-width: 900px) {

  .lightbox.trailer > div {
    position: unset !important;
    width: 100% !important;
  }

  .basicLightbox__placeholder,
  .lightbox.trailer {
    height: 100%;
  }

  .trailer iframe {
    border: none;
    background: transparent;
    width: 100%;
  }

  section.video_filters {
    float: none !important;
    padding: 0;
    margin: 0 !important;
    position: absolute;
    top: 10px;
    right: 50px;
  }

  .mobile-hide {
    display: none;
  }

  .movie-data {
    width: 100%;
    height: auto;
  }

  .movie-info h1 {
    font-size: 44px;
    line-height: 50px;
  }

  section.movie-details .tab-content {
    flex-direction: column;
  }

  .tab-side {
    margin-left: 0;
    max-width: inherit;
  }

  .trailer-wrap {
    display: flex;
    flex-direction: row;
  }

  .trailer-thumb {
    max-width: 300px;
  }

  .trailer-thumb:first-child {
    margin-right: 12px !important;
  }
}  

@media (max-width: 640px), (max-height: 640px) {

  .lightbox {
    height: 100%;
  }

  .lightbox .lightbox-body {
    background: #06060E;
    height: calc(100vh - 80px);
    max-width: 100%;
    width: 99%;
  }

}
  
.movie-details {
  margin: 0 auto;
  max-width: 1200px;
  min-height: 40vh;
}

.r-rated {
  vertical-align: middle;
  padding: 15px 10px 0 10px;
}

.r-rated i.badge {
  vertical-align: middle;
  border: 2px solid #fff;
  background: #3B3B42;
  color: #fff;
  display: inline-block;
  margin-right: 12px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.r-rated i.badge span.border {
  display: inline-block;
  border: 2px solid #000;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  height: 40px;

  width: 40px;
  line-height: 40px;
  border-radius: 50%;
}

section.movie-details .tab-content {
  display: flex;
  padding: 50px;
}

.tab-content .tab-pane {
  flex: 1;
}

.tab-side {
  margin-left: 84px;
  max-width: 240px;
}

.tab-side .trailers-area {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.tab-side .trailers-area a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin: 0 0 12px 0;
}

.tab-side .trailers-area a:before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #0095CF url(img/ico_play.svg) 13px 11px no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -19px;
  margin-left: -19px;
}

.tab-side .trailers-area img {
  border: 2px solid #fff;
  width: 100%;
  min-height: 140px;
  height: 100%;
}

.tab-side .trailers-area h3 {
  padding-bottom: 6px;
}

.tab-side h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
}

.tab-side p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  color: #fff;
}

.text-area {
  padding: 0 0 40px 0;
}



a.btn.primary {
  background: #00A7F6;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5), inset 0 -2px 0 0 rgba(0, 0, 0, 0.11);
  border: none;
  position: relative;
  font-weight: 700;
  padding: 10px 20px; }
a.btn.primary:hover {
  color: #fff;
  background: #2abbff; }
a.btn.primary span.price {
  background: #007BDA;
  display: inline-block;
  margin-right: -10px;
  margin-left: 10px;
  padding-right: 14px;
  padding-left: 14px;
  height: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: regular;
  color: #fff;
  line-height: 30px; }
a.btn.primary span.footnote {
  position: absolute;
  top: 60px;
  width: 100%;
  left: -50%;
  transform: translate(50%, 0);
  font-size: 13px;
  text-transform: none;
  font-weight: 300; }
a.btn.primary.isDisabled {
  background: #454545;
  color: #7F7F7F;
  text-decoration: none;
  cursor: default;
}

/*
 * LOGIN
 */
 
.login-form {
	position: absolute;
	width: 280px;
	height: 200px;
	left: 50%;
	top: 50%;
	margin-left: -140px;
	margin-top: -100px;
}

.login-logo {
	width: 280px;
	height: 51px;
  background: url("img/logo_tomra_large.png") 0 0 no-repeat;
  background-size: 280px 51px;

	text-align: center;
	margin-bottom: 10px;
}

.login-username, .login-password {
	margin-bottom: 10px;
}

.login-username input, .login-password input {
	height: 24px;
	padding: 2px;
	width: 265px;
	height: 30px;
	padding-left: 10px;
}

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

/* Login-Langmenu */
.login-langmenu {
  display: inline-block;
  margin-top: 50px;
  position: relative; }
.login-langmenu label {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid #595959;
  border-radius: 4px;
  text-indent: -9999px;
  cursor: pointer;
  background: url("img/ico_globe.svg") center center no-repeat;
  background-size: 20px 20px;
  opacity: 0.75; }
.login-langmenu label:hover {
  border: 1px solid #00A7F6;
  opacity: 1; }
.login-langmenu input[type="checkbox"] {
  display: none; }
.login-langmenu ul {
  display: none;
  position: absolute;
  border: 1px solid #595959;
  top: 42px;
  right: 0;
  min-width: 160px;
  border-radius: 2px;
  background: #121212;
  font-size: 14px; }
.login-langmenu ul li {
  border-bottom: 1px solid #595959; }
.login-langmenu ul li a {
  display: block;
  white-space: nowrap;
  line-height: 36px;
  padding-right: 12px;
  padding-left: 12px;
  text-decoration: none;
  color: #fff; }
.login-langmenu ul li.active a {
  color: #00A7F6; }
.login-langmenu ul li:hover {
  background: #0a0a0a; }
.login-langmenu ul li:last-child {
  border-bottom: none; }
.login-langmenu input[type=checkbox]:checked ~ ul {
  display: block; }
.login-langmenu input[type=checkbox]:checked ~ label {
  border: 1px solid #00A7F6;
  opacity: 1; }
  
@media (min-width: 768px) {
  .login-langmenu label {
    display: inline;
    padding: 6px 10px 6px 38px;
    width: auto;
    background: url("img/ico_globe.svg") 6px 6px no-repeat;
    text-indent: initial;
    white-space: nowrap;
    line-height: 36px; }
  @supports (display: grid) {
    .login-langmenu label {
      padding: 0 10px 0 38px;
      display: inline-block; } } }

.login-langmenu label {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0 35px 0 10px;
}

.login-langmenu label:after {
  display: flex;
  content: "";
  position: absolute;
  top: 15px;
  right: 12px;
  background: url("img/select_carret.svg") no-repeat 0 0;
  width: 11px;
  height: 6px;
  opacity: 0.6;
}

.login-langmenu .flag {
  margin-right: 12px;
}

.login-langmenu ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 29px;
}

.login-langmenu ul li.active a:after {
  display: flex;
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  background: url("img/ico-check-blue.svg") no-repeat 0 0;
  width: 12px;
  height: 9px;
}


input.button {
  background: rgba(17, 17, 29, 0.5);
  border: 1px solid rgba(204, 204, 204, 0.25);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  line-height: 30px;
  display: inline-block;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  transition: all 200ms ease-out; 
}

input.button:hover {
  border: 1px solid #00A7F6;
  color: #fff;
  background: rgba(17, 17, 29, 0.2);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.1); 
} 

input.button.button-primary {
  background: #00A7F6;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5), inset 0 -2px 0 0 rgba(0, 0, 0, 0.11);
  border: none;
  position: relative;
  font-weight: 700;
  padding: 5px 5px; }
input.button.button-primary:hover {
  color: #fff;
  background: #2abbff; }

/*
 * Blog posts
 */

.blog-post {
  margin-bottom: 60px;
}
.blog-post-title {
  margin-bottom: 5px;
  font-size: 40px;
}
.blog-post-meta {
  margin-bottom: 20px;
  color: #999;
}

#agreementBox {
  background-color: rgba(6, 6, 14, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #5a595d;
  margin: auto;
  top: 0;
  left: 0;
}

.agreementToggle {
  margin-right: 12px;
  min-height: 24px;
  min-width: 24px;
}

@media (max-width: 640px){
  #agreementBox {
    width: 99%;
    height: 99.5%;
  }
}

/* FLEX START */

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

/* FLEX END */

.min-content-h {
  height: min-content;
}


/* NEW DIALOG */

.new-dialog .new-dialog-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.new-dialog .action-icon {
  position: absolute;
  top: 8px;
  right: 8px;
}

@media (max-width: 640px), (max-height: 640px) {
  .new-dialog .action-icon {
    top: 50px;
    right: 4px;
  }
}

.new-dialog .new-dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.new-dialog .new-dialog-body {
  width: 100%;
  padding: 80px 50px;
  text-align: center;
  /* THESE 2 ARE FROM .noimage */
}

.new-dialog-body * {
  flex-shrink: 0;
}

@media (max-width: 850px) and (min-width: 640px) {
  .new-dialog .new-dialog-wrapper {
    min-width: 99%;
  }
}

@media (min-width: 850px) {
  .new-dialog .new-dialog-wrapper {
    min-width: 800px;
  }
}

@media (max-height: 640px) {
  .new-dialog .new-dialog-body {
    justify-content: normal !important;
  }
}

@media (max-width: 640px), (max-height: 640px) {
  .new-dialog .new-dialog-wrapper {
    min-width: inherit;
    width: 98%;
  }

  .new-dialog .new-dialog-body {
    /* padding: 30px 40px 80px !important; */
    padding: 80px 40px !important; /* this is from .noimage */
    height: 100vh;
    box-sizing: border-box;
  }
}

@media (max-width: 370px) {
  .new-dialog .new-dialog-body {
    /* padding: 30px 20px 80px; */
    padding: 80px 20px; /* this is from .noimage */
  }
}

.new-dialog .new-dialog-title {
  font-weight: bold;
  font-size: 17px;
}

.new-dialog .new-dialog-image {
  max-height: 200px;
}

.new-dialog-body .new-dialog-btn {
  font-size: 16px;
  padding: 7px 30px;
  line-height: inherit;
  border: 1px solid #00A7F6;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  word-break: keep-all;
}

.new-dialog-body .new-dialog-btn.main-btn {
  background-color: #00A7F6;
}

/* SPACINGS */

.image-title-space:not(.noimage) {
  padding: 20px;
}

@media (max-width: 640px), (max-height: 640px) {
  .button-bottom-space {
    padding-bottom: auto;
  }
}

.title-body-space {
  padding: 15px;
}

.body-button-space {
  padding: 20px;
}

.button-button-space {
  padding: 5px;
}


@media (min-width: 1600px) {
  section.movies-index a.movie span.thumb {
    height: 202px;
  }
  section.movies-index a.movie span.thumb img.pic {
    height: 202px;
  }
}

@media (min-width: 1800px) {
  section.movies-index a.movie span.thumb {
    height: 244px;
  }
  section.movies-index a.movie span.thumb img.pic {
    height: 244px;
  }
}

.tmbs {
  display: flex;
}

.tmbs-center { 
}

@media (min-width: 900px) {
	.tmbs-center { 
	  justify-content: center; 
	}
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hidden {
  display: none;
}

/* ICONS */

.picto {
  width: 180px;
  height: 84px;
  display: inline-block;
  margin: 0 auto;
  background: url("img/ico_reel.svg") center center no-repeat;
}

.picto-checkbox {
  width: 84px;
  height: 84px;
  display: inline-block;
  margin: 0 auto;
  background: url("img/picto_checkbox.svg") center center no-repeat;
  background-size: 84px 84px;
}

.picto-success {
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  margin: 30px auto 30px;
  border-radius: 50%;
  background: url("img/picto_success.svg") center center no-repeat; }

.picto-error {
  width: 84px;
  height: 84px;
  display: inline-block;
  margin: 0 auto;
  background: url("img/ico-error.svg") center center no-repeat;
}

.icon-close-circle {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 0 auto;
  background: url("img/ico-close-circle.svg") center center no-repeat;
}

.icon-search {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 0 auto;
  background: url("img/ico-search.svg") center center no-repeat;
}

.search-container-inverted.expanded .icon-search {
  background: url("img/ico-search-active.svg") center center no-repeat;
}

.icon-search-noresult {
  width: 200px;
  height: 200px;
  display: inline-block;
  margin: 0 auto;
  background: url("img/ico-search-noresult.svg") center center no-repeat;
}

/* ICONS */

.margin-center {
  margin: auto;
  overflow: auto;
}

.darken {
  color: #8f8f92;
}

/*
 * Footer
 */

.blog-footer {
  padding: 40px 0;
  color: #999;
  text-align: center;
  background-color: #f9f9f9;
  border-top: 1px solid #e5e5e5;
}
.blog-footer p:last-child {
  margin-bottom: 0;
}




.lightbox.default .lightbox-body {
  border: 2px solid #5A5A5A;
  background: #06060E;
  /* min-width: 260px; */
  max-width: 800px;
}

.lightbox.default .lightbox-header {
  width: 100%;
  max-width: 800px;
}