/* 버튼 */
.button-group {
    text-align: center;
}
.button-df-group {
    display: flex;
    gap: 5px;
}
.bt-small {
    border-radius: 9px;
    padding: 14px 16px;
    font: normal normal 500 15px/18px Pretendard;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.bt-filter {
    border-radius: 9px;
    padding: 14px 28px;
    font: normal normal 500 15px/18px Pretendard;
    white-space: nowrap;
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    color: #363636;
    height: max-content;
}
.bt-filter.selected {
    background: #191919;
    color: #FFFFFF;
    border: 1px solid #191919;
}
.bt-filter-circle {
    text-align: center;
    padding: 14px 28px;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    cursor: pointer;
    font: normal normal 600 13px/16px Pretendard;
    color: #363636;
}
.bt-filter-small-circle {
    text-align: center;
    padding: 12px 15px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font: normal normal 500 13px/16px Pretendard;
    color: #363636;
}
.bt-circle {
    border-radius: 22px;
    padding: 12px 25px;
    font: normal normal 500 15px/18px AppleSDGothicNeo;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    width: max-content;
    min-width: 200px;
}
.bt-icon-circle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    padding: 10px 20px;
    font: normal normal 500 14px/17px Pretendard;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}
.bt-icon-circle img {
    width: 20px;
    height: 20px;
}
.bt-small-circle {
    border-radius: 20px;
    padding: 6px 10px;
    font: normal normal 600 13px / 15px AppleSDGothicNeo;
    border: none;
    flex: 1;
    text-align: center;
}
.bt-medium-circle {
    height: 30px;
    text-align: center;
    padding: 6px 15px;
    border: 1px solid #F3F3F3;
    border-radius: 100px;
    cursor: pointer;
    font: normal normal 500 13px/16px Pretendard;
}
.bt-white {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    color: #363636;
}
.bt-black {
    background: #191919 !important;
    color: #FFFFFF !important;
}
.bt-yellow {
    background: #F4BD1B !important;
    color: #FFFFFF !important;
}
.bt-orange {
    background: #FF4C14 !important;
    color: #FFFFFF !important;
}
.bt-red {
    background: #EE0005;
    color: #FFFFFF;
}
.bt-gray {
    background: #EEEEEE;
    color: #363636;
}
.bt-gray2 {
    background: #F3F3F3;
    color: #767676;
}
.bt-blue {
    background: #0041FF;
    color: #FFFFFF;
}
.bt-blue2 {
    background: #2149B7 !important;
    color: #FFFFFF !important;;
}
.bt-outline-blue {
    background: #FFFFFF;
    color: #0041FF;
    border: 1px solid #0041FF;
}
.btn:disabled {
    color: #CCCCCC;
    background: #EEEEEE;
    border: none;
    cursor: not-allowed;
}
.btn2:disabled {
    color: #AAAAAA;
    background: #E0E0E0;
    border: none;
    cursor: not-allowed;
}
.left-btn,
.right-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.left-btn {
    background-image: url('../images/icon/ic_left_arrow.svg');
}
.right-btn {
    background-image: url('../images/icon/ic_right_arrow.svg');
}
.left-btn:disabled {
    background-color: #F8F8F8;
    background-image: url('../images/icon/ic_left_arrow_g.svg');
    cursor: not-allowed;
}
.right-btn:disabled {
    background-color: #F8F8F8;
    background-image: url('../images/icon/ic_right_arrow_g.svg');
    cursor: not-allowed;
}
.weather-btn {
    border: 1px solid #E1E8F1 !important;
    background-color: #FFFFFF;
}
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 2;
}
.out-left-btn {
    left: 0;
    background-image: url('../images/icon/ic_left_arrow.svg');
}
.out-right-btn {
    right: 0;
    background-image: url('../images/icon/ic_right_arrow.svg');
}
.out-left-btn:disabled {
    cursor: not-allowed;
    background-image: url('../images/icon/ic_left_arrow_dimmed.svg');
}
.out-right-btn:disabled {
    cursor: not-allowed;
    background-image: url('../images/icon/ic_right_arrow_dimmed.svg');
}

