.wcoc-withdrawal-request-modal {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.wcoc-withdrawal-request-modal[aria-hidden='true'] {
    display: none !important;
}
.wcoc-withdrawal-request-modal__inner {
    background-color: #ffffff;
    padding: 30px;
    max-width: 800px;
    max-height: calc(100vh - 90px);
    margin: auto;
    overflow: auto;
}
@media (max-width: 800px) {
    .wcoc-withdrawal-request-modal__inner {
        max-height: calc(100vh - 60px);
    }
}
.wcoc-withdrawal-request-modal__inner::-webkit-scrollbar {
    width: 8px;
}
.wcoc-withdrawal-request-modal__inner::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.wcoc-withdrawal-request-modal__inner::-webkit-scrollbar-thumb {
    background: #4a4a4a;
}
.wcoc-withdrawal-request-modal__inner::-webkit-scrollbar-thumb:hover {
    background: #555555;
}
.wcoc-withdrawal-request-modal__close {
    display: inline-block;
    font-size: 16px;
    padding: 10px;
    border: solid 1px #515151;
    color: #000000 !important;
    text-decoration: none;
    margin-bottom: 20px;
}

.wcoc-withdrawal-request {
    opacity: 1;
    transition: 0.4s;
}
.wcoc-withdrawal-request--is-submitting {
    opacity: 0.6;
}
.wcoc-withdrawal-request > p {
    font-size: 16px;
}
@media (min-width: 800px) {
    .wcoc-withdrawal-request__fields {
        display: flex;
        flex-wrap: wrap;
        margin: 20px -10px 0 -10px;
    }
}
@media (max-width: 800px) {
    .wcoc-withdrawal-request__fields {
        margin-top: 20px;
    }
}
.wcoc-withdrawal-request__field {
    width: 100%;
    margin-bottom: 20px;
}
@media (min-width: 800px) {
    .wcoc-withdrawal-request__field {
        margin: 10px;
    }
    .wcoc-withdrawal-request__field--is-order,
    .wcoc-withdrawal-request__field--is-postal-code {
        width: calc(30% - 20px);
    }
    .wcoc-withdrawal-request__field--is-products,
    .wcoc-withdrawal-request__field--is-address {
        width: calc(70% - 20px);
    }
    .wcoc-withdrawal-request__field--is-first-name,
    .wcoc-withdrawal-request__field--is-last-name,
    .wcoc-withdrawal-request__field--is-country,
    .wcoc-withdrawal-request__field--is-city,
    .wcoc-withdrawal-request__field--is-email,
    .wcoc-withdrawal-request__field--is-phone {
        width: calc(50% - 20px);
    }
}
.wcoc-withdrawal-request__field label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}
.wcoc-withdrawal-request__field input,
.wcoc-withdrawal-request__field textarea {
    width: 100%;
}
.wcoc-withdrawal-request__data-policy {
    margin: 20px 10px;
}
.wcoc-withdrawal-request__data-policy label {
    font-size: 14px;
    margin: 4px;
}
.wcoc-withdrawal-request__field p {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 10px;
}
.wcoc-withdrawal-request button[type="submit"] {
    font-size: 16px;
    padding: 12px 16px;
    background: #000000 !important;
    color: #ffffff !important;
    text-decoration: none;
    margin-top: 10px;
}
.wcoc-withdrawal-request--is-submitting button[type="submit"] {
    pointer-events: none;
    cursor: wait;
}
.wcoc-withdrawal-request--is-success button[type="submit"] {
    display: none;
}
.wcoc-withdrawal-request--is-error .wcoc-withdrawal-request__result,
.wcoc-withdrawal-request--is-success .wcoc-withdrawal-request__result {
    font-size: 16px;
    line-height: 1.4;
    padding: 10px;
    background: rgba(0, 0, 0, 0.08);
    margin-top: 10px;
}