.matches-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 180px;
}

.matches-list:before {
    display: none;
}

.matches-list[data-result="no"] {
    align-items: center;
}

.loaded-match {
    animation: loadingMatchAnim 700ms linear;
}

@keyframes loadingMatchAnim {
    0% {
        transform: translateY(-5px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.matches-list:not(:last-of-type) {
    margin-bottom: 50px;
}

.participate-team {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    height: 110px;
    position: relative;
    z-index: 1;
}

.participate-team img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    object-position: left;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.participate-team.opponent img {
    left: auto;
    right: 0;
}

.participate-team:after,
.participate-team:before {
    background: #f90cff;
    background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(90% 0, 100% 40%, 100% 100%, 0 100%, 0 0);
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: calc(100% - 90px);
    height: 100%;
    transform: translateY(-50%);
    opacity: 0.3;
    border-radius: 5px;
    z-index: -1;
}

.participate-team:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
}

.participate-team.opponent:after,
.participate-team.opponent:before {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
    right: auto;
    left: 0;
}

.participate-team.opponent {
    text-align: left;
    justify-content: flex-start;
}

.participate-team h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    padding-right: 50px;
    margin: 0;
    max-width: calc(100% - 180px);
}

.participate-team h3 a,
.participate-team h3 a:hover {
    color: #fff;
}

.participate-team.opponent h3 {
    padding-left: 50px;
    padding-right: 0;
}

.match-info {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 60%, 0 0);
    border-radius: 3px;
    padding: 15px 20px;
    position: absolute;
    right: 35px;
    bottom: -35px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
}

.participate-team.opponent .match-info {
    clip-path: polygon(100% 0, 100% 60%, 90% 100%, 0 100%, 0 0);
    right: auto;
    left: 35px;
}

.match-time {
    padding-top: 60px;
}

.match-time h3 {
    font-size: 55px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1;
    text-align: center;
    margin: 0;
}

.matches-list[data-result="no"] h3 {
    font-size: 28px;
}

.match-time h3 span {
    display: block;
    color: #ddd;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0;
}

.match-time .watch-btn {
    text-align: center;
    margin-top: 15px;
}

.match-time .watch-btn li {
    display: inline-block;
    font-size: 30px;
    margin: 0 5px;
}

@media (max-width: 1100px) {
    .participate-team img {
        width: 160px;
        height: 160px;
    }

    .participate-team h3 {
        font-size: 22px;
        line-height: 28px;
        max-width: calc(100% - 160px);
    }
}

@media (max-width: 992px) {
    .matches-list:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .participate-team {
        height: 90px;
    }

    .participate-team {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .participate-team h3 {
        font-size: 17px;
        line-height: 24px;
        max-width: calc(100% - 130px);
        padding-right: 35px;
    }

    .participate-team.opponent h3 {
        padding-left: 35px;
        padding-right: 0;
    }

    .participate-team img {
        width: 130px;
        height: 130px;
    }

    .match-time h3 {
        font-size: 32px;
    }

    .match-time .watch-btn {
        margin-top: 10px;
    }

    .match-time .watch-btn li {
        font-size: 20px;
        margin: 0 2px;
    }

    .match-info {
        padding: 10px 15px;
        right: 25px;
        bottom: -25px;
        font-size: 11px;
    }

    .participate-team.opponent .match-info {
        right: auto;
        left: 25px;
    }
}

@media (max-width: 767px) {
    .matches-list {
        padding: 30px 30px 50px;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .matches-list:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .matches-list:before,
    .matches-list:after {
        background: #f90cff;
        background: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.3;
        z-index: -1;
    }

    .matches-list:after {
        background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
        background-size: 4px 4px;
    }

    .participate-team {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        text-align: center;
        position: static;
    }

    .participate-team.wow {
        animation-fill-mode: inherit !important;
        animation: inherit !Important;

    }

    .participate-team.opponent {
        text-align: center;
    }

    .participate-team:after, .participate-team:before {
        display: none;
    }

    .participate-team img {
        width: 85px;
        height: 85px;
        position: inherit;
        transform: inherit;
    }

    .participate-team.opponent .match-info,
    .participate-team.opponent img {
        left: 0;
        right: 0;
    }

    .participate-team h3 {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: 0;
        margin-top: 5px;
    }

    .participate-team.opponent h3 {
        padding-left: 0;
        padding-right: 0;
    }

    .match-info {
        position: absolute;
        display: block;
        clip-path: inherit;
        left: 0;
        bottom: 0;
        right: auto;
        width: 100%;
    }

    .match-time {
        padding: 30px 0;
    }

    .participate-team.opponent .match-info {
        display: none;
    }
}

/* Loadin Button */
.loading-btn-wrap {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.loading-btn-wrap button {
    visibility: visible;
    height: auto;
    line-height: 1;
    padding: 15px 35px;
    position: relative;
    z-index: 1;
}

.loading-btn-wrap button span {
    background-color: var(--galactic-primary-color, "#9841ff");
}