.privacy-policy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 50%;
    height: fit-content;
    background-color: #fff;
    font-family: "Montserrat-Regular", sans-serif;
    line-height: 21px;
    color: #000;
    font-size: 10pt;
    border: 3px solid;
    border-radius: 25px;
    border-color: #E5E4E2;
    border-width: 3px;
    margin: 0 auto 0 auto;
    padding: 15px 0 15px 0;
    left: 0;
    right: 0;
    bottom: 10%;
}

.privacy-policy-modal-show {
    display: flex;
}

.privacy-policy-modal-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 5px 0 5px;
}

.privacy-policy-modal-text {
    width: 90%;
    margin: 0 5px 0 10px;
}

.privacy-policy-modal-appruve-button {
    width: fit-content;
    margin: 0 10px 0 5px;
    padding: 12px 25px 12px 25px;
    background-color: #E5E4E2;
    border-radius: 15px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

@media (width < 450px) {
    
    .privacy-policy-modal-wrapper {
        flex-wrap: wrap;
    }

    .privacy-policy-modal-text {
        width: 100%;
    }

    .privacy-policy-modal-appruve-button {
        margin: 15px auto 0 auto;
    }
}