@font-face {
  font-family: "Lato";
  src: url(../fonts/Lato-Regular.otf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url(../fonts/Lato-Bold.otf);
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "bauhaus";
  src: url(../fonts/TaurusHeavyC.otf);
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: 'Lato',sans-serif;
}

.game_version {
  color: white;
  position: absolute;
  opacity: 0.3;
  bottom: 3px;
  right: 10px;
  font-size: 10px;
  font-weight: 500;
  font-style: italic;
}

.d-none {
  display: none;
}

#ad_moduleIMG {
  left: 50% !important;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#long_calculate_curtain {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/long_calc.png);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
  z-index: 98;
  opacity: 0;
}

.wrapper {
  padding: 16px 28px 20px 29px;
  background-image: none;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  height: 1080px;
  width: 1920px;
  overflow: hidden;
  margin: auto;
}

.header {
  height: 97px;
  width: 100%;
  position: relative;
}

.header__logo {
  width: 350px;
  height: 95px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: -8px;
}

.timer {
  font-family: 'bauhaus';
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 20px;
  color: #f8d95d;
  font-size: 72px;
  font-weight: 700;
  width: 210px;
}

.progress-bar {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3px;
}

.progress-bar__fill {
  height: 3px;
  width: 100%;
  background-color: #FFDD73;
  background-image: url(../img/svg/load.svg);
  background-repeat: repeat;
  background-size: 100%;
  background-position-y: 0px;
  background-position-x: 0px;
  -webkit-transition: all linear 1s;
  -o-transition: all linear 1s;
  transition: all linear 1s;
}

