/**
 * Volek Events - Event Card Styles
 */


/* =====================================================
   EVENT CARD
===================================================== */

.volek-event-card {
    position: relative;
}


/* =====================================================
   EVENT DATE BADGE
   Top left
===================================================== */

.volek-event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 7;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 8px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.volek-event-date-day {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;

    color: #111111;
}

.volek-event-date-month {
    margin-top: 3px;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.6px;
    text-transform: uppercase;

    color: #4b5563;
}


/* =====================================================
   DYNAMIC STATUS BADGE
   NEW / DAYS LEFT / TOMORROW / TODAY
===================================================== */

.volek-event-status {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 7;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;
    padding: 0 13px;

    border-radius: 999px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.45px;

    text-transform: uppercase;
    white-space: nowrap;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
}

.volek-event-status[hidden] {
    display: none !important;
}


/* NEW */

.volek-event-status.is-new {
    background: #4FC3F7;
}


/* Normal countdown */

.volek-event-status.is-countdown {
    background: rgba(35, 35, 35, 0.88);
}


/* 1-3 days / TOMORROW */

.volek-event-status.is-urgent {
    background: #f59e0b;
}


/* TODAY */

.volek-event-status.is-today {
    background: #e53935;
}


/* =====================================================
   COUNTRY FLAG
   Bottom right
===================================================== */

.volek-country-flag {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 6;

    font-size: 26px;
    line-height: 1;

    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}

.volek-country-flag[hidden] {
    display: none !important;
}


/* =====================================================
   MANUAL BANNER OVERLAY
===================================================== */

.volek-banner-overlay {
    z-index: 5;
}


/* =====================================================
   BUY TICKET
   Original Volek color
===================================================== */

.btnm {
    background: #4FC3F7 !important;
    color: #ffffff !important;
    height: 50px;
}

.btnm:hover {
    background: #29B6F6 !important;
}


/* =====================================================
   POSTPONED
===================================================== */

.volek-postponed-badge {
    background-color: #ffcc00;
    color: red;
    font-weight: 700;
}


/* =====================================================
   VENUE
===================================================== */

.volek-event-venue {
    text-align: center;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 480px) {

    /* Date */

    .volek-event-date-badge {
        top: 10px;
        left: 10px;

        width: 48px;
        height: 48px;

        border-radius: 7px;
    }

    .volek-event-date-day {
        font-size: 20px;
    }

    .volek-event-date-month {
        margin-top: 2px;

        font-size: 9px;
        letter-spacing: 0.5px;
    }


    /* Status */

    .volek-event-status {
        top: 9px;
        right: 9px;

        min-height: 28px;
        padding: 0 11px;

        font-size: 10px;
    }


    /* Country flag */

    .volek-country-flag {
        right: 9px;
        bottom: 9px;

        font-size: 24px;
    }
}

/* rubrikerna på första sidan */
/* =====================================================
   EVENT SECTION TITLES
===================================================== */

.volek-section-title {
    position: relative;

    margin: 28px 0 22px !important;
    padding-bottom: 10px;

    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;

    color: #333333;
}

.volek-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    background: #4FC3F7;
    border-radius: 3px;
}


/* Mobile */

@media (max-width: 480px) {

    .volek-section-title {
        margin: 18px 0 16px !important;
        padding-bottom: 8px;

        font-size: 19px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
    }

    .volek-section-title::after {
        width: 32px;
        height: 3px;
    }
}