/*@import "static/css/design.css";*/
.navbar-mini details {
    position: relative;
    width: 223px;
    height: 63px;
    margin-right: 8px;
    border: 1px solid #e1e1e1;
    border-radius: 31px;
    background: var(--white);
    color: #898989;
}

.navbar-mini details[open] {
    z-index: 1;
    border: 1px solid var(--main-color);
}

.navbar-mini summary {
    padding: 21px 23px 18px 30px;
    cursor: pointer;
    list-style: none;
}

.navbar-mini summary::-webkit-details-marker {
    display: none;
}

.navbar-mini details[open] summary:before {
    display: block;
    width: 100vw;
    height: 100vh;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
}

.navbar-mini summary:after {
    content: url("/static/image/icon/dropdown-ic-normal.png");
    display: inline-block;
    float: right;
}

.navbar-mini summary:focus {
    outline: none;
}


.navbar-mini details[open] summary:after {
    content: url("/static/image/icon/dropdown-ic-select.png");
    display: inline-block;
    float: right;
}

.navbar-mini .list ul {
    width: 100%;
    background: #ddd;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    padding: 1rem;
    margin: 0;
    box-sizing: border-box;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.navbar-mini .list li {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
}

.navbar-mini .list li:first-child {
    padding-top: 0;
}

.navbar-mini .list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* FAKE SELECT */

.navbar-mini summary.radios {
    counter-reset: radios;
}

.navbar-mini .radios input[type=radio] {
    cursor: pointer;
    counter-increment: radios;
    appearance: none;
    display: none;
    color: #898989;
}

.navbar-mini .radios input[type=radio]:checked {
    display: inline;
    --display: block;
}

.navbar-mini .radios input[type=radio]:after {
    content: attr(title);
    display: inline;
}

.navbar-mini ul.list {
    counter-reset: labels;
    margin-top: 10px;
    width: 223px;
    border: 1px solid #aadef2;
    background: var(--white);
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: left;
}

.navbar-mini .list label {
    width: 100%;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
}

.navbar-mini .list label span {
    --display: none;
    display: var(--display);
    width: 1rem;
    height: 1rem;
    border: 1px solid #727272;
    border-radius: 3px;
}


div.no-data {
    height: 245px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7b7a7b;
}
/* B2B button */
/* footer------------------------------------ */
footer {
    background-color: var(--input-bg-5);
    height: 250px;
    padding: 40px 0;
}

.footer-wrap {
    margin: 0 auto;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
}
.footer-left > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left > div:first-child > .company-name {
    color: #545251;
}

.footer-left > div:first-child > .terms-btns {
    display: flex;
    align-items: center;
}
.footer-left > div:first-child > .terms-btns > button {
    color: #6a6969;
}
.footer-left > div:first-child > .terms-btns > div.middle-line {
    display: inline-block;
    width: 1px;
    height: 16px;
    border: 1px solid #969797;
    margin: 0 15px;
}

.footer-left > div:last-child {
    margin-top: 25px;
    color: #6a6969;
}

.footer-left > div:last-child span {
    color: #969797;
    padding-right: 10px;
}

.footer-right {
    text-align: right;
}

.footer-right > div:nth-last-of-type(1){
    color: #6a6969;
}
.footer-right > div:nth-last-of-type(2){
    color: #545251;
    margin: 18px 0;
}
.footer-right > div:nth-last-of-type(3){
    color: #969797;
    line-height: 1.5;
}

/* main-header------------------------------------ */
header.main-header {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100px;
    background-color: var(--white);
}
header.main-header > img {
    height: 38px;
    cursor: pointer;
    margin-right: 20vw;
}
header.main-header > .menu {
    /*margin: 0 auto;*/
    display: flex;
}

.top-bar-tab {
    width: 153px;
    height: 49px;

    text-align: center;
    color: #6a6969;
}

/* common-header------------------------------------ */
header.common-header {
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100px;
    background-color: transparent;
}
header.common-header > img {
    content: url("/static/image/logo/e-cert-logo.png");
    height: 38px;
    cursor: pointer;
    margin-right: 20vw;
}
header.common-header > .menu {
    /*margin: 0 auto;*/
    display: flex;
}

header.common-header .top-bar-tab {
    width: 153px;
    height: 49px;

    text-align: center;
    color: var(--white);
}

header.common-header .top-bar-tab.selected {
    border: 1px solid var(--main-color);
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: 0 0 8px 0 rgba(0, 157, 216, 0.6);
    text-align: center;
    color: var(--main-color);
}

header.common-header.active {
    background-color:var(--white) !important;
    -webkit-transition-duration:0.4s;
    -webkit-transition-timing-function:ease;
    transition-duration:0.4s;
    transition-timing-function:ease;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.06);
}

