/* HORIZONTAL */
.header_bottom_sidebar_wrapper .widget_wrapper,
.header_bottom_sidebar_wrapper .widget_wrapper .mtquotes_container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    max-height: 40px;
}
.header_bottom_sidebar_wrapper .widget_wrapper .mtquotes_container table,
.header_bottom_sidebar_wrapper .widget_wrapper .mtquotes_container caption,
.header_bottom_sidebar_wrapper .widget_wrapper table tbody {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.header_bottom_sidebar_wrapper .widget_wrapper .mtquotes_container table{
    display: inline-flex;
    width: auto!important;
}
.header_bottom_sidebar_wrapper .widget_wrapper .mtquotes_container caption > span {
    margin-right: 10px;
}
.header_bottom_sidebar_wrapper .widget_wrapper table thead {
    display: none;
}
.header_bottom_sidebar_wrapper .widget_wrapper table tbody tr,
.header_bottom_sidebar_wrapper .widget_wrapper table tbody tr td:first-child{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.header_bottom_sidebar_wrapper .widget_wrapper table tbody tr td {
    padding: 0 4px;
}
.header_bottom_sidebar_wrapper .widget_wrapper table tbody tr td:nth-child(2){
    margin-right: 5px;
}
.header_bottom_sidebar_wrapper .widget_wrapper table tbody tr td:nth-child(3){
    border-right: 1px solid #000;
}
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0)
    }
}

@-moz-keyframes scroll {
    0% {
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -moz-transform: translate(-100%, 0);
        transform: translate(-100%, 0)
    }
}

@keyframes scroll {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0)
    }
}
.header_bottom_sidebar_wrapper .widget_wrapper .mtquotes_container table {
    padding-left: 100%;
    -webkit-animation: scroll 80s infinite linear;
    -moz-animation: scroll 80s infinite linear;
    animation: scroll 80s infinite linear;
}