/* container */

#bs_preloaderWrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff;
}


/* spinner */

#bs_preloaderWrapper .bs_preloader {
    margin: 10px 0;
    border: 10px solid #f3f3f3;
    border-left: 10px solid #d0a53e;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    animation: spin 1.2s linear infinite;
}

#bs_preloaderWrapper p {
    margin: 10px 0;
    padding: 0;
    color: #d0a53e;
    font-size: 30px;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}