


/* ----------------------------------------
   Bottom Fixed Layer
   ---------------------------------------- */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #373D6F;
    z-index: 900;
    transition: transform 0.3s;
		
}

.bottom-fixed.is-hidden {
    transform: translateY(100%);
}

.bottom-fixed .inner {
    display: flex;
    align-items: center;
		justify-content: center;
    height: 100px;
    gap: 12px;
}

.bottom-fixed .inner  a {
	display: block; /* 또는 flex */
    line-height: 0; /* 불필요한 줄 간격 제거 */
}

/* ----------------------------------------
   Benefit Toggle Button
   ---------------------------------------- */
.benefit-toggle {
    position: fixed;
    bottom: 98px;
    right: 0;
    z-index: 910;		
    transition: bottom 0.3s;
	
}

.bottom-fixed.is-hidden ~ .benefit-toggle {
    bottom: 0;
}

.benefit-toggle__btn {
 
		padding: 10px 20px;
    background: #373D6F;
		border:0px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    /*box-shadow: 0 -4px 12px rgba(0,0,0,0.3);*/
    transition: background 0.2s;
    /*margin-right: calc(50vw - 650px)*/
		cursor: pointer;
}

.benefit-toggle__btn:hover {
    /* background: #444; */
	/*box-shadow: 0 0px 20px #444;*/
}

.benefit-toggle__arrow {
    transition: transform 0.3s;
}

.benefit-toggle.is-open .benefit-toggle__arrow {
    transform: rotate(180deg);
}



.img-mobile { display: none; } /* 기본은 모바일 이미지 숨김 */

@media (max-width: 820px) {
    .img-desktop { display: none; }
    .img-mobile { display: block; }

		
		/*
		.bottom-fixed {
        position: fixed;
        bottom: 40px !important;
    }

		.benefit-toggle {
				position: fixed;
				bottom: 138px !important;
				right: 0;
				z-index: 910;		
				transition: bottom 0.3s;
		}*/

		/*
		#div_benefit-toggle{
				position: fixed;
				bottom: 40px !important;
				left: 0;
				width: 100%;
				background: #373D6F;
				z-index: 900;
				transition: transform 0.3s;

		}
*/


		.benefit-toggle__btn {  
				padding: 7px 12px;
				background: #373D6F;
				border:0px;
				color: #fff;
				font-size: 15px;
				font-weight: 700;
				border-radius: 12px 12px 0 0;
				display: flex;
				align-items: center;
				gap: 8px;
				/*box-shadow: 0 -4px 12px rgba(0,0,0,0.3);*/
				transition: background 0.2s;
				/*margin-right: calc(50vw - 650px)*/
		}


}