/* 라디오 버튼 */
.bt-filter.selected,
input[type="radio"]:checked + label.bt-filter,
.bt-filter-circle.selected,
input[type="radio"]:checked + label.bt-filter-circle,
.bt-filter-small-circle.selected,
input[type="radio"]:checked + label.bt-filter-small-circle{
    background: #191919;
    color: #FFFFFF;
}
input[type="radio"]:checked:disabled + label.bt-filter,
input[type="radio"]:checked:disabled + label.bt-filter-circle,
input[type="radio"]:checked:disabled + label.bt-filter-small-circle {
    background: #666666;
    color: #FFFFFF;
    cursor: not-allowed;
}
input[type="radio"]:not(:checked):disabled + label.bt-filter,
input[type="radio"]:not(:checked):disabled + label.bt-filter-circle,
input[type="radio"]:not(:checked):disabled + label.bt-filter-small-circle {
    background: #F8F8F8;
    color: #CCCCCC;
    cursor: not-allowed;
}
.goods-tab-container input[type="radio"],
.month-selector input[type="radio"],
.date-selector input[type="radio"],
.template-container input[type="radio"],
.view-container input[type="radio"]{
    display: none;
}
.radio:disabled + .bt-filter-circle {
    background: #F8F8F8;
    cursor: not-allowed;
}
.view-container label {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 9px;
    border: 1px solid #EEEEEE;
    cursor: pointer;
    font: normal normal 500 15px/18px Pretendard;
    color: #363636;
    width: 200px;
    height: 25px;
}
.view-container input[type="radio"]:checked + label {
    background: #191919;
    color: #FFFFFF;
    border: none;
}
.view-container input[type="radio"]:checked + label::after {
    content: '';
    background: url('../images/icon/ic_check_w.svg') no-repeat center;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin-left: auto;
}

/*icon*/
.icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
}
.icon.arrow, .icon.arrow2, .icon.arrow3 {
    transition: transform 0.3s ease;
    width: 13px;
    height: 13px;
    background-size: cover;
}

/*selectBox*/
.row-align {
    display: flex;
    align-items: center;
}
.select_wrap3 {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}
.select_box {
    position: relative;
    cursor: pointer;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EEEEEE;
    border-radius: 9px;
}
.select_box.disabled {
    background: #F8F8F8;
    cursor: not-allowed;
}

.select_box2 {
    position: relative;
    cursor: pointer;
}
.select_box.active {
    border: 1px solid #666666;
}
.select_box.active .select_name {
    font: normal normal 400 15px/18px Pretendard;
    letter-spacing: 0px; color: #363636;
}
.select_box.active .list_wrap, .select_box2.active .list_wrap {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1000;
    display: block;
    width: 100%;
    min-width: 100px;
}
.select_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 0;
}
.select_btn2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.select_name {
    flex: 1;
    font: normal normal 400 15px/18px Pretendard;
    letter-spacing: 0px;
    color: #363636;
    padding: 13px 16px;
}
.select_name2 {
    flex: 1;
    font: normal normal 400 15px/18px Pretendard;
    letter-spacing: 0px;
    color: #FFFFFF;
}
.icon.arrow {
    background-image: url('../images/icon/ic_down_arrow.svg');
    transition: transform 0.3s ease;
}
.icon.arrow2 {
    background-image: url('../images/icon/ic_down_arrow_w.svg');
    transition: transform 0.3s ease;
}
.icon.arrow3 {
    background-image: url('../images/icon/ic_up_arrow_b.svg');
    transition: transform 0.3s ease;
}
.select_box.active .icon.arrow, .select_box2.active .icon.arrow2, .select_box2.active .icon.arrow3{
    transform: rotate(180deg);
}
.select_box2.active .icon.arrow3{
    transform: rotate(-180deg);
}
.list_wrap {
    display: none;
}
.opt_list {
    max-height: 200px;
    overflow-y: auto;
}
.opt_item {
    padding: 10px;
    cursor: pointer;
    color: #363636;
    font: normal normal 400 15px/18px Pretendard;
}
.opt_item:hover {
    background-color: #F8F8F8;
    color: #000000;
}
.opt_item.selected {
    background-color: #F8F8F8;
    color: #000000;
}

/* file */
input[type=file].file-btn { display: none; }