header.common-header.active > img  {
    content: url("/static/image/logo/e-cert-logo-b.png");
}

.common-header.active .top-bar-tab {
    color: #7b7a7b !important;
}

/* 메인 화면------------------------------------ */
.main-body {
    overflow-x: hidden;
}
.main-container {
    background-image: url('/static/image/photo/main_bg_img_4.png');
    background-size: cover;
    height: calc(100vh - 100px);
    overflow-y: auto;
}
.main-container > div {
    display: flex;
    justify-content: center;
}

.main-left {
    display: flex;
    align-items: center;
}
.main-left > .main-left-text {
    color: var(--white);
}

.main-left > .main-left-text > div {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.main-left .main-left-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 215px;
    height: 69px;
    border-radius: 12px;
    background-color: var(--white);
    color: #005487;
}
.main-page-btn:hover {
    background-color: var(--main-color);

    text-align: center;
    color: var(--white);
}
.main-page-btn > img{
    height: 30px;
}

.main-right {
    padding: 63px 0 95px 120px;
}

.main-right > .top {
    width: 664px;
    height: 432px;
    border-radius: 20px;
    margin-bottom: 28px;
    padding: 40px 30px 38px;
    background-color: var(--white);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.main-search-option {
    height: 51px;
    padding: 14px 10px 17px;

    text-align: center;
    color: #979797;
}
.main-search-option:hover {
    border-bottom: 3px solid var(--main-color);
    color: var(--main-color);
}

input[type="text"].main-input {
    width: 601px;
    height: 81px;
    margin: 30px 0;
    padding: 29px 27px;
    border: 2px solid #cfd0d0;
    border-radius: 12px;
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    color: #000000;
}

input[type="text"].main-input::placeholder{
    color: #979797;
}
input[type="text"].main-input:focus {
    border: 2px solid var(--main-color);
    box-shadow: 0 0 12px 4px rgba(0, 157, 216, 0.3);
}

.main-search-btn {
    position: absolute;
    top: 58px;
    right: 32px;
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26'%3E%3Cpath fill-rule='evenodd' fill='%237B7A7B' d='M24.137 25.007a1.2 1.2 0 0 1-1.697.032L16.4 19.22a10.028 10.028 0 0 1-6.197 2.149C4.617 21.369.072 16.794.072 11.171.072 5.549 4.617.974 10.203.974s10.13 4.575 10.13 10.197c0 2.406-.837 4.616-2.226 6.362l5.997 5.777a1.2 1.2 0 0 1 .033 1.697zM10.203 3.375c-4.263 0-7.73 3.497-7.73 7.796 0 4.3 3.467 7.797 7.73 7.797 4.262 0 7.73-3.497 7.73-7.797 0-4.299-3.468-7.796-7.73-7.796z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.main-search-btn {
}

.main-download-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 193px;
    height: 163px;
    padding: 35px 0 32px;
    border: 2px solid #ebf9fb;
    border-radius: 16px;
    background-color: #ebf9fb;

    color: #005487;
}

.main-download-btn:hover {
    border: 2px solid var(--main-color);
    box-shadow: 0 0 16px 8px rgba(0, 157, 216, 0.3);
}

.main-right > .bottom {
    width: 664px;
    height: 401px;
    padding: 40px 30px 38px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.main-more-btn {
    width: 91px;
    height: 45px;
    border-radius: 6px;
    background-color: #f0f7f9;

    text-align: center;
    color: var(--gray-3);
}
.main-more-btn:hover {
    background-color: var(--main-color);

    color: var(--white);
}

.main-news-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 601px;
    height: 77px;
    margin-bottom: 10px;
    padding: 30px 28px 27px 31px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    background-color: #fcfdfd;
    color: #7b7a7b;
}

.main-news-row a{
    width: 100%;
    position: relative;
    cursor: pointer;
}
.main-news-row a::after{
    content: url("/static/image/icon/plus-ic-normal.png");
    position: absolute;
    right: 0;
}

.main-news-none {
    margin-top: 115px;
    text-align: center;
    color: #7b7a7b;
}

/* 공통 화면------------------------------------ */
.container {

}
.container > .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 800px;
    text-align: center;
}
.container > .top > div {
    color: var(--white);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.container > .top > div:first-of-type {
    margin-bottom: 43px;
}
.container > .top > div:last-of-type {
    line-height: 1.62;
}

.container > .common-bg {
    background-color: var(--bg-color);
    padding-bottom: 124px;
}
.container > .second-bg {
    background-color: #ebf3f6;
}

/* navber-mini ---------------------------------------*/
.navbar-mini {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 0 35px;
}

.navbar-mini > button.home {
    background: var(--white) url("/static/image/icon/home-ic-normal.png") no-repeat 53% 48%;
    width: 63px;
    height: 63px;
    margin-right: 8px;
    border: 1px solid #e1e1e1;
    border-radius: 50%;
    text-align: center;
}
.navbar-mini > button.home:hover {
    border: 1px solid var(--main-color);
    background-image: url("/static/image/icon/home-ic-select.png");
}

.navbar-mini > select.select-box {
    width: 223px;
    height: 63px;
    margin-right: 8px;
    padding: 18px 23px 18px 30px;
    border: 1px solid #e1e1e1;
    border-radius: 31px;
    background: var(--white) url("/static/image/icon/dropdown-ic-normal.png") no-repeat 90% 50%;
    color: #898989;
}

.navbar-mini > select.select-box:focus {
    border: 1px solid var(--main-color);
    background: var(--white) url("/static/image/icon/dropdown-ic-select.png") no-repeat 90% 50%;
    color: var(--main-color);
}

.navbar-mini > #update-news {
    display: none;
    width: 173px;
    height: 63px;
    border: 1px solid #e1e1e1;
    border-radius: 31px;
    background: var(--white);
    line-height: 63px;
    text-align: center;
    color: #898989;
}


