.index-bar {
    width: 100%;
    height: 62px;
    margin: 0;
    padding: 0;
    color: #ccc;
    font: 12px Arial,sans-serif;
    overflow: hidden;
    z-index: 999;
    position: static;
    bottom: auto;
    transition: 0.4s height;
}

.index-bar--fixed {
    position: fixed;
    left: 0;
    bottom: 0;
}

.index-bar--is-closed {
    height: 30px;
    margin-bottom: -1px;
}

@media screen and (max-width: 640px) {
    .index-bar {
        display: none;
    }
}

.index-bar__header-wrap {
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 994px
}

.index-bar__header {
    margin: 0 auto;
    padding: 6px 7px 0 7px;
    background-color: #333333;
    width: 300px;
    height: 30px;
    border-radius: 3px 3px 0 0;
    font-size: 11px;
    text-transform: uppercase;
    transition: 0.4s width;
}

.index-bar--is-closed .index-bar__header {
    width: 32px;
}

.index-bar__openclose {
    margin-right: 20px;
    background: #555;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    float: left;
    display: block;
    cursor: pointer;
}

.index-bar__openclose svg {
    width: 16px;
    height: 16px;
    margin: 1px;
    fill: #ddd;
}

.index-bar--is-closed .index-bar__openclose {
    transform: rotate(0.5turn);
}

.index-bar__date {
    float: right;
}

.index-bar__indices,
.index-bar__date {
    line-height: 18px;
}

.index-bar--is-closed .index-bar__indices,
.index-bar--is-closed .index-bar__date {
    display: none;
}

.index-bar__index-changer {
    margin-right: 8px;
    color: inherit;
    cursor: pointer;
}

.index-bar__index-changer--is-active {
    color: #fff;
    font-weight: bold;
}




.index-bar__body {
    background-color: #333333;
    width: 100%;
    height: 32px;
    transition: 0.4s height;
}

.index-bar--is-closed .index-bar__body {
    height: 0;
}

.index-bar__index-box {
    width: 154px;
    float: left;
    padding: 10px 0 10px 10px;
}

.index-bar__index-box a {
    color: inherit;
}

.index-bar__partner-box {
    width: 90px;
    float: right;
}

.index-bar--is-closed  .index-bar__partner-box {
    opacity: 0;
}


.index-bar--no-partner-logo .index-bar__partner-box {
    display: none;
}

.index-bar__partner-box a,
.index-bar__partner-box svg {
    display: block;
}

.index-bar__partner-box svg {
    width: 140px;
    height: 22px;
    margin: 6px 0 0 6px;
}

.index-bar__quotes-box {
    margin-left: 154px;
    margin-right: 106px;
    overflow: hidden;
    position: relative;
}

.index-bar__quotes-box:before,
.index-bar__quotes-box:after {
    content: '';
    background: linear-gradient(to right, #333, rgba(51, 51, 51, 0));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    z-index: 1;
}

.index-bar__quotes-box:before {
    background: linear-gradient(to right, rgba(51, 51, 51, 0), #333);
    right: 0;
    left: auto;
}

.index-bar--no-partner-logo  .index-bar__quotes-box {
    margin-right: 0;
}

@media screen and (max-width: 994px) {
    .index-bar__partner-box {
        width: 80px;
    }
    .index-bar__quotes-box {
        margin-right: 90px;
    }
}




.index-bar__data {
    white-space: nowrap;
}


.index-bar__animation-container {
    display: inline-block;
    white-space: nowrap;
}

.index-bar__data ul {
    animation-duration: 72s;
    animation-name: moveIndexBar;
    animation-timing-function: linear; /* cubic-bezier(0.1, 0, 1, 1); */
    animation-delay: 2s;
    animation-iteration-count: infinite;
}

.index-bar__body:hover ul {
    animation-play-state: paused;
}

@keyframes moveIndexBar {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}


.index-bar__data ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 34px;
    white-space: nowrap;
    display: inline-block;
}

.index-bar__data li {
    display: inline;
    margin-left: 6px;
    margin-right: 14px;
}

.index-bar__data a {
    color: inherit;
}

.index-bar__data a:hover {
    color: white;
    text-decoration: underline;
}

.index-bar__data .red {
    color: #ff354e;
}

.index-bar__change_percent {
    margin: 0 8px;
}

.index-bar__quote--updated {
    animation: 1s quotesUpdated;
}

@keyframes quotesUpdated {
  from {
    background: rgba(255, 255, 0, 0.3);
  }

  to {
    background: rgba(255, 255, 0, 0);
  }
}




