.tickets-wrapper {
    display: flex;
    gap: 20px;
}
.ticket-item {
    position: relative;
    max-width: 574px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 100%;
}
.ticket-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ticket-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.ticket-decor {
    position: absolute;
    height: 100%;
    z-index: 3;
    top: 0;
}
.ticket-decor::before {
    content: '';
    position: absolute;
    top: -12px;
    width: 24px;
    height: 24px;
    background-color: #F3F3F3;
    border-radius: 50%;
    overflow: hidden;
}
.ticket-decor::after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 24px;
    height: 24px;
    background-color: #F3F3F3;
    border-radius: 50%;
    overflow: hidden;
}
.ticket-decor-left {
    left: -12px;
}
.ticket-decor-right {
    right: 12px;
}
.ticket-item__left {
    position: relative;
    padding: 30px 30px 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ticket-item__right {
    position: relative;
    padding: 30px 30px 30px 40px;
    display: flex;
    flex-direction: column;
    min-width: 224px;
}

.ticket-title {
    font-family: 'Anonymous Pro Ukr';
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    color: #1F2D42;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: uppercase;
    max-width: 255px;
}
.ticket-description {
    font-family: 'Gilroy';
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: #1F2D42;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: none;
}
.ticket-expiry {
    font-family: 'Gilroy';
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #607E99;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: none;
    margin-top: auto;
}
.ticket-item-ico {
    text-align: center;
    margin-bottom: 10px;
}
.ticket-price-nom {
    font-family: 'Anonymous Pro Ukr';
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #1F2D42;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: none;
    text-align: center;
}
.ticket-price {
    font-family: 'Anonymous Pro Ukr';
    font-size: 38px;
    line-height: 38px;
    font-weight: 400;
    color: #607E99;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: none;
    text-align: center;
}
.ticket-logo {
    text-align: center;
    margin-top: auto;
    height: 24px;
}

.ticket-item__right-decor {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-left: 2px dashed #f3f3f3;
}
.ticket-item__right-decor::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -13px;
    width: 24px;
    height: 24px;
    background: #f3f3f3;
    border-radius: 12px;
    overflow: hidden;
}
.ticket-item__right-decor::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -13px;
    width: 24px;
    height: 24px;
    background: #f3f3f3;
    border-radius: 12px;
    overflow: hidden;
}

.ticket-button {
    padding: 15px 45px;
    border: 1px solid #607E99;
    width: fit-content;
    border-radius: 60px;
    margin: auto;
    display: flex;
    gap: 20px;
}
.ticket-button:hover {
    background-color: #607E99;
}
.ticket-button:focus {
    background-color: #607E99;
}
.ticket-button:focus .ticket-button__text {
    color: white;
}
.ticket-button:focus .ticket-button__ico svg {
    stroke: white;
}
.ticket-button__text {
    font-family: 'Anonymous Pro Ukr';
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #607E99;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: uppercase;
}
.ticket-button:hover .ticket-button__text {
    color: white;
}
.ticket-button__ico svg {
    stroke: #607E99;
}
.ticket-button:hover .ticket-button__ico svg {
    stroke: white;
}

.no-wrap {
    white-space: nowrap;
}

/*  */
.contact_us_btn svg {
    width: 100% !important;
}

@media (max-width: 1280px) {
    .tickets-wrapper {
        gap: 20px;
        padding: 0 20px;
        /* flex-direction: column; */
    }
}
@media (max-width: 1240px) {
    .ticket-item__right {
        min-width: 190px;
    }
}
@media (max-width: 1100px) {
    .tickets-wrapper {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }
}
@media (max-width: 570px) {
    .ticket-item__left {
        padding: 16px 16px 24px 24px;
    }
    .ticket-item__right {
        padding: 16px 10px 24px 10px;
        min-width: 122px;
    }
    .ticket-title {
        font-size: 24px;
        line-height: 26px;
    }
    .ticket-description {
        font-size: 13px;
        line-height: 16px;
    }
    .ticket-price-nom {
        font-size: 16px;
        line-height: 20px;
    }
    .ticket-price {
        font-size: 36px;
        line-height: 40px;
    }
    .ticket-logo {
        width: 74px;
        margin: auto auto 0 auto;
    }
    .ticket-logo svg {
        width: 100%;
    }
    .ticket-item-wrapper {
        gap: 25px;
    }
}