/* 로그인 */
.form-cont {
    width: 85%;
}
.body-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5F7FA 0% 0% no-repeat padding-box;
    height: 100vh;
    box-sizing: border-box;
}
.login-content {
    width: 100%;
    height: 100%;
    max-height: 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lg {
    font: normal normal 600 14px/17px Pretendard;
    letter-spacing: 0px;
    color: #191919;
}
.lg-help {
    font: normal normal 400 15px/18px Pretendard;
    color: #AAAAAA;
    margin-top: 20px;
}
.lg-join {
    font: normal normal 400 15px/18px Pretendard;
    color: #0041FF;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
}

/* 회원가입 본인인증 */
.body-wrap {
    background: #F5F7FA 0% 0% no-repeat padding-box;
    box-sizing: border-box;
    min-height: 100vh;
}
.partner-auth-page {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}
.join-hd {
    display: flex;
    align-items: center;
}
.join-hd label {
    font: normal normal 500 24px/29px Pretendard;
    color: #000000;
}
.join-hd .separator {
    width: 1px;
    height: 30px;
    background-color: #E0E0E0;
    margin: 25px;
}
.auth-main {
    max-width: 70%;
    margin: 0 auto;
}
.section-title {
    font: normal normal 600 19px/23px Pretendard;
    color: #363636;
}
.section-sub {
    font: normal normal 500 14px/17px Pretendard;
    color: #767676;
}
.auth-info {
    margin-top: 20px;
    background: #FBFBFB;
    padding: 10px 20px;
    border-radius: 12px;
    font: normal normal 500 15px/18px Pretendard;
    color: #767676;
}
.sub-txt {
    color: #363636;
    font: normal normal 600 15px/18px Pretendard;
}
.important-txt {
    color: #0041FF;
    font: normal normal 500 15px/18px Pretendard;
}
.fx-jcsp-group {
    display: flex;
    justify-content: space-between;
}
.lg-sub {
    font: normal normal 500 17px/21px Pretendard;
    color: #191919;
    text-align: center;
    margin-top: 10px;
}

/* input, textarea */
.input-container {
    position: relative;
    display: inline-block;
    width: 100%;
}
.unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #363636;
    font: normal normal 400 15px/18px Pretendard;
}
.inp {
    font: normal normal 400 15px/18px Pretendard;
    box-sizing: border-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EEEEEE;
    padding: 14px 16px;
    width: 100%;
    border-radius: 9px;
    color: #363636;
}
.inp2 {
    font: normal normal 400 14px/17px Pretendard;
    box-sizing: border-box;
    background: #E8F2FF 0% 0% no-repeat padding-box;
    padding: 13px 16px;
    border: none;
    width: 100%;
    border-radius: 9px;
    color: #363636;
}
.input-label-group label, .input-label2-group label {
    font: normal normal 500 15px/18px Pretendard;
    color: #767676;
    margin-bottom: 8px;
    display: block;
}
.input-group .input-label-group, .input-file-group {
    flex: 1;
}
.input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}
.input-label2-group {
    display: flex;
    flex-direction: column;
}
.inp-cert-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}
.inp-cert-wrapper {
    position: relative;
}
.inp-cert {
    flex: 1;
    font: normal normal 400 15px/18px Pretendard;
    box-sizing: border-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EEEEEE;
    padding: 14px 16px;
    width: 100%;
    border-radius: 9px;
    color: #363636;
}
.cert-time {
    color: #363636;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 10px;
    background-color: transparent;
    cursor: pointer;
    font: normal normal 400 15px/18px Pretendard;
}
input::placeholder, textarea::placeholder {
    font: normal normal 400 15px/18px Pretendard;
    letter-spacing: 0px;
    color: #AAAAAA;
}
input:disabled, textarea:disabled {
    background: #F8F8F8 0% 0% no-repeat padding-box;
    cursor: not-allowed;
}

