.privacy-policy-list-main-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    overflow-x: auto;

}

.privacy-policy-list-content-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding: 30px 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.privacy-policy-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #333333;
    border-radius: 4px;
    padding: 10px 30px;
    margin: 0 5px;
    box-sizing: border-box;
    text-align: justify;
}

.privacy-policy-footer {
    position: sticky;
    bottom: 30px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    padding: 0 30px;
}

.privacy-policy-footer-button {
    height: 50px;
    width: 50px;
    border: 0px solid;
    color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    padding: 8px;
    background-color: #0008;
}
.privacy-policy-footer-button:hover {
    background-color: #6666;
}

.privacy-policy-footer-button > * {
    height: 100%;
    width: 100%;
}

.privacy-policy-footer_arrow_up {
    transform: rotate(90deg);
    visibility: hidden;
}

hr {
    width: 100%;
}



@media (min-width: 601px) {
    /* make up-button available */
    .privacy-policy-footer_arrow_up-width-manager-class {
        display: unset;
    }
}

@media (max-width: 600px) {
    /* make up-button unavailable */
    .privacy-policy-footer_arrow_up-width-manager-class {
        display: none;
    }
}