/* VegasHero 1.6.1 */
.filterWrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.vh-item {
  text-align: center;
  border-radius: 28px;
  background-color: white;
  padding: 8px;
  list-style-type: none;
  max-width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.vh-item a {
  position: relative;
  display: block;
  text-decoration-line: none!important;
  overflow: hidden;
}
.vh-item .rtp {
  top: 6px;
  left: 6px;
  position: absolute;
  background: #fff;
  border-radius: 20px;
  line-height: 24px;
  padding: 0px 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  opacity: 80%;
}
@media only screen and (min-width: 600px) {
  .vh-item:hover .playNowWrapper {
    display: flex;
  }
  .vh-item:hover img {
    -webkit-filter: brightness(50%);
    transform: scale(1.05);
  }
}

.vh-item img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


.slotCardImgWrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.slotCardImg{
  min-height: 128px;
  max-height: 128px;
  width: 100% !important;
  border-radius: 0!important;
  object-fit: cover;
}
@media all and (max-width: 515px) {
  .slotCardImg {
    max-height: 120px;
    min-height: 120px;
  }
}
@media all and (min-width: 516px) and (max-width: 768px) {
  .slotCardImg {
    max-height: 140px;
    min-height: 140px;
  }
}
@media all and (min-width: 769px) and (max-width: 1024px) {
  .slotCardImg {
    max-height: 135px;
    min-height: 135px;
  }
}
@media all and (min-width: 1025px) and (max-width: 1280px) {
  .slotCardImg {
    max-height: 98px;
    min-height: 98px;
  }
}
.playNowWrapper{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.playNow {
  display: flex;
  font-family: Gilroy;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  width: 90%;
  height: 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #06D6A0;
}
.filterButton {
  width: 100%!important;
  border: none!important;
  color: #fff!important;
  border-radius: 1rem!important;
  background: #05AB80!important;
  height: 3rem!important;
}
.vhCallToAction{
  border-radius: 16px;
  background: #05AB80!important;
  border: 1px solid #0dd7a3!important;
}
.bounceAnimation:hover {
  animation: bounce 1s ease;
}
@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.15);
  }
}
.slots-clear-button-wrapper{
  position: sticky;
  bottom: 5px;
  display: flex;
  justify-content: space-between;
}
.playNow:active {
  background-color: #D1D5DB;
}
.detailsWrapper {
  padding: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.detailsTitle {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  color: #171717;
  text-align: center;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.detailsProvider{
  color: #525252;
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.placeholderWrapper{
  list-style-type: none;
  background-color: #fff;
  height: 195px;
  max-width: 220px;
  border-radius: 1.5rem;
}

.filter_field, .filter_field label, .filter_field input {
  cursor: pointer!important;
}
.loader {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.loader::before , .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}
.loader::after{
  transform: rotate3d(90, 90, 0, 180deg );
  border-color: rgb(156 163 175);
}
#vh-lobby-posts-grid {
  grid-auto-rows: 1fr
}

@keyframes rotate {
  0%   {transform: rotate(0deg)}
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
  0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
  50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
  75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
}

#found-slots-count {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#found-slots-count .count {
  width: 24px;
  height: 24px;
}

.regulation-popup .description {
  text-align: center;
  font-size: 15px;
  margin-bottom: 45px;
}
.regulation-popup .description a {
  color: #E41F49;
}

.fixed-slot-cta-block:not(.open) {
  bottom: -80px;
}

/* RateMyPlugin - rating plugin */
.rmp-widgets-container {
  padding: 0;
  margin: 0 !important;
}
.rmp-rating-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.rmp-rating-widget__results {
  margin: 0 !important;
}

.invisible-header {
  background: black;
}
.invisible-header > .container {
  opacity: 0;
}
.js-rmp-results:not(.visible) {
  display: none;
}
.always-show-scrollbar::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
}

.always-show-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0,0,0,.5);
  box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.always-show-scrollbar {
  scrollbar-width: auto; /* For Firefox */
  scrollbar-color: rgba(0,0,0,.5) transparent; /* For Firefox */
  padding-right: 10px;
}
.filterTitle {
  color: #212121;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 8px;
}
.sortItem {
  height: unset!important;
  font-size: 16px!important;
  line-height: 16px!important;
  padding: 15px 12px!important;
  border-radius: 12px!important;
  color: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  justify-content: start!important;
  background-color: #fff!important;
  width: 100%;
}
.filterWrapper {
  height: unset;
  font-size: 16px;
  line-height: 16px;
  padding: 15px 12px;
  border-radius: 24px;
  color: rgba(0, 0, 0, 0.6);
  justify-content: start;
  background-color: #fff;
  width: 100%;
}
.slotCountWrapper{
  padding-bottom: 7px!important;
}
.filterSubTitle{
  color: #212121;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.filterWrapper .search-input {
  height: 48px;
  margin-top: 8px;
}
.filterWrapper .search-input input::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}
#filters_wrapper #slots-filter #sort_by span.pointer-events-none {
  text-align: left;
  white-space: normal;
}
.filter_field label span {
  color: #212121;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.filter_field span{
  color: #9E9E9E;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.hidden-checkbox {
  display: none;
}