/* 서비스 소개 화면------------------------------------ */
.container > .top.banner-1{
    background-image: url('/static/image/photo/main_banner_img_5.png');
    background-size: cover;
}

.intro-1{
    padding-top: 80px;
    text-align: center;
}
.intro-1 > img {
    margin-bottom: 56px;
}
.intro-1 > .txt-26-r{
    margin-top: 53px;
    line-height: 1.77;
    color: #6a6969;
}
.intro-2{
    padding: 150px 0 183px;
}
.intro-3{
    padding: 160px 0 22px;
}

.intro-1 .txt-40, .intro-2 .txt-40, .intro-3 .txt-40 {
    line-height: 1.55;
}

.intro-2 .txt-24-xb, .intro-3 .txt-24-xb {
    line-height: 1.33;
    letter-spacing: 4.8px;
    color: #9aa3ad;
}
.intro-2 > .title {
    margin: 24px 0 46px;
}

.intro-2 .card {
    width: 290px;
    height: 520px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.intro-2 .card > img{
    width: 100%;
}
.intro-2 .card > div {
    padding: 30px 15px 25px;
}

.intro-2 .card > div > .title {
    color: #000000;
    margin-bottom: 25px;
}

.intro-2 .card > div > .title > span {
    margin-left: 10px;
    color: var(--main-color);
}
.intro-2 .card > div > .content {
    text-align: left;
    line-height: 1.56;
    color: #545251;
}

.intro-3 .left > .title {
    margin-top: 42px;
}

.intro-3 .right > div:first-of-type {
    display: flex;
    flex-direction: column;
}
.intro-3 .right > div:last-of-type {
    display: flex;
    flex-direction: column;
}

.intro-3 .right > div > .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 411px;
    height: 410px;
    padding: 50px 60px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-3 .right > div > .card > img {
    width: 98px;
}
.intro-3 .right > div > .card > .title {
    margin: 40px 0 24px;
}
.intro-3 .right > div > .card > .content {
    color: #545251;
    line-height: 1.67;
}

/* 증명서 발급 화면 ------------------------------------*/
.container > .top.banner-2{
    background-image: url('/static/image/photo/main_banner_img_2.png');
    background-size: cover;
}

.search-box {
    width: 1200px;
    min-height: 324px;
    margin-bottom: 70px;
    padding: 50px 123px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.search-box > div.input-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.search-box > div > .title {
    margin: 10px 27px 0 0;
}

.search-box > div > input[type=text]#search-input {
    width: 728px;
    height: 63px;
    border: 2px solid #cfd0d0;
    border-radius: 31px;
    margin-bottom: 50px;
    padding: 20px 30px;
    background-color: #fcfcfc;
    color: #000000;
}
.search-box > div > input[type=text]#search-input::placeholder {
    color: #979797;
}

.search-box > div > input[type=text]#search-input:focus {
    border: 2px solid var(--main-color);
    background-color: var(--white);
}

