.ticketEventData {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.leftColumn {
    width: 48%;
    position: relative;
    float: left;
}

.rightColumn {
    width: 48%;
    float: left;
    position: relative;
}

.mainImageContainer {
    width: 100%;
}

.mainImage {
    width: 100%;
}

.ticketEventTitle {
    font-size: 32px;
    line-height: 40px;
}

.quantityContainer {
    position: relative;
    width: 100%;
    height: auto;
    display: table;
    margin-top: 0;
    margin-bottom: 10px;
}

.productInfoLabel {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 10px;
    float: left;
}

.selectContainer {
    position: relative;
    cursor: pointer;
    height: 50px;
    text-align: center;
    width: 50%;
    display: flex;
    flex-direction: row;
    max-width: 170px;
    margin-right: 4px;
    font-size: 20px;
    line-height: 24px;
    float: left;
    border: 1px solid;
}

.minusSign,
.plusSign {
    position: absolute;
    z-index: 1;
    width: 19%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0%;
}

.minusSign {
    left: 0;
}

.productQuantity {
    border: 0;
    position: relative;
    background-color: transparent;
    text-align: center;
    height: 100%;
    padding: 0;
    width: 100%;
}

.purchaseButton {
    position: relative;
    width: calc(100% - 8px - 52px);
    margin-top: 25px;
    float: left;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    cursor: pointer;
    margin-bottom: 25px;
    padding: 13px;
    background: black;
    color: white;
}

.noStock {
    cursor: not-allowed;
    pointer-events: none;
}

.productsContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

#closeCustomFieldPopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    cursor: pointer;
    color: black;
}

#customFieldsPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F9F9F9;
    border: 1px solid #BBBDC0;
    padding: 20px 2.5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 40vw;
    height: auto;
    max-height: 80vh;
    border-radius: 10px;
    overflow: auto;
}

#customFieldsContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 100%;
}

#buyButton {
    position: relative;
    margin: 15px auto;
    display: block;
    width: 100%;
    height: 50px;
    text-align: center;
    border: 1px solid var(--base);
    border-radius: 5px;
    background-color: var(--base);
    color: var(--white);
    line-height: 50px;
    font-weight: 600;
    font-size: 16px;
}

#customFieldsPopup h2 {
    margin-top: 0;
}

#customFieldsPopup .customfields {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.customfields h3 {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.customFieldInput {
    border: 0.5px solid #BBBDC0;
    border-radius: 5px;
    height: 40px;
    text-indent: 20px;
    font-size: 13px;
}

.customFieldInput::placeholder {
    color: #BBBDC0;
}

#customFieldPopupTitle {
    text-align: center;
    font-size: 32px;
    color: var(--second);
    padding: 20px;
    line-height: 40px;
}

#ticketDescription {
    padding: 10px;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
}
