body,
body a,
* {
  font-family: Inter, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

body button:focus {
  outline: unset !important;
  box-shadow: unset !important;
}

body .faded-line {
  border-bottom: 1px solid;
  border-image-source: linear-gradient(
    to right,
    #3c3535 1%,
    #33375a 50%,
    #3c3535 100%
  );
  border-image-slice: 1;
  margin: 0;
}

.faded-line.absolute {
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

#site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background-color: #140d24;
  background-image: url('../../img/redesign/background/bottom-lines.svg'),
    url('../../img/redesign/background/circuits.svg');
  background-position: bottom center, center center;
  background-size: 1400px, 1400px;
  background-repeat: no-repeat;
}

.header-container,
.navbar {
  background-color: transparent;
}

.header-container nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

nav ul li a {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.44px;
  transition: ease all 0.5s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #e8cfa0;
}

nav ul li:not(:first-of-type) {
  margin-left: 0.5em;
}

nav ul li:not(:last-of-type) {
  margin-right: 0.5em;
}

ul.menu-items {
  margin-bottom: 0;
  padding-left: 1em;
  z-index: 9;
}

#header-cart .main-section {
  position: relative;
  background-image: linear-gradient(135deg, #e9cfa1, #b39a6d);
  background-color: unset;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#header-cart .main-section .cart-btn span {
  font-size: 12px;
  position: absolute;
  right: -10px;
  top: -6px;
  background-color: #000;
  border-radius: 50%;
  border: 2px solid #ff0000;
  padding: 0 0.4em;
}

.footer {
  background-color: transparent;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.85em 0 0.7em;
}

.footer .social a:not(:last-of-type),
.footer .social a:not(:first-of-type),
.footer .footer-nav a:not(:last-of-type),
.footer .footer-nav a:not(:first-of-type) {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}

.footer .footer-nav a,
.footer .copyright-container p {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.footer .copyright-container p {
  margin-bottom: 2em;
}

.footer .footer-nav a {
  text-decoration: none;
  transition: ease all 0.5s;
}

.footer .footer-nav a:hover {
  color: #b39a6d;
}

.footer .footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.navbar input[type='checkbox'],
.navbar .hamburger-lines {
  display: none;
}

.container {
  margin: auto;
}

.navbar {
  z-index: 100;
  padding: 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75em;
  padding-bottom: 1.8em;
}

.menu-items {
  display: flex;
}

.menu-items li {
  list-style: none;
}

.navbar a {
  text-decoration: none;
}
hr {
  background-image: linear-gradient(
    to right,
    #3c3535 1%,
    #33375a 50%,
    #3c3535 100%
  );
  border: 0;
  width: 100%;
  height: 1px;
  margin: 20px 0 0 !important;
}

.wow {
  visibility: visible !important;
}

.menu-items .nav-link {
  padding: 0.5rem 0.8rem;
}

@media (max-width: 991px) {
  .navbar-container input[type='checkbox'],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
  }

  .navbar-container input[type='checkbox'] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    opacity: 0;
    cursor: pointer;
    right: 17px;
    z-index: 12;
  }

  .navbar-container .hamburger-lines {
    height: 23px;
    width: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
  }

  .burger-container {
    position: relative;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 10px;
    background: #b39a6d;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .menu-items {
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(0, 0, 0);
    height: 100vh;
    width: 300px;
    transform: translateX(150%);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    overflow: scroll;
    padding-top: 6em;
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .navbar-container input[type='checkbox']:checked ~ .menu-items {
    transform: translateX(40%);
  }

  .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
    color: #b39a6d;
  }

  .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
    color: #b39a6d;
  }

  nav ul li:not(:first-of-type),
  nav ul li:not(:last-of-type) {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-item .nav-link {
    padding: 0;
  }

  ul.menu-items {
    background-image: url(../../img/redesign/background/top-bg.png);
    background-size: 1528pt;
    background-repeat: no-repeat;
    background-position: 77% 0;
    border-left: 1px solid #b39a6d;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  nav ul li a {
    font-size: 13px;
  }
}

