
/* The Modal (background) */
.modal {
    /*font-family: Arial, sans-serif;*/
    font-family: "Futura Bk BT Body" !important;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2px 16px;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    background-color: white;
    color: black;
    top: 0;
    z-index: 1055;
    box-sizing: border-box;
    width: 100%;
    /*height: 50px;*/
}

.modal-body {
    padding: 2px 16px;
    pointer-events: none;
}

.modal-footer {
    display: webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: whitesmoke;
}

.btnCloseModal {
    color: gray;
    font-weight: bold;
    float: right;
    font-size: 25px;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    margin-top: -4px;
}

    .btnCloseModal:hover, .btnCloseModal:focus {
        color: #000;
        text-decoration: none;
        opacity: .75;
    }

    .btnCloseModal:not(:disabled):not(.disabled) {
        cursor: pointer;
    }

button.btnCloseModal {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.refreshBookingDataModal_Title_Class {
    color: black;
    font-size: 16px;
    font-weight: bold;
    /*height: 35px;*/
    padding-top: 15px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@media screen and (max-width: 300px) {
    .modal-content {
        width: 100%;
    }
}
