#hotspot-slider {
    display: flex;
    overflow: hidden;
}

.hotspot-image-container {
    position: relative;
    margin-top: 20px;
    width: fit-content;
}

.hotspot-images-admin {
    display: block;
    max-width: 100%;
    height: auto;
}

.hotspot-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* .hotspot-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
} */
.hotspot-dot-admin {
    position: absolute !important;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    animation: pulse-animation-blue 2s infinite !important;
}

@keyframes pulse-animation-blue {
    0% {
        box-shadow: 0 0 0 0px rgb(244 0 0);
    }

    100% {
        box-shadow: 0 0 0 8px rgb(255 255 255 / 0%);
    }
}

/* .hotspot-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
} */
#product-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.product-modal-content {
    background: #fff;
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    text-align: center;
    position: relative;
    margin: auto;
    margin-top: 188px;
}

.select-product-btn {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}

.select-product-btn:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

.unselect-product-btn {
    background: #c70b0b;
    border-color: #d20f14;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}


.unselect-product-btn:hover {
    background: #d20f14;
    border-color: #c70b0b;
    color: #fff;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border: 1px solid #00a0d2;
    padding: 10px;
    border-left-width: 4px;
    background: #f2fcff;
}

.product-item p {
    text-align: left;
}

.product-item__action p{
    display: flex;
    flex-direction: column;
}

.product-item img {
    max-width: 50px;
    margin-right: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 15px;
    background: #fff;
    color: #000;
    font-weight: 500;
    width: 26px;
    height: 26px;
    line-height: 14px;
    text-align: center;
}

.b-bottom {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}

.b-bottom label {
    font-size: 14px;
    font-weight: 600;
}

.select-rd-box {
    display: flex;
    gap: 30px;
}

.upload-main {
    position: sticky;
    top: 32px;
    width: 100%;
    background: #fff;
    display: flex;
    z-index: 9;
    gap: 20px;
    padding: 20px 0;
}

.image-select {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    display: none;
}

.hotspot-image-container.active .image-select::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #f99c25;
}

.image-controls {
    position: absolute;
    right: -12px;
    top: -12px;
    cursor: pointer;
    display: none;
}

.image-controls button {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 22px;
    font-weight: 600;
    cursor: pointer;
}

.hotspot-action {
    position: absolute;
    top: 12px;
    display: none;
    width: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    padding: 6px;
    gap: 6px;
    display: none;
    left: -15px;
}

.hotspot-action span:hover {
    color: #f99c25;
}

.hotspot-image-container:hover .image-select,
.hotspot-image-container:hover .image-controls {
    display: block;
}

.hotspot-dot-admin:hover .hotspot-action {
    display: flex;
}

.hotspot-image-container.active .image-select {
    display: block;
}

.product-item div {
    display: flex;
    align-items: center;
    gap: 20px;
}

#product-selection-modal .modal-content {
    box-shadow: 0px 8px 16px 0px #1B242C1F;
    border: 1px solid #ebebeb;
}

#product-search {
    margin-bottom: 20px;
}

.product-list {
    max-height: 500px;
    overflow-x: hidden;
}

.style-slider .swiper-slide.active {
    z-index: 1;
}

.product-item.variable-product>div,
.product-item.variable-product .variations-wrapper {
    flex-direction: column;
}

.product-item.variable-product .variations-wrapper {
    gap: 1px
}

.product-item.variable-product {
    align-items: unset;
    justify-content: unset;
    display: block;
}

.product-item.variable-product .variation-item {
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #72aee6;
    border-left-width: 4px;
    background: #72aee636;
    min-width: 860px;
    justify-content: space-between;
}