@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

.top-nav .btn-outline-light:hover {
    color: var(--bs-primary);
}

.poster {
    z-index: 0;
}

.poster:before {
    background-image: url(assets/img/beach.jpg) !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    filter: blur(0px);
}

body.poster:before {
    position: fixed;
}

@media (min-width: 1440px), (min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 992px) and (min-resolution: 192dpi) {
    .poster:before {
        background-image: url(assets/img/beach.jpg) !important;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.elegant-calencar {
    max-width: 700px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
    -webkit-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
}

.wrap-header {
    position: relative;
    width: 45%;
    background: var(--bs-secondary);
}

@media (max-width: 767.98px) {
    .wrap-header {
        width: 100%;
        padding: 20px 0;
    }
}

#header {
    width: 100%;
    position: relative;
}

.pre-button {
    left: 5px;
}

.next-button {
    right: 5px;
}

.head-day {
    font-size: 8em;
    line-height: 1;
    color: #000;
}

.head-month {
    font-size: 2em;
    line-height: 1;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
}

.calendar-wrap {
    width: 100%;
    background: #fff;
    padding: 40px 20px 20px 20px;
}

#calendar {
    width: 100%;
}

#calendar tr {
    height: 3em;
}

#calendar thead tr {
    color: #000;
    font-weight: 700;
    text-align: center;
}

#calendar tbody tr {
    color: #000;
}

#calendar tbody td {
    width: 14%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    position: relative;
    z-index: 0;
    text-align: center;
}

#calendar tbody td:after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 44px;
    height: 44px;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
    tbody td:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

#today:after {
    background: var(--bs-secondary);
}

#disabled {
    cursor: default;
    background: #fff;
}

#disabled:hover {
    background: #fff;
    color: #c9c9c9;
}

#disabled:hover:after {
    background: transparent;
}