/*.navbar-nav{*/
/*    position: absolute;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    left: 0;*/
/*    right: 0;*/
/*    text-align: center;*/
/*    z-index: 9;*/
/*    background-color: #000;*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*}*/
/*body{*/
/*    box-sizing: border-box;*/
/*    font-family:'Montserrat-Regular', 'sans-serif';*/
/*    display: block;*/
/*    background-color: #000;*/
/*}*/
/*#site_wrapper{*/
/*    margin: 0 auto;*/
/*}*/
/*#site_wrapper .container.content_container, .container, .container-fluid{*/
/*    padding: 0;*/
/*}*/
/*.thin_font{*/
/*    font-family: 'Montserrat-Thin','sans-serif';*/
/*}*/
/*.text-gold{*/
/*    color: #e9cfa1;*/
/*}*/
/*.text-success{*/
/*    color: #0bc75a !important;*/
/*}*/
/*.text-danger{*/
/*    color: #f82525;*/
/*}*/
/*.only-mobile{*/
/*    display: none !important;*/
/*}*/
/*.only-desktop{*/
/*    display: block !important;*/
/*}*/
/*p.note{*/
/*    font-family: Montserrat-Thin, sans-serif;*/
/*    font-weight: 900;*/
/*    font-size: 12px;*/
/*    color:#fff;*/
/*}*/
/*a:focus, a:visited, a:active{*/
/*    outline: none;*/
/*}*/
/*-------------- Nav --------------*/
/*.header-container{*/
/*    background-color: black;*/
/*}*/

/*.logo_container .navbar-brand{*/
/*    padding-top: 2px;*/
/*    padding-bottom: 2px;*/
/*}*/
/*nav.navbar.navbar-expand-lg.navbar-light.bg-light.rounded{*/
/*    background-color: black !important;*/
/*    margin: 0;*/
/*    padding: 20px 0 0 0;*/
/*}*/
/*nav .navbar-nav .nav-link, nav .navbar-nav a.nav-link{*/
/*    font-size: 16px;*/
/*}*/
/*.navbar-expand-lg .navbar-nav .nav-link{*/
/*    padding: 0 10px 8px;*/
/*    letter-spacing: 0;*/
/*}*/
/*.navbar .navigation_links {*/
/*    margin-left: 0;*/
/*}*/

/*.navbar .navigation_links ul li.nav-item {*/
/*    padding-top: .3em;*/
/*    padding-bottom: .3em;*/
/*}*/

