﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --main-color-bg: #10C6CA;
    --text-color: #444444;
    --btn-color: #3282ED;
    --breadcrumbs-color: #666666;
}

.mobile-header {
    background: #FFFFFF;
    border: 1px solid #AAAAAA;
    height: 60px;
}

.bx-chevron-left {
    color: #AAAAAA;
}

.mobile-header-title {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
}

.btn-genaral {
    background: var(--btn-color);
    color: #FFFFFF;
    width: 70%;
    height: 42px;
}

@media (min-width: 768px) {
    .btn-general {
        width: 50%;
    }
}

.bottom-button {
    position: relative;
    margin-top: 100%;
    justify-content: center;
}

.sub-name {
    color: #AAA;
    font-size: 12px;
}

.sub-item {
    font-size: 14px;
    margin-bottom: .5rem;
}

.name-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Mobile_BookingListing
--------------------------------------------------------------*/
.list-wrapper {
    margin: 1.5rem 1rem;
    padding: 0.5rem 0;
    background: #FFF;
    border: 1px solid #AAA;
    border-radius: 4px;
}

.content-label {
    color: #AAAAAA;
    font-weight: 400;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Mobile Block Period
--------------------------------------------------------------*/
.circle-button {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #3282ED;
    color: #FFFF;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .circle-button:hover {
        background-color: #3282ED;
    }

#unit .btn-lot-sel {
    width: 80px;
    font-weight: 700;
    color: var(--default-color);
    padding: .5rem;
    background: #FFF;
    border: 1px solid #AAA;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    word-break: break-word;
    min-height: 2.25em;
}

#unit .selected {
    background: #FEAF18;
    color: #FFF;
    border: 1px solid #AAA;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}

#unit .unavailable {
    background: #F7F4F0;
    color: #CCC;
}

#capacity .quantity-wrapper {
    height: 38px;
    width: 163px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #AAA;
    user-select: none;
}

#capacity .quantity-wrapper button {
    width: 100%;
    text-align: center;
    border: unset;
    background-color: transparent;
}

#capacity .quantity-wrapper input {
    width: 100%;
    text-align: center;
    border: unset;
}
    #capacity .quantity-wrapper input:focus {
        border: unset;
    }


/*--------------------------------------------------------------
# Daily Planning
--------------------------------------------------------------*/
.tab-wrapper {
    background: #A9C6FF;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0.4rem 0.4rem 0;
    display: flex;
}

.tab {
    width: 191px;
    text-align: center;
    background-color: transparent;
    color: #FFF;
    border-radius: 8px 8px 0px 0px;
    font-weight: 700;
    border: unset;
    padding: .5rem;
    margin-right: 1rem;
}

    .tab.active {
        background: #FFF;
        color: #444;
    }

#Ongoing-tab,
#Upcoming-tab,
#Past-tab{
    padding: 2rem 1rem;
}

.ongoing-wrapper,
.upcoming-wrapper,
.past-wrapper {
    background: #FFF;
    border: 1px solid #AAA;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

    .ongoing-wrapper .title,
    .upcoming-wrapper .title {
        background-color: #F6F9FF;
        border-radius: 3px 3px 0px 0px;
        padding: .5rem 1rem;
        color: #3282ED;
        font-size: 14px;
    }

    .ongoing-wrapper .online-status {
        border-radius: 50%;
        background-color: #47AD4C;
        width: 11px;
        height: 11px;
    }

.upcoming-wrapper .offline-status {
    border-radius: 50%;
    background-color: #F36161;
    width: 11px;
    height: 11px;
}

    .upcoming-wrapper .btnUpcoming {
        background: #2F80ED;
        color: #FFF;
        width: 128px;
        height: 42px;
        font-weight: 700;
    }

.bx {
    color: #082F74;
}