@font-face {
  font-family: "Mdeb";
  src: url("./assests/MicrogrammaDExtendedBold.otf");
}
@font-face {
  font-family: "Gc";
  src: url("./assests/GraffitiCity.otf");
}
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #000;
    padding: 0;
  }
.noplayimggif{
  height: 100% !important;
  max-width: 90vh !important;
  object-fit: cover;
}
  .password_container{
    background-color: #000;
    padding: 40px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  
  }
  .question_mark{
    font-family: "Gc";
    color: #EE202E;
  }
  .styleplybtn:disabled{
    opacity: 0.5;
  }
  
  .password_container input{
    outline: none;
    border: none;
    background-color: #303030;
    padding: 10px;
    border-radius: 10px;
    /* opacity: 0.5; */
    /* width: 90%; */
    /* width: 100px; */
    min-width: none;
    color: white;
  }
  .password_container .label{
    color: white;
    margin-bottom: 10px;
    font-family: 'Mdeb';
  }
  .password_container button{
    color: white;
    margin-top: 10px;
    font-family: 'Mdeb';
    background-color: #303030;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
  }
  #app {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #080808;
    display: flex;
    background-image: url('./assests/Slot-Machine.gif');
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .doors {
    display: flex;
    margin-top: 5%;
  }
  
  .door {
    background: #000000;
    background-image: url('./assests/bgBottles.svg');
    background-size: cover;
    width: 35vh;
    height: 52vh;
    overflow: hidden;
    border-radius: 5px;
    margin: 20px;
  }
  
  .boxes {
    /* transform: translateY(0); */
    height: 100%;
    transition: transform 1s ease-in-out;
    display: grid;
    justify-content: center;
    align-items: center;
    /* padding-top: 40px; */
    /* display: flex;
    justify-content: center;
    align-items: center; */
  }
  .tapealgn{
    position: fixed;
    bottom: 0px;
    margin: 0px !important;
    left: 0px;
    right: 0px;
    width: 100% !important;
    height: 100px;
    object-fit: cover;
  }
 
  .box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    height: 42vh !important;
    max-width: 100% !important;
    width: auto !important;
  }
  .logomain{
    max-width: 100%;
    height: 180px;
    animation: move 2s ease-in-out infinite alternate-reverse both;
    padding-top: 3%;
    margin-bottom: 20px;
  }
  @keyframes move {
    0%{
      transform: translateY(10px);
    }
    100%{
      transform: translateY(-7px);
    }
  }
  img{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 15px auto !important;
    width: auto !important;
    max-width: 100% !important;
    height: 80px !important;
}
  .buttons {
    margin: 1rem 0 2rem 0;
  }
  
  .styleplybtn{
    /* display: none; */
    border: none;
    cursor: pointer;
    padding: 0px !important;
    background-color: transparent;
  }
  .btnImgPly{
    max-width: 100% !important;
    height: 16vh;
    margin: 0px 0px 4vh 0px  !important;
  }

  .info {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
  .tape-slideshow-maint.sliderighttop-r {
    position: absolute;
    top: 0px;
    animation: sliderighttop 200s linear infinite;
    -webkit-animation: sliderighttop 200s linear infinite;
    background-image: url('./assests/Tape.svg');
    background-size: contain;
}
.tape-slideshow-maint {
  background-size: 1500px;
  background-repeat: repeat-x;
  width: 100%;
  height: 8%;
}
@keyframes sliderighttop {
  0% {
    background-position: -10000px;
}
100% {
    background-position: 0px;
}
}


  .tape-slideshow-main.slidelefttop-r {
    position: absolute;
    bottom: 0px;
    animation: slidelefttop 200s linear infinite;
    -webkit-animation: slidelefttop 200s linear infinite;
    background-image: url('./assests/Tape.svg');
    background-size: contain;

}
.tape-slideshow-main {
  background-size: 1500px;
  background-repeat: repeat-x;
  width: 100%;
  height: 8%;
}
@keyframes slidelefttop {
  0% {
    background-position: 0px;
}
100% {
    background-position: -10000px;
}
}




/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  bottom: 0px;
  right: 0px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.modalNonPlaying {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  bottom: 0px;
  right: 0px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.dmodal{
  width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Modal Content/Box */
.modal-content {
  background-color: #000000;
  /* padding: 20px; */
  border: 1px solid #888;
  position: relative;
  width: fit-content;
  /* height: 68vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url('./assests/SlotMachineWin.mp4'); */
  background-size: cover;
}

.modal-content-win {
  background-color: #000000;
  border: 1px solid #888;
  position: relative;
  width: 90%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('./assests/SlotMachineWin.mp4');
  background-size: cover;
}

/* The Close Button */
.close {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #7e7e7e;
  float: right;
  font-size: 62px;
  font-weight: bold;
  line-height: 80%;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.describtion {
  font-size: 3.8rem;
  display: flex;
  color: #fff;
  padding: 0px!important;
  font-family: 'Mdeb';
  margin-bottom: 80px;
  text-align: center;
  text-transform: uppercase;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.win_image {
  margin-left: 10px !important;
  height: 70px !important;
  width: 40px !important;
}
.close:hover,
.close:focus {
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
}
.stylespprttxt{
  font-family: 'Gc';
  font-size: 7.2rem !important;
  margin-bottom: 42px;
  margin-top: 3rem;
  color: #EE202E;
  text-align: center;
}
.wingifmain{
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
#time_container{
  padding: 10px;
  border-radius: 8px;
  color: #EE202E;
  background-color: #00000065;
  font-family: 'Mdeb';
  font-size: 2.4rem;
  margin-bottom: 52px;
}
#time{
  font-weight: 800;
  margin-left: 10px;
  font-family: 'Mdeb';
}
#myVideoa{
width: 100%;
height: 84vh;
object-fit: cover;
}

#myVideo{
  width: 100%;
  height: 100%;
  object-fit: fill;
}
#close_win_modal{
 position: absolute;
 top: 10px;
 display: none;
}