/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

/* /////////////////////////////////////
////////////    SETTINGS    ///////////
////////////////////////////////////*/


body {
  width: 100vw;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color:rgb(11, 11, 11);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;


}



button{
  background-color: black;
  color: white;
  width: 300px;
  height: 50px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center;
}

#app{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
}

main{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 110px;
  overflow: hidden;
}

.appCtn{
  width: 200%;
  display: flex;
  transform: translateX(-100%);
  transition: .2s transform ease-in-out;
}
.appCtn.on{
  width: 200%;
  display: flex;
  transform: translateX(0%);
  transition: .2s ease-in-out;
  height: calc(100vh - 110px)
}

.fixed{
  height: 0;
}


.listCtn{
  min-width: 100%;
  overflow: hidden;
}

.menu{
  min-width: 100%;
}

.mainCtn{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  //overflow-x: hidden;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  webkit-backface-visibility: hidden;
  position: relative;
}


.hide{
  display: none!important;
}

.show{
  display: block!important;
}

.right{
  -webkit-transform: translate3d(100%,0,0)!important;
          transform: translate3d(100%,0,0)!important;
}

.left{
  -webkit-transform: translate3d(-100%,0,0)!important;
          transform: translate3d(-100%,0,0)!important;
}

.m-left{
  -webkit-transform: translate3d(-50%,0,0);
          transform: translate3d(-50%,0,0);
}

::-webkit-calendar-picker-indicator {
    -webkit-filter: invert(1);
            filter: invert(1);
}

/* /////////////////////////////////////
////////////      APP      ////////////
////////////////////////////////////*/



nav{
  position: fixed;
  top: 0;
  z-index: 100;
}
.navigation{
  height: 50px;
  width: 100vw;
  display: block;
  background-color: black;
}


#gateSelect{
  position: absolute;
  right: 30px;
  top:25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  font-size:14px;
  border-radius: 0px;
  color: #c1c1c1;
  padding: 5px;
  outline: none;
  margin-right: 30px;
  text-align: right;
}

.logo-ctn{
  background-color: black;
  height: 60px;
}


.logo{
  font-family: sans-serif;
  color: white;
  font-weight: 600;
  line-height: 60px;
  margin-left: 30px;
  cursor: pointer;
  float: left;
  position: relative;
}


.menuIco{
  cursor: pointer;
  margin: 0;
  position: absolute;
  padding: 30px
}

.backApp{
  cursor: pointer;
  display: none;
  float: left;
  margin: 0;
  position: absolute;
  padding: 30px;
}

.backMenu{
  cursor: pointer;
  display: none;
  position: absolute;
  padding: 30px;
}

.menuIco img{
  width: 20px;
}

.backApp img{
  width: 20px;
}

.backMenu img{
  width: 20px;
}

