.loader_container {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#loading {
    width: 50px;
    height: 50px;
    margin: 200px auto;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    background: #000000;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

.listing_guides .jet-listing-grid__item {
    cursor: pointer
}