.search-box > div > button.search-btn{
    position: absolute;
    top: 21px;
    right: 60px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26'%3E%3Cpath fill-rule='evenodd' fill='%237B7A7B' d='M24.137 25.007a1.2 1.2 0 0 1-1.697.032L16.4 19.22a10.028 10.028 0 0 1-6.197 2.149C4.617 21.369.072 16.794.072 11.171.072 5.549 4.617.974 10.203.974s10.13 4.575 10.13 10.197c0 2.406-.837 4.616-2.226 6.362l5.997 5.777a1.2 1.2 0 0 1 .033 1.697zM10.203 3.375c-4.263 0-7.73 3.497-7.73 7.796 0 4.3 3.467 7.797 7.73 7.797 4.262 0 7.73-3.497 7.73-7.797 0-4.299-3.468-7.796-7.73-7.796z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.search-box > .result.search-text-list {
    display: none;
}
.search-box > .result.search-text-list > div:first-of-type {
    margin-bottom: 38px;
}

.search-box > .result.search-text-list > div:first-of-type > .line {
    width: 385px;
    height: 2px;
    background-color: #e6e6e6;
}

.search-box > .result.search-text-list > div:first-of-type  > .result-text {
    color: #413d3c;
}

.search-box > .result.search-info-text > .no-result {
    margin-bottom: 30px;

    text-align: center;
    color:  #413d3c;
}

.search-box > .result.search-info-text > .result-before > ul {
    color: var(--main-color);
    padding-left: 200px;
}
.search-box > .result.search-info-text > .result-before > ul > li{
    margin-bottom: 15px;
}



/*--검색 타입 카테고리 버튼*/
.search-type-category{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.search-type-category-tab {
    width: 350px;
    height: 90px;
    border: 1px solid var(--gray-7);
    background-color: var(--white);

    text-align: center;
    color: var(--gray-4);
}
.search-type-category-tab.left {
    border-radius: 15px 0 0 15px;
}
.search-type-category-tab.right {
    border-radius: 0 15px 15px 0;
}
.search-type-category-tab.selected {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);

    text-align: center;
    color: var(--white);
}

.search-content {
    width: 1200px;
    margin: 0 auto;
    padding: 55px 55px 60px;
    border-radius: 26px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/*지역순으로 찾기*/
.search-content.area > .top{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 90px;
}

.search-content.area .area-list {
    width: 420px;
}
.search-content.area .area-map{
    width: 520px;
}

/*가나다순으로 찾기*/
.search-content.name > .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 57px;
    margin-bottom: 29px;
    border-bottom: 2px solid #e6e6e6;
}


/*--세부 선택 버튼*/
.search-detail-btn {
    border: 1px solid #cfd0d0;
    border-radius: 8px;
    background-color: var(--white);

    text-align: center;
    color: #6a6969;
}
.search-detail-btn.total {
    border: 1px solid var(--gray-3);
    background-color: var(--gray-3);
    color: var(--white);
}
.search-detail-btn.active:not(.total) {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    box-shadow: 0 0 8px 6px rgba(0, 157, 216, 0.15);
}

.search-detail-btn.total.active {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}

.search-detail-btn.name {
    width: 50px;
    height: 50px;
}
.search-detail-btn.name.total {
    width: 117px;
    height: 50px;
}

.search-detail-btn.area{
    width: 190px;
    height: 50px;
    margin: 0 15px 20px 0;
}




/*--검색 결과: 병원 목록*/
.search-content > .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.search-content > .bottom > .no-data {
    height: 61px;
}

.list-hospital-btn {
    position: relative;

    width: 312px;
    height: 61px;
    padding-left: 17px;
    border-bottom: 3px solid #dcdcdc;

    text-align: left;
    color: #b3b3b3;
}

.list-hospital-btn:not(:nth-of-type(3n)) {
    margin-right: 74px;
}

.list-hospital-btn.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

.list-hospital-btn.active::after {
    content: url("/static/image/icon/go-btn-select.png");
    position: absolute;
    right: 20px;
}

.list-hospital-btn.disable {
    cursor: default;
}

/* 원본확인 화면------------------------------------- */
.container > .top.banner-3{
    background-image: url('/static/image/photo/main_banner_img_6.png');
    background-size: cover;
}

.original-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 1200px;
    min-height: 485px;
    margin-bottom: 70px;
    padding: 180px 0 78px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.original-content > .step {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 120px;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 0 12px 8px rgba(0, 157, 216, 0.2);
}
.original-content > .step > div:first-of-type {
    width: 151px;
    height: 54px;
    border-radius: 26.5px;
    margin-right: 37px;
    padding: 15px 0;
    color: #255382;
    background-color: #d1f2fc;
    text-align: center;
}
.original-content > .step > div:last-of-type {
    padding-top: 4px;
    color: #255382;
}

.original-content > .input {
}

.original-content > .input > input[type=text] {
    width: 900px;
    height: 63px;
    border: 2px solid #cfd0d0;
    border-radius: 31px;
    margin-bottom: 30px;
    padding: 20px 30px;
    background-color: #fcfcfc;
    color: #000000;
}
.original-content > .input > input[type=text]::placeholder {
    color: #979797;
}

.original-content > .input > input[type=text]:focus {
    border: 2px solid var(--main-color);
    background-color: var(--white);
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
}

.original-content > .input > button.original-search-btn{
    position: absolute;
    top: 21px;
    right: 30px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26'%3E%3Cpath fill-rule='evenodd' fill='%237B7A7B' d='M24.137 25.007a1.2 1.2 0 0 1-1.697.032L16.4 19.22a10.028 10.028 0 0 1-6.197 2.149C4.617 21.369.072 16.794.072 11.171.072 5.549 4.617.974 10.203.974s10.13 4.575 10.13 10.197c0 2.406-.837 4.616-2.226 6.362l5.997 5.777a1.2 1.2 0 0 1 .033 1.697zM10.203 3.375c-4.263 0-7.73 3.497-7.73 7.796 0 4.3 3.467 7.797 7.73 7.797 4.262 0 7.73-3.497 7.73-7.797 0-4.299-3.468-7.796-7.73-7.796z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.original-content > .result {
    width: 950px;
}

.original-content > .result.search-text-list{
    display: none;
}

.original-content > .result > div:first-of-type {
    margin-bottom: 38px;
}
.original-content > .result > div:first-of-type > .line {
    width: 385px;
    height: 2px;
    background-color: #e6e6e6;
}
.original-content > .result > div:first-of-type > .result-text {
    color: #413d3c;
}

.original-content > img.sample {
    width: 1065px;
}

.original-content > .input-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 53px;
}

.original-content > .input-box > div:first-of-type{
    margin: 19px 33px 0 0;
}

.original-content > .input-box .input > input[type=text] {
    width: 177px;
    height: 63px;
    padding: 15px 30px;
    object-fit: contain;
    border-radius: 31px;
    border: solid 1.2px #dcdcdc;
    background-color: #fafafa;
    text-align: center;
    color: #989898;
}

.original-content > .input-box .input > input[type=text]:focus {
    border: solid 1.2px var(--main-color);
    background-color: var(--white);
    font-family: WOFF2_2, sans-serif;
    color: #000000;
}

.original-content > .input-box div.hyphen{
    width: 13px;
    height: 1px;
    margin: 0 10px;
    background-color: #989898;
}

.original-content > .input-box button.search-btn {
    background: var(--main-color) url("/static/image/icon/search-ic-normal-white.png") no-repeat 50% 50%;
    width: 61px;
    height: 61px;
    margin-left: 13px;
    border: 1px solid #e1e1e1;
    border-radius: 50%;
    text-align: center;
}

.original-content > .input-box .info {
    margin: 22px 0 0 5px;
    line-height: 1.65;
    color: #989898;
}

/*--병원 선택 버튼*/
.result-hospital {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.hospital-btn {
    height: 63px;
    margin: 0 14px 13px 0;
    padding: 20px 35px;
    border: 1px solid #cfd0d0;
    border-radius: 31px;
    background-color: #fcfcfc;
    text-align: center;
    color: #545251;
}
.hospital-btn.selected {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);

    color: var(--white);
}
.hospital-btn.selected > span{
    color: var(--white) !important;
}

.original-content .no-result {
    margin-bottom: 30px;

    text-align: center;
    color:  #413d3c;
}

.original-content .result-before > ul {
    color: var(--main-color);
    padding-left: 200px;
}
.original-content .result-before > ul > li{
    margin-bottom: 15px;
}

/* 고객센터 화면------------------------------------- */
.container > .top.banner-4{
    background-image: url('/static/image/photo/main_banner_img_3.png');
    background-size: cover;
}

.center-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 247px;
    margin-bottom: 42px;
    padding: 44px 32px 40px 33px;
    object-fit: contain;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}



