@charset "UTF-8";

/* ns-scrollbar 레이아웃 안정화 */
.ns-scrollbar {
    /* GPU 레이어 분리 */
    transform: translateZ(0);
    backface-visibility: hidden;
    /* 레이아웃 재계산 최소화 */
    contain: layout style paint;
    /* iOS 모바일 스크롤 최적화 */
    -webkit-overflow-scrolling: touch;
}

.ns-scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px 2px transparent;
    border: solid 0px transparent;
    display: none;
}
.ns-scrollbar::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: transparent;
    display: none;
}
.ns-scrollbar::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2);
    border: solid 0px transparent;
    border-radius: 2px;
    display: none;
}
.ns-scrollbar::-webkit-scrollbar-button {
    display: none;
}

.ns-scrollba-none::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px 0px transparent;
    border: solid 0px transparent;
    display: none;
}
.ns-scrollbar-none::-webkit-scrollbar {
    width: 0px;
    background-color: transparent;
    display: none;
}
.ns-scrollbar-none::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0px 0px rgba(0, 0, 0, 0.2);
    border: solid 0px transparent;
    border-radius: 0px;
    display: none;
}
.ns-scrollbar-none::-webkit-scrollbar-button {
    display: none;
}


.ns-slider {
    position: relative;
}
.slider-container {
    position: relative;
}
.slider-container .slider-list {
    position: absolute;
    overflow: hidden;
}
.slider-container .slider-list.horizontal {
}
.slider-container .slider-list.vertical {
}
.slider-container .slider-list .slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
}
.slider-container .slider-index {
    position: absolute;
    bottom: 16px;
    right: 28px;
    width: 40px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}
