/*!
 * Theme Name: MTV
 * Theme URI: http://www.doryo.de
 * Description: Wordpress theme for MTV pages
 * Version: 1.0.0
 * Author: Matthias Seidel
 * Author URI: http://www.doryo.de
 * Tags: HTML5, CSS3, MTV, framework
 *
 */

@charset "UTF-8";
/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Grid
 */
/**
 * modules/mixins
 * ---
 */
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
/**
 * @license
 * MyFonts Webfont Build ID 3413897, 2017-06-29T08:39:15-0400
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: GalanoGrotesque-Black by Rene Bieder
 * URL: https://www.myfonts.com/fonts/rene-bieder/galano-grotesque/black/
 * Copyright: Copyright &#x00A9; 2014 by Ren&#x00E9; Bieder. All rights reserved.
 * Licensed pageviews: 100,000
 * 
 * 
 * License: https://www.myfonts.com/viewlicense?type=web&buildid=3413897
 * 
 * © 2017 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
@import url("//hello.myfonts.net/count/341789");
/*
@font-face {
  font-family: "Font-Name";
  src: url("fonts/font-name.eot");
  src: url("fonts/font-name.eot?#iefix") format("embedded-opentype"),
    url("fonts/font-name.woff") format("woff"),
    url("fonts/font-name.ttf") format("truetype"),
    url("fonts/font-name.svg#font-name") format("svg");
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  font-family: montserrat, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #444;
  background-color: #fff;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

input[type=text],
input[type=search] {
  font-size: inherit;
  line-height: inherit;
}

::-moz-selection {
  color: #fff;
  background-color: #04a4cc;
  text-shadow: none;
}

::selection {
  color: #fff;
  background-color: #04a4cc;
  text-shadow: none;
}

body {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: none;
  color: #fff;
}
a:visited {
  color: #fff;
}
a:hover, a:focus, a:active {
  color: #ffdd14;
}
a:focus {
  outline: none;
}
a:hover, a:active {
  outline: 0;
}

/**
* ----------------------------------------
* animation pulsate-fwd
* https://animista.net/play/attention/pulsate/pulsate-fwd
* ----------------------------------------
*/
.fx-pulsate-fwd {
  -webkit-animation: pulsate-fwd 1s ease-in-out infinite both;
  animation: pulsate-fwd 1s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/**
* ----------------------------------------
* animation skew
* https://codepen.io/lihong/pen/yWBZzY
* ----------------------------------------
*/
.fx-skew {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  animation-direction: alternate-reverse;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-name: skeOne;
          animation-name: skeOne;
}

@-webkit-keyframes skeOne {
  0% {
    -webkit-transform: skew(0) scale(1);
    transform: skew(0) scale(1);
  }
  100% {
    -webkit-transform: skewX(5deg) scale(1.05);
    transform: skewX(5deg) scale(1.05);
  }
}

@keyframes skeOne {
  0% {
    -webkit-transform: skew(0) scale(1);
    transform: skew(0) scale(1);
  }
  100% {
    -webkit-transform: skewX(5deg) scale(1.05);
    transform: skewX(5deg) scale(1.05);
  }
}
/**
 * partials/wordpress
 * ---
 * Wordpess core classes
 */
/**
 * Alignment
 */
.alignnone {
  margin: 5px 15px 15px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 15px 15px;
}

.alignleft {
  float: left;
  margin: 5px 15px 15px 0;
}

/**
 * Gallery & images
 */
.wp-caption {
  background: #fff;
  border: thin solid #F0F0F0;
  max-width: 95%;
  padding: 5px 5px;
  text-align: center;
}
.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  border: 0 none;
  margin: 0;
  padding: 0;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0 5px 5px;
  font-size: 100%;
  line-height: 1.5;
}

/**
 * partials/utils
 * ---
 * Utils classes
 */
.clear:before, .clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}

.reset-box {
  margin: 0;
  padding: 0;
}

main.main-with-margin {
  position: relative;
  overflow: hidden;
  width: 90%;
  min-width: 288px;
  max-width: 1440px;
  margin: 0 auto;
}
main.main-with-margin *,
main.main-with-margin *:before,
main.main-with-margin *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
main.main-with-margin .wpb_content_element {
  margin-bottom: 0;
}

.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0 !important;
}

/**
 * partials/header
 * ---
 */
html .page .viacomRoot {
  font-size: 1em;
  z-index: 3000;
}
@media (min-width: 980px) {
  html .page .viacomRoot {
    font-size: 10px;
  }
}
html .page .viacomRoot [data-elem=logo] {
  font-size: 1em;
  width: 90px;
}
@media (min-width: 980px) {
  html .page .viacomRoot [data-elem=logo] {
    width: 170px;
  }
}

/**
 * partials/nav
 * ---
 * Menus
 */
/**
 * partials/sidebar
 * ---
 */
/**
 * partials/footer
 * ---
 */
/**
 * partials/print
 * ---
 * Print version
 * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
 */
@media print {
  *,
*:before,
*:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
}
.advertising_indication {
  font-size: 0.8em;
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  padding: 6px 10px;
  text-transform: uppercase;
  color: #fff;
  background: #888;
}
@media (min-width: 768px) {
  .advertising_indication {
    font-size: 1em;
    padding: 8px 12px;
  }
}
.advertising_indication--right {
  right: 0;
  left: auto;
}