.center-btns > button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 371px;
    height: 163px;
    padding: 35px 0 32px;
    border: 2px solid #ebf9fb;
    border-radius: 16px;
    background-color: #ebf9fb;

    color: #005487;
}

.plugin-list {
    margin-top: 74px;
}


.news-list,
.plugin-list {
    width: 1200px;
    /*height: 1241px;*/
    padding: 68px 50px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.news-list > .title,
.plugin-list > .title {
    margin-bottom: 48px;
}

.news-list > .top > .row,
.plugin-list > .top > .row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1100px;
    height: 85px;
    margin-bottom: 9px;
    padding: 26px 37px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    background-color: #f3f6f9;
    color: #282828;
}

.news-list > .top > .row > .badge,
.plugin-list > .top > .row > .badge{
    height: 32px;
    margin-right: 18px;
    padding: 7px 14px;
    border-radius: 16px;
    background-color: #0d99d4;
    text-align: center;
    color: #fcfcfc;
}

.news-list > .bottom > .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1100px;
    height: 85px;
    margin-bottom: 9px;
    padding: 30px 39px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    background-color: #fcfdfd;
    color: #282828;
}

/* 고객센터 상세 화면 */
.news-detail > .title {
    text-align: center;
    margin: 30px 0 46px;
}
.news-detail > .content {
    width: 1200px;
    min-height: 500px;
    margin-bottom: 46px;
    padding: 54px 44px 50px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.news-detail > .content > .row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1100px;
    height: 85px;
    margin-bottom: 41px;
    padding: 0 0 30px 0px;
    border-bottom: 1px solid #e6e6e6;
    color: #282828;
}
.news-detail > .content > .row > .badge{
    width: 58px;
    height: 32px;
    margin-right: 18px;
    padding: 7px 0;
    border-radius: 16px;
    background-color: #0d99d4;
    text-align: center;
    color: #fcfcfc;
}