.slider-container .slider-index span {
    opacity: 0.8;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.slider-container .slider-index span:nth-child(0) {
    opacity: 1;
    font-weight: 500;
}
.slider-container .slider-index.dark span {
    color: #ffffff;
}
.slider-container .slider-index.light span {
    color: #000000;
}



.profile-box {
    /*overflow: hidden;*/
    opacity: 1;
    position: relative;
}
.profile-box .profile-image {
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 50%; left: 50%;
    z-index: 1;
    transition: opacity 0.4s;
    overflow: hidden;
    opacity: 0;
    background-color: #FBFAFF;
    transform: translateX(-50%) translateY(-50%);
}
.profile-box .image-border {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.profile-box.size-24 {
    width: 24px !important;
    height: 24px !important;
}
.profile-box.size-24 > .profile-image {
    clip-path: path("M0,12C0,3,3,0,12,0S24,3,24,12,21,24,12,24,0,21,0,12");
    width: 24px !important;
    height: 24px !important;
}
.profile-box.size-24 .image-border {
    content: url("/assets/images/ic_gndr_image_border_24.svg");
    width: 24px !important;
    height: 24px !important;
}
.profile-box.size-32 {
    width: 32px !important;
    height: 32px !important;
}
.profile-box.size-32 > .profile-image {
    clip-path: path("M0,16C0,4,4,0,16,0S32,4,32,16,28,32,16,32,0,28,0,16");
    width: 32px !important;
    height: 32px !important;
}
.profile-box.size-32 .image-border {
    content: url("/assets/images/ic_gndr_image_border_32.svg");
    width: 32px !important;
    height: 32px !important;
}
.profile-box.size-36 {
    width: 36px !important;
    height: 36px !important;
}
.profile-box.size-36 > .profile-image {
    clip-path: path("M0,18C0,4.5,4.5,0,18,0S36,4.5,36,18,31.5,36,18,36,0,31.5,0,18");
    width: 36px !important;
    height: 36px !important;
}
.profile-box.size-36 .image-border {
    content: url("/assets/images/ic_gndr_image_border_36.svg");
    width: 36px !important;
    height: 36px !important;
}
.profile-box.size-40 {
    width: 40px !important;
    height: 40px !important;
}
.profile-box.size-40 > .profile-image {
    clip-path: path("M0,20C0,5,5,0,20,0S40,5,40,20,35,40,20,40,0,35,0,20");
    width: 40px !important;
    height: 40px !important;
}
.profile-box.size-40 .image-border {
    content: url("/assets/images/ic_gndr_image_border_40.svg");
    width: 40px !important;
    height: 40px !important;
}
.profile-box.size-40.shadow .image-border {
    content: url("/assets/images/ic_gndr_image_border_w_40.svg");
    width: 40px !important;
    height: 40px !important;
    display: block !important;
}
.profile-box.size-44 {
    width: 44px !important;
    height: 44px !important;
}
.profile-box.size-44 > .profile-image {
    clip-path: path("M0,22C0,5.5,5.5,0,22,0S44,5.5,44,22,38.5,44,22,44,0,38.5,0,22");
    width: 44px !important;
    height: 44px !important;
}
.profile-box.size-44 .image-border {
    content: url("/assets/images/ic_gndr_image_border_44.svg");
    width: 44px !important;
    height: 44px !important;
}
.profile-box.size-48 {
    width: 48px !important;
    height: 48px !important;
}
.profile-box.size-48 > .profile-image {
    clip-path: path("M0,24C0,6,6,0,24,0S48,6,48,24,42,48,24,48,0,42,0,24");
    width: 48px !important;
    height: 48px !important;
}
.profile-box.size-48 .image-border {
    content: url("/assets/images/ic_gndr_image_border_48.svg");
    width: 48px !important;
    height: 48px !important;
}
.profile-box.size-68 {
    width: 68px !important;
    height: 68px !important;
}
.profile-box.size-68 > .profile-image {
    clip-path: path("M0,34C0,8.5,8.5,0,34,0S68,8.5,68,34,59.5,68,34,68,0,59.5,0,34");
    width: 68px !important;
    height: 68px !important;
}
.profile-box.size-68 .image-border {
    content: url("/assets/images/ic_gndr_image_border_68.svg");
    width: 68px !important;
    height: 68px !important;
}

.profile-box.size-80 {
    width: 80px !important;
    height: 80px !important;
}
.profile-box.size-80 > .profile-image {
    clip-path: path("M0,40C0,10,10,0,40,0S80,10,80,40,70,80,40,80,0,70,0,40");
    width: 80px !important;
    height: 80px !important;
}
.profile-box.size-80 .image-border {
    content: url("/assets/images/ic_gndr_image_border_80_w.svg");
    width: 80px !important;
    height: 80px !important;
}

.profile-box.size-92 {
    width: 92px !important;
    height: 92px !important;
}
.profile-box.size-92 > .profile-image {
    clip-path: path("M0,46C0,11.5,11.5,0,46,0S92,11.5,92,46,80.5,92,46,92,0,80.5,0,46");
    width: 92px !important;
    height: 92px !important;
}
.profile-box.size-92 .image-border {
    content: url("/assets/images/ic_gndr_image_border_92.svg");
    width: 92px !important;
    height: 92px !important;
}

.profile-box.size-104 {
    width: 106px !important;
    height: 106px !important;
    box-sizing: border-box;
    padding: 1px;
}
.profile-box.size-104 > .profile-image {
    /*clip-path: path("M0,52C0,13,13,0,52,0s52,13,52,52-13,52-52,52S0,91,0,52");*/
    clip-path: path("M0 52C0 13 13 0 52 0C91 0 104 13 104 52C104 91 91 104 52 104C13 104 0 91 0 52Z");
    width: 104px !important;
    height: 104px !important;
}
.profile-box.size-104 .image-border {
    content: url("/assets/images/ic_gndr_image_border_104_w.svg");
    width: 106px !important;
    height: 106px !important;
}
.profile-box.size-104.shadow.selected .image-border {
    content: url("/assets/images/ic_gndr_image_border_104_s.svg");
}

.profile-box.size-112 {
    width: 112px !important;
    height: 112px !important;
}
.profile-box.size-112 > .profile-image {
    clip-path: path("M0,56C0,14,14,0,56,0s56,14,56,56-14,56-56,56S0,98,0,56");
    width: 112px !important;
    height: 112px !important;
}
.profile-box.size-112 .image-border {
    content: url("/assets/images/ic_gndr_image_border_112.svg");
    width: 112px !important;
    height: 112px !important;
}
.profile-box > .profile-image.render {
    opacity: 1;
    transition: opacity 0.4s;
}
.profile-box > .profile-image > img {
    position: absolute;
    /*top: 50%; left: 50%; right: 0; bottom: 0;*/
    /*transform: translateX(-50%) translateY(-50%);*/
    top: 0; left: 50%; right: 0; bottom: 0;
    transform: translateX(-50%);
    z-index: 1;
}
.profile-box.shadow {
    margin-bottom: 12px;
    filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.2));
    will-change: filter;
    /*transform: translateZ(0);*/
}
.profile-box.shadow .profile-image {
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.2);
}
.profile-box.shadow .image-border {
    display: none;
}