/*a#dropdown09 {*/
/*    padding-right: 0;*/
/*}*/
/*a.dropdown-item{*/
/*    font-size: 16px;*/
/*}*/
/*.nav-link .flag-icon{*/
/*    margin-right: 4px;*/
/*}*/
/*.policy .dropdown-menu.show{*/
/*    min-width: 95px;*/
/*    background-color: transparent;*/
/*    display: flex;*/
/*    transform: translate3d(-450px, -14px, 0px) !important;*/
/*}*/
/*.flag-icon.flag-icon-it{*/
/*    margin-right: 4px;*/
/*}*/
/*.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link{*/
/*    color: #e8cfa0;*/
/*    !*text-transform: uppercase;*!*/
/*}*/
/*.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{*/
/*    color: #e8cfa0;*/
/*}*/
/*.navbar-toggler:not(:disabled):not(.disabled){*/
/*    cursor: pointer;*/
/*    outline: none;*/
/*}*/
/*.navbar-light .navbar-nav .nav-link{*/
/*    color: white;*/
/*    text-transform: uppercase;*/
/*    transition: all 0.5s;*/
/*}*/
/*li.nav-item{*/
/*    transition: all 0.5s;*/
/*}*/
/*li.nav-item.login-icon{*/
/*    padding-top: 9px;*/
/*}*/
/*.navbar-expand-lg .navbar-nav .login-icon .nav-link{*/
/*     padding-right: 0;*/
/* }*/
/*i.fa.fa-bars{*/
/*    border: 1px solid #e8cfa0;*/
/*    padding: 5px 10px;*/
/*    border-radius: 5px;*/
/*}*/
/*.fa-navicon:before, .fa-reorder:before, .fa-bars:before{*/
/*    content: "\f0c9";*/
/*    color: #e8cfa0;*/
/*}*/
/*a#dropdown09{*/
/*    color: white;*/
/*    font-size: 16px;*/
/*}*/
/*.navbar-nav .dropdown-menu{*/
/*    position: absolute;*/
/*    float: none;*/
/*}*/
/*.show-on-mobile{*/
/*    display: none;*/
/*}*/
/*!*-------------- Landing page --------------*!*/
/*.sections-with-bg{*/
/*    background:linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 1) 100%), url("../img/icons/landing/hex.svg");*/
/*    background-repeat-x: no-repeat;*/
/*    background-position: center;*/
/*    background-position: 50% 52%;*/
/*}*/
/*h1.landing-title{*/
/*    font-family: Montserrat-Sbold, sans-serif;*/
/*    font-size: 50px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: 0.1px;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    padding-top: 92px;*/
/*    padding-bottom: 17px;*/
/*}*/
/*.prelunch{*/
/*    border-radius: 8px;*/
/*    border: dashed 1px #75da39;*/
/*    background-color: #000000;*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 16px;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    padding: 11px 15px 14px 15px;*/
/*    margin-bottom: 39px;*/
/*}*/
/*.extraction-details {*/
/*    padding-left: 0;*/
/*    margin: 2em 0;*/
/*}*/
/*.pre-lunch{*/
/*    max-width: 630px;*/
/*    margin: 0 auto;*/
/*}*/
/*.pre-lunch hr{*/
/*    background-image: linear-gradient(to right, #000000 1%, #e3ca9c 50%, #000000 100%);*/
/*    border: 0;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    margin: 0 !important;*/
/*}*/
/*hr.blue{*/
/*    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #0ac959 6%, #6031b0 93%, rgba(0, 0, 0, 0) 100%);*/
/*    border: 0;*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    margin: 0 !important;*/
/*}*/
/*.small-text{*/
/*    font-size: 15px;*/
/*}*/
/*.text-success strong{*/
/*    font-family: Montserrat-Sbold, sans-serif;*/
/*}*/
/*.countdown-container {*/
/*    background-image: linear-gradient(to right, #0ac959, #6031b0 100%);*/
/*    padding: 1px;*/
/*    border-radius: 100px;*/
/*    max-width: 853px;*/
/*    margin: 34px auto 0;*/
/*}*/
/*.countdown-bg{*/
/*    background-image: linear-gradient(to bottom, #1e1e1e, #000000);*/
/*    border-radius: 100px;*/
/*    padding: 10px 0 50px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/
/*.countdown-title{*/
/*    font-family: Montserrat-Sbold, sans-serif;*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    text-align: center;*/
/*    padding-right: 40px;*/
/*}*/
/*.timer-container{*/
/*    display: flex;*/
/*}*/
/*.timer{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 20px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    padding-right: 30px;*/
/*}*/
/*.timer span{*/
/*    width: 25px;*/
/*    display: inline-block;*/
/*}*/
/*.extraction-container {*/
/*    border-radius: 8px;*/
/*    border: solid 1px #373737;*/
/*    background-color: #000000;*/
/*    margin-top: -56px;*/
/*}*/
/*.extraction-container{*/
/*    position: relative;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/
/*.live-badge{*/
/*    position: absolute;*/
/*    left: -1px;*/
/*    top: -1px;*/
/*}*/
/*#entries-chart{*/
/*    width: 300px;*/
/*    height: 346px;*/
/*    position: relative;*/
/*}*/
/* #entrieschartdiv > div{*/
/*    z-index: 9;*/
/*}*/
/*div#entrieschartdiv {*/
/*    height: 100%;*/
/*}*/
/*#entrieschartdiv svg g[fill="#ffffff"]{*/
/*    color:red;*/
/*    !*opacity: 0;*!*/
/*}*/
/*#entrieschartdiv svg g[stroke-opacity="1"]{*/
/*    display: none !important;*/
/*}*/
/*#sales-chart svg g[stroke-width="1.7999999999999998"], #team-members-chart svg g[stroke-width="1.7999999999999998"], #commission-chart svg g[stroke-width="1.7999999999999998"]{*/
/*    display: none !important;*/
/*}*/
/*.entries-chart-container{*/
/*    position: relative;*/
/*}*/
/*.inner-circle{*/
/*    display: inline-block;*/
/*    width: 226px;*/
/*    height: 226px;*/
/*    border-radius: 50%;*/
/*    border-style: solid;*/
/*    border-width: 10px;*/
/*    border-color: #191919;*/
/*    background-color: rgba(0, 0, 0, 0);*/
/*    position: absolute;*/
/*    top: 59px;*/
/*    left: 36px;*/
/*    pointer-events: none;*/
/*}*/
/*.chart-details{*/
/*    position: absolute;*/
/*    top: 132px;*/
/*    left: 0;*/
/*    right: 0;*/
/*    margin-right: auto;*/
/*    margin-left: auto;*/
/*}*/
/*.chart-numbers{*/
/*    font-size: 40px;*/
/*    font-weight: 600;*/
/*    font-stretch: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin-bottom: 0;*/
/*}*/
/*.chart-description{*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    font-stretch: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin-bottom: 0;*/
/*}*/
/*h2.extraction-title {*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 30px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*}*/
/*p.extraction-description {*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 15px;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    margin-bottom: 36px;*/
/*}*/
/*.extraction-details {*/
/*    padding-left: 42px;*/
/*    padding-right: 15px;*/
/*}*/
/*p.extraction-note {*/
/*    border-radius: 8px;*/
/*    border: dashed 1px #e9cfa1;*/
/*    background-color: #000000;*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 16px;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    padding: 11px 49px 14px 46px;*/
/*    margin-bottom: 30px;*/
/*}*/
/*a.btn.btn-register,*/
/*    button.btn-contest-exchange {*/
/*    width: 358px;*/
/*    height: 57px;*/
/*    padding: 16px 0 17px 0;*/
/*    border-radius: 8px;*/
/*    background-image: linear-gradient(99deg, #e9cfa1, #b39a6d 100%);*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 18px;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*}*/

