.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid var(--red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

#loaded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-modal.active {
    display: block;
    position: fixed;
    right: 50px;
    bottom: 50px;
    max-width: 271px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    z-index: 10;
}

@media(max-width: 1720px) {
    .policy-modal.active {
        bottom: 150px;
    }
}

@media(max-width: 1100px) {
    .policy-modal.active {
        bottom: 80px;
        right: 26px;
    }
}

.policy-modal p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--black)
}

.policy-modal p a {
    color: var(--red);
}

.policy-modal span {
    position: absolute;
    right: 10px;
    top: 5px;
    color: var(--red)
}
.close-policy {
    cursor: pointer;
}