.list-item-0 {
    background: #EDD6FF;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.list-item-0 .ns-icon.pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-block;
    content: url("/assets/images/img_gndr_pattern_0.svg");
    width: 188px;
    height: 100px;
}
.list-item-0 .bottom-pattern {
    position: absolute;
    background: linear-gradient(180deg, #E2BCFF 0%, #F0E1FC 100%);
    width: 100%;
    height: 28px;
    z-index: 2;
    bottom: 0;
    left: 0; right: 0;
}
.list-item-1 {
    background: #DFE6FC;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.list-item-1 .ns-icon.pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-block;
    content: url("/assets/images/img_gndr_pattern_1.svg");
    width: 188px;
    height: 100px;
}
.list-item-1 .bottom-pattern {
    position: absolute;
    background: linear-gradient(180deg, #BCCDFF 0%, #EBEFFB 100%);
    width: 100%;
    height: 28px;
    z-index: 2;
    bottom: 0;
    left: 0; right: 0;
}
.list-item-2 {
    background: #DEEBFA;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.list-item-2 .ns-icon.pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-block;
    content: url("/assets/images/img_gndr_pattern_2.svg");
    width: 188px;
    height: 100px;
}
.list-item-2 .bottom-pattern {
    position: absolute;
    background: linear-gradient(180deg, #d1e3f8 0%, #DEEBFA 100%);
    width: 100%;
    height: 28px;
    z-index: 2;
    bottom: 0;
    left: 0; right: 0;
}
.list-item-3 {
    background: linear-gradient(97.18deg, #FCE2F7 0%, #FCCAF2 100%);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.list-item-3 .ns-icon.pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-block;
    content: url("/assets/images/img_gndr_pattern_3.svg");
    width: 188px;
    height: 100px;
}
.list-item-3 .bottom-pattern {
    position: absolute;
    background: linear-gradient(180deg, #FFBAF1 0%, #FCE2F7 100%);
    width: 100%;
    height: 28px;
    z-index: 2;
    bottom: 0;
    left: 0; right: 0;
}


.ns-switch {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1) inset;
    background-color: #E5E5E6;
    position: relative;
}
.ns-switch.active {
    background-color: #AA8F7A;
}
.ns-switch .switch-thumb {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 16px - 4px);
    transition: left 0.4s;
}
.ns-switch.active .switch-thumb {
    left: 4px;
    transition: left 0.4s;
}
.ns-switch .switch-label {
    width: calc(100% - 24px - 6px);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    color: #999999;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    transition: left 0.4s;
}
.ns-switch.active .switch-label {
    color: #ffffff;
    left: 24px;
    transition: left 0.4s;
}


.image-box {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s;
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.2);
}
.image-box.render {
    opacity: 1;
    transition: opacity 0.4s;
}
.image-box > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%; right: 0; bottom: 0; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}


.ns-icon-input {
    box-shadow: 2px 2px 3px 0px rgba(206, 140, 255, 0.25) inset;
    background-color: #ffffff;
    border: 1px solid #E5E5E6;
    box-sizing: border-box;
    position: relative;
    outline: none;
}
.ns-icon-input .ns-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    z-index: 2;
    display: inline-block;
}
.ns-icon-input input.field-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #28274f;
}
.ns-icon-input input.field-input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #999999;
}
.ns-icon-input[icon-position='left'] .ns-icon {
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}
.ns-icon-input[icon-position='left'] input.field-input {
    padding: 10px 10px 10px 48px;
}
.ns-icon-input[icon-position='right'] .ns-icon {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
.ns-icon-input[icon-position='right'] input.field-input {
    padding: 10px 48px 10px 10px;
}


ns-vslider .slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.ns-vslider .slider-track {
    width: 100%;
    height: 100%;
    background-color: #EDECF1;
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    z-index: 1;
    border-radius: 6px;
}
.ns-vslider .slider-progress {
    width: 100%;
    height: 12px;
    min-height: 12px;
    background-color: #AA8F7A;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    border-radius: 6px;
}
.ns-vslider .slider-thumb {
    width: 32px;
    height: 32px;
    content: url("/assets/images/ic_gndr_slider_thumb.svg");
    display: inline-block;
    position: absolute;
    left: calc(50% - 32px / 2);
    bottom: calc(0px - 32px / 2 + 12px / 2);
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    z-index: 3;
}
.ns-vslider .slider-tip {
    width: 60px;
    height: 32px;
    border-radius: 16px;
    background-color: #EDECF1;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #28274f;
    position: absolute;
    z-index: 3;
    bottom: calc(0px - 32px / 2 + 12px / 2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ns-vslider .slider-tip.left {
    left: calc(50% - 60px - 32px / 2 - 12px);
}
.ns-vslider .slider-tip.right {
    left: calc(50% + 32px / 2 + 12px);
}
.ns-vslider .slider-tip.none {
    display: none !important;
}


.ns-panel-select {
    height: 36px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    position: relative;
}
.ns-panel-select .ns-icon.drop-down {
    width: 24px;
    height: 24px;
    content: url("/assets/images/ic_gndr_drop_down.svg");
    display: inline-block;
    position: absolute;
    right: 8px;
    top: calc(50% - 12px);
    transform: rotate(0deg);
    transition: transform 0.4s;
    will-change: transform;
    z-index: 2;
}
.ns-panel-select.active .ns-icon.drop-down {
    transform: rotate(180deg);
    transition: transform 0.4s;
    will-change: transform;
}
.ns-panel-select .prompt {
    width: calc(100% - 40px);
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow-ellipsis: end;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff;
    border-radius: 8px 0px 0px 8px;
    position: absolute;
    top: 0; left: 0; bottom: 0;
    z-index: 1;
}
.ns-panel-select.active .prompt {
    background-color: #FBFAFF;
}


.btn-text {
    width: 80px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #475467;
}
.btn-text.active {
    color: #ad0997;
}


.ns-select {
    height: 36px !important;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid #ebe4e2;
    background-color: #ffffff;
    position: relative;
    border-radius: 8px;
}
.ns-select:hover,
.ns-select:focus,
.ns-select:active,
.ns-select:focus:active,
.ns-select.active,
.ns-select.active:hover,
.ns-select.active:focus,
.ns-select.active:active,
.ns-select.active:focus:active {
    border: 1px solid #cec3bf;
}
.ns-select .selected {
    width: 100%;
    height: 36px;
    position: relative;
}
.ns-select .selected .prompt {
    width: 100%;
    height: 100%;
    color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9;
    line-height: 30px;
    box-sizing: border-box;
    padding: 0px 40px 0px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.ns-select.selected .selected .prompt,
.ns-select.active .selected .prompt {
    color: #101828;
}
.ns-select .selected .ns-icon.dropdown {
    width: 20px;
    height: 20px;
    display: inline-block;
    content: url("/assets/images/admin/ic_gndr_drop_down.svg");
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.ns-select.selected.active .selected .ns-icon.dropdown,
.ns-select.active .selected .ns-icon.dropdown {
    content: url("/assets/images/admin/ic_gndr_drop_down.svg");
    transform: translateY(-50%) rotate(180deg);
}
.ns-select.selected .selected .ns-icon.dropdown {
    content: url("/assets/images/admin/ic_gndr_drop_down.svg");
}
.ns-select.active .selected .ns-icon.dropdown.rotate180 {
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.4s;
}
.ns-select .select-list-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    height: 0px;
    top: 37px;
    z-index: 11;
    left: -1px;
    right: 0;
    bottom: 0;
    border-radius: 8px;
}
.ns-select[open-position="up"] .select-list-wrapper {
    bottom: calc(100% + 2px) !important;
    top: unset !important;
}
.ns-select.active .select-list-wrapper {
    display: block;
    border-radius: 8px;
    height: fit-content;
    transition: height 0.4s;
    margin-bottom: 2px;
    margin-top: 1px;
    background-color: #ffffff;
    border: 1px solid #cec3bf;
    max-height: 640px;
    overflow-y: auto;
    overflow-x: hidden;
}
.ns-select.active .select-list {
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.ns-select .select-list .option-item {
    width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.ns-select .select-list .option-item.current,
.ns-select .select-list .option-item:hover {
    background-color: #f9fafb;
}


.ns-admin-scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px 6px transparent;
    border: solid 2px transparent;
}
.ns-admin-scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}
.ns-admin-scrollbar::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px 6px rgba(0, 0, 0, 0.2);
    border: solid 2px transparent;
    border-radius: 6px;
}
.ns-admin-scrollbar::-webkit-scrollbar-button {
    display: none;
}

.ns-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.ns-checkbox .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    /*border: 1px solid #eaeaea;*/
    /*background-color: #f9f9f9;*/
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ns-checkbox .check-icon .check {
    display: inline-block;
    content: url("/assets/images/admin/ic_gndr_check.svg");
    width: 20px;
    height: 20px;
}
.ns-checkbox em {
    font-size: 14px;
    font-weight: 700;
    color: #999999;
    display: inline-block;
    margin-left: 6px;
}
.ns-checkbox.active .check-icon {
    /*border: 1px solid #477ad5;*/
    /*background-color: #ffffff;*/
}
.ns-checkbox.active .check-icon .check {
    content: url("/assets/images/admin/ic_gndr_check_on.svg");
}
.ns-checkbox.active em {
    color: #101828;
}



.ns-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.ns-toggle .switch-toggle {
    width: 48px;
    height: 26px;
    display: inline-block;
}
.ns-toggle > span.switch-label {
    display: inline-block;
    position: absolute;
    right: calc(100% + 8px);
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}
.ns-toggle .switch-toggle .switch-control {
    position: relative;
    width: 100%;
    height: 100%;
}
.ns-toggle .switch-toggle .switch-control .switch-track {
    border-radius: 13px;
    width: 100%;
    height: 100%;
    background-color: #acacac;
    transition: background-color 0.4s;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
}
.ns-toggle.active .switch-toggle .switch-track {
    background-color: #0D3DFF;
    transition: background-color 0.4s;
}
.ns-toggle .switch-toggle .switch-control .switch-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    transition: left 0.4s;
    background-color: #ffffff;
    z-index: 11;
}
.ns-toggle.active .switch-toggle .switch-control .switch-thumb {
    left: calc(100% - 22px - 2px);
    transition: left 0.4s;
}


/* Pull-to-refresh 스타일 - 제거됨 */
/*
.swipe-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swipe-box.visible {
    visibility: visible;
    transform: translateY(0);
}

.swipe-box div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swipe-box i {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #0078D7;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.swipe-box.refreshing i {
    animation: spin 1s linear infinite;
}
*/
