/*==================================== layout overwrite ====================================*/

.wrap {
    background-color: #E8E8E8;
}

.container .section-wrapper {
    margin: 20px -1000px;
    background-color: white;
}

.container .section-wrapper .section {
    margin: 0 1000px;
    padding: 20px 0;
}

/*==================================== view internal ====================================*/

.member-view .area-list {
    margin: -10px 0 20px;
    background-color: #f5f5f5;
    padding: 8px 15px;
    font-size: 90%;
}

.member-view .area-list .area-item>.label {
    padding: .2em .5em;
}

.member-view .area-list>.area-item>a[role=button] {
    margin-left: .5em;
    border: 1px solid #337ab7;
    border-radius: .25em;
    padding: 0 .4em;
    font-size: 90%;
    white-space: nowrap;
}

.member-view .label-list {
    line-height: 175%;
}

.member-view .v-scrollable-container {
    position: relative;
    overflow-y: hidden;
}

.member-view .v-scrollable-container .v-scrollable-body {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    overflow-y: hidden;
}

.member-view .call-to-phone-action {
    border: 4px solid silver;
    padding: 12px;
}

.member-view .call-to-phone-action .link {
    font-size: 30px;
    font-weight: bold;
    line-height: 60px;
    vertical-align: middle;
}

.member-view .slot-icons {
    display: flex;
    flex-direction: column;
    padding-bottom: 9px;
    align-items: center;
}

.member-view .slot-icons>* {
    width: 250px;
}

@media screen and (min-width: 560px) {
    .member-view .slot-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
    }
}

.member-view .slot-icon {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 5px 0;
    margin-right: 10px;
    border-radius: 5px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    background-color: silver;
    text-align: center;
}

.member-view .slot-icon.slot-icon-block {
    display: block;
    width: initial;
    margin-top: 5px;
    margin-right: initial;
}

.member-view .slot-icon.slot-icon-lunch {
    background-color: #FFA19C;
}

.member-view .slot-icon.slot-icon-dinner {
    background-color: #73A0CA;
}

.member-view .slot-icon.slot-icon-delivery {
    background-color: yellowgreen;
}

.member-view .slot-icon .fa {
    color: white;
}

.member-view .slot-icon .slot-icon-tbc-ribbon-bottom-right,
.member-view .slot-icon .slot-icon-lock-ribbon-bottom-right {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 18px;
    height: 17px;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 80%;
    text-align: center;
    padding: 2px;
    background-color: gray;
}

.member-view .slot-icon.slot-icon-lunch .slot-icon-tbc-ribbon-bottom-right {
    background-color: #f56665;
}

.member-view .slot-icon.slot-icon-dinner .slot-icon-tbc-ribbon-bottom-right {
    background-color: #257aac;
}

.member-view .slot-icon.slot-icon-delivery .slot-icon-tbc-ribbon-bottom-right {
    background-color: #81af22;
}

.member-view .slot-icon .slot-icon-tbc-ribbon-bottom-right .fa,
.member-view .slot-icon .slot-icon-lock-ribbon-bottom-right .fa {
    vertical-align: top;
}

.member-view .slot-icon .slot-icon-blocked-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
}