body {
    background: #f2f2f2;
}

.button {
    height: 35px;
    min-width: 100px;
    background: #8ece62;
    border: 1px solid #222;
    border-radius: 3px !important;
    padding: 0 10px 0 10px;
    color: white;
    font-size: 16px !important;
}

.date-from, .date-to {
    font-size: 15px;
    max-width: 170px;
}

@media only screen and (max-width: 410px) {
    .date-from, .date-to {
        font-size: 12px;
        width: auto;
    }
}

.modalNumber {
    font-size: 13px;
    border-radius: 2px;
    background: white;
    border: 1px solid;
    padding: 5px;
}

.logout_button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: white;
    border-radius: 100%;
    font-size: 20px;
    padding: 1px 1px 5px 5px;
    cursor: pointer;
}

#container {
    position: relative;
    margin: 25px auto;
    font-size: 21px;
    text-align: center;
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
    background: #d9e3e6;
    width: 80%;
    padding: 20px;
    border-radius: 5px;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}