.modal-live {
    display: none; 
    position: fixed; 
    z-index: 1091; 
    left: 0; 
    top: 50px; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.5); 
}

.modal-content-live {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 1180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: animatetop 0.4s;
    display:flex;
    flex-direction:column;
    background: #101010;
    border: 1px solid #888;
    border-radius: 5px;
}

@keyframes animatetop {
    from { top: -300px; opacity: 0 }
    to { top: 0; opacity: 1 }
}

.modal-header, .modal-body, .modal-footer {
    padding: 15px;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid #e5e5e5;
    text-align: right;
}
.modal-header-live {
    text-align: center;
    font-size: 18px;
    margin:0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.modal-body-live {
    margin:20px 0;
    padding: 10px;
    display:flex;
    justify-content:space-around;
    flex-direction:row;
    align-items: center;
}

.timer-live {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items: center;
    font-size: xx-large;
}

.timer-live span {
    display: inline-block;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    margin: 0 10px;
}

.modal-footer-live {
    text-align: center;
    margin-top: 10px;
}

.modal-footer-live button {
    padding: 10px 15px;
    margin: 5px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
}

.modal-footer-live button a{
    color: white;
}

.modal-footer-live button a:hover{
    color: white;
    text-decoration: none;
}

.modal-header-live .close {
    float: right !important;
    font-weight: bold !important;
    padding: 10px !important;
    opacity: 1 !important;
    color: #fff !important;
}

.modal-header-live .close:hover,.modal-header-live .close:focus {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}