.accept-policy-modal {
    font-family: inherit;
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    z-index: 9000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: white;
    max-width: 600px;
    width: 90%;
    border-radius: 12px;
    overflow: auto;
    max-height: 95%;
    padding: 20px;
}

.modal-content a {
    text-decoration: underline;
    color: blue;
    font-weight: 600;
}

.modal-header {
    display: flex;
    justify-content: end;
    align-items: center;
    align-self: stretch;
    padding: 16px;
    background-color: white;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.accept-policy-checkbox-terms-container {
    padding: 16px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    width: 100%;
    grid-column: 1/3;
}

.send-accept-policy {
    max-width: 347px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    background: red;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.close-svg-color {
    filter: brightness(0) saturate(100%) !important;
    align-self: flex-end;
}