/* 알림 */
.notification-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user-info,
.task-info,
.notification-icon {
    display: flex;
    align-items: center;
}
.user-info .user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}
.task-info .alert-icon {
    width: 20px;
    height: 20px;
    background: url('../images/icon/icon_help.svg') no-repeat center / contain;
    margin-right: 8px;
    margin-top: -1px;
}
.task-info .confirm-btn {
    background: #EE0005;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 100px;
    font: normal normal 500 12px/14.32px Pretendard;
    margin-left: 12px;
    cursor: pointer;
}
.notification-icon {
    position: relative;
    margin-right: 20px;
}
.notification-icon .bell-icon {
    width: 24px;
    height: 24px;
    background: url('../images/icon/icon_bell.svg') no-repeat center / contain;
}
.notification-icon .notification-count {
    position: absolute;
    top: -12px;
    right: -21px;
    background: #EE0005;
    color: #FFFFFF;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    font: normal normal 500 10px/10.74px Pretendard;
    min-width: 20px;
    line-height: 1;
}

/* 체크박스 */
.checkbox-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.checkbox-form3 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.checkbox-form input[type="checkbox"] {
    display: none;
}
.checkbox-form label {
    white-space: nowrap;
    word-break: break-word;
    font: normal normal 500 15px/18px Pretendard;
    color: #767676;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background-image: url('../images/icon/ic_check_off.svg');
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 30px;
    line-height: 20px;
}
.checkbox-form3 label {
    white-space: nowrap;
    word-break: break-word;
    font: normal normal 500 15px/18px Pretendard;
    color: #767676;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
}
.checkbox-form input[type="checkbox"]:checked + label {
    background-image: url('../images/icon/ic_check_on.svg');
    color: #363636;
}
.checkbox-form2 input[type="checkbox"], .checkbox-form3 input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    background-image: url('../images/icon/ic_check_off.svg');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    border: none;
}
.checkbox-form2 input[type="checkbox"]:checked, .checkbox-form3 input[type="checkbox"]:checked {
    background-image: url('../images/icon/ic_check_on.svg');
}
.checkbox-form input[type="checkbox"]:disabled + label {
    background-image: url('../images/icon/ic_check_off_dimmed.svg');
    color: #b0b0b0;
    cursor: not-allowed;
}

