html.dialog-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0)
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    padding: 20px
}

.dialog-overlay.active {
    opacity: 1;
    visibility: visible
}

.dialog {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px #00000040;
    width: 80%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(.9) translateY(20px);
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1)
}

.dialog-overlay.active .dialog {
    transform: scale(1) translateY(0)
}

.dialog-header {
    padding: 15px 16px 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    min-height: 58px
}

.dialog-close {
    background: none;
    color: #7d7d7d;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: unset
}

.dialog-close>svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 1px solid #DCDCDC;
    border-radius: 50%
}

.dialog-close:hover>svg {
    background: #f3f4f6
}

.dialog-content {
    padding: 12px 80px 24px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto
}

.dialog-content>iframe {
    border: 0
}

.dialog-content:has(>iframe) {
    padding: 12px 39px 24px;
    height: 70vh
}

.dialog-close.disable {
    display: none
}

@media (max-width: 480px) {
    .dialog {
        width: 100%;
        max-height: 90vh
    }
    .dialog-close {
        width: 42px;
        height: 42px
    }
    .dialog-close>svg {
        width: 24px;
        height: 24px;
        padding: 4px
    }
    .dialog-header {
        padding: 10px 7px 0;
        min-height: 42px
    }
    .dialog-content {
        padding: 6px 24px 40px;
        max-height: 60vh
    }
    .dialog-content:has(>iframe) {
        padding: 6px 12px 16px;
        height: 80vh;
        max-height: unset
    }
}

/*# sourceMappingURL=/cdn/shop/t/14/assets/component-trade-in-dialog.css.map?v=16175248172835987831757430081 */