/*button.btn-contest-exchange-disabled {*/
/*    background-image: linear-gradient(103deg, #505050, #383838);*/
/*    width: 358px;*/
/*    height: 57px;*/
/*    padding: 16px 0 17px 0;*/
/*    border-radius: 8px;*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 18px;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    cursor: not-allowed;*/
/*}*/

/*button.btn-contest-exchange {*/
/*    width: 410px;*/
/*}*/
/*.registration-note{*/
/*    font-size: 12px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    margin-top: 17px;*/
/*    margin-bottom: 5px;*/
/*}*/
/*.extraction-container.mb-5 {*/
/*    margin-bottom: 0!important;*/
/*    border-bottom-left-radius: 0;*/
/*    border-bottom-right-radius: 0;*/
/*}*/
/*.special{*/
/*    border: solid 1px #373737;*/
/*    border-radius: 0 0 8px 8px;*/
/*    border-top: unset;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 1.2em 2.75em;*/
/*}*/
/*.special .special-desc p.light-green{*/
/*    font-family: Montserrat-Sbold, sans-serif;*/
/*    font-size: 25px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #75da39;*/
/*}*/
/*.special .special-desc p.info{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 18px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*}*/
/*.special .special-desc p.total-win{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 22px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #e8cfa0;*/
/*}*/
/*.special img{*/
/*    margin-right: 55px;*/
/*}*/
/*.container-fluid .countdown-container {*/
/*    margin-top: 0;*/
/*}*/
/*p.extraction-description{*/
/*    margin-bottom: 15px;*/
/*}*/
/*.prizes-container{*/
/*    width: 1140px;*/
/*    height: 256px;*/
/*    margin: 25px auto 28px;*/
/*    border-radius: 8px;*/
/*    border-style: solid;*/
/*    border-width: 1px;*/
/*    border-image-source: linear-gradient(103deg, #e9cfa1, #b39a6d);*/
/*    border-image-slice: 1;*/
/*    background-image: linear-gradient(to bottom, #000000, #000000), linear-gradient(103deg, #e9cfa1, #b39a6d);*/
/*    background-origin: border-box;*/
/*    background-clip: content-box, border-box;*/
/*    -webkit-transform: translateZ(0);*/
/*    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);*/
/*}*/
/*.latest-winners-title{*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    margin-bottom: 22px;*/
/*}*/
/*.table-container{*/
/*    border-radius: 8px;*/
/*    border: solid 1px #373737;*/
/*    background-color: #000000;*/
/*}*/
/*.winners-table th{*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    text-transform: uppercase;*/
/*    text-align: left;*/
/*    padding: 20px 20px 25px;*/
/*}*/
/*.winners-table{*/
/*    width: 100%;*/
/*}*/
/*.winners-table td{*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    padding: 20px 20px 25px;*/
/*}*/
/*.winners-table tbody tr{*/
/*    border-top: 1px solid #373737;*/
/*    border-bottom: 1px solid #373737;*/
/*}*/
/*.winners-table tbody tr:first-of-type{*/
/*    border-color: #d6bb87;*/
/*}*/
/*.winners-table tbody tr:first-of-type td{*/
/*    color: #d6bb87;*/
/*}*/
/*.winners-table tbody tr:hover{*/
/*    background-color: #101010;*/
/*}*/
/*.winners-table td.closing-date{*/
/*    color:#a3a3a3;*/
/*}*/
/*.winners-table td.youtube-link{*/
/*    color:#c6c6c6;*/
/*}*/
/*.winners-table-footer{*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    padding: 22px;*/
/*}*/
/*.page-number {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/
/*.page-number-description{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 14px;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    margin-bottom: 0;*/
/*}*/
/*.entries-description{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #6c6c6c;*/
/*    margin-bottom: 0;*/
/*}*/
/*.latest-winners.container {*/
/*    margin-bottom: 74px;*/
/*}*/
/*.site-note hr{*/
/*    margin: 0 !important;*/
/*}*/
/*button:focus {*/
/*    outline: 0;*/
/*}*/
/*::-webkit-scrollbar{*/
/*    width: 5px;*/
/*    height: 5px;*/
/*}*/
/*!* Track *!*/
/*::-webkit-scrollbar-track{*/
/*    background: #2e2e2e;*/
/*}*/
/*!* Handle *!*/
/*::-webkit-scrollbar-thumb{*/
/*    background: #313131;*/
/*}*/
/*!* Handle on hover *!*/
/*::-webkit-scrollbar-thumb:hover{*/
/*    background: #555;*/
/*}*/
/*!*------------------- Footer ---------------*!*/
/*.footer-note{*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 12px;*/
/*    font-weight: 500;*/
/*    line-height: 1.4;*/
/*    letter-spacing: 0.2px;*/
/*    color: #ffffff;*/
/*    margin-bottom: 0;*/
/*}*/
/*.site-note .container{*/
/*    padding: 24px 0;*/
/*}*/
/*.footer{*/
/*    text-align: center;*/
/*    padding: 21px 0 26px;*/
/*}*/
/*.footer-nav {*/
/*    padding-bottom: 21px;*/
/*}*/
/*.social a{*/
/*    margin-right: 10px;*/
/*}*/
/*.social a:last-of-type {*/
/*    margin-right: 0;*/
/*}*/
/*.social a img{*/
/*    transition: all 0.3s;*/
/*}*/
/*.social a:hover img{*/
/*    filter: brightness(1.2);*/
/*}*/
/*.social{*/
/*    margin-bottom: 28px;*/
/*}*/
/*.footer-nav a{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin-right: 48px;*/
/*    transition: all 0.3s;*/
/*}*/
/*.footer-nav a:last-of-type{*/
/*    margin-right: 0;*/
/*}*/
/*.footer-nav a:hover{*/
/*    color: #d6bb87;*/
/*    text-decoration: none;*/
/*}*/
/*.footer-disclaimer p{*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 12px;*/
/*    font-weight: 100;*/
/*    line-height: 1.67;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    text-align: left;*/
/*}*/
/*.footer-disclaimer{*/
/*    padding: 53px 0 38px;*/
/*}*/
/*.copyright-description{*/
/*    font-family: Montserrat-Medium, sans-serif;*/
/*    font-size: 15px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ddbf86;*/
/*    margin-bottom: 0;*/
/*    margin-top: 19px;*/
/*}*/
/*.fullwidth {*/
/*    max-height: 38px;*/
/*}*/
/*.page-link, .page-link:hover {*/
/*    background-color: #000;*/
/*    border: 1px solid #000;*/
/*}*/
/*.page-item.disabled .page-link {*/
/*    background-color: #000;*/
/*    border-color: #000;*/
/*}*/
/*.page-item.disabled .page-link svg{*/

