/************************************** Multi wishlist Popup design start **************************************/
.ekwc-wishlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffd9;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.ekwc-wishlist-modal.open {
    display: flex;
}

.ekwc-wishlist-modal .ekwc-wishlist-modal-content {
    background: #fff;
    box-shadow: rgba(24, 53, 62, .1) 0px 11px 15px -7px, rgba(24, 53, 62, .07) 0px 24px 38px 3px, rgba(24, 53, 62, .06) 0px 9px 46px 8px;
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    position: relative;
}

.ekwc-wishlist-modal .ekwc-wishlist-close {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.ekwc-wishlist-modal .ekwc-wishlist-icon {
    width: 60px;
    margin: 10px auto;
}

.ekwc-wishlist-modal .ekwc-wishlist-add {
    background: #000000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.ekwc-wishlist-modal .ekwc-wishlist-add:hover {
    background: #000000c4;
}

.ekwc-wishlist-modal .ekwc-wishlist-open {
    padding: 10px 15px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.ekwc-wishlist-table input.ekwc_quantity {
    background-color: transparent;
    border: 1px solid black;
    padding: 2px 0 0 10px;
    width: 50px;
}

.ekwc-wishlist-modal-content .ekwc-wishlist-name {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.ekwc-wishlist-modal-content .ekwc-wishlist-privacy label {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    cursor: pointer;
}

.ekwc-wishlist-modal-content .ekwc-wishlist-privacy input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #000000;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}

.ekwc-wishlist-modal-content .ekwc-wishlist-privacy input[type="radio"]:checked {
    background-color: #000000;
}

.ekwc-wishlist-modal-content .ekwc-wishlist-privacy input[type="radio"]:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wishlist-select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #000000;
    border-radius: 8px;
    background-color: white;
    color: #333;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}

.wishlist-select:hover,
.wishlist-select:focus {
    border-color: #007c63;
    outline: none;
}


.ekwc-wishlist-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.ekwc-tab {
    padding: 10px 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    border-bottom: 2px solid transparent;
}

.ekwc-tab.active {
    color: #000000;
    border-bottom: 2px solid #000000;
}

.ekwc-tab-content {
    display: none;
}

.ekwc-tab-content.active {
    display: block;
}

.ekwc-wishlist-privacy label {
    display: block;
    margin: 5px 0;
}

.ekwc-wishlist-create {
    background: #000000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.ekwc-wishlist-create:hover {
    background: #000000c4;
    color: white;
}

button.ekwc-tab:focus, button.ekwc-tab:hover {
    background-color: transparent;
    outline: 0px !important;
}

input.ekwc-wishlist-name:focus {
    background-color: white;
}

.ekwc-wishlist-message {
    font-weight: 600;
}
/************************************** Multi wishlist Popup design end **************************************/