/**
*   CLOCK
*/
#clock_div {
    position: relative;
    height: 385px;
    overflow: hidden;
    transition-duration: 1s;
}
@media (max-height: 610px) {
    #clock_div {
        height: 320px;
    }
}

#date{
    color: rgb(71, 71, 71);
    font-size: 1.4em;
    padding: 0.5em;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 7vh;
}
#clock{
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex;
    height: 165px;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    position: relative;
    width: 400px;
    margin: 10vh auto 0;
}
.unit{
    background: linear-gradient(#aaa, #777);
    border-radius: 15px;
    box-shadow: 0 2px 2px #444;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 6.5em;
    height: 100%;
    height: 160px;
    margin: 0 30px;
    min-width: 170px;
    padding: 0 20px;
    text-align: center;
    text-shadow: 0 2px 2px #666;
}
#punts {
    position: absolute;
    top: 10px;
    left: calc(50% - 10px);
    font-size: 6em;
    color: gray;
    text-shadow: 0px 3px 5px rgba(0,0,0,0.5);
    animation: punts 1s infinite;
}
@keyframes punts{
    0%  { opacity:1; }
    50% { opacity:0; }
    100%{ opacity:1; }
}


/*
*   Fitxar
*/
#fitxar_div {
    min-height: 200px;
    height: calc(100vh - 17vh - 275px);
    margin-top: 10px;
    padding: 30px 5vw;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition-duration: 1s;
}
#fitxar_input {
    width: 400px;
    min-width: 250px;
    padding: 7px 30px;
    background-color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
}
#fitxar_anar {
    position: fixed;
    top: 10px;
    right: 20px;
    display: block;
}



/*
*   Login de gestió
*/
#login {
    min-height: calc(100vh - 64px);
    display: block;
    padding: 15vh 5vw 100px;
}
#title_div {
    margin-bottom: 70px;
}
#title {
    margin: 0 auto;
    font-size: 60px;
    display: inline-block;
}
#v2 {
    padding-left: 10px;
    margin: 0 auto;
    font-size: 45px;
    color: var(--g);
    display: inline-block;
}
.input_login {
    width: 360px;
    margin: 20px auto;
    padding: 7px 30px;
    border: none;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: block;
}
.blogin {
    width: calc(350px * 0.4);
    margin-top: 10px;
    padding: 10px 0;
}
#fitxar_button {
    position: relative;
    left: 0;
    width: calc(350px * 0.6);
    font-size: 1.2em;
    display: inline-block;
    cursor: pointer;
    transition-duration: 0.2s;
}
#fitxar_arrow {
    height: 35px;
    margin-left: 10px;
    vertical-align: middle;
}
#fitxar_button:hover {
    left: 10px;
    transition-duration: 0.2s;
}

.err {
    animation: tiembla 0.1s 5;
}
@keyframes tiembla{
    0%  { transform:translateX(-15px); }
    50% { transform:translateX( 0); }
    100%{ transform:translateX( 15px); }
}