ㅡpagination-bullet-active {
    background-color: var(--purple);
}

/* 로그인페이지 CSS */

.testLogin-wrap {
    width: 100%;
    height: 100%;
    background-image: url(../../resources/img/common/loginBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-color: rgba(0, 0, 0, 0.1);
    background-blend-mode: darken
}

.testLogin-wrap .inner {
    width: 100%;
    height: 100%;
    padding: 2rem 10rem;
    color: #fff;
}

.testLogin-wrap .inner .login-inner-wrapper {
    width: 45%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testLogin-wrap .inner .login-inner-wrapper .login-inner-mainText {
    font-size: 12rem;
    font-weight: 900;
    text-align: center;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper,
.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper,
.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper {
    width: 100%;
    height: 80vh;
    overflow-y: scroll;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper::-webkit-scrollbar,
.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper::-webkit-scrollbar,
.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper::-webkit-scrollbar-thumb,
.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper::-webkit-scrollbar-thumb,
.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper::-webkit-scrollbar-thumb {
    background: transparent;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper {
    width: 100%;
    padding: 10rem 5rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #424242;
    box-shadow: 4px 4px 10px #303030;
    backdrop-filter: blur(10px);
    border-radius: 1rem;

    position: absolute;
    top: 60%;
    left: 0;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .id-form-wrap label,
.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .pw-form-wrap label {
    font-size: 1.6rem;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .id-form-wrap input,
.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .pw-form-wrap input {
    background-color: transparent;
    border: 1px solid #808080;
    outline: none;
    color: #fff;
    padding: 2rem 1rem;
    font-size: 1.6rem;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .id-form-wrap input:focus,
.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .pw-form-wrap input:focus {
    border: 1px solid #fff;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .find-account {
    text-align: right;
    cursor: pointer;
    transition: .2s;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .find-account:hover {
    color: var(--new-purple);
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .signIn-button {
    width: 100%;
    background-color: var(--darkPurple);
    border: none;
    border-radius: 1rem;
    outline: none;
    padding: 2rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    transition: .2s;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .signIn-button:hover {
    background-color: var(--purple);
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .signUp-wrap .signUp-button {
    cursor: pointer;
    transition: .2s;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .signUp-wrap .signUp-button:hover img {
    animation: bounce 1s ease-in-out infinite;

}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .signUp-wrap .signUp-button:hover {
    color: var(--new-purple);
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .signUp-wrap img {
    width: 12px;
    height: 12px;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .login-form-logo,
.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper .findAccount-form-logo {
    cursor: pointer;
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .login-form-logo,
.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper .findAccount-form-logo,
.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper .signUp-form-logo {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.testLogin-wrap .inner .login-inner-wrapper .login-wrapper .login-form-logo img,
.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper .findAccount-form-logo img,
.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper .signUp-form-logo {
    width: 200px;
}

/* 로그인 페이지 > 아이디 비밀번호 찾기 ▼ */
.testLogin-wrap .inner .findAccount-inner-wrapper {
    width: 45%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-inner-mainText {
    font-size: 10rem;
    font-weight: 900;
    text-align: center;
}

.testLogin-wrap .inner .findAccount-inner-wrapper .findAccount-wrapper {
    width: 100%;
    padding: 5rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #424242;
    box-shadow: 4px 4px 10px #303030;
    backdrop-filter: blur(10px);
    border-radius: 1rem;

    position: absolute;
    top: 60%;
    right: 0;
}

/* 로그인 페이지 > 회원가입 ▼ */
.testLogin-wrap .inner .signUp-inner-wrapper {
    width: 45%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testLogin-wrap .inner .signUp-inner-wrapper .signUp-inner-mainText {
    font-size: 10rem;
    font-weight: 900;
    text-align: center;
}

.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper {
    width: 100%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #424242;
    box-shadow: 4px 4px 10px #303030;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    position: absolute;
    top: 60%;
    right: 0;
}

.testLogin-wrap .inner .signUp-inner-wrapper .signUp-wrapper .signUp-wrap {
    position: relative;
}

.signUp-wrap .type-wrap .user-select-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.signUp-wrap .type-wrap .goToBack-button {
    width: 100%;
    padding: 1rem;
    color: #000;
    background-color: #e0e0e0;
    border-radius: 1rem;
    border: none;
    outline: none;
}

.signUp-wrap .join-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signUp-wrap .join-wrap input {
    background-color: transparent;
    border: 1px solid #808080;
    color: #fff;
}

.signUp-wrap .join-wrap select {
    border: 1px solid #808080;
    color: #fff;
}

.signUp-wrap .join-wrap option {
    color: #000;
}

.signUp-wrap .join-wrap .join-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signUp-wrap .joinModal {
    width: 100%;
    max-width: 500px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(50%, -50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: #111;
    color: #fff;
    padding: 2.4rem;
    border-radius: 2rem;
}

.signUp-wrap .joinModal .modal-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signUp-wrap .joinModal .modal-wrap .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signUp-wrap .joinModal .modal-wrap .modal-header .modal-title {
    margin: 0 auto;
}

.signUp-wrap .joinModal .modal-wrap .modal-header img {
    width: 20px;
    height: 20px;
}

.signUp-wrap .joinModal .modal-wrap .modal-body button {
    margin-top: 3rem;
    background-color: var(--darkPurple);
    color: #fff;
    transition: .2s;
}

.signUp-wrap .joinModal .modal-wrap .modal-body button:hover {
    background-color: var(--purple);
}

/* 로그인페이지 CSS */



/* 인트로 */
.intro-logo {
    color: white;
    font-size: 4rem;
    letter-spacing: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
    z-index: 9999;
}

.intro-logo.show {
    /* transform: translate(-50%, -50%) scale(1); */
    opacity: 1;
}

.intro-logo.hide {
    opacity: 0;
    transition: opacity 1s ease;
}

/* 위아래 분할 애니메이션 */
.split {
    position: absolute;
    width: 100%;
    height: 50%;
    background: var(--new-dark);
    z-index: 9998;
    transition: transform 1s ease;
}

.split.top {
    top: 0;
    transform: translateY(0%);
}

.split.bottom {
    bottom: 0;
    transform: translateY(0%);
}

.split.open.top {
    transform: translateY(-100%);
}

.split.open.bottom {
    transform: translateY(100%);
}

/* 인트로 */


/* 메인페이지의 페이지네이션 */





/* 전체 wrapper의 swiper */
.swiper-pagination {
    background-color: #303030;
    border-radius: 2rem;
    padding: 2rem .5rem;
    transition: .2s;
}

.swiper-pagination:hover {
    padding: 2rem 2rem;
}

.swiper-pagination:hover .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.wrapperSwiper .swiper-pagination-bullet {
    background-color: #c0c0c0;
    transition: .2s;
}

.wrapperSwiper .swiper-pagination-bullet:not(:last-child) {
    margin-bottom: 1.5rem !important;
}

/* 활성화된 페이지네이션 */
.wrapperSwiper .swiper-pagination-bullet-active {
    background-color: var(--purple);
}

/* 메인페이지의 페이지네이션 */


/* section01 css ▼ ****************************************************************************************************** */
.wrapperSwiper,
.sec1,
.sec2 {
    height: 100vh;
}

.sec1 {
    padding: 0 2rem;
    position: relative;
    background-color: #111;
    color: #fff;
}

.sec1 .background-video {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    inset: 0;
    z-index: 2;
}

.sec1 .background-video video {
    width: 100%;
    filter: brightness(75%);
}

.sec1 .contents-area {
    width: 100%;
    max-width: 1480px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 3;
}

.sec1 .contents-area .main-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: auto 0;
    margin-bottom: 1rem;
}

.sec1 .contents-area .main-text-wrapper .swiper-wrapper {
    width: fit-content;
    padding: 0.5rem 3rem;
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    border: 1px solid #424242;
    border-radius: 1rem;
    font-size: 6rem;
    font-weight: 900;
    text-align: center;
}

.sec1 .contents-area .main-text-wrapper .mySwiper {
    max-height: 100px;
    overflow: hidden;
    margin-left: unset;
}

.sec1 .contents-area .main-text-wrapper .main-text {
    font-size: 6rem;
    font-weight: 900;
}

.sec1 .contents-area .sub-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.sec1 .contents-area .sub-text-wrapper .logo-text {
    font-size: 2.4rem;
    color: #808080;
    font-weight: 900;
}

.sec1 .contents-area .sub-text-wrapper .apply-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background-color: transparent;
    color: #fff;
    border: none;
    background-color: var(--purple);
    border-radius: 1rem;
    font-weight: 500;
    transition: .2s;
}

.sec1 .contents-area .sub-text-wrapper .apply-btn:hover {
    padding: 2rem 5rem;
}

.sec1 .contents-area .sub-text-wrapper .apply-btn img {
    width: 12px;
    height: 12px;
}


/* section02 css ▼ ****************************************************************************************************** */

.sec2 {
    width: 100%;
    height: 100vh;
    margin-top: 20rem;
    position: relative;
    display: flex;
    align-content: center;
}

.sec2 .sec2-inner-wrapper {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sec2 .sec2-inner-wrapper .text-wrap .sub-title-wrap .sub-title-text {
    font-size: 1.4rem;
    color: #fff8;
    margin-right: 1rem;
}

.sec2 .sec2-inner-wrapper .text-wrap .sub-title-wrap .accentText {
    font-size: 2rem;
    color: var(--purple);
}

.sec2 .sec2-inner-wrapper .text-wrap .sub-title {
    font-size: 4rem;
}

.sec2 .sec2-inner-wrapper .contents-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content {
    width: 100%;
    height: 470px;
    border: 1px solid #252525;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content:hover {
    border: 1px solid var(--darkPurple);
}

.sec2 .sec2-inner-wrapper .contents-wrap .content:hover .arrow-icon {
    display: block;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content:hover .bg-img {
    scale: 1.05;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content:hover .blur {
    display: block;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content .arrow-icon {
    display: none;
    width: 14px;
    height: 14px;
    opacity: 70%;
    position: absolute;
    right: .5rem;
    bottom: 1rem;
    animation: arrowAni 1.5s infinite;
    z-index: 2;
}

@keyframes arrowAni {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.sec2 .sec2-inner-wrapper .contents-wrap .content .bg-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(50%);
    transition: .3s;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content .blur {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    transition: .3s;
    z-index: 1;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content.c1 .bg-img {
    background-image: url(../../resources/img/common/sec2_img01.jpg);
}

.sec2 .sec2-inner-wrapper .contents-wrap .content.c2 .bg-img {
    background-image: url(../../resources/img/common/sec2_img02.jpg);
}

.sec2 .sec2-inner-wrapper .contents-wrap .content.c3 .bg-img {
    background-image: url(../../resources/img/common/sec2_img03.jpg);
    background-position-x: left;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content.c4 .bg-img {
    background-image: url(../../resources/img/common/sec2_img04.jpg);
}

.sec2 .sec2-inner-wrapper .contents-wrap .content .text-wrap {
    padding: 0 2rem;
    position: absolute;
    bottom: 2rem;
    left: 0;
    z-index: 2;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content .text-wrap .title-text {
    font-size: 1.6rem;
    margin-bottom: .5rem;
    color: #fff;
}

.sec2 .sec2-inner-wrapper .contents-wrap .content .text-wrap .description-text {
    font-size: 1.4rem;
    color: #fff8;
    word-break: keep-all;
}

/* section03 css ▼ ****************************************************************************************************** */
.sec3 {
    min-height: calc(100vh + 250px);
    display: flex;
    align-content: center;
    overflow: hidden;
}

.sec3 .sec3-inner-wrapper {
    width: 100%;
    height: 100vh;
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
}

.sec3 .sec3-inner-wrapper .text-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec3 .sec3-inner-wrapper .text-wrap .sub-title-wrap .sub-title-text {
    font-size: 1.4rem;
    color: #fff8;
    margin-right: 1rem;
}

.sec3 .sec3-inner-wrapper .text-wrap .sub-title-wrap .accentText {
    font-size: 2rem;
    color: var(--purple);
}

.sec3 .sec3-inner-wrapper .text-wrap .sub-title {
    font-size: 4rem;
}




/* banner */
.no-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1480px;
    height: 450px;
    border-radius: 2rem;
    overflow: hidden;
    color: #fff;
    margin: 0 auto;
    margin-top: 10rem;
}

.no-banner img,
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(80%);
}

/* 블러 오버레이 + 오른쪽으로 갈수록 옅어지는 마스크 */
.no-banner .banner-overlay,
.banner .banner-overlay {
    width: 70%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    mask-image: linear-gradient(to right, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 10rem;
}

.no-banner .page-title,
.banner .page-title {
    font-size: 6rem;
}

.no-banner .page-title-edit,
.banner .page-title-edit {
    font-size: 6rem;
    word-break: keep-all;
}

.no-banner .page-sub-title,
.banner .page-sub-title {
    font-size: 1.6rem;
}


/* 워크스페이스 > 어플리케이션 */
.appList-wrapper {
    padding: 0 2rem;
}

.appList-wrap {
    width: 100%;
    max-width: 1480px;
    min-height: 80vh;
    margin: 0 auto;
}

.appList-wrap .title-text {
    font-size: 3.2rem;
}

.app-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.app-card {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    padding: 3rem;
    background: linear-gradient(45deg, #333, #000);
    z-index: 1;
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(150deg, rgba(111, 66, 193, 1), rgba(0, 0, 0, 0), rgba(111, 66, 193, 1)) border-box,
        #000 content-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: 0.3s;
    opacity: 0;
}

.app-card:hover::before {
    opacity: 1;
}


.app-card .icon-area img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.app-card .text-wrap .title {
    font-size: 16px;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: left;
}

.app-card .text-wrap .desc {
    font-size: 1.4rem;
    color: #fff8;
    word-break: keep-all;
}

.app-card .goBtn {
    width: fit-content;
    margin-top: auto;
    margin-left: auto;
    padding: 1rem 3rem;
    border: 1px solid #808080;
    background: #111;
    color: #808080;
    border-radius: 1rem;
    transition: all .3s;
}

.app-card .goBtn:hover {
    border: 1px solid var(--purple);
    color: #fff;
    background: var(--purple) !important;
}


.no-cloud-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.no-cloud-wrap p {
    font-size: 1.6rem;
}

.no-cloud-wrap button {
    margin-top: 3rem;
    padding: 2rem 4rem;
    background-color: #2961DE;
    color: #fff;
    border-radius: 1rem;
    transition: .2s;
}

.no-cloud-wrap button span {
    letter-spacing: 0.5px;
}

.no-cloud-wrap button:hover {
    border-radius: 2rem;
}


/* 워크스페이스 > 클라우드 */
.cloud-wrap {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    margin-bottom: 10rem;
    position: relative;
}

.cloud-wrap .my-cloud-title-text {
    font-size: 3.2rem;
}

.cloud-information-wrapper {
    display: flex;
    flex-direction: column;
}

.cloud-information-wrapper .table-head-wrap {
    padding: 2rem 0;
    border-top: 2px solid #424242;
    border-bottom: 2px solid #424242;
}

.cloud-information-wrapper .table-head-wrap,
.cloud-information-wrapper .table-body-wrap .grid-body>div {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
}

.cloud-information-wrapper .table-body-wrap .grid-body>div {
    padding: 1.5rem 0;
}

.cloud-information-wrapper .table-body-wrap .grid-body>div:hover {
    background-color: #141414;
}

.cloud-information-wrapper .table-body-wrap .grid-body>div:not(:last-child) {
    border-bottom: 1px solid #424242;
}

.cloud-information-wrapper .table-body-wrap .grid-body>div button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}

.cloud-information-wrapper .table-body-wrap .grid-body>div button span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--purple);
}

.cloud-detail-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.cloud-detail-wrapper .background-blur {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: 998;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap {
    width: calc(100% - 40px);
    max-width: 800px;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    background-color: #111;
    box-shadow: 0px 5px 10px #252525;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .top-wrap {
    display: flex;
    justify-content: space-between;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .top-wrap .title-text {
    font-size: 3.2rem;
    color: #fff8;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .top-wrap .close-button {
    width: 16px;
    height: 16px;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .button-wrap {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .button-wrap button {
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 2px solid #222;
    color: #fff;
    transition: .2s;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .button-wrap button.active {
    background-color: var(--darkPurple);
    border: 2px solid var(--darkPurple);
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-info-wrap,
.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-spec-wrap,
.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-app-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-info-wrap div,
.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-spec-wrap div,
.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-app-wrap div {
    background-color: #202020;
    color: #fff;
    border-radius: 1rem;
    padding: 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-app-wrap .application-wrap {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-app-wrap .application-wrap .text-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    padding: 0;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-app-wrap .application-wrap button {
    padding: 1rem;
}

.cloud-detail-wrapper .cloud-detail-inner-wrap .content-wrap .content-cloud-app-wrap .application-wrap button img {
    width: 16px;
    height: 16px;
}

/* .enroll-page .inner-wrapper.add-padding {
    padding: 0 2rem;
}

.cloud-wrap {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    margin-bottom: 10rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.cloud-wrap .my-cloud-title-text {
    font-size: 3.2rem;
}

.cloud-wrap .cloud-inner-wrap {
    display: flex;
    gap: 2rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-list {
    width: 100%;
    height: auto;
    overflow-y: auto;
    background-color: #141414;
    border-radius: 2rem;
    padding: 2rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-list h3 {
    font-size: 2.4rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-list .grid-head,
.cloud-wrap .cloud-inner-wrap .cloud-list .grid-row {
    display: flex;
}

.cloud-wrap .cloud-inner-wrap .cloud-list .grid-head>p,
.cloud-wrap .cloud-inner-wrap .cloud-list .grid-row>p {
    width: 30px;
}

.cloud-wrap .cloud-inner-wrap .cloud-list .grid-head>div,
.cloud-wrap .cloud-inner-wrap .cloud-list .grid-row>div {
    display: grid;
    grid-template-columns: repeat(7, 1fr) !important;
}

.cloud-wrap .cloud-inner-wrap .cloud-list .grid-row {
    padding: 2rem 0;
    transition: .2s;
}

.cloud-wrap .cloud-inner-wrap .cloud-list .grid-row:not(:last-child) {
    margin-bottom: 2rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-list .grid-row:hover {
    background-color: #252525;
    border-radius: 1rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information>div {
    width: 400px;
    min-height: 150px;
    border-radius: 2rem;
    background-color: #141414;
    box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    position: relative;
    transition: .2s;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information>div:nth-child(1) td,
.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information>div:nth-child(3) td {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information>div:nth-child(1) td::before,
.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information>div:nth-child(3) td::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #2961DE;
    border-radius: 100%;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information>div:nth-child(2)>p {
    height: 100%;
    color: #7c7c7c;
    font-size: 1.6rem;
    font-weight: 600;
    align-content: center;
    text-align: center;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information h3 {
    font-size: 2.4rem;
    color: #c0c0c0;
    font-weight: 500;
    position: absolute;
    top: -3rem;
    left: 0;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information .application-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information .application-wrapper:not(:last-child) {
    margin-bottom: 1rem;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information .application-wrapper .application-info-wrap {
    border: 1px solid #454545;
    border-radius: 1rem;
    background-color: #141414;
    padding: 2rem;
    cursor: pointer;
    transition: .2s;
}


.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information .application-wrapper .application-info-wrap:hover {
    background-color: #252525;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information .application-wrapper .application-info-wrap .desc {
    flex-wrap: nowrap;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .selected-cloud-information .button-wrap {
    display: flex;
    gap: 1.6rem;
    justify-content: end;
    align-items: end;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .button-wrap button {
    background-color: #2961DE;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: .2s;
}

.cloud-wrap .cloud-inner-wrap .cloud-information-wrap .button-wrap button:hover {
    background-color: #4c73fc;
}

.enroll-page .inner-wrapper #terminal-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.enroll-page .inner-wrapper #terminal-wrap .terminal-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 98;
}

.enroll-page .inner-wrapper #terminal-wrap .terminal {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    padding: 2rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

    background-color: #fff;
    color: #000;
    z-index: 99;
}

.enroll-page .inner-wrapper #terminal-wrap iframe {
    border: 1px solid #e6e6e6 !important;
    border-radius: 1rem;
    padding: 1rem;
}

.enroll-page .inner-wrapper #terminal-wrap .close-button {
    width: 20px;
    height: 20px;
    display: block;
    min-height: unset;
    margin-left: auto;
    margin-bottom: 2rem;
} */



/* 클라우드 서비스 > 클라우드 신청 */

.cloudApply-wrap {
    width: 100%;
}

.cloudApply-wrap .inner-wrapper {
    width: 100%;
    padding: 0 2rem;
}

.cloudApply-wrap .inner-wrapper .wrapper {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap,
.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap,
.cloudApply-wrap .inner-wrapper .wrapper .application-wrap {
    display: flex;
    margin-bottom: 15rem;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap>p,
.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap>p,
.cloudApply-wrap .inner-wrapper .wrapper .application-wrap>p {
    display: inline-block;
    flex: 1 1 10%;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap .spec-inner-wrap,
.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap,
.cloudApply-wrap .inner-wrapper .wrapper .application-wrap .application-inner-wrap {
    border-top: 1px solid #303030;
    padding-top: 2rem;
    flex: 1 1 90%;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap .spec-inner-wrap .select-wrap {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
    color: #efefef;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap .spec-inner-wrap .select-wrap .selectForm-box-wrap {
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap .spec-inner-wrap .select-wrap .selectForm-box-wrap .selectForm-box select {
    color: #efefef;
    width: 100%;
    min-width: 160px;
    min-width: 200px;
}

.cloudApply-wrap .inner-wrapper .wrapper .spec-wrap .spec-inner-wrap .select-wrap .selectForm-box-wrap .selectForm-box select option {
    color: #000;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row {
    display: flex;
    gap: 1rem;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row label {
    flex: 1 0 10%;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row input {
    width: 100%;
    background-color: #141414;
    border: 1px solid #424242;
    color: #fff;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row textarea {
    background-color: #141414;
    border: 1px solid #424242;
    color: #fff;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap {
    flex: 1 1 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap p {
    display: flex;
    width: 100%;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap .startDate-form,
.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap .endDate-form {
    width: 100%;
    display: flex;
    padding: 1rem 2rem;
    border: 1px solid #424242;
    border-radius: 1rem;
    background-color: #141414;
    position: relative;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap .startDate-form .calendar-wrap,
.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap .endDate-form .calendar-wrap {
    position: absolute;
    top: 100%;
    right: 0;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row #orgNm,
.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row #org-department {
    background-color: #252525;
    color: #808080;
}

.cloudApply-wrap .inner-wrapper .wrapper .utill-wrap .utill-inner-wrap .form-row .utill-form-wrap .wave {
    margin: 0 2rem;
}

.cloudApply-wrap .inner-wrapper .wrapper .application-wrap .application-inner-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cloudApply-wrap .inner-wrapper .wrapper .application-wrap .application-inner-wrap .application-select-wrap {
    border: 1px solid #424242;
    border-radius: 1rem;
    cursor: pointer;
    transition: .2s;
}

.cloudApply-wrap .inner-wrapper .wrapper .application-wrap .application-inner-wrap .application-select-wrap.selected {
    background-color: var(--darkPurple);
}

.cloudApply-wrap .inner-wrapper .wrapper .application-wrap .application-inner-wrap .application-select-wrap .img {
    display: block;
    width: 32px;
    height: 32px;
    background-color: #303030;
    margin-bottom: 1rem;
}

.cloudApply-wrap .inner-wrapper .wrapper .application-wrap .application-inner-wrap .application-select-wrap .name {
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.6rem;
}

/* 클라우드 서비스 > 클라우드 신청내역 */
.status-approved {
    background-color: #b8ecc4;
    color: #000;
}

.status-rejected {
    background-color: #f8c2c7;
    color: #000;
}

.status-pending {
    background-color: #ffeeb5;
    color: #000;
}

.status-expired {
    background-color: #b1c3e4;
    color: #000;
}

.status-cancelled {
    background-color: #fcc8c8;
    color: #000;
}

.enroll-page {
    width: 100%;
    padding: 0 2rem;
}

.enroll-page .main-title-text {
    display: block;
    width: 100%;
    max-width: 1480px;
    font-size: 3.2rem;
    margin: 0 auto;
    margin-top: 5rem;
}

.enroll-page .enroll-page-inner {
    width: 100%;
    max-width: 1480px;
    min-height: 50vh;
    margin: 0 auto;
    margin-top: 1rem;
}

.enroll-page .search-wrap {
    flex-wrap: nowrap;
}

.enroll-page .search-wrap .notice-count {
    white-space: pre;
    font-weight: 900;
}

.enroll-page .search-wrap .notice-count .accent {
    font-size: 2rem;
    margin: 0 .2rem;
    color: var(--purple);
}

.enroll-page .search-wrap .search-zone {
    width: 100%;
    display: flex;
    justify-content: end;
}

.enroll-page .search-wrap .search-zone .form-wrap {
    width: 100%;
    min-height: unset !important;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.enroll-page .search-wrap .search-zone .startDate-form,
.enroll-page .search-wrap .search-zone .endDate-form {
    width: 100%;
    max-width: 200px;
    height: 40px;
    border-radius: 1rem;
    border: none;
    background-color: #141414;
    padding: 1rem;
    position: relative;
}

.enroll-page .search-wrap .search-zone .startDate-form>p,
.enroll-page .search-wrap .search-zone .endDate-form>p {
    font-weight: 500;
}

.enroll-page .search-wrap .search-zone select {
    background-color: #141414;
    border: none;
    outline: none;
    color: #fff;
}

.enroll-page .search-wrap .search-zone select option {
    color: #000;
}

.enroll-page .search-wrap .search-zone .startDate-form .calendar-wrap,
.enroll-page .search-wrap .search-zone .endDate-form .calendar-wrap {
    position: absolute;
    top: 100%;
    right: -32px;
    z-index: 9;
}

.enroll-page .search-wrap .search-zone .find-button {
    padding: 1rem 4rem;
    background-color: #193779;
    color: #fff;
    border: none;
    border-radius: 1rem;
    word-break: keep-all;
    transition: .2s;
}

.enroll-page .search-wrap .search-zone .find-button:hover {
    background-color: #2961DE;
}

.enroll-page .enroll-table thead tr {
    border-top: 1px solid #303030;
}

.enroll-page .enroll-table thead tr th {
    padding: 2rem 1rem;
    background-color: transparent;
}

.enroll-page .enroll-table tbody .enroll-table-tbody-tr:hover {
    background-color: #141414;
}

.enroll-page .enroll-table tbody .enroll-table-tbody-tr td:nth-child(6) {
    display: block;
    margin: 1rem 0;
    border-radius: 2.5rem;
}

.enroll-page .enroll-table th,
.enroll-page .enroll-table td {
    border: none;
}

.paginationWrap .applyBtn {
    padding: 1rem 3rem;
    background-color: var(--darkPurple);
    color: #fff;
    border-radius: 1rem;
    transition: .2s;
}

.paginationWrap .applyBtn:hover {
    background-color: var(--purple);
    color: #fff !important;
}


/* 클라우드 서비스 > 클라우드 신청내역 상세페이지 */
.enroll-edit-wrap {
    padding: 0 2rem;
}

.enroll-edit-wrap .enroll-edit-inner {
    width: 100%;
    max-width: 1480px;
    margin: auto;
}

.enroll-edit-wrap .enroll-edit-inner .banner .banner-overlay .page-title-text {
    font-size: 6rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper {
    display: flex;
    gap: 5rem;

    margin: 5rem 0 2rem;
    padding: 2rem;
    background-color: #141414;
    border: #333;
    border-radius: 1rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .spec-info-wrap,
.enroll-edit-wrap .enroll-edit-inner .info-wrapper .utill-info-wrap,
.enroll-edit-wrap .enroll-edit-inner .info-wrapper .application-info-wrap {
    width: 100%;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .spec-info-wrap>p,
.enroll-edit-wrap .enroll-edit-inner .info-wrapper .utill-info-wrap>p,
.enroll-edit-wrap .enroll-edit-inner .info-wrapper .application-info-wrap>p {
    font-size: 2rem;
    font-weight: 900;
    border-bottom: 1px solid #424242;
    padding-bottom: 1rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .spec-info-wrap .select-wrap .select-information .select-information-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .spec-info-wrap .select-wrap .select-information .select-information-desc {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .spec-info-wrap .select-wrap .select-information .select-information-desc::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--purple);
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .utill-info-wrap .utill-info-inner .inner-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .utill-info-wrap .utill-info-inner .inner-box .status-text {
    padding: 1rem 5rem;
    border-radius: 2rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .application-info-wrap .application-list-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .application-info-wrap .application-list {
    border: 1px solid #424242;
    background-color: #252525;
    border-radius: 1rem;
    padding: 2rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .application-info-wrap .application-list .img {
    display: block;
    width: 32px;
    height: 32px;
    background-color: #828282;
    margin-bottom: 1rem;
}

.enroll-edit-wrap .enroll-edit-inner .info-wrapper .application-info-wrap .application-list .application-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.enroll-edit-wrap .enroll-edit-inner {
    margin-bottom: 20rem;
}

.enroll-edit-wrap .enroll-edit-inner .button-wrap .approval-button-wrap,
.enroll-edit-wrap .enroll-edit-inner .button-wrap .wait-button-wrap,
.enroll-edit-wrap .enroll-edit-inner .button-wrap .etc-button-wrap {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.goToBack-button {
    padding: .5rem 4rem;
    color: #fff;
    border: none;
    border-radius: 1rem;
    background-color: #505050;
}

.return-button,
.cancle-button {
    padding: .5rem 4rem;
    color: #fff;
    border: none;
    border-radius: 1rem;
    background-color: rgb(109, 17, 17);
}

.edit-button {
    padding: .5rem 4rem;
    color: #fff;
    border: none;
    border-radius: 1rem;
    background-color: #193779;
}

.registration-button {
    padding: .5rem 4rem;
    color: #fff;
    background-color: var(--darkPurple);
    border-radius: 1rem;
    transition: .2s;
}

.registration-button:hover {
    background-color: var(--purple);
}


/* 사용자설정 */
.mypage-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mypage-wrap .mypage {
    width: 100%;
    max-width: 800px;
}

.mypage-wrap .mypage .mypage-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
}

.mypage-wrap .mypage .mypage-content {
    width: 100%;
    display: flex;
    gap: 2rem;
}

.mypage-wrap .mypage .tab-menu {
    display: flex;
    flex-direction: column;
    /* border-bottom: 2px solid #939393; */
    margin-bottom: 20px;
    flex: 0 0 15%;
}

.mypage-wrap .mypage .tab-button {
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
}

.mypage-wrap .mypage .tab-button.active {
    color: var(--purple);
    font-weight: 700;
    /* border: 2px solid #939393; */
    /* border-bottom: none; */
}

.mypage-wrap .mypage .tab-content {
    width: 100%;
    margin-top: 10px;
}

.mypage-wrap .mypage .form-group {
    margin-bottom: 15px;
}

.mypage-wrap .mypage .form-group input {
    margin-top: 5px;
    outline: none;
    background-color: #eee;
    color: #333;
}

.mypage-wrap .mypage .form-group input:disabled {
    background-color: #424242;
    color: #ccc;
}

.mypage-wrap .mypage .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #303030;
    border-radius: 4px;
}


.mypage-wrap .mypage .mypage-content .modify-button {
    width: 100%;
    background-color: var(--purple);
    padding: 1.5rem;
    border-radius: 1rem;
    color: #fff;
    margin-top: 2rem;
}









.border-table {
    border-top: 2px solid #787878;
    border-bottom: 2px solid #787878;
}

.border-table th,
.border-table td {
    border: 1px solid #e6e6e6;
}

.border-table th:first-child,
.border-table td:first-child {
    border-left: none;
}

.border-table th:last-child,
.border-table td:last-child {
    border-right: none;
}

.grid-head,
.grid-row {
    padding: 2rem 0;
    border-top: 1px solid #424242;
}

.grid-body {
    margin-bottom: 1rem;
}

.grid-body:last-child {
    margin-bottom: 0;
}

.grid-body[open] summary.grid-row {
    border: 1px solid;
    background-color: #f8f8f8;
    font-weight: bold;
}

.grid-row {
    border: 1px solid #424242;
    border-radius: 1rem;
    align-items: center;
}

/* .login-wrap {
    width: 100%;
    max-width: 500px;
    border-radius: 3rem;
    padding: 3rem;
} */

/* .join-wrap,
.type-wrap {
    width: 700px;
    border-radius: 3rem;
    padding: 3rem;
} */

.type-btn {
    height: 200px;
    border-radius: 3rem;
    font-size: 2rem;
    color: #ffffff;
    background-repeat: no-repeat;
    background-position: bottom right, center;
    background-size: 55%, 100%;
}

.type-btn.common {
    background-image:
        url(../img/common/common.png),
        linear-gradient(130deg, #44a8fe, #4c73fc);
    background-size: 40%, 100%;

}

.type-btn.company {
    background-image:
        url(../img/common/company.png),
        linear-gradient(130deg, #8b79dd, #7051d3);
}

.enroll-table.notice-table,
.enroll-table.user-table {
    border-top: 1px solid #787878;
    border-bottom: 1px solid #787878;
}

.enroll-table.notice-table th,
.enroll-table.user-table th {
    border-bottom: 1px solid #787878;
}

.enroll-table.notice-table th,
.enroll-table.notice-table td,
.enroll-table.user-table th,
.enroll-table.user-table td {
    border: none;
    padding: 1.5rem 1rem;
}

.enroll-table.notice-table tr:hover {
    background-color: #efefef;
}

.notice-table td:nth-child(2) {
    text-align: left;
}


/* 고객센터 > 공지사항 */
.user-noticeList-Wrap {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
}

.user-noticeList-Wrap .notice-wrapper {
    width: 100%;
    max-width: 1480px;
    min-height: 50vh;
    margin: auto;
}

.user-noticeList-Wrap .notice-wrapper .notice-title-text {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 3rem;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper {
    width: 100%;
    max-width: 1480px;
    margin: auto;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 3rem;
    background-color: #303030;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper {
    display: flex;
    gap: 2rem;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper .type-select-box {
    background-color: #141414;
    color: #fff;
    padding: .5rem 3rem;
    border: none;
    outline: none;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper .type-select-box option {
    color: #000;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .notice-count-text .accent {
    font-size: 2rem;
    font-weight: 900;
    color: #7051d3;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper .search-zone {
    background-color: #141414;
    display: flex;
    border-radius: 1rem;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper input {
    padding: .5rem 2rem;
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper button {
    padding: .5rem 1rem;
    border-radius: 0 1rem 1rem 0;
    overflow: hidden;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrapper .search-wrapper button img {
    width: 16px;
    height: 16px;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul {
    width: 100%;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li:not(:last-child) {
    border-bottom: 1px solid #252525;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li:hover {
    background-color: #141414;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li .isNew {
    width: fit-content;
    background-color: #193779;
    padding: .2rem 1rem;
    color: #fff;
    border-radius: 2rem;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li .noticeType {
    width: fit-content;
    background-color: #424242;
    padding: .2rem 1rem;
    color: #fff;
    border-radius: 2rem;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li .noticeTitle {
    font-size: 1.6rem;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li .insertDt {
    color: #808080;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-li .arrow-icon {
    width: 16px;
    height: 16px;
}

.user-noticeList-Wrap .notice-wrapper .notice-inner-wrap .notice-ul .notice-v-else-text {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin: 10rem 0;
}

/* 공지사항 상세페이지 */
.user-noticeView-wrap {
    width: 100%;
    padding: 0 2rem;
}

.user-noticeView-wrap .user-noticeView-inner {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .title-wrapper {
    border-bottom: 1px solid #808080;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .title-wrapper .title-text {
    font-size: 5rem;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .title-wrapper .sub-wrap {
    display: flex;
    gap: 1.5rem;
    color: #808080;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .title-wrapper .sub-wrap .sub-text:first-child {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .title-wrapper .sub-wrap .sub-text:first-child::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #808080;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .notice-zone-wrapper {
    padding: 5rem 0;
    min-height: 50vh;
}

.user-noticeView-wrap .user-noticeView-inner .button-box .goToBack-button {
    padding: 1rem 5rem;
    background-color: var(--darkPurple);
    transition: .2s;
}

.user-noticeView-wrap .user-noticeView-inner .button-box .goToBack-button:hover {
    background-color: var(--purple);
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .navigation-wrap .prev-nav,
.user-noticeView-wrap .user-noticeView-inner tbody tr td .navigation-wrap .next-nav {
    display: flex;
    gap: 5rem;
    align-items: center;
    padding: 2rem 1rem;
    color: #808080;
    border-top: 2px solid #303030;
    cursor: pointer;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .navigation-wrap .prev-nav span img,
.user-noticeView-wrap .user-noticeView-inner tbody tr td .navigation-wrap .next-nav span img {
    filter: brightness(50%);
    transition: .2s;
}

.user-noticeView-wrap .user-noticeView-inner tbody tr td .navigation-wrap .prev-nav:hover img,
.user-noticeView-wrap .user-noticeView-inner tbody tr td .navigation-wrap .next-nav:hover img {
    filter: brightness(100%);
}



/* 고객센터 > 문의사항 */
.user-InquiryList-wrap {
    padding: 0 2rem;
}

.inquiry-wrapper {
    width: 100%;
    max-width: 1480px;
    min-height: 50vh;
    margin: auto;
}

.inquiry-wrapper .inquiry-title-text {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 3rem;
}

.inquiry-wrapper .inquiry-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 2px solid #303030;
    padding-bottom: 3rem;
}

.inquiry-wrapper .inquiry-inner-wrapper .inquiry-count-text .accent {
    font-size: 2rem;
    font-weight: 900;
    color: #7051d3;
}

.inquiry-wrapper .inquiry-inner-wrapper .search-zone {
    background-color: #141414;
    display: flex;
    border-radius: 1rem;
}

.inquiry-wrapper .inquiry-inner-wrapper .search-zone input {
    padding: .5rem 2rem;
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
}

.inquiry-wrapper .inquiry-inner-wrapper .search-zone button {
    padding: .5rem 1rem;
    border-radius: 0 1rem 1rem 0;
    overflow: hidden;
}

.inquiry-wrapper .inquiry-inner-wrapper .search-zone button img {
    width: 16px;
    height: 16px;
}

.inquiry-wrapper .inquiryList-wrapper .inquiryList-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #252525;
}

.inquiry-wrapper .inquiryList-wrapper .inquiryList-content:hover {
    background-color: #141414;
}

.inquiry-wrapper .inquiryList-wrapper .inquiryList-content:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.inquiry-wrapper .inquiryList-wrapper .inquiryList-content .arrow-icon {
    width: 16px;
    height: 16px;
}

.inquiry-wrapper .inquiryList-wrapper .inquiryList-content .inquiryTitle {
    font-size: 1.6rem;
}

.inquiry-wrapper .inquiryList-wrapper .inquiryList-content .creation-date {
    color: #808080;
}

.inquiry-wrapper .inquiryList-wrapper .inquiry-v-else-text {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin: 10rem 0;
}

.isAnswered-Yes {
    width: fit-content;
    color: var(--blue);
    font-weight: 900;
}

.isAnswered-No {
    width: fit-content;
    color: var(--red);
    font-weight: 900;
}

/* 문의사랑 등록페이지 */
.inquiryInsert-wrapper {
    padding: 0 2rem;
}

.inquiryInsert-wrapper .user-inquiryInsert {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.inquiryInsert-wrapper .user-inquiryInsert .user-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.inquiryInsert-wrapper .user-inquiryInsert input {
    background-color: #141414;
    color: #fff;
    border: none;
    outline: none;
    margin-top: 1rem;
}

.inquiryInsert-wrapper .user-inquiryInsert textarea {
    background-color: #141414;
    color: #fff;
    border: none;
    outline: none;
    margin-top: 1rem;
    min-height: 300px;
}

.inquiryInsert-wrapper .user-inquiryInsert button {
    padding: 1rem 3rem;
    border: none;
    border-radius: 1rem;
}

/* 문의사항 상세페이지 */
.user-inquiryView-wrap {
    padding: 0 2rem;
}

.user-inquiryView-wrap .user-inquiryView-inner {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-head {
    border-bottom: 2px solid #303030;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-head .user-inquiryView-head-title {
    font-size: 5rem;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-head .sub-wrap {
    display: flex;
    gap: 1.5rem;
    color: #808080;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-head .sub-wrap .sub-text:first-child {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-head .sub-wrap .sub-text:first-child::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #808080;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-body {
    border-bottom: 2px solid #303030;
    margin-bottom: 3rem;
    min-height: 50vh;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-inquiryView-wrap .user-inquiryView-inner .user-inquiryView-body .user-inquiryView-answer-wrapper .answer-inner-wrap {
    padding: 2rem;
    background-color: #141414;
    min-height: 20vh;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.user-inquiryView-wrap .user-inquiryView-inner .type-update-wrapper .title-wrap input,
.user-inquiryView-wrap .user-inquiryView-inner .type-update-wrapper .content-wrap textarea {
    background-color: #141414;
    color: #fff;
    outline: none;
    border: none;
}

.user-inquiryView-wrap .user-inquiryView-inner .type-update-wrapper .content-wrap {
    margin: 5rem 0;
}

.user-inquiryView-wrap .user-inquiryView-inner .type-update-wrapper .content-wrap textarea {
    min-height: 50vh;
}

.user-inquiryView-wrap .button-wrapper {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding-bottom: 5rem;
}