.scrollable-head{
    position: relative;
    height: 23px;
}
.scroll-controls-h {
	position: relative;
}
ul.scrollable-header {
    /* display: flex; */
    justify-content: center;
    align-content: space-between;
    white-space: nowrap;
    position: relative;
    margin: 0 3%;
    /* border-bottom: 1px solid #ccc; */
}
img.sh-icon__img {
    width: auto;
    height: 50px;
    vertical-align: middle;
}

span.sh-name {
    line-height: 71px;
    vertical-align: top;
    font-family: 'OpenSans', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
    text-align: center;
    font-weight: 500;
    padding: 0 13px;
}

ul.scrollable-header li.sh-element {
    border-bottom: 1px solid #ccc;
    height: 55px;
    padding: 0 2rem 7rem;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    min-width: 250px;
    flex-grow: 5;
    box-shadow: inset 0px -1px 0px -1px rgb(204 204 204);
}
.scrollable-header__wrapper{
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: relative;
    padding-top: 1.5rem;
}
ul.scrollable-header li.sh-element.active {
    border-bottom: 1px solid #007eae;
    box-shadow: inset 0px -3px 0px -1px rgb(0 126 174);
    /*transition: all 1s cubic-bezier(1, -0.5, 1, 0.42);*/
}
li.sh-element.active span.sh-name {
    color: #007eae;
    font-weight: 600;
    /*transition: all 1s cubic-bezier(1, -0.5, 1, 0.42);*/
}
.scrollable-head.fixed .scrollable-header__wrapper {
    background:#fff;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 1;
}

.only-logo .scrollable-head.fixed .scrollable-header__wrapper {
    top: 60px;
}

.scrollable-block {
    margin-top: 0;
}

.scrollable-block-0 {
    margin-top: 7rem;
}

.scrollable-block:last-of-type {
    margin-top: 0;
}
.sh-element:focus {
    border:1px solid #007eae !important;
}
.sh-scroll-horizontal {
    text-align: center;
    position: absolute;
    top: 18px;
    bottom: 0;
    width: 30px;
    height: 63px;
    line-height: 57px;
    z-index: 2;
    /* border-radius:3px; */
    display:none;
    background: #fff;
    opacity: 0;
    font-family: monospace;
    font-weight: bold;
    color: #979797;
}
.sh-scroll-horizontal.scrollable {
    display:block;
}

.sh-scroll-horizontal.scrollable.enabled {
    opacity: 1;
    cursor: pointer;
}
.sh-scroll-horizontal--left {
    left: 0;
    border: none;
    border-right: 2px solid #dfdfdf;
}
.sh-scroll-horizontal--right {
    right: 0;
    border: none;
    border-left: 2px solid #dfdfdf;
}
.fixed .scroll-main-wrap {
    background: #fff;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 7;
}
.fixed .sh-scroll-horizontal {top: 50px;}
@media screen and (max-width: 992px) {
    .scrollable-head.fixed .scrollable-header__wrapper {
        top: 59px;
    }
    .sh-scroll-horizontal{
        top: 31px;
        height: 41px;
        line-height: 37px;
        font-size: 1.2rem;
    }
    .fixed .sh-scroll-horizontal{
        top: 37px;
        height: 35px;
        line-height: 35px;
    }
    ul.scrollable-header li.sh-element{
        padding-left: 1rem;
    }
    span.sh-name {
        line-height: 44px;
        vertical-align: sub;
        font-family: 'OpenSans', Helvetica, Arial, sans-serif;
        font-size: 16px;
        margin: 0;
        text-align: center;
        font-weight: 500;
        padding: 0 3px 0 0px;
    }
    ul.scrollable-header li.sh-element{
        height: 61px;
        min-width: auto;
        padding: 0 1rem 1rem 1rem;
    }
    img.sh-icon__img {
        margin: .8rem;
    }
    ul.scrollable-header {
        display: block;
        margin: 0;
    }
}