.dialog-wrap-style{
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255,255,255,0.6);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    top: 0;
    left: 0;
}
.dialog-wrap-style-1{
    display: none;
}
.dialog-content-wrap{
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.dialog-content-wrap-1{
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dialog-content-image-wrap{
    width: 180px;
    height: 180px;
    position: relative;
}
.dialog-content-image-wrap-1{
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 6px;
}
.dialog-content-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.dialog-content-image-wrap-1 img{
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}
.dialog-content-product-title-1{
    font-size: 14px;
    font-weight: 500;
}
.dialog-content-product-price-1{
    font-size: 14px;
    font-weight: 500;
    color: #A63FC7;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dialog-content-product-price-1 .price-gave{
    color: #9d9d9d;
    text-decoration: line-through;
}
.dialog-content-product-1{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dialog-content-bottom-wrap , .dialog-content-bottom-wrap-1{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}
.dialog-content-bottom-wrap a {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 6px;
    background-color: var(--gift-dialog-btn1-bg-color);
    color: var(--gift-dialog-btn1-text-color);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}
.dialog-content-bottom-wrap button {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 6px;
    background-color: var(--gift-dialog-btn2-bg-color);
    color: var(--gift-dialog-btn2-text-color);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.dialog-content-bottom-wrap-1 button {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 6px;
    background-color: #d3b7ff;
    color: #000;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.dialog-content-image-title{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.dialog-content-image-title-1{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding:  6px 12px;
    background-color: #F4F4F4;
    border-radius: 8px;
}

.dialog-content-product{
    position: absolute;
    top: -5px;
    right: -5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--gift-dialog-img-tag-bg-color);
    color: var(--gift-dialog-img-tag-text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-align: center;
    justify-content: center;
}
.dialog-content-product .price-gave{
    font-size: 12px;
    font-weight: 300;
    text-decoration: line-through;
    color: var(--gift-dialog-img-tag-original-price-color);
}

.dialog-promotion-item-feature-list{
    display: flex;
    background-color: var(--gift-dialog-feature-bg-color);
    border-radius: 12px;
    padding: 20px;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
    justify-content: space-around;
    color: var(--gift-dialog-feature-text-color);
}

.dialog-promotion-item-feature-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 80px;
    text-align: center;
}

.dialog-promotion-item-feature-item-icon {
    width: 32px;
    height: 32px;
}

.dialog-promotion-item-feature-item-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .product-give-dialog-wrap {
        margin-left: calc(var(--page-padding) * -1);
        margin-right: calc(var(--page-padding) * -1);
    }

    .dialog-wrap-style {
        background-color: rgba(0, 0, 0, 0.78);
    }

    .dialog-content-wrap--top {
        padding: 8px 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: rgba(46, 37, 212, 0.1);
        cursor: pointer !important;
        gap: 10px !important;

        img {
            width: 27px !important;
            height: 27px !important;
            border-radius: 50%;
            overflow: hidden;
        }

        .dialog-content-wrap--top-title {
            font-weight: 400;
        }
    }
}