/* Slot View Page */
.slots-view-page {
  display: none;
  background: var(--bg-color);
  overflow-y: scroll;
  height: 100vh;
  left: 0;
  position: relative;
  transition: all .3s ease;
}

.slotview-container {
  /*height: 100vh;*/
  background: #009FE3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
}

.slots-nav-container {
  background: linear-gradient(180deg, #004765 0%, #001F2D 100%);
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  overflow-x: scroll;
  white-space: nowrap;
}

.slots-nav-container::-webkit-scrollbar {
  display: none;
}

.slots-nav-container .slots-nav {
  border: 1px solid #39BAF2;
  background: #00648F;
  padding: 11px 15px;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slots-nav-container .slots-nav.active {
  background: linear-gradient(180deg, #FA57CC 0%, #F444B8 34.9%, #E51E8D 67.19%, #E51E8D 83.33%, #BB116D 100%);
  border: 0;
}

.return-container {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.return-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.search-container input.search {
  border: 1px solid #39BAF2;
  background: url("/mobile/common/images/search-icon.svg") center left 20px #FFF no-repeat;
  width: 100%;
  height: 40px;
  padding: 11px 40px 11px 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
  position: relative;
}

.search-container > img.clear {
  position: absolute;
  right: 25px;
}

.slot-wrapper {
  padding: 10px 10px 120px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
  flex-wrap: wrap;
}

.slot-wrapper .slot-item {
  width: calc(100% / 3 - 5px);
  position: relative;
}

@media (orientation: landscape) {
  .slot-wrapper .slot-item {
    width: calc(100% / 6 - 6px);
  }
}

.slot-wrapper .slot-item > img {
  border: 1px solid #39BAF2;
}

.slot-wrapper .slot-item .slot-item-name {
  background: #00648F;
  border: 1px solid #39BAF2;
  border-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 10px;
  font-weight: 700;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
}

.slot-wrapper .slot-item .slot-item-name span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.searchNull {
  width: 100%;
  line-height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
