@charset "utf-8";
/* TOURMUCH // Maker : H.J Jeon // E-Mail : dcafein@tourmuch.com // Site : tourmuch.com */


/* Toggle Layer */
.toggle-layer {
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}

.toggle-layer.open {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 1023px) {
}



/* Bottom Sheet */
.lowup-bottom-sheet {
    visibility: hidden;
    opacity: 0;

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
}

.lowup-bottom-sheet.open {
    visibility: visible;
    opacity: 1;
}

.lowup-bottom-sheet .sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--color-box-basic-rgb),0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: .3s ease;
    z-index: 2800;
}

.lowup-bottom-sheet.open .sheet-overlay {
    opacity: 1;
}

.lowup-bottom-sheet .sheet-content {
    position: relative;
    height: 90dvh;
    background-color: var(--color-box-basic);
    transition: .3s ease;
    z-index: 3000;
    transform: translateY(50%);
}

.lowup-bottom-sheet.open .sheet-content {
    transform: translateY(0);
}

.lowup-bottom-sheet .sheet-content .sheet-handle {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    background-color: var(--color-box-basic);
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 -10px 10px -5px rgba(var(--color-black-rgb),0.1);
    z-index: 2900;
}

.lowup-bottom-sheet .sheet-content .sheet-handle span {
    width: 34px;
    height: 4px;
    background-color: rgba(var(--color-basic-rgb),0.16);
    border-radius: 4px;
}

.lowup-bottom-sheet .sheet-body {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lowup-bottom-sheet .sheet-multi-content {
    display: none;
}

.lowup-bottom-sheet .sheet-multi-content.open {
    display: flex;
}

.lowup-bottom-sheet .sheet-body h2.bs-title {
    flex-shrink: 0;
    position: relative;
    margin-inline: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.lowup-bottom-sheet .sheet-body h2.bs-title .tit {
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
}

.lowup-bottom-sheet .sheet-body h2.bs-title .back-btn,
.lowup-bottom-sheet .sheet-body h2.bs-title .close-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lowup-bottom-sheet .sheet-body h2.bs-title .back-btn svg,
.lowup-bottom-sheet .sheet-body h2.bs-title .close-btn svg {
    width: 24px;
}

.lowup-bottom-sheet .sheet-body h2.bs-title .back-btn {
    left: 0;
}

.lowup-bottom-sheet .sheet-body h2.bs-title .close-btn {
    right: 0;
}

.lowup-bottom-sheet .sheet-body h3.bs-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.lowup-bottom-sheet .sheet-body .bs-content,
.lowup-bottom-sheet .sheet-body .bs-contents {
    flex-grow: 1;
    padding-inline: 1rem;
    padding-bottom: 1rem;
}

.lowup-bottom-sheet .sheet-body .bs-contents {
    display: none;
}

.lowup-bottom-sheet .sheet-body .bs-contents.open {
    display: block;
}

@media screen and (min-width: 767px) {
    .lowup-bottom-sheet {
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lowup-bottom-sheet .sheet-content {
        overflow: hidden;
        min-width: 520px;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 5px 30px -5px rgba(var(--color-black-rgb),0.2);
        transform: translateY(0) scale(0.9);
    }

    .lowup-bottom-sheet.open .sheet-content {
        transform: translateY(0) scale(1);
    }

    .lowup-bottom-sheet .sheet-content .sheet-handle {
        display: none !important;
    }

    .lowup-bottom-sheet .sheet-body {
        padding-top: 2rem;
    }

    .lowup-bottom-sheet .sheet-body h2.bs-title {
        margin-inline: 2rem;
    }

    .lowup-bottom-sheet .sheet-body .bs-content,
    .lowup-bottom-sheet .sheet-body .bs-contents {
        padding-inline: 2rem;
        padding-bottom: 2rem;
    }

    .lowup-bottom-sheet .sheet-body .scrollbox.bs-content,
    .lowup-bottom-sheet .sheet-body .scrollbox.bs-contents {
        max-height: 70dvh;
    }
}

@media screen and (min-width: 1023px) {
}



/* Bottom Sheet // Social Link */
.social-item-list ul {
    margin-inline: -0.5rem;
}

.social-item-list ul li {
    padding-inline: 0.5rem;
    border-radius: 0.5rem;
}

.social-item-list ul li:not(:first-child) {
    margin-top: 0.5rem;
}

.social-item-list ul li .social-item-btn {
    flex-grow: 1;
    padding: 0.313rem 0.5rem;
    border-radius: 0.313rem;
    transition: .2s;
}

.social-item-list ul li .social-item-btn .ico {
    flex-shrink: 0;
    font-size: 0;
}

.social-item-list ul li .social-item-btn em {
    flex-grow: 1;
    font-weight: var(--font-weight-medium);
    text-align: left;
}

.social-item-list ul li.is-dragging {
    border: 1px solid rgba(var(--color-basic-rgb),0.08);
    background-color: rgba(var(--color-box-basic-rgb),0.6);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 10px -5px rgba(var(--color-black-rgb),0.1);
}

@media screen and (min-width: 1023px) {
    .social-item-list ul li .social-item-btn:hover {
        background-color: rgba(var(--color-basic-rgb),0.04);
    }
}




/* 모달을 찾자 */
.modal-party {
    max-width: 560px;
}

.modal-party .modal-party-list {
    display: flex;
    flex-direction: column;
    gap: 0.313rem;
}

.modal-party .modal-party-list li .basic-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 2rem 0.75rem 1rem;
    background-color: var(--color-background);
    border-radius: 0.313rem;
}

.modal-party .modal-papa {
    position: relative;
    overflow: hidden;
    width: 300px;
    margin: 40px auto 0;
    font-size: 0;
    border-radius: 20px;
}






/* ------------------------------------------------------------ */


@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
}

@media screen and (min-width: 1340px) {
}

@media screen and (min-width: 1439px) {
}

@media screen and (min-width: 1640px) {
}

@media screen and (min-width: 1840px) {
}