/*
    FONTS
*/
@font-face {
  font-family: 'Bebas Neue';
  src: url("../fonts/BebasNeue_Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
/*
    RESET
*/
*, *:before, *:after {
  box-sizing: inherit;
  animation-fill-mode: both !important;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}


html {
    width: 544px;
    height: 1080px;
    overflow: hidden;
    font-family: 'Bebas Neue';
    font-weight: bold;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff;
}
.hidden {
    display: none !important;
}
#correturnos {
    width: 100%;
}

.head {
    display: table;
    width: 100%;
    height: 150px;
    background: #0c384d;
    color: #fff;
}
.title {
    display: table-cell;
    width: 50%;
    padding-top: 15px;
    border-left: 3px solid #b1ddf1;
    border-right: 3px solid #b1ddf1;
    vertical-align: middle;
    font-size: 68px;
    text-align: center;
}

.turno {
    width: 100%;
    height: 156px;
    border-top: 6px solid #b1ddf1;
}
.turno:first-child {
    height: 150px;
    border-top: none;
}

.value {
    float: left;
    width: 50%;
    height: 100%;
    padding-top: 10px;
    border-left: 3px solid #b1ddf1;
    border-right: 3px solid #b1ddf1;
    text-align: center;
    line-height: 156px;
}
.turno__client {
    font-size: 88px;
}
.turno__door {
    font-size: 110px;
}

.value span {
    animation-name: flickering;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: both;
    animation-iteration-count: 15;
}
@keyframes flickering {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}