:root {
    --vivid-tangelo: #f06c28;
    --linen: #fdf0e9;
    --prussian-blue: #0f3c59;
    --cultured: #f8f8f8;
    --Venetian-Red: #f35809;
    --white: #ffffff;
    --light-sliver: #d9d9d9;
    --platinum: #e8e8e8;
    --black-coral: #556169;
    --bdazzled-blue: #286090;
    --steel-blue: #337ab7;
    --orange: #f35809;
    --wageningen-green: #33a337;
    --persimmon: #f35809;
    --cyan-cornflower-blue: #2A89C6;
}

.event-header {
    margin-top: 10px;
    width: 75%;
}

.event-header__date {
    margin: 0 5px;
    font-size: 16px;
}


.event-header__right {
    padding: 0;
}

.event-header__right__title {
    margin: 0 5px;
    font-weight: 700;
    font-size: 30px;
    color: var(--prussian-blue);
}

.event-header__right__btn {
    margin-top: 6px;
}

.event-header__right__btn__item {
    margin: 0 0px 0 6px;
    padding: 5px 8px 5px 0px;
    /*border-radius: 5px;*/
    /*cursor: pointer;*/
    /* background-color: var(--cultured);*/
}

    .event-header__right__btn__item .fa, .event-header__right__btn__item .fa-light {
        margin-right: 6px;
    }

.event-header__right__btn__item--mobile {
    display: none;
}
/*Cart view*/
.event-cart {
    position: relative;
    max-width: 380px;
    min-height: 330px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 10px 5px var(--platinum);
}

    .event-cart.visualization {
        position: relative;
        max-width: 380px;
        height: 275px;
        min-height: 0;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 5px 10px 5px var(--platinum);
    }

.visual-event-cart.visualization {
    position: relative;
    max-width: 475px;
    height: 275px;
    min-height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 10px 5px var(--platinum);
}

@media (max-width:768px) {
    .event-cart.visualization {
        max-width: 100%;
    }

    .visual-event-cart.visualization {
        max-width: 100%;
    }
}

.event-cart__header {
    width: 100%;
    padding: 5px 10px;
    margin: 0;
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(42, 137, 198, 1);
    color: var(--white);
}

.event-cart__header__title a, .event-cart__header__title a:hover {
    color: #fff;
}

.event-cart__header__title__headline {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
}

    .event-cart__header__title__headline.visualization {
        font-style: normal;
        font-weight: 700;
        font-size: 13px;
        line-height: 15px;
        color: #fff;
    }

.event-cart__header__title__location {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
}

    .event-cart__header__title__location.visualization {
        font-weight: 400;
        font-size: 10px;
        color: #fff;
    }

.event-cart__header__icon {
    color: var(--white);
    cursor: pointer;
}

.event-cart__header__icon__heart {
    color: var(--Venetian-Red);
    font-size: 20px;
}

    .event-cart__header__icon__heart.visualization {
        font-size: 17px;
    }

    .event-cart__header__icon__heart:hover {
        color: var(--Venetian-Red);
    }

.event-cart__header__icon__heart--white {
    color: var(--white);
}

.event-cart__body {
    width: 100%;
    top: 0;
}

.event-cart__body__image__img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

    .event-cart__body__image__img.visualization {
        height: 150px;
        width: 100%;
        object-fit: cover;
    }

.event-cart__body__content {
    padding: 0 10px;
    border-bottom: 1px dashed var(--light-sliver);
    min-height: 70px;
    cursor: pointer;
}

    .event-cart__body__content.visualization {
        padding: 0 10px;
        border-bottom: 1px dashed var(--light-sliver);
        min-height: 55px;
    }

.event-cart__body__content__provider-name {
    margin-top: 10px;
    line-height: 16px;
    font-weight: bold;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: var(--prussian-blue);
}

    .event-cart__body__content__provider-name.visualization {
        margin-top: 10px;
        line-height: 12px;
        font-weight: bold;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: var(--prussian-blue);
    }

