.bg {
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

.built .header {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
}

::-webkit-scrollbar {
    display: none
}

.leftDiv {
    width: 250px;
    height: 100%;
    position: fixed;
    left: 0px;
    font-size: 16px;
    background-color: #092e38db;
    overflow-y: auto;
    transform: translateX(-250px);
    transition: ease 2s;
    z-index: 99;
}

.leftDiv.on {
    transform: translateX(0px);
}

.closeLeft {
    display: none;
    font-size: 10px;
    color: #a5d4f2;
    font-weight: 500;
    background-color: #1f3d40f0;
    position: absolute;
    left: 250px;
    top: 30%;
    height: 20vh;
    border-radius: 0 10px 10px 0;
    padding: 0 6px;
    align-items: center;
    transform: translateX(-250px);
    transition: ease 2s;
    z-index: 99;
}

.closeLeft.on {
    transform: translateX(0px);
}

@media(max-width:768px) {
    .leftDiv {
        background-color: #a5dbf387;
        z-index: 99;
    }

    .closeLeft {
        display: flex;
        z-index: 99;
    }
}

.leftDiv .search {
    transition: ease 2s;
    /*opacity: 0;*/

}

.leftDiv .cardd {
    margin-bottom: 10px;

}

.title {
    padding: 10px;
    text-align: center;
    color: #fff;
    background-color: #16172d;
    border-radius: 5px 5px 0px 0px;
    /* font-size: 18px; */
}

.content {

    background-color: #fefefd;
    box-sizing: border-box;
    border-radius: 0px 0px 5px 5px;
}

.search .content {
    padding: 10px;
}

.search .form-group {
    margin-bottom: 0.3rem;
}

.search .form-check {
    margin-bottom: 0.2rem;
}

.content .winTitle {
    font-weight: 500;
    /* font-size: 18px; */
    color: #0f136f;
}

.content table {
    width: 100%;
    font-weight: 500;
    /* font-size: 18px; */
    text-align: right;
}

.content table th {
    font-size: 16px;
}

#Zone .content table th {
    white-space: nowrap;
    margin-right: 0.5rem;
}

.content tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-top: 1px solid #fff;

}

.line {
    display: inline-block;
    margin-left: 0.3rem;
    width: 35px;
    margin-bottom: 4px;
}

.bg-gray {
    background-color: #e2f2f7;
}

.bulitAll,
.bulitProgress,
.Zone {
    display: none;
}