.inside-bg {
    background: #ECECEC
}

/*---- 프로필 이미지 ---- */
.profile-img-wrapper {
    position:relative;
    overflow:hidden;
    border-radius:50%;
    background: #fff;
    flex-shrink: 0;
}

.profile-img-wrapper.base {
    width:34px;
    height:34px;
}

.profile-img-wrapper.large {
    width:54px; height:54px;
}

.profile-img-wrapper.medium {
    width:38px; height:38px;
}

@media (min-width:575.98px) {
    .profile-img-wrapper.medium {
        width:46px; height:46px;
    }
}

.profile-img-wrapper.editor-img {
    width:36px; height:36px;
}


.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-user-drag: none;
    user-select: none;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-img.base {
    padding:3px;
    box-shadow: inset 0 0 0 0.1rem rgba(185, 185, 185, 1);
}

.profile-img.large {
    padding:4px;
    box-shadow: inset 0 0 0 0.135rem rgba(185, 185, 185, 1);
}

.profile-img.medium {
    padding:3px;
    box-shadow: inset 0 0 0 0.1rem rgba(185, 185, 185, 1);
}

@media (min-width:575.98px) {
    .profile-img.medium {
        padding:3px;
        box-shadow: inset 0 0 0 0.11rem rgba(185, 185, 185, 1);
    }
}

.profile-img.editor-img {
    padding:3px;
    box-shadow: inset 0 0 0 0.1rem rgba(185, 185, 185, 1);
}

.margin {
    margin-right:1rem;
}

@media (min-width:575.98px) {
    .margin {
        margin-right:0rem;
    }
}

/*---- 프로필 이미지 끝---- */

/* ---- 헤더 ---- */
.head-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0rem;
    background:#fff;
}

@media (min-width:575.98px) {
    .head-top {
        padding: 1rem 1rem;
    }
}

.head-logo {
    margin-left: 1rem;
}

@media (min-width:575.98px) {
    .head-logo {
        margin-left: 0rem;
    }
}

.head-logo img {
    width:70px
}

.profile-img-wrapper.medium.margin {
    margin-right: 1rem;
}

@media (min-width:575.98px) {
    .profile-img.medium.margin {
        margin-right: 0rem;
    }
}

.dropdown-menu {
    box-shadow: 0 0 2px rgba(0, 0, 0, 1);
    border-top-width: 0;
    border-radius: .5rem;
    min-width: 100px;
    border: none;
    margin-top: 0.5rem !important;
    padding: 4px 0px;
}

@media (min-width:575.98px) {
    .dropdown-menu {
        min-width: 130px;
        padding: 6px 0px;
    }
}

.dropdown-item {
    font-size:14px;
    padding: 4px 12px;
}

@media (min-width:575.98px) {
    .dropdown-item {
        font-size:16px;
    }
}

.dropdown-item:hover,
.dropdown-item:focus {
    background:#f4f4f4;
    color:#2c2c2c;
}

/* ---- 헤더 끝---- */

.bg-wrapper {
    width: 100%;
    overflow: hidden;
}

.act-wrapper {
    width: 100%;
    overflow: hidden;
}

/* ---- 프로필 커버 영역 시작 ---- */

.profile-cover {
    position: relative;
    height: 190px;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-color: #727272
}

.profile-container {
    position: absolute;
    bottom: 20px;
    left: 16px;
    display: flex;
    align-items: center;
}

@media (min-width:575.98px) {
    .profile-container {
        left: 40px;
    }
}

.profile-info {
    margin-left: 14px;
    color: #fff
}

.profile-info h3 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width:1199.98px) {
    .profile-info h3 {
        font-size: 1.5rem;
    }
}

