/*
|------------------------------------------------------------------------------
| Forms
|------------------------------------------------------------------------------
*/

.privacy-policy-form {
    background: #f9f8fb;
    padding: 10px;
    font-size: 13px;
    text-align: center;
    color: #333333;
    border-radius: 10px;
    max-width: 100%;
}

.privacy-policy-form * {
    box-sizing: border-box;
}

.privacy-policy-form-feedback {
    margin: 0 0 20px;
}

.privacy-policy-form-request {
    max-width: 78%;
    margin: 20px auto 0;
}

@media (max-width: 991px) {
    .privacy-policy-form-request {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .privacy-policy-form-request {
        max-width: 100%;
        margin: 0 auto;
    }
}

.privacy-policy-form a {
    font-size: 13px;
    text-decoration: underline;
}

/*
|------------------------------------------------------------------------------
| Footer
|------------------------------------------------------------------------------
*/

.privacy-policy-footer {
    background: #f9f8fb;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
}

.privacy-policy-footer a {
    font-size: 13px;
    text-decoration: underline;
}

/*
|------------------------------------------------------------------------------
| Modal
|------------------------------------------------------------------------------
*/

.privacy-policy-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 425px;
    visibility: hidden;
}

@media (max-width: 475px) {
    .privacy-policy-modal {
        width: calc(100% - 40px);
    }
}

.privacy-policy-modal.visible {
    visibility: visible;
}

.privacy-policy-modal-header {
    font-size: 16px;
    margin-bottom: 20px;
}

.privacy-policy-modal-body {
    font-size: 13px;
}

.privacy-policy-btn {
    background: #333333;
    color: #ffffff;
    border-radius: 100px;
    padding: 10px 20px;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
    transition: .3s background-color;
}

.privacy-policy-btn:hover {
    background: #000000;
}
