html, body {
    height: 100%;
    /*background-color: #72bac6;*/
}

body {
    position: relative;
}

.number-button {
    height: 50px;
    width: 50px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 100%;
    margin: 5px;
}

.checkin-button {
    height: 50px;
}

.checkin-input {
    font-weight: bold;
    margin: 0 auto;
    max-width: 300px;
    text-align: center
}

div>#logo {
    max-height: 175px;
    max-width: 175px;
}

#welcome-title {
    color: white;
}

#reward-icon {
    width: 80px;
    margin: 10px;
    right: 0 !important;
    left: unset !important;
}

#submit-button {
    min-width: 200px;
}

/* Fix small buttons on for Ipad Pro 1024x1366 */
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) {
    .number-button {
        height: 70px;
        width: 70px;
        font-size: 38px;
        font-weight: bold;
        border-radius: 100%;
        margin: 4px;
    }

    .checkin-button {
        /*height: 100px;*/
        /*font-size: 32px;*/
    }

    .checkin-input {
        font-weight: bold;
        font-size: 26px;
        min-height: 75px;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }


    div>#logo {
        max-height: 250px;
        max-width: 250px;
    }

    #reward-icon {
        width: 220px;
        margin: 30px;
    }
}


.zoom {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.zoom-out {
    transform: scale(1.25);
    -moz-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -o-transform: scale(1.25);
    -ms-transform: scale(1.25);
}

.zoom-in {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
}

.main-checkin {
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px -5px rgb(50 50 93 / 25%), 0 8px 10px -8px rgb(0 0 0 / 30%);
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}