@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.rls-big-banner {
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 30px 30px;
  min-height: 100vh;
  color: var(--rls-text-color) !important;
  strong {
    color: var(--rls-heading-color) !important;
  }
}
.rls-faq {
	margin: 30px 0;
  
  .rls-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
  }
  .rls-faq__question {
	margin-bottom: 0 !important;
  }
	.rls-faq__item.active {
	  .rls-faq__answer {
		display: block;
	  }
	  .rls-faq__question {
		padding-right: 36px;
		border-radius: var(--border-radius);
	  }
	}
  
	.rls-faq__question,
	.rls-faq__answer {
	  padding: 1rem;
	}
	.rls-faq__question:hover {
	  cursor: pointer;
	}
  
	.rls-faq__item {
	  position: relative;
	  background: var(--faq-bg);
	  border-radius: var(--border-radius);
	  padding-right: 36px;
	}

	.rls-faq__item:after {
	  content: "❮";
	  position: absolute;
	  right: 20px;
	  top: 10px;
	  color: var(linear-gradient(0deg, #ff9500, #feed2d 121.55%));
	  transform: rotate(-90deg) translate(-50%);
	  font-size: 20px;
	}
  
	.rls-faq__item.active:after {
	  transform: rotate(90deg) translate(-50%);
	}
  
	.rls-faq__answer {
	  display: none;
	  color: var(--text--color);
	}
  
}
  :root {
  --rls-text-color: #e2e2e2;
  --rls-body-background: #1a1b20;
  --rls-heading-color: #fff;
  --rls-primary-color: #20aa2e;
  --rls-secondary-color: #1c1b24;
  --rls-btn-accent: linear-gradient(0deg, #ff9500, #feed2d 121.55%);
  --rls-btn-color: #000;
  --rls-alt-background: #272833;
  --rls-alt-background-hover: rgba(0, 0, 0, 0.5);
  --rls-alt-background-light: #1a1b20;
  --rls-header-background: #1a1b20;
  --rls-footer-background: #1a1b20;
  --rls-menu-background: #292933;
  --rls-font-family: Inter, sans-serif;
  --rls-font-size: 16px;
  --rls-border-radius-btn: 4px;
  --rls-border-radius-small: 10px;
  --rls-slot-count: 6;
  --rls-slot-height: 250px;
  --rls-container-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--rls-font-family);
}
body {
  background: var(--rls-body-background);
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--rls-heading-color);
  margin-bottom: 20px;
}
p,
table,
ul,
ol,
blockquote {
  margin-bottom: 20px;
  color: var(--rls-text-color);
}
a {
  color: var(--rls-primary-color);
}
p,
li {
  line-height: 1.5;
}
.rls-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  min-height: 20px;
  text-decoration: none;
  border-radius: var(--rls-border-radius-btn);
  background: var(--rls-btn-accent);
  color: var(--rls-btn-color);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.89;
    transition: 0.3s ease;
  }
}

.rls-btn-accent {
  background-color: var(--rls-btn-accent);
}
.rls-header-logo {
  padding-left: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;

  .btn-menu {
    border: none;
    cursor: pointer;
    border-radius: var(--rls-border-radius-small);
    max-width: 32px !important;
    min-width: 32px !important;
    display: none;
    padding: 10px 5px;
    justify-content: center;
    align-items: center;
    &.is-shown {
      display: flex;
    }
    @media (max-width: 1024px) {
      display: flex;
      svg {
        width: 16px;
        height: 16px;
      }
    }
  }
}
.rls-header {
  padding: 10px 30px;
  display: flex;
  align-items: center;
  background-color: var(--rls-header-background);
  justify-content: space-between;
  margin-bottom: 20px;

  @media (max-width: 768px) {
    padding: 10px;
  }
  &.has-sidebar {
    padding-left: 300px;
    @media (max-width: 1024px) {
      padding-left: 0;
    }
  }
}
.rls-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  @media (max-width: 768px) {
    .btn-search {
      display: none;
    }
  }
}

