/*Thematise your prelander by changing the values within the :root brackets. */

:root {
  /*COLOR PALETTE*/
  --primary-color: #ff960b;
  --secondary-color: #ff960b;
  --background-color: #5f394e;
  --background-color-light: #ffffff;
  --background-popup-transparent: rgba(0,0,0,0.50);

  /*BACKGROUND IMAGE*/
  --background-image: url(../images/main-bg.png);
  --popup-image: url(../images/popup-bg.png);

  /*FONT STYLING*/
  --font-color: #ffffff;
  --font-color-grey: #cdcdcd;
  --font-color-dark: #555555;
  --font-color-darker: #000000;
  --font-color-green: #17ab8e;
  --font-color-error: #ff0052;
  --font-family: 'Roboto', sans-serif;
}


body {
  display: block;
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  word-break: break-word;
  text-transform: uppercase;
  color: rgba(255,255,255,1.00);
  background: var(--background-color);
}

img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 50px;
}

h2 {
  font-size: 35px;
  font-weight: 900;
  line-height: 40px;
  padding-top: 25px;
}

p {
  text-transform: none;
  margin-top: 25px;
}

.plush-container div.popup {
  box-sizing: border-box;
  position: fixed;
  z-index: 1000000;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  min-width: 200px;
  height: 160px;
  box-shadow: 0px 0px 15px 1px rgb(0 0 0 / 30%);
  border-radius: 5px;
  padding: 1em;
  background: white;
  font-family: Roboto,Noto,Helvetica Neue,Helvetica,Arial,sans-serif;
  font-size: initial !important;
  color: rgba(0,0,0,1.00);
}

/* Header */

.header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2vh 0vh 0vh 0vh;
  z-index: 9999;
}

.header__logo {
  display: inline-block;
  position: relative;
  margin: 0px auto;
}

.header__logo > img {
  width: auto;
}



/* Main */

.chests {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--background-image) no-repeat bottom center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  overflow: hidden;
  padding: 18vh 6vw 4vh 6vw;
}

.chests:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: url("../images/main-img.png") no-repeat bottom center /contain;
}

.chests__content {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  padding: 0px;
  margin: auto;
}

.chests__content li {
  display: inline-block;
  position: relative;
  width: auto;
  max-width: 32.5%;
}

.chests__content li:before {
  content: "";
  display: block;
  position: absolute;
  top: 60%;
  bottom: 40%;
  left: 50%;
  right: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,215,70,1.00);
  -webkit-box-shadow: 0vw 0vw 4vw 1vw rgba(255,215,70,1.00);
  -moz-box-shadow: 0vw 0vw 4vw 1vw rgba(255,215,70,1.00);
  box-shadow: 0vw 0vw 4vw 1vw rgba(255,215,70,1.00);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.chest {
  display: block;
  position: relative;
  height: 23vh;
  margin: 0px auto;
  opacity: 0.00;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.chests__content li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: no-repeat center center /contain;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.chests__content li.closed {
  cursor: pointer;
}

.chests__content li.closed > .chest {
  opacity: 1.00;
}

.chests__content li.closed:hover > .chest {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.chests__content li.closed:hover:before {
  top: 45%;
  bottom: 25%;
  left: 35%;
  right: 35%;
  -webkit-box-shadow: 0vw 0vw 8vw 2vw rgba(255,215,70,1.00);
  -moz-box-shadow: 0vw 0vw 8vw 2vw rgba(255,215,70,1.00);
  box-shadow: 0vw 0vw 8vw 2vw rgba(255,215,70,1.00);
}

.chests__content li.empty:after {
  background-image: url('../images/chest-empty.png');
}

.chests__content li.bonus:after {
  background-image: url('../images/chest-bonus.png');
}

.chests__content li.superbonus:after {
  background-image: url('../images/chest-superbonus.png');
}

.superbonus-popup {
  display: none;
}

/* Article */

.article {
  display: block;
  position: relative;
  max-width: 1200px;
  padding: 40px;
  margin: 0px auto;
}



/* Popup */

.popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0px;
  line-height: 25px;
  text-align: center;
  word-break: break-word;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--font-color);
  background-color: var(--background-popup-transparent);
  overflow: hidden;
  -webkit-animation: popup-bg-birth 0.75s ease-in-out;
  -moz-animation: popup-bg-birth 0.75s ease-in-out;
  -o-animation: popup-bg-birth 0.75s ease-in-out;
  animation: popup-bg-birth 0.75s ease-in-out;
  z-index: 99999;
}

