/*----------------------------------------*/
/*  Google Fonts
/*----------------------------------------*/
/*@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,600,700,800&display=swap");*/
/*@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap");*/
/*----------------------------------------*/
/*  Start CSS
/*----------------------------------------*/
.text-warning {
  color: #f9c352 !important;
}

html,
body {
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 100%;
  line-height: normal;

  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  background-color: #000;
  color: #fff;
  min-height: 100%;
}
header{
  background: #fff;
}
.fixed-menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 19px 0;
}
.fixed-menu .logo-icon{
  width: 100%;
  max-width: 240px;
  height: auto;
}
.main-block {
  position: relative;
  height: 399px;
}
.top-banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-container {
  padding: 20px;
  margin-bottom: 20px;
  position: absolute;
  width: 100%;
  max-width: 1065px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Roboto', sans-serif;
}
.date-updated{
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}
.sub-header {
  width: 100%;
  max-width: 962px;
  margin: 5px auto 0;
  padding: 0 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sub-header li {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  margin: 5px;
}
.sub-header li img {
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .sub-header li {
    font-size: 13px;
    width: 47%;
  }
}

main {
  /*background: url(../img/background.jpg);*/
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.mp-title {
  /*font-family: "Roboto", sans-serif;*/
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  padding: 15px 0;
  margin-bottom: 0;
  text-transform: capitalize;
}
.mp-title span{
  display: inline-block;
}
.offers-container__title h2{
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 20px;
  text-transform: uppercase;
}
.offers-block{
  padding: 20px 0;
}
.table-header {
  border-radius: 8px;
  background: #1C1F33;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  margin-bottom: 10px;
}

.table-header .table-item {
  color: #fff;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  width: 20%;
}
.table-header .table-item:first-child{
  text-align: center;
}
.table-header .table-item h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.popup-underlay {
  background: rgba(47, 51, 78, 0.75);
  /*backdrop-filter: blur(4.5px);*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.popup-body {
  position: relative;
  z-index: 2;
}
.popup-body h3{
  font-size: 36px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2rem;
}

.close-popup-btn {
  transform: rotate(45deg);
  font-size: 24px;
  font-weight: 100;
  color: #fff;
  cursor: pointer;
  border: none;
  background-color: rgba(1, 182, 118, 1);
  position: absolute;
  right: -50px;
  top: -40px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.popup-offers-block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*width: 100%;*/
  width: 684px;
}
.popup-offer{
  width: 100%;
  max-width: 330px;
  display: block;
  /*align-items: center;*/
  /*justify-content: space-between;*/
  /*flex-direction: column;*/
  min-height: 413px;
  border: 4px solid rgba(255, 255, 255, 1);
  border-radius: 16px;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.popup-offer__logo {
  position: relative;
  width: 100%;
  background: #1C1F33;
  height: 148px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.popup-offer__logo:after {
  content: '';
  position: absolute;
  bottom: -16%;
  left: 0;
  width: 100%;
  height: 25px;
  background: #1C1F33;
  border-radius: 200%/0 0 100px 100px;
}
.popup-offer__logo a{
  width: 80%;
  max-height: 80px;
  margin: 0 auto;
}

.popup-offer__logo a img {
  width: 100%;
  height: auto;
}
.popup-offer__text{
  text-align: center;
}
.popup-offer__welcome-bonus-block{
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 234px;
  min-height: 69px;
  color: rgba(28, 31, 51, 1);
  margin: 35px auto 0;
}
.popup-offer__welcome-bonus-block .welcome-bonus{
  font-size: 20px;
  font-weight: 800;
  color: rgba(28, 31, 51, 1);
}
/*.popup-offer__welcome-bonus-block .welcome-bonus:nth-child(even) {*/
/*  color: rgba(1, 182, 118, 1);*/
/*}*/
.popup-offer__text .site-rating-text {
  font-size: 48px;
  font-weight: 500;
  color: rgba(28, 31, 51, 1);
  margin: 0;
}

.popup-offer__text .stars-container {
  font-size: 18px;
  margin-bottom: 0.2rem;
}

.popup-offer__button a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 281px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  color: white;
  cursor: pointer;
  transition: all .3s ease-out;
  background-color: rgba(1, 182, 118, 1);
  border-radius: 100px;
  text-transform: uppercase;
}
.popup-offer__button a span{
  text-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.popup-offer__button a:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
  opacity: .9;
}
.accordion {
  width: 100%;
  max-width: 982px;
  margin: 40px auto 80px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}
.accordion h2{
  margin-bottom: 50px;
}

/*.at-title:after {*/
/*  content: "+";*/
/*  position: absolute;*/
/*  width: 36px;*/
/*  height: 36px;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  background-color: #252525;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  right: 10px;*/
/*  transition: all 0.3s ease;*/
/*  font-size: 33px;*/
/*  color: #fd9b00;*/
/*  border-radius: 20px;*/
/*  line-height: 20px;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*}*/

/*.at-title.active:after {*/
/*  content: "-";*/
/*}*/

.at-item {
  margin: 40px 0;
  line-height: 24px;
}
.at-item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
}
.at-item .at-tab {
  font-size: 16px;
  font-weight: 400;
  color: rgba(222, 222, 222, 1);
}
footer.footer {
  padding: 65px 40px 10px;
  background-color: rgba(28, 31, 51, 1);
  font-family: 'Roboto', sans-serif;
}

footer.footer .container {
  text-align: center;
}

.footer-img-block {
  width: 100%;
  /* max-width: 495px; */
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 25px;
}

.footer-img-block img {
  margin-bottom: 10px;
  height: auto;
}
footer.footer p{
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

footer.footer .copyright {
  margin: 30px 0;
  font-weight: 500;
}
.footer-logo{
  display: block;
  margin: 30px auto;
  max-width: 240px;
}
.footer-logo img{
  width: 100%;
  height: auto;
}
.footer-legals{
  width: 90%;
  max-width: 395px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-legals li{
  list-style-type: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.footer-legals li a{
  color: #fff;
}
.accordion-header {
  text-align: center;
  background-color: #222222;
  color: white;
  padding: 20px 0;
}

#copyright {
  font-size: 15px;
  color: #bfc4ce;
  letter-spacing: 0;
  line-height: 34px;
}

.info-images img {
  display: inline-block;
  margin-right: 18px;
}

.footer-links > div {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 15px;
  color: #bfc4ce;
  letter-spacing: 0;
  line-height: 34px;
}

.sd-review-item {
  background: #202020;
  border-radius: 2px;
  margin-bottom: 15px;
  padding: 15px;
  text-align: center;
}

.st-ps-container h1 {
  font-size: 19px;
  color: #fbfbfb;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.st-ps-d .h3,
.st-ps-d h3 {
  font-size: 18px;
  color: #fbfbfb;
  letter-spacing: 0;
  text-align: center;
}

.tc-18p {
  display: block;
  line-height: 15px;
  font-size: 12px;
  font-weight: 300;
  color: #2b79f6;
  margin-top: 5px;
}

/* FANCY-POPUP (C) ANTE */
/* ID: fancyPopup      */

.fancy-popup *,
.fancy-popup *::after,
.fancy-popup *::before {
  box-sizing: border-box;
}

.fancy-popup,
.fancy-popup-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2001;
}

.fancy-popup-backdrop {
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 2, 16, 0.77);
}

.fancy-popup-content {
  position: absolute;
  z-index: 10000;
  top: 50%;
  left: 50%;
  width: 725px;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
}

.fancy-popup-partner-img,
.fancy-popup-partner-img img {
  display: block;
  width: 100%;
}

.fancy-popup-partner-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  left: 50px;
  bottom: 35px;
  width: 330px;
  height: 240px;
  pointer-events: none;
}

.fancy-popup-bonus {
  display: block;
  margin-bottom: 15px;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.4;
  pointer-events: none;
  text-shadow: 1px 1px 8px #000;
}

.fancy-popup-btn {
  position: relative;
  text-align: center;
  display: inline-block;
  min-width: 256px;
  color: #fff;
  background-color: #fd9b00;
  box-shadow: 0 0 17px 0 transparent;
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 31px;
  border-radius: 4px;
  padding: 12px 16px;
  text-transform: uppercase;
  pointer-events: all;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.fancy-popup-btn span {
  position: relative;
  z-index: 10;
}

.fancy-popup-btn:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 20px 0 rgba(39, 39, 39, 0.58);
}

.title-menu-container {
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  text-align: center;
  margin: 0;
  background: #000;
  padding: 1rem;
}

.logo-title {
  width: 15%;
  margin: 0;
}

.min-deposit-title {
  width: 20%;
  margin: 0;
}

.bonus-title {
  width: 17%;
  margin: 0;
}

.ranking-title {
  width: 14%;
  margin: 0;
}

.score-title {
  width: 15%;
  margin: 0;
}

.bonus-btn-title {
  width: 20%;
  margin: 0;
}

.mobile-offer-cover {
  display: none;
  justify-content: space-between;
  border: 1px solid #fd9b00;
  width: 100%;
  border-radius: 24px;
  margin: 5px 0;
  position: relative;
  min-height: 180px;
  overflow: hidden;
  text-align: center;
  background-color: #202020;
}

.mobile-offer-cover > div {
  width: 50%;
  max-height: 180px;
}

.mobile-offer-cover .ribbon-outer-mobile {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 210px;
  padding: 3px 10px 2px 26px;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 10px;
  text-align: left;
}

.left-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-col {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
}

.logo_bg-m {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.mobile-offer-cover > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  text-decoration: none;
  padding: 20px 0 0;
}

.mobile-offer-cover a:hover {
  text-decoration: none;
}

.mobile-offer-cover img {
  max-width: 150px;
  max-height: 80px;
}

.c-score-label span {
  display: block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 33px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 3px 0;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  margin: auto;
  height: 25px;
}
.operator-stars {
  margin-bottom: 0;
}

.operator-stars img {
  width: 20px;
}

.bonus-text-mob {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.gb-btn-m {
  background: #fd9b00;
  border: 1px solid #fd9b00;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  padding: 4px 0;
  display: block;
  width: 151px;
  max-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
  min-width: unset;
  margin: 10px auto;
}

.bonus-text-mob .offer-payment img {
  width: 20px;
  height: 20px;
}

.bonus-text-mob .min-deposit {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.mobile-offers .full-tc-text span a,
.mobile-offers .full-tc-text {
  font-size: 9px;
  color: #e3e3e3;
}

.mobile-offers .full-tc-text {
  margin-bottom: 0;
}

.mobile-offers .full-tc-text span {
  margin-bottom: 3px;
}

.min-deposit {
  color: #FFCB0F;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.625;
}

@media (max-width: 1200px) {
  .c-bonus-label,
  .c-bonus-label p {
    font-size: 21px;
  }
  .c-logo {
    width: 220px;
  }
  .c-bonus {
    width: 320px;
  }
  .c-button {
    padding: 0;
  }
  .d-inline-block {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 158px;
  }
  .offer-payment img {
    width: 25px;
    height: 25px;
  }
  .logo-title {
    width: 20%;
    margin: 0;
  }

  .min-deposit-title {
    width: 15%;
    margin: 0;
  }

  .bonus-title {
    width: 17%;
    margin: 0;
  }

  .ranking-title {
    width: 13%;
    margin: 0;
  }

  .score-title {
    width: 11%;
    margin: 0;
  }

  .bonus-btn-title {
    width: 24%;
    margin: 0;
  }
}
.full-tc-text {
  padding: 0.1rem 0.5rem 0;
  color: #ffffff;
  font-size: 0.65rem;
  opacity: 1;
  margin-bottom: 7px;

  /* border-bottom: 1px solid rgba(72, 72, 72, 0.3); */
}
.full-tc-text span a {
  color: #ffffff;
}

@media (max-width: 992px) {
  .table-header .table-item h5 {
    font-size: 12px;
  }
  .offers-block {
     padding: 0;
  }
  .offers-block .table-header {
    display: none;
  }
  .accordion h2 {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .at-item {
    margin: 25px 0;
  }
  .at-item h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .at-item .at-tab {
    font-size: 13px;
    line-height: normal;
  }
  footer.footer .container h3 {
    font-size: 20px;
  }
  .footer-img-block img {
    width: auto;
    /* max-width: 80px; */
    max-height: 45px;
    margin: 0 8px;
  }
  .footer-img-block {
    flex-wrap: wrap;
  }
  footer.footer .container p,
  .footer-legals li{
    font-size: 10px;
  }
  .footer-logo{
    max-width: 205px;
  }
  .footer-legals {
    max-width: 274px;
  }

  .title-menu-container {
    display: none;
  }
  .title-container {
    padding: 10px !important;
    margin-bottom: 0 !important;
  }
  .mp-title {
    font-size: 22px;
    padding: 10px 0;
  }
  .left-block,
  .right-block {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .sd-review-item .logo_bg {
    width: 100%;
    margin: 0 auto 7px;
    max-height: 56px;
    max-width: 135px;
    display: block;
    position: relative;
  }
  .c-logo img {
    width: 100%;
    max-width: 80px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .star-ranking,
  .c-score-label {
    display: block;
    font-size: 11px;
    margin: 0 2px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: normal;
    white-space: nowrap;
  }

  .c-bonus-label,
  .c-bonus-label p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
  }
  .ops-list-bonus em {
    font-size: 16px !important;
    font-weight: 600;
  }

  .min-deposit {
    font-size: 0.7em;
    padding-top: 5px;
  }
  .footer-img-block {
    justify-content: center;
    /* gap: unset; */
  }
}
.bottom-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

@media (max-width: 767.9px) {
  .fixed-menu {
    max-width: 205px;
    padding: 10px 0;
  }
  .dice-icon{
    width: 27px;
    height: auto;
  }
  .fixed-menu .logo-icon {
    max-width: 175px;
  }
  .date-updated {
    font-size: 12px;
  }
  .mp-title {
    font-size: 21px;
  }
  .main-block {
    height: 150px;
  }
  .offers-container__title h2{
    font-size: 18px;
    margin: 30px 0 10px;
  }
  .mobile-date {
    display: block;
  }
  .offers-wrap {
    margin: 0;
  }
  .sub-header {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .sub-header li {
    font-size: 10px;
    /*white-space: nowrap;*/
    margin: 2px;
    width: auto;
  }
  .sub-header li:first-child img {
    width: 26px;
    height: auto;
  }
  .sub-header li:nth-child(2) img {
    width: 14px;
    height: auto;
  }
  .sub-header li:nth-child(3) img {
    width: 12px;
    height: auto;
  }
  .sub-header li:last-child img {
    width: 18px;
    height: auto;
  }
  .accordion {
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
  }
  .at-title h4 {
    font-size: 18px;
  }
  /*.at-tab {*/
  /*  padding: 5px 50px 5px 5px;*/
  /*  font-size: 12px;*/
  /*}*/
  .at-item {
    margin-bottom: 10px;
  }
  .additional-info-block {
    margin-top: 20px;
  }
  .faq-block h3 {
    font-size: 20px;
  }
  .faq-block p {
    font-size: 12px;
  }

  footer.footer {
    padding: 20px 0;
  }
  footer.footer .container > img {
    margin: 20px 0 0px;
  }
  footer.footer .container h3 {
    font-size: 20px;
    margin: 16px 0 10px;
  }
  footer.footer .container .copyright {
    margin-top: 20px;
  }
}

@media (max-width: 559.9px) {
  .c-con {
    display: none;
  }
  .mp-title {
    padding: 0;
  }
  .fancy-popup-partner-info {
    padding: 17px;
  }

  .fancy-popup-bonus {
    font-size: 13px;
    max-width: 135px;
  }

  .fancy-popup-btn {
    font-size: 21px;
  }

  .c-logo img {
    max-width: 100px !important;
  }
  .at-title:after {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
  .faq-block .regulation-info-cover {
    margin: 20px 0 0;
  }
  .accordion {
    margin: 40px auto 20px;
  }
  .faq-block .regulation-info-cover {
    padding: 1px 20px 30px;
  }
}
@media (max-width: 450px) {
  .bottom-image {
    width: 90%;
  }
}
