.rcc-custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcc-custom-modal {
    background: #fff;
    padding: 30px 40px 40px;
    border-radius: 0;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    text-transform: initial;
}

.rcc-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.rcc-close svg {
    fill: #000;
}

.rcc-custom-items-buttons {
    /* text-align: right; */
    display: flex;
    justify-content: space-between;
}

.rcc-custom-items-buttons .rcc-buttons-primary-wrap button {
    margin-right: 10px;
}

.rcc-custom-items-buttons button {
    padding: 6px 12px;
    cursor: pointer;
}

button.rcc-your-item-number {
    padding: 0;
    background-color: transparent;
    border-width: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    color: #17357e;
    margin-top: 12px;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 12px;
}

button.rcc-your-item-number:hover,
button.rcc-your-item-number:active,
button.rcc-your-item-number:focus,
button.rcc-your-item-number:visited {
    background-color: transparent;
    color: #17357e;
    text-decoration: underline;
    border-width: 0;
}

.rcc-customer-sku {
    font-family: inherit;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    padding-left: 18px;
}

.rcc-product-cart-sku-item span {
    font-weight: 500;
}

.rcc-custom-modal h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #17357e;
    margin-bottom: 20px;
}

.rcc-custom-modal-product-name {
    color: #17357e;
    font-weight: 600;
}

.rcc-custom-modal-product-details {
    margin-bottom: 10px;
}

.rcc-custom-modal-product-sku {
    margin-bottom: 3px;
}

.rcc-custom-modal-item-label {
    font-size: 13px;
    /* color: rgb(84, 83, 83); */
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
}

.rcc-custom-modal label input {
    /* background-color: #e3e3e3; */
    border: 1px solid #17357e;
    /* border-bottom: 2px solid #949191; */
    font-weight: 400;
    font-size: 14px;
}

.rcc-custom-modal label {
    width: 100%;
}

.rcc-custom-modal-notice {
    font-size: 12px;
    background-color: #e6e9f3;
    padding:
        10px 10px;
    line-height: 1.2;
    border-left:
        8px solid #17357e;
    margin-top: 10px;
}

.rcc-custom-items-buttons .rcc-cancel,
.rcc-custom-items-buttons .rcc-delete {
    background-color: #17357e;
    color: #fff;
}

.rcc-custom-items-buttons button {
    font-weight: 600;
    border-width: 0 !important;
    padding: 10px 18px;
    border-radius: 4px;
    transition: 350ms ease-in-out;
    min-width: 100px;
}

.rcc-custom-items-buttons button:hover {
    background-color: #191919;
}

.rcc-custom-items-buttons .rcc-save {
    background-color: #f7b100;
    color: #fff;
}

.rcc-custom-items-buttons .rcc-delete {
    display: flex;
    align-items: center;
}

.rcc-custom-items-buttons .rcc-delete svg {
    margin-right: 5px;
}

@media only screen and (max-width: 500px) {
    .rcc-custom-modal {
        padding: 30px 20px;
        max-width: 90%;
    }

    .rcc-close {
        right: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .rcc-custom-items-buttons {
        flex-direction: column-reverse;
        align-items: center;
    }

    .rcc-buttons-primary-wrap {
        margin-bottom: 15px;
        margin-top: 30px;
    }
}