.profile-info span {
    font-size: 14px;
    max-width: 150px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

.profile-button {
    position: absolute;
    bottom: 20px;
    right: 16px;
}

@media (min-width:575.98px) {
    .profile-button {
        right: 30px;
    }
}

.profile-button button {
    font-size:12px;
}

@media (min-width:575.98px) {
    .profile-button button {
        font-size:14px;
    }
}

/* ---- 프로필 커버 영역 끝---- */

/* 탭 스타일 */
.act-tab {
    padding: 10px;
    background-color: #484848;
    display:flex;
    justify-content:space-around;
}

.act-tab a{
    font-size: 14px;
    padding: 6px 20px;
    cursor: pointer;
    color: #bbb !important;
}

.act-tab a.active {
    color: #fff !important;
    border-bottom: 2px solid #fff;
}

.act-tab a:hover {
    color: #fff !important;
}

@media (min-width:575.98px) {
    .act-tab a {
        font-size: 16px;
        padding: 8px 20px;
    }
}

.act-container {
    padding: 1rem 1rem;
    background: #fff;
    margin-bottom: 1rem;
}

@media (min-width:575.98px) {
    .act-container {
        padding: 1.25rem 2rem;
    }
}

.act-container .green {
    color: #028174;
}

.act-container .orange {
    color: #EE534F;
}

.act-container .navy {
    color: #004581;
}

.act-container .act-title {
    display:block;
    margin-bottom: 0;
    line-height:1.1;
    font-size:15px;
    overflow: hidden;
    text-wrap: nowrap;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#444447;
    font-weight:500;
    width:100%;
}

@media (min-width:575.98px) {
    .act-container .act-title {
        font-size:17px;
        margin-bottom: 3px;
    }
}

.act-brief-text div,
.act-brief-text p {
    font-size: 13px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    color:#6d6d6d
}

@media (min-width:575.98px) {
    .act-brief-text div,
    .act-brief-text p {
        font-size: 15px;
    }
}


.act-container .act-date {
    font-size: 14px;
    color: #9A9A9A;
    display: flex;
    justify-content: start;
    margin-bottom: 1.25rem;
}

.act-container .act-text{
    font-size:16px;
    margin-bottom: 1rem;
}

.mycontent-action .act-date{
    font-size: 14px;
    color: #9A9A9A;
}

.act-container .act-img{
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.tab-top-button {
    padding: 0.75rem 1rem 0.75rem 1rem;
    display:flex;
    justify-content: end;
    align-items:center;
}

@media (min-width:575.98px) {
    .tab-top-button {
        padding: 1rem 0rem 1rem 0rem;
        font-size:14px;
    }
}

.tab-top-button button {
    font-size:14px;
}

.mycontent-container {
    padding: 2rem 1rem;
    background: #fff;
    margin-bottom: 1rem;
}

@media (min-width:575.98px) {
    .mycontent-container {
        padding: 2.25rem 2rem
    }
}

.mycontent-container .mycontent-img {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.mycontent-container .mycontent-title {
    display:block;
    margin-bottom: 0;
    line-height:1.1;
    font-size:16px;
    overflow: hidden;
    text-wrap: nowrap;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#444447;
    font-weight:500;
    width:100%;
}

@media (min-width:575.98px) {
    .mycontent-container .mycontent-title {
        font-size:17px;
        margin-bottom: 3px;
    }
}

.act-container .act-title {
    display:block;
    margin-bottom: 0;
    line-height:1.1;
    font-size:15px;
    overflow: hidden;
    text-wrap: nowrap;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#444447;
    font-weight:500;
    width:100%;
}

@media (min-width:575.98px) {
    .act-container .act-title {
        font-size:17px;
        margin-bottom: 3px;
    }
}


.gosu-info-box .act-date {
    font-size: 14px;
    color: #9A9A9A;
    display: flex;
    justify-content: start;
    margin-bottom: 0rem;
}

@media (max-width:575.98px) {
    .gosu-info-box .act-date {
        font-size: 14px;
    }
}

.act-container .act-date {
    font-size: 14px;
    color: #9A9A9A;
    display: flex;
    justify-content: start;
    margin-bottom: 1.25rem;
}

.mycontent-like {
    color: #9A9A9A;
    display: flex;
    align-items: center;
    margin-left:0.7rem;
    font-size:14px;
}

@media (max-width:575.98px) {
    .mycontent-like {
        font-size:14px;
    }
}

.mycontent-like .like-text {
    margin-right: 3px;
}

.mycontent-action {
    display:flex;
    align-items:center;
}

.questioner-profile{
    display:flex;
    align-items:center;
    margin-bottom:1.5rem;
}

.questioner-profile .profile-img-wrapper {
    margin-right:10px;
}

.questioner-info {
    line-height: 1.2;
}

@media (min-width:575.98px) {
    .questioner-info {
        line-height: 1.3;
    }
}

.questioner-profile h6{
    font-size:16px;
}

@media (min-width:575.98px) {
    .questioner-profile h6{
        font-size:18px;
    }
}

.questioner-profile span{
    font-size:14px;
}

.comments-writebox{
    background:#fff;
    margin-top: 3rem; 
    padding-top:1.5rem;
    border-top:1px solid #d3d3d3;
}

.comment-edit {
    border: none;
    padding: 10px;
    min-height: 70px;
    border-radius: 4px;
    color:#2C2C2C;
    box-shadow: none;
    outline: none; 
    font-size:16px;
}

.comment-edit:focus {
    border: 1px solid #B9B9B9;
    border: none;
    box-shadow: none;
}

.writebox-add {
    font-size: 16px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

@media (min-width:575.98px) {
    .writebox-add {
        font-size:18px;
    }
}

.comments-writebox-edit {
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-top:10px;
    margin-left:2px;
    padding:0.5rem;
}

.write-box-border {
    border: 1px solid #B9B9B9;
    border-radius:4px;
}

.comment-add-btn {
    border: transparent;
    font-size:14px;
    padding:0;
    margin-right:0.75rem;
}

.comment-add-btn:focus,
.comment-add-btn:hover,
.comment-add-btn:active{
    border: transparent;
    border-color:transparent;
}

.comments-writebox .btn-dark {
    width: 50px;
    font-size:14px;
}

@media (min-width:575.98px) {
    .comments-writebox .btn-dark {
        width: 70px;
    }
}

.comment-addpic {
    position: relative;
    padding-left: 24px; /* 이미지 크기만큼 여백 추가 */
    display:flex;
    align-items:center;
}

.comment-addpic::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/camera.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

.comment-addlink {
    position: relative;
    padding-left: 19px; /* 이미지 크기만큼 여백 추가 */
    display:flex;
    align-items:center;
    margin-bottom:0.27rem; 
}

.comment-addlink::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/add-link.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

.comments-section {
    margin-top: 1rem;
}

.comment {
    background-color: #fff;
    display: flex;
    align-items: start;
    border-radius: 0px;
    padding: 10px 0px;
    border-bottom: 1px solid #ECECEC
}

@media (min-width:575.98px) {
    .comment {
        padding: 16px 0px;
    }
}

.comment-content {
    width: 100%;
    margin-left:12px;
}

@media (min-width:575.98px) {
    .comment-content {
        margin-left:15px;
    }
}


.comment-info {
    display:flex;
    align-items: center;
    margin-bottom:2px;
}

.comment-user {
    font-weight:500;
    font-size: 15px;
}

@media (min-width:575.98px) {
    .comment-user {
        font-size: 16px;
    }
}

.comment-text{
    font-size:14px;
    line-height:1.3
}

@media (min-width:575.98px) {
    .comment-text{
        font-size:15px;
    }
}

.comment-img {
    padding: 0.75rem 0rem;
    max-width:100%;
}

.comment-date {
    font-size: 12px;
    color: #707070;
    margin-left:6px;
}

@media (min-width:575.98px) {
    .comment-date {
        font-size: 13px;
        margin-left:8px;
    }
}

.comment-actions {
    font-size: 14px; 
    color: #777;
    margin-top: 7px;
}

/* 질문요청 */
.ask-container {
    padding: 1.5rem 1rem;
    background: #fff;
    margin-bottom: 1rem;
}

@media (min-width:575.98px) {
    .ask-container {
        padding: 1.5rem 2rem;
    }
}

@media (min-width:575.98px) {
    .ask-content {
        display:flex;
        justify-content: space-between;
        align-items: center;
    }
}

.ask-question {
    width: 100%;
    order:2
}

@media (min-width:575.98px) {
    .ask-question {
        width: calc(100% - 210px);
        order:1
    }    
}

.ask-title {
    font-size:16px;
    margin-bottom:2px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

@media (min-width:575.98px) {
    .ask-title {
        font-size:18px;
    }     
}

.ask-title::before {
    content: '';
    display: inline-block;
    width: 14px; 
    height: 14px;
    background-image: url('../images/icon/question.svg');
    background-size: contain; 
    background-repeat: no-repeat; 
    margin-right: 5px;
    transform: translate(0px, -1px);
    vertical-align: middle;
}

@media (min-width:575.98px) {
    .ask-title::before {
        width: 16px; 
        height: 16px;
        transform: translate(0px, 0px);
    }
}

.ask-question a:hover h5,
.ask-question a:hover p {
    text-decoration: underline;
}

.ask-text {
    font-size: 14px;
    color: #9A9A9A;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

@media (min-width:575.98px) {
    .ask-text {
        font-size: 16px;
        color: #9A9A9A;
    }
}

.ask-profile {
    display:flex;
    align-items:center;
    justify-content: start;
    margin-bottom: 1rem;
    order:1;
}

@media (min-width:575.98px) {
    .ask-profile {
        justify-content: end;
        margin-bottom: 0rem;
        order:2
    }
}

.ask-profile a{
    order:1;    
}

@media (min-width:575.98px) {
    .ask-profile a{
        order:2
    }
}

.ask-profile .profile-img-wrapper{
    margin-right: 10px;
}

@media (min-width:575.98px) {
    .ask-profile .profile-img-wrapper{
        margin-right: 0px;
        margin-left: 13px;
    }
}

.ask-user {
    line-height:1;
    text-align: start;
    order:2
}

@media (min-width:575.98px) {
    .ask-user {
        line-height:1;
        text-align: end;
        order:1
    }
}

.ask-user h6{
    font-size:16px;
}

.ask-user span {
    font-size: 12px;
    color: #9A9A9A;
}

.ask-user-action {
    display: flex;
    align-items:center;
    margin-top:0.5rem;
}

.ask-user-action-comment {
    display:flex;
    align-items: center;
    font-size:14px;
}

.ask-user-action-comment::before {
    content: "";
    display: inline-block;
    width: 15px; /* 이미지 너비 */
    height: 15px; /* 이미지 높이 */
    background-image: url('../images/icon/comment.svg'); /* 이미지 경로 */
    background-size: cover; /* 이미지 크기 조절 */
    margin-right: 5px; /* 텍스트와의 간격 */
}

.ask-user-action-like {
    color: #2C2C2C;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-left:0.7rem;
}

.ask-user-action-like .like-text {
    margin-right: 3px;
}

.ask-user-action-like .like-number {
    margin-left: 0px;
}



.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 33px;
    height: 33px;
    background-color: #727272;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    background-image: url('../images/icon/delete.svg');
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

/* ---- 큰 라이크 버튼 시작 ---- */

.like-btn-wrapper {
    position: relative;
    text-align: center;
    line-height: 36px;
    margin-top: 2rem;
}


.like-btn-wrapper.mycontent-likebtn {
    margin-top: 4rem;
}

@media (min-width:575.98px) {
    .like-btn-wrapper {
        line-height: 36px;
        margin-top: 2rem;
    }
}

@media (min-width:575.98px) {
    .like-btn-wrapper.mycontent-likebtn {
        margin-top: 5rem;
    }
    
}

.big-like-btn {
    display: inline-flex;
    align-items: center;
    padding: 4px 26px;
    font-size: 16px;
    font-weight: 500;
    color: #727272;
    border: .5px solid #c7c7c7;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    -webkit-user-drag: none; 
    user-select: none;
}

@media (min-width:575.98px) {
    .big-like-btn {
        padding: 8px 40px;
        font-size: 18px;
    }
}

.big-like-btn {
    display: inline-flex;
    align-items: center;
    padding: 4px 26px;
    font-size: 16px;
    font-weight: 500;
    color: #727272;
    border: .5px solid #c7c7c7;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    -webkit-user-drag: none; 
    user-select: none;
}

.big-like-btn:hover {
    background-color: rgba(249, 249, 249, 0.6)
}

.big-like-btn:hover,
.big-like-btn:focus,
.big-like-btn:active {
    border: .5px solid #d1d1d1;
    border-color: #d1d1d1;
}

.big-like-btn .like-icon {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
    margin-right: 0.5rem
}

.big-like-btn .like-icon::before {
    content: '';
    position: absolute;
    left: 0;
    margin-bottom:2px;
    width: 16px;
    height: 16px;
    background-image: url("../images/icon/thumbup.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width:575.98px) {
    .big-like-btn .like-icon::before {
        width: 18px;
        height: 18px;
    }
}

.big-like-btn .like-count {
    color: #004581;
    font-size: 16px;
    font-weight:500;
    margin-left: 0.5rem
}

@media (min-width:575.98px) {
    .big-like-btn .like-count {
        font-size: 18px;
    }
}

.normal-like-btn {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    background: none;
    color: #727272;
    cursor: pointer;
    border: none;
    padding: 0;
    text-decoration: none;
}

.normal-like-btn span::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #727272;
    transform: scaleX(0);
}

.normal-like-btn:hover span::after {
    transform: scaleX(1);
}

.normal-like-btn .like-count {
    font-size: 14px;
    color: #525252;
    margin-left: 4px;
    font-weight:500;
}

/* ---- 큰 라이크 버튼 끝 ---- */

/* ---- 프로필 변경 모달 ---- */

.modal-profile .modal-dialog {
    max-width: 640px;
    height:auto;
}

.modal-profile .modal-content {
    padding: 1.3rem;
}

@media (max-width:575.98px) {
    .modal-profile .modal-content {
        padding: 0.3rem;
    }
}

.modal-profile .modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-profile .modal-body {
    padding:0rem 1rem;
}

.modal-profile input::placeholder {
    color: #727272;
    font-size: 14px;
}

.modal-profile .btn-outline-secondary:hover,
.modal-profile .btn-outline-secondary:active{
    background:#fff;
    color:#525252;
}

.modal-profile .btn-outline-secondary {
    padding: 0.375rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
}

.modal-profile .btn-dark{
    padding: 0.375rem 0.875rem;
    border-radius: 25px;
    font-size: 1rem;
}

@media (max-width:575.98px) {
    .modal-profile .btn-outline-secondary {
        padding: 0.3rem 0.8rem;
        font-size: 14px;
    }
}

@media (max-width:575.98px) {
    .modal-profile .btn-dark {
        padding: 0.3rem 0.8rem;
        font-size: 14px;;
    }
}


.modal-profile .form-control.add-file {
    font-size:14px;
}

/* ---- 링크추가 모달 ---- */

.modal.link-input {
    margin-top: 80px;
}

.link-input .modal-dialog {
    max-width: 640px;
    height:auto;
}

.link-input .modal-content {
    padding: 1.3rem;
}

@media (max-width:575.98px) {
    .link-input .modal-content {
        padding: 0.3rem;
    }
}

.link-input .modal-header {
    border-bottom: 1px solid #dee2e6;
}

.link-input input::placeholder {
    color: #727272;
    font-size: 16px;
}

.link-input .btn-outline-secondary:hover,
.link-input .btn-outline-secondary:active{
    background:#fff;
    color:#525252;
}

.link-input .btn-outline-secondary {
    padding: 0.375rem 1rem;
    width: 100px;
    border-radius: 25px;
    font-size: 1rem;
}

.link-input .btn-dark{
    padding: 0.375rem 0.875rem;
    width:100px;
    border-radius: 25px;
    font-size: 1rem;
}

@media (max-width:575.98px) {
    .link-input .btn-outline-secondary {
        width: 70px;
        padding: 3px 6px;
        font-size: 14px;
    }
}

@media (max-width:575.98px) {
    .link-input .btn-dark {
        width: 70px;
        padding: 3px 6px;
        font-size: 14px;;
    }
}


/* ---- 모달 나의문제 추가 모달 창 끝 ---- */

.modal-mycontent .modal-dialog{
    margin:0;
    margin:auto;
    max-width: 780px;
}

@media all and (min-width:575.98px) and (max-width:1199.98px) {
    .modal-mycontent .modal-dialog{
        max-width: 680px;
    }
}

@media (min-width:1979.98px) {
    .modal-mycontent .modal-dialog {
        height: calc(var(--vh, 1vh) * 100); 
        margin: auto;
    }
}

.modal-mycontent .modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
    border: 0;
    padding: 1.5rem 0rem 0rem 0rem;
}

@media (min-width:575.98px) {
    .modal-mycontent .modal-content {
        padding: 2rem 1.5rem;
    }
}

.modal-mycontent .modal-header{
    border: 0;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.modal-mycontent .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding:0rem 1rem;
}

.modal-mycontent .modal-footer {
    justify-content: space-between;
    padding:10px;
}


.modal-mycontent .form-control {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #B9B9B9;
    text-indent: 0;
    border-radius: 0;
    padding:10px 0px;
    color:#2C2C2C;
    font-size:18px;
}

.modal-mycontent .form-control::placeholder{
    font-size:18px;
    color: #B9B9B9;
}

.mycontent-addpic {
    position: relative;
    padding-left: 28px; /* 이미지 크기만큼 여백 추가 */
    display:flex;
    align-items:center;
}

.mycontent-addpic::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/camera.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

.mycontent-addlink {
    position: relative;
    padding-left: 22px; /* 이미지 크기만큼 여백 추가 */
    display:flex;
    align-items:center;
    margin-bottom:0.27rem; 
}

.mycontent-addlink::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/noun-link.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

.modal-mycontent h6{
    margin-bottom:0.75rem;
}

.modal-mycontent .btn-outline-secondary {
    margin: 0rem 0.4rem 0.9rem 0rem;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
}

@media (max-width:575.98px) {
    .modal-mycontent .btn-outline-secondary {
        margin: 0rem 0.35rem 0.85rem 0rem;
        font-size: 1rem;
        padding: 6px 16px;
    }
}


.modal-mycontent .btn-dark{
    padding: 5px 5px;
    width:100px;
    border-radius: 25px;
    font-size: 1.075rem;
}

@media (max-width:575.98px) {
    .modal-mycontent .btn-dark {
        padding: 4px 3px;
        width: 80px;
        font-size: 1rem;
    }
}


.MycontentEdit a {
    color: #006BB9; /* 링크 색상 */
    text-decoration: underline; /* 밑줄 */
    cursor: pointer; /* 마우스 커서가 손가락 모양으로 변경 */
}

.commentEdit a {
    color: #006BB9; /* 링크 색상 */
    text-decoration: underline; /* 밑줄 */
    cursor: pointer; /* 마우스 커서가 손가락 모양으로 변경 */
}

/*-------------------------- 에디터 ----------------------- */


.edit-body{
    background:#f6f6f6; overflow: hidden;
}

.btn-back {
    border:none;
    box-sizing: content-box;
    width: 20px;
    height: 20px;
    background: url('../images/icon/chevron-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.editor {
    max-width: 680px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    margin:auto;
    background:#fff
}

.editor a{
    text-decoration: underline;
    color:blue;
}

.edit-dialog {
    position: relative;
    width: auto;
    margin: 0rem;
    height: calc(var(--vh, 1vh) * 100); 
    background:#fff;
    display: flex;
    flex-direction: column;
}

.editor-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
    border: 0;
    padding: 0rem;
    background:#fff
}

.editor-header {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
    padding: 0.75rem 1rem 0.5rem 1rem;
    background-color: #fff;
}

.header-top{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    margin-bottom:0.5rem;
} 

.header-bottom{
    width:100%;
    padding-bottom:0.5rem;
    border-bottom:1px solid rgb(220, 220, 220)
} 

.editor-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem 1rem 1.5rem 1rem;
}


.mycontent-writebox{
    background:#fff;
}

.editor-btns-wrapper{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.editor-input-wrap{
    width:100%;
    border-bottom:1px solid rgb(220, 220, 220);
    margin-bottom:8px;
} 

.editor-submit{
    display:flex;
    justify-content: end;
    align-items: center;
    margin-top:0.75rem;
}


.add-btns {
    border: transparent;
    padding:0;
    margin-right:1rem;
    background: #fff;
    color:#2c2c2c;
}

.add-btns:focus,
.add-btns:hover,
.add-btns:active{
    border: transparent;
    border-color:transparent;
}
.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

.addpic {
    position: relative;
    padding-left: 23px;
    display: flex;
    align-items: center;
    font-size:14px;
}

.addpic::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/newcamera.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

.addlink {
    position: relative;
    padding-left: 23px;
    display:flex;
    align-items:center;
    font-size:14px;
    margin-bottom:0px;
}

.addlink::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/newlink.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

.addtag {
    position: relative;
    padding-left: 23px; /* 이미지 크기만큼 여백 추가 */
    display:flex;
    align-items:center;
    font-size:14px;
    margin-bottom:0px;
}

.addtag::before {
    content: '';
    display: inline-block;
    background-image: url('../images/icon/tag.svg'); /* 이미지 경로 */
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 텍스트와 이미지 수직 중앙 정렬 */
}

@media (min-width:575.98px) {
    .addpic {
        padding-left: 30px;
        font-size:16px;
    }
    .addpic::before {
        width: 26px;
        height: 26px;
    }
    .addlink {
        padding-left: 30px;
        font-size:16px;
    }
    .addlink::before {
        width: 26px;
        height: 26px;
    }
    .addtag {
        padding-left: 30px;
        font-size:16px;
    }
    .addtag::before {
        width: 26px;
        height: 26px;
    }
    .editor .btn-dark{
        font-size:18px;
    }    
}

.editor .btn-dark{
    font-size:16px;
    width:60px;
}

.myeditor-wrapper {
    margin-bottom:28px;
}

.myeditor-wrap {
    margin-bottom:10px;
}

.myeditor {
    border: none;
    padding: 0px 1px 0px 1px;
    margin-bottom:8px;
    height: calc(100vh - 250px);
    overflow: auto;
    color:#2C2C2C;
    box-shadow: none;
    outline: none; 
    font-size:16px;
    box-sizing: border-box;
    overflow-y: auto;
    line-height:1.6
}

@media (max-width:1200px) {
    .myeditor {
        height: 34vh;
    }
}

.myeditor div {
    font-size: 16px;
}

.myeditor img {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    max-width:100%;
}

.myeditor-noinput {
    border: none;
    padding: 0px 1px 0px 1px;
    margin-bottom:8px;
    height: calc(100vh - 217px);
    overflow: auto;
    color:#2C2C2C;
    box-shadow: none;
    outline: none; 
    font-size:16px;
    box-sizing: border-box;
    overflow-y: auto;
    line-height:1.6
}

@media (max-width:1200px) {
    .myeditor-noinput {
        height: calc(34vh + 33px);
    }
}

.myeditor-noinput div {
    font-size: 16px;
}

.myeditor-noinput img {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    max-width:100%;
}

.title {
    display: block;
    width: 100%;
    padding: 0.375rem 0rem;
    font-size: 18px;;
    font-weight: 500;
    line-height: 1.5;
    color:#2C2C2C;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0px;
}

.editor-title {
    display: block;
    width: 100%;
    padding: 0.375rem 0rem;
    font-size: 18px;;
    font-weight: 500;
    line-height: 1.5;
    color:#2C2C2C;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0px;
    margin-bottom: 6px;
}

.editor-title:focus {
    box-shadow: none;
    outline:none;
}

.editor-title::placeholder{
    color: #B9B9B9;
    font-size: 18px;
}

.editor-title-noinput {
    display: block;
    width: 100%;
    padding: 0.375rem 0rem;
    font-size: 18px;;
    font-weight: 500;
    line-height: 1.5;
    color:#2C2C2C;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0px;
}

.editor-title-noinput:focus {
    box-shadow: none;
    outline:none;
}

.editor-title-noinput::placeholder{
    color: #B9B9B9;
    font-size: 18px;
}

.title:focus {
    box-shadow: none;
    outline:none;
}

.title::placeholder{
    color: #B9B9B9;
    font-size: 18px;
}

.MycontentEdit[data-placeholder]:empty::before {
    content: attr(data-placeholder);
    color: #B9B9B9;
    font-size:16px;
    pointer-events: none;
}


.editor-modal .modal-dialog {
    max-width: 620px;
    height:auto;
}

.editor-modal .modal-content {
    padding: 1rem;
}

@media (max-width:575.98px) {
    .editor-modal .modal-content {
        padding: 0.85rem;
    }
}

.editor-modal .modal-body {
    padding: 0.25rem 
}

.editor-modal .modal-footer {
    padding: 0.25rem 0rem 0rem 0rem;
    border:none;
}

.editor-modal input::placeholder {
    color: #727272;
    font-size: 16px;
}

.editor-modal .btn-outline-secondary:hover,
.editor-modal .btn-outline-secondary:active{
    background:#fff;
    color:#525252;
}

.editor-modal .btn-outline-secondary {
    padding: 0.375rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
}

.editor-modal .btn-dark{
    padding: 0.375rem 0.875rem;
    border-radius: 25px;
    font-size: 1rem;
}

@media (max-width:575.98px) {
    .editor-modal .btn-outline-secondary {
        padding: 0.3rem 0.8rem;
        font-size: 14px;
    }
}

@media (max-width:575.98px) {
    .editor-modal .btn-dark {
        padding: 0.3rem 0.8rem;
        font-size: 14px;;
    }
}

.editor-label{
    background: #ECECEC;
    padding: 0.375rem 0.6rem;
    font-size:14px;
    border-radius:12px;
    margin-right:8px;
    cursor: pointer;
}

.editor-label-text {
    font-size:14px;
    color: #2c2c2c;
}

.editor-file-input {
    display: none;
}

.file-label {
    display: inline-block;
    padding: 8px 12px;
    background-color: #007bff;
    color: blue;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 8px;
}

.file-name {
    font-size: 14px;
    color: #555;
}

.mycontent-detail-container {
    padding: 3.5rem 1rem;
    background: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width:575.98px) {
    .mycontent-detail-container {
        padding: 5.25rem 3rem
    }
}

.mycontent-detail-container .mycontent-img {
    width: 100%;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.mycontent-detail-container .mycontent-title {
    display:block;
    margin-bottom: 2rem;
    line-height:1.3;
    font-size: 16px;
    font-weight:500;
    text-align: center;
}

@media (min-width:575.98px) {
    .mycontent-detail-container .mycontent-title {
        font-size:20px;
    }
}

.mycontent-toparea {
    display:flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom:1.5rem;
    border-bottom:1px solid rgb(215, 215, 215);
}

.toparea-left{
    display:flex;
    align-items:center;
}

.toparea-right {
    font-size: 14px;
    color: #9A9A9A;
}

.toparea-right a{
    font-size: 14px;
    color: #9A9A9A;
}

.toparea-right a:hover{
    text-decoration: underline;
    
}

.mycontent-detail-container .nickname {
    font-size: 14px;
    color: #525252;
    font-weight:500;
}

.mycontent-detail-container .date {
    font-size: 14px;
    color: #9A9A9A;
}

@media (max-width:575.98px) {
    .mycontent-detail-container .date {
        font-size: 12px;
    }
}

.editor-div{
    font-size:16px;
    line-height:1.6;
    color:#2C2C2C;
}

.editor-div div{
    font-size:16px;
    line-height:1.6;
    color:#2C2C2C;
}

.editor-div img{
    max-width:100%;
    padding:0.75rem 0rem;
}


/* 프로필 변경 페이지 */
.profile-change-wrapper {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background:#f6f6f6;
    margin:auto;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.profile-edit-dialog {
    max-width: 680px;
    height: calc(var(--vh, 1vh) * 100); 
    margin: auto;
    background-color: #fff;
}

.profile-edit-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
    border: 0;
    padding:0
}

.profile-edit-header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    padding: 0.75rem 1rem 0.5rem 1rem;
} 

.profile-edit-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding:0.5rem 1.25rem;
}

.profile-edit-body .form-control.add-file {
    font-size:14px;
}

.profile-edit-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background-color: #fff;
    text-align: right;
    border-top:1px solid #dee2e6;
    padding:1rem;
}

.profile-edit-footer .btn-dark{
    font-size:16px;
    width:60px;
}

/*------ 활동 ----- */

.act-container-2 {
    padding: 1.25rem 1rem 1.75rem 1rem;
    background: #fff;
    margin-bottom: 1rem;
}

@media (min-width:575.98px) {
    .act-container-2 {
        padding: 1.5rem 2rem 2.5rem 2rem;
    }
}

.act-container-2 .act-title {
    margin-bottom: 0.25rem;
    line-height:1.2;
    font-size:16px;
}

@media (min-width:575.98px) {
    .act-container-2 .act-title {
        font-size:18px;
    }
}

.gosu-answer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom:1rem;
    margin-top:0.5rem;
}

@media (min-width:575.98px) {
    .gosu-answer-title {
        font-size: 18px;
    }
}


/*커뮤니티*/
.board-page-wrapper {
    display: flex;
    flex-direction: column; /* 세로 방향으로 정렬 */
    position: relative;
    height: 100vh; 
}

.wikirun-container.board {
    background: #fff;
    flex:1
}



.board-section-wrapper {
    margin-bottom: 3rem;
}

.board-section-topline {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin: 0rem 1rem 0.5rem 1rem;
    border-bottom: 1px solid #8b8b8b;
}

.board-section-title {
    padding-top: 0.5rem;
    padding-bottom: 0.3rem;
    font-weight:500;
    font-size:17px;
}

@media (min-width:575.98px) {
    .board-section-title {
        font-size:19px;
    }
}

.board-section-title.navy{
    color:#004581;
}

.board-section-title.orange{
    color:#EE534F
}

.board-section-title.darkgreen{
    color:#2B4625
}

.board-chev-icon {
    width:8px;
}

.profile-img-wrapper.board {
    width:41px; height:41px;
    margin-right: 10px;
}

@media (min-width:575.98px) {
    .profile-img-wrapper.board {
        width:41px; height:41px;
        margin-right:0px;
        margin-left: 12px;
    }
}

.profile-img.board {
    padding:3px;
    box-shadow: inset 0 0 0 0.1rem rgba(185, 185, 185, 1);
}

@media (min-width:575.98px) {
    .profile-img.board {
        padding:3px;
        box-shadow: inset 0 0 0 0.11rem rgba(185, 185, 185, 1);
    }
}

ul {
    list-style: none;
    line-height: 20px;
    padding: 0;
    margin: 0rem 1rem;
    box-sizing: border-box;
}

.board-list {
    border-bottom: 1px solid #E2E2E2;
    padding: 9px 0px 7px 0px;
}

@media (min-width:575.98px) {
    .board-list {
        padding: 12px 0px 10px 0px;
    }
    
}

.board-list-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.ask-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    overflow: hidden;
}

.author {
    display:flex;
    align-items:center;
    justify-content: start;
    max-width:200px;
    order:1;
}

@media (min-width:575.98px) {
    .author {
        justify-content: end;
        order:2
    }
}

.author a{
    order:1;    
}

@media (min-width:575.98px) {
    .author a{
        order:2
    }
}

.author-info {
    display: none;
    line-height: 1.1;
    overflow: hidden;
    white-space: nowrap;
    width: 116px;
    text-align: right;
}

@media (min-width:575.98px) {
    .author-info {
        display:inline-block;
    }
}

.author-info .name {
    font-size: 15px;
    font-weight: 400;
}

.author-info span {
    font-size: 12px;
    color: #999999;
}

.post-info {
    width: 100%;
    order:2
}

@media (min-width:575.98px) {
    .post-info {
        width: calc(100% - 200px);
        order:1
    }    
}

.post-info-container{
    width:100%;
}

@media (min-width:575.98px) {
    .post-info-container{
        display:flex;
        align-items:start;
        justify-content: start;
    }
}

.post-link {
    max-width:calc(100% - 40px);
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

@media (min-width:575.98px) {
    .post-link {
        max-width:calc(100% - 120px);
        margin-right:4px;
    }     
}

.post-title {
    font-size:15px;
    overflow: hidden;
    margin-bottom:2px;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    color:#232F3E;
    width:100%;
}

@media (min-width:575.98px) {
    .post-title {
        margin-bottom:3px;
    }  
}

.post-detail {
    display: flex;
}

@media (min-width:575.98px) {
    .post-detail {
        margin-left: 4px;
    }
}

.post-detail-author {
    display:flex;
    align-items:center;
    font-size:12px;
    margin-right:8px;
}

@media (min-width:575.98px) {
    .post-detail-author {
        display:none;
        margin-right:0px;
    }
}

.post-detail-author .name {
    max-width: 110px;
    overflow: hidden;
    text-wrap: nowrap;
}

.separator {
    margin: 0 3px;
}

.post-detail-action {
    display:flex;
    align-items:center;
}

@media (min-width:575.98px) {
    .post-detail-action {
        padding-bottom: 3px;
    }
}

.post-detail-action .action .date{
    color: #6d6d6d;
}

.post-detail-action .action{
    font-size: 12px;
    color: #4B5FC2;
}

@media (min-width:575.98px) {
    .post-detail-action .action{
        font-size: 14px; 
    }
}

.post-brief-text {
    display:none;
    font-size: 13px;
    color: #999999;
    overflow: hidden;
    width:100%;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

@media (min-width:575.98px) {
    .post-brief-text {
        display:block;
    }
}


/*----------- 게시판 each ------------*/

.board-section-headbox {
    margin: 0rem 1rem 0.5rem 1rem;
}

.board-section-action {
    display:flex;
    justify-content: space-between;
    align-items:end;
    padding-bottom:1rem;
}

.board-section-action .search {
    margin-top: 1rem;
}

.board-section-action .search input {
    width: 180px; /* 검색창 너비 */
    background: url('../images/icon/search-glass.png') no-repeat; /* 아이콘 배경 */
    background-position: 0px 1px;
    background-size: 22px; /* 아이콘 크기 */
    padding-left: 24px; /* 아이콘 크기 + 여유 공간 (아이콘 뒤에서 텍스트 시작) */
    outline: none;
    border: none;
    border-bottom: 1px solid #525252;
    border-radius: 0px;
    color:#232F3E;
    font-size: 1rem;
    line-height: 1.5; /* 텍스트 라인 높이 */
}

.board-section-action .search input::placeholder {
    color: #727272;
    font-size: 1rem;
}

.board-section-action .search input:focus {
    outline: none;
}

.board-section-action .write {
    padding: 0;
    display:flex;
    justify-content: end;
    align-items:center;
    font-size:14px;
}

/*----------- 게시판 내용 ------------*/

.board-section-wrapper.post {
    margin-bottom: 0rem;
}

.board-post-container {
    padding: 0.375rem 0rem 1.5rem 0rem;
    background: #fff;
    margin: 0rem 1rem 1.5rem 1rem;
}

.board-post-info {
    display:flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom:1.5rem;
}

.board-post-info .left{
    display:flex;
    align-items:center; 
}

.board-post-info .detail{
    margin-left: 0.5rem;
}

.board-post-info .detail .nickname {
    color: #2C2C2C;
    font-weight: 500;
    font-size: 16px;
}

.board-post-info .right{
    display:flex;
    align-items:center; 
}

.detail-info {
    display:flex;
    align-items: center;
}

.detail-info .date{
    font-size: 12px;
    color: #9A9A9A;
    margin-right: 0.5rem  
}

@media (min-width:575.98px) {
    .detail-info .date{
        font-size: 14px;
    }
}

.detail-info .click{
    font-size: 12px;
    color: #9A9A9A;
}

@media (min-width:575.98px) {
    .detail-info .click{
        font-size: 14px;
    }
}

.detail-info .click span{
    margin-left: 0.25rem;
}


.board-post-info .right a{
    font-size: 12px;
    color: #9A9A9A;
}

@media (min-width:575.98px) {
    .board-post-info .right a{
        font-size: 14px;
    }
}

.board-post-info .right a:hover{
    text-decoration: underline;
}

.board-post-container .title{
    margin-bottom: 1rem;
    padding-bottom:1rem;
    line-height:1.3;
    font-size: 18px;
    font-weight:500;
    border-bottom:1px solid rgb(215, 215, 215);
}

@media (min-width:575.98px) {
    .board-post-container .title{
        font-size: 20px;
    }
}

.board-div{
    font-size:16px;
    line-height:1.6;
    color:#2C2C2C;
}

.board-div div{
    font-size:16px;
    line-height:1.6;
    color:#2C2C2C;
}

.board-div img{
    max-width:100%;
    padding:1rem 0rem;
}


/*-----------고수 소개 ------------*/

.gosu-list-container {
    display: flex;
    justify-content: start;
    align-items: center;
    overflow: hidden;
}

.gosu-img img {
    border-radius: 0.375rem;
    width: 70px;
    height: 70px;
    margin-right: 16px;
    border: 1px solid #a5a5a5;
}

.gosu-info {
    width: calc(100% - 84px);
    height:66px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.gosu-info .name {
    font-size:18px;
}

.gosu-info .brief-text {
    overflow: hidden;
    width: 100%;
}

.gosu-info .brief-text p {
    font-size: 15px;
    color: #999999;
    overflow: hidden;
    width:100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gosu-info .activity{
    display:flex;
    align-items:center; 
}


.gosu-info .activity .action{
    font-size: 12px;
    color: #FD7D96;
}

@media (min-width:575.98px) {
    .gosu-info .activity .action{
        font-size: 14px; 
    }
}

/* ----------- 공지 ----------- */

.notice-list {
    border-bottom: 1px solid #E2E2E2;
    padding: 9px 4px 7px 4px;
    background-color: #f9f9f9;
}

@media (min-width:575.98px) {
    .notice-list {
        padding: 12px 8px 10px 8px;
    }
    
}

.notice-info {
    width: 100%;
}

@media (min-width:575.98px) {
    .notice-info {
        width: calc(100% - 20px);
    }    
}

.notice-link {
    max-width:calc(100% - 20px);
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

@media (min-width:575.98px) {
    .notice-link {
        max-width:calc(100% - 20px);
        margin-right:4px;
    }     
}

.notice-mark {
    margin-right: 8px;
}

.notice-mark.green{
    color:#028174;
}

.notice-mark.pink{
    color:#F82C85;
}

/*----- 서머노트 -----*/
.note-modal-footer {
    padding-bottom:50px;
}

.note-frame {
    font-family: "Pretendard Variable";
    color: #2C2C2C;
}
.note-btn.dropdown-toggle::after {
    display: none !important; /* 중복된 드롭다운 숨기기 */
}

.note-link-dialog .form-check {
    display: none; /* 체크박스 숨기기 */
}

.sn-checkbox-open-in-new-window {
    display:none;
}

.sn-checkbox-use-protocol {
    display:none;
}

.note-modal-footer .btn.disabled,
.note-modal-footer .btn:disabled,
.note-modal-footer .note-btn-primary,
.note-modal-footer .note-btn-primary:focus {
    background-color: #212529;
    border-color: #212529;
    border-radius: 2rem;
}

.note-modal-footer .note-btn.disabled,
.note-modal-footer .note-btn[disabled],
.note-modal-footer .fieldset[disabled] 
.note-modal-footer .note-btn {
    opacity: 1;
}

.note-modal-title {
    font-size:18px;
    color:#2c2c2c
}

.note-form-label {
    font-size:16px;
    color:#2c2c2c;
    font-weight:400;
}

.note-modal-header {
    padding: 20px 15px 0px 15px;
    border: none;
}

@media (min-width:575.98px) {
    .note-modal-header {
        padding: 20px 20px 0px 20px;
        border: none;
    }    
}

.note-modal-body {
    padding: 10px 15px;
}

@media (min-width:575.98px) {
    .note-modal-body {
        padding: 20px 30px 20px 30px;
    }   
}
.note-form-group {
    padding-bottom: 10px;
}

.note-group-image-url {
    padding-bottom: 10px;
}

.note-video-url {
    margin-bottom: 10px;
}

.note-image-input {
    border-radius:8px;
}

.note-modal-body .note-input {
    border:1px solid #B9B9B9;
}

.note-modal-body .note-input:focus {
    border:1px solid #B9B9B9;
}

.note-modal-footer {
    padding:0px 15px 50px 15px;
}

.note-editor .note-editing-area .note-editable a {
    color:blue;
    text-decoration: underline;
}

.note-placeholder {
    color:#B9B9B9;
}

.note-modal-header .close {
    color:#2c2c2c;
    opacity:0.8
}

.note-dropdown-item {
    color:#333333 !important;
    text-decoration: none !important;
}