/*}*/
/*.sections-with-bg .extraction-container.mb-5{*/
/*    margin-bottom: 0!important;*/
/*}*/
/*.awards {*/
/*    position: absolute;*/
/*    top: -55px;*/
/*    text-align: center;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    left: 0;*/
/*    right: 0;*/
/*    color: #75da39;*/
/*    border-radius: 8px;*/
/*}*/
/*.policies-link{*/
/*    font-weight: 600;*/
/*    font-family:'Montserrat-Regular', 'sans-serif';*/
/*    transition: all 0.3s;*/
/*}*/
/*.login-container .custom-control-label.agreement-check{*/
/*    padding-top: 0;*/
/*}*/
/*a.policies-link:hover, a.policies-link:focus{*/
/*    cursor: pointer;*/
/*    color: #d6bb87;*/
/*    text-decoration: none;*/
/*}*/
/*.footer-nav div{*/
/*    display: inline-block;*/
/*}*/
/*.welcome .extraction-container{*/
/*    margin-top: 0;*/
/*}*/
/*.welcome .extraction-details{*/
/*    text-align: center;*/
/*    max-width: 680px;*/
/*    width: 100%;*/
/*    margin: 0 auto;*/
/*}*/
/*.welcome .extraction-details .burnBtnContainer button{*/
/*    margin: 0 auto 0 auto;*/
/*}*/
/*.welcome hr.blue-hr{*/
/*    background-image: linear-gradient(to right, #000000 1%, #1e68c2 50%, #000000 100%);*/
/*    height: 2px;*/
/*    border: 0;*/
/*    margin: 0!important;*/
/*}*/
/*.welcome .burn-rounds{*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    color: #fff;*/
/*    margin: 0;*/
/*    padding-top: .4em;*/
/*    padding-bottom: .6em;*/
/*}*/
/*.welcome .extraction .full-width{*/
/*    border-radius: 10px;*/
/*    border-style: solid;*/
/*    border-width: 1px;*/
/*    border-image-source: linear-gradient(*/
/*        97deg*/
/*        , #0ac959, #3132b0 100%);*/
/*    border-image-slice: 1;*/
/*    background-image: linear-gradient(to bottom, #121212, #000000), linear-gradient(*/
/*        97deg*/
/*        , #0ac959, #3132b0 100%);*/
/*    background-origin: border-box;*/
/*    background-clip: content-box, border-box;*/
/*    margin-bottom: 26px;*/
/*    -webkit-transform: translateZ(0);*/
/*    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);*/
/*}*/
/*.welcome .extraction .full-width .extraction-container.mb-5{*/
/*    border-bottom-left-radius: 10px;*/
/*    border-bottom-right-radius: 10px;*/
/*}*/
/*.note.container{*/
/*    border: 1px solid #ddc190;*/
/*    border-radius: 10px;*/
/*}*/
/*.welcome .extraction .full-width{*/
/*    margin-bottom: 0;*/
/*}*/
/*.welcome.vouchers-container{*/
/*    margin-bottom: 1.35em;*/
/*}*/
/*.note.container p{*/
/*    font-family: Montserrat-medium, sans-serif;*/
/*    font-size: 15px;*/
/*    font-weight: 500;*/
/*    line-height: 1.44;*/
/*    letter-spacing: .5px;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*    padding: 1.5em 1em;*/
/*}*/
/*.note.container p span.text-red{*/
/*    color: #f43737;*/
/*}*/
/*.note.container p span.text-yellow{*/
/*    color: #ebbc3c;*/
/*}*/
/*.note.container p span.text-green{*/
/*    color: #74e34c;*/
/*}*/
/*h3.vouchers-main-title{*/
/*    font-family: Montserrat-medium, sans-serif;*/
/*    font-size: 40px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*    padding-top: .96em;*/
/*    padding-bottom: .82em;*/
/*}*/
/*.options-container .row .card{*/
/*    background-color: #000;*/
/*    border: 1px solid #ddc190;*/
/*    border-radius: 10px;*/
/*    text-align: center;*/
/*    width: 100%;*/
/*}*/
/*.options-container .card .card-body p.options{*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 24px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*    padding-top: .8em;*/
/*    padding-bottom: .8em;*/
/*}*/
/*.options-container .card .card-body p.options-desc{*/
/*    font-family: Montserrat-Regular, sans-serif;*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    letter-spacing: normal;*/
/*    text-align: center;*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*}*/
/*.options-container .card .card-body{*/
/*    padding: 3.2em 1em;*/
/*}*/
/*.container.burn-options{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    border: 1px solid #ddc190;*/
/*    border-radius: 10px;*/
/*    padding: .85em 3em .85em 1.75em;*/
/*    margin-top: 2.3em;*/
/*}*/
/*.container.burn-options p {*/
/*    font-family: Montserrat-medium, sans-serif;*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    line-height: 1.44;*/
/*    letter-spacing: normal;*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*}*/

