#smb-bg {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#smb-block-work,
#smb-block-living,
#smb-block-open {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.smb-block {
    cursor: pointer;
    pointer-events: auto !important; 
    transition: opacity 0.4s ease;
}

.smb-block-shape {
    fill: var(--ps-blue);
    stroke: var(--ps-orange);
    stroke-width: 3px;
    transition: fill 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                stroke 0.4s ease,
                opacity 0.4s ease,
                transform 0.4s ease;
    transform-origin: center;
}

.smb-block-num {
    fill: #4d4d4c;
    transition: fill 0.3s ease;
}

.smb-block-label {
    fill: var(--ps-orange);
    transition: fill 0.3s ease;
}

.smb-block-label-bg {
    fill: #051F30;
}

.smb-block-open-psp-icon-item,
.smb-block-open-icon {
    fill: #6b8e23;
    transition: fill 0.3s ease;
}

.smb-block:not(.smb-active):hover .smb-block-shape {
    opacity: 0.85;
    fill: #05233B;
}

.smb-block.smb-active .smb-block-shape {
    fill: var(--ps-orange) !important;
}

.smb-block.smb-active .smb-block-num,
.smb-block.smb-active .smb-block-label,
.smb-block.smb-active .smb-block-open-psp-icon-item,
.smb-block.smb-active .smb-block-open-icon {
    fill: #ffffff !important;
}

.smb-nav-list-item {
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0.7;
}

.smb-nav-list-item:hover {
    opacity: 1;
}

.smb-nav-list-item.is-active {
    opacity: 1;
}

.smb-nav-list-item.is-active .smb-nav-list-item-txt,
.smb-nav-list-item.is-active .smb-nav-list-item-txt p {
    color: #ffffff !important;
}

.smb-pulse {
    animation: smb-pulse-anim 0.4s ease-out;
}

@keyframes smb-pulse-anim {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.smb-open .smb-block-open-icon,
.smb-open .smb-block-open-psp-icon-item {
    fill: #6b8e23; 
    transition: fill 0.3s ease;
}

.smb-block:not(.smb-active):hover .smb-block-label,
.smb-block:not(.smb-active):hover .smb-block-open-icon,
.smb-block:not(.smb-active):hover .smb-block-open-psp-icon-item,
.smb-block:not(.smb-active):hover .smb-block-num {
    fill: var(--ps-gray-light) !important;
}

.smb-open.smb-active .smb-block-shape {
    stroke: #ffffff !important;
}

@media (max-width: 767px) {
    #smb-info-wrapper {
        position: fixed ;
        left: 0;
        width: 100vw ;
        z-index: 9999 ;
        overflow-y: auto;
        overflow-x: hidden;
        display: none; 
    }
    .smb-info-item {
        width: 100%
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }
    #smb-info-box-close-trigger {
        align-self: flex-end;
        z-index: 10;
    }
      .smb-info-box-scroll {
        position: relative !important;
        flex-direction: row !important;
        padding: 0px !important;
        margin: 0px !important;
    }
  
}

.smb-info-box {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.smb-info-box-scroll {
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0;
    overflow-y: auto;
    padding: 20px;
}

.smb-info-box-scroll::-webkit-scrollbar {
    display: none;
}

.smb-info-box-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.smb-info-progress-bar {
    transition: width 0.1s ease-out;
}

#smb-info-box-close-trigger {
    pointer-events: auto !important;
    cursor: pointer;                
    z-index: 999;                   
}


.smb-nav-list-wrapper {
    display: flex !important;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.4s ease, 
                margin 0.4s ease;
}

.smb-nav-box.x-accordion_item-active .smb-nav-list-wrapper {
    max-height: 400px; 
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 10px;
    pointer-events: auto;
}

.smb-nav-cate-header-box {
    transition: background-color 0.4s ease, color 0.4s ease;
}


#smb-info-wrapper {
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
                visibility 0.5s;
    visibility: hidden;
    transform: translateY(20px);
}

#smb-info-wrapper.is-active {
    visibility: visible;
    opacity: 1 !important;
    transform: translateY(0);
    pointer-events: auto;
}



.smb-info-box-scroll {
    overflow-y: auto !important; 
    overflow-x: hidden;
    overscroll-behavior: contain !important; 
  
}

body.smb-scroll-locked {
    overflow: hidden !important;
    touch-action: none; 
}


body.smb-scroll-locked .smb-info-box-scroll {
    touch-action: auto;
    overscroll-behavior: contain;
}


html.smb-scroll-locked,
body.smb-scroll-locked {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none !important;
}

html.lenis-stopped {
    overflow: hidden !important;
}

html.lenis-stopped body {
    overflow: hidden !important;
}

body.smb-scroll-locked .smb-info-box-scroll,
html.smb-scroll-locked .smb-info-box-scroll {
    touch-action: auto !important;
    overscroll-behavior: contain;
    overflow-y: auto !important;
}



#info-additional > ul {
    padding: 0 var(--padding-m);
    margin-top: 0;
    column-count: 2;
}


#info-additional > ul > li {
    margin-bottom: var(--padding-s);
}





@media (max-width: 767px) {
    #smb-info-wrapper {
        position: fixed !important;
        bottom: 0 !important;
        
        transform: translateY(100%); 
        transition: transform 0.5s ease-out;
        display: flex !important;
    }

    #smb-info-wrapper.is-active {
        transform: translateY(0); 
    }

    #brxe-qvqzdn.smb-info-item {
        display: flex !important;
        flex-direction: column !important; 
        overflow-y: auto !important; 
        height: 100%;
        background-color: #3d3d3d; 
    }


    
    .smb-info-box {
        width: 100%;
        order: 2;
        padding: 20px;
        flex: none !important;
    }

    
    .smb-info-box-scroll {
        position: relative !important;
        height: auto !important;
        max-height: none !important;
        padding: 0 !important;
        overflow: visible !important; 
    }

    
    .smb-info-progress-container {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    
    #smb-info-box-close-trigger {
        position: absolute;
        z-index: 110;
    }
}