.numberOfRound {
  text-transform: uppercase;
  font-size: 53px;
  color: #20B83D;
  font-weight: bold;
  padding-left: 25px;
  line-height: 1.1;
  -ms-flex-preferred-size: 209px;
  flex-basis: 209px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.numberOfRound__title {
  padding-top: 10px;
  font-size: 32px;
  text-transform: uppercase;
}

.korzina {
  position: relative;
  height: 103px;
  width: 100%;
  padding-top: 16px;
  padding-left: 55px;
}

.korzina:after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 5px;
  background-image: url(../img/korzina.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 24px;
  width: 100%;
}

.ball {
  width: 74px;
  height: 74px;
  background-image: url(../img/ball.png);
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 74px;
  float: left;
  margin-right: 2px;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translateX(1635px) rotate(1350deg);
  -ms-transform: translateX(1635px) rotate(1350deg);
  transform: translateX(1635px) rotate(1350deg);
}

.notAnimatedBall {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.animated {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.board {
  display: grid;
  grid-template-columns: repeat(10, 100px);
  grid-template-rows: repeat(4, 74px);
  grid-gap: 7px 7px;
  margin-top: 12px;
  margin-bottom: 19px;
}

.boardItemsBG div {
  position: absolute;
  width: 1920px;
  height: 1080px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.animated-board-items {
  position: absolute;
  width: 1920px;
  height: 1080px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.board__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  /* background-image: url(../img/sprite.png); */
  background-repeat: no-repeat;
  text-align: right;
  padding-right: 10px;
  padding-bottom: 5px;
  line-height: 134px;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: color .125s, opacity .5s, -webkit-transform .5s;
  transition: color .125s, opacity .5s, -webkit-transform .5s;
  -o-transition: color .125s, opacity .5s, transform .5s;
  transition: color .125s, opacity .5s, transform .5s;
  transition: color .125s, opacity .5s, transform .5s, -webkit-transform .5s;
  border-radius: 10px;
}

.board__item span {
  position: absolute;
  top: -2px;
  left: 62px;
}

.hotItem::after {
  content: url("./../img/hot.png");
  position: relative;
}

.coldItem::after {
  content: url("./../img/cold.png");
  position: relative;
}

.board__item.small {
  opacity: 0;
}

.footer {
  margin-top: 30px;
  width: 1067px;
  height: 146px;
  padding: 10px 14px 15px 203px;
}

.footer-row-wrap {
  display: grid;
  grid-template-rows: repeat(3, 29px);
  grid-row-gap: 3px;
}

.footer-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  color: #fff;
  opacity: .5;
  text-transform: uppercase;
}

.footer-titles__balls {
  margin-left: 17px;
  -webkit-transition: .250s;
  -o-transition: .250s;
  transition: .250s;
}

.footer__row {
  display: grid;
  grid-template-columns: 92px auto;
  grid-template-rows: 28px;
  grid-column-gap: 3px;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: bold;
}

.footer-round {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
}

.footer-dropped-balls {
  display: grid;
  grid-template-columns: repeat(4, 185px);
  grid-column-gap: 5px;
}

.dropped-balls__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background-color: rgba(255, 255, 255, 0.7);
}

.dropped-balls__item span {
  display: inline-block;
  width: 30px;
  text-align: center;
}

.right {
  padding-top: 15px;
  padding-left: 25px;
}

.video {
  height: 469px;
  width: 770px;
}

.table {
  overflow: hidden;
  width: 770px;
  height: 365px;
  position: relative;
}

.table > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-coef {
  display: none;
  grid-template-rows: 20px 20px 20px 20px 20px 20px 20px 20px 20px 20px;
  grid-template-rows: repeat(10, 20px);
  margin-top: 40px;
  width: 769px;
  height: 319px;
  background-image: url(../img/coeff.svg);
  background-repeat: no-repeat;
  background-position: 30px -3px;
  text-transform: uppercase;
  background-size: 97% 85%;
}

.table-coef.is-active {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.table-coef__title-up, .table-coef__title-left {
  font-size: 26px;
  color: #fff;
  opacity: .4;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
}

.table-coef__title-up {
  width: 100%;
  top: -35px;
  left: 0;
}

.table-coef__title-left {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-align: center;
  top: 120px;
  left: -138px;
  width: 320px;
}

.table-wins {
  padding: 10px;
  -webkit-transition: opacity 1s, -webkit-transform .750s;
  transition: opacity 1s, -webkit-transform .750s;
  -o-transition: transform .750s, opacity 1s;
  transition: transform .750s, opacity 1s;
  transition: transform .750s, opacity 1s, -webkit-transform .750s;
  -webkit-transform: translate(-100%);
  -ms-transform: translate(-100%);
  transform: translate(-100%);
}

.table-wins.is-active {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.table-wins__title {
  font-size: 22px;
  margin-bottom: 5px;
  text-transform: uppercase;
  text-align: center;
  color: #EBCE5A;
  font-weight: bold;
  text-shadow: 2px 2px 3px #222;
}

.table-wins__header, .table-wins__row {
  display: grid;
  grid-template-columns: 70px 200px 240px auto;
}

.table-wins__header {
  font-size: 18px;
  font-weight: bold;
}

.table-wins__slide {
  display: grid;
  grid-template-rows: repeat(7, 38px);
  grid-row-gap: 4px;
  position: absolute;
  top: 63px;
  left: 1px;
  width: 769px;
  height: 100%;
  padding-left: 11px;
  padding-right: 11px;
  -webkit-transform: translate(-100%);
  -ms-transform: translate(-100%);
  transform: translate(-100%);
  opacity: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.table-wins__slide:first-child {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.table-wins__slide.is-active {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.table-wins__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  width: 100%;
  background-color: rgba(0, 40, 27, 0.85);
  color: #4EA363;
}

.table-wins__row:nth-child(even) {
  background-color: rgba(24, 73, 46, 0.83);
}

.table-wins__cell {
  padding-left: 5px;
  padding-right: 5px;
  text-transform: uppercase;
}

.table-wins__cell:first-child {
  padding-left: 10px;
}

.table-wins__cell:last-child {
  text-align: right;
  padding-right: 15px;
}

.no-connection {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #eee;
  padding-top: 40px;
  font-size: 50px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.35);
  text-align: center;
  background-color: #034428;
  background-image: url(../img/no-connection.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
  z-index: 99;
  opacity: 1;
}

.no-connection span {
  font-family: Arial;
  font-weight: bold;
  margin-top: -340px;
  padding-top: 340px;
  /*background-image: url(../img/svg/icon-no-connect.svg);*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-block, .d-show {
  display: block;
}

.d-hide {
  display: none;
}

#nJpWrap {
  width: 900px;
  height: 115px;
  position: absolute;
  top: -17px;
  left: 487px;
  text-align: center;
}

#nJpWrap2 {
  display: inline-block;
  overflow: hidden;
}

#wrapper .nJpWrap_videocontInside {
  left: 599px;
  top: -10px;
  z-index: 3;
}

#nJpWrap .nJpPart_backgroundImage {
  background-image: none;
}

#nJpWrap .nJpPart3_backgroundImage {
  background: url(../img/jpText.png) no-repeat;
  margin: 10px 0px;
}

.currentCurrencySymbol {
  text-align: center;
  margin-top: 8px;
  width: 89px;
  height: 80px;
}

#nJpPart2 {
  height: 113px;
  overflow: hidden;
  float: left;
  display: inline-block;
}

#nJpPart1,
#nJpPart3 {
  width: 104px;
  height: 113px;
  float: left;
}

#nJpPart1 {
  background-size: cover;
}

#nJpPart2 {
  background-size: contain;
}

#nJpPart3 {
  width: 310px;
  height: 110px;
  margin-left: 10px;
  background-image: url(../img/svg/jp.svg);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.jpValue,
.jpValueDot {
  height: 78px;
  width: 40px;
  text-align: center;
  line-height: 78px;
  float: left;
  font-weight: bold;
  font-size: 60px;
  overflow: hidden;
  position: relative;
}

.jpValue {
  width: 47px;
  height: 59px;
  background: url(../img/jpItem.png);
  background-size: 49px;
  line-height: 59px;
  font-size: 39px;
  text-align: center;
  font-weight: bold;
  float: left;
  margin-top: 15px;
  margin-right: 2px;
  font-weight: 700;
}

#ncomma1,
#ncomma2,
#ndot {
  width: 8px;
  height: 3px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  float: left;
  margin-top: 45px;
  font-family: Lato-Bold, Arial;
  margin-left: 0px;
}

#jpDoneItem {
  width: 100%;
  height: 5px;
  margin-top: 10px;
  float: left;
}

.jackpotItem {
  width: 8%;
  height: 5px;
  float: left;
  margin-right: 2%;
  background: #00ff01;
  border-radius: 3px;
}

.jpItemOrange {
  background: #f4bc35;
}

.jpItemRed {
  background: #eb4302;
}

.sliderNum {
  width: 100%;
  height: 780px;
  position: absolute;
}

.slNumItem {
  width: 100%;
  height: 59px;
  text-align: center;
  line-height: 63px;
}

.jp {
  display: none;
  font-family: "Arial";
  font-weight: bold;
  color: #ffe099;
  font-size: 45px;
  line-height: 1.1;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.jp__header {
  background-image: url(../img/head_ball.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 2px;
  z-index: 5;
  position: absolute;
  left: -29px;
  top: -27px;
  height: 164px;
  width: 1920px;
}

.jp-title {
  color: #ffdf98;
}

.jp-round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.jp-round__title {
  color: #ffdf98;
}

.jp-round__num {
  color: #ffb025;
}

.jp-balls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.jp-balls__item {
  background-image: url(../img/jp/sprite/jp_balls.png);
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  line-height: 72px;
  margin-right: 5px;
}

.jp__body {
  width: 100%;
  height: 100%;
  margin-top: 37px;
  z-index: 5;
}

.jp-sum {
  position: absolute;
  top: 593px;
  left: 639px;
  height: 160px;
  width: 640px;
  text-align: center;
  font-size: 80px;
  line-height: 160px;
}

.jp-sum-round {
  position: absolute;
  top: 753px;
  left: 795px;
  height: 70px;
  width: 335px;
  border: 1px solid #000;
  text-align: center;
  font-size: 52px;
}

.jp-ticket {
  width: 473px;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: 100%;
  margin-top: 11px;
  margin-bottom: -11px;
}

.jp-ticket__el {
  display: inline-block;
  width: 27px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
}

.jp-ticket:last-child {
  background-image: url(../img/jp_nombers_bg2.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 475px;
}

.jp-ticket:only-child {
  margin-top: 0;
}

[ticketnum=h] {
  background-image: url(../img/jp/mini_numbers/h.svg);
  background-size: contain;
  width: 60px;
}

/* video style */
.videoloading {
  background-color: black;
  -webkit-transition: all linear 1s;
  -o-transition: all linear 1s;
  transition: all linear 1s;
}
#videoLoading_sub {
  /*background-image: url(../img/video_loading.png);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 460px;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -2;
}

.videoWrapper {
  overflow: hidden;
  position: relative;
  width: 770px;
  height: 460px;
}

.videoWrapper object {
  -webkit-transform: scaleX(1.02) translateX(1px);
      -ms-transform: scaleX(1.02) translateX(1px);
          transform: scaleX(1.02) translateX(1px);
}

video, canvas {
  position: absolute;
  width: 773px;
  height: 470px;
}

video {
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

#curtain {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0px;
  left: 0px;
  width: 770px;
  height: 460px;
  background: black;
  color: white;
  font-family: Arial;
  text-align: center;
  line-height: 720px;
  font-size: 68px;
  font-weight: bold;
  z-index: 1;
}



.form-control {
    /*display: block;*/
    width: 30%;
    height: 75px;
    padding: 6px 12px;
    font-size: 35pt;
    line-height: 1;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
 input[type="submit"].form-control, select.form-control,  input[type="button"].form-control {
   margin: 50px 0px 0px 0px;
   width: calc(30% + 30px);
   cursor: pointer;
}

.form-control:focus, .form-control:hover {
  color: #000;
  
}

#loginForm {
    margin: 0;
    font-family: Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #212529;
    text-align: left;
    padding-right: 15px;
    padding-left: 15px;
}
.card {
    margin: 0 auto 25px;
    margin-top: 60px;
	padding: 40px 40px;
	/*max-width: 320px;*/
	position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #f7f7f7;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 2px;
	box-shadow: 0 2px 2px rgb(0 0 0 / 30%);
	width: 400px;
}
div.form {
    display: block;
    margin-top: 0em;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}
.langPosition{
    display: flex;
    justify-content: center;
    top: 1%;
    right: 1%;
}
.langDropdownButton {
    box-sizing: border-box;
    border-radius: 0;
    margin: 0 3px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    outline: none;
    cursor: pointer!important;
    background-color: transparent!important;
    border: none;
    padding-right: 0;
}
.flag {   
    border-style: none;
    vertical-align: middle;
    user-select: none;
    box-shadow: 0 0 5px 2px grey;
    width: 28px;   
} 
.flag:hover{
	box-shadow: 0 0 5px 2px #00f;
}
.lang_selected img{
    box-shadow: 0 0 5px 2px #00f;
}
.form-group {
    margin-bottom: 1rem;
}
label{
    display: block;
    margin-top: 10px;
	margin-bottom: 0.5rem;
}
.form-control {
    display: block;
    width: 90%;
    height: calc(1.3em + 0.4rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {   
    margin: 0;
    font-family: inherit;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    cursor: pointer;
}
.btn-primary:focus, .btn-primary:hover {
	background-color: #0069d9;
    border-color: #0062cc;
}
.error-feedback{
    color: red;
}

.footer-logo{
	position: absolute;
	width: 148px;
	height: 39px;
	/*background: black;*/
	margin: 82px 0px 0px -184px;
}

@keyframes video_webp 
{
	3% { width: 50px;
		margin: 210px 0px 0px 360px;
		font-size: 26px;
		padding: 10px 0px 0px 0px;
		}
	15% { width: 380px;
		font-size: 170px;
		margin: 40px 0px 0px 200px;
		padding: 88px 0px 0px 0px;	}
	25% { width: 350px;
		font-size: 150px;
		margin: 60px 0px 0px 220px;
		padding: 80px 0px 0px 0px;	}
	90% { width: 350px;
		font-size: 150px;
		margin: 60px 0px 0px 220px;
		padding: 80px 0px 0px 0px;	}
}

.off_video{
	position: absolute;
    margin-top: -460px;
    background-image: url(../img/off_video.png);
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 2;
    height: 460px;
    width: 770px;
}
.off_hovers{
	background-image: url(../img/off_ball.png);
    width: 0px;
    height: 380px;
    position: absolute;
	margin: 230px 0px 0px 380px;
    display: inline-block;
	background-size: contain;
    background-repeat: no-repeat;
	font-size: 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
	font-weight: bold;
	opacity: 1;
}

.off_animated {
	animation: video_webp 1s ease;	
}