
#shows {
    padding: 30px 15px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#showsTxt {
    max-width: 920px;
    text-align: center;
    margin: 15px auto 30px;
    font-size: 18px;
    line-height: 1.4;
}


.showsFilter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

#showsBody {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.showsBodyItem {
    display: grid;
    grid-template-columns: 277px 1fr;
    gap: 15px;
    width: 100%;
    font-size: 12px;
    line-height: 17px;
}

.showsBodyItemImg {

}

.showsBodyItemInfo {
    display: flex;
    flex-direction: column;
    font-weight: 400;
}

.showsBodyItemInfoTitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.showsBodyItemInfoLocation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: var(--red);
    margin-top: 2px;
}

.showsBodyItemInfoLocation:hover {
    text-decoration: underline;
    width: fit-content;
}

.showsBodyItemInfoLocationIcon {
    height: 16px;
    width: auto;
}

.showsBodyItemInfoDesc {
    margin-top: 8px;
    white-space: pre-wrap;
}

.showsBodyItemInfoControls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.showsBodyItemInfoControlsRead {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    gap: 2px;
    color: var(--red);
}

.showsBodyItemInfoControlsRead:hover {
    text-decoration: underline;
}

.showsBodyItemInfoControlsReadIcon {
    height: 18px;
    width: auto;
}

.showsBodyItemInfoOrder {
    font-size: 12px;
    font-weight: 300;
}

.showsBodyItemInfoOrderTitle {
    text-transform: uppercase;
    font-weight: 300;
}

.showsBodyItemInfoOrderTickets {
    display: flex;
    flex-direction: row;
    margin-bottom: 16px;
    align-items: center;
    margin-top: 8px;
}

.showsBodyItemInfoOrderTicketsLabel {
    display: flex;
}

.showsBodyItemInfoOrderTicketsLabelInput {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.showsBodyItemInfoOrderTicketsLabelBody {
    padding: 4px 15px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(211, 211, 211);
    font-size: 12px;
    background-color: rgb(225, 225, 225);
    cursor: pointer;
    transition: .3s ease;
}


.showsBodyItemInfoOrderTickets .showsBodyItemInfoOrderTicketsLabel:first-child .showsBodyItemInfoOrderTicketsLabelBody {
    border-radius: 3px 0 0 3px;
}

.showsBodyItemInfoOrderTickets .showsBodyItemInfoOrderTicketsLabel:last-child .showsBodyItemInfoOrderTicketsLabelBody {
    border-radius: 0 3px 3px 0;
}

.showsBodyItemInfoOrderTicketsLabelBody:hover {
    cursor: pointer;
}

.showsBodyItemInfoOrderTicketsLabelInput + .showsBodyItemInfoOrderTicketsLabelBody {
    transition: .5s ease;
}

.showsBodyItemInfoOrderTicketsLabelInput:checked + .showsBodyItemInfoOrderTicketsLabelBody {
    background-color: white;
    border: 1px solid var(--red);
}

.showsBodyItemInfoOrderShowtimes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.showsBodyItemInfoOrderShowtimesLabel {
    display: flex;
}

.showsBodyItemInfoOrderShowtimesLabelInput {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.showsBodyItemInfoOrderShowtimesLabelBody {
    font-size: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: .3s ease;
}

.showsBodyItemInfoOrderShowtimesLabelBodyCircle {
    width: 16px;
    height: 16px;
    border: 1px solid var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.showsBodyItemInfoOrderShowtimesLabelBody:hover {
    cursor: pointer;
}

.showsBodyItemInfoOrderShowtimesLabelInput + .showsBodyItemInfoOrderShowtimesLabelBody .showsBodyItemInfoOrderShowtimesLabelBodyCircleInner {
    height: 10px;
    width: 10px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: .3s ease;
}

.showsBodyItemInfoOrderShowtimesLabelInput:checked + .showsBodyItemInfoOrderShowtimesLabelBody .showsBodyItemInfoOrderShowtimesLabelBodyCircleInner {
    transform: translate(-50%, -50%) scale(1);
}

.showsBodyItemInfoOrderLink {
    margin-top: 16px;
    border: 1px solid var(--red);
    border-radius: 3px;
    font-weight: 400;
    padding: 5px 15px;
    background-color: transparent;
    transition: .3s ease;
    width: fit-content;
    display: block;
}

.showsBodyItemInfoOrderLink:hover {
    background-color: var(--red);
    color: white;
}

@media (max-width: 1000px) {
    .showsBodyItem {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .showsBodyItemInfo {
        padding: 4px 15px 15px;
    }

    .showsBodyItemInfoOrder {
        padding: 0 15px;
    }
}