:root {
    --sosedi-launch-ad-layout: 5;
}
#app .popup.launch-ad-popup {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    outline: none;
    background: #fff;
    color: #1c1c1e;
}
.launch-ad-content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: var(--f7-safe-area-top, 0px) var(--f7-safe-area-right, 0px) var(--f7-safe-area-bottom, 0px) var(--f7-safe-area-left, 0px);
}
.launch-ad-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    object-fit: contain;
    object-position: center;
}
.launch-ad-swiper {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
}
.launch-ad-swiper > .swiper-wrapper > .swiper-slide {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}
.launch-ad-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 16px;
}
.launch-ad-header .launch-ad-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 4px solid transparent;
    border-radius: 50%;
    background: #eeeeef;
    background-clip: padding-box;
    color: #636366;
}
.launch-ad-close .f7-icons { font-size: 18px; }
.launch-ad-progresses {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 5px;
}
.launch-ad-popup .launch-ad-progress {
    --f7-progressbar-progress-color: #007aff;
    --f7-progressbar-bg-color: #e9ecef;
    position: relative;
    flex: 1;
    min-width: 0;
    height: 3px;
    border-radius: 2px;
    transform: scaleX(-1);
}
.launch-ad-progress span { transition-timing-function: linear; }
.launch-ad-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
    background: #fff;
}
.launch-ad-actions .button {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 44px;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0;
    text-transform: none;
}
.launch-ad-actions .launch-ad-go { background: #007aff; color: #fff; }
.launch-ad-popup .button:focus-visible { outline: 2px solid #1c1c1e; outline-offset: 3px; }