.checkbox-form input[type="checkbox"]:checked:disabled + label {
    background-image: url('../images/icon/ic_check_on_dimmed.svg');
    cursor: not-allowed;
}
.checkbox-form2 input[type="checkbox"]:disabled, .checkbox-form3 input[type="checkbox"]:disabled {
    background-image: url('../images/icon/ic_check_off_dimmed.svg');
    cursor: not-allowed;
}
.checkbox-form2 input[type="checkbox"]:checked:disabled, .checkbox-form3 input[type="checkbox"]:checked:disabled {
    background-image: url('../images/icon/ic_check_on_dimmed.svg');
    cursor: not-allowed;
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.color-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

/* 에러 */
.error {
    font: normal normal 400 14px/17px Pretendard;
    color: #EE0005;
}
.error2 {
    font: normal normal 400 13px/15px Pretendard;
    color: #EE0005;
    padding-left: 22px;
    background-image: url("../images/icon/ic_info.svg");
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: left center;
}

/* popup */
.popup-layer {
    display: flex;
    justify-content: center;
    position:fixed;
    z-index:-1;
    top:0;
    left:0;
    width:100%;
    height:80%;
    opacity:0;
    -o-transition:all 0.2s;
    transition:all 0.2s;
    padding:60px 0 20px 0;
}
.popup-layer.on {
    z-index:999;
    opacity:1;
}
.popup-wrap {
    position:absolute;
    left:50%;
    z-index:500;
    width:calc(100% - 40px);
    margin:0 auto;
    background-color:#fff;
    border:1px solid #e4e7f0;
    border-radius:30px;
    -ms-transform:translate(-50%, 0);
    transform:translate(-50%, 0);
}
.popup-layer .bg-dimmer {
    background: #000000 0% 0% no-repeat padding-box;
    opacity: 0.3;
    height:100%;
    position:fixed;
    z-index:400;
    width:100%;
    top:0;
    left:0;
}
.popup-header {
    position: relative;
    padding: 15px 30px;
}
.popup-header .popup-title {
    font: normal normal 600 21px/25px Pretendard;
    letter-spacing: 0px;
    color: #363636;
    margin-top: 8px;
    margin-bottom: 8px;
}
.popup-body{
    padding: 0 30px 30px 30px;
    text-align:left;
    overflow-y: auto;
}
.popup-close {
    position: absolute;
    right: 17px;
    top: 5px;
    cursor: pointer;
}
.goods-tab-container{
    display: flex;
    gap: 5px;
}
.popup-cont {
    margin-top: 20px;
}
.terms-sub {
    font: normal normal 600 14px/17px Pretendard;
    color: #363636;
    margin-top: 25px;
}
.terms-txt {
    font: normal normal 400 14px/17px Pretendard;
    color: #363636;
    margin-top: 10px;
}

@media (max-width: 1599px) {
    .weather-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .mobile-content {
        width: 350px !important;
        height: 550px !important;
    }

}
@media  (min-width: 1919px) {
    .client-content {
        margin-top: 60px;
    }
    .holi-filter {
        display: flex;
        margin-left: 10px;
    }
    .template-container {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
.weather-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.weather-content {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #EEEEEE;
}
.weather-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.weather-header .moon-phase img {
    width: 40px;
}
.weather-forecast {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
    margin-top: 16px;
}
.hourly-forecast {
    text-align: center;
}
.hourly-forecast .icon img {
    width: 30px;
}
.weather-details {
    margin-top: 15px;
}
.weather-detail {
    display: flex;
    align-items: center;
    width: 100%;
}
.weather-detail::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #E2E2E2;
}
.tide-info {
    display: flex;
    justify-content: space-between;
    background: #F3F3F3;
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 10px;
}
.tide-cont {
    font: normal normal 400 14px / 17px SFProDisplay;
    color: #4F4F4F;
}
.tide-count {
    width: max-content;
    height: 10px;
    background: #EAEAEA;
    border-radius: 11px;
    padding: 2px 5px;
    font: normal normal 600 12px / 14px SFProDisplay;
}
/* 캘린더 팝업 */
@media  (min-width: 1919px) {
    .popup-wrap.calendar {
        max-width: 900px !important;
    }
    .popup-wrap.calendar .popup-body {
        max-height: 720px !important;
    }
}
.fc-day-sun a {
    color: #FF4C14 !important;
}
.fc-day-sat a {
    color: #2481BE !important;
}
.fc-h-event .fc-event-title-container {
    background: white;
}
.fc-h-event .fc-event-title {
    text-overflow: ellipsis;
    color: #363636;
    font: normal normal 500 10px/13px Pretendard;
}
.fc-h-event {
    border: none;
}
.fc-dayGridMonth-view table thead {
    font: normal normal 600 13px/15px Pretendard !important;
    color: #363636;
}
.fc-dayGridMonth-view table tbody {
    font: normal normal 500 14px/13px Pretendard !important;
    color: #363636;
}
.fc-theme-standard td {
    border: 1px solid #F3F3F3;
    border-right: none;
}
.fc-theme-standard th {
    border: 1px solid #F3F3F3;
    border-right: none;
}
.fc-theme-standard .fc-scrollgrid {
    border-radius: 6px;
    border: 1px solid #F3F3F3;
    border-bottom: none;
}
.fc .fc-toolbar-title {
    font: normal normal 600 21px / 25px Pretendard;
    color: #363636;
}
/* 오버레이 팝업 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}
.overlay.on {
    display: block;
}
.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}
.side-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #F5F7FA;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    min-width: 500px;
    overflow-x: auto;
}
.side-popup-header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.side-popup-header .popup-title {
    font: normal normal 600 21px/25px Pretendard;
    color: #363636;
    margin-left: 10px;
}
.side-popup-body {
    flex: 1;
    padding: 30px 120px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #E1E8F1;
    min-width: 1000px;
}
.noti-contwrap {
    padding: 18px 25px;
    border-radius: 15px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #E0E0E0;
    margin-bottom: 10px;
}
.noti-check {
    display: flex;
    font: normal normal 500 14px/17px Pretendard;
    color: #767676;
    align-items: center;
    cursor: pointer;
}
.label8.new {
    padding-left: 24px;
    background-image: url("../images/icon/ic_new.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: left center;
}
.area-wrap {
    border-radius: 20px;
    width: 100%;
    height: 65%;
    overflow: hidden;
}
.area-map {
    width: 100%;
    height: 100%;
}
/* 이미지 예시보기 */
.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.img-content {
    border-radius: 12px;
}
.img-content img {
    width: 100%;
}
.img-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/* 고객화면 미리보기 */
.client-content {
    display: flex;
    padding: 0 100px;
    gap: 20px;
    height: 100%;
    justify-content: center;
}
.client-content2 {
    display: flex;
    gap: 20px;
    height: 100%;
    justify-content: center;
}
.mobile-content {
    width: 400px;
    height: 650px;
}
.mobile-view {
    border-radius: 25px;
    background: #EEEEEE;
    height: 100%;
    place-content: center;
}
.vessel-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}
.vessel-color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 대시보드 */
.separator-line {
    width: 1px;
    height: 18px;
    background-color: #E0E0E0;
    margin: 0 13px;
}
.approval-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.approval-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F3F3F3;
    font-size: 14px;
}
.approval-item:last-child {
    border: none;
}
.approval-item span {
    font: normal normal 500 14px/17px Pretendard;
    color: #363636;
    flex: 1;
}
.sts-group .status {
    font: normal normal 500 13px/16px Pretendard;
    flex: 0 0 50px;
}
.weather-cards {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    cursor: grab;
}
.weather-cards:active {
    cursor: grabbing;
}
.weather-cards::-webkit-scrollbar {
    display: none;
}
.weather-card {
    background: #FBFBFB;
    border-radius: 13px;
    padding: 25px 25px;
    width: 205px;
    user-select: none;
}
.weather-card2 {
    background: #FBFBFB;
    border-radius: 13px;
    padding: 25px 25px;
}
.date {
    font: normal normal 500 17px/21px Pretendard;
    color: #363636;
    margin-bottom: 8px;
}
.dash-card {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 25px;
    border-radius: 18px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

/* 대시보드 스케쥴관리 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.tabs {
    display: flex;
}
.tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    font: normal normal 500 16px/19px Pretendard;
    color: #AAAAAA;
    border-bottom: 2px solid #EEEEEE;
}
.tab.active {
    border-bottom: 2px solid #191919;
    font-weight: bold;
    color: #363636;
}
.year-selector {
    display: flex;
    justify-content: center;
    align-items: center;
}
.year-selector span {
    margin: 0 10px;
    font: normal normal 600 17px/20px Pretendard;
}
.month-selector {
    display: flex;
    gap: 5px;
    justify-content: center;
}
.month {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}
.month.active {
    background-color: #007bff;
    color: white;
}
.date-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 50px;
    padding: 0 32px;
    box-sizing: border-box;
}
.selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 50px;
    box-sizing: border-box;
}
.date-selector {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 10px 0;
}
.date-selector-wrapper::before,
.date-selector-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25px;
    z-index: 1;
    pointer-events: none;
}
.selector-wrapper::before,
.selector-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    z-index: 1;
    pointer-events: none;
}
.date-selector-wrapper::before {
    left: 25px;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.date-selector-wrapper::after {
    right: 25px;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.weather {
    font: normal normal 500 14px/17px Pretendard;
    display: flex;
    gap: 20px;
    color: #191919;
    align-items: center;
}
.ship-info {
    margin-bottom: 20px;
    padding: 20px;
    background: #FBFBFB;
    border: 1px solid #EEEEEE;
    border-radius: 15px;
}
.weather-img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.weather-wrap {
    display: flex;
    align-items: center;
}
.trip:first-child, .card-day:first-child {
    margin-top: 0;
}
.trip, .card-day {
    margin-top: 20px;
}
.trip .trip-title {
    font: normal normal 600 15px/18px Pretendard;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 12px 12px 0 0;
}
.trip .details {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    background-color: #FFFFFF;
    border-radius: 0 0 12px 12px;
}
.trip-info {
    color: #363636;
    font: normal normal 700 15px/18px Pretendard;
    margin-bottom: 20px;
}
.trip-item {
    position: relative;
    border-right: 1px solid #EEEEEE;
    padding: 0 20px;
}
.trip-item:last-child {
    border-right: none;
}
.info-table {
    font: normal normal 500 14px/17px Pretendard;
    color: #363636;
    text-align: left;
    width: 100%;
}
.info-table th,
.info-table td {
    padding: 3px 0;
    white-space: nowrap;
}
.info-table th {
    vertical-align: top;
}
.schedule-form {
    text-align: center;
    padding: 80px 0;
}

/* 제휴정보 등록 */
.aff-info {
    text-align: center;
    margin-top: 30px;
}
.aff-info h1 {
    font: normal normal 600 21px/25px Pretendard;
    color: #363636;
}
.aff-info h3 {
    font: normal normal 500 15px/18px Pretendard;
    color: #363636;
}

/* 검색결과 없음 */
.search-none {
    text-align: center;
    font: normal normal 400 15px/18px Pretendard;
    color: #363636;
    padding: 50px 0;
}

/* 이미지 등록 */
.attach-img-list.d-flex {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 10px;
    width: 800px;
}
.d-flex {
    display: flex;
}
.attach-img-list.d-flex .attach-img-item {
    flex: 0 1 calc(15% - 6.75px);
}
.attach-img-item.sm {
    width: 40px;
}
.attach-img-item {
    margin-right: 9px;
}
.attach-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    border-radius: 9px;
    background: #F8F8F8;
}
.attach-img-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
}
.attach-img-area label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}
.attach-img-area label:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/icon/ic_img_plus.svg) center center no-repeat;
    background-size: 40px 40px;
}
.attach-img-area input[type=file].attach-img {
    display: none;
}
.sel-file {
    cursor: pointer;
    display: block;
}
.attach-img-area img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}
.attach-img-wrap.is-attached .btn-delete-attach {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 0;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
}
.attach-img-wrap.is-attached .btn-delete-attach img{
    margin-left: -10px;
    margin-top: -5px;
}
.goods-fx {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.goods-fx .content-list {
    flex: 1;
    box-sizing: border-box;
}

/* 선박등록팝업 */
.container2 {
    width: 350px;
}
.image-block {
    background: #EEEEEE;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-radius: 25px;
    margin-bottom: 15px;
}
/* 낚시일정추가팝업 */
.input-separator {
    display: flex;
    align-items: center;
    margin-top: 25px;
    color: #AAAAAA;
    font: normal normal 400 15px/18px Pretendard;
}

/* 공지관리 */
.info-wrap {
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    padding: 14px 16px;
    font: normal normal 400 15px/18px Pretendard;
    color: #363636;
}

/* 문자관리 */
.send-container {
    display: grid;
    grid-template-columns: 30% auto;
    gap: 20px;
    margin-top: 20px;
}
.send-list {
    position: relative;
    display: flex;
    gap: 10px;
}
.arrow-wrap {
    position: absolute;
    top: 50%;
    left: 50.2%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}
.send-content .contwrap .content-list {
    min-height: 700px;
    height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
}
.template-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.textarea-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}
.attachment-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 5px;
}
.image-list {
    display: flex;
    gap: 5px;
}
.image-list img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    background-color: white;
    padding: 3px;
    border-radius: 5px;
}
.template-wrap {
    background: #C9DEFC;
    border-radius: 12px;
    padding: 15px;
    height: 450px;
    cursor: pointer;
}
input[type="radio"]:checked + label.template-wrap {
    border: 3px solid #000000 !important;
}
.sms-wrap {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.sms-tab {
    background: #B2CEF7;
    border-radius: 6px;
    padding: 8px 10px;
    color: #5D88C6;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font: normal normal 600 13px/15px Pretendard;
}
.sms-btn {
    background: #B2CEF7;
    border-radius: 6px;
    padding: 8px 10px;
    color: #5D88C6;
    text-align: center;
    cursor: pointer;
    font: normal normal 600 13px/15px Pretendard;
}
.sms-btn2 {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    padding: 12px 10px;
    color: #363636;
    text-align: center;
    cursor: pointer;
    font: normal normal 500 13px/15px Pretendard;
    width: 100%;
}
.sms-tab.active {
    background: #559EFF;
    color: #FFFFFF;
}
.env-ribbon {
    position: fixed;
    top: -30px;
    left: -45px;           /* 살짝 밖으로 빼서 대각선 리본 느낌 */
    width: 100px;
    padding-top: 50px;
    padding-bottom: 10px;
    text-align: center;
    font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    letter-spacing: .5px;
    color: #fff;
    background: #111;      /* 필요하면 색 바꾸기 */
    transform: rotate(-45deg);
    z-index: 9999;
    pointer-events: none;  /* 클릭 방해 X */
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
