.ekr-cart-customize-brief {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.ekr-cart-customize-brief__vehicle {
    margin-bottom: 10px;
    color: #222;
}

.ekr-cart-customize-brief__vehicle strong {
    font-weight: 700;
    margin-right: 6px;
}

.ekr-cart-customize-brief__actions {
    margin-top: 6px;
}

.ekr-cart-customize-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    height: 40px;
    border: 1px solid #151719;
    background: #151719;
    color: #fff;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    border-radius: 3px;
    cursor: pointer;
    transition: all .2s ease;
}

.ekr-cart-customize-preview-btn:hover {
    background: #d7b36a;
    border-color: #d7b36a;
    color: #111;
}

.ekr-cart-preview-frame-content {
    display: none;
    position: relative;
}

.ekr-cart-preview-frame-dialog .modal-inner-wrap {
    width: 1120px;
    max-width: calc(100vw - 40px);
}

.ekr-cart-preview-frame-dialog .modal-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}

.ekr-cart-preview-frame-dialog .modal-content {
    padding: 0;
    overflow: hidden;
}

.ekr-cart-preview-frame-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #ffffff;
}

.ekr-cart-preview-frame-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.12);
    border-top-color: #d7b36a;
    animation: ekrCartPreviewSpin 0.9s linear infinite;
}

.ekr-cart-preview-frame-loading-text {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ekr-cart-preview-frame-iframe {
    display: block;
    width: 100%;
    height: min(78vh, 860px);
    border: 0;
    background: #fff;
}

@keyframes ekrCartPreviewSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .ekr-cart-preview-frame-dialog .modal-inner-wrap {
        width: calc(100vw - 20px);
    }

    .ekr-cart-preview-frame-iframe {
        height: 75vh;
    }
}
