@-webkit-keyframes floater {
  0% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  65% {
    -webkit-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
}

@keyframes floater {
  0% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  65% {
    -webkit-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  100% {
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes lightening {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }
}

@keyframes lightening {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
  }
}

@-webkit-keyframes speak {
  0% {
    opacity: 0;
  }
  10%, 20%, 30%, 40%, 50% {
    opacity: 1;
  }
  60%, 70%, 80%, 90%, 100% {
    opacity: 0;
  }
}

@keyframes speak {
  0% {
    opacity: 0;
  }
  10%, 20%, 30%, 40%, 50% {
    opacity: 1;
  }
  60%, 70%, 80%, 90%, 100% {
    opacity: 0;
  }
}

@-webkit-keyframes speak2 {
  0%, 10%, 20% {
    opacity: 0;
  }
  30%, 40%, 50%, 60%, 70% {
    opacity: 1;
  }
  80%, 90%, 100% {
    opacity: 0;
  }
}

@keyframes speak2 {
  0%, 10%, 20% {
    opacity: 0;
  }
  30%, 40%, 50%, 60%, 70% {
    opacity: 1;
  }
  80%, 90%, 100% {
    opacity: 0;
  }
}

body {
  background-color: #f3f6f9;
  max-width: 100%;
  width: 100%;
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
  height: 100vh;
}

html {
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

.small-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: #fcdc00;
  color: #12151a;
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  line-height: 1;
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 112px;
  font-size: 14px;
  font-weight: 400;
  padding: 8px;
}

.small-button:hover {
  background-color: #2264b0;
  color: #fff;
}

.small-button:hover {
  background-color: #fe6b00;
}

.small-button:hover:after {
  right: -4px;
  bottom: -14px;
}

.small-button:active {
  background-color: rgba(255, 255, 255, 0.1);
  top: 2px;
  left: 2px;
}

.loading-mask {
  background-color: #f57d00;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

.loading-mask .img-wrapper {
  width: 250px;
  height: 62.8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
}

@media screen and (max-width: 600px) {
  .loading-mask .img-wrapper {
    width: 200px;
  }
}

@media screen and (max-width: 375px) {
  .loading-mask .img-wrapper {
    width: 160px;
  }
}

.main-button {
  -webkit-border-radius: 900px;
  border-radius: 900px;
  background-color: #fcdc00;
  color: #12151a;
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  padding: 16px 40px;
}

.main-button:hover {
  background-color: #2264b0;
  color: #fff;
}

.main-button:hover:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#top {
  width: 48px;
  height: 48px;
  padding: 5px;
  text-align: center;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  background-color: #fe6b00;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

.film-wrapper {
  position: relative;
  display: inline-block;
  max-width: 300px;
  background-color: rgba(34, 100, 176, 0.15);
  padding: 15px;
  padding-bottom: 10px;
  -webkit-border-radius: 0 20px 20px 20px;
  border-radius: 0 20px 20px 20px;
}

.film-wrapper .tag {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #12151a;
  color: #FFF;
  padding: 8px 15px 8px 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-border-radius: 0 0 20px 0;
  border-radius: 0 0 20px 0;
}

.film-wrapper .name {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 5px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.film-wrapper .poster {
  margin-top: 30px;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  position: relative;
}

.film-wrapper .poster:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.film-wrapper .poster img {
  visibility: hidden;
}

.film-wrapper:hover .poster {
  -webkit-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
}

.film-wrapper:hover .poster:after {
  opacity: 0;
}

.arrow-float {
  width: 34px;
  height: 55px;
  margin: 0 auto;
  margin-top: -30px;
  margin-bottom: 60px;
}

@media screen and (max-width: 375px) {
  .arrow-float {
    width: 26px;
    height: 43px;
  }
}

.arrow-float .mouse {
  width: 100%;
  height: 100%;
  border: 4px solid #2264b0;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  position: relative;
}

@media screen and (max-width: 375px) {
  .arrow-float .mouse {
    border: 3px solid #2264b0;
  }
}

.arrow-float .mouse .scroll {
  position: absolute;
  width: 4px;
  height: 10px;
  background-color: #fe6b00;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-animation-name: floater;
  animation-name: floater;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

section.card {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  margin-bottom: 120px;
  padding: 50px 24px;
  background-color: #dfeeff;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: rgba(32, 94, 171, 0.08) 0px 20px 43px;
  box-shadow: rgba(32, 94, 171, 0.08) 0px 20px 43px;
}

@media screen and (max-width: 1024px) {
  section.card {
    width: 90%;
    padding: 50px 15px;
  }
}

@media screen and (max-width: 440px) {
  section.card {
    margin-bottom: 60px;
  }
}

section.card .title {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -34px;
  width: 392px;
}

@media screen and (max-width: 460px) {
  section.card .title {
    width: 300px;
    top: -24px;
  }
}

@media screen and (max-width: 375px) {
  section.card .title {
    width: 250px;
    top: -22px;
  }
}

section.card .title.lg {
  width: 473px;
}

@media screen and (max-width: 460px) {
  section.card .title.lg {
    width: 361px;
  }
}

@media screen and (max-width: 375px) {
  section.card .title.lg {
    width: 301px;
  }
}

section.card .sub-title {
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  color: #2264b0;
}

@media screen and (max-width: 375px) {
  section.card .sub-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

section.card .info {
  text-align: center;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.2;
}

@media screen and (max-width: 375px) {
  section.card .info {
    font-size: 16px;
  }
}

section.card .note {
  position: relative;
  background-color: rgba(0, 33, 72, 0.25);
  max-width: 450px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 15px 25px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 200;
}

section.card .note ul {
  padding-left: 10px;
}

section.card .note li {
  list-style-position: outside;
  list-style-type: disc;
  padding-left: 0;
}

section.dark {
  background-color: #2264b0;
  color: #FFF;
}

section.dark .sub-title {
  color: #fcdc00;
}

section.ad {
  background-color: #fbebc7;
  background-position: 15px center;
  margin-bottom: 90px;
  margin-top: -50px;
  padding: 5px 0;
  position: relative;
  z-index: 10;
}

section.ad:hover .text {
  text-decoration: underline;
}

section.ad .wrap {
  width: 96%;
  margin: 0 auto;
  padding: 5px 30px;
  position: relative;
  font-size: 0;
}

section.ad .img {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 440px) {
  section.ad .img {
    width: 60px;
    vertical-align: top;
  }
}

section.ad .img img {
  width: 100%;
}

section.ad .ad-content {
  width: calc(100% - 80px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
}

@media screen and (max-width: 440px) {
  section.ad .ad-content {
    width: calc(100% - 60px);
  }
}

section.ad .text {
  display: inline;
  vertical-align: middle;
  font-size: 18px;
  color: #12151a;
  margin-right: 8px;
  margin-bottom: 8px;
  line-height: 1.5;
  letter-spacing: 1px;
}

@media screen and (max-width: 440px) {
  section.ad .text {
    font-size: 16px;
  }
}

section.ad .main-button {
  padding: 6px 15px;
  padding-right: 45px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  background-color: #683A1C;
  color: #fff;
}

@media screen and (max-width: 440px) {
  section.ad .main-button {
    font-size: 14px;
  }
}

section.ad .main-button:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  width: 22px;
  height: 22px;
  top: 3px;
  right: 8px;
  background-image: url(../images/popcorn.png);
}

section.main {
  padding-bottom: 0;
  padding-top: 71px;
}

@media screen and (max-width: 768px) {
  section.main {
    padding-top: 67px;
  }
}

@media screen and (max-width: 440px) {
  section.main {
    padding-top: 59px;
  }
}

section.main .lg {
  margin: 0 auto;
  position: relative;
}

section.main .lg .main-title {
  position: absolute;
  width: 46%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 7%;
  opacity: 0;
}

section.main .lg .main-subtitle {
  position: absolute;
  width: 42%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 32.7%;
  opacity: 0;
}

section.main .lg .main-prize {
  position: absolute;
  width: 33%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 48%;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  section.main .lg {
    width: 120%;
    margin-left: -10%;
  }
}

@media screen and (max-width: 600px) {
  section.main .lg {
    width: 140%;
    margin-left: -20%;
  }
}

@media screen and (max-width: 440px) {
  section.main .lg {
    width: 180%;
    margin-left: -40%;
  }
}

section.buyonegetone {
  position: relative;
  padding-bottom: 0;
  margin-top: 35px;
}

section.buyonegetone .film-list {
  font-size: 0;
}

@media screen and (max-width: 460px) {
  section.buyonegetone .film-list {
    text-align: center;
  }
}

section.buyonegetone .film-list li {
  display: inline-block;
  width: 20%;
  padding: 5px;
  margin-bottom: 20px;
  vertical-align: top;
  position: relative;
}

section.buyonegetone .film-list li .sold-out {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 0 20px 20px 20px;
  border-radius: 0 20px 20px 20px;
}

section.buyonegetone .film-list li .sold-out > span {
  color: #FFF;
  font-size: 20px;
  position: absolute;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  section.buyonegetone .film-list li {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  section.buyonegetone .film-list li {
    width: 33%;
  }
}

@media screen and (max-width: 600px) {
  section.buyonegetone .film-list li {
    width: 50%;
  }
}

@media screen and (max-width: 375px) {
  section.buyonegetone .film-list li {
    width: 90%;
  }
}

section.buyonegetone .film-list li .film-wrapper {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 460px) {
  section.buyonegetone .film-list li .film-wrapper {
    padding: 10px;
  }
}

section.buyonegetone .film-list li:nth-child(odd) .film-wrapper {
  background-color: #eea400;
}

section.buyonegetone .film-list li:nth-child(even) .film-wrapper {
  background-color: #fe6b00;
}

section.buyonegetone .side-block {
  margin-top: 50px;
  padding: 20px;
  background-color: #dfeeff;
  width: calc(100% + 48px);
  margin-left: -24px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  section.buyonegetone .side-block {
    padding-bottom: 40px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}

section.buyonegetone .side-block .tag {
  background-color: #fe6b00;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 11px;
  position: absolute;
  left: -29%;
}

@media screen and (max-width: 768px) {
  section.buyonegetone .side-block .tag {
    position: relative;
    left: -5px;
    display: inline-block;
    margin-bottom: 8px;
  }
}

section.buyonegetone .side-block .title {
  position: relative;
  top: 0;
  margin-bottom: 20px;
}

section.buyonegetone .side-block .info {
  color: #12151a;
  margin-bottom: 20px;
}

section.buyonegetone .side-block .note {
  color: #12151a;
  font-weight: normal;
  background: none;
  padding: 0;
  margin: 0;
  text-align: center;
  max-width: initial;
}

section.buyonegetone .side-block .content-box {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 70%;
  margin-left: 8%;
  margin-top: 20px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  section.buyonegetone .side-block .content-box {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}

section.buyonegetone .side-block .action-box {
  width: 25%;
  margin-left: -8%;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  section.buyonegetone .side-block .action-box {
    width: 50%;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    display: block;
  }
}

section.buyonegetone .make-wish {
  position: absolute;
  width: 100%;
  max-width: 580px;
  height: 235px;
  right: 0;
  bottom: 0;
  background-color: #dfeeff;
  background-image: url(../images/pool_bg.png);
  -webkit-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
  -webkit-border-radius: 0 0 50px 0;
  border-radius: 0 0 50px 0;
}

section.buyonegetone .make-wish .title {
  position: relative;
  top: 0;
  width: 282px;
  margin: initial;
  margin-top: 95px;
  margin-left: 70px;
  margin-bottom: 14px;
}

section.buyonegetone .make-wish .info {
  color: #12151a;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  margin-left: 70px;
}

section.buyonegetone .make-wish .action {
  width: 110px;
  height: 110px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background-color: #fcdc00;
  color: #12151a;
  display: block;
  text-align: center;
  position: absolute;
  right: 75px;
  top: 45px;
  font-size: 20px;
  font-weight: 700;
  padding-top: 32px;
}

section.buyonegetone .make-wish .action:hover {
  background-color: #2264b0;
  color: #FFF;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

@media screen and (max-width: 600px) {
  section.buyonegetone .make-wish {
    height: 300px;
    -webkit-background-size: 120% auto;
    -o-background-size: 120% auto;
    background-size: 120% auto;
    background-position: center top;
    -webkit-border-radius: 0 0 50px 50px;
    border-radius: 0 0 50px 50px;
  }
  section.buyonegetone .make-wish .title {
    margin-top: 155px;
    margin-bottom: 10px;
    margin-left: 25px;
  }
  section.buyonegetone .make-wish .info {
    font-size: 18px;
    margin-left: 25px;
    margin-right: 25px;
  }
  section.buyonegetone .make-wish .action {
    right: 25px;
    top: 30px;
  }
}

@media screen and (max-width: 440px) {
  section.buyonegetone .make-wish .title {
    width: 230px;
  }
}

section.prize .prize-list {
  width: 75%;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  section.prize .prize-list {
    width: 90%;
  }
}

section.prize .prize-list .prize-item {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 32%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  min-width: 255px;
  -webkit-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  section.prize .prize-list .prize-item {
    width: 48%;
    min-width: 230px;
  }
}

section.prize .prize-list .prize-item:nth-child(1) {
  background-image: url(../images/prize/bg01.png);
}

section.prize .prize-list .prize-item:nth-child(1) .image img {
  width: 80%;
}

section.prize .prize-list .prize-item:nth-child(2) {
  background-image: url(../images/prize/bg02.png);
}

section.prize .prize-list .prize-item:nth-child(3) {
  background-image: url(../images/prize/bg03.png);
}

section.prize .prize-list .prize-item:nth-child(4) {
  background-image: url(../images/prize/bg04.png);
}

section.prize .prize-list .prize-item:nth-child(5) {
  background-image: url(../images/prize/bg05.png);
}

section.prize .prize-list .prize-item:nth-child(6) {
  background-image: url(../images/prize/bg06.png);
}

section.prize .prize-list .prize-item .image {
  min-height: 150px;
  position: relative;
}

section.prize .prize-list .prize-item .image img {
  position: absolute;
  width: 60%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto auto;
}

section.prize .prize-list .prize-item .name {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.2;
}

section.prize .prize-list .prize-item .quantity {
  background-color: #2264b0;
  color: #FFF;
  font-size: 16px;
  display: inline-block;
  padding: 8px 20px;
  min-width: 90px;
  margin-bottom: 14px;
  -webkit-border-radius: 90px;
  border-radius: 90px;
}

section.prize .prize-list .prize-item .price {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

section.film-list .content-wrapper {
  width: 90%;
  margin: 0 auto;
  margin-top: 0;
}

section.film-list .films-wrapper .owl-dots {
  margin-top: 15px;
}

section.film-list .films-wrapper .owl-dots .owl-dot.active span {
  background: #fe6b00;
}

section.film-list .films-wrapper .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}

section.film-list .films-wrapper .owl-nav:hover {
  background: none;
}

section.film-list .films-wrapper .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
  width: 50px;
  height: 50px;
  background-image: url(../images/slider_arrow_left.png);
  -webkit-background-size: 28px auto;
  -o-background-size: 28px auto;
  background-size: 28px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 440px) {
  section.film-list .films-wrapper .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    left: -30px;
    -webkit-background-size: 20px auto;
    -o-background-size: 20px auto;
    background-size: 20px auto;
  }
}

section.film-list .films-wrapper .owl-nav .owl-prev:hover {
  background: none;
  background-image: url(../images/slider_arrow_left.png);
  background-repeat: no-repeat;
  -webkit-background-size: 28px auto;
  -o-background-size: 28px auto;
  background-size: 28px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 440px) {
  section.film-list .films-wrapper .owl-nav .owl-prev:hover {
    -webkit-background-size: 20px auto;
    -o-background-size: 20px auto;
    background-size: 20px auto;
  }
}

section.film-list .films-wrapper .owl-nav .owl-next {
  position: absolute;
  right: -50px;
  width: 50px;
  height: 50px;
  background-image: url(../images/slider_arrow_right.png);
  -webkit-background-size: 28px auto;
  -o-background-size: 28px auto;
  background-size: 28px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 440px) {
  section.film-list .films-wrapper .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    right: -30px;
    -webkit-background-size: 20px auto;
    -o-background-size: 20px auto;
    background-size: 20px auto;
  }
}

section.film-list .films-wrapper .owl-nav .owl-next:hover {
  background: none;
  background-image: url(../images/slider_arrow_right.png);
  background-repeat: no-repeat;
  -webkit-background-size: 28px auto;
  -o-background-size: 28px auto;
  background-size: 28px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 440px) {
  section.film-list .films-wrapper .owl-nav .owl-next:hover {
    -webkit-background-size: 20px auto;
    -o-background-size: 20px auto;
    background-size: 20px auto;
  }
}

section.film-list .films-wrapper .film-slider {
  display: none;
}

section.film-list .films-wrapper .note {
  background-color: transparent;
  text-align: right;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  color: #2264b0;
}

section.film-list .item {
  position: relative;
  display: inline-block;
  max-width: 300px;
  background-color: rgba(34, 100, 176, 0.15);
  padding: 15px;
  padding-bottom: 10px;
  -webkit-border-radius: 0 20px 20px 20px;
  border-radius: 0 20px 20px 20px;
  max-width: initial;
  margin: 0 7px;
  width: 96%;
}

section.film-list .item .tag {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #12151a;
  color: #FFF;
  padding: 8px 15px 8px 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-border-radius: 0 0 20px 0;
  border-radius: 0 0 20px 0;
  background-color: rgba(34, 100, 176, 0.5);
}

section.film-list .item .name {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 5px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

section.film-list .item .poster {
  margin-top: 30px;
  -webkit-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  position: relative;
}

section.film-list .item .poster:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

section.film-list .item .poster img {
  visibility: hidden;
}

section.film-list .item:hover .poster {
  -webkit-background-size: 110% auto;
  -o-background-size: 110% auto;
  background-size: 110% auto;
}

section.film-list .item:hover .poster:after {
  opacity: 0;
}

section.film-list .tabs {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  section.film-list .tabs {
    text-align: left;
  }
}

@media screen and (max-width: 460px) {
  section.film-list .tabs {
    text-align: center;
  }
}

section.film-list .tabs li {
  display: inline-block;
  cursor: pointer;
  background-color: #b7d8ff;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  margin: 0 26px;
  vertical-align: middle;
  position: relative;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  section.film-list .tabs li {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  section.film-list .tabs li {
    font-size: 20px;
  }
}

section.film-list .tabs li:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 40px;
  background-image: url(../images/tab_right.png);
  top: 0;
  right: -24px;
}

section.film-list .tabs li:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 40px;
  background-image: url(../images/tab_left.png);
  top: 0;
  left: -24px;
}

section.film-list .tabs li.on {
  color: #12151a;
  background-color: #fcdc00;
  text-shadow: -1px -1px 0 #FFF,   1px -1px 0 #FFF, -1px  1px 0 #FFF, 1px  1px 0 #FFF;
}

section.film-list .tabs li.on:after {
  background-image: url(../images/tab_on_right.png);
}

section.film-list .tabs li.on:before {
  background-image: url(../images/tab_on_left.png);
}

section.free-film {
  background-image: url(../images/logo_bg.png);
  background-position: center center;
  background-repeat: repeat;
}

@media screen and (max-width: 440px) {
  section.free-film {
    padding-top: 15px;
  }
}

section.free-film .content-wrapper {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 600px) {
  section.free-film .content-wrapper {
    width: 100%;
  }
}

section.free-film .film-wrapper {
  padding: 20px;
}

section.free-film .film-wrapper .item .poster {
  margin-top: 0;
}

section.free-film .film-wrapper .item .name {
  font-size: 19px;
}

section.free-film .action-wrapper {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin-top: 57px;
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  section.free-film .action-wrapper {
    margin-top: 30px;
  }
}

@media screen and (max-width: 460px) {
  section.free-film .action-wrapper {
    margin: 0;
    margin-top: 20px;
  }
}

section.free-film .action-wrapper .main-button {
  cursor: pointer;
  min-width: 300px;
  margin-bottom: 37px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.free-film .action-wrapper .main-button {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 460px) {
  section.free-film .action-wrapper .main-button {
    min-width: 220px;
  }
}

section.free-film .action-wrapper .main-button:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  width: 40px;
  height: 40px;
  top: 4px;
  right: 10px;
  background-image: url(../images/popcorn.png);
}

section.bg > div {
  position: absolute;
  z-index: 0;
}

section.bg .right-top {
  top: 20%;
  right: 0;
}

section.bg .right-middle {
  top: 45%;
  right: 0;
}

section.bg .right-bottom {
  top: 70%;
  right: 0;
}

section.bg .left-top {
  top: 35%;
  left: 0;
}

section.bg .left-middle {
  top: 65%;
  left: 0;
}

section.bg .left-bottom {
  top: 75%;
  left: 0;
}

section.count-down.phase2 {
  display: none;
}

a.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}
