div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):focus-visible {
    box-shadow: 0 0 0 0 !important;
}
div:where(.swal2-icon).swal2-warning {
    color: #83B414 !important;
    border-color: #83B414 !important;
}
.swal2-cancel {
    margin-left:10px;
    border-color: #83B414;
    color:#83B414;
    font-size: 14px;
    font-weight: 600;
    line-height: 20.27px;
    padding: 9px 27px;
    border-radius: 6px;
}
.swal2-cancel:hover {
    color:white;
    background-color:#83B414;
}

.action.primary-solid {
    margin-top: 8px;
    font-size: 16px;
    height: 48px;
}

.fv-plugins-bootstrap5-row-valid .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--bs-form-invalid-color);
}
.fv-plugins-bootstrap5-row-invalid .invalid-feedback{
    display: inline-block;
    width: 100%;
    margin-top: .25rem;
    font-size: .775em;
    color: var(--bs-form-invalid-color);
}
.show__email_verifications{
    color:white;background: #83B414;padding:3px 10px 5px 10px;top:8px !important; border-radius: 8px;
    font-weight: 600 !important;font-size:16px !important;
}
.show__email_verifications .gray{
    background: gray;
}

.input-cover > .invalid-feedback {
    text-align: center !important;
}

.input-image > .add-span {
    line-height: 20.27px;
    font-size: 14px;
    font-weight: 400;
    color: #989898;
    text-align: center;
}

.ph-dropdown-menu--item, .view__portfolio{
    cursor: pointer;
}

.swal2-confirm {
    min-width:90px;
}
.avatar_circle{
    border-radius: 50%;
}
.portfolio-bold-text{
    font-weight: 700;
    font-size: 14px;
    line-height: 20.27px;
    padding-top:20px;
    padding-bottom:5px;
}
#thumbnail_slider {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail-item {
    cursor: pointer;
    display: inline-block;
}

.thumbnail-item img {
    width: 200px;
    height: auto;
    display: block;
}

/* 모바일 크기일 때 숨김 */
@media (max-width: 768px) {
    #thumbnail_slider {
        display: none; /* 모바일 화면에서는 숨김 처리 */
    }
    .slide-item {
        display: block !important; /* 모바일 화면에서는 숨김 처리 */
        margin-top:10px;
    }
}

.file-upload-button {
    min-width:80px;
    text-align:center;
}

#job-list .job {
    max-width:1200px;
}
#job-list .job .name h3{
    max-width:800px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 1000px) {
    #job-list .job .name h3 {
        max-width:240px;
    }
}
.radio-box {
    border-radius:30px !important;
}
.hand-pointer {
    cursor:pointer;
}

.edit-post{
    position: relative;right:0px;
}

@media (max-width: 1200px) {
    .edit-post {
        position: absolute;
        right: 20px;
    }
}

.avatr-80 {
    width:80px;
    border-radius: 50%;
    object-fit: cover;
}
#gnb-chat-avator-title {
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.non-active {
    display:none !important;
}

.message-noti {
    color:black;margin-top:30px;margin-bottom:30px;
}
.max-width-130 {
    max-width:130px;
}
.margin-top--5px {
    margin-top:-5px
}
#chat-starred, .recent-searches-item-pc, .recent-searches-item-mobi {
    cursor:pointer
}
.common-badge{
    color: #FF8A00;
    font-size: 12px;
    font-weight: 700;
    line-height: 17.38px;
    padding: 6px 10px;
    background-color: #FFF6EB;
    max-height: 28px;
    margin-left: 8px;
}
.item-line-ellipsis {
    max-width:150px; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
}

.line-change{
    word-wrap: break-word;overflow-wrap: break-word;white-space: normal;max-width: 90%;
}

.gnb-focus {
    color:#121212 !important;
}
.gnbm-focus {
    color: #83B414;
}

.select2-search__field {
    padding: 14px 16px;
    border: 1px solid #DBDEE9;
    border-radius: 4px;
    height: 48px;
    width:100%;
    outline: none; /* 기본 브라우저 포커스 스타일 제거 */
}

.select2-search__field:focus {
    border: 1px solid #DBDEE9;
}

.center-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* 배경보다 위 */
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dot-1 {
    z-index: 2;
    animation: rotateAnimation 10s linear infinite;
}

.dot-2 {
    z-index: 3;
    animation: reverseRotateAnimation 20s linear infinite;
}

.dot-3 {
    z-index: 4;
    animation: rotateAnimation 30s linear infinite;
}

.dot-4 {
    z-index: 5;
    animation: rotateAnimation 30s linear infinite;
}

.dot-5 {
    z-index: 6;
    animation: reverseRotateAnimation 30s linear infinite;
}

@media (max-width: 991px) {
    .center-wrapper {
        z-index: -1;
    }
}

@media (min-width: 992px) {
    .center-wrapper {
        z-index: 1;
    }
}

@keyframes rotateAnimation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg); /* 처음 위치 */
    }
    25% {
        transform: translate(-50%, -50%) rotate(90deg); /* 90도 회전 */
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg); /* 180도 회전 */
    }
    75% {
        transform: translate(-50%, -50%) rotate(270deg); /* 270도 회전 */
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg); /* 360도 회전 */
    }
}

@keyframes reverseRotateAnimation {
    0% {
        transform: translate(-50%, -50%) rotate(360deg); /* 처음 위치 */
    }
    25% {
        transform: translate(-50%, -50%) rotate(270deg); /* 90도 회전 */
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg); /* 180도 회전 */
    }
    75% {
        transform: translate(-50%, -50%) rotate(90deg); /* 270도 회전 */
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg); /* 360도 회전 */
    }
}
.deadline {
    text-decoration : line-through !important;
    background-color:#F9FBFF !important;
}
