/* -----------------------------------------------------------------------------

  CSS RESET

----------------------------------------------------------------------------- */
html, body {
  border: 0;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

div, span, object, iframe, img, table, caption, thead,
tbody, tfoot, tr, tr, td, article, aside, canvas, details,
figure, hgroup, menu, nav, footer, header, section, summary,
mark, audio, video {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr,
address, cit, code, del, dfn, em, ins, q, samp, small,
strong, sub, sup, b, i, hr, dl, dt, dd, ol, ul, li, fieldset,
legend, label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

ol {
  list-style: decimal;
}
ol li {
  margin-bottom: 10px;
  list-style-position: inside;
}
ol li ol {
  margin-left: 16px;
}
ol li ol li {
  list-style: lower-alpha;
  list-style-position: inside;
}

article, aside, canvas, figure, figure img, figcaption,
hgroup, footer, header, nav, section, audio, video {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption, table th, table td {
  text-align: left;
  vertical-align: middle;
}

a img {
  border: 0;
}

:focus {
  outline: 0;
}

/* -----------------------------------------------------------------------------

  TYPOGRAPHY
  
----------------------------------------------------------------------------- */
html {
  font: 100%/1.5 "Lato";
}

body, input, button {
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2.9em;
  font-family: "Lato";
  font-weight: 900;
}

h2 {
  font-size: 1.75em;
  font-family: "Lato";
  font-weight: 700;
}

h3 {
  font-size: 1.15em;
  font-family: "Lato";
  font-weight: 700;
}

h4 {
  font-size: 1em;
  font-family: "Lato";
  font-weight: 400;
}

h5 {
  font-size: 0.875em;
  font-family: "Lato";
  font-weight: 400;
}

h6 {
  font-size: 0.75em;
  font-family: "Lato";
  font-weight: 300;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-family: "Lato";
}

a, a:visited, a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.uc {
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------------

  RU GRID 2016

----------------------------------------------------------------------------- */
.scope *, .scope *:before, .scope *:after {
  box-sizing: border-box;
}
.scope .container {
  width: 100%;
  max-width: 1068px;
  margin: auto;
}
.scope .row {
  width: 100%;
  display: block;
  margin: auto;
}
.scope .row:after {
  content: "";
  display: block;
  clear: both;
}
.scope [class*="col-"].inside:first-of-type {
  padding-left: 0;
}
.scope [class*="col-"].inside:last-of-type {
  padding-right: 0;
}
@media (max-width: 968px) {
  .scope [class*="col-"].inside {
    padding: 0;
  }
}
.scope .left-align {
  float: left !important;
}
.scope .right-align {
  float: right !important;
}
.scope .col-1-1 {
  display: block;
  float: left;
  width: 100%;
  padding: 0 16px;
  margin: auto;
}
.scope .col-1-2 {
  display: block;
  float: left;
  width: 50%;
  padding: 0 16px;
  margin: auto;
}
.scope .col-1-3 {
  display: block;
  float: left;
  width: 33.3333333333%;
  padding: 0 16px;
  margin: auto;
}
.scope .col-2-3 {
  display: block;
  float: left;
  width: 66.6666666667%;
  padding: 0 16px;
  margin: auto;
}
.scope .col-1-4 {
  display: block;
  float: left;
  width: 25%;
  padding: 0 16px;
  margin: auto;
}
.scope .col-3-4 {
  display: block;
  float: left;
  width: 75%;
  padding: 0 16px;
  margin: auto;
}
@media (max-width: 1068px) {
  .scope .lg-col-1-1 {
    display: block;
    float: left;
    width: 100%;
    padding: 0 16px;
    margin: auto;
  }
  .scope .lg-col-1-2 {
    display: block;
    float: left;
    width: 50%;
    padding: 0 16px;
    margin: auto;
  }
}
@media (max-width: 968px) {
  .scope .md-col-1-1 {
    display: block;
    float: left;
    width: 100%;
    padding: 0 16px;
    margin: auto;
  }
  .scope .md-col-1-2 {
    display: block;
    float: left;
    width: 50%;
    padding: 0 16px;
    margin: auto;
  }
  .scope .md-col-1-3 {
    display: block;
    float: left;
    width: 33.3333333333%;
    padding: 0 16px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .scope .sm-col-1-1 {
    display: block;
    float: left;
    width: 100%;
    padding: 0 16px;
    margin: auto;
  }
  .scope .sm-col-1-2 {
    display: block;
    float: left;
    width: 50%;
    padding: 0 16px;
    margin: auto;
  }
}
@media (max-width: 580px) {
  .scope .xs-col-1-1 {
    display: block;
    float: left;
    width: 100%;
    padding: 0 16px;
    margin: auto;
  }
  .scope .xs-col-1-2 {
    display: block;
    float: left;
    width: 50%;
    padding: 0 16px;
    margin: auto;
  }
}

/* -----------------------------------------------------------------------------

  BASE CSS START

----------------------------------------------------------------------------- */
body {
  background: #000;
  color: #fff;
}

.scope {
  /* ----------------------------------------------------------------------------
  
    HEADER
  
  -----------------------------------------------------------------------------*/
  /* -----------------------------------------------------------------------------
  
    HERO SLIDER
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    SECTION ONE
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    WINNERS TICKER
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    WINNERS TICKER
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    SECTION TWO
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    VIDEO BANNER
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    SECTION THREE
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    SECTION THREE ATTACHMENT
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    FOOTER
  
  ----------------------------------------------------------------------------- */
  /* -----------------------------------------------------------------------------
  
    INTERIOR PAGES
  
  -------------------------------------------------------------------------------*/
  /* -----------------------------------------------------------------------------
  
    SCOPE END
  
  ----------------------------------------------------------------------------- */
}
.scope .header-wrapper .space-bkg {
  width: 100%;
  background: #aeaeae;
  height: 120px;
  position: relative;
  background-image: url("../img/lights-bkg.png");
  background-size: cover;
}
.scope .header-wrapper .space-bkg .info-box {
  position: relative;
  z-index: 4;
}
.scope .header-wrapper .space-bkg .info-box ul {
  position: absolute;
  background: #000;
  padding: 10px 20px;
  right: 0;
}
.scope .header-wrapper .space-bkg .info-box ul li {
  display: inline-block;
  font-size: 22px;
}
.scope .header-wrapper .space-bkg .info-box ul li a {
  color: #04c99d;
}
.scope .header-wrapper .space-bkg .info-box ul li.social-icon {
  font-size: 16px;
}
.scope .header-wrapper .space-bkg .info-box ul li.social-icon a {
  color: #fff;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.scope .header-wrapper .space-bkg .info-box ul li.social-icon a:hover {
  color: #04c99d;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
@media (max-width: 768px) {
  .scope .header-wrapper .space-bkg .info-box ul li {
    font-size: 18px;
  }
}
@media (max-width: 580px) {
  .scope .header-wrapper .space-bkg .info-box ul li {
    font-size: 16px;
  }
}
.scope .header-wrapper .space-bkg .video-container {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  overflow: hidden;
}
.scope .header-wrapper .space-bkg .video-container video {
  position: absolute;
  width: 100%;
  height: auto;
  top: -250px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 968px) {
  .scope .header-wrapper .space-bkg .video-container video {
    top: -150px;
  }
}
@media (max-width: 580px) {
  .scope .header-wrapper .space-bkg .video-container video {
    top: 0px;
  }
}
.scope .header-wrapper .space-bkg .video-container video::-webkit-media-controls {
  display: none !important;
}
.scope .header-wrapper .navigation-wrapper .logo-wrapper {
  position: relative;
  width: 100%;
  height: 46px;
}
.scope .header-wrapper .navigation-wrapper .logo-wrapper img {
  position: absolute;
  top: -100px;
}
@media (max-width: 320px) {
  .scope .header-wrapper .navigation-wrapper .logo-wrapper img {
    width: 100%;
    top: -60px;
  }
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper {
  text-align: right;
  padding: 25px 0;
  position: relative;
  display: block;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li a {
  font-size: 18px;
  color: #fff;
  margin: 0 5px;
  border-top: 1px solid transparent;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li a:hover {
  border-top: 1px solid #04c99d;
  color: #04c99d;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li ul {
  display: none;
  position: absolute;
  left: 5px;
  top: 24px;
  z-index: 1000;
  background: #2e2e2e;
  padding: 10px 0;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  min-width: 200px;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li ul li {
  margin-left: 0;
  display: block;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li ul li a {
  float: left;
  color: #fff;
  display: block;
  width: 100%;
  padding: 0px 15px 5px 10px;
  margin: 0;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li ul li a:hover {
  color: #fff;
  background: #04c99d;
  background: rgba(4, 201, 157, 0.5);
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li ul:hover {
  display: block;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
@media (max-width: 1270px) {
  .scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li ul {
    right: 5px;
    left: auto;
  }
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li:hover {
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li:hover ul {
  display: block;
  -webkit-transition: .4s linear;
  transition: .4s linear;
  visibility: visible;
  opacity: 1;
}
.scope .header-wrapper .navigation-wrapper .mainnav-wrapper ul li:hover ul li {
  border: none;
}
@media (max-width: 980px) {
  .scope .header-wrapper .navigation-wrapper .mainnav-wrapper {
    display: none;
  }
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper {
  display: none;
  padding: 40px 0;
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper .mobile-nav {
  display: block;
  float: right;
  position: relative;
  /* Mobile Nav */
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper .mobile-nav .menu-collapsed {
  -webkit-transition: all .25s;
  transition: all .25s;
  position: relative;
  top: -20px;
  height: 36px;
  width: 36px;
  z-index: 1;
  cursor: pointer;
  display: block;
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper .mobile-nav .menu-collapsed:before {
  content: "";
  position: absolute;
  color: #fff;
  top: 8px;
  right: 36px;
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper .mobile-nav .bar {
  position: absolute;
  top: 16px;
  height: 6px;
  width: 30px;
  right: 0;
  border-radius: 15px;
  background-color: white;
  display: block;
  z-index: 10;
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper .mobile-nav .bar:before {
  -webkit-transition: all .25s;
  transition: all .25s;
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  height: 6px;
  width: 30px;
  border-radius: 15px;
  background-color: white;
}
.scope .header-wrapper .navigation-wrapper .mobilenav-wrapper .mobile-nav .bar:after {
  -webkit-transition: all .25s;
  transition: all .25s;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 6px;
  width: 30px;
  border-radius: 15px;
  background-color: white;
}
@media (max-width: 980px) {
  .scope .header-wrapper .navigation-wrapper .mobilenav-wrapper {
    display: block;
  }
}
.scope .hero-slider-wrapper {
  background: #000;
  position: relative;
  max-height: 455px;
  padding-top: 10px;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-wrapper .owl-item p {
  margin: 0px;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls {
  text-align: center;
  position: absolute;
  height: 10px;
  width: 100%;
  bottom: 30px;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-page {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background: #04c99d;
  display: inline-block;
  margin: 0px 5px;
  border-radius: 100%;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-page.active {
  background: #fff;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-pagination {
  width: 100%;
  position: relative;
  max-width: 200px;
  margin: 0 auto;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-pagination .dot-arrow-left, .scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-pagination .dot-arrow-right {
  position: absolute;
  height: 23px;
  width: 18px;
  top: 0;
  cursor: pointer;
  background-repeat: no-repeat;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-pagination .dot-arrow-left {
  background: url("../img/small-arrow-left.png");
  background-repeat: no-repeat;
  left: 0;
}
.scope .hero-slider-wrapper #hero-slider.owl-carousel .owl-controls .owl-pagination .dot-arrow-right {
  background: url("../img/small-arrow-right.png");
  background-repeat: no-repeat;
  right: 0;
}
.scope .hero-slider-wrapper #hero-slider img {
  width: 100%;
  height: auto;
  display: block;
}
.scope .hero-slider-wrapper .hero-arrow-left, .scope .hero-slider-wrapper .hero-arrow-right {
  position: absolute;
  width: 29px;
  height: 37px;
  background-size: contain;
  top: 40%;
  cursor: pointer;
}
@media (max-width: 580px) {
  .scope .hero-slider-wrapper .hero-arrow-left, .scope .hero-slider-wrapper .hero-arrow-right {
    display: none;
  }
}
.scope .hero-slider-wrapper .hero-arrow-left {
  background: url("../img/green-arrow-left.png");
  left: 2%;
}
.scope .hero-slider-wrapper .hero-arrow-right {
  background: url("../img/green-arrow-right.png");
  right: 2%;
}
.scope .section-one-wrapper {
  border-top: 3px solid #b12146;
  background: #0D0D0D;
  position: relative;
}
.scope .section-one-wrapper .bucket-wrapper a img {
  width: 100%;
  height: auto;
}
.scope .slot-cta-wrapper {
  padding: 4em 0;
  width: 100%;
  background: #252525;
  background-image: url("../img/reel-spinning.jpg");
  background-position: 50% 50%;
  background-attachment: fixed;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.scope .slot-cta-wrapper .slot-cta h2 {
  color: #FFFFFF;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 4em;
  text-shadow: 1px 1px 5px #aeaeae;
}
@media (max-width: 768px) {
  .scope .slot-cta-wrapper .slot-cta h2 {
    font-size: 3em;
  }
}
@media (max-width: 580px) {
  .scope .slot-cta-wrapper .slot-cta h2 {
    font-size: 2em;
  }
}
.scope .slot-cta-wrapper .slot-cta p a {
  color: #fff;
  padding: 10px 10%;
  border: 1px solid #fff;
  text-transform: uppercase;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
  text-shadow: 1px 1px 5px #aeaeae;
  box-shadow: 1px 1px 5px #aeaeae;
}
.scope .slot-cta-wrapper .slot-cta p a:hover {
  color: #BDBDBD;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
  border: 1px solid #4E4E4E;
}
.scope .winners-ticker-wrapper {
  width: 100%;
  background: #b12146;
  overflow: hidden;
}
.scope .section-two-wrapper {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  background: url("../img/section-two-bkg.png");
  background-size: cover;
  min-height: 688px;
  overflow: hidden;
}
.scope .section-two-wrapper .banner-wrapper img {
  width: 100%;
  max-width: 636px;
}
.scope .section-two-wrapper .learn-more-content {
  margin: 0 auto 0;
  max-width: 344px;
  text-align: center;
  letter-spacing: 2px;
}
.scope .section-two-wrapper .learn-more-content p {
  text-align: justify;
  color: #0c1200;
}
.scope .section-two-wrapper .learn-more-content a {
  text-transform: uppercase;
  padding: 5px 10px;
  color: #fff;
  border: 1px solid #fff;
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, #4b4b4b 0%, #151515 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, #4b4b4b 0%, #151515 100%);
  box-shadow: 0px 0px 12.74px 0.26px rgba(0, 0, 0, 0.63);
}
.scope .section-two-wrapper .carousel-wrapper {
  /*responsiv 3D gallery*/
  /*responsiv 3D gallery end*/
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-container {
  width: 100%;
  position: relative;
  padding-top: 50px;
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-btn {
  position: absolute;
  top: 0;
  z-index: 3;
  display: block;
  width: 5%;
  height: 100%;
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-btn_prev {
  background: url("../img/arrow-left.png") center center no-repeat;
  background-size: contain;
  left: 1%;
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-btn_next {
  background: url("../img/arrow-right.png") center center no-repeat;
  background-size: contain;
  right: 1%;
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-top: 32%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  -o-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-item {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  display: block;
  width: 33.33%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.scope .section-two-wrapper .carousel-wrapper .responsiveGallery-item img {
  width: 100%;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0px 0px 5px #000;
}
@media (max-width: 1000px) {
  .scope .section-two-wrapper .carousel-wrapper .responsiveGallery-item {
    width: 33.33%;
  }
  .scope .section-two-wrapper .carousel-wrapper .responsiveGallery-wrapper {
    padding-top: 45%;
  }
}
@media (max-width: 560px) {
  .scope .section-two-wrapper .carousel-wrapper .responsiveGallery-wrapper {
    width: 60%;
  }
  .scope .section-two-wrapper .carousel-wrapper .responsiveGallery-item {
    width: 100%;
  }
  .scope .section-two-wrapper .carousel-wrapper .responsiveGallery-wrapper {
    padding-top: 80%;
  }
  .scope .section-two-wrapper .carousel-wrapper .responsiveGallery-btn {
    width: 8%;
  }
}
.scope .section-two-wrapper .carousel-wrapper .responsivGallery-link {
  display: block;
  width: 100%;
}
.scope .section-two-wrapper .carousel-wrapper .responsivGallery-pic {
  width: 100%;
  height: auto;
}
.scope .section-two-wrapper .carousel-wrapper .w-responsivGallery-info {
  width: 80%;
  margin: 0 auto;
  padding-top: 5%;
  text-align: center;
  color: #fff;
}
.scope .section-two-wrapper .carousel-wrapper .responsivGallery-name {
  font-size: 1.25em;
}
.scope .section-two-wrapper .carousel-wrapper .responsivGallery-position {
  padding-top: 4%;
  font-size: 0.875em;
  line-height: 1.3;
}
.scope .video-banner-wrapper .col-1-3 {
  padding: 0;
}
.scope .video-banner-wrapper .video-bucket {
  width: 100%;
}
.scope .video-banner-wrapper .video-bucket .overlay {
  display: block;
  padding: 18% 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media (max-width: 768px) {
  .scope .video-banner-wrapper .video-bucket .overlay {
    background-size: 110%;
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.scope .video-banner-wrapper .video-bucket .overlay h3 {
  position: relative;
  top: 45%;
}
.scope .video-banner-wrapper .video-bucket .overlay h3 a {
  color: #fff;
  padding: 10px 10%;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
  text-shadow: 1px 1px 5px #aeaeae;
  box-shadow: 1px 1px 5px #aeaeae;
  position: relative;
  font-weight: 400;
  top: 40%;
}
.scope .video-banner-wrapper .video-bucket .overlay h3 a:hover {
  color: #BDBDBD;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
  border: 1px solid #4E4E4E;
}
.scope .video-banner-wrapper .video-bucket.commercial1, .scope .video-banner-wrapper .video-bucket.commercial2, .scope .video-banner-wrapper .video-bucket.commercial3 {
  background-size: 135%;
  background-color: #252525;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-position: center;
}
@media (max-width: 768px) {
  .scope .video-banner-wrapper .video-bucket.commercial1, .scope .video-banner-wrapper .video-bucket.commercial2, .scope .video-banner-wrapper .video-bucket.commercial3 {
    background-size: 110%;
  }
}
.scope .video-banner-wrapper .video-bucket.commercial1:hover, .scope .video-banner-wrapper .video-bucket.commercial2:hover, .scope .video-banner-wrapper .video-bucket.commercial3:hover {
  background-size: 125%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .scope .video-banner-wrapper .video-bucket.commercial1:hover, .scope .video-banner-wrapper .video-bucket.commercial2:hover, .scope .video-banner-wrapper .video-bucket.commercial3:hover {
    background-size: 100%;
  }
}
.scope .video-banner-wrapper .video-bucket.commercial1 {
  background-image: url("../img/commercial-1.jpg");
}
.scope .video-banner-wrapper .video-bucket.commercial2 {
  background-image: url("../img/commercial-3.jpg");
}
.scope .video-banner-wrapper .video-bucket.commercial3 {
  background-image: url("../img/commercial-2.jpg");
}
.scope .video-banner-wrapper .video-bucket:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.scope .ticker-wrapper {
  width: 100%;
  background: #000;
  padding: 20px 0;
  text-align: center;
}
.scope .ticker-wrapper .ticker-left h1, .scope .ticker-wrapper .ticker-right h1 {
  font-size: 50px;
  font-weight: 400;
}
.scope .ticker-wrapper .ticker-left h4, .scope .ticker-wrapper .ticker-right h4 {
  font-size: 20px;
}
.scope .ticker-wrapper .ticker-left h4 {
  color: #04c99d;
}
.scope .ticker-wrapper .ticker-right h4 {
  color: #f73264;
}
.scope .section-three-wrapper {
  width: 100%;
  background: url("../img/casino-lg-shot.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.scope .section-three-wrapper .section-title-wrapper {
  padding: 90px 0 30% 0;
}
.scope .section-three-wrapper .section-title-wrapper .section-title {
  background: url("../img/title-gradient-bkg.png");
  background-repeat: no-repeat;
}
.scope .section-three-wrapper .section-title-wrapper .section-title h1 {
  font-weight: 300;
  font-size: 62px;
  text-shadow: 5px 0px 6px #000;
  position: relative;
  width: 100%;
  max-width: 750px;
}
.scope .section-three-wrapper .section-title-wrapper .section-title h1:after {
  position: absolute;
  content: "";
  height: 186px;
  width: 186px;
  background: url("../img/open-24.png");
  right: 0;
  top: -50px;
}
@media (max-width: 968px) {
  .scope .section-three-wrapper .section-title-wrapper .section-title h1 {
    font-size: 48px;
  }
  .scope .section-three-wrapper .section-title-wrapper .section-title h1:after {
    top: -40px;
    width: 140px;
    height: 140px;
    background-size: contain;
  }
}
@media (max-width: 580px) {
  .scope .section-three-wrapper .section-title-wrapper .section-title h1 {
    font-size: 34px;
  }
  .scope .section-three-wrapper .section-title-wrapper .section-title h1:after {
    top: -10px;
    width: 80px;
    height: 80px;
    background-size: contain;
  }
}
@media (max-width: 360px) {
  .scope .section-three-wrapper .section-title-wrapper .section-title h1 {
    font-size: 24px;
  }
  .scope .section-three-wrapper .section-title-wrapper .section-title h1:after {
    top: -10px;
    width: 60px;
    height: 60px;
    background-size: contain;
  }
}
@media (max-width: 580px) {
  .scope .section-three-wrapper .section-title-wrapper {
    padding: 40px 0 30% 0;
  }
}
@media (max-width: 360px) {
  .scope .section-three-wrapper .section-title-wrapper {
    ppadding: 30% 0;
  }
}
.scope .section-three-attachement-wrapper .row {
  margin-top: -90px;
}
@media (max-width: 380px) {
  .scope .section-three-attachement-wrapper .row {
    margin-top: 30px;
  }
}
.scope .section-three-attachement-wrapper .bucket-wrapper .icon-wrapper {
  text-align: center;
  height: 55px;
  width: 55px;
  margin: 0 auto 20px;
}
.scope .section-three-attachement-wrapper .bucket-wrapper .content-wrapper {
  text-align: center;
}
.scope .section-three-attachement-wrapper .bucket-wrapper .content-wrapper h4 {
  font-size: 20px;
}
.scope .section-three-attachement-wrapper .bucket-wrapper .content-wrapper.left {
  color: #f73264;
}
.scope .section-three-attachement-wrapper .bucket-wrapper .content-wrapper.middle {
  color: #04c99d;
}
.scope .section-three-attachement-wrapper .bucket-wrapper .content-wrapper.middle h4 {
  font-size: 26px;
}
.scope .section-three-attachement-wrapper .bucket-wrapper .content-wrapper.right {
  color: #ffc946;
}
.scope .footer-wrapper {
  width: 100%;
  padding: 65px 0 0px 0;
}
.scope .footer-wrapper .footer-content-wrapper {
  width: 100%;
  background: #252626;
  font-size: 12px;
  text-align: center;
  padding: 13px 0;
  text-transform: uppercase;
}
.scope .footer-wrapper .footer-content-wrapper ul {
  display: inline-block;
}
.scope .footer-wrapper .footer-content-wrapper ul:nth-child(2) {
  margin-left: 8px;
}
.scope .footer-wrapper .footer-content-wrapper ul:nth-child(2) li {
  margin-left: 6px;
}
.scope .footer-wrapper .footer-content-wrapper ul li {
  display: inline-block;
}
@media (max-width: 438px) {
  .scope .footer-wrapper .footer-content-wrapper ul li .bar {
    display: none;
  }
}
.scope .footer-wrapper .footer-content-wrapper ul li a {
  color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.scope .footer-wrapper .footer-content-wrapper ul li a:hover {
  color: #04c99d;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.scope .footer-wrapper.interior-footer {
  padding: 0 0 0px 0;
}
.scope .footer-wrapper .space-bkg {
  width: 100%;
  background: #aeaeae;
  height: 120px;
  position: relative;
  background-image: url("../img/lights-bkg.png");
  background-size: cover;
}
.scope .footer-wrapper .space-bkg .video-container {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  overflow: hidden;
}
.scope .footer-wrapper .space-bkg .video-container video {
  position: absolute;
  width: 100%;
  height: auto;
  top: -250px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 968px) {
  .scope .footer-wrapper .space-bkg .video-container video {
    top: -150px;
  }
}
@media (max-width: 580px) {
  .scope .footer-wrapper .space-bkg .video-container video {
    top: 0px;
  }
}
.scope .footer-wrapper .space-bkg .video-container video::-webkit-media-controls {
  display: none !important;
}
.scope .interior-hero-wrapper {
  width: 100%;
  padding-top: 10px;
}
.scope .interior-hero-wrapper .interior-hero-image {
  position: relative;
  max-height: 313px;
}
.scope .interior-hero-wrapper .interior-hero-image .interior-image-header {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 38%;
}
@media (max-width: 768px) {
  .scope .interior-hero-wrapper .interior-hero-image .interior-image-header {
    top: 32%;
  }
}
@media (max-width: 580px) {
  .scope .interior-hero-wrapper .interior-hero-image .interior-image-header {
    top: 28%;
  }
}
@media (max-width: 400px) {
  .scope .interior-hero-wrapper .interior-hero-image .interior-image-header {
    top: 29%;
  }
}
.scope .interior-hero-wrapper .interior-hero-image .interior-image-header h1 {
  text-shadow: 1px 7px 14px #000;
}
@media (max-width: 400px) {
  .scope .interior-hero-wrapper .interior-hero-image .interior-image-header h1 {
    font-size: 1.9em;
  }
}
.scope .interior-hero-wrapper img {
  width: 100%;
  height: auto;
  max-height: 313px;
}
.scope .interior-page-wrapper {
  width: 100%;
  background: #151515;
  min-height: 500px;
  color: #eeeeee;
}
.scope .interior-page-wrapper .interior-header {
  width: 100%;
  padding: 20px 0;
  border-top: 3px solid #04c99d;
  border-bottom: 3px solid #04c99d;
}
.scope .interior-page-wrapper .interior-header h1 {
  color: #EAEAEA;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .scope .interior-page-wrapper .interior-header h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 580px) {
  .scope .interior-page-wrapper .interior-header h1 {
    font-size: 1.5em;
  }
}
.scope .interior-page-wrapper .interior-content-wrapper {
  padding: 40px 0;
}
.scope .interior-page-wrapper .interior-content-wrapper .row {
  margin: 15px auto;
}
.scope .interior-page-wrapper .interior-content-wrapper h2, .scope .interior-page-wrapper .interior-content-wrapper h3 {
  margin: 10px 0;
}
.scope .interior-page-wrapper .interior-content-wrapper h3 {
  color: #b12146;
}
.scope .interior-page-wrapper .interior-content-wrapper p {
  margin: 0 0 10px 0;
}
.scope .interior-page-wrapper .interior-content-wrapper img {
  width: 100%;
  height: auto;
}
.scope .interior-page-wrapper .interior-content-wrapper ul {
  margin-left: 16px;
  margin-bottom: 15px;
}
.scope .interior-page-wrapper .interior-content-wrapper ul li {
  margin-bottom: 10px;
}
.scope .interior-page-wrapper .interior-content-wrapper p.btn-link a {
  background: #04c99d;
  padding: 5px 20px;
  color: #fff;
  display: inline-block;
  text-align: center;
  -webkit-transition: .2s linear all;
  transition: .2s linear all;
}
.scope .interior-page-wrapper .interior-content-wrapper p.btn-link a:hover {
  background: #aeaeae;
  -webkit-transition: .2s linear all;
  transition: .2s linear all;
}
.scope .interior-page-wrapper .interior-content-wrapper a {
  color: #04c99d;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.scope .interior-page-wrapper .interior-content-wrapper a:hover {
  color: #aeaeae;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.scope .interior-page-wrapper .interior-content-wrapper .column-content video {
  width: 100%;
  height: 348px;
  max-width: 100%;
}
@media (max-width: 580px) {
  .scope .interior-page-wrapper .interior-content-wrapper .column-content video {
    height: auto;
  }
}
.scope .interior-page-wrapper .interior-content-wrapper.dining-wrapper h3 {
  margin: 0 0 10px 0;
}
.scope .interior-page-wrapper .interior-content-wrapper.dining-wrapper .row {
  margin: 90px auto;
}
.scope .interior-page-wrapper .interior-content-wrapper.dining-wrapper .row:first-of-type {
  margin-top: 0;
  margin-bottom: 10px;
}
.scope .interior-page-wrapper .interior-content-wrapper.dining-wrapper .row:nth-child(2) {
  margin-top: 10px;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper {
  margin: 0 -16px;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket {
  text-align: center;
  min-height: 320px;
  margin-bottom: 15px;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket a.winner-link {
  color: #fff;
  background: #04c99d;
  display: block;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket a.winner-link:hover {
  background: #aeaeae;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket .bucket-text-wrapper {
  display: table;
  width: 100%;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket .bucket-text-wrapper .bucket-text {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin: 0;
  padding: 0 5px;
  height: 90px;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket .bucket-text-wrapper .bucket-text h4 a {
  display: block;
  color: #fff;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket .bucket-text-wrapper .bucket-text h4 a:hover {
  background: #aeaeae;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket .bucket-text-wrapper .bucket-text p {
  font-size: 12px;
  margin-bottom: 0px;
}
.scope .interior-page-wrapper .interior-content-wrapper .winner-bucket-wrapper .winner-bucket a img {
  width: 100%;
  height: auto !important;
  display: block;
}
.scope .interior-page-wrapper .promotions {
  width: 100%;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper {
  margin-bottom: 15px;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket {
  position: relative;
  min-height: 255px;
  max-width: 328px;
  margin: 0 auto;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
  text-align: center;
  padding-top: 40%;
  pointer-events: none;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-overlay a {
  display: none;
  color: #fff;
  font-size: 28px;
  text-shadow: 1px 1px 7px #000;
}
@media (max-width: 768px) {
  .scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-overlay a {
    font-size: 24px;
  }
}
@media (max-width: 580px) {
  .scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-overlay a {
    font-size: 36px;
  }
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-image img {
  width: 100%;
  height: auto;
  display: block;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-text-box {
  padding: 15px 10px 0;
  background: rgba(255, 255, 255, 0.1);
  min-height: 105px;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-text-box p {
  font-size: 14px;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-text-box h4 {
  font-weight: 700;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-text-box h4 a {
  color: #04c99d;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket .promotion-text-box h4 a:hover {
  color: #aeaeae;
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket:hover .promotion-overlay {
  background: rgba(4, 201, 157, 0.8);
  -webkit-transition: .2s all linear;
  transition: .2s all linear;
}
.scope .interior-page-wrapper .promotions .promotion-bucket-wrapper .promotion-bucket:hover .promotion-overlay a {
  display: block;
  color: #fff;
}

/* Video shut off for */
@media (max-width: 580px) {
	.scope .space-bkg .video-container video {
		display: none;
	}
}

/* -----------------------------------------------------------------------------

  MODAL FORM

----------------------------------------------------------------------------- */
.promo-form-wrapper a {
  color: #04c99d;
}
.promo-form-wrapper a:hover {
  color: #757575;
}

.mfp-content #promoform {
  color: #fff;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row {
  margin: 10px 0;
  padding: 5px 0;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row p {
  text-align: center;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: none;
  padding: 5px 0;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  background: none;
  color: #fff;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input:focus {
  border-bottom: 2px solid #04c99d;
  outline: none;
  box-shadow: none;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input::-webkit-input-placeholder {
  color: #fff;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input:-ms-input-placeholder {
  color: #fff;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  background: #04c99d;
  border: none;
  color: #fff;
  padding: 10px 0;
  font-size: 18px;
  -webkit-transition: .2s linear all;
  transition: .2s linear all;
}
.mfp-content #promoform .promo-signup-wrapper .promo-form-row input[type="submit"]:hover {
  background: #757575;
  -webkit-transition: .2s linear all;
  transition: .2s linear all;
}

/* -----------------------------------------------------------------------------

  MOBILE NAV START

----------------------------------------------------------------------------- */
.nav-mobile {
  text-align: left;
}
.nav-mobile ul li {
  list-style: none;
}
.nav-mobile ul li a {
  font-size: 14px;
  display: block;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 15px;
  border-bottom: 4px solid #4E4E4E;
  background: #5D8A8C;
}
.nav-mobile ul li ul li a {
  border-bottom: 1px solid #4E4E4E;
  background: none;
}

.o-wrapper {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/**
 * Menu overview.
 */
.c-menu {
  position: fixed;
  z-index: 1200;
  background-color: #252525;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-menu__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-menu--slide-left,
.c-menu--slide-right,
.c-menu--push-left,
.c-menu--push-right {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

@media all and (min-width: 320px) {
  .c-menu--slide-left,
  .c-menu--slide-right,
  .c-menu--push-left,
  .c-menu--push-right {
    width: 300px;
  }
}
.c-menu--slide-left .c-menu__item,
.c-menu--slide-right .c-menu__item,
.c-menu--push-left .c-menu__item,
.c-menu--push-right .c-menu__item {
  display: block;
  text-align: center;
  border-top: solid 1px #b5dbe9;
  border-bottom: solid 1px #3184a1;
}

.c-menu--slide-left .c-menu__item:first-child,
.c-menu--slide-right .c-menu__item:first-child,
.c-menu--push-left .c-menu__item:first-child,
.c-menu--push-right .c-menu__item:first-child {
  border-top: none;
}

.c-menu--slide-left .c-menu__item:last-child,
.c-menu--slide-right .c-menu__item:last-child,
.c-menu--push-left .c-menu__item:last-child,
.c-menu--push-right .c-menu__item:last-child {
  border-bottom: none;
}

.c-menu--slide-left .c-menu__link,
.c-menu--slide-right .c-menu__link,
.c-menu--push-left .c-menu__link,
.c-menu--push-right .c-menu__link {
  display: block;
  padding: 12px 24px;
  color: #fff;
}

.c-menu--slide-left .c-menu__close,
.c-menu--slide-right .c-menu__close,
.c-menu--push-left .c-menu__close,
.c-menu--push-right .c-menu__close {
  display: block;
  padding: 12px 24px;
  width: 100%;
}

/**
 * Slide/Push Menu Left.
 */
.c-menu--slide-left,
.c-menu--push-left {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media all and (min-width: 320px) {
  .c-menu--slide-left,
  .c-menu--push-left {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }
}
.c-menu--slide-left.is-active,
.c-menu--push-left.is-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/**
 * Wrapper states.
 *
 * Various wrapper states occur depending on if a menu is pushing into view, in
 * which case, the wrapper has to be pushed by the respective distance.
 */
.o-wrapper.has-push-left {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@media all and (min-width: 320px) {
  .o-wrapper.has-push-left {
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
  }
}
/**
 * Body states.
 *
 * When a menu is active, we want to hide the overflows on the body to prevent
 * awkward document scrolling.
 */
body.has-active-menu {
  overflow: hidden;
}

/**
 * Close button resets.
 */
.c-menu__close {
  color: #fff;
  background-color: #04c99d;
  font-size: 14px;
  border: none;
  box-shadow: none;
  border-radius: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.c-menu__close:focus {
  outline: none;
}

/* -----------------------------------------------------------------------------

  MASK COMPONENT

----------------------------------------------------------------------------- */
.c-mask {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
  transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

.c-mask.is-active {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* -----------------------------------------------------------------------------

  BUTTONS

----------------------------------------------------------------------------- */
.c-buttons {
  margin-bottom: 48px;
  text-align: center;
}

.c-button {
  display: inline-block;
  margin: 4px;
  padding: 12px 24px;
  color: #67b5d1;
  background: none;
  font-size: 14px;
  border: solid 2px #67b5d1;
  box-shadow: none;
  border-radius: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.c-button:focus {
  outline: none;
}

.c-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* textBx lines */
@-webkit-keyframes bottom {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes bottom {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@-webkit-keyframes top {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes top {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/* Nav Arrows */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
/* Opera < 12.1 */

/* c5 override */
#ccm-detail-page-attributes .ccm-ui .form-control.ccm-input-number {
  width: 100% !important;
}