/* Minification failed. Returning unminified contents.
(80,23): run-time error CSS1039: Token not allowed after unary operator: '-font-weight-400'
(81,17): run-time error CSS1039: Token not allowed after unary operator: '-color-dark-blue'
(87,17): run-time error CSS1039: Token not allowed after unary operator: '-color-orange'
(88,23): run-time error CSS1039: Token not allowed after unary operator: '-font-weight-900'
(90,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-14'
(108,23): run-time error CSS1039: Token not allowed after unary operator: '-font-weight-500'
(126,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-20'
(127,17): run-time error CSS1039: Token not allowed after unary operator: '-color-gray'
(143,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-14'
(148,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(153,29): run-time error CSS1039: Token not allowed after unary operator: '-color-navy-blue'
(157,28): run-time error CSS1039: Token not allowed after unary operator: '-color-navy-blue'
(158,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
 */
.ticker-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

.marquee-container {
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    width: 100%;
}


.marquee {
    flex: 0 0 auto;
    min-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: marquee 40s linear infinite;
}

.marquee-container:hover .marquee {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused !important;
}

/*Transition*/
@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}



.scroll-pic-container {
    position: relative;
    height: 140px;
    width: 140px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-pic-container img {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    top: -15px;
}

.scroll-item {
    display: flex;
    width: 350px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px;
    margin: 10px;
}

.scroll-item .sCat,
.scroll-item .sTitle,
.scroll-item .closing {
    text-decoration: none;
    font-weight: var(--font-weight-400);
    color: var(--color-dark-blue);
    margin-bottom: 0;
    display: block;
}

.scroll-item .sPrice {
    color: var(--color-orange);
    font-weight: var(--font-weight-900);
    margin-bottom: 1px;
    font-size: var(--font-size-14);
    margin-top: 5px;
}

.closing {
    font-size: small;
}

.scroll-pinfo {
    padding: 1rem;
    top: 10px;
    box-sizing: border-box;
    width: calc(100% - 140px);
}

.scroll-pinfo h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-500);
    line-height: 1.2;
}


.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.ticker-control {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5%;
    font-size: var(--font-size-20);
    color: var(--color-gray);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
}



.marquee .exploreBtn {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: var(--font-size-14);
    padding: 8px;
}

.marquee .exploreBtn:visited {
    color: var(--color-white);
}


.scroll-item:hover {
    outline: 2px solid var(--color-navy-blue);
}

.scroll-item:hover .exploreBtn {
    background-color: var(--color-navy-blue) !important;
    color: var(--color-white);
}

@media (max-width: 768px) {

    .marquee .exploreBtn {
        padding: 2px;
    }

    .scroll-pic-container {
        height: 100px;
        width: 100px;
    }

    .scroll-pic-container img{
        top: -10px;
    }
}
