/*Xem chi tiết đối tượng 3d trong map4d*/
.building__view__wrapper {
    display: none;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.building__view__container {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}

.container__dot--close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 50%;
    background-color: red;
    border-radius: 50%;
    transform: translate(50%, -50%)
}

/*custom componetn seaarch*/
.ux-ui-search-thiethv {
    position: absolute;
    z-index: 1000;
    top: 40px;
    left: 0;
    right: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    animation: opacitytop linear 0.2s;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #FFFFFF;
    border-bottom-right-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

@keyframes opacitytop {
    0% {
        opacity: 0;
        top: 80px;
    }
    100% {
        opacity: 1;
        top: 40px;
    }
}

/*loading data (table objects, tours)*/
.spinner-box-loading-data {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.three-quarter-spinner-loading-data {
    width: 50px;
    height: 50px;
    border: 3px solid #4147c1;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin .5s linear 0s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}

/*loading fixed*/
.spinner-box-loading-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.leo-loading-fixed {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.blue-orbit-loading-fixed {
    width: 165px;
    height: 165px;
    border: 3px solid #91daffa5;
    -webkit-animation: spin3D 3s linear .2s infinite;
}

.green-orbit-loading-fixed {
    width: 120px;
    height: 120px;
    border: 2px solid #91ffbfa5;
    -webkit-animation: spin3D 2s linear 0s infinite;
}

.red-orbit-loading-fixed {
    width: 90px;
    height: 90px;
    border: 2px solid #ffca91a5;
    -webkit-animation: spin3D 1s linear 0s infinite;
}

.white-orbit-loading-fixed {
    width: 60px;
    height: 60px;
    border: 1px solid #ffffff;
    -webkit-animation: spin3D 10s linear 0s infinite;
}

.w1-loading-fixed {
    transform: rotate3D(1, 1, 1, 90deg);
}

.w2-loading-fixed {
    transform: rotate3D(1, 2, .5, 90deg);
}

.w3-loading-fixed {
    transform: rotate3D(.5, 1, 2, 90deg);
}

@keyframes spin3D {
    from {
        transform: rotate3d(.5, .5, .5, 360deg);
    }
    to {
        transform: rotate3d(0deg);
    }
}

.loader-text {
    position: fixed;
    left: 50%;
    top: 65%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-weight: bold;
}

.loader-text:after {
    content: '';
    animation: load 2s linear infinite;
}

@keyframes load {
    0% {
        content: '';
    }
    33% {
        content: '.';
    }
    67% {
        content: '..';
    }
    100% {
        content: '...';
    }
}

@media (min-width: 799px) {
    .nodata-in-table-thiethv {
        display: table-caption;
    }
}