.nick_modal {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nick_modal__close {
  font-size: 2em;
  position: absolute;
  z-index: 300;
  top: 20px;
  right: 20px;
  color: #ffdd14;
}
.nick_modal__close:visited {
  color: #ffdd14;
}
.nick_modal__close:hover, .nick_modal__close:focus, .nick_modal__close:active {
  text-decoration: none;
  color: #fff;
}
.nick_modal__video {
  width: 100vw !important;
  height: 100vh !important;
}
.nick_modal__wp-video video {
  max-width: 100%;
  max-height: 100vh;
}

.nick_icon_menu {
  position: absolute;
  top: 2em;
  left: 3em;
}
.nick_icon_menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nick_icon_menu__item {
  position: relative;
}
.nick_icon_menu__item--no-hover .nick_icon_menu__img img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nick_icon_menu__item--no-hover .nick_icon_menu__link:hover .nick_icon_menu__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nick_icon_menu__item--has-hover .nick_icon_menu__link:hover .nick_icon_menu__img-hover {
  opacity: 1;
}
.nick_icon_menu__item--has-hover .nick_icon_menu__img {
  position: relative;
  opacity: 1;
}
.nick_icon_menu__item--has-hover .nick_icon_menu__img-hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.nick_contest .jotform-form {
  padding: 20px;
}
@media (min-width: 1460px) {
  .nick_contest .jotform-form {
    padding: 0;
  }
}
.nick_contest .jotform-form .form-all {
  background: none;
}
.nick_contest .jotform-form .form-all .form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .nick_contest .jotform-form .form-all .form-section {
    display: grid;
    grid-template-columns: 55% 40%;
    grid-gap: 5%;
  }
}
.nick_contest .jotform-form .form-all .form-section .form-line {
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}
@media (min-width: 768px) {
  .nick_contest .jotform-form .form-all .form-section .form-line {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_textbox] {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_textbox] {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_email] {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_email] {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_fileupload] .form-label {
  visibility: hidden;
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_fileupload] .form-input-wide .qq-uploader {
  width: 100%;
  height: 120px;
  cursor: pointer;
  border: 2px solid #ffdd14;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_fileupload] .form-input-wide .qq-uploader .qq-upload-button {
  font-family: montserrat, sans-serif;
  height: 100%;
  text-transform: uppercase;
  color: #ffdd14;
  border: 0;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_checkbox], .nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_button] {
  grid-column: 1/3;
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_checkbox] {
  margin-bottom: 0;
}
.nick_contest .jotform-form .form-all .form-section .form-line[data-type=control_checkbox] .form-label {
  display: none;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-label {
  font-family: montserrat, sans-serif;
  font-size: 2em;
  line-height: 1.4em;
  text-transform: uppercase;
  color: #ffdd14;
}
@media (min-width: 768px) {
  .nick_contest .jotform-form .form-all .form-section .form-line .form-label {
    font-size: 3em;
  }
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-label .form-required {
  display: none;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-textbox {
  font-family: montserrat, sans-serif;
  font-size: 2em;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  color: #ffdd14;
  border: 2px solid #ffdd14;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-checkbox-item label {
  font-family: montserrat, sans-serif;
  font-size: 0.9em;
  color: #ffdd14;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-checkbox-item label a {
  color: #ffdd14;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-buttons-wrapper {
  margin: 0;
  text-align: center;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-buttons-wrapper .submit-button {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: montserrat, sans-serif;
  font-size: 2em;
  margin-top: 2em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  background: #ffdd14;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nick_contest .jotform-form .form-all .form-section .form-line .form-buttons-wrapper .submit-button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nick_contest .jotform-form .form-all .form-section .form-line.form-line-active {
  background-color: transparent;
}
.nick_contest .jotform-form .form-all .form-section .form-line.form-line-active .form-textbox {
  background-color: rgba(255, 255, 255, 0.6);
}
.nick_contest .jotform-form .form-all .form-section .form-line.form-line-error {
  overflow: visible;
  background-color: transparent;
}
.nick_contest .jotform-form .form-all .form-section .form-line.form-line-error .form-textbox {
  background-color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-device-width: 550px) {
  body {
    font-size: 8px !important;
  }
}
.nick_gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.nick_gallery__item {
  height: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}
@media (min-width: 768px) {
  .nick_gallery__item {
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}
.nick_gallery__link, .nick_gallery__img {
  display: block;
  height: 100%;
}
.nick_gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#ancr-314.ancr-wrap,
#ancr-1246.ancr-wrap {
  padding: 18px 36px 18px 18px;
}
#ancr-314.ancr-wrap .ancr-close,
#ancr-1246.ancr-wrap .ancr-close {
  top: 5px;
  right: 5px;
  -webkit-transform: none;
          transform: none;
}
#ancr-314.ancr-wrap .ancr-close .ancr-close-icon,
#ancr-1246.ancr-wrap .ancr-close .ancr-close-icon {
  width: 24px;
  height: 24px;
}
#ancr-314.ancr-wrap .ancr-content,
#ancr-1246.ancr-wrap .ancr-content {
  font-size: 0.955em;
  line-height: 1.6em;
}
#ancr-314.ancr-wrap .ancr-content a,
#ancr-1246.ancr-wrap .ancr-content a {
  text-decoration: underline;
  color: #f66300;
}
#ancr-314.ancr-wrap .ancr-content a:hover,
#ancr-1246.ancr-wrap .ancr-content a:hover {
  text-decoration: none;
}

/**
 * Entraces
 */