.event-cart__body__content__description {
    margin: 5px 0;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: var(--black-coral);
}

    .event-cart__body__content__description.visualization {
        margin: 5px 0;
        font-weight: 300;
        font-size: 10px;
        line-height: 11px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: var(--black-coral);
    }

.description-shorten-width {
    width: 86%;
}

.event-cart__body__content__thumbs-up {
    position: absolute;
    bottom: 66px;
    right: 10px;
}

.event-cart__footer {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .event-cart__footer.visualization {
        height: 55px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.event-cart__footer__raffle {
    margin: 5px 0 0 10px;
}

.event-cart__footer__npo-cost {
    margin: 5px 0 0 0;
    line-height: 20px;
}

.event-cart__footer__raffle__label {
    font-size: 10px;
    color: var(--black-coral);
}

.event-cart__footer__npo-cost__label {
    font-size: 12px;
    color: black;
    font-weight: normal;
}

.event-cart__footer__npo-cost__price, .event-cart__footer__raffle__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--bdazzled-blue);
}

.event-cart__footer__npo-cost__price {
    color: black;
    font-size: 13px;
}

.event-cart__footer__btn.raffle-visualization {
    font-size: 12px;
    text-wrap: nowrap;
}

.event-cart__footer__auction {
    margin: 5px 0 0 10px;
}

    .event-cart__footer__auction.visualization {
        margin: 0 0 0 10px;
        line-height: 20px;
    }

.event-cart__footer__auction__start-bidding {
    font-size: 12px;
}

    .event-cart__footer__auction__start-bidding.visualization {
        font-size: 10px;
    }

.event-cart__footer__npo__cost-bidding.visualization {
    font-size: 10px;
}

.event-cart__footer__auction__winning-bid {
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
}

    .event-cart__footer__auction__winning-bid.visualization {
        font-weight: 700;
        font-size: 10px;
        line-height: 10px;
    }

.big_pct {
    font-size: 1.3em;
}

.big-npo-cost {
    font-size: 18.2px;
    font-weight: 700;
    color: black;
}

.event-cart__footer__ticket {
    height: 0;
    width: 0;
    margin-right: 10px;
    border-radius: 5px;
    border-right: 40px solid var(--orange);
    border-top: 35px solid var(--orange);
    z-index: 2;
    color: var(--white);
}

.event-cart__footer__ticket__icon {
    transform: translate3d(10px, -27px, 10px);
}

.event-cart__footer__check {
    height: 0;
    width: 0;
    margin-right: 10px;
    border-radius: 5px;
    border-right: 40px solid rgba(51, 163, 55, 0.1);
    border-top: 35px solid rgba(51, 163, 55, 0.1);
    z-index: 2;
    color: var(--white);
}

    .event-cart__footer__check.visualization {
        height: 0;
        width: 0;
        margin-right: 10px;
        border-radius: 5px;
        border-right: 40px solid rgba(51, 163, 55, 0.1);
        border-top: 35px solid rgba(51, 163, 55, 0.1);
        z-index: 2;
        color: var(--white);
        font-size: 12px;
    }

.event-cart__footer__check__icon {
    transform: translate3d(10px, -27px, 10px);
    color: var(--wageningen-green);
}

    .event-cart__footer__check__icon.visualization {
        transform: translate3d(13px, -26px, 10px);
        color: var(--wageningen-green);
    }

.event-cart__footer__convert {
    margin-right: 5px;
    font-size: 12px;
}

.event-cart__footer__btn {
    width: 35px;
    height: 30px;
    margin-right: 10px;
    text-transform: uppercase;
    color: var(--white);
    padding: 6px;
    background: var(--steel-blue);
    border-radius: 5px;
    text-decoration: none;
}

    .event-cart__footer__btn.visualization {
        width: 35px;
        height: 30px;
        margin-right: 10px;
        text-transform: uppercase;
        color: var(--white);
        padding: 6px;
        background: var(--steel-blue);
        border-radius: 5px;
        text-decoration: none;
        font-size: 12px;
    }

