
.track {
    height: 70px;
    background-color: #2a2933;
    width: 100%;
    position: relative;
    display: block
}

.track__wrap {
    width: 1340px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: flex;
    height: 100%
}

@media only screen and (max-width: 1400px) {
    .track__wrap {
        width: 90%
    }
}

@media only screen and (max-width: 400px) {
    .track__wrap {
        width: 95%
    }

    .nav__arrow::before {
        height: 50px;
        bottom: -10px;
    }

    .nav__item.closed .nav__arrow::before {
        top: -10px;
        bottom: unset;
    }
}

.track__item--back {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    height: 100%;
    min-height: 70px;
    text-transform: uppercase;
    letter-spacing: .7px;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-right: 1px solid #35343d;
    padding-right: 22px;
    -webkit-box-flex: 0;
    flex: 0 0 150px;
    box-sizing: border-box
}

.track__item--back:before {
    background-image: url(../img/nav/arrow-left.svg);
    width: 7px;
    height: 7px;
    content: "";
    margin-right: 13px
}

.track__item--back:hover {
    background-color: #33313d;
    padding-left: 20px;
    cursor: pointer
}

.track__item--back:hover:before {
    display: none
}

.track__item--back:active {
    background-color: #23222a;
    border-top: 5px solid #4990e2
}

.track__item--back a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .7px
}

.track .drop-down {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 232px;
    box-sizing: border-box;
    text-align: center;
    border-right: 1px solid #35343d;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.track .drop-down__item {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-transform: uppercase;
    padding-left: 19px;
    padding-right: 19px;
    box-sizing: border-box;
    min-height: 50px;
    display: -webkit-box;
    display: flex;
    opacity: 0;
    transition: opacity .6s linear
}

.track .drop-down__item a {
    width: 100%;
    height: 100%;
    color: #4990e2;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: .7px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-align: left
}

.track .drop-down__item--active a {
    color: #4990e2
}

.track .drop-down__item:first-of-type {
    display: -webkit-box;
    display: flex;
    min-height: 70px;
    opacity: 1
}

.track .drop-down__item:first-of-type:after {
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    top: 32px;
    right: 10px;
    background-image: url(../img/nav/arrow-down.svg)
}

.track .drop-down:hover {
    max-height: 400px;
    overflow: visible;
    cursor: pointer;
    height: auto;
    display: block
}

.track .drop-down:hover:after {
    display: none
}

.track .drop-down:hover .drop-down__item {
    display: -webkit-box;
    display: flex;
    opacity: 1;
    min-height: 50px;
    height: 50px;
    background-color: #2a2933;
    position: relative
}

.track .drop-down:hover .drop-down__item:hover {
    background-color: #3b3947;
    position: relative
}

.track .drop-down:hover .drop-down__item:hover a {
    padding-right: 5px;
    color: #fff
}

.track .drop-down:hover .drop-down__item:first-of-type {
    height: 70px
}

.track .drop-down:hover .drop-down__item:first-of-type:after {
    display: none
}

.track .drop-down:hover .drop-down__item:first-of-type:hover {
    padding-left: 19px
}

.track .drop-down:hover .drop-down__item:first-of-type:hover:before {
    display: none
}

.track__item-wrap {
    display: -webkit-flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative
}

@media only screen and (max-width: 600px) {
    .track__item-wrap {
        display: none
    }
}

.track__progress {
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    cursor: default
}

.track__progress-inner {
    background-color: #4990e2;
    height: 100%
}

.track__item {
    text-transform: uppercase;
    height: 100%;
    position: relative;
    color: #fff;
    font-family: "open sans", serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, .2);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none
}

.track__item .hidden-text {
    display: none
}

.track__item-number {
    margin-right: 5px;
    display: block
}

.track__item:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    width: 1px;
    height: 10px;
    z-index: 10;
    opacity: 0;
    background-color: #fff;
    transition: all .4s linear
}

.track__item--passed {
    color: #4990e2
}

.track__item--passed .hidden-text {
    display: inline-block
}

.track__item--passed:after {
    opacity: 1
}

.track__item--passed .track__progress {
    width: 100% !important
}

.track__item--current {
    color: #fff
}

.track__item--current .hidden-text {
    display: inline-block
}

.track__item--current:after {
    opacity: 1
}

.track__item:hover {
    color: #fff
}

.track__item:hover .hidden-text {
    display: inline-block
}

.track__item:hover:after {
    opacity: 1
}

@media only screen and (max-width: 960px) {
    .track__item {
        display: none;
        padding-left: 17px;
        -webkit-box-pack: start;
        justify-content: flex-start
    }

    .track__item--current {
        display: -webkit-box;
        display: flex
    }

    .track__item:after {
        display: none
    }
}

.track__item--back-to-top {
    background-image: url(../img/nav/back-to-top.svg);
    width: 70px;
    height: 70px;
    -webkit-box-flex: 0;
    flex: 0 0 70px;
    background-repeat: no-repeat;
    background-position: center;
    border-right: 1px solid #35343d;
    border-left: 1px solid #35343d
}


.strack {
    height: 70px;
    background-color: #2a2933;
    width: 100%;
    position: relative;
    z-index: 100;
    display: block
}

.strack .track__item-wrap {
    -webkit-box-pack: start;
    justify-content: flex-start;
    cursor: pointer
}

@media only screen and (max-width: 960px) {
    .strack {
        display: none
    }
}

.strack__a {
    color: #4990e2;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .7px;
    text-decoration: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px
}

.strack__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #4990e2;
    padding: 0 20px;
    cursor: pointer
}

@media only screen and (min-width: 961px) and (max-width: 1115px) {
    .strack__item {
        font-size: 13px;
        padding: 0 11px
    }
}

@media only screen and (min-width: 961px) and (max-width: 1366px) and (min-height: 767px) and (max-height: 800px) {
    .strack__item {
        font-size: 13px;
        padding: 0 11px
    }
}

.strack__item .track_icon {
    fill: #4990e2;
    margin-right: 11px;
    width: 25px;
    height: 25px
}

.strack__item .track_icon path {
    fill: #4990e2
}

.strack__item .track_icon.hover {
    display: none
}

.strack__item path {
    background-color: red;
    fill: red
}

.strack__item:hover {
    padding-top: 5px;
    color: #fff;
    background-color: #222129
}

.strack__item:hover .strack__a {
    color: #fff
}

.strack__item:hover .track_icon {
    fill: #fff
}

.strack__item:hover .track_icon.hover {
    display: block
}

.strack__item:hover .track_icon.simple {
    display: none
}

.strack__item:hover .track_icon path {
    fill: #fff
}

.strack__item--active {
    background-color: #222129;
    color: #fff;
    padding-top: 5px
}

.strack__item--active .strack__a {
    color: #fff
}

.strack__item--active .track_icon.simple {
    display: none
}

.strack__item--active .track_icon.hover {
    display: block
}

.strack__item--active .track_icon path {
    fill: #fff
}

@media only screen and (max-width: 960px) {
    .strack__item {
        display: none;
        width: 100%;
        background-color: #2a2933;
        padding-top: 0
    }

    .strack__item--active {
        display: -webkit-box;
        display: flex
    }

    .strack__item .strack__a {
        color: #4990e2
    }

    .strack__item .track_icon path {
        fill: #4990e2
    }
}
