/* Custom CSS*/ 
th.dow, th.prev, th.next, th.datepicker-switch, td.day, span.month, span.year {
    color: black !important;
}
td.disabled, span.disabled {
    color: grey !important;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

img.img-price {
    height: 140px;
}

a {
    color: black;
}

.head {
    background-color: #58595c !important;
}

.rest {
    background-color: #373632 !important;
}

.rest2 {
    background-color: #374632 !important;
}

.grey {
    background-color: #b4b4b4;
}

.text-white {
    color: white !important;
}

.text-black {
    color: black !important;
}

.modalReserve * {
    color: black !important;
}

.button-low-price {
    margin-top: 15px;
    background-color: #b4b4b4;
    color: white;
}

.blink {
    opacity: 0;
    animation-name: blinker;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: linear;
    animation-iteration-count: 3;
}
@keyframes blinker {
    50% {
        opacity: 1;
    }
}

.box {
    background-color: #db544c;
    
    opacity: 0;
    width: 256px;
    height: 256px;
    margin: 0 auto;
    margin-top: -7.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box1 {
    animation-name: appear1;
    animation-duration: 5s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.box2 {
    animation-name: appear2;
    animation-duration: 5s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes appear1 {
    0% {
        opacity: 1;
    }
    50% {
        background-color: #db544c;
    }
    51% {
        background-color: white;
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-color: white;
    }
}

@keyframes appear2 {
    0% {
        opacity: 1;
        background-color: white;
    }
    50% {
        background-color: white;
    }
    51% {
        background-color: #db544c;
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-color: #db544c;
    }
}

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css2?family=Orelega+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antonio&display=swap');
html, body {
  background-color: #373632;
}

* {
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    /* font-family: 'Orelega One', cursive; */
}