.bounce-in-top {
  -webkit-animation: bounce-in-top 1.1s both;
  animation: bounce-in-top 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 9:16:40
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.bounce-in-right {
  -webkit-animation: bounce-in-right 1.1s both;
  animation: bounce-in-right 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 9:17:7
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-right
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-right {
  0% {
    -webkit-transform: translateX(600px);
    transform: translateX(600px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateX(68px);
    transform: translateX(68px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateX(32px);
    transform: translateX(32px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-right {
  0% {
    -webkit-transform: translateX(600px);
    transform: translateX(600px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateX(68px);
    transform: translateX(68px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateX(32px);
    transform: translateX(32px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.bounce-in-bottom {
  -webkit-animation: bounce-in-bottom 1.1s both;
  animation: bounce-in-bottom 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 9:17:34
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.bounce-in-left {
  -webkit-animation: bounce-in-left 1.1s both;
  animation: bounce-in-left 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 9:18:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-left
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-left {
  0% {
    -webkit-transform: translateX(-600px);
    transform: translateX(-600px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateX(-68px);
    transform: translateX(-68px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateX(-28px);
    transform: translateX(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    -webkit-transform: translateX(-600px);
    transform: translateX(-600px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateX(-68px);
    transform: translateX(-68px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateX(-28px);
    transform: translateX(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.bounce-in-fwd {
  -webkit-animation: bounce-in-fwd 1.1s both;
  animation: bounce-in-fwd 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 9:18:34
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-fwd
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-fwd {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(0.84);
    transform: scale(0.84);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-fwd {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(0.84);
    transform: scale(0.84);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.bounce-in-bck {
  -webkit-animation: bounce-in-bck 1.1s both;
  animation: bounce-in-bck 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 9:18:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-bck
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-bck {
  0% {
    -webkit-transform: scale(7);
    transform: scale(7);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-bck {
  0% {
    -webkit-transform: scale(7);
    transform: scale(7);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
/**
 * Attention
 */
.flicker-1 {
  -webkit-animation: flicker-1 2s linear infinite both;
  animation: flicker-1 2s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 21:13:18
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flicker-1
 * ----------------------------------------
 */
@-webkit-keyframes flicker-1 {
  0%, 100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  47.99% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  49.01% {
    opacity: 1;
  }
}
@keyframes flicker-1 {
  0%, 100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  47.99% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  49.01% {
    opacity: 1;
  }
}
.flicker-2 {
  -webkit-animation: flicker-2 2s linear infinite both;
  animation: flicker-2 2s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 21:13:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flicker-2
 * ----------------------------------------
 */
@-webkit-keyframes flicker-2 {
  0%, 100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  45.99% {
    opacity: 1;
  }
  46% {
    opacity: 0;
  }
  46.9% {
    opacity: 0;
  }
  46.91% {
    opacity: 1;
  }
  51.99% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  52.8% {
    opacity: 0;
  }
  52.81% {
    opacity: 1;
  }
}
@keyframes flicker-2 {
  0%, 100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  45.99% {
    opacity: 1;
  }
  46% {
    opacity: 0;
  }
  46.9% {
    opacity: 0;
  }
  46.91% {
    opacity: 1;
  }
  51.99% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  52.8% {
    opacity: 0;
  }
  52.81% {
    opacity: 1;
  }
}
.flicker-3 {
  -webkit-animation: flicker-3 2.5s linear infinite both;
  animation: flicker-3 2.5s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 21:13:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flicker-3
 * ----------------------------------------
 */
@-webkit-keyframes flicker-3 {
  0%, 100% {
    opacity: 1;
  }
  32.98% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  34% {
    opacity: 0;
  }
  34.02% {
    opacity: 1;
  }
  34.98% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  35.9% {
    opacity: 0;
  }
  35.92% {
    opacity: 1;
  }
  38.98% {
    opacity: 1;
  }
  39% {
    opacity: 0;
  }
  39.8% {
    opacity: 0;
  }
  39.82% {
    opacity: 1;
  }
  83.98% {
    opacity: 1;
  }
  84% {
    opacity: 0;
  }
  84.9% {
    opacity: 0;
  }
  84.92% {
    opacity: 1;
  }
}
@keyframes flicker-3 {
  0%, 100% {
    opacity: 1;
  }
  32.98% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  34% {
    opacity: 0;
  }
  34.02% {
    opacity: 1;
  }
  34.98% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  35.9% {
    opacity: 0;
  }
  35.92% {
    opacity: 1;
  }
  38.98% {
    opacity: 1;
  }
  39% {
    opacity: 0;
  }
  39.8% {
    opacity: 0;
  }
  39.82% {
    opacity: 1;
  }
  83.98% {
    opacity: 1;
  }
  84% {
    opacity: 0;
  }
  84.9% {
    opacity: 0;
  }
  84.92% {
    opacity: 1;
  }
}
.flicker-4 {
  -webkit-animation: flicker-4 4s linear infinite both;
  animation: flicker-4 4s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 21:14:2
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flicker-4
 * ----------------------------------------
 */
@-webkit-keyframes flicker-4 {
  0%, 100% {
    opacity: 1;
  }
  31.98% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  32.8% {
    opacity: 0;
  }
  32.82% {
    opacity: 1;
  }
  34.98% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  35.7% {
    opacity: 0;
  }
  35.72% {
    opacity: 1;
  }
  36.98% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  37.6% {
    opacity: 0;
  }
  37.62% {
    opacity: 1;
  }
  67.98% {
    opacity: 1;
  }
  68% {
    opacity: 0;
  }
  68.4% {
    opacity: 0;
  }
  68.42% {
    opacity: 1;
  }
  95.98% {
    opacity: 1;
  }
  96% {
    opacity: 0;
  }
  96.7% {
    opacity: 0;
  }
  96.72% {
    opacity: 1;
  }
  98.98% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  99.6% {
    opacity: 0;
  }
  99.62% {
    opacity: 1;
  }
}
@keyframes flicker-4 {
  0%, 100% {
    opacity: 1;
  }
  31.98% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  32.8% {
    opacity: 0;
  }
  32.82% {
    opacity: 1;
  }
  34.98% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  35.7% {
    opacity: 0;
  }
  35.72% {
    opacity: 1;
  }
  36.98% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  37.6% {
    opacity: 0;
  }
  37.62% {
    opacity: 1;
  }
  67.98% {
    opacity: 1;
  }
  68% {
    opacity: 0;
  }
  68.4% {
    opacity: 0;
  }
  68.42% {
    opacity: 1;
  }
  95.98% {
    opacity: 1;
  }
  96% {
    opacity: 0;
  }
  96.7% {
    opacity: 0;
  }
  96.72% {
    opacity: 1;
  }
  98.98% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  99.6% {
    opacity: 0;
  }
  99.62% {
    opacity: 1;
  }
}
.flicker-5 {
  -webkit-animation: flicker-5 8s linear infinite both;
  animation: flicker-5 8s linear infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-11-26 21:14:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flicker-5
 * ----------------------------------------
 */
@-webkit-keyframes flicker-5 {
  0%, 100% {
    opacity: 1;
  }
  .02% {
    opacity: 1;
  }
  0% {
    opacity: 1;
  }
  1% {
    opacity: 1;
  }
  1.02% {
    opacity: 1;
  }
  8.98% {
    opacity: 1;
  }
  9% {
    opacity: 0;
  }
  9.8% {
    opacity: 0;
  }
  9.82% {
    opacity: 1;
  }
  9.48% {
    opacity: 1;
  }
  9.5% {
    opacity: 1;
  }
  9.6% {
    opacity: 1;
  }
  9.62% {
    opacity: 1;
  }
  14.98% {
    opacity: 1;
  }
  15% {
    opacity: 0.5;
  }
  15.8% {
    opacity: 0.5;
  }
  15.82% {
    opacity: 1;
  }
  15.18% {
    opacity: 1;
  }
  15.2% {
    opacity: 0.7;
  }
  16% {
    opacity: 0.7;
  }
  16.02% {
    opacity: 1;
  }
  15.48% {
    opacity: 1;
  }
  15.5% {
    opacity: 0.5;
  }
  16.2% {
    opacity: 0.5;
  }
  16.22% {
    opacity: 1;
  }
  16.98% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  17.8% {
    opacity: 1;
  }
  17.82% {
    opacity: 1;
  }
  20.48% {
    opacity: 1;
  }
  20.5% {
    opacity: 0.9;
  }
  21.3% {
    opacity: 0.9;
  }
  21.32% {
    opacity: 1;
  }
  20.98% {
    opacity: 1;
  }
  21% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  22.02% {
    opacity: 1;
  }
  39.98% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  41% {
    opacity: 1;
  }
  41.02% {
    opacity: 1;
  }
  40.48% {
    opacity: 1;
  }
  40.5% {
    opacity: 0.6;
  }
  41.4% {
    opacity: 0.6;
  }
  41.42% {
    opacity: 1;
  }
  41.98% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  42.8% {
    opacity: 1;
  }
  42.82% {
    opacity: 1;
  }
  59.98% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  61% {
    opacity: 1;
  }
  61.02% {
    opacity: 1;
  }
  60.18% {
    opacity: 1;
  }
  60.2% {
    opacity: 0.2;
  }
  61% {
    opacity: 0.2;
  }
  61.02% {
    opacity: 1;
  }
  60.78% {
    opacity: 1;
  }
  60.8% {
    opacity: 0.4;
  }
  61.6% {
    opacity: 0.4;
  }
  61.62% {
    opacity: 1;
  }
  61.38% {
    opacity: 1;
  }
  61.4% {
    opacity: 0;
  }
  62.2% {
    opacity: 0;
  }
  62.22% {
    opacity: 1;
  }
  61.78% {
    opacity: 1;
  }
  61.8% {
    opacity: 1;
  }
  62.8% {
    opacity: 1;
  }
  62.82% {
    opacity: 1;
  }
  75.98% {
    opacity: 1;
  }
  76% {
    opacity: 1;
  }
  77% {
    opacity: 1;
  }
  77.02% {
    opacity: 1;
  }
  77.98% {
    opacity: 1;
  }
  78% {
    opacity: 0.7;
  }
  78.8% {
    opacity: 0.7;
  }
  78.82% {
    opacity: 1;
  }
  78.98% {
    opacity: 1;
  }
  79% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  80.02% {
    opacity: 1;
  }
  99.98% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
  101% {
    opacity: 1;
  }
  101.02% {
    opacity: 1;
  }
}
@keyframes flicker-5 {
  0%, 100% {
    opacity: 1;
  }
  .02% {
    opacity: 1;
  }
  0% {
    opacity: 1;
  }
  1% {
    opacity: 1;
  }
  1.02% {
    opacity: 1;
  }
  8.98% {
    opacity: 1;
  }
  9% {
    opacity: 0;
  }
  9.8% {
    opacity: 0;
  }
  9.82% {
    opacity: 1;
  }
  9.48% {
    opacity: 1;
  }
  9.5% {
    opacity: 1;
  }
  9.6% {
    opacity: 1;
  }
  9.62% {
    opacity: 1;
  }
  14.98% {
    opacity: 1;
  }
  15% {
    opacity: 0.5;
  }
  15.8% {
    opacity: 0.5;
  }
  15.82% {
    opacity: 1;
  }
  15.18% {
    opacity: 1;
  }
  15.2% {
    opacity: 0.7;
  }
  16% {
    opacity: 0.7;
  }
  16.02% {
    opacity: 1;
  }
  15.48% {
    opacity: 1;
  }
  15.5% {
    opacity: 0.5;
  }
  16.2% {
    opacity: 0.5;
  }
  16.22% {
    opacity: 1;
  }
  16.98% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  17.8% {
    opacity: 1;
  }
  17.82% {
    opacity: 1;
  }
  20.48% {
    opacity: 1;
  }
  20.5% {
    opacity: 0.9;
  }
  21.3% {
    opacity: 0.9;
  }
  21.32% {
    opacity: 1;
  }
  20.98% {
    opacity: 1;
  }
  21% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  22.02% {
    opacity: 1;
  }
  39.98% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  41% {
    opacity: 1;
  }
  41.02% {
    opacity: 1;
  }
  40.48% {
    opacity: 1;
  }
  40.5% {
    opacity: 0.6;
  }
  41.4% {
    opacity: 0.6;
  }
  41.42% {
    opacity: 1;
  }
  41.98% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  42.8% {
    opacity: 1;
  }
  42.82% {
    opacity: 1;
  }
  59.98% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  61% {
    opacity: 1;
  }
  61.02% {
    opacity: 1;
  }
  60.18% {
    opacity: 1;
  }
  60.2% {
    opacity: 0.2;
  }
  61% {
    opacity: 0.2;
  }
  61.02% {
    opacity: 1;
  }
  60.78% {
    opacity: 1;
  }
  60.8% {
    opacity: 0.4;
  }
  61.6% {
    opacity: 0.4;
  }
  61.62% {
    opacity: 1;
  }
  61.38% {
    opacity: 1;
  }
  61.4% {
    opacity: 0;
  }
  62.2% {
    opacity: 0;
  }
  62.22% {
    opacity: 1;
  }
  61.78% {
    opacity: 1;
  }
  61.8% {
    opacity: 1;
  }
  62.8% {
    opacity: 1;
  }
  62.82% {
    opacity: 1;
  }
  75.98% {
    opacity: 1;
  }
  76% {
    opacity: 1;
  }
  77% {
    opacity: 1;
  }
  77.02% {
    opacity: 1;
  }
  77.98% {
    opacity: 1;
  }
  78% {
    opacity: 0.7;
  }
  78.8% {
    opacity: 0.7;
  }
  78.82% {
    opacity: 1;
  }
  78.98% {
    opacity: 1;
  }
  79% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  80.02% {
    opacity: 1;
  }
  99.98% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
  101% {
    opacity: 1;
  }
  101.02% {
    opacity: 1;
  }
}
.logged-in-message {
  display: none;
}

.message-board {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif !important;
  position: fixed;
  z-index: 2147483647 !important;
  top: 32px;
  right: 10px;
  margin: 0;
  padding: 0;
  color: rgb(255, 255, 255);
}
.message-board__box {
  overflow: hidden;
  width: 35px;
  height: 35px;
  -webkit-transition: width 0.5s ease 0s, border-radius 0.5s ease 0s, -webkit-box-shadow 0.1s ease 0.5s;
  transition: width 0.5s ease 0s, border-radius 0.5s ease 0s, -webkit-box-shadow 0.1s ease 0.5s;
  transition: width 0.5s ease 0s, border-radius 0.5s ease 0s, box-shadow 0.1s ease 0.5s;
  transition: width 0.5s ease 0s, border-radius 0.5s ease 0s, box-shadow 0.1s ease 0.5s, -webkit-box-shadow 0.1s ease 0.5s;
  opacity: 0.92;
  border-bottom: 1.25px solid rgb(91, 0, 92);
  border-radius: 17.5px;
  background-color: rgb(91, 0, 92);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 10px 0;
          box-shadow: rgba(0, 0, 0, 0.2) 0 1px 10px 0;
}
.message-board__count {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 35px;
  display: inline-block;
  float: left;
  width: 35px;
  height: 35px;
  text-align: center;
  color: rgb(255, 255, 255);
}
.message-board__title {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  position: absolute;
  left: 25px;
  display: none;
  height: 35px;
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
  opacity: 0;
  color: white;
}
.message-board__background {
  overflow: hidden;
  width: 35px;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease 0s, width 0.5s ease 0s, border-bottom-left-radius 0.5s ease 0s, border-bottom-right-radius 0.5s ease 0s, opacity 0.5s ease 0s;
  transition: max-height 0.5s ease 0s, width 0.5s ease 0s, border-bottom-left-radius 0.5s ease 0s, border-bottom-right-radius 0.5s ease 0s, opacity 0.5s ease 0s;
  opacity: 0;
  border-radius: 0;
  background-image: linear-gradient(40deg, rgb(113, 27, 114) 0%, rgb(70, 14, 71) 90%);
}
.message-board__list {
  margin: 0;
  padding: 10px;
  text-align: left;
  color: white;
}
.message-board .logged-in-message {
  font-family: "Open Sans", Roboto, Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 16px !important;
  display: inline-block;
  overflow: hidden;
  width: 380px;
  height: 16px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.message-board:hover .message-board__box {
  width: 400px;
  cursor: default;
  opacity: 1;
  border-radius: 2px 2px 0 0;
}
.message-board:hover .message-board__title {
  display: inline-block;
  opacity: 1;
}
.message-board:hover .message-board__close {
  visibility: visible;
}
.message-board:hover .message-board__background {
  width: 400px;
  max-height: 5000px;
  opacity: 0.9;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.nick-ad-label {
  position: absolut;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
}
.nick-ad-label__container {
  font-size: 0.8em;
  font-weight: 700;
  display: inline-block;
  padding: 6px 10px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .nick-ad-label__container {
    font-size: 1.2em;
    padding: 10px 20px;
  }
}

.nick-text__container {
  margin: 0 auto;
}

.nick-3d-customizer {
  position: relative;
  margin: 0 auto;
}
.nick-3d-customizer__stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nick-3d-customizer__controls {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}
@media (min-width: 480px) {
  .nick-3d-customizer__controls {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}
@media (min-width: 768px) {
  .nick-3d-customizer__controls {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 25%;
            flex: 0 1 25%;
  }
}
.nick-3d-customizer__control-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  row-gap: 4px;
}
@media (min-width: 480px) {
  .nick-3d-customizer__control-list {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 12px;
  }
}
.nick-3d-customizer__control-item {
  position: relative;
  overflow: hidden;
  -ms-flex-wrap: 0 1 49%;
      flex-wrap: 0 1 49%;
}
.nick-3d-customizer__control-item img {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.nick-3d-customizer__control-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nick-3d-customizer__canvas-wrapper {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65%;
          flex: 0 1 65%;
}
@media (min-width: 480px) {
  .nick-3d-customizer__canvas-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
  }
}
@media (min-width: 768px) {
  .nick-3d-customizer__canvas-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 75%;
            flex: 0 1 75%;
  }
}
.nick-3d-customizer__canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.nick-3d-customizer__rotate-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
@media (min-width: 480px) {
  .nick-3d-customizer__rotate-btn {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) {
  .nick-3d-customizer__rotate-btn {
    width: 39px;
    height: 39px;
  }
}
.nick-3d-customizer__rotate-btn img {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nick-3d-customizer__rotate-btn:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nick-3d-customizer__btn-up {
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 480px) {
  .nick-3d-customizer__btn-up {
    top: 20px;
  }
}
.nick-3d-customizer__btn-right {
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 480px) {
  .nick-3d-customizer__btn-right {
    right: 20px;
  }
}
.nick-3d-customizer__btn-down {
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 480px) {
  .nick-3d-customizer__btn-down {
    bottom: 20px;
  }
}
.nick-3d-customizer__btn-left {
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 480px) {
  .nick-3d-customizer__btn-left {
    left: 20px;
  }
}
.nick-3d-customizer__color-list-wrapper {
  position: relative;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .nick-3d-customizer__color-list-wrapper {
    padding: 0 50px;
  }
}
.nick-3d-customizer__prev, .nick-3d-customizer__next {
  position: absolute;
  top: 0;
  cursor: pointer;
}
.nick-3d-customizer__prev img, .nick-3d-customizer__next img {
  height: 30px !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .nick-3d-customizer__prev img, .nick-3d-customizer__next img {
    height: 40px !important;
  }
}
.nick-3d-customizer__prev:hover img, .nick-3d-customizer__next:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nick-3d-customizer__prev {
  left: 0;
}
.nick-3d-customizer__next {
  right: 0;
  text-align: right;
}
.nick-3d-customizer__color-item {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  border: none;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .nick-3d-customizer__color-item {
    width: 40px;
    height: 40px;
  }
}
.nick-3d-customizer__loader {
  width: 100px;
  height: 100px;
  -webkit-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px;
}
.nick-3d-customizer__loader.loading {
  position: absolute;
  z-index: 250;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.spinner {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
}
.spinner div {
  position: absolute;
  -webkit-animation: spinner-keyframes 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: spinner-keyframes 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  opacity: 1;
  border: 4px solid #333;
  border-radius: 50%;
}
.spinner div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes spinner-keyframes {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@keyframes spinner-keyframes {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.drag-notice {
  font-size: 0.9em;
  font-weight: 800;
  position: absolute;
  z-index: 101;
  top: 50%;
  left: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 10em;
  height: 10em;
  margin: -5em 0 0 -5em;
  padding: 2em;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5em;
  background: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drag-notice.start {
  -webkit-animation: popout 0.25s 3s forwards;
  animation: popout 0.25s 3s forwards;
}

@-webkit-keyframes popout {
  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes popout {
  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes wheelin {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes wheelin {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.nick-player {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 980px) {
  .nick-player {
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: auto 70px;
  }
}
.nick-player__edge {
  width: 100% !important;
}
@media (min-width: 980px) {
  .nick-player__edge {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.nick-player__title {
  font-size: 1.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  margin: 0;
  padding: 0 10px;
  color: #ffdd14;
  background: #000;
  grid-column: 1/2;
  grid-row: 2/3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 980px) {
  .nick-player__title {
    font-size: 1em;
    height: auto;
  }
}
.nick-player__list::-webkit-scrollbar {
  display: none;
}
.nick-player__list {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  background: #fff;
  grid-column: 2/3;
  grid-row: 1/3;
}
.nick-player--vertical {
  display: block;
}
.nick-player--vertical .nick-playlist {
  display: block;
  white-space: nowrap;
}
.nick-player--vertical .nick-playlist__item {
  display: inline-block;
  max-width: 200px;
}
@media (min-width: 980px) {
  .nick-player--no-title {
    grid-template-rows: 28vw;
  }
  .nick-player--no-title .nick-player__list {
    grid-row: 1/2;
  }
}
@media (min-width: 980px) {
  .nick-player--no-playlist {
    grid-template-columns: 100%;
    grid-template-rows: auto 70px;
  }
}
.nick-player.nick-player--no-title.nick-player--no-playlist {
  grid-template-columns: 100%;
  grid-template-rows: auto;
}

.nick-playlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 980px) {
  .nick-playlist {
    display: block;
  }
}
.nick-playlist__item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 140px;
  padding: 10px;
  position: relative;
  cursor: pointer;
  background: #fff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 980px) {
  .nick-playlist__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    padding: 10px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.nick-playlist__item:hover {
  background: #ffdd14;
}
.nick-playlist__item-img {
  width: 100%;
}
@media (min-width: 980px) {
  .nick-playlist__item-img {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
.nick-playlist__item-title {
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 5px;
}
@media (min-width: 980px) {
  .nick-playlist__item-title {
    font-size: 1em;
    margin-left: 10px;
  }
}
.nick-playlist__play-button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scale(1); /* WebKit */ /* Mozilla */ /* Internet Explorer */ /* Opera */
  transform: translateY(-50%) scale(1); /* CSS3 */
  width: 100%;
  text-align: center;
}
.nick-playlist__play-button img {
  width: 100%;
}
.nick-playlist__play-button:hover {
  -webkit-transform: translateY(-50%) scale(1.1); /* WebKit */ /* Mozilla */ /* Internet Explorer */ /* Opera */
  transform: translateY(-50%) scale(1.1); /* CSS3 */
}

.nick-teaser__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-flow: row;
      flex-flow: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nick-teaser__item {
  overflow: hidden;
  width: 48%;
  margin: 0 1% 1.6% 1%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(1) translateZ(0) perspective(1px);
  transform: scale(1) translateZ(0) perspective(1px);
}
@media (min-width: 480px) {
  .nick-teaser__item {
    width: 31.33333%;
  }
}
@media (min-width: 768px) {
  .nick-teaser__item {
    width: 23%;
  }
}
.nick-teaser__item:hover {
  -webkit-transform: scale(1.01) translateZ(0) perspective(1px);
  transform: scale(1.01) translateZ(0) perspective(1px);
  -webkit-box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.3);
}
.nick-teaser__image img {
  width: 100%;
  max-width: none;
}

.viacom-api {
  position: relative;
  padding: 0 80px;
}
.viacom-api__swiper {
  overflow: hidden;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.viacom-api__content {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.viacom-api__item.swiper-slide {
  height: auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(1) translateZ(0) perspective(1px);
          transform: scale(1) translateZ(0) perspective(1px);
  background: #e94f35;
}
.viacom-api__item.swiper-slide:hover {
  -webkit-transform: scale(1.01) translateZ(0) perspective(1px);
          transform: scale(1.01) translateZ(0) perspective(1px);
  -webkit-box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.3);
}
.viacom-api__image img {
  width: 100%;
}
.viacom-api__meta {
  padding: 24px;
}
.viacom-api__prev, .viacom-api__next {
  -webkit-transform: translateY(-50%); /* WebKit */ /* Mozilla */ /* Internet Explorer */ /* Opera */
  transform: translateY(-50%); /* CSS3 */
  font-size: 60px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #e94f35;
}
.viacom-api__prev:hover, .viacom-api__next:hover {
  color: #318634;
}
.viacom-api__prev {
  left: 20px;
}
.viacom-api__next {
  right: 20px;
}

.viacom-collage {
  position: relative;
  margin: 0 auto;
}
.viacom-collage__background {
  width: 100%;
}
.viacom-collage__background img {
  width: 100%;
}
.viacom-collage__item {
  position: absolute;
  width: 100%;
}

.viacom-table {
  margin: 0 auto;
}
.viacom-table__table {
  width: 100%;
  border-collapse: collapse;
}
.viacom-table__cell {
  vertical-align: top;
}
.viacom-table__cell p {
  margin: 0;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Styles
--------------------------------------------------------------*/
.ema2021 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ema2021__video-poster {
  position: absolute !important;
  top: 10px;
  left: 10px;
  display: none;
  width: calc(100% - 20px) !important;
  height: calc(100% - 20px);
  cursor: pointer;
}
.ema2021__video-poster .elementor-widget-container {
  height: 100%;
}
.ema2021__video-poster img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.ema2021__info {
  padding: 30px 60px 45px 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media (min-width: 1024px) {
  .ema2021__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% + 30px);
            flex: 0 1 calc(50% + 30px);
  }
}
.ema2021__info-title {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  font-weight: 400;
  max-width: 50%;
  color: #fff;
}
.ema2021__info-text {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1em;
  max-width: 50%;
  color: #fefe00;
}
.ema2021__getready {
  position: relative;
  margin-top: -15%;
}
.ema2021__getready-dott {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  position: absolute;
  display: inline-block;
  width: 8%;
  border-radius: 50%;
}
.ema2021__getready-dott--active {
  cursor: pointer;
  -webkit-animation: beat 1.5s ease 0s infinite;
          animation: beat 1.5s ease 0s infinite;
  -webkit-box-shadow: 0 7px 20px hsla(0deg, 0%, 0%, 0.2);
          box-shadow: 0 7px 20px hsla(0deg, 0%, 0%, 0.2);
}
.ema2021__getready-dott--active:before, .ema2021__getready-dott--active:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.4;
  border-radius: inherit;
  background-color: #fefe00;
}
.ema2021__getready-dott--active:before {
  z-index: -2;
  -webkit-animation: beat-before 1.5s ease 100ms infinite;
          animation: beat-before 1.5s ease 100ms infinite;
}
.ema2021__getready-dott--active:after {
  z-index: -1;
  -webkit-animation: beat-after 1.5s ease 200ms infinite;
          animation: beat-after 1.5s ease 200ms infinite;
}
@-webkit-keyframes beat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes beat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes beat-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes beat-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@-webkit-keyframes beat-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@keyframes beat-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.ema2021__getready-dott-1 {
  top: 72%;
  left: 0;
}
.ema2021__getready-dott-2 {
  top: 76.4%;
  left: 28.8%;
}
.ema2021__getready-dott-3 {
  top: 50%;
  left: 55.4%;
}
.ema2021__getready-dott-4 {
  top: 0;
  right: 19%;
}
.ema2021__getready-dott-5 {
  top: 52%;
  right: 0;
}
.ema2021__stop-info {
  position: relative;
  display: none;
  width: 100%;
  padding: 0 20px 60px 10px;
  background: #fefe00;
}
@media (min-width: 768px) {
  .ema2021__stop-info {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .ema2021__stop-info {
    width: calc(25% - 30px);
  }
  .ema2021__stop-info:before {
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 20px;
    height: calc(100% - 86px);
    content: "";
    background: #fefe00;
  }
}
.ema2021__stop-info.active {
  display: block;
}
.ema2021__stop-info-arrow {
  position: absolute;
  top: 0;
  left: -20px;
  display: none;
}
@media (min-width: 1024px) {
  .ema2021__stop-info-arrow {
    display: block;
  }
}
.ema2021__stop-info-title {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  font-size: 1.875em;
}
.ema2021__stop-info-text {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  font-size: 14px;
  line-height: 1.1em;
}
.ema2021__stop-info-button {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 20px;
  padding: 0 0 0 10px;
  border: 2px solid #000;
}
.ema2021__stop-info-button-arrow {
  display: inline-block;
  margin-left: 10px;
  padding: 0 3px 0 8px;
  color: #fff;
  background: #000;
}
.ema2021__links {
  display: none;
  width: 100%;
  padding-top: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .ema2021__links {
    width: 50%;
    padding-top: 0;
    padding-left: 20px;
  }
}
@media (min-width: 1024px) {
  .ema2021__links {
    width: 25%;
  }
}
.ema2021__links.active {
  display: grid;
}
.ema2021__links-1 {
  grid-template-rows: 1fr;
}
@media (min-width: 768px) {
  .ema2021__links-1 {
    grid-template-rows: 1fr 1fr;
  }
}
.ema2021__link-item {
  position: relative;
}
.ema2021__link-item a {
  display: block;
  height: 100%;
}
.ema2021__link-img {
  height: 100%;
}
.ema2021__link-img img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.ema2021__link-hash {
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fefe00;
}

.post-password-required {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  background: url("img/mtv_2021_background.png") #101010 no-repeat;
  background-size: cover;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-password-required .post-password-form {
  padding: 90px 40px 30px;
  text-align: center;
  color: #fff;
  border: 1px dasehd #fff;
  background: url(img/MTV-Logo-2021.png) center 30px #101010 no-repeat;
  background-size: 80px;
}
.post-password-required .post-password-form p:first-of-type {
  max-width: 500px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}
.post-password-required .post-password-form label input {
  width: 250px;
  height: 38px;
  margin-left: 10px;
  padding: 0 10px;
  color: #000;
}
.post-password-required .post-password-form input[type=submit] {
  margin-left: 5px;
  padding: 0.8em 1.4em 0.7em;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background-color, border, color, opacity;
  transition-property: background-color, border, color, opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  text-align: center;
  text-transform: uppercase;
  color: #000;
  border: none;
  background: #f7f908;
}
.post-password-required .post-password-form input[type=submit]:hover {
  background: #00aacd;
}

.home {
  background: url("img/mtv_2021_background.png") #101010 no-repeat;
  background-size: cover;
}
.home .wrapper {
  position: relative;
}

.contests {
  padding: 36px 0;
}
.contests__list {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.contests__item {
  position: relative;
  height: auto;
  margin: 0 12px 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(1) translateZ(0) perspective(1px);
          transform: scale(1) translateZ(0) perspective(1px);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
}
@media (min-width: 600px) {
  .contests__item {
    height: 540px;
  }
}
.contests__item:hover {
  -webkit-transform: scale(1.01) translateZ(0) perspective(1px);
          transform: scale(1.01) translateZ(0) perspective(1px);
  -webkit-box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.3);
}
.contests__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.contests__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contests__image:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.7), transparent);
}
.contests__meta {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 40%;
  padding: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media (min-width: 600px) {
  .contests__meta {
    padding: 48px;
  }
}
.contests__header {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 600px) {
  .contests__header {
    font-size: 28px;
    line-height: 28px;
  }
}
.contests__link {
  font-weight: 700;
  display: none;
  text-transform: uppercase;
  color: #87e1ed;
}
@media (min-width: 600px) {
  .contests__link {
    display: block;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-cta {
  position: absolute !important;
  width: 25% !important;
  top: 50px;
  left: 63%;
}

.contest-btn {
  -webkit-animation: pulsate-fwd 1.6s ease-in-out infinite both;
  animation: pulsate-fwd 1.6s ease-in-out infinite both;
}

/*--------------------------------------------------------------
# Video Box
--------------------------------------------------------------*/
.header-video {
  height: 100%;
  background: #000;
}

/*--------------------------------------------------------------
# Info Box
--------------------------------------------------------------*/
.contest-info {
  height: 100%;
}
.contest-info p {
  margin: 0 0 15px 0;
}
.contest-info .elementor-container {
  height: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.contest-info__frame-left:before, .contest-info__frame-right:before {
  position: absolute;
  width: 6px;
  height: calc(100% - 52px);
  content: "";
  background: var(--e-global-color-secondary);
}
.contest-info__frame-left:before {
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .contest-info__frame-left:before {
    bottom: 4px;
  }
}
.contest-info__frame-right:before {
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .contest-info__frame-right:before {
    top: 4px;
  }
}

/*--------------------------------------------------------------
# Product Info
--------------------------------------------------------------*/
.product-image,
.product-image .elementor-widget-container,
.product-image .elementor-widget-container a,
.product-image .elementor-widget-container img {
  height: 100%;
}

.product-image .elementor-widget-container a {
  display: block;
}

.product-image .elementor-widget-container img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom left;
     object-position: bottom left;
}

.xiaomi-text a {
  color: #000;
  font-family: "MTVGravityGrotesk-Bold", Sans-serif;
}

.xiaomi-text a:hover {
  text-decoration: underline !important;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-10-14 15:50:24
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.musicweek__countdown .elementor-countdown-item {
  position: relative;
}
.musicweek__countdown .elementor-countdown-days:after,
.musicweek__countdown .elementor-countdown-hours:after,
.musicweek__countdown .elementor-countdown-minutes:after {
  position: absolute;
  top: 16px;
  right: -18%;
  content: ":";
}
@media (min-width: 768px) {
  .musicweek__countdown .elementor-countdown-days:after,
.musicweek__countdown .elementor-countdown-hours:after,
.musicweek__countdown .elementor-countdown-minutes:after {
    top: 14px;
    right: -12%;
  }
}
@media (min-width: 1024px) {
  .musicweek__countdown .elementor-countdown-days:after,
.musicweek__countdown .elementor-countdown-hours:after,
.musicweek__countdown .elementor-countdown-minutes:after {
    top: 10px;
    right: -8%;
  }
}
.musicweek__about-wrapper {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1.95%, rgb(233, 79, 53)), color-stop(36.41%, rgb(203, 206, 194)), color-stop(58.59%, rgb(221, 188, 183)), color-stop(99.81%, rgb(69, 101, 173)));
  background: linear-gradient(0deg, rgb(233, 79, 53) 1.95%, rgb(203, 206, 194) 36.41%, rgb(221, 188, 183) 58.59%, rgb(69, 101, 173) 99.81%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#E94F35', endColorstr='#4565AD' ,GradientType=0)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4565AD",endColorstr="#E94F35" , GradientType=0);
}
.musicweek__about-left .elementor-widget-wrap, .musicweek__about-right .elementor-widget-wrap {
  background-size: auto 100%;
}
.musicweek__lineup-wrapper .viacom-table__table {
  -webkit-box-shadow: 9px 10px 39px 0 rgba(23, 21, 17, 0.5);
          box-shadow: 9px 10px 39px 0 rgba(23, 21, 17, 0.5);
}
.musicweek__lineup-wrapper .viacom-table__cell.viacom-table__column-1 {
  width: 100px;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__cell.viacom-table__column-1 {
    width: 140px;
  }
}
@media (min-width: 1024px) {
  .musicweek__lineup-wrapper .viacom-table__cell.viacom-table__column-1 {
    width: 170px;
  }
}
@media (max-width: 767px) {
  .musicweek__lineup-wrapper .viacom-table__cell.viacom-table__column-1 {
    padding: 16px 0 16px 20px !important;
  }
}
.musicweek__lineup-wrapper .viacom-table__cell-line {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__cell-line {
    margin-bottom: 12px;
  }
}
.musicweek__lineup-wrapper .viacom-table__presents {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__presents {
    font-size: 16px;
  }
}
.musicweek__lineup-wrapper .viacom-table__text-strong {
  font-size: 20px;
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__text-strong {
    font-size: 22px;
  }
}
.musicweek__lineup-wrapper .viacom-table__text-normal {
  font-size: 18px;
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__text-normal {
    font-size: 22px;
    margin: 0;
  }
}
.musicweek__lineup-wrapper .viacom-table__cell-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__cell-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.musicweek__lineup-wrapper .viacom-table__cell-text a:not(.ticket-btn) {
  color: inherit;
}
.musicweek__lineup-wrapper .viacom-table__cell-text a:hover {
  color: #e94f35;
}
.musicweek__lineup-wrapper .viacom-table__cell-text .fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .viacom-table__cell-tickets {
    margin: 0 0 0 auto;
  }
}
.musicweek__lineup-wrapper .ticket-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
  padding: 1px 18px;
  vertical-align: top;
  color: #1e1e1b;
  border-radius: 20px;
  background: #e94f35;
}
@media (min-width: 768px) {
  .musicweek__lineup-wrapper .ticket-btn {
    margin-top: 0;
    margin-left: 20px;
    padding: 1px 18px;
  }
}
@media (min-width: 1024px) {
  .musicweek__lineup-wrapper .ticket-btn {
    font-size: 18px;
    padding: 2px 18px;
  }
}
.musicweek__lineup-wrapper .ticket-btn:hover {
  color: #fff;
  background: #318634;
}
.musicweek__footer-wrapper {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(203, 206, 194)), color-stop(50%, rgb(69, 101, 173)), color-stop(98.01%, rgb(30, 30, 27)));
  background: linear-gradient(0deg, rgb(203, 206, 194) 0%, rgb(69, 101, 173) 50%, rgb(30, 30, 27) 98.01%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CBCEC2', endColorstr='#1E1E1B' ,GradientType=0)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1E1E1B",endColorstr="#CBCEC2" , GradientType=0);
}
