/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 05:22:12 */
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY
========================= */
/* 
body {
    font-family: "Outfit", sans-serif;
    background: #ffffff;
    color: #071329;
}
 */

/* =========================
   MAIN CONTAINER
========================= */

.event-page {
    width: 100%;
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 15px;
	font-family: "Plus Jakarta Sans", Sans-serif;
}


/* =========================
   GRID
========================= */

.event-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 314px;
    gap: 50px;
    align-items: start;
}


/* =========================
   LEFT CONTENT
========================= */

.event-img{
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}


.event-single-title{
    font-size: 22px;
    font-weight: 800;
    color: #20376B;
    margin: 20px 0;
}

.event-single-content p {
    font-size: 16px;
    font-weight: 400;
    color: #616977;
}

.event-single-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #20376B !important;
    margin-top: 25px;
    margin-bottom: 15px;
}


/* =========================
   SIDEBAR
========================= */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 31px;
}


/* =========================
   SIDEBAR CARD
========================= */

.sidebar-card {
    background: #4890426e;
    border-radius: 16px;
    padding: 26px 31px;
}

.card-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: #071329;
    margin-bottom: 11px;
}

.purple-line {
    width: 40px;
    height: 5px;
    background: #513cff;
    border-radius: 5px;
    margin-bottom: 10px;
}


/* =========================
   INFORMATION
========================= */

.info-row {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #cad6d8;
    font-size: 16px;
    color: #142039;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   Event List
========================= */
.event-name {
    font-size: 16px;
    font-weight: 500;
    color: #20376B;
    padding: 14px 0;
    border-bottom: 1px solid #cad6d8;
}
.event-name:hover {
	color: #217C3E;
}
.event-name:last-child {
    border-bottom: none;
}

/* SELECT */

.pass-select {
    width: 100%;
    height: 30px;
    padding: 0 12px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background: #ffffff;
    color: #142039;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    margin-bottom: 17px;
}

/* =========================
   PRICE AREA
========================= */

.price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.price {
    display: block;

    font-size: 18px;
    line-height: 1;

    font-weight: 800;

    color: #071329;

    margin-bottom: 3px;
}

.unlimited {
    font-size: 12px;
    color: #071329;
}


/* =========================
   QUANTITY
========================= */

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 25px;
    height: 25px;

    border: none;
    border-radius: 3px;

    background: #e6e8e8;

    color: #444;

    font-size: 20px;
    line-height: 20px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-number {
    min-width: 12px;

    text-align: center;

    font-size: 14px;
    color: #142039;
}


/* =========================
   SUMMARY
========================= */

.summary {
    margin-top: 8px;
}

.summary p {
    font-size: 12px;
    color: #142039;
    margin-bottom: 13px;
}

.summary strong {
    font-weight: 700;
}


/* =========================
   PURCHASE BUTTON
========================= */

.purchase-btn {
    width: 100%;
    height: 44px;

    border: none;
    border-radius: 5px;

    background: #f13db0;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    margin-top: 9px;

    box-shadow: 0 5px 12px rgba(241, 61, 176, 0.18);

    transition: all 0.2s ease;
}

.purchase-btn:hover {
    background: #df2da0;
    transform: translateY(-1px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .event-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .event-page {
        margin: 15px auto;
        padding: 0 15px;
    }

    .event-grid {
        display: block;
    }

    .event-title {
        font-size: 23px;
        margin-top: 16px;
    }

    .event-content p {
        font-size: 13px;
    }

    .sidebar {
        display: flex;
        margin-top: 30px;
    }

    .sidebar-card {
        padding: 23px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .event-title {
        font-size: 21px;
    }

    .event-content p {
        font-size: 13px;
    }

    .sidebar-card {
        padding: 20px;
    }

}