
#storage-select-content ul.nav-pills{
    border-bottom: 2px solid var(--olive);
    margin:0;
    padding-left: 1px;
    display: inline-block;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
}
#storage-select-content ul.nav-pills li{
    margin:0 0 -2px -1px;
    display: inline-block;
}
#storage-select-content ul.nav-pills li a.storage-select-button{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    color:var(--black);
    padding: 10px 20px 8px 40px;
    text-decoration: none;
    border-top:1px solid var(--grey-medium);
    border-left:1px solid var(--grey-medium);
    border-right:1px solid var(--grey-medium);
    border-bottom:1px solid transparent;
    z-index: 0;
    -webkit-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;
}
#storage-select-content ul.nav-pills li a.storage-select-button.active{
    background-color: var(--olive);
    color:var(--white);
    border:1px solid  var(--olive);
    z-index: 1;
    -webkit-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;
}
#storage-select-content ul.nav-pills li a.storage-select-button.active:hover{
    opacity:1;
    -webkit-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;
}
#storage-select-content ul.nav-pills li a.storage-select-button:before{
    content:'';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:20px;
    display: block;
    outline:1px solid var(--grey-dark);
    border:1px solid var(--white);
    background-color:var(--white);
    border-radius: 14px;
    height: 12px;
    width: 12px;
    -webkit-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;
}
#storage-select-content ul.nav-pills li a.storage-select-button:hover:before{
    content:'';
    outline:1px solid var(--grey-dark);
    border:1px solid var(--white);
    background-color:var(--grey-dark);
    -webkit-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;
}
#storage-select-content ul.nav-pills li a.storage-select-button.active:before{
    content:'';
    outline:1px solid var(--white);
    border:1px solid var(--olive);
    background-color:var(--black);
    -webkit-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;
}
#storage-select-content ul.nav-pills li a.storage-select-button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
#storage-select-content ul.nav-pills li a.storage-select-button.disabled:hover:before {
    background-color: transparent;
}

#storage-select-content .tab-content.clearfix{
    border-left:1px solid var(--grey-medium);
    border-right:1px solid var(--grey-medium);
    border-bottom:1px solid var(--grey-medium);
}
#storage-select-content .tab-content.clearfix p{
    color:#575757;
}
#storage-select-content .tab-content.clearfix p:last-of-type{
    margin-bottom: 0;
}