:root {
    --primary-blue : #7991CA;

    --font-black01 : #3D3D3D;
    --font-black02 : #505050;
    --font-black03 : #363636;
    --font-black04 : #484848;
    --font-black05 : #656565;
    --font-black06 : #0A0A0A;
    --font-black07 : #6A6A6A;

    --font-gray01 : #9F9F9F;
    --font-gray02 : #73788D;

    --font-orange01 : #F3AF49;

    --font-green01 : #31BD89;
    --font-green02 : #0E4B2F;

    --font-red01 : #FD6262;

    --bg-gray01 : #EEEEEE;
    --bg-lightBlue : #EBF3FF;
    --bg-lightBlue02 : #F4F9FF;
    
    --bg-orange01 : #FFEFD2;
    
    --bg-green01 : #D8EFE7;

    --border-lightBlue01 : #C9D9EB; 
    --border-lightBlue02 : #F4F6FF; 
}
:focus {
    outline-color: black;
}
/* header style */
.header__top {
    height: 10rem;
    background-color: #13161C;
    position: relative;
    box-shadow: 0 .5rem 1rem rgba(137, 152, 225, 0.1);
}
.header-logo {
    text-align: center;
    margin: 0 auto;
}
.header-logo__anchor {
    display: inline-block;
    line-height: 10rem;
}
.header-logo__img {
    width: 8rem;
    vertical-align: middle;
}
/* header left style */
.header__left {
    position: fixed;
    left: 0;
    top: 0;
    width: 15.5rem;
    height: 100%;
    min-height: 62rem;
    background-color: white;
    box-shadow: 0 .1rem 1rem rgba(190, 214, 241, 0.1);
    z-index: 1000;
}
.header-logo2 {
    width: 12.5rem;
    margin: 2.7rem auto 0;
}
.header-logo2__anchor {
    display: inline-block;
}
.header-logo2__img {
    width: 100%;
    vertical-align: middle;
}
/* gnb style */
.gnb {
    margin-top: 5.6rem;
}
.gnb__item {
    position: relative;
}
.gnb-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.gnb__item--active::before {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .6rem;
    height: 6.6rem;
    background-color: var(--primary-blue);
    border-radius: 0 .3rem .3rem 0;
} 
.gnb__anchor {
    display: flex;
    flex-direction: column;
    padding: 1.9rem 1.4rem 1.9rem 2.6rem;
    gap: .8rem;
}

.gnb__text {
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--font-gray02);
}
.gnb__item .gnb__text::before {
    content: "";
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    padding-bottom: 1rem;
}

.button-logOut {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    padding: .9rem 3.2rem;
    background-color: var(--bg-gray01);
    border-radius: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    cursor: pointer;
    transition: background ease-in-out .2s;
}
.button-logOut:hover {
    background-color: #e8e8e8;
}
/* main style */
.main-container {
    min-width: 1700px;
    overflow-x: auto;
}
/* footer style */
.footer {
    background-color: black;
    width: 100%;
    margin-top: 20rem;
    padding: 5rem 0;
}
.footer-container {
    width: 120rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo__img {
    width: 34rem;
}
/* footer hospi info */
.hospi-info {
    font-weight: 400;
    color: white;
    font-size: 1.5rem;
    margin-top: 4.5rem;
}
.hospi-info__text:nth-child(n+2) {
    margin-top: 1.5rem;
}
/* footer doctor info */
.footer__right {
    padding: 2.2rem;
    border: 1px solid white;
    border-radius: 999px;
    display: flex;
    gap: 2.5rem;
}
.doctor-wrap {
    width: 17.9rem;
    height: 17.9rem;
    border-radius: 50%;
}
.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.doctor-img--hide {
    display: none;
}
.doctor-info {
    padding-right: 4rem;
    color: white;
}
.doctor-info--hide {
    display: none;
}
.doctor-info__department {
    font-size: 1.1rem;
    font-weight: 400;
}
.doctor-info__name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: .5rem;
    padding-bottom: 1.2rem;
    border-bottom: .1rem solid white;
    margin-bottom: 1.1rem;
}
.career-wrap {
    width: 18rem;
    height: 11rem;
    overflow-y: auto;
}
.doctor-info__career {
    font-size: 1.1rem;
    font-weight: 400;
}
.doctor-info__career:nth-child(n+2) {
    margin-top: 1.2rem;
}
.career-wrap::-webkit-scrollbar-track {
    background-color: rgb(0, 0, 0);
}
.career-wrap::-webkit-scrollbar-thumb {
    background-color: #c2c2c248;
    border-color: black;
}
/* common input style */
.input-label {
    font-family: 'Pretendard-SemiBold';
    display: block;
    padding: .6rem;
    line-height: 130%;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    font-weight: 500;
    color: white;
}
.input-wrap {
    border: .1rem solid #D9D9DC;
    padding: 1.6rem 1.4rem 1.6rem 1.6rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-wrap__inner {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
}
.input-wrap__inner>img {
    width: 30px;
    height: 30px;
}
.input-wrap__text {
    font-weight: 500;
    border: none;
    height: 30px;
    color: #ffffff;
    width: 100%;
    font-size: 1.6rem;
    background-color: transparent;
}
.input-wrap__text::placeholder {
    color: #acacac;
}
.input-wrap__text:focus {
    outline: none;
}
.button--bgPink {
    background-color: var(--primary-color);
    color: white;
}
.button--bgLightPink {
    background-color: var(--lightPink-color);
    color: var(--primary-color);
}
/* header 변경 */

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    top: 50%;
    transform: scale(.4) translateY(-50%);
}
.loading img {
    animation: loading .8s infinite alternate;
}
.loading>.loading-1 {
    animation-delay: .1s;
}
.loading>.loading-2 {
    animation-delay: .3s;
}
.loading>.loading-3 {
    animation-delay: .5s;
}
.loading>.loading-4 {
    animation-delay: .7s;
}
.loading>.loading-5 {
    animation-delay: .9s;
}
.loading>.loading-6 {
    animation-delay: 1.1s;
}

@keyframes loading {
    0% {
        /* filter: blur(0); */
        opacity: 1;
    }
    100% {
        /* filter: blur(1px); */
        opacity: 0;
        /* transform: scale(.8); */
    }
}