.news-detail > .content > .inner {
    line-height: 1.91;
    text-align: left;
    color: #282828;
}

.news-detail > .move-btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1200px;
    height: 91px;
    margin-bottom: 23px;
    padding: 35px 47px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.news-detail > .move-btn > div:first-of-type{
    color: #7b7a7b;
    margin-right: 30px;
}
.news-detail > .move-btn > div:last-of-type {
    color: #898989;
    cursor: pointer;
}

.news-detail > .move-btn > div:last-of-type::after {
    content: url("/static/image/icon/arrow-ic-normal.png");
    position: absolute;
    right: 47px;
}
.news-detail > .move-btn > div:last-of-type#prevNoticeTitle::after {
    transform: rotate(180deg);
}

.news-detail > .list-btn {
    text-align: center;
}
.news-detail > .list-btn > button {
    width: 201px;
    height: 61px;
    margin-top: 26px;
    border: 1px solid var(--main-color);
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 0 8px 0 rgba(0, 157, 216, 0.6);

    text-align: center;
    color: var(--main-color);
}

.map-image {
    width: 520px;
    height: 708px;
    position: absolute;
    right: 0;
}

.map-image > div {
    position: absolute;
}
.map-image > div > img {
    filter: opacity(0%);
}

.map-image > div.active >img {
    filter: invert(39%) sepia(93%) saturate(1152%) hue-rotate(166deg) brightness(94%) contrast(101%);
}

.incheon-img {
    left: 14px;
    top: 127.5px;
}

.seoul-img {
    left: 95px;
    top: 148px;
}

.gyeonggi-img {
    left: 46.5px;
    top: 62.5px;
}

.gangwon-img {
    left: 121px;
    top: -0.5px;
}

.choongcheong-s-img {
    left: 9px;
    top: 248px;
}

.choongcheong-n-img {
    left: 154px;
    top: 219px;
}

.sejong-img {
    left: 137.5px;
    top: 302px;
}

.daejeon-img {
    left: 151px;
    top: 337px;
}

.gyeongsang-n-img {
    left: 220px;
    top: 235px;
}

.jeolla-n-img {
    left: 26px;
    bottom: 176.5px;
}

.daegu-img {
    right: 177px;
    bottom: 228px;
}

.gwangju-img {
    left: 75.5px;
    bottom: 140px;
}

.jeolla-s-img {
    left: -0.5px;
    bottom: -1px;
}

.gyeongsang-s-img {
    right: 118px;
    bottom: 74px;
}

.ulsan-img {
    right: 88px;
    bottom: 179px;
}

.busan-img {
    right: 110px;
    bottom: 139px;
}

.jeju-img {
    right: 41px;
    bottom: 4px;
}
