@charset "utf-8"; /* COR */
/* CSS Document */


.ticker-container {
    width: 100%;
    height: 2rem;
    left: 0;
    right: 0;
    overflow: hidden;
    position: relative;
/*    top: 348px 48vh;*/
    font-family: "Exo 2", sans serif;
/*    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);*/
}

.ticker-wrapper {
    width: 100%;
    padding-left: 100%;
/*    background-color: transparent;*/
    background: #13476B;
    color: aliceblue;
}

@keyframes ticker {
    0% {transform: translate3d(0, 0, 0);}
    100% {transform: translate3d(-200%, 0, 0);}
}

.ticker-transition {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 40s;}
    
.ticker-transition:hover {
    animation-play-state: paused;
    cursor: pointer;}
    
.ticker-item {
    display: inline-block;
    padding: 0.2rem 4rem;
}

a.link::Before {
        content: "\1F517";
}

/*@media only screen and (max-width: 468px) {/* iPhone 11 Pro portrait 468px */
/*    .ticker-container {*/
/*        top: 260px 42vh;*/
    }
}*/
