.hm-container {
    position: relative;
}

.hm-container.action .hm-over {
    display: block;
    z-index: 3000;
}

.hm-over {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
}
.hm-vp {
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.loading-not-fs .hm-over {
    position: absolute;
}
.loading-not-fs .hm-vp {
    position: relative;
    width: 100%;
    height: 100%;
}
span.hm-message {
    left: 0;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.hm-spinner {
    height: 115px;
    width: 115px;
    border: 6px solid transparent;
    border-top-color: #047bf8;
    border-bottom-color: #047bf8;
    border-radius: 50%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.hm-spinner::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 6px solid transparent;
    border-top-color: #047bf8;
    border-bottom-color: #047bf8;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
