/*==========================================================
    EDITORIAL TICKER
    LA TOXICA RADIO
==========================================================*/


/*==========================================================
    CONTENEDOR PRINCIPAL
==========================================================*/

.editorial-ticker {

    width: 100%;
    height: 36px;

    margin: 0;
    padding: 0;

    background: #FFFFFF;

    overflow: hidden;

    box-sizing: border-box;

}


/*==========================================================
    TRACK
==========================================================*/

.editorial-ticker-track {

    width: 100%;
    height: 36px;

    display: flex;

    flex-direction: row;

    align-items: center;

    position: relative;

    overflow: hidden;

    box-sizing: border-box;

    padding: 0 6px;

}


/*==========================================================
    FECHA
==========================================================*/

.editorial-ticker-date {

    flex: 0 0 62px;

    width: 62px;
    min-width: 62px;
    max-width: 62px;

    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    color: #081526;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    overflow: hidden;

    box-sizing: border-box;

}


/*==========================================================
    SEPARADOR
==========================================================*/

.editorial-ticker-separator {

    flex: 0 0 8px;

    width: 8px;
    min-width: 8px;
    max-width: 8px;

    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    color: #081526;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 900;

    line-height: 1;

    box-sizing: border-box;

}


/*==========================================================
    MINIATURA
==========================================================*/

.editorial-ticker-image {

    flex: 0 0 24px;

    width: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;

    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;

    display: block;

    margin: 0 5px 0 0;
    padding: 0;

    object-fit: cover;

    object-position: center;

    border-radius: 3px;

    background: #081526;

    box-sizing: border-box;

}


/*==========================================================
    CONTENEDOR DEL TITULO
==========================================================*/

.editorial-ticker-title-container {

    flex: 1 1 auto;

    width: auto;

    min-width: 0;

    height: 36px;

    position: relative;

    display: block;

    overflow: hidden;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


/*==========================================================
    TITULO
==========================================================*/

.editorial-ticker-title {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0 3px;

    box-sizing: border-box;

    overflow: hidden;

    color: #081526 !important;

    font-family: Arial, sans-serif !important;

    font-size: 11px !important;

    font-weight: 800 !important;

    line-height: 13px;

    text-align: center;

}


/*==========================================================
    TEXTO DEL TITULO
==========================================================*/

.editorial-ticker-text {

    display: block;

    width: 100%;

    max-width: 100%;

    margin: 0;
    padding: 0;

    color: #081526 !important;

    font-family: Arial, sans-serif !important;

    font-size: 11px !important;

    font-weight: 800 !important;

    line-height: 13px;

    text-align: center;

    white-space: normal;

    overflow-wrap: break-word;

    word-break: normal;

}


/*==========================================================
    TITULO ENTRANDO
==========================================================*/

.editorial-ticker-title.ticker-next {

    transform: translateY(100%);

}


/*==========================================================
    TITULO VISIBLE
==========================================================*/

.editorial-ticker-title.ticker-visible {

    transform: translateY(0);

    transition:
        transform 650ms ease;

}


/*==========================================================
    TITULO SALIENDO
==========================================================*/

.editorial-ticker-title.ticker-up {

    transform: translateY(-100%);

    transition:
        transform 650ms ease;

}


/*==========================================================
    CARGANDO
==========================================================*/

.editorial-ticker-loading {

    width: 100%;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0 3px;

    color: #081526;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    line-height: 11px;

    text-align: center;

    box-sizing: border-box;

}


/*==========================================================
    IMAGEN SIN CONTENIDO
==========================================================*/

.editorial-ticker-image[src=""] {

    visibility: hidden;

}


/*==========================================================
    TELEFONOS PEQUENOS
==========================================================*/

@media (max-width: 360px) {

    .editorial-ticker {

        height: 34px;

    }


    .editorial-ticker-track {

        height: 34px;

        padding: 0 5px;

    }


    .editorial-ticker-date {

        flex-basis: 59px;

        width: 59px;
        min-width: 59px;
        max-width: 59px;

        height: 34px;

        font-size: 8px;

    }


    .editorial-ticker-separator {

        flex-basis: 7px;

        width: 7px;
        min-width: 7px;
        max-width: 7px;

        height: 34px;

    }


    .editorial-ticker-image {

        flex-basis: 22px;

        width: 22px !important;
        min-width: 22px !important;
        max-width: 22px !important;

        height: 22px !important;
        min-height: 22px !important;
        max-height: 22px !important;

        margin-right: 4px;

    }


    .editorial-ticker-title-container {

        height: 34px;

    }


    .editorial-ticker-title {

        height: 34px;

        font-size: 10px !important;

        line-height: 12px;

    }


    .editorial-ticker-text {

        font-size: 10px !important;

        line-height: 12px;

    }


    .editorial-ticker-loading {

        height: 34px;

        font-size: 8px;

    }

}