.decoM{
  width: 100%;
  height: 100px;
  background-color: black;
  position: fixed;
  z-index: 99;
  bottom: -150px;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
        webkit-backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.decoM-active{
  bottom: 0;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
        webkit-backface-visibility: hidden;
}



.cancel-m{
  margin: 10px;
  padding: 15px 20px;
  background-color: black;
  border-radius: 5px;
  color:white;
  cursor: pointer;
}




.inputCtn{
  width: auto;
  height: 60px;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.addIco{
  width: 60px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.addIco img{
  width: 30px;
  height: 30px;
}

.inputsearch{
  z-index: 90;
  width: 100px;
  height: 20px;
  float: right;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  color: white;
  background-color: #2b2b2b;
  outline: none;
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.itemList,.itemLoaded{
  width: 100%;
  height: 50px;
  color: black;
  background-color: white;
  border-bottom: 1px solid #F1F1F1;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: .1s;
  -o-transition: .1s;
  transition: .1s;
  -webkit-transition: .1s ease-in-out;
  -o-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  overflow-y: hidden;

}

.itemLoaded .arrow{
  position: absolute;
  right: 20px;
}

.itemList::-webkit-scrollbar {
  display: none;
}

.itemList span,.itemLoaded span{
  margin-left: 30px;
  font-weight: 500;
  line-height: 50px;
}

.itemList .park{
  color: black;
  opacity: 0.4;
  line-height: 50px;
  font-size: 14px;
}

.itemList .arrow-itm,.itemLoaded .arrow{
  float: right;
  margin-right: 20px;
  height: 50px;
  line-height:65px;
  color: grey;
}

.itemList.off{
  opacity: .2;
}


.rmticket{
width: 50px;
min-height: 50px;
position: absolute;
left: 100%;
top: 0px;
background-color: red;
}

#rmTckToDb{
  color:#e7002a;
  font-size: 12px;
}

.tck_opt{
  display: flex;
  min-height: 50px;
  align-items: center;
  min-width: 60%;
  scroll-snap-align: start;
  position: relative;
}


.tck_elmt{
  display: inline-block;
  min-width: 100%;
  position: relative;
  scroll-snap-align: start;
  height: 50px;

}
.park_loc{
  color: white;
  padding: 0 15px;
  font-size: 12px;
  text-align: center;
  background-color:#151515;
  height: 50px;
  display: flex;
  align-items: center;
}
.rm_tck{
  color: white;
  padding: 0 15px;
  font-size: 12px;
  text-align: center;
  background-color: #e7002a;
  height: 50px;
  display: flex;
  align-items: center;
}


.modifyPark_bg{
  width: 100vw;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  top:110px;
}

.modifyPark_bg.on{
  height: calc(100% - 110px);
  display: flex;

}


.modifyPark{
  background-color: white;
  border-radius: 5px;
  text-align: center;
  -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0,.5));
          filter: drop-shadow(5px 5px 10px rgba(0, 0, 0,.5));
          width: 250px;
          z-index: 100;
  overflow: scroll;

}


.modifyPark .title{
  padding: 20px;
  background-color: #151515;
  color: white;
  position: sticky;
  top:0;
  -webkit-filter: drop-shadow(0px 2px 8px rgba(0, 0, 0,.5));
          filter: drop-shadow(0px 2px 8px rgba(0, 0, 0,.5));

}

.modifyPark .emp{
width: 100%;
text-align: center;
border-bottom: 1px solid rgba(0,0,0,.1);
padding: 10px 0;
background-color: white;
font-size: 13px;
color: #151515;
}


/* /////////////////////////////////////
////////////      CHECK    ////////////
////////////////////////////////////*/


.checkCtn{
  z-index: 99;
  top: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  min-width: 100vw;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  transform: translate3d(100%,0,0);
  -webkit-transform: translate3d(100%,0,0)
}

.checkCtn.open{

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  position: fixed;
}

.check{
  width: 100%;
  min-width: 100vw;
  height: auto;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.check.one{
  transform: translate3d(-100%,0,0);
  -webkit-transform: translate3d(-100%,0,0)
}

.check.two{
  transform: translate3d(-200%,0,0);
  -webkit-transform: translate3d(-200%,0,0)
}


.check_ctn{
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.back{
  width: 100%;
  height: 20%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

.back img{
  margin-left: 30px;
}


.itemId{
  font-size: 46px;
  width: 100%;
  height: 10%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.text{
  width: 100%;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.datt{
  margin-top: 5px;
  font-weight: 500;
  font-size: 12px;
  color: #202124;
}
.price{
  margin-left:10px;
}

.arr-h{
  width: 100%;
  height: 15%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.arr{
  font-size: 24px;
}

.Gate{
  width: 100%;
  height: 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gates{
  font-size: 22px;
}

.TotalT{
  width: 100%;
  height: 15%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.total{
  font-size: 22px;
}


.btnCtn{

  width: 100%;
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#payedBtn{
  z-index: 999;
}

.checkCard{
  margin-top: 30px;
  height: 80px;
  //border-radius: 10px;
  font-weight: 600;
}

.cardBox{
  width: 100%;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}



.FinalPrice{
  width: 100%;
  height: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.price{
  font-size: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}




/* /////////////////////////////////////
////////////      ADD      ////////////
////////////////////////////////////*/


.addCtn{
  width: 100%;
  z-index: 600;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0%;
  transition:.2s transform ease-in-out;
  overflow: hidden;
  position: fixed;
  transform: translate3d(0,100%,0);
  -webkit-transform: translate3d(0,100%,0);
  top: 0;
}

.addCtn.open{
  height: 100%;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
}

.closeIcn{
  position: absolute;
  margin: 30px;
  margin-top: 50px;
  top:0;
  right: 0;
  cursor: pointer;
}



.add__flex_ctn{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width:200%;
  height: auto;
  position: relative;
  margin-left: 0;

}

.getGates{
  width: 100vw;
  min-width: 100vw;
  height: auto;  /*Fallback for browsers that do not support Custom Properties*/
  position: relative;
  overflow: scroll;
}

.getGates .back{
position: absolute;
top:0;
height: 150px;
}


.gatesBox{
  margin-top: 150px;
  width:100vw;

}

.gBoxCtn{
  width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}

.gateCard{
  width: 90%;
  border-radius: 0;
  height: 150px;
  margin-bottom:20px;
  letter-spacing: 12px;

}


.createId{
  min-width: 100vw;
  height: auto;  /*Fallback for browsers that do not support Custom Properties*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}


.ticketCtn{
  margin-top: 160px;
  min-width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.addTicketTitle{
  font-size: 30px;
  margin-top: 0px;
  margin-bottom:50px;
}

.inputAdd{
  width: 70%;
  max-width: 300px;
  height: 50px;
  border: 1px solid #F1F1F1;
  font-size:25px;
  text-align: center;
  outline: 0;
  color: black;
  letter-spacing: 15px;
  margin-bottom: 30px;

}

.inputAdd::-moz-placeholder {
  letter-spacing: 5px;
  font-size: 15px;
}

.inputAdd:-ms-input-placeholder {
  letter-spacing: 5px;
  font-size: 15px;
}

.inputAdd::-webkit-input-placeholder {
  letter-spacing: 5px;
  font-size: 15px;
}

.inputAdd::-ms-input-placeholder {
  letter-spacing: 5px;
  font-size: 15px;
}

.inputAdd::placeholder {
  letter-spacing: 5px;
  font-size: 15px;
}

.addBtnCtn{
  width: 100%;
  height: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



.parkStation_ctn{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

#parkStation_select{
  margin-left: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 8px;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0px;
  color: black;
  padding: 5px;
  width: 50%;
  max-width: 200px;
  font-size: 16px;
  height: 40px;
  outline: none;
  margin-right: 30px;

}



#parkStation_select option {
  color: #000000;
}
#parkStation_select:invalid,
#parkStation_select option[value=""] {
  color: #999999;
}




#createTicket{
  all: unset;
  background-color:#D1D1D1;
  color: white;
  width: 300px;
  height: 50px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center;
}


/* /////////////////////////////////////
////////////      LOG      ////////////
////////////////////////////////////*/

.logCtn{
  width: 100%;
  height: 100vh;  /*Fallback for browsers that do not support Custom Properties*/
  height: calc(var(--vh, 1vh) * 100);
  min-width: 100%;
  background-color: white;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
        webkit-backface-visibility: hidden;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logCtn form, .forgetPwdCtn form{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logInpt{
  height: 30px;
  width: 300px;
  margin: 10px;
  border:none;
  border-bottom: 1px solid #D1D1D1;
  border-radius: 0px;
  font-size: 16px;
  outline: none;
}

#logBtn,#logBtn2{
  margin-top: 30px;
}

.logo-log{
  width:220px;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 500;
}

.errlog,.errlogPwd{
  width: auto;
  max-width: 300px;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid red;
  color: red;
  border-radius: 5px;
  display: none;
}

.recoveryMailSent{
  width: auto;
  max-width: 300px;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid green;
  color: green;
  border-radius: 5px;
  display: none;
}

.logAct{
  margin-top: 50px;
  font-size: 14px;
  text-decoration: underline;
  cursor:pointer;
}

.forgetPwdCtn{
  width: 100%;
  height: 100vh;  /*Fallback for browsers that do not support Custom Properties*/
  height: calc(var(--vh, 1vh) * 100);
  min-width: 100%;
  background-color: white;
  overflow: hidden;
  position: relative;
  display: none;
  display: none;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


/* /////////////////////////////////////
////////////     ADMIN     ////////////
////////////////////////////////////*/

.adminCtn{
  width: 200%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  overflow: hidden;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.adminTabCtn{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

  -webkit-transition: .2s ease-in-out;

  -o-transition: .2s ease-in-out;

  transition: .2s ease-in-out;
  webkit-backface-visibility: hidden;
}

.adminPanels{
  width:100%;
  display: block;
}

.adminTab{
  width: 100%;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid black;
  font-weight: 500;
  line-height: 80px;
  cursor: pointer;
  background-color: #151515;
  margin-left: 0;
}


.adminTab span {
    margin-left: 30px;
    line-height: 50px;
    font-weight: 500;
    color: white;
}

.adminTab .arrow {
    float: right;
    margin-right: 20px;
    height: 50px;
    line-height: 95px;
    color: grey;
}

.transacTab{
  width: 100%;
  background-color: black;
  display: none;
  overflow: hidden;
}

.searchTrans{
  color: white;
  width: 100%;
  padding-bottom: 30px;
  background-color: black;
  z-index: 9;
}

.transLoaded{
  position: absolute;
  overflow: scroll;
  width: 100vw;
  height: calc(100% - 110px);
}

.statLoaded{
  display: none;
  position: absolute;
  overflow: scroll;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100 - 250px);

}

.statSeparator{
  width: 100%;
  height: 10px;
  background-color: black;
  margin: 30px 0px;
}

.statTot,.statTotbis{
  color: white;
  margin-left: 30px;
}

.statTot{
  margin-top: 10px;
  margin-bottom: 10px;
}

.statTotbis{
  margin-bottom: 5px;
}

.statTot span{

  font-size: 30px;
  font-weight: 700;
}

.statTotbis span{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

#tcktot,#tckcash,#tckcb,#tcksevre,#tckge,#tckvel,#tckCbGep,#tckCbVel,#tckCashGep,#tckCashVel,#tckSevreGep,#tckSevreVel{
  color: white;
  font-size: 12px;
  margin-left: 10px;
}

.menuTitle{
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menuTitle h1{
  margin: 0;
  margin-bottom: 20px;
}

.searchCtn{
  width: 100vw;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#searchTicketInpt{
  padding: 3px;
}

#searchSelect{
  margin-left: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y:1px;
  border: 1px solid white;
  border-radius: 0px;
  color:white;
  padding: 5px;
  width: 90px;
  outline: none;
  margin-right: 30px;
}

.print,.stat{
  z-index: 99;
  display: none;
  cursor: pointer;
  float: right;
  margin-top: 30px;
  margin-right: 30px;
}


.stat.active{
  margin-top: 25px;
    margin-right: 25px;

}

.stat.active img{
  background-color: blue;
  padding: 5px;

}

.chartstot,.chartscash,.chartscb,.chartssevre,.chartsge,.chartsvel,.chartsCbGep,.chartsCbVel,.chartsCashGep,.chartsCashVel,.chartsSevreGep,.chartsSevreVel{
  height: 10px;
  width: 70%;
  background-color: transparent;
  margin-left: 30px;
  margin-bottom: 20px;
}

.chartstot div{
  width: 0%;
  height: 100%;
  background-color: white;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartscash div{
  width: 0%;
  height: 100%;
  background-color: green;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartscb div{
  width: 0%;
  height: 100%;
  background-color: blue;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartssevre div{
  width: 0%;
  height: 100%;
  background-color: orange;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsge div{
  width: 0%;
  height: 100%;
  background-color: darkblue;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsvel div{
  width: 0%;
  height: 100%;
  background-color: cornflowerblue;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsCbGep div{
  width: 0%;
  height: 100%;
  background-color: #1400ff;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsCbVel div{
  width: 0%;
  height: 100%;
  background-color: #000da9;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsCashGep div{
  width: 0%;
  height: 100%;
  background-color: #10bf13;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsCashVel div{
  width: 0%;
  height: 100%;
  background-color: #33e764;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsSevreGep div{
  width: 0%;
  height: 100%;
  background-color: #ffaf1d;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.chartsSevreVel div{
  width: 0%;
  height: 100%;
  background-color: #ff741d;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.divToPrint{
  top: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: white;
  z-index: 999;
}

.datepicker{
  margin-left: 20px;
}

.searchTrans input{
  border:1px solid #D1D1D1;
  background-color: transparent;
  margin-left: 10px;
  margin-right: 10px;
  color: white;
  outline: none;
  border-radius: 0px;
}

.ticketPicker{
  display: none;
  margin-left: 30px;
}

.ref-price,.ref-paytype{
  color:#9c9c9c;
}

.ref-hours{
  color:#1a0cd0;
  font-size: 12px;
}

.startText,.endText{
  color:white;
  text-decoration: underline;
  margin:0 10px;
  cursor: pointer;
}


.startSearch{
  color: black;
  text-align: center;
  padding: 5px;
  font-size: 12px;
  background-color: white;
  cursor: pointer;
  margin-left: 5px;
}


.ticketInfo,.newUserModal{
  //margin-top: 200vh;
  -webkit-transform: translate3d(0,100%,0);
          transform: translate3d(0,100%,0);
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  position: absolute;
  top : 0;
  z-index: 800;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
        webkit-backface-visibility: hidden;
}

.newUserModal.active{
   display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
        webkit-backface-visibility: hidden;
}

.tcki-active{
   display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  transition: .2s ease-in-out;
        webkit-backface-visibility: hidden;
}


.ticketInfo .ctn, .newUserModal .ctn{
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 97vw;
  height: 90%;
  text-align: center;
  background-color: white;
  border-radius: 5px;
  -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0,.5));
          filter: drop-shadow(5px 5px 10px rgba(0, 0, 0,.5));
  position: relative;
}



.ticketInfo .ctn .close,.newUserModal .ctn .close{
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 9999;
  padding: 30px;
}

.ticketInfo .ticketRef{
  font-size: 46px;
  margin-bottom: 20px;

}


.ticketInfo .ticketIn{
  padding: 4%;
  font-size: 24px;
  cursor: pointer;
}

#tckDate{
  font-size: 18px;
}

.ticketInfo .save{
  margin-top: 20px;
  text-decoration: underline;
  cursor: pointer;
}



.gatesTab,.createUserTab,.supressionTab{
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: black;
  display: none;
}

.gatesTab h1{
  color: white;
  margin: 0;
  margin-bottom: 10px;
  font-size: 13px;
}


.createUserTab h1{
  color: white;
  margin: 0;
  margin-bottom: 10px;
}

.supressionTab h1{
  color: white;
  margin: 0;
  margin-bottom: 10px;
}

#newGate,#newUser{
  cursor: pointer;
  color: white;
  margin-right: 30px;
  font-size: 13px;
}


.newUserModal .ctn button{
margin-top: 30px;
}

.newUserModal .ctn h2{
margin-bottom: 90px;
}



.gatesList{
  background-color: white;
  height: 50px;
  border-bottom: 1px solid black;
}

.gatesName{
  line-height: 50px;
  margin-left: 30px;
}

.delete{
  float: right;
  margin-right: 20px;
  line-height: 60px;
  width: 20px;
  height: 50px;
  opacity: .8;
}


.userCtn{
  position: absolute;
  overflow: scroll;
  width: 100vw;
  height: calc(100% - 48px);
}


.rmItemLoaded{
  background-color: white;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0,.5);
}

.rmTcksBu{
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 20px;
}
.rmTckTime{
  margin-left: 10px;
  padding: 5px;
}

.rmTcksBy{
  margin-left: 10px;
  padding: 5px;
  padding-bottom: 25px;
}

.userList{
  background-color: white;
  width: 100%;
  border-bottom: 1px solid black;
  position: relative;
}


.userName{
  padding-top: 20px;
  font-weight: 600;
  margin-left:20px
}

.userMail{
  margin-left:20px;
  padding-bottom: 20px;
}

.usrChckCtn{
  position: absolute;
  right:20px;
  top:15px;
}

#rmUaccount{
  display: none;
}


#version{
  position: absolute;
  bottom: 0px;
  width: 50%;
  padding: 10px 0px;
  text-align: center;
  color: white;
  font-size: 12px;
}

#modal{
  width: 300px;
  height: auto;
  background-color:white;
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%,-50%);
  flex-direction: column;
  border-radius: 3px;
}

#modal .message{
padding: 30px;
width: 100%;
text-align: center;
}

#modal .button{
padding: 10px 10px;
text-align: center;
width: 80%;
color: white;
margin-bottom: 20px;
background-color: black;
cursor: pointer;
}

/* /////////////////////////////////////
////////////   ANIMATION   ////////////
////////////////////////////////////*/


/* ///////// LINE */


.lineCtn{
  position: absolute;
  width: 100vw;
  height: 100vh;

}

#line {
     position: absolute;
}

#line1 {
     margin-left: 30px;
     margin-top: 30px;
     width: 200px;
     height: 1px;
     background: grey;
     opacity: 0;
     -webkit-animation-delay: 0s;
             animation-delay: 0s;
     -webkit-transform-origin: 0 0;
         -ms-transform-origin: 0 0;
             transform-origin: 0 0;
     -webkit-animation-name: slide;
     animation-name: slide;
     -webkit-animation-duration: 1s;
             animation-duration: 1s;
     -webkit-animation-iteration-count: infinite;
             animation-iteration-count: infinite;
}

#line2 {
     margin-left: 0px;
     margin-top: 100px;
     width: 500px;
     height: 2px;
     background-color: grey;
     opacity: 0;
     -webkit-animation-delay: 0.7s;
             animation-delay: 0.7s;
     -webkit-transform-origin: 0 0;
         -ms-transform-origin: 0 0;
             transform-origin: 0 0;
     -webkit-animation-name: slide;
             animation-name: slide;
     -webkit-animation-duration: 1s;
             animation-duration: 1s;
     -webkit-animation-iteration-count: infinite;
             animation-iteration-count: infinite;
}

#line3 {
     margin-left: 300px;
     margin-top: 110px;
     width: 400px;
     height: 1px;
     background: grey;
     opacity: 0;
     -webkit-animation-delay: 1.2s;
             animation-delay: 1.2s;
     -webkit-transform-origin: 0 0;
         -ms-transform-origin: 0 0;
             transform-origin: 0 0;
     -webkit-animation-name: slide2;
             animation-name: slide2;
     -webkit-animation-duration: 1s;
             animation-duration: 1s;
     -webkit-animation-iteration-count: infinite;
             animation-iteration-count: infinite;
}



#line4 {
     margin-left: 220px;
     margin-top: 10px;
     width: 100px;
     height: 1px;
     background: grey;
     opacity: 0;
     -webkit-animation-delay: 1.4s;
             animation-delay: 1.4s;
     -webkit-transform-origin: 0 0;
         -ms-transform-origin: 0 0;
             transform-origin: 0 0;
     -webkit-animation-name: slide;
             animation-name: slide;
     -webkit-animation-duration: 1s;
             animation-duration: 1s;
     -webkit-animation-iteration-count: infinite;
             animation-iteration-count: infinite;
}

@-webkit-keyframes slide {
     0% {
          -webkit-transform: scaleX(1) translateX(500px);
                  transform: scaleX(1) translateX(500px);
          opacity: 0;
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
     55% {
          opacity: 1
     }
     95% {
          opacity: 0
     }
     100% {
          -webkit-transform: scaleX(0) translateX(0px);
                  transform: scaleX(0) translateX(0px);
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
}

@keyframes slide {
     0% {
          -webkit-transform: scaleX(1) translateX(500px);
                  transform: scaleX(1) translateX(500px);
          opacity: 0;
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
     55% {
          opacity: 1
     }
     95% {
          opacity: 0
     }
     100% {
          -webkit-transform: scaleX(0) translateX(0px);
                  transform: scaleX(0) translateX(0px);
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
}

@-webkit-keyframes slide2 {
     0% {
          -webkit-transform: scaleX(1) translateX(900px);
                  transform: scaleX(1) translateX(900px);
          opacity: 0;
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
     55% {
          opacity: 1
     }
     95% {
          opacity: 0
     }
     100% {
          -webkit-transform: scaleX(0) translateX(0px);
                  transform: scaleX(0) translateX(0px);
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
}

@keyframes slide2 {
     0% {
          -webkit-transform: scaleX(1) translateX(900px);
                  transform: scaleX(1) translateX(900px);
          opacity: 0;
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
     55% {
          opacity: 1
     }
     95% {
          opacity: 0
     }
     100% {
          -webkit-transform: scaleX(0) translateX(0px);
                  transform: scaleX(0) translateX(0px);
          -webkit-animation-timing-function: ease-in-out;
                  animation-timing-function: ease-in-out
     }
}


/* ///////// LOADER */

.loaderCtn{
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

.loaderCtn-list{
  width: 100%;
  height: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  //background-color: white;
  //position: absolute;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

.loaderCtn-transac{
  width: 100%;
  height: auto;
  background-color: transparent;
  position: relative;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

.loaderCtn-transac .lds-ellipsis div {
  background: white;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