.popup.active {
  display: block;
}

.popup-aligner {
  display: inline-block;
  position: relative;
  width: 0%;
  height: 100%;
  vertical-align: middle;
}

.popup__content {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  vertical-align: middle;
  background: var(--popup-image) no-repeat center center / cover;
  border-radius: 20px;
  overflow: visible;
  text-align: center;
  white-space: nowrap;
  color: var(--font-color);
  -webkit-animation: popup-birth 0.5s ease-in-out;
  -moz-animation: popup-birth 0.5s ease-in-out;
  -o-animation: popup-birth 0.5s ease-in-out;
  animation: popup-birth 0.5s ease-in-out;
  padding: 50px;
  margin: auto;
  z-index: 1;
}

.popup__content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.popup__image-bg {
  display: block;
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  width: auto;
  max-width: none;
  height: 500%;
  max-height: 5000px;
  -webkit-animation: popup-sparks-birth 1s ease-in-out;
  -moz-animation: popup-sparks-birth 1s ease-in-out;
  -o-animation: popup-sparks-birth 1s ease-in-out;
  animation: popup-sparks-birth 1s ease-in-out;
  margin: auto;
  z-index: -1;
}

.popup__image {
  display: block;
  position: absolute;
  top: -15%;
  left: -5%;
  right: -2%;
  width: 107%;
  max-width: none;
  height: auto;
  max-height: none;
}

.popup__title {
  display: block;
  position: relative;
  font-size: 36px;
  font-weight: 900;
  line-height: 50px;
  color: var(--font-color);
  padding: 0px;
  white-space: normal;
}

.popup__text {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 22px;
  line-height: 35px;
  padding: 15px 0px;
  margin: 0px;
  white-space: normal;
}

.popup__text > .bonus {
  color: var(--font-color);
}

.popup__text > .up-to {
  color: var(--font-color);
}



.popup__button:hover, .formBtn:hover {
  opacity: 0.90;
}

.popup__text.big-bonus-text {
  font-size: 40px;
  line-height: 50px;
  color: var(--font-color);
  padding: 0px;
}



/* Footer */

.footer {
  background-color: rgba(25,25,25,1.00);
  padding: 40px 20px;
}

.footer__partners {
  display: block;
  position: relative;
  border-bottom: 1px solid #1f212c;
}

.footer__partners > li {
  display: inline-block;
  position: relative;
  width: auto;
  height: 25px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  margin: 0px 10px 20px 10px;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.footer__partners > li:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.copyright__text {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1920px;
  font-size: 13px;
  line-height: 20px;
  color: var(--font-color-grey);
  text-transform: none;
  padding: 20px 0px;
  margin: 0px auto;
}

.copyright__logo {
  display: inline-block;
  position: relative;
  max-height: 50px;
  margin: 20px 15px 0px 15px;
  padding: 0px;
}


@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 100%;
  }
}


h3 {
  font-size: 16px;
}

.maven {
  font-family: var(--font-family);
}

.h2Modal {
  color: #fff !important;
  font-weight: 300;
  padding-top: 10px;
}

.capital {
  text-transform: uppercase;
  color: #fff !important;
}

#modal_final h1,
#popup h1 {
  padding-top: 20px;
  color: #ffffff;
  font-family: var(--font-family);
  line-height: 30px !important
}



#modal_final .red {
  background-size: cover;
  min-height: 250px;
  background-position: center;


}

#modal_final {

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

#modal_final .blink {
  display: none;
}

form .error {
  color: #ff0000;
  font-size: 0.8em;
}


.popup__title1 {
  display: block;
  position: relative;
  font-size: 36px;
  line-height: 30px;
  color: var(--font-color);
  margin: 0px;
  white-space: normal;
}

