
/* Slot View Page */

.slots-view-page{
  display: none;
}
.slots-nav-container {
  position: relative;
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
  text-align: center;
  background-color: var(--dark-gray);
}

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

.slots .slots-nav {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  position: relative;
  background: var(--light-gray);
    margin-right: 10px;
    color: var(--white-bg);
}

.slots .slots-nav:last-child {
    margin-right: 0;
}

.slots-nav.active {
  color: var(--bg-color);
  background: var(--primary-gradient);
}

/*.slots-nav.active:before {*/
/*  content: "";*/
/*  display: block;*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  background-color: #08bbff;*/
/*  height: 2px;*/
/*  width: calc(100% - 15px);*/
/*}*/

.slot-container {
  padding: 9px;
  min-height: 300px;
}

.slot-item-wrapper {
  /*height: 180px !important;*/
  padding: 0 !important;
  border: solid 1px transparent !important;
  margin-bottom: 1px !important;
  -webkit-animation-duration: .75s;
  -moz-animation-duration: .75s;
  -o-animation-duration: .75s;
  animation-duration: .75s;
  animation-timing-function: ease-in;
}

.slot-item {
  height: 100%;
  position: relative;
  background-color: #00000010 !important;
  margin: 0 !important;
    border: 1px solid var(--border-color);
}

.slot-title {
  text-align: center;
  background: var(--bg-color);
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 5px 1px;
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 80px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.slot-animate.ng-leave {
  animation: slideOutLeft .25s ease-in;
}

.slot-view-animate.ng-enter {
  animation: slideInRight .25s cubic-bezier(0.01, 1.01, 0.72, 1.01);
}
.slot-item-wrapper.slot-1102,
.slot-item-wrapper.slot-1087{
  height: 125px!important;
}
/*.slot-item-wrapper.slot-1107,
.slot-item-wrapper.slot-1100,
.slot-item-wrapper.slot-1105,
.slot-item-wrapper.slot-1104,
.slot-item-wrapper.slot-1103{
  height: 154px!important;
}*/

.slot-item-wrapper.animated.fadeInUp {
  animation-duration: .35s;
  -webkit-animation-duration: .35s;
}

.loading-placeholder ul li {
  height: 180px;
  width: calc(100% / 3 - 5px);
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: #444444;
  display: inline-block;
  position: relative;
  float: left;
  overflow: hidden;
}

.loading-placeholder ul li:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 80%) 50% 50%;
  animation: phLoad 1s linear infinite;
}

.loading-placeholder ul li span {
  position: absolute;
  bottom: 0;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.15);
  width: 100%;
}

.loading-placeholder ul li:last-child {
  margin-right: 0;
}

main.slot-page {
  animation-duration: .15s;
}

@keyframes phLoad {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(200%)
  }
}

.filter-container {
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 1px 20px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-top: 10px;
    border-radius: 4px;
}

.filter-container input {
    background: url(/./common/images/search-icon.svg) left 15px center no-repeat #000;
    border: 1px solid #585858;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    position: absolute;
    align-items: center;
    color: #FFFFFF;
    background-size: 20px;
    width: 100%;
    outline: 0;
    padding: 0 10px 0 45px;
}
.filter-container img {
    position: relative;
    margin-left: auto;
}
.search-slot {
    width: 250px;
    height: 40px;
    border: none;
    color: #aeaeae;
    padding-left: 45px;
    background-size: 15px;
}



/* End: Slots View Page */
