@charset "utf-8";

#loading-car{
    text-align: center;
    text-shadow: rgba(255,255,255,1) 1px 1px 0;
    padding: 120px 40px 120px;
    background: #fff url(../images/loading_car.jpg) no-repeat center center;
}

#loading-hotel-car{
    text-align: center;
    text-shadow: rgba(255,255,255,1) 1px 1px 0;
    padding: 120px 40px 120px;
    background: #fff url(../images/loading_holte_car.jpg) no-repeat center 75%;
}
#rentcar-blockui-loading {
    width: 100%;
    height: 100%;
    min-height: 80px; /* tránh bị quá thấp */
    display: flex;
    align-items: center;
    justify-content: center;
}

#rentcar-blockui-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: rentcar-blockui-spin 1s linear infinite;
}

@keyframes rentcar-blockui-spin {
    to { transform: rotate(360deg); }
}