.classified-modal-overlay {
    display: none;
    background: var(--classified-color-dark);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    pointer-events: visible;
}
.classified-modal-overlay.active {
    display: block;
}
.classified-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    z-index: 10001;
    display: none;
    max-height: 22px;
}
.classified-loader.active {
    display: block;
}
.classified-loader .dot { 
    animation: 1s blink infinite;
    fill: var(--classified-color-light);
}
.classified-loader .dot:nth-child(2) {
    animation-delay: 250ms;
}
.classified-loader .dot:nth-child(3) {
    animation-delay: 500ms;
}

.classified-modal-popup {
    display: none;
    margin: auto;
    position: fixed;
    z-index: 777777778;
    font-size: 16px;
    color: var(--classified-color-dark);
    box-sizing: border-box;
    background: var(--classified-color-neutral-light);
    box-shadow: 0px 0px 15px 5px #666;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
@media (min-width: 992px) {
    .classified-modal-popup {
        top: 15%;
        left: calc(50% - 200px);
        width: 400px;
        height: 550px;
        right: unset;
        bottom: unset;
    }
}
.classified-modal-inner {
    background-color: var(--classified-color-neutral-light);
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center top;
}
.classified-modal-header {
    background: var(--classified-color-dark);
    color: var(--classified-color-light);
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
}
.classified-modal-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 0 auto;
    padding: 0 20px;
    text-transform: uppercase;
}
.classified-modal-close, .classified-modal-close:hover {
    background: transparent;
    cursor: pointer;
    height: 50px;
    padding: 0 15px;
    position: absolute;
    right: 0;
    border: none;
}
.classified-modal-close::after {
    content: none;
}
.classified-modal-close-glyph {
    fill: var(--classified-color-light);
    width: 15px;
    height: 15px;
}
.classified-modal-body {
    height: calc(100% - 50px);
    margin: 0;
    padding: 20px 0;
    overflow: auto;
}