.rls-footer {
  &.has-sidebar {
    padding-left: 300px;
    @media (max-width: 1024px) {
      padding-left: 0;
    }
  }
}
.rls-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;

  span {
    color: var(--rls-heading-color);
    font-size: 20px;
    font-weight: 600;
  }
}
.rls-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--rls-alt-background-light);
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 200;
  overflow-y: auto;
  

  &.is_mobile {
    left: -100%;
    .btn-close {
      display: flex;
    }
  }
  &.active {
    left: 0;
  }
  .btn-close {
    background: transparent;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    min-width: unset;
    max-width: unset;
    display: none;
    justify-content: center;
    align-items: center;
    @media (max-width: 1024px) {
      display: flex;
    }
    svg {
      color: var(--rls-heading-color);
      width: 24px;
      height: 24px;
    }
  }
  @media (max-width: 1024px) {
    left: -100%;
  }
}
.rls-main {
  &.has-sidebar {
    padding-left: 300px;
    @media (max-width: 1024px) {
      padding-left: 0;
    }
  }
}
.rls-main-container,
.rls-footer-container {
  padding: 0 30px;
  max-width: var(--rls-container-width);
  margin: 0 auto;
  @media (max-width: 768px) {
    padding: 0 10px;
  }
}
p,
li,
td,
th {
  font-size: 14px;
  line-height: 1.5;
  color: var(--rls-text-color);
}
.rls-main {
  .wp-block-image {
    img {
      border-radius: var(--rls-border-radius-small);
      border: 2px solid var(--rls-primary-color);
    }
  }
  table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid var(--rls-text-color);
    border-radius: var(--rls-border-radius-small);
    th,
    td {
      border: 1px solid var(--rls-text-color);
      padding: 10px;
    }
    thead {
      background-color: var(--rls-alt-background-light);
    }
    tbody {
      background-color: var(--rls-alt-background);
      &:hover {
        background-color: var(--rls-alt-background-hover);
      }
    }
  }
  ol,
  ul {
    padding-left: 20px;
  }
  a {
    color: var(--rls-primary-color);
  }
  b,
  strong {
    color: var(--rls-heading-color);
  }
}
.rls-btn {
  color: var(--rls-btn-color) !important;
}

.rls-footer {
  margin-top: 40px;
  padding: 40px 0;
  background-color: var(--rls-footer-background);
}
.rls-breads {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--rls-text-color);
  a {
    background-color: var(--rls-alt-background-light);
    padding: 5px 10px;
    border-radius: var(--rls-border-radius-small);
    text-decoration: none;
    color: var(--rls-text-color);
    &:hover {
      background-color: var(--rls-alt-background-hover);
    }
  }
  .breadcrumb_last {
    color: var(--rls-heading-color);
    font-weight: 600;
  }
}
.rls-game-container {
  min-height: 400px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--rls-border-radius-small);
  background-color: var(--rls-alt-background-light);
  position: relative;
  .rls-game-image {
    width: 100%;
    height: 100%;
  }
  .rls-game-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    background-color: var(--rls-primary-color);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    svg {
      width: 32px;
      height: 32px;
      color: var(--rls-btn-color);
    }
    &:hover {
      opacity: 0.8;
    }
  }
}
.alignleft,
.alignright {
  @media (max-width: 768px) {
    float: unset !important;
    width: 100%;
    display: flex !important;
    justify-content: center;
    margin: 20px auto !important;
  }
}
.btn-search {
  display: flex;
  align-items: center;
  min-width: 260px;
  opacity: 0.5;
  gap: 10px;
  justify-content: flex-start;
  background: var(--rls-alt-background);
  color: var(--rls-heading-color) !important;
}
.btn-alt {
  background: transparent;
  color: var(--rls-heading-color) !important;
  border: 1px solid var(--rls-primary-color);
  &:hover {
    background: var(--rls-alt-background-hover);
    color: var(--rls-heading-color) !important;
  }
}

.rls-footer-container {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .rls-footer-container {
    min-height: 300px;
  }
}

