.scroll-tab-holder {
    padding-top: 15px;
	margin: 0 -15px;
	clear: both;
    /* remove float */
    float: none;    
}
.scroll-tab-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    list-style: none;
    padding-top: 20px;
    padding-left: 0;
    margin-bottom: 5px;
}
.scroll-tab-list::-webkit-scrollbar {
    width: 0px;  /* remove scrollbar space */
    background: transparent;  /* optional: just make scrollbar invisible */
}
.scroll-tab-button {
    position: relative;
    background: #fff;
    margin-bottom: 5px;
    margin-right: 10px;
    /* padding: 20px 10px; */
    padding: 20px 3px; 
    color: #181f38;
    cursor: pointer;
    transition: .2s;
}
.scroll-tab-button:before {
	display: none;
}
.scroll-tab-button:first-child {
	margin-left: 15px;
}
.scroll-tab-button:last-child {
	margin-right: 15px;
}
/*Small scroll button*/
.sm-scroll-tab-button {
    /*height: 160px;*/
    flex: 0 0 105px;
    border-radius: 5px;
}
.sm-scroll-tab-button i {
    font-size: 3.5em;
    text-align: center;
    display: block;
    color: #2a7dfb;
    transition: .2s;
}
.scroll-tab-button p {
    color: #181f39;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    opacity: 0.75;
    opacity: 1;
    font-family: 'Roboto Condensed', sans-serif;
    transition: .2s;
}
/*Large scroll buttons*/
.lg-scroll-tab-button {
    flex: 0 0 185px;
    /*height: 73px;*/
    border-radius: 3px;
    display: flex;
    padding: 10px;
    align-items: center;
}
.lg-scroll-tab-button.active {
    background-color: #2a7dfb;
}
.lg-scroll-tab-button.active span {
    color: #fff!important;
}
.lg-scroll-tab-button.active p {
    color: #fff;
    font-weight: 500;
}
.lg-scroll-tab-button span {
    font-size: 2em;
    float: left;
	color: #2a7dfb;
    
}
.lg-scroll-tab-button p {
    float: left;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0;
    padding-left: 10px;
}

.scroll-tab-bubble {
    background: #2a7dfb;
    color: #fff;
    font-size: 1.125em;
    border-radius: 50%;
    padding: 7px;
    font-weight: bold;
    position: absolute;
    top: -11px;
    right: -8px;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: .2s;
}
.scroll-tab-button.active {
    background: #2a7dfb;
}
.sm-scroll-tab-button.active > i, .scroll-tab-button.active > p {
    color: #fff;
	font-weight: bold;
}

.scroll-tab-button.active .scroll-tab-bubble {
    background: #fff; 
    color: #2a7dfb;
}

@media (min-width: 991px) {
    .scroll-tab-button p {
        font-size: 1em;
    }
    .lg-scroll-tab-button:last-child p {
        padding-left: 0;
    }
}
@media (min-width: 1200px) {
	.scroll-tab-holder {
		margin: 0;
	}
	.scroll-tab-button:first-child, .scroll-tab-button:last-child {
		margin-left: 0;
	}
    .lg-scroll-tab-button {
        flex: 0 0 181px;
    }
    .sm-scroll-tab-button {
        flex: 0 0 117px;
    }
    .scroll-tab-button p {
/*         font-size: 0.95em;*/
     }
}

/* a smaller football = handball? */
.lg-scroll-tab-button span.icon-artboard-4.icon-smaller {
    font-size: 1.5em;
}