.buy-ticket-btn {
    font-family: sans-serif;
    display: inline-block;
    padding: 0 16px;
    border: none;
    border-radius: 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    background-color: #3dcc85;
    line-height: 65px;
    font-size: 16px;
    width: 318px;
}

.buy-ticket-btn:hover {
    -webkit-box-shadow: 0 2px 10px 0 #3dcc85;
    box-shadow: 0 2px 10px 0 #3dcc85
}

.header-box .buy-ticket-btn {
    margin-top: 24px;
}

/* --- Event Price Block --- */
.event-price {
    padding: 40px 0;
}

.event-price__title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.event-price__list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 36px;
    padding: 0 24px;
}

.event-price__item {
    display: flex;
    flex-direction: column;
    flex: 1 1 260px;
    max-width: 340px;
    min-width: 240px;
    padding: 28px 24px;
    border-radius: 6px;
    box-sizing: border-box;
}

.event-price__element{
    background: #F5F3EA;
    display: flex;
    flex-direction: column;
}

.event-price__name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2b55db;
    margin-bottom: 16px;
}

.event-price__amount {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
}

.event-price__alt-amount {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #727272;
}

.event-price__availability {
    margin: 16px 0 0;
    font-size: 13px;
    color: #727272;
}

.event-price__sold-out {
    color: #dd2816;
    font-weight: 700;
}

.event-price__btn {
    margin-top: auto;
    padding-top: 24px;
}

.event-price__btn .buy-ticket-btn,
.event-price__btn .button {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: center;
    height: auto;
    line-height: 1.2;
    min-width: 0;
    box-sizing: border-box;
}

.event-price__item--disabled {
    opacity: 0.55;
}

@media screen and (max-width: 767px) {
    .buy-ticket-btn{
        width: 100%;
    }
    .event-price {
        padding: 10px 0;
    }

    .event-price__title {
        font-size: 20px;
        text-align: left;
        margin-bottom: 20px;
    }

    .event-price__list {
        flex-direction: column;
        padding: 0 10px;
        gap: 16px;
    }

    .event-price__item {
        max-width: 100%;
        min-width: 0;
        padding: 32px 16px 0;
    }

    .event-price__amount {
        font-size: 28px;
    }

    .event-price__btn {
        width: 100%;
    }
}