/* sticky */
.section-sticky-link {
    display: -ms-flexbox;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    bottom: -1px;
	box-shadow: 0 0 10px 0px #939393;
    z-index:101 !important;
}

.sticky-link-container {
    display: flex;
    width:100%;
}

.sticky-link-container a {
    color: #000;
    background-color: #E7E3DC;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    text-decoration: none;
    padding:14px 10px;
}

.sticky-link-container a + a {
    border-left:1px solid #000;
}

.full-unstyled-link {
    text-decoration: none;
    color: currentColor;
    display:block;
}

@media (max-width: 767px) {
    .sticky-link-container a {
        font-size: 16px;
        line-height: 20px;
        padding-top: 11px;
        padding-bottom: 11px;
    }
}

