<>
/* ---------------------------------------------
opsbot
------------------------------------------------ */
.opsbot-area {
position: relative;
}
/* 20250819//(Ina).is-disabled 추가(s) */
.opsbot-area.is-disabled {}
.opsbot-area.is-disabled #opsbot-tooltip {
display: none !important;
}
.opsbot-area.is-disabled #opsbot-header {
opacity: 0.5 !important;
pointer-events: none !important;
}
/* 20250819//(Ina).is-disabled 추가(e) */
/* opsbot api 스타일 커스터마이징(important 강제 제어)(s) */
.opsbot-area #opsbot {
right: 0 !important;
bottom: 30px !important;
}
.opsbot-area #opsbot-chat[data-state='button'] {
right:20px !important;
bottom:50px !important;
z-index: 90 !important;
border-radius: 0 !important;
}
.opsbot-area #opsbot-chat[data-state='button'] #opsbot-header {
position: fixed !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
right: 0 !important;
bottom: 30px !important;
width: 128px !important;
height: 130px !important;
font-size: 16px !important;
z-index: 90 !important;
background-color: transparent !important;
box-shadow: none !important;
border-radius: 0 !important;
}
.opsbot-area #opsbot-chat[data-state='button'] #opsbot-header:focus {
outline: 5px auto -webkit-focus-ring-color !important;
outline-offset: -2px !important;
}
.opsbot-area #opsbot-chat[data-state='button'] #opsbot-header #opsbot-img-box {
width: 100% !important;
height: 100% !important;
}
.opsbot-area #opsbot-chat[data-state='card'] {
right: 24px !important;
bottom: 50px !important;
}
.opsbot-area #opsbot-chat #opsbot-img-box #opsbot-img {
width: 100% !important;
height: 100% !important;
}
/* 반응형 */
@media (max-width: 768px) {
.opsbot-area #opsbot {
bottom: 0 !important;
}
.opsbot-area #opsbot-chat[data-state='button'] #opsbot-header {
right: -14px !important;
bottom: 30px !important;
}
.opsbot-area #opsbot-chat[data-state='card'] {
right: 0 !important;
bottom: 0 !important;
width: 100% !important;
height: 100% !important;
border-radius: 0 !important;
}
}
/* opsbot api 스타일 커스터마이징(important 강제 제어)(e) */
.opsbot-area .opsbot-tooltip {
overflow: hidden;
position: fixed;
display: flex;
align-items: center;
justify-content: center;
right: 60px;
bottom: 43px;
padding: 20px;
width: auto;
height: 53px;
border-radius: 24px 0 0 24px;
z-index: 80;
}
.opsbot-area .opsbot-tooltip #opsbot-preview-box {
display: inline-flex;
height: 53px;
padding: 0 40px 0 24px !important;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 26px 0px 0px 26px;
background: rgba(001500.90);
box-shadow: 0px 3px 14px rgba(1943790.28);
transform: translateX(100%);
transform-origin: right center;
opacity: 0;
transition: transform 0.3s easeopacity 0.3s ease;
}
.opsbot-area .opsbot-tooltip #opsbot-preview-box > p {
color: #FFF;
font-size: 18px;
font-weight: 400;
}
.opsbot-area .opsbot-tooltip.active--focus #opsbot-preview-box {
transform: translateX(0);
opacity: 1;
}
>