  /*custom font*/
  @import url(https://fonts.googleapis.com/css?family=Montserrat);

  /*basic reset*/
  * {
      margin: 0;
      padding: 0;
  }


  .information{
    line-height: 20px;
    color: #fff;
    margin-top: 50%;
  }

  body {
      font-family: roboto, arial, verdana;
      height: 100%;
      background: url(/vip_bonus/img/background_new.jpg) no-repeat;
        background-size: cover;
  }

  /*form styles*/
  #msform {
      width: 100%;
      margin: auto;
      text-align: center;
      position: relative;
      margin-top: 48px;
      max-width: 600px;
  }

  .error {
      display: none;
      margin-top: 13px;
      font-weight: bold;
      font-size: 13px;
      font-weight: normal;
      border-radius: 3px;
      text-align: left;
      color:#FFD500;
  }

  .error b {
      display: block;
      text-align: center !important;
    animation: error 1s ease infinite;
      
  }

  .error span {
      padding-bottom: 5px;
      display: block;
      margin-bottom: 5px;
  }

  .error span:last-child {
      border: 0;
  }

  .error span::before {
      content: '-';
      padding-right: 5px;
      font-weight: bold;
  }
  .logo{
    width: 134px;
    padding: 5px 39px;
    background: #000;
    margin-bottom: 19px;
    border-radius: 9px;
  }
  #msform fieldset {      
      border: 0 none;
      border-radius: 3px;
      padding: 20px 30px;
      box-sizing: border-box;
      width: 80%;
      margin: 0 10%;

      /*stacking fieldsets above each other*/
      position: relative;
  }

  /*Hide all except first fieldset*/
  #msform fieldset:not(:first-of-type) {
      display: none;
  }

  /*inputs*/
  #msform input,
  #msform textarea {
      height: 47px;
      border: 1px solid #000000;
      padding:0 15px;
      margin-bottom: 10px;
      width: 100%;
      box-sizing: border-box;
      font-family: montserrat;
      color: #000;
      font-size: 13px;
  }

  /*buttons*/
  #msform .action-button {
      width: 100%;
      background: #FFD300;
      font-weight: bold;
      color: #000;
      font-size: 18px;
      border: 0 none;
      border-radius: 1px;
      cursor: pointer;
      padding: 10px 5px;
      box-sizing: border-box;
      margin-bottom: 30px;
  }

  .fs-title {
      font-size: 24px;
      text-transform: uppercase;
      color: #2C3E50;
      margin-bottom: 10px;
      line-height: 31px;
  }

  .fs-subtitle {
      font-weight: normal;
      font-size: 13px;
      color: #666;
      margin-bottom: 20px;
  }

  /*progressbar*/
  #progressbar {
      margin-bottom: 30px;
      overflow: hidden;
      counter-reset: step;
  }

  #progressbar li {
      list-style-type: none;
      color: #000;
      text-transform: uppercase;
      font-size: 11px;
      width: 50%;
      float: left;
      position: relative;
      font-weight: bold;
  }

  #progressbar li:before {
      content: counter(step);
      counter-increment: step;
      width: 20px;
      line-height: 20px;
      display: block;
      font-size: 10px;
      color: #333;
      background: white;
      border-radius: 3px;
      margin: 0 auto 5px auto;
  }

  /*progressbar connectors*/
  #progressbar li:after {
      content: '';
      width: 100%;
      height: 2px;
      background: white;
      position: absolute;
      left: -50%;
      top: 9px;
      z-index: -1;
      /*put it behind the numbers*/
  }

  #progressbar li:first-child:after {
      /*connector not needed before the first step*/
      content: none;
  }

  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = green*/
  #progressbar li.active:before,
  #progressbar li.active:after {
      background: #000;
      color: white;
  }

  input::placeholder{
      color:#000;
  }

  select {
      padding: 10px;
      margin-bottom: 12px;
      width: 100%;
      border: 1px solid #000000;
      color: #000;
  }

  .button {
    position: relative;
    width: 100%;
    display: block;
  }
  
  .button:active {
    background: #ffd300;
  }
  
  .button__text {
    color: #000;
    font-weight: bold;
    transition: all 0.2s;
  }
  
  .button--loading .button__text {
    visibility: hidden;
    opacity: 0;
  }
  
  .button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
  }
  .desc-area{
      width: 100%;
      padding-bottom: 20px;
  }
  .desc-area .little-desc{
      width: 100%;
      color:#fff;
  }
  .desc-area .little-desc .mini-title{
      font-size: 12px;
      line-height: 21px;
      margin-bottom:5px;
      margin-top: 25px;
      display: block;
  }
  .desc-area .little-desc .arrowfull-area{
      font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
  }

  .desc-area .little-desc .arrowfull-area span:first-child::after{
    content: url(/vip_bonus/img/arrow.png);
    width: 100%;
    margin: 0 5px;
    
}
.desc-area .description{
    text-align: left;
    margin-top:25px;
    font-size: 14px;
    line-height: 20px;
}
.yellow-line{
    position: fixed;
    bottom:0;
    width: 100%;
    left:0;
    height: 8px;
    background-color: #FFD300;
}
.desc-area .description span{
    color:#fff;
    margin-bottom: 10px;
}
.bold{
    font-weight: bold;
}
.w100{
    display: block;
    width: 100%;
}
.m-0
{
    margin: 0 !important;
}
  @keyframes button-loading-spinner {
    from {
      transform: rotate(0turn);
    }
  
    to {
      transform: rotate(1turn);
    }
  }

  @keyframes error {
    0% {
      color:#FFD300;
    }
  
    50% {
        color:#c03030;
    }
    100% {
        color:#FFD300;
      }
  }
  @media screen and (min-width:500px) {
    .square-bg{            
        margin-top: 30%;
    }
    .mobile-only{
        display:none;
    }
  }


  @media screen and (max-width:500px) {
    #msform{
        margin-top:0;
    }
    #msform fieldset{
        margin:0;
        width: 100%;
        padding: 0;
    }
    body{
        background-size: auto;
    }
    .desc-area .little-desc .arrowfull-area{
        font-size: 13px;
    }
    .square-bg{
        margin-top: 0;
    }
    .mobile-only{
        display:block;
    }
  }