.single__frame {
  height: 400px;
}
.rls-horizontal-promotions {
  margin-bottom: 20px;
  position: relative;
  padding: 40px 0;
  &:before {
    border-radius: 12px;
    content: '';
    filter: blur(75px);
    height: 100px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
  }
  .rls-promotion-item {
    display: flex;
    min-height: 150px;
    background: var(--rls-alt-background-light);
    border-radius: 10px;
  }
  .rls-promotion-slide {
    overflow: hidden;
    border-radius: 10px;
    background: var(--rls-alt-background-light);
  }
  .rls-promotion-item-image {
    width: 100%;

    img {
      width: 100%;
      border-radius: 0 10px 10px 0;
      height: 100%;
      object-fit: cover;
    }
  }
  .rls-promotion-item-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    min-height: 140px;

    justify-content: space-between;

    &:before {
      content: '';
      width: 100%;
      height: 120px;
      display: block;
      position: absolute;
      top: 0;
      right: 0;

      box-shadow: 0 -20px 20px 20px var(--rls-alt-background-light);
    }
  }
  .rls-promotion-item-content {
    position: relative;
    z-index: 150;
  }
  .rls-promotion-item-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--rls-heading-color);
    margin-bottom: 10px;
  }
  .rls-promotion-item-description {
    font-size: 14px;
    color: var(--rls-text-color);
    margin-bottom: 20px;
    display: block;
  }
  .rls-btn {
    background-color: var(--rls-btn-accent);
    color: var(--rls-btn-color);
  }
}
.rls-items {
  .rls-item {
    cursor: pointer;
  }
  &.aside-grid {
    .rls-item {
      padding: 0 10px 0 0;
      height: 64px;
      border-radius: 10px;
      font-size: 14px;
      overflow: hidden;
      color: var(--rls-heading-color);
      img {
        border-radius: 10px;
        width: 64px;
        height: 64px;
      }
    }
  }
  &.aside-menu {
    .rls-item {
      background-color: var(--rls-menu-background);

      color: var(--rls-heading-color);
      transition: all 0.3s ease;
      &:hover {
        opacity: 0.92;
        transition: all 0.3s ease;
      }
      &:first-child {
        border-radius: 10px 10px 0 0;
      }
      &:last-child {
        border-radius: 0 0 10px 10px;
      }
    }
  }
  &.footer-socials {
    .rls-item {
      background-color: transparent;
      font-size: 14px;
      padding: 10px;
      line-height: 1.5;
      opacity: 0.92;
      border-radius: 20px;
      border: 1px solid var(--rls-primary-color);
      transition: all 0.3s ease;
      &:hover {
        opacity: 1;
        transition: all 0.3s ease;
      }
    }
    &:hover {
      opacity: 1;
      transition: all 0.3s ease;
    }
    img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }
  }
  &.footer-menu {
    .rls-item {
      background-color: transparent;
      font-size: 14px;
      padding: 5px 0;
      line-height: 1.5;
      opacity: 0.92;
      transition: all 0.3s ease;
      &:hover {
        opacity: 1;
        transition: all 0.3s ease;
      }
      img {
        width: 24px;
        height: 24px;
        object-fit: contain;
      }
    }
  }
  &.grid {
    display: grid;
    gap: 10px;
  }
  &.column {
    display: flex;
    flex-direction: column;
  }
  .rls-item {
    background-color: var(--rls-alt-background);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: var(--rls-heading-color);
  }
}