.event-cart__footer__btn-disabled {
    width: 35px;
    height: 30px;
    margin-right: 10px;
    text-transform: uppercase;
    color: var(--white);
    padding: 6px;
    background: var(--light-sliver);
    border-radius: 5px;
    text-decoration: none;
}

    .event-cart__footer__btn-disabled.visualization {
        font-size: 12px;
    }

.event-cart__footer__btn-disabled {
    cursor: not-allowed !important;
    pointer-events: auto !important;
}

    .event-cart__footer__btn-disabled:hover {
        background: var(--light-sliver);
        color: var(--white);
        text-decoration: none;
    }

.event-cart__footer__btn:hover {
    background: var(--bdazzled-blue);
    color: var(--white);
    text-decoration: none;
}

.event-cart__footer__btn-raffle {
    background: var(--vivid-tangelo);
    color: var(--white);
    text-decoration: none;
}

    .event-cart__footer__btn-raffle:hover {
        background: var(--persimmon);
    }

.ui-dialog .ui-dialog-buttonset .modal__btn.modal__btn__right {
    margin: 0;
}

.event-sort {
    margin: 35px 0 20px 0;
    border-bottom: 1px solid var(--cyan-cornflower-blue);
}

.event-sort__content {
    padding: 0 0 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .event-sort__content.visualization {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.p-10px {
    padding: 10px;
}

.event-sort__content__group-btn {
    width: 420px;
    height: 45px;
    border-radius: 5px 5px 0 0;
    display: flex;
    overflow: hidden;
}

.event-sort__content__group-btn__btn {
    width: 50%;
    border: none;
    color: var(--black-coral);
    background-color: var(--platinum);
    font-weight: bolder;
}

    .event-sort__content__group-btn__btn:hover {
        background: var(--steel-blue);
        color: var(--white);
    }

.event-sort__content__group-btn__btn-active {
    background: var(--cyan-cornflower-blue);
    color: var(--white);
}

    .event-sort__content__group-btn__btn-active:hover {
        background: var(--steel-blue);
    }

.event-sort__form {
    display: flex;
    align-items: center;
    position: relative
}

.event-sort__form__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #949494;
}

.event-sort__form__form-group {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #949494;
}

.event-sort__form__form-group__control {
    height: 30px;
    border: none;
    cursor: pointer;
    outline: none;
}

.event-sort__form__form-group__control__item {
    height: 30px;
}

.center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-sort__btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    min-width: 215px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: left;
    background: none;
    color: var(--black-coral);
    outline: none;
    border: none;
}

.event-sort__list {
    position: absolute;
    top: 30px;
    left: 50px;
    padding: 5px 10px;
    min-width: 215px;
    z-index: 1000;
    color: var(--black-coral);
    background-color: var(--white);
    list-style: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

    .event-sort__list.visualization {
        left: 0;
        max-width: 280px;
    }

.event-sort__list__items {
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

.event-sort__list__items--active {
    color: var(--cyan-cornflower-blue);
    font-weight: bold;
}


.event-sort__list__items:hover {
    background: rgba(42, 137, 198, 0.05);
}

.page.container.min-height-calc {
    max-width: 80%;
    width: 80%;
}


@media screen and (max-width: 768px) {
    .event-header {
        width: 100%;
    }

    .event-header__right__btn {
        margin-top: 10px;
    }

    .event-header__right__btn__item--web {
        display: none;
    }

    .event-header__right__btn__item--mobile {
        display: inline-block;
    }

    .event-sort__content__group-btn {
        display: none;
    }

    .event-sort {
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .event-header {
        width: 100%;
    }

    .event-header__left__date {
        padding: 10px 10px;
    }

    .event-header__right__title {
        font-size: 25px;
    }

    .event-header__right__btn {
        margin-top: 20px;
    }

    .event-sort {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .visual-event-cart.visualization {
        max-width: 100%;
    }
}
