/*
 * Forecast and Exchange Ticker
 * Očišćena i objedinjena verzija stilova.
 * Bebas Neue font se učitava kroz index.php plugina.
 */

/* =========================================================
   ZAJEDNIČKI OKVIR TIKERA
   ========================================================= */

#exchange-rate-ticker,
#weather-info {
    background-color: transparent;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

#exchange-rate-ticker:active,
#weather-info:active {
    cursor: grabbing;
}


/* Bez tačke posle prvog elementa – naslova */
#exchange-rate-ticker .ticker-content > .ticker-item:first-child::after {
    content: none !important;
    display: none !important;
}

#exchange-rate-ticker .ticker-content > .ticker-item:first-child {
    padding-right: 0;
    margin-right: 20px;
}

/* Sve ostale valute */
#exchange-rate-ticker .ticker-content > .ticker-item:not(:first-child) {
    color: rgba(0, 0, 0, 0.8) !important;
}


/* Weather ticker ostaje ograničen na širinu sadržaja sajta. */
#weather-info {
    max-width: 1400px;
    margin: 0 auto;
}

/* Sadržaj koji JavaScript pomera ulevo. */
#exchange-rate-ticker .ticker-content,
#weather-info .ticker-content {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 0;
    line-height: 1;
    will-change: left;
}

/* =========================================================
   STAVKE TIKERA
   ========================================================= */

#exchange-rate-ticker .ticker-item,
#weather-info .ticker-item {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1;

    display: inline-flex;
    align-items: center;
    position: relative;
    vertical-align: middle;

    margin-right: 20px;
    padding-right: 20px;
}

/* Plava tačka između svih stavki. */
#exchange-rate-ticker .ticker-item:not(:last-child)::after,
#weather-info .ticker-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 5px;
    height: 5px;
    margin: 0;

    background-color: #2B3491;
    border-radius: 50%;
    display: block;
}

/* Bez separatora posle poslednje stavke. */
#exchange-rate-ticker .ticker-item:last-child::after,
#weather-info .ticker-item:last-child::after {
    content: none;
    display: none;
}

/* =========================================================
   EXCHANGE TICKER
   ========================================================= */

#exchange-rate-ticker .country,
#exchange-rate-ticker .currency {
    display: inline-block;
}

#exchange-rate-ticker .currency {
    padding: 0 0 2px 5px;
}

/* =========================================================
   WEATHER TICKER
   ========================================================= */

#weather-info .city,
#weather-info .temperature {
    display: inline-block;
}

#weather-info .temperature {
    padding: 0 0 2px 5px;
}

#weather-info img.weather-icon,
.tagdiv-type #weather-info img.weather-icon {
    width: 26px;
    height: 26px;
    max-width: 26px;
    object-fit: contain;
    flex: 0 0 26px;
    vertical-align: middle;
    margin: 0 0 0 10px !important;
}

/* =========================================================
   MOBILNI PRIKAZ
   Menjaj vrednosti samo u ovom bloku kada želiš poseban
   izgled na telefonu.
   ========================================================= */

@media screen and (max-width: 767px) {
    #exchange-rate-ticker,
    #weather-info {
        height: 50px;
        padding: 10px 0;
    }

    #exchange-rate-ticker .ticker-item,
    #weather-info .ticker-item {
        font-family: 'Bebas Neue', sans-serif !important;
        font-size: 20px !important;
        font-weight: 400 !important;
        margin-right: 20px;
        padding-right: 20px;
    }

    #exchange-rate-ticker .ticker-item:not(:last-child)::after,
    #weather-info .ticker-item:not(:last-child)::after {
        top: 50%;
        width: 5px;
        height: 5px;
    }
}