#compareLoanersButton {
    position: fixed;
    left: 0;
    top: 50%;
    margin-top: -30px;
    height: 60px;
    width: 40px;
    text-align: center;
    line-height: 60px;
    background: #3E3F3A;
    color: #93C54B;
    border-radius: 0 4px 4px 0;
    font-size: 24px;
    cursor: pointer;
}

#compareLoanersButton:hover {
    background: #303030;
}

#compareLoanersButton.act {
    color: #3e3f3a;
    background: #93C54B;
}

#compareLoanersButton > span {
    font-size: 10px;
    text-transform: uppercase;
    position: absolute;
    height: 40px;
    line-height: 16px;
    background: #93C54B;
    color: #3e3f3a;
    top: 10px;
    left: 50px;
    width: 160px;
    padding: 4px 6px;
    border-radius: 4px;
    display: none;
}

#compareLoanersButton.msg span {
    display: block;
}

.opening-times {
    width: 180px;
}

.table td {
    vertical-align: middle !important;
}

.table th,
.table td {
    font-size: 12px;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

.loaner-row {
    cursor: pointer;
}

.loaner-row:hover,
.loaner-row:hover td {
    background: #ffffe5 !important;
}

.price-list-loaner {
    line-height: 60px;
    vertical-align: middle;
    margin-bottom: 30px;
}

.nav-pills li.active > a,
.nav-pills li > a:hover,
.nav-pills li > a:focus,
.nav-pills li > a:active {
    background: #93C54B;
    color: #fff;
    border-color: #93C54B;
}

.loaner-info-link {
    text-decoration: underline;
}

[data-href] {
    cursor: pointer;
}

td.loan-price {
    min-width: 100px;
}

td.loan-price .gpl {
    font-size: 10px;
}

#typeSwitchers {
    display: none;
}

.make-it-scrollable {
    overflow-y: scroll;
}


#type-switcher-mobile {
    display: none;

    width: 100%;
}

@media screen and (max-width: 768px) {
    #typeSwitchers, #compareLoanersButton {
        display: none !important;
    }

    #type-switcher-mobile {
        display: block;
        cursor: pointer;
        border: 1px solid #efefef;
    }

    .loan-type-select-row {
        display: none;
        border-bottom: 1px solid #efefef;
    }

    .loan-type-select-row:last-child {
        border-bottom: 0;
    }

    .loan-type-select-row.active-row {
        font-weight: bold;
    }

    .loan-type-select-row.active-row,
    .loan-type-select-row.show-row {
        display: flex;
    }

    .loan-type-select-row:hover {
        background: #efefef;
        border-color: #e0e0e0;
    }

    .loan-type-select-row > div {
        font-size: 14px;
        padding: 10px 15px;
        flex: 1;
    }

    .loan-type-select-row > .loan-type-select-row-count {
        flex-basis: 80px;
        width: 80px;
        flex-grow: 0;
        border-left: 1px solid #efefef;
        text-align: center;
        vertical-align: middle;
    }

    .loan-type-select-row > .loan-type-select-row-count:after {
        width: 30px;
        /*height: 30px;*/
        /*line-height: 30px;*/
        text-align: center;
        display: inline-block;
        content: '';
        font-family: 'Glyphicons Halflings';
        font-style: normal;
        font-weight: 400;
        vertical-align: middle;
        margin-top: -1px;
    }

    .loan-type-select-row.active-row > .loan-type-select-row-count:after {
        content: '\e114';
    }

    .open-dropdown .loan-type-select-row > .loan-type-select-row-count {
        flex-basis: 50px;
        width: 50px;
    }

    .open-dropdown .loan-type-select-row > .loan-type-select-row-count:after {
        display: none;
    }
}