/*.container.burn-options img {*/
/*    margin-right: 2.75em;*/
/*}*/

/*.container.special {*/
/*    display: block;*/
/*    border: unset;*/
/*    padding: 0;*/
/*    margin-top: 1.55em;*/
/*    margin-bottom: 6.6em;*/
/*}*/

/*a.dropdown-item.list-group-item.list-group-item-action.py-2.d-flex.justify-content-between {*/
/*    background-color: #101010;*/
/*}*/

/*a#dropdown-lng {*/
/*    color: #fff;*/
/*}*/
/*.header-lang .dropdown-menu{*/
/*    position: absolute;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    left: 0;*/
/*    right: 0;*/
/*    text-align: center;*/
/*    max-width: 100px;*/
/*}*/
/*.header-lang .navbar-nav{*/
/*    padding-top:0!important;*/
/*}*/
/*!*------------------ media -----------------*!*/
/*@media (max-width: 1199.99px) {*/
/*    img.goldBankingLogo {*/
/*        height: 55px;*/
/*    }*/

/*    nav .navbar-nav .nav-link, nav .navbar-nav a.nav-link {*/
/*        font-size: 14px;*/
/*    }*/

/*    .navbar-expand-lg .navbar-nav .nav-link {*/
/*        padding: 0px 8px 0px;*/
/*    }*/
/*}*/
/*@media(max-width: 991px){*/
/*    .footer-nav div{*/
/*        display: block;*/
/*    }*/
/*    header ul.navbar-nav.mr-auto {*/
/*        text-align: center;*/
/*        width: 100%;*/
/*        background-color: black;*/
/*        display: block;*/
/*        z-index: 90;*/
/*        height: 100vh;*/
/*        margin-top: 6px;*/
/*        padding-top: 100px;*/
/*    }*/
/*    .sections-with-bg .extraction-container.mb-5 {*/
/*        padding-top: 7em;*/
/*    }*/
/*    img.goldBankingLogo {*/
/*        height: 48px;*/
/*        padding-left: 12px;*/
/*    }*/
/*    .inner-circle {*/
/*        left: 0;*/
/*        right: 0;*/
/*        margin-left: auto;*/
/*        margin-right: auto;*/
/*    }*/
/*    h1.landing-title {*/
/*        font-size: 40px;*/
/*    }*/
/*    .pre-lunch .pre-lunch-title {*/
/*        font-size: 17px;*/
/*    }*/
/*    .pre-lunch-description {*/
/*        font-size: 20px;*/
/*        padding: 18px 50px;*/
/*    }*/
/*    .win-title {*/
/*        font-size: 40px;*/
/*    }*/
/*    .win-description {*/
/*        font-family: Montserrat-Sbold, sans-serif;*/
/*        font-size: 22px;*/
/*    }*/
/*    .countdown-title, .timer {*/
/*        font-size: 15px;*/
/*    }*/
/*    .countdown-title{*/
/*        padding-right: 25px;*/
/*    }*/
/*    .timer{*/
/*        padding-right: 20px;*/
/*    }*/
/*    .countdown-container {*/
/*        max-width: 653px;*/
/*    }*/
/*    #entries-chart {*/
/*        margin: 0 auto;*/
/*    }*/
/*    h2.extraction-title {*/
/*        font-size: 25px;*/
/*    }*/
/*    .extraction-container {*/
/*        display: block;*/
/*    }*/
/*    .extraction-details {*/
/*        padding: 20px 15px 25px!important;*/
/*        text-align: center;*/
/*    }*/
/*    p.extraction-note {*/
/*        font-size: 14px;*/
/*        padding: 15px;*/
/*    }*/
/*    a.btn.btn-register,*/
/*    button.btn-contest-exchange {*/
/*        width: auto;*/
/*        height: 52px;*/
/*        padding: 16px 10px 17px;*/
/*        font-size: 16px;*/
/*    }*/
/*    .prizes-container {*/
/*        width: 100%;*/
/*    }*/
/*    .latest-winners-title {*/
/*        font-size: 16px;*/
/*    }*/
/*    .winners-table td{*/
/*        min-width: 150px;*/
/*    }*/
/*    .winners-table td.closing-date{*/
/*        min-width: 190px;*/
/*    }*/
/*    .footer-nav a, .copyright-description{*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer{*/
/*        padding: 30px;*/
/*    }*/
/*    div#navbarsExample09 {*/
/*        height: 100vh;*/
/*        z-index: 9999;*/
/*        position: absolute;*/
/*        right: 0;*/
/*        width: 100%;*/
/*        top: 95%;*/
/*        left: 0;*/
/*    }*/
/*    .special{*/
/*        display: block;*/
/*        text-align: center;*/
/*        padding: 15px 15px;*/
/*    }*/
/*    .special img {*/
/*        margin-right: 0;*/
/*    }*/
/*}*/
/*@media (max-width: 991px) and (min-width: 768px) {*/
/*    .container.content_container {*/
/*        max-width: 100%;*/
/*    }*/
/*    .logo_container {*/
/*        padding-left: 45px;*/
/*    }*/
/*    .navigation_links {*/
/*        padding-right: 45px;*/
/*    }*/
/*    .timer span {*/
/*        width: 20px;*/
/*    }*/
/*}*/
/*@media (max-width: 767px){*/
/*    .container-fluid.header-container,  .container-fluid.login-container{*/
/*        padding: 0;*/
/*    }*/
/*    img.goldBankingLogo {*/
/*        height: 48px;*/
/*        padding-left: 27px;*/
/*    }*/
/*    .login-container .card{*/
/*     border: none;*/
/*    }*/
/*    .navbar-toggler{*/
/*        padding-right: 27px;*/
/*    }*/
/*    .row.my-4 .col-12{*/
/*        padding: 0!important;*/
/*    }*/
/*    .container-fluid {*/
/*        padding: 0 15px;*/
/*    }*/
/*    .only-mobile{*/
/*        display: block !important;*/
/*    }*/
/*    .only-desktop{*/
/*        display: none !important;*/
/*    }*/
/*    h1.landing-title {*/
/*        font-size: 22px;*/
/*        padding: 42px 15px 17px;*/
/*    }*/
/*    .pre-lunch .pre-lunch-title {*/
/*        font-size: 15px;*/
/*    }*/
/*    .pre-lunch-description {*/
/*        font-size: 16px;*/
/*        padding: 18px 15px;*/
/*    }*/
/*    .win-title {*/
/*        font-size: 30px;*/
/*        padding: 20px 51px;*/
/*    }*/
/*    .countdown-bg {*/
/*        display: block;*/
/*    }*/
/*    .timer-container {*/
/*        justify-content: center;*/
/*    }*/
/*    .chart-numbers {*/
/*        font-size: 30px;*/
/*    }*/
/*    .chart-description {*/
/*        font-size: 18px;*/
/*    }*/
/*    .countdown-container, .countdown-bg {*/
/*        border-radius: 10px;*/
/*    }*/
/*    .countdown-container {*/
/*        max-width: 300px;*/
/*    }*/
/*    .timer-container {*/
/*        justify-content: center;*/
/*        text-align: center;*/
/*    }*/
/*    .timer:last-of-type {*/
/*        padding-right: 0;*/
/*    }*/
/*    .timer {*/
/*        padding-right: 10px;*/
/*    }*/
/*    .site-note{*/
/*        padding: 0 15px;*/
/*    }*/
/*    .special .special-desc p.light-green {*/
/*        font-size: 20px;*/
/*    }*/
/*    .special .special-desc p.info {*/
/*        font-size: 15px;*/
/*    }*/
/*    .special .special-desc p.total-win {*/
/*        font-size: 19px;*/
/*    }*/
/*    .options-container .row .card {*/
/*        margin-bottom: 1.5em;*/
/*    }*/
/*    h3.vouchers-main-title {*/
/*        font-family: Montserrat-medium, sans-serif;*/
/*        font-size: 29px;*/
/*        font-weight: 500;*/
/*        line-height: normal;*/
/*        letter-spacing: normal;*/
/*        text-align: center;*/
/*        color: #ffffff;*/
/*        margin: 0;*/
/*        padding-top: .96em;*/
/*        padding-bottom: .82em;*/
/*    }*/
/*    .container.burn-options {*/
/*        display: block;*/
/*        text-align: center;*/
/*        padding-bottom: 1.5em;*/
/*    }*/
/*    .container.burn-options img {*/
/*        margin-right: 0;*/
/*        margin-bottom: 1em;*/
/*        margin-top: 1em;*/
/*    }*/
/*    .container.burn-options p {*/
/*        font-size: 15px;*/
/*    }*/
/*    .container.content_container{*/
/*        max-width: 100%;*/
/*    }*/
/*}*/
/*@media (max-width: 575px) {*/
/*    button.btn-contest-exchange-disabled {*/
/*        width: 100%;*/
/*        font-size: 12px;*/
/*    }*/
/*    .footer-nav div a{*/
/*        display: block;*/
/*        margin-bottom: 10px;*/
/*        margin-right: 0;*/
/*    }*/
/*    .welcome .burn-rounds {*/
/*        font-size: 16px;*/
/*    }*/
/*    .welcome .extraction-details .burnBtnContainer button {*/
/*        font-size: 14px;*/
/*    }*/
/*    .note.container p {*/
/*        padding: 1.5em 1em;*/
/*    }*/
/*    h3.vouchers-main-title {*/
/*        font-size: 25px;*/
/*    }*/
/*}*/
/*@media(max-width: 425px){*/
/*    a.btn.btn-register,*/
/*    button.btn-contest-exchange*/
/*    {*/
/*        width: auto;*/
/*        height: 52px;*/
/*        padding: 16px 10px 17px 10px;*/
/*        font-size: 12px;*/
/*    }*/
/*    .win-title {*/
/*        font-size: 26px;*/
/*        padding: 20px 51px;*/
/*    }*/
/*    .win-description {*/
/*        font-size: 17px;*/
/*    }*/
/*    .special .values p {*/
/*        text-align: center;*/
/*    }*/
/*}*/

