body {
    padding-top: 0 !important;
}

.header-live {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-z2 {
    margin: 5px;
}

* {box-sizing:border-box}

.live-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.live-item {
    width: 23%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    border-radius: 10px;
}

.live-video-div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.live-img {
    width: 35%;
}

.live-item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.client-label {
    max-width: max-content;
    word-wrap: break-word;
    text-align: center;
    margin-top: 5px;
}

.live-div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

h1 {
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}

.w-container {
    max-width: 1024px !important;
}

.label-live {
    font-size: large;
    margin-top: 10px;
    text-align: center;
}

.live-div label {
    font-size: x-large;
    color: red;
}

.live-player {
    width: 48vw;
    height: 27vw;
    max-width: 511px;
    max-height: 287px;
    margin-top: 10px;
}

@media only screen and (max-width: 660px) {

    .live-item {
        width: 45%;
        margin: 2%;
    }
    
    .live-img {
        width: 50%;
    }

    .live-player {
        width: 90vw;
        height: 50vw;
        max-width: 660px;
        max-height: 371px;
        margin-top: 10px;
    }
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}