html, body {
  margin:0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/*-------------------------------------
*
*  Card expand effect
*
--------------------------------------*/

.bgSlot{
  display:flex !important;
  flex-direction: column !important;
  width: 100% !important;
  background-size:cover !important;
}

.card_container {
    flex-basis: auto;
    display: flex;
    flex-direction: row;
    width: 1200px;
    height: 500px;
    overflow: hidden;
    margin: 50px auto;
}

.item {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    transition: flex-grow .5s;
    filter:none;
    position:relative;
    cursor:pointer;
    border-left:3px solid black;
    border-bottom:3px solid black;
}

.collapse {
    flex-grow: 0.5;
    filter:grayscale(80%);
}

.collapse:hover{
  filter:none;
  flex-grow: 0.55;
}

.card_background{
  height:100%;
  position:absolute;
}

.slot_logo_container{
  position:absolute;
  left:0;
  bottom:0;
  padding:20px 0 0 20px;
  background-color: rgba(0,0,0,0.7);
  width:100%;
  height:75px;
}

.slot-landing-logo{
  max-height:40px;
  position:absolute;
  left:0;
  bottom:0;
  padding:0 0 15px 10px;
  transition:0.5s;
}

.logo_expand{
  max-height: 60px;
  left:40px;
}

/*-------------------------------------
*
* Slot games navigation tab
*
--------------------------------------*/

.slot_list_container{
  display: flex;
  flex-direction: column;
  width:1200px;
  margin:0 auto;
  position:relative;
  background: rgba(0,0,0,0.4)
}

.slot-navi-tabs{
  display: flex;
  flex-direction: column;
}

.slot_navi_tab_text_upper{
  text-transform: uppercase;
}

.slot_navi{
  display:flex;
  flex-direction: row;
  transition: .5s;
}

.slot_navi span{
  flex:1;
  text-align: center;
  cursor:pointer;
  padding:20px 20px 0 20px;
  display:flex;
  flex-direction: column;
  background:linear-gradient(#e4bd31 , #b37a11, #e4bd31 ,#b37a11);

}

.slot_navi span:hover, .slot_navi span:hover a{
  background:black;
  transition:0.4s;
  color:white;
}


.slot_navi>span>a{
  text-decoration: none;
  color:black;
  font-weight: bold;
}

.display_nav{
  display:flex;
}


.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  margin:0 auto;
  visibility: hidden;
}


.slot_navi>span:hover>.arrow-up{
  visibility: visible;
}

/*-------------------------------------
*
* Search bar
*
--------------------------------------*/


.slot-searchbar{
  align-self: flex-end;
  background: white;
  display:flex;
  flex-direction: row;
  padding:3px;
  margin-bottom: 15px;
  position:relative;
  border-radius: 15px;
}

.slot-searchbar img{
  max-height: 20px;
}

.slot-searchbar input{
  border:none;
  color: black !important;
}

/* .hide_searchbar {
  display:none;
} */


/*-------------------------------------
*
* Slot games display
*
--------------------------------------*/

.slot_games{
   display:grid;
   grid-template-columns: repeat(5, minmax(100px, 1fr));
   background-color: transparent;
   padding-top:70px;
}

.slot_game{
  display:flex;
  flex-direction: column;
  color:white;
  text-align: center;
  margin:20px;
  cursor:pointer;
  filter:drop-shadow(15px 15px 15px black);
  transition:0.5s;
}

.slot_game:hover{
  transform: scale3d(1.1,1.1,1.1);
}

.slot_game img{
  width:100%;
  height: 200px;
  border-radius: 6px;
  /* object-fit: contain; */
}

.slotGameName{
  background:black;
  border-radius: 6px;
}

/* Filter provider */
.display_games{
  display:grid;
}

/* Filter by category */
.hide_game{
  display:none;
}


/*-------------------------------------
*
* Login required slot game
*
--------------------------------------*/

.slot_login_required{
  grid-template-columns: 1fr;
  background-color:#c2c2c2;
}

.slot_login_container{
  /*display:flex;*/
  /*flex-direction: column;*/
  /*padding:0 100px;*/
}

.slot_login_top{
  display:flex;
  flex-direction:row;
  align-items: stretch;
  justify-content: space-around;
  border-bottom:1px solid black;
  padding:20px;
}

.slot_login_logo{
  flex:1;
  align-self: center;
}

.slot_login_logo img{
  max-width: 250px;
}

.slot_login_credeintial{
  flex:1;
  color:black;
  display:flex;
  flex-direction:column;
  align-content: space-between;
  font-size:20px;
  justify-content: space-around;
  padding:20px 50px;
}

.slot_login_credeintial input{
  border:none;
  border-radius: 10px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin-top: 5px;
}

.slot_login_qrcode{
  flex:1;
  display:flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.slot_login_qrcode>span{
  display:flex;
  flex-direction: column;
  color:black;
  text-align: center;
  background-color:white;
  border-radius:50px;
  overflow: hidden;
  padding:10px;
}

.slot_login_qrcode>span>img{
  max-width: 100px;
}

.OS_icon>img{
  max-width: 50px;
}

/*- Bottom section (Tutorial)--*/

.slot_login_bottom{
  margin-top: 30px;
  display:flex;
  flex-direction: row;
  justify-content: space-around;
  color:black;
  align-items: stretch;
  padding:20px;
  text-align: center;
}

.right_arrow{
  align-self:center;
}

.right_arrow img{
  max-width: 50px;
}

.slot_login_steps{
  display:flex;
  flex-direction: column;
}

.slot_login_step1_bottom img,.slot_login_step2_bottom img,.slot_login_step3_bottom img{
  max-width: 100px;
  margin-top:30px;
}

/*-------------------------------------
*
* Maintenance
*
--------------------------------------*/

.slot_maintenance  {
  width: 100%;
  height: 490px;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 50px;
  margin-top: 30px;
  background-image: url(/front/resources/img/maintenance-bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  /*background-position: center top;*/
  position: relative;
}

.slot_maintainMSG  {
    font-weight: bold;
    padding-bottom: 2px;
    line-height: 3vw;
    color: #fff;
    width: 35%;
    position: relative;
    left: 50%;
    top: 20%;
}
.slot_maintainMSGsub  {
    font-weight: bold;
    padding-bottom: 2px;
    line-height: 3vw;
    width: 35%;
    position: relative;
    left: 50%;
    top: 25%;
    color: yellow;
}

.container{
  width:100%;
  margin:0 auto;
  display:flex;
  flex-direction: column;
}


.kiss_header{
  width:100%;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 0;
  font-weight: bold;
  background: linear-gradient(rgb(228, 189, 49), rgb(179, 122, 17), rgb(228, 189, 49), rgb(179, 122, 17));
}


.kiss_slot{
  width:100%;
  background: rgba(0,0,0,0.3);
  padding:0 20px;
  box-sizing: border-box;
  position:relative;
  overflow: hidden;
  text-align: center;
}

.kiss_slot_top{
  display:flex;
  align-items: center;
  justify-content: center;
  color:white;
  padding:30px 0;
  box-sizing: border-box;
  border-bottom:solid 1px rgb(228, 189, 49);
  border-top:solid 1px rgb(228, 189, 49);
}

.divider{
  width:2px;
  align-self: stretch;
  background:linear-gradient(rgb(228, 189, 49), rgb(179, 122, 17), rgb(228, 189, 49), rgb(179, 122, 17));
  margin:0 30px;
}

.kiss_logo{
  flex:1;
  width:200px;
  text-align: center;
  margin-top: 20px;
}

.kiss_logo img{
  width:90%;
  filter: drop-shadow(5px 10px 5px black);
}

.kiss_login{
  flex:1;
  display:flex;
  flex-direction: column;
  text-align: left;
}

.kiss_login>span{
  font-family: 'Bungee Inline', cursive;
  font-style: italic;
  color:rgb(228, 189, 49);
}

.kiss_login input{
  width:100%;
  font-size: 15px;
  filter: drop-shadow(5px 10px 5px black);
  border-radius: 3px;
  padding:2px 5px;
}

.kiss_username,.kiss_password{
  display:flex;
  align-items: center;
}

.copy_btn{
  width:20px;
  filter:invert();
  margin-left: 10px;
  cursor: pointer;
  transform: scale(1);
  transition: 0.2s
}

.copy_btn:active{
  transform: scale(1.1);
}

.kiss_slot_top button{
  margin-top: 20px;
  background:#e33e82;
  border-style: outset;
  border-width: 7px;
  border-color: #e33e82;
  border-radius: 5px;
  color:white;
  font-size:15px;
  font-weight: bold;
  padding:5px 0;
  cursor:pointer;
  filter: drop-shadow(5px 10px 5px black);
}

.kiss_slot_top button:hover{
  filter:brightness(150%);
}


.kiss_slot_top button:active{
  border-style: inset;
}

.kiss_qr{
  flex:1;
  display:flex;
  justify-content: space-around;
}

.kiss_qr_ios,.kiss_qr_android{
  margin:5px 0;
  display:flex;
  flex-direction: column;
  align-items: center;
}

.kiss_qr_ios img,.kiss_qr_android img{
  width:120px;
}

.kiss_qr_text{
  display:flex;
  align-items: flex-end;
  margin:10px 0;
}

.kiss_qr_text{
  font-size: 13px;
  font-weight: bold;
}

.kiss_qr_text img{
  width:20px;
  margin-left:5px
}

.kiss_slot_bottom{
  display:flex;
  justify-content: center;
  color:white;
  padding:30px 0 50px 0;
}

.kiss_steps{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  margin:0 40px;
}

.next_icon{
  width:20px;
  margin-top: 50px;
  align-self: center;
}

.kiss_steps_header{
  font-family: 'Bungee Inline', cursive;
  font-style: italic;
  color:rgb(228, 189, 49);
  align-self: flex-start;
  font-size:18px;
}

.kiss_steps_img{
  width:100px;
  margin:10px 0;
  filter: drop-shadow(5px 10px 5px black);
}

.kiss_steps_text{
  font-size:15px;
  font-weight: bold;
}

.kiss_mai{
  position:absolute;
  bottom:-20px;
  left:0;
  width:200px;
  opacity: 0.8;
  animation:moveLeft 0.5s forwards;
}

.kiss_terry{
  position:absolute;
  bottom:-20px;
  right:0px;
  width:250px;
  opacity: 0.8;
  animation:moveRight 0.5s forwards;
}

@keyframes moveLeft {

  from{
    transform: translateX(-200px);
  };

to{
  transform: translateX(0);
};

}


@keyframes moveRight {

  from{
    transform: translateX(200px);
  };

to{
  transform: translateX(0);
};

}