/*@media (max-width: 424px) {*/
/*    .winners-table-footer {*/
/*        display: block;*/
/*    }*/
/*    .page-number {*/
/*        justify-content: space-between;*/
/*    }*/
/*}*/

/*@media (max-width: 320px){*/
/*    img.goldBankingLogo{*/
/*        height: 43px;*/
/*    }*/
/*    .navbar-toggler{*/
/*        padding: 4px 30px 4px 10px!important;*/
/*    }*/
/*    .win-title {*/
/*        font-size: 30px;*/
/*        padding: 20px 15px;*/
/*    }*/
/*}*/

/*!* Change input colors on autofill on chrome browser *!*/
/*input:-webkit-autofill,*/
/*input:-webkit-autofill:hover,*/
/*input:-webkit-autofill:focus,*/
/*input:-webkit-autofill:active {*/
/*    -webkit-box-shadow: 0 0 0 30px black inset !important;*/
/*}*/
/*!*Change text in autofill textbox*!*/
/*input:-webkit-autofill{*/
/*    -webkit-text-fill-color: white !important;*/
/*}*/
/*#entrieschartdiv svg g[fill="#ffffff"]{*/
/*    fill: #000;*/
/*}*/

/*#entrieschartdiv svg g[stroke-opacity="1"],*/
/*#team_members_card_header svg g[stroke-opacity="0"],*/
/*#sales-chart svg g[stroke-width="1.7999999999999998"],*/
/*#team-members-chart svg g[stroke-width="1.7999999999999998"],*/
/*#commission-chart svg g[stroke-width="1.7999999999999998"]*/
/*{*/
/*    display: none !important;*/
/*}*/

/*a.btn.btn-contest-exchange {*/
/*    color: white !important;*/
/*}*/

/*@media (min-width: 991px) {*/
/*    .header-lang{*/
/*        display: none;*/
/*    }*/
/*}*/
/*input.swal2-input {*/
/*    color: white;*/
/*}*/