.custom-checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  margin: 0 0 0 0!important;
}

.hidden-checkbox:checked + .custom-checkbox {
  background-color: #000;
}

.hidden-checkbox:checked + .custom-checkbox:after {
  content: '\2713';
  position: absolute;
  top: 1px;
  left: 4px;
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.always-show-scrollbar::-webkit-scrollbar {
  width: 3px;
  color: #CCC;
}
.slots-clear-button{
  background: rgba(0, 0, 0, 0.87);
}
.slots-back-button, .show-slots-filter {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  padding: 10px!important;
}
.filterResults{
  color: #212121;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
#play-for-fun-button {
  border-radius: 16px!important;
  background: #C2C2C2!important;
  border: none;
}
.rotate-icon {
  transform: unset!important;
}
.show-slots-filter-wrapper {
  display: flex;
  justify-content: space-between;
}
.disableButton{
  opacity: 1!important;
  background-color: grey!important;
}
@media only screen and (max-width: 639px) {
  #slot-feature-block{
    width: 100%;
  }
  #play-for-fun-button {
    background-color: unset!important;
    border: 1px solid #000;
  }
  .vh-item {
    border-radius: 16px;
    padding: 4px 4px 8px 4px;
  }
  .slotCardImgWrapper {
    border-radius: 13px;
  }
  #slots-filter {
    background: #F1F1F1;
    padding: 10px 20px;
    overflow: auto;
    width: 100%;
  }
  #slots-filter .icon-cancel{
    display: block;
    height: 20px;
    width: 20px;
    cursor: pointer!important;
    filter: brightness(4) invert(1);
  }
  .show-slots-filter-wrapper .filterResults{
    display: flex;
    align-items: center;
  }
  .filterResults{
    display: none;
  }
}
@media only screen and (max-width: 350px) {
  .placeholderWrapper {
    height: 153px;
  }
}
@media only screen and (max-width: 1023px) {
  .placeholderWrapper {
    height: 200px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .placeholderWrapper {
    height: 160px;
  }
}
.fixed-slot-cta-inner-block .rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__icons {
  margin: 0;
  line-height: 1;
}
.fixed-promo,
#close_fullscreen,
.fullscreen #enter_fullscreen {
  display: none;
}
.fullscreen .fixed-promo,
.fullscreen #close_fullscreen {
  display: block;
}
.fullscreen .fixed-slot-cta-inner-block {
  bottom: 0;
}
.fullscreen .fixed-stars,
.fullscreen .js-rmp-results {
  visibility: hidden;
}
.vegas-iframe .js-rmp-results {
  color: white;
}

@media all and (max-width: 639px) {
  .fullscreen .fixed-stars {
    display: none;
  }
}
@media all and (min-width: 1024px) {
  body:not(.vegas-iframe) .fixed-stars {
    left: 410px;
    top: -65px;
  }
}
@media all and (max-width: 1024px) {
  body:not(.vegas-iframe) .fixed-stars {
    left: 0;
    top: 215px;
  }
}
@media all and (min-width: 640px) and (max-width: 768px) {
  body:not(.vegas-iframe) .fixed-stars {
    top: 320px;
  }
}
@media all and (min-width: 640px) {
  body:not(.vegas-iframe) .fixed-stars {
    position: absolute;
  }
  body:not(.vegas-iframe) .fixed-slot-cta-inner-block {
    height: 0;
    padding: 0;
  }
  .fullscreen .fixed-promo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 639px) {
  body:not(.vegas-iframe) .fixed-stars {
    position: absolute;
    top: calc(100vw * (50/75) + 60px);
  }
}
body:not(.vegas-iframe) .fixed-promo,
body:not(.vegas-iframe) .iframe_controll,
body:not(.vegas-iframe) #iframe_kh_wrapper {
  display: none;
}
body:not(.vegas-iframe) .fixed-slot-cta-inner-block {
  background: transparent;
}