.popup__text1 {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 23px;
  margin: 15px 0;
  color: var(--font-color);
  white-space: normal;
}

.popup__text2 {
    font-weight: 900;
    font-size: 20px;
    background: #ffffff1f;
    padding: 1em 0;
    margin-bottom: 0.5em;
    border-radius: 10px;
    display: block;
    position: relative;
    white-space: normal;
}

.expire__text {
  color: var(--font-color);
  margin: 1em 0 0 0;
  padding: 0;
  font-weight: 200;
  display: block;
  position: relative;
}

.formBtn, .popup__button {
  margin-top: 10px;
  display: inline-block;
  position: relative;
  color: #1e3924;
  width: 100%;
  background: linear-gradient(-135deg, var(--primary-color) 0, var(--secondary-color) 100%);
  border-radius: 20px !important;
  font-family: var(--font-family);
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 10px;
  border: none;
  animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
  0% {
      -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }

  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 1);
  }

  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@media screen and (min-width:960px) {
  #modal_final img {
    width: 40% !important;
  }

}

@media screen and (max-width:959px) {
  #modal_final img {
    width: 40% !important;
  }

  #modal_final h1 #popup h1 {
    line-height: 0px !important;
    padding-top: 0px;

  }


}

@media screen and (max-width: 661px) {
  #modal_final img {
    width: 40% !important;
  }
}



@media screen and (max-width: 590px) {
  #modal_final img {
    width: 40% !important;
  }



  #modal_final h1 #popup h1 {
    line-height: 0px !important;
    padding-top: 0px;

  }

  #modal_final h1 {
    font-size: 28px !important;
  }

  h3 {

  }

  .formBtn, .popup__button {
    width: 60%;

    font-size: 20px;
    line-height: 32px;

  }

  .popup__title1 {
    display: block;
    position: relative;
    font-size: 32px;
    line-height: 25px;
    color: var(--font-color);
    margin: 0px;

  }

  .popup__text1 {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 22px;
    margin: 5px 15px;
  }

  .popup__text2 {
    font-weight: 900;
    background: #ffffff1f;
    padding: .7em 6px;
    margin-bottom: .5em;
    border-radius: 10px;
    display: block;
    position: relative;
}

  .expire__text {
    color: var(--font-color);
    margin: .7em 0 0 0;
    padding: 0;
    font-weight: 100;
    display: block;
    position: relative;
  }

}


@media screen and (max-width: 527px) {
  #modal_final img {
    width: 40% !important;
  }
}

@media screen and (max-width: 449px) {
  #modal_final img {
    width: 40% !important;
  }
}

@media screen and (max-width: 380px) {
  .formBtn, .popup__button {
    width: 60%;
    height: 85%;
    font-size: 18px;
    line-height: 32px;

  }

  .form-input {
    height: 40px;


  }


  .popup__title1 {
    display: block;
    position: relative;
    font-size: 24px;
    line-height: 32px;
    color: var(--font-color);
    padding-top: 20px;

  }

  .popup__text1 {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 15px;
  }

  .expire__text {
    color: var(--font-color);
    margin: .7em 0 0 0;
    padding: 0;
    font-weight: 100;
    display: block;
    position: relative;
  }
}

.form-input {
  background: var(--background-color-light);
  border: none;
  font-size: 1.4em;
  padding: .9em .7em;
  position: relative;
  border-radius: 8px;
  margin-bottom: 10px;


}

.form-input .input {
  background: none;
  border: none;
  width: 100%;
}

.form-input-with-icon .icon {
  left: 0;
  margin: .65em;
  position: absolute;
  top: 0;
}

.form-input-with-icon .input {
  padding-left: 2em;
}

.fw600 {
  font-weight: 600;
}

#icon_user {
  background-image: url(./spinner_files/user_icon.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  background-size: 80%;
  display: block;
  background-position: 6px 4px;
}

#icon_phone {
  background-image: url(./spinner_files/phone_icon.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  background-size: 80%;
  display: block;
  background-position: 6px 4px;
}

button,
input:focus {
  outline: none;
}


#submitUserForm {
  margin-top: 6%;
  margin-left: 10px;
  margin-right: 10px;
}
