﻿.row--tp {
    height: 100%;
}

.card-body--tp,
.scrollable {
    height: 358px;
}

.scrollable {
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.scrollable::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.spacer {
    flex: 0 0 5%;
    max-width: 5%;
}


.no-availability {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.availability,
.date-label {
    flex: 0 0 19%;
    max-width: 19%;
}

.availability {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon-svg {
    height: 40px;
    width: 40px;
}

.icon-path {
    fill: #ddd;
}

.btn-firm {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    min-width: 80%;
    font: inherit;
    text-align: center;
    transition: all .3s
}

.btn-firm:first-child {
    margin-top: .5rem !important;
}

.btn-firm:last-child {
    margin-bottom: .5rem !important;
}

.btn-firm:hover {
    border-color: #000;
}

.btn-firm:active {
    border-color: #999;
    background-color: #eee;
}

@media screen and (max-width: 991px) {
    .spacer {
        display: none;
        flex: 0%;
        width: 0%;
    }

    .availability,
    .date-label {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media screen and (max-width: 768px) {
    .spacer {
        display: none;
        flex: 0%;
        width: 0%;
    }

    .availability,
    .date-label {
        flex: 0 0 20%;
        max-width: 20%;
    }

}