@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600;700&display=swap);
p, h1 {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.faq_wrapper {
  padding: 80px 0px 100px 0px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.faq_wrapper .faq_container h1 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 30px;
}
.faq_wrapper .faq_container .faq_tabs {
  margin: 0 -10px;
}
.faq_wrapper .faq_container .faq_tabs__tab {
  padding: 0 32px;
  font-size: 21px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  display: inline-flex;
  margin: 10px 14px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
}
.faq_wrapper .faq_container .faq_tabs__tab.active {
  background: #ffffff;
  color: #131313;
  font-weight: 700;
}
.faq_wrapper .faq_container .line {
  display: block;
  width: 100%;
  height: 3px;
  background: #414141;
  margin: 30px 0 40px 0;
}
.faq_wrapper .faq_container .faq_itemWrapper {
  columns: 2;
  column-gap: 40px;
  display: none;
}
.faq_wrapper .faq_container .faq_itemWrapper[data-topic=bonusRestriction] {
  display: block;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 20px;
  display: inline-block;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item__title {
  font-weight: 600;
  font-size: 27px;
  line-height: 35px;
  margin-bottom: 20px;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item__answer {
  font-size: 18px;
  line-height: 25px;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item a {
  color: #ffffff;
  text-decoration: underline;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item ul .dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  background: #ED8835;
  border-radius: 50%;
  margin-left: 13px;
  margin-right: 21px;
  display: block;
}
.faq_wrapper .faq_container .faq_itemWrapper .faq_item ul.bottomList {
  margin-bottom: 0;
}

@media screen and (max-device-width: 768px) {
  .faq_wrapper {
    padding: 40px 15px 80px 15px;
  }
  .faq_wrapper .faq_container .faq_itemWrapper {
    columns: 1;
  }
  .faq_wrapper .faq_container .faq_tabs {
    flex-wrap: nowrap;
    max-width: 100vw;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    margin: 0;
  }
  .faq_wrapper .faq_container .faq_tabs::-webkit-scrollbar {
    display: none;
  }
  .faq_wrapper .faq_container .faq_tabs .faq_tabs__tab {
    margin: 0 20px 0 0;
  }
  .faq_wrapper .faq_container .faq_tabs .faq_tabs__tab:last-of-type {
    margin-right: 0;
  }
  .faq_wrapper .faq_container h1 {
    font-size: 32px;
    line-height: 32px;
  }
  .faq_wrapper .faq_container .line {
    margin: 30px auto 30px auto;
    width: 100%;
  }
  .faq_wrapper .faq_container .faq_itemWrapper .faq_item__title {
    font-size: 20px;
    line-height: 26px;
  }
  .faq_wrapper .faq_container .faq_itemWrapper .faq_item__answer {
    font-size: 16px;
    line-height: 22px;
  }
  .faq_wrapper .faq_container .faq_tabs__tab {
    height: 48px;
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (max-device-width: 500px) {
  .faq_wrapper .faq_container .faq_tabs {
    flex-wrap: nowrap;
  }
  .faq_wrapper .faq_container h1 {
    padding: 0 28px;
    text-align: center;
  }
  .faq_wrapper .faq_container .line {
    margin: 20px auto 40px auto;
    width: 100%;
  }
}
