.single-event {
    border:1px solid #EBEBEB;
    width:1366px;
    max-width:95%;
    box-sizing:border-box;
    padding:25px;
    display:flex;
    position:relative;
    margin:0 auto 33px auto;
}
.event-img {
    margin-right:64px;
}
.single-event-fighter {
    max-height:243px;
}
.single-event-inner {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
}
.single-event-inner-3 {
    display:flex;
    gap:18px;
    align-items: center;
    justify-content: center;
}
.single-event-inner-3 div:first-child {
    text-align:right;
}
.single-event-inner-3 .name {
    display:block;
    font-weight:bold;
    font-size:20px;
    line-height:100%;
}
.single-event-inner-3 .surname {
    display:block;
    font-weight:bold;
    font-size:42px;
    line-height:100%;
    padding-top:8px;
}
.single-event-inner-2 {
    margin:0 60px;
}
.single-event-inner-2 .venue {
    font-size:14px;
    color:#585B63;
    padding-bottom:8px;
    border-bottom:1px solid #EBEBEB;
    text-align: center;
    width:100%;
    max-width:310px;
    margin:25px auto 0 auto;
}
.single-event-datetime {
    display:flex;
    margin-top:22px;
    margin-bottom:45px;
    gap:12px;
    justify-content: center;
    align-items: center;
}
.single-event-datetime span {
    color: black;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    gap: 5px;
}
.single-event-datetime span img {
    width:16px;
}
.single-event-datetime .seperator {
    width:1px;
    content:"";
    height:11px;
    background-color:#EBEBEB;
    margin-right:14px;
}
.single-event-buttons {
    display:flex;
    justify-content: center;
    gap:14px;
}
.single-event-buttons > a {
    text-decoration: none;
    text-align: center;
}
.single-event-navigation {
    display:flex;
    position:absolute;
    top:10px;
    right:10px;
    gap:4px;
}
.single-event-navigation button {
    background-color:#EBEBEB;
    display:flex;
    justify-content:center;
    align-items:center;
    width:30px;
    height:30px;
    transition:0.3s all;
    outline:none;
    border:0;
    cursor:pointer;
    user-select: none;
}
.single-event-navigation button:hover {
    background-color:var(--utma-primary-color);
}
.more-events {
    margin:55px auto 0 auto;
}
.event-small-fighter-img {
    display:none;
}
.event-img {
    max-width:200px;
}
@media only screen and (max-width: 1450px) {
    .event-img {
        margin-right: 10px;
    }
    .single-event-inner-2 {
        margin:0 40px;
    }
}
@media only screen and (max-width: 1400px) {
    .single-event-inner-2 {
        margin:0 20px;
    }
}

@media only screen and (max-width: 1280px) {
    .single-event {
        flex-direction: column;
        gap:15px;
    }
    .event-img {
        max-width: 200px;
        margin: auto;
    }
}
@media only screen and (max-width: 1080px) {
    .single-event-inner-2 {
        margin: 0 15px;
    }
}
@media only screen and (max-width: 1025px) {
    .single-event-fighter {
        display:none;
    }
    .event-small-fighter-img {
        display:inline;
        width:100px;
        height:100px;
    }
    .single-event-inner {
        justify-content: center;
    }
}
@media only screen and (max-width: 700px) {
    .single-event {
        flex-direction: column;
        gap:30px;
        padding: 50px 10px 10px 10px;
    }
    .single-event-buttons {
        flex-direction:column;
    }
    .single-event-inner-3 {
        flex-direction: column;
    }
    .single-event-inner-3 div:first-child, .single-event-inner-3 div {
        text-align: center;
    }
}