/** POPUP */
.dft-policies-popup {
    max-width: 1206px;
    padding: 0 16px;
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateY(100%) translateX(-50%);
}

.dft-policies-popup .dft-policies-popup-wrapper {
    padding: 24px;
    box-shadow: 0px 4px 8px rgba(0,0,0,.15);
}

.dft-policies-popup .dft-policies-popup-text {
    font-size: 16px;
    line-height: 1.5;
}

.dft-policies-popup .dft-policies-popup-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 16px;
}

.dft-policies-popup .dft-policies-popup-buttons button,
.dft-policies-popup .dft-policies-popup-buttons a {
    appearance: none;
    height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    font-family: inherit;
    cursor: pointer;
    border-radius: 25px;
    color: #fff;
}

.dft-policies-popup .dft-policies-popup-buttons a:visited {
    color: #fff;
}

.dft-policies-popup .dft-policies-popup-buttons button {
    border: none;
    outline: none;
    box-shadow: unset;
    margin-left: 16px;
}

@media screen and (max-width: 600px) {
    .dft-policies-popup .dft-policies-popup-wrapper {
        padding: 16px;
    }
    .dft-policies-popup .dft-policies-popup-text {
        font-size: 14px;
    }
    .dft-policies-popup .dft-policies-popup-buttons {
        justify-content: center;
        flex-direction: column;
        margin-top: 8px;
    }
    .dft-policies-popup .dft-policies-popup-buttons button,
    .dft-policies-popup .dft-policies-popup-buttons a {
        margin: 8px 0;
        height: 36px;
    }
}