*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: #1F2B3D;
}

img {
    max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-weight: 900;
}

.bg-yellow {
    background-color: #F8C435;
}

.bg-red {
    background-color: #E93635;
}

.bg-pink {
    background-color: #F47A8F;
}

.bg-darksgrey {
    background-color: #2B517E;
}

.bg-black {
    background-color: #333333;
}

.bg-orange {
    background-color: #ed802e;
}

.bg-skyblue {
    background-color: #00A3C7;
}

.bg-violet {
    background-color: #A977EC;
}

.bg-purple {
    background-color: #a976ec;
}

.bg-green {
    background-color: #8BD565;
}

.bg-dark-blue {
    background-color: #2c517e;
}

.seating-arrange__wrap {
    overflow: hidden;
    position: relative;
    min-width: 540px;
    height: 350px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
}

.seating-arrange {
    width: 600px;
    margin: 0 auto;
    display: flex;
    padding: 30px 30px 0;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 0;
}

.stage-main {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    background-color: #000;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-main h3 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.seating-col {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 92px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
}

.seating-col input {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 0;
}

.seating-col input:checked+span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(63, 236, 9, 0.7);
}

.stage-company-info {
    text-align: center;
    display: flex;
    width: 100%;
    padding-top: 25px;
    border-top: 2px solid #000;
    flex-direction: column;
    gap: 12px;
}

.stage-company-info p {
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
}

.stage-company-info img {
    max-width: 200px;
}

.secodary-stage-view .seating-col h5 {
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    position: relative;
}

.seat-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%, 0);
    gap: 6%;
}

.seat-info h3 {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.seat-info h4 {
    padding: 0 8px;
    height: 20px;
    background: #fff;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seating-row-one {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(25% - 5px);
}

.seating-col--vip {
    height: 62px;
    padding-top: 25px;
    padding-bottom: 0;
}

.seating-col--vip .seat-info {
    bottom: unset;
    gap: 6%;
    top: 8px;
}

.seating-col--vip .seat-info h4 {
    height: 18px;
    font-size: 11px;
}

.side-numbering {
    position: absolute;
    top: 0;
}

.left-side-numbering {
    left: 0;
}

.right-side-numbering {
    right: 0;
}

.side-numbering ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6px 0 0;
    gap: 5px;
}

.side-numbering ul li {
    font-size: 10px;
    width: 12px;
    height: 12px;
    border: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-numbering ul li:nth-child(5) {
    margin-bottom: 17px;
}

@media(min-width:767px) {
    .stage-company-info {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 25px 5% 0;
    }
}

@media(min-width: 1200px) {
    .stage-company-info {
        display: flex;
        align-items: center;
        text-align: left;
        justify-content: space-between;
    }
}





@media(max-width:767px) {
    .secodary-stage-view .seating-col h5 {
        font-size: 13px;
        line-height: 14px;
    }

    .seating-arrange {
        width: 100%;
        padding: 0;
        height: 280px;
    }

    .seating-arrange__wrap {
        transform: scale(0.6);
    }

}