.rls-items[data-columns].grid {
  --columns: attr(data-columns number, 2);
  grid-template-columns: repeat(var(--columns, 2), 1fr);
}
.rls-promotions {
  margin-bottom: 20px;
  position: relative;
  padding: 40px 0;
  &:before {
    background: var(--rls-primary-color);
    border-radius: 12px;
    content: '';
    filter: blur(75px);
    height: 100px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
  }
  .rls-promotion-slide {
    overflow: hidden;
  }
  .rls-promotion-item-image {
    width: 100%;
    max-height: 140px;
    height: 140px;
    img {
      width: 32px;
      height: 32px;
    }
    img {
      border-radius: 10px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .rls-promotion-item-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: var(--rls-alt-background-light);
    border-radius: 0 0 10px 10px;
    min-height: 180px;
    justify-content: space-between;

    &:before {
      content: '';
      width: 100%;
      height: 120px;
      display: block;
      position: absolute;
      top: 1px;
      left: 0;
      /* background: var(--winhero-alt-background); */
      box-shadow: 0 -20px 20px 20px var(--rls-alt-background-light);
    }
  }
  .rls-promotion-item-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--rls-heading-color);
    margin-bottom: 10px;
  }
  .rls-promotion-item-description {
    font-size: 16px;
    color: var(--rls-text-color);
  }
  .rls-btn {
    background-color: var(--rls-btn-accent);
    color: var(--rls-btn-color);
  }
}
.rls-provayments {
  margin-bottom: 20px;
  &.footer-payments {
    .rls-providers-payments-slide {
      background-color: transparent;
      max-width: calc(100% / 8);

      img {
        height: 16px;
      }
    }
  }
}
.rls-providers-payments-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: var(--rls-border-radius-small);
  background-color: var(--rls-alt-background-light);
  min-height: 80px;
  max-width: calc(100% / 4);
  img {
    width: 100%;
    height: 42px;
    object-fit: contain;
  }
}
.rls-reviews {
	margin-top: 20px;

	.rls-reviews__title {
	  margin-bottom: 1rem;
	}
  
	.rls-reviews__list {
	  display: flex;
	  flex-direction: column;
	  gap: 1rem;
	}
  
	.rls-review {
	  padding: 1rem;
	  display: flex;
	  flex-direction: column;
	  gap: 0.5rem;
  
	  .rls-review__author {
		font-size: 18px;
		font-weight: bolder;
		color: var(--rls-heading-color);
	  }
  
	  .rls-review__rating {
		align-items: center;
		gap: 0.25rem;
		color: var(--rls-accent-color);

  
		svg {
		  width: 16px;
		  height: 16px;
		}
	  }
  
	  .rls-review__body {
		line-height: 2;
		color: var(--text--color);
	  }
	}
  }
  
  .rls-reviews-form {
	margin: 36px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 500px;
	width: 100%;
	h2 {
	  color: var(#fff);
	}
	div {
	  display: flex;
	  flex-direction: column;
	  gap: 16px;
	  color: var(#fff);
	}
	.message-sent {
	  display: none;
	}
	.message-sent.visible {
	  display: flex;
	  width: 100%;
	  height: 40px;
	  border-radius: var(--border-radius);
	  text-align: center;
	  padding: 10px;
	  background: transparent;
	  color: var(#fff);
	  border: solid 1px var(#fff);
	}
	textarea,
	input {
	  width: 100%;
	  height: 40px;
	  border-radius: var(--border-radius);
	  border: solid 1px var(#fff);
	  padding: 10px;
	  background: transparent;
	  color: var(#fff);
	}
	textarea {
	  height: 100px;
	}
	.submit {
	  background: var(linear-gradient(0deg, #ff9500, #feed2d 121.55%));
	  color: var(#fff);
	  border: none;
	  padding: 10px;
	  border-radius: var(--border-radius);
	  width: 100%;
	}
	.submit.invisible {
	  display: none;
	}
  }
  
  .comment-form-comment {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 500px;
  }
  .rls-slots {
  margin-bottom: 20px;
  &.rls-slots-grid {
    .swiper-wrapper {
      display: grid !important;
      grid-template-columns: repeat(var(--rls-slot-count), 1fr);
      gap: 10px;
      @media (max-width: 1200px) {
        grid-template-columns: repeat(6, 1fr);
      }
      @media (max-width: 1024px) {
        grid-template-columns: repeat(4, 1fr);
      }
      @media (max-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
      }
      @media (max-width: 490px) {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }

  .rls-slots-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rls-slots-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    span {
      color: var(--rls-heading-color);
      font-size: 20px;
      font-weight: 600;
    }
  }
  .rls-slot-slide {
    position: relative;
    width: 100%;
    height: var(--rls-slot-height);
    &:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--rls-alt-background-hover);
      z-index: 5;
      border-radius: var(--rls-border-radius-small);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
    }
    &:hover {
      &:before {
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
        border: 1px solid var(--rls-alt-background-hover);
      }
      .rls-slots-item-inner {
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
      }
    }
  }
  .rls-slots-item-image {
    width: 100%;
    height: 100%;
    img {
      border-radius: var(--rls-border-radius-small);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .rls-slots-item-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
  }
  .rls-slots-item-title {
    font-weight: 600;
    color: var(--rls-heading-color);
    text-decoration: none;
    font-size: 14px;
  }
  .rls-slots-item-demo {
    font-size: 12px;
    color: var(--rls-text-color);
    text-decoration: none;
  }
}
.rls-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  &.align-center {
    text-align: center;
    .rls-banner-slide {
      align-items: center;
      justify-content: center;
    }
  }
  .rls-banner-slide {
    min-height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px;
    flex-direction: column;
    gap: 20px;
  }
  .rls-banner-text {
    display: flex;
    flex-direction: column;
    max-width: 35vw;
    gap: 12px;
    @media (max-width: 768px) {
      max-width: 100%;
    }
  }
  .rls-banner-text-title {
    font-size: clamp(32px, 2vw, 64px);
    font-weight: 900;
    color: var(--rls-heading-color);
    line-height: 1;
  }
  .rls-banner-text-content {
    font-size: clamp(32px, 3vw, 55px);
    font-weight: 900;
    color: var(--rls-primary-color);
    line-height: 1;
    margin-bottom: 20px;
  }
}
.rls-winners {
  margin-bottom: 20px;
  .rls-winner-slide {
    display: flex;
    align-items: center;
    background-color: var(--rls-alt-background);
    border-radius: var(--rls-border-radius-small);
    gap: 10px;
  }
  .rls-winner-item-image {
    max-width: 76px;
    width: 76px;
    height: 76px;
    width: 100%;
    img {
      border-radius: var(--rls-border-radius-small) 0 0 var(--rls-border-radius-small);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .rls-winner-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  .rls-winner-item-title {
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--rls-heading-color);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .rls-winner-item-amount {
    font-weight: 600;
    font-size: 14px;
    color: var(--rls-primary-color);
  }
  .rls-winner-item-game {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 120px;
    width: 100%;
    color: var(--rls-text-color);
  }
}
