
.calendar-modal {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.calendar-modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

.calendar-close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.calendar-close:hover,
.calendar-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.calendar-modal-header {
    padding: 2px 16px;
    background-color: rgba(96, 96, 96, 0.9);
    color: white;
}

.calendar-modal-body {padding: 2px 16px;}

.calendar-modal-footer {
    padding: 2px 16px;
    background-color: rgba(96, 96, 96, 0.9);
    color: white;
}

@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}


