@charset "UTF-8";

.btn_area {
    margin: 20px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.btn_area.between {
    justify-content: space-between;
}

.btn_area.right {
    justify-content: flex-end;
}

.btn_area.center {
    justify-content: center;
}

.btn_area li {
    margin: 0px 5px;
}

.btn_area li:first-child {
    margin-left: 0;
}

.btn_area li:last-child {
    margin-right: 0;
}

.btn_area ul {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

button {
    width: 90px;
    height: 40px;
    background: #eee;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

button:hover {
    opacity: 0.8;
}

button.w160 {
    width: 160px;
}

button.small {
    padding: 2px;
    height: 26px;
    font-size: 12px;
    border-radius: 5px;
    width: 70px;
}

button.col01 {
    background-color: #00479D;
}

button.col02 {
    background-color: #EC5353;
}

button.col03 {
    background-color: #894CB8;
}

button.col04 {
    background-color: #535353;
}

button.col05 {
    background-color: #F9F0FF;
    color: #894CB8;
    border: 1px solid #894CB8;
    box-sizing: border-box;
}

.report_dwon {
	width: 220px;
	height:44px;
	margin-top: 10px;
	padding: 10px 55px 10px 40px;
	border: 1px solid #bdbdbd;
	background: url(/roda/images/front/download_g.png)#f7f7f7 no-repeat ;
	background-position: right 35px center;
	color: #8d8d8d;
	box-sizing: border-box;
}

.report_dwon:hover {
	border: 1px solid #894CB8;
	background: url(/roda/images/front/download_w.png)#894CB8 no-repeat ;
	background-position: right 35px center;
	color: #fff;
}

.box .table_area {
    width: 100%;
    height: 100%;
    border-top: 3px solid #894CB8;
    margin-bottom: 20px;
}

input[type=radio] {
    position: absolute;
    opacity: 0;
}

.radbox_lb {
    display: inline-flex;
    align-items: center;
    min-width: 100px;
    padding: 0 24px 0 24px;
    height: 22px;
    background: url(/roda/images/front/admin/radiobox-blank.png) no-repeat left center;
    cursor: pointer;
}

.radty1:checked + .radbox_lb {
    background: url(/roda/images/front/admin/radiobox-marked.png) no-repeat left center;
}

.radbox_lb2 {
    display: inline-flex;
    align-items: center;
    min-width: 100px;
    padding: 0 24px 0 30px;
    height: 22px;
    background: url(/roda/images/front/admin/check_box.png) no-repeat left center;
    cursor: pointer;
}

.radty1:checked + .radbox_lb2 {
    background: url(/roda/images/front/admin/check_box_checked.png) no-repeat left center;
}

input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.checbox_lb {
    display: inline-flex;
    align-items: center;
    min-width: 100px;
    padding: 0 24px 0 24px;
    height: 22px;
    background: url(/roda/images/front/admin/check_box.png) no-repeat left center;
    cursor: pointer;
    ;
}

.checbox_lb2 {
    display: inline-flex;
    align-items: center;
    min-width: 100px;
    padding: 0 24px 0 24px;
    height: 22px;
    background: url(/roda/images/front/admin/check_box2.png) no-repeat left center;
    cursor: pointer;
}

.checty1:checked + .checbox_lb {
    background: url(/roda/images/front/admin/check_box_checked.png) no-repeat left center;
}

.checty2:checked + .checbox_lb2 {
    background: url(/roda/images/front/admin/check_box_checked2.png) no-repeat left center;
}

textarea {
    height: auto;
    resize: none;
    overflow: visible;
    padding: 10px 15px;
    box-sizing: border-box;
    border: 1px solid #dadada;
    width: 100%;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    background: #fff;
    font-size: 1rem;
    color: #535353;
    font-family: 'SCDream';
    font-weight: 400;
}

textarea:focus {
    outline: none;
}

pre {
    white-space: pre-wrap;
}

.text_ov {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

input[type=text],
input[type=number],
input[type=password],
select {
    height: 40px;
    border: 1px solid #dadada;
    vertical-align: middle;
    padding: 8px 15px;
    box-sizing: border-box;
    margin: 0px;
    background: #fff;
    border-radius: 5px;
    color: #535353;
    font-family: 'SCDream';
    font-weight: 400;
    font-size: 1rem;
}

input[disabled] {
    background: #ebebeb;
}

select {
    background: url('/roda/images/front/admin/arrow_drop_down.png')#fff no-repeat right 5px center;
}

input[type=number]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

.form-control.docs-date {
    background: url(/roda/images/front/calendar.png)#fff no-repeat right 10px center;
    border: 1px solid #DBDBDB;
}




/*login*/
main.login {
    width: 100%;
    min-height: 100vh;
    padding: 50px 10px;
    background: url(/roda/images/front/login_bg.png);
    background-repeat: no-repeat;
    background-position: bottom -10% right;
    background-size: 40%;
}

.login {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_logo {
    margin: 30px auto 50px;
}

.login_logo img {
    display: block;
}

.login_box {
    width: 550px;
    padding: 30px 50px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 5px 5px 15px rgba(133, 157, 185, 0.15);
}

.login_box > * {
    margin-bottom: 20px;
    display: block;
}

.login_box h2 {
    text-align: center;
    font-size: 2em;
    font-weight: 600;
    color: var(--color--main);
    margin-bottom: 30px;
}

.login_box input {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    background: var(--color--sub02);
    border: 1px solid var(--color--sub03);
    margin-bottom: 15px;
    font-size: 1em;
}

.login_box a {
    padding: 20px;
    text-align: center;
    background: var(--color--main);
    color: #fff;
    margin-top: 30px;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width:550px) {
    main.login {
        margin: 0 auto;
    }

    .login_logo {
        margin: 10px auto 50px;
    }

    .login_box {
        max-width: 100%;
        padding: 30px 10px 40px;
    }
}






/* 공통 */
.contant_area *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.contant_area *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.contant_area *::-webkit-scrollbar-thumb {
    background-color: rgba(109, 109, 109, 0.2);
    border-radius: 4px;
}

.contant_area *::-webkit-scrollbar-track {
    background-color: rgba(198, 198, 198, 0.3);
    border-radius: 4px;
}

.contaner {
    width: 100%;
    height: auto;
}

.cont_nav {
    width: 100%;
    height: 50px;
    background: #F9F0FF;
    display: block;
    padding: 10px;
    position: relative;
    z-index: 11;
}

.cont_nav .top_navigation {
    max-width: 1520px;
    margin: 0 auto;
    color: #828282;
    font-size: 0.875rem;
    font-weight: 300;
}

.cont_nav .top_navigation > * {
    float: left;
    padding: 8px 10px 2px;
    border-right: 1px solid rgba(137, 76, 184, 0.3);
    cursor: pointer;
    height: 24px;
}

.cont_nav .top_navigation > *:last-child {
    border-right: none;
}

.cont_nav .top_navigation > li {
    width: 240px;
}

.cont_nav .top_navigation .home {
    background: url(/roda/images/front/home.png) no-repeat center;
    width: 40px;
    margin-top: 2px;
}

.cont_nav .top_navigation > li .arrow {
    background: url(/roda/images/front/arrow_down.png) center;
    width: 20px;
    height: 14px;
    display: inline-block;
    float: right;
}

.cont_nav .top_navigation > li .arrow.active {
    transform: rotate(180deg)
}

.sub_nav {
    position: relative;
    display: none;
    background: #F9F0FF;
    padding: 20px 0px 0px;
    margin-left: -10px;
    box-shadow: 5px 5px 5px #eee;
}

.sub_nav li {
    padding: 10px 10px;
    display: block;
}

.sub_nav li a {
    display: block;
    color: #828282;
    font-size: 0.875rem;
    padding: 5px 10px;
}

.sub_nav li:hover a {
    color: #321B43;
}

@media all and (max-width: 800px) {
    .cont_nav {
        display: none;
    }
}

.contant_area {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto 50px;
    padding: 10px;
}

.contant_area h2.center_tit {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #894CB8;
    font-family: 'GmarketSans';
    margin: 40px 0 40px;
}

.contant_area h3.sub_tit {
    font-size: 1.5em;
    font-weight: bold;
    color: #894CB8;
    font-family: 'GmarketSans';
    margin: 40px 0 15px;
}

a.down {
    display: inline-block;
    text-decoration: underline;
}

a.down:after {
    content: url(/roda/images/front/download-circle-outline.png);
    vertical-align: bottom;
    display: inline-block;
    margin-left: 2px;
    margin-bottom: -4px;
}

a.down:before {
    content: display: block;
    width: 100%;
    clear: both;
}

@media all and (max-width: 550px) {
	.contant_area h2.center_tit {
    	font-size: 1.5em;
    }
}

/* 페이지네이션 */
.pagination {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    justify-content: center;
    padding: 20px 5px;
    font-family: "Montserrat";
    overflow-x: auto; 
}
.pagination::-webkit-scrollbar {
  display: none;
}
.pagination {
	-ms-overflow-style: none; 
  	scrollbar-width: none;
}
.pagination > a:hover {
    opacity: 0.7;
}

.pagination ul {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.pagination ul ol {}

.pagination a {
    box-sizing: content-box;
    display: block;
    margin: 0 3px;
    padding: 0px;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination ul ol a {
    border-radius: 50%;
}

.pagination ul ol a:hover {
    background: #eee;
}

.pagination ul ol a.active {
    background: #894CB8;
    color: #fff;
}

.angles-left {
    background: url(/roda/images/front/angles-left.png) no-repeat center;
}

.chevron-left {
    background: url(/roda/images/front/chevron-left.png) no-repeat center;
}

.angles-right {
    background: url(/roda/images/front/angles-right.png) no-repeat center;
}

.chevron-right {
    background: url(/roda/images/front/chevron-right.png) no-repeat center;
}


/* 콘텐츠 상단 */
.list_top {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0px 0 10px;
    font-family: 'SCDream';
    font-weight: 400;
    font-size:
}

.list_top.right {
    justify-content: flex-end;
}

.list_top.between {
    justify-content: space-between;
}

.list_top ul {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.list_top ul li a {
    padding: 0px 15px;
    display: block;
    border-right: 2px solid #E0E0E0;
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.list_top ul li a:hover {
    color: #894CB8;
    text-decoration: underline;
}

.list_top ul li:last-child a {
    border-right: none;
    padding-right: 0;
}

.list_top ul a.active {
    background: url(/roda/images/front/check.png) no-repeat;
    background-position: left 10px center;
    color: #894CB8;
    padding-left: 30px;
}

.list_top .num_posts {
    font-weight: 300;
    font-size: 1rem;
    vertical-align: bottom;
}

.list_top .num_posts span {
    font-weight: 600;
    font-size: 1.25rem;
    font-family: 'Montserrat';
}

.list_top ul button {
    height: 40px;
    margin-left: 5px;
    font-weight: 500;
    border: 2px solid #894CB8;
}

.list_top ul button:hover {
    background: #894CB8;
    color: #fff;
    opacity: 1;
}

@media (max-width: 500px) {
    .list_top ul button {
        height: 30px;
        width: 90px;
    }
}

/* 테이블 영역 */
.table_area {
    width: 100%;
    border-top: 3px solid #894CB8;
    margin-bottom: 20px;
}

table {
    width: 100%;
    letter-spacing: -0.05rem;
}

table tr {
    border-bottom: 1px solid #DADADA;
    min-height: 50px;
}

table th {
    background: #eee;
    font-weight: 500;
    padding: 15px 15px;
    font-size: 1.125rem
}

table td {
    background: #fff;
    font-weight: 400;
    padding: 15px 15px;
    font-size: 1rem;
}

.centertime td{
	font-size: 0.7rem;
}

table th,
table td {
    height: 50px;
    vertical-align: middle;
    line-height: 1.25;
}

@media (max-width: 1024px) {
    table th {
        font-size: 1rem
    }

    table td {
        font-size: 0.875rem;
    }
}

table.list {
    text-align: center;
    white-space: nowrap;
}

table.list tbody tr {
    cursor: pointer;
}

table.list tbody tr:hover td {
    background: #fafafa;
}

table.crdu input[type=text],
table.crdu input[type=number],
table.crdu input[type=password],
table.crdu select {
    width: 100%;
}

.table_area.ty01 {}

.table_area.ty01 table colgroup.mov {
    display: none;
}

@media (max-width: 768px) {
    .table_area.ty01 table colgroup.pcv {
        display: none;
    }

    .table_area.ty01 table tr {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        border: none;
    }

    .table_area.ty01 table th,
    .table_area.ty01 table td {
        border-bottom: 1px solid #DADADA;
        padding: 10px;
        height: auto;
        display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        align-items: center;
    }

    .table_area.ty01 table th {
        width: 150px;
        justify-content: center;
    }

    .table_area.ty01 table td {
        width: calc(100% - 150px);
    }
}

@media (max-width: 500px) {
    .table_area.ty01 table th {
        width: 135px;
        justify-content: center;
        padding: 0 5px;
    }

    .table_area.ty01 table td {
        width: calc(100% - 135px);
    }
}

.table_area.ty02 {
    overflow: auto;
    white-space: nowrap;
}

.table_area.ty02 table {
    position: relative;
    text-align: center;
}

.table_area.ty02 table thead {
    position: sticky;
    top: 0;
}


/* 테이블 영역 기타 */
.top_ar {
    margin-top: 50px;
}

table.crdu {}


table.le02 tbody tr td:nth-child(2) {
    text-align: left;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

table.le03 tbody tr td:nth-child(3) {
    text-align: left;
}


/* 데이터셋 */
#down_data_all{
	background: url(/roda/images/admin/datavisual/download_icon.png) #7f7783 no-repeat;
    background-position: center right 10px;
    padding: 0px 33px 0 10px;
    width: auto;
    height: 40px;
    color: #ddd;
}

.dataset_hd {
    position: relative;
    max-width: 1100px;
    margin: 0px auto 40px;
    padding: 40px 60px 40px 110px;
    background: #fff;
}

.dataset_hd:before {
    content: "";
    position: absolute;
    width: calc(100% + 100px);
    height: calc(100% - 20px);
    left: -50px;
    top: 5px;
    border: 3px solid #333;
    z-index: -1;
    border-radius: 50px;
    border: 2px solid #E0E0E0;
}

.dataset_hd > div {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.dataset_hd > div > span {
    display: block;
    width: 120px;
    height: 40px;
    vertical-align: middle;
    margin-top: 8px;
    font-size: 1.125em;
}

.dataset_hd ul {
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.dataset_hd ul li {
    width: 20%;
    font-weight: 400;
    padding: 0px;
    padding: 0 10px 10px 10px;
}

.dataset_hd ul li label {
    padding-right: 10px;
    padding-left: 30px;
    width: 140px;
}

.dataset_hd ul li input[type=checkbox]{
	display: none;
}

.dataset_hd .search {
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
}

.dataset_hd .search input[type=text] {
    width: calc(100% - 160px);
    margin-right: 10px;
    border-radius: 0;
    background: #f4f4f4;
    border: 1px solid #bbb;
}

.dataset_hd .search button:after {
    content: "검색";
}

@media (max-width: 1240px) {
    .dataset_hd {
        max-width: 800px;
        margin: 20px auto 40px;
        padding: 40px 20px 40px 30px;
    }

    .dataset_hd:before {
        width: calc(100% + 40px);
        height: calc(100% - 20px);
        left: -20px;
        border-radius: 20px;
    }

    .dataset_hd .search input[type=text] {
        width: calc(100% - 120px);
    }
}

@media (max-width: 900px) {
    .dataset_hd {
        max-width: 340px;
        margin: 20px auto 40px;
        padding: 20px 10px 20px 10px;
        background: none;
    }

    .dataset_hd:before {
        display: none;
    }

    .dataset_hd > div {
        display: block;
    }

    .dataset_hd > div > span {
        display: block;
        width: 100%;
        display: block;
        text-align: center;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .dataset_hd ul {
        position: relative;
        width: 320px;
        background: #fff;
        padding: 10px 10px
    }

    .dataset_hd ul:before {
        content: "";
        position: absolute;
        width: calc(100% + 44px);
        height: calc(100% - 20px);
        left: -22px;
        top: 10px;
        border: 3px solid #333;
        z-index: -1;
        border-radius: 20px;
        border: 2px solid #E0E0E0;
    }

    .dataset_hd ul li {
        width: 50%;
        padding-bottom: 15px;
    }


    .dataset_hd .search {
        flex: 1;
        display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        height: 50px;
        background: #f4f4f4;
        border: 1px solid #894cb8;
        padding: 5px;
        border-radius: 25px;
    }

    .dataset_hd .search input[type=text] {
        width: auto;
        flex: 1;
        margin-right: 10px;
        border: none;
        background: none;
    }

    .dataset_hd .search button {
        background: url(/roda/images/front/search_icon2.png);
        width: 40px;
        height: 40px;
    }

    .dataset_hd .search button:after {
        content: "";
        background: url(/roda/images/front/search_icon2.png);
    }
}

@media (max-width: 500px) {

    .datasrt_tb th:nth-child(2),
    .datasrt_tb th:nth-child(4),
    .datasrt_tb th:nth-child(5),
    .datasrt_tb th:nth-child(6),
    .datasrt_tb th:nth-child(7),
    .datasrt_tb td:nth-child(2),
    .datasrt_tb td:nth-child(4),
    .datasrt_tb td:nth-child(5),
    .datasrt_tb td:nth-child(6),
    .datasrt_tb td:nth-child(7) {
        display: none;
    }

    .datasrt_tb {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }

    .datasrt_tb tbody {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }
	
    .datasrt_tb tr {
        display: inline-table;
        width: 100%;
    }
    
    .datasrt_tb thead {
    	display: block;
    }

    .datasrt_tb tr th:first-child,
    .datasrt_tb tr td:first-child {
        width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }

    .datasrt_tb tr th:nth-child(3),
    .datasrt_tb tr td:nth-child(3) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }
    
    
}

ul.tabs {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

ul.tabs li {
    cursor: pointer;
    padding: 15px 10px;
    width: 240px;
    height: 50px;
    text-align: center;
    color: #aeaeae;
    border-top: 2px solid #dcdcdc;
    font-size: 1.25rem;
    font-weight: 300;
}

ul.tabs li:nth-child(1) {
    border-left: 2px solid #dcdcdc;
}

ul.tabs li:nth-child(2) {
    border-right: 2px solid #dcdcdc;
}

ul.tabs li.current {
    background: #894CB8;
    color: #fff;
    border: 2px solid #894CB8 !important;
    font-weight: 400;
}

.tab-content {
    display: none;
    width: 100%;
    margin-bottom: 30px;
}

.tab-content.current {
    display: inherit;
}

.tab-content .table_area {
    max-height: 400px;
}


@media (max-width: 500px) {
    ul.tabs li {
        width: 50%;
        height: 35px;
        background: #fff;
        ;
        font-size: 1rem;
        padding: 10px;
    }

    .mov_non {
        display: none;
    }
}


/*데이터신청*/
table .lock {
    vertical-align: text-bottom;
    margin-left: 5px;
}

@media (max-width: 500px) {

    .dataRequest_tb th:nth-child(3),
    .dataRequest_tb th:nth-child(4),
    .dataRequest_tb th:nth-child(5),
    .dataRequest_tb td:nth-child(3),
    .dataRequest_tb td:nth-child(4),
    .dataRequest_tb td:nth-child(5) {
        display: none;
    }

    .dataRequest_tb {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }

    .dataRequest_tb tbody {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }

    .dataRequest_tb tr {
        display: inline-table;
        width: 100%;
    }

    .dataRequest_tb tr th:first-child,
    .dataRequest_tb tr td:first-child {
        width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }

    .dataRequest_tb tr th:nth-child(2),
    .dataRequest_tb tr td:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }
}

/* 공지사항,자료실 */
@media (max-width: 500px) {
    .announcement_tb {}

    .announcement_tb th:nth-child(3),
    .announcement_tb th:nth-child(4),
    .announcement_tb th:nth-child(5),
    .announcement_tb th:nth-child(6),
    .announcement_tb td:nth-child(3),
    .announcement_tb td:nth-child(4),
    .announcement_tb td:nth-child(5),
    .announcement_tb td:nth-child(6) {
        display: none;
    }

    .announcement_tb {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }

    .announcement_tb tbody {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }

    .announcement_tb tr {
        display: inline-table;
        width: 100%;
    }

    .announcement_tb tr th:first-child,
    .announcement_tb tr td:first-child {
        width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }

    .announcement_tb tr th:nth-child(2),
    .announcement_tb tr td:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }
}

/* 상단 검색 */
.boxSearch {
    width: 100%;
    background: #F9F0FF;
    padding: 20px 25px;
    margin: 0 auto 50px;
    border-radius: 10px;
}

.boxSearch ul {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.boxSearch li {
    padding: 0px 0px 0 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 0px;
    height: 40px;
}

.boxSearch li select {
    width: 220px;
}

.boxSearch li .topSearch_input {
    width: 500px;
}

.boxSearch .sc_btn:after {
    content: "검색";
}

@media (max-width: 1024px) {
    .boxSearch li select {
        width: 160px;
    }

    .boxSearch li .topSearch_input {
        width: 240px;
    }
}

@media (max-width: 550px) {
    .boxSearch {
        padding: 0;
        background: none;
    }

    .boxSearch li:first-child {
        display: none;
    }

    .boxSearch li:nth-child(2) {
        width: calc(100% - 60px);
    }

    .boxSearch li .search {
        width: 100%;
    }

    .boxSearch li .topSearch_input {
        width: 100%;
        border-radius: 0;
        border: 1px solid #894CB8;
    }

    .boxSearch .sc_btn {
        content: "";
        background: url(/roda/images/front/search_icon2.png)#894CB8 no-repeat;
        width: 40px;
    }

    .boxSearch .sc_btn:after {
        display: none;
    }
}


/* 개인정보 수집 동의 */
.agreement {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    padding: 20px 0;
}

.agreement img {
    margin-bottom: 20px;
}

.agreement > p {
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
}

.agreement p.tit {
    color: #894CB8;
    font-size: 1.25rem;
}

.agreement p.text {
    font-weight: 400;
}

.agreement p.text b {
    font-weight: 600;
}

.agreement p .mov,
.agreement p .mov2 {
    display: none;
}

.agreement table {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border-top: 1px solid #DADADA;
    margin-bottom: 40px;
}

.agreement .check {
    display: inline-block;
    margin: 0 auto;
}

.agreement .check .checbox_lb2 {
    padding-right: 0;
    min-width: 0;
    padding-left: 30px;
    background-position: left 5px center;
}


@media (max-width: 1024px) {
    .agreement p .mov {
        display: block;
    }
}

@media (max-width: 500px) {
    .agreement p .mov {
        display: none;
    }

    .agreement p .mov2 {
        display: block;
    }
}

/*팝업*/
body.noscro {
    overflow: hidden
}

body.noscro main {
    filter: blur(5px)
}

.popup_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.28);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popupbox {
    position: fixed;
    z-index: 100;
    background: #fff;
    min-width: 340px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #dadada;
}

.popupbox .popup_hd {
    padding: 10px 20px 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.popupbox .popup_hd h3 {
    font-size: 20px;
    padding: 3px;
    color: #894CB8;
    font-weight: bold;
}

.popupbox .popup_hd .closed {
    background: url(/roda/images/front/admin/close_big.png);
    width: 40px;
    height: 40px;
    background-size: cover;
}

.popupbox .popup_contant {
    padding: 10px 20px 20px;
}

.popupbox .popup_contant.center {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    min-height: 150px;
}

.item .password {
    width: 200px;
    background: #f9f9f9;
    border: 1px solid #dadada;
    border-radius: 10px;
    text-align: center;
}

/*사이트 맵*/
.siteMap {
    text-align: center;
    min-height: calc(100vh - 500px);
}

.siteMap > ul {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.siteMap > ul > li {
    flex: 1;
    margin-bottom: 30px;
}

.siteMap > ul .dep01 {
    position: relative;
    display: block;
    font-family: 'GmarketSans', 'SCDream';
    font-size: 1.25rem;
    padding-bottom: 50px;
    transition: 0.3s;
}

.siteMap > ul .dep01:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -25px;
    background: #894CB8;
    transition: 0.3s;
}

.siteMap > ul .dep01:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 1px;
    left: 0;
    margin-left: ;
    background: #F9F0FF;
}

.siteMap > ul > li:hover .dep01 {
    color: #894CB8;
}

.siteMap > ul > li:hover .dep01:after {
    width: 100%;
    left: 0;
    margin-left: 0;
}

.map_sub li {
    padding: 30px 0;
}

.map_sub li a {
    color: #828282;
    font-size: 18px;
    font-weight: 400;
    display: block;
}

.map_sub li:hover a {
    color: #894CB8;
    font-weight: 500;
}

@media (max-width: 1300px) {
    .siteMap > ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr)
    }

    .siteMap > ul > li {
        flex: none;
        width: 100%;
        margin-bottom: 50px;
    }

    .siteMap > ul .dep01:after {
        display: none;
    }

}

@media (max-width: 767px) {
    .siteMap > ul {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr)
    }

    .siteMap > ul > li {
        flex: none;
        width: 100%;
        margin-bottom: 40px;
    }

}

@media (max-width: 450px) {
    .siteMap > ul {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }
}


/* 스마트 데이터 플랫폼 소개 */
.introduction {}

.introduction p {
    margin-bottom: 80px;
    font-weight: 400;
    text-align: center;
    font-size: 1.125rem;
    word-break: keep-all;
}

.introduction h3.center_tit {
    position: relative;
    text-align: center;
    font-family: 'GmarketSans';
    color: #894CB8;
    margin-bottom: 20px;
    font-size: 25px;
    padding: 20px 0;
    line-height: 1.4;
    word-break: keep-all;
}

.introduction h3.center_tit:before {
    content: "";
    background: url(/roda/images/front/h3_marker.png) no-repeat;
    width: 40px;
    height: 26px;
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -20px;
}

.introduction .introduct01 {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1300px;
    margin: 0 auto 70px;
    ;
}

.introduction .in_box {
    flex: 1;
    padding: 0 40px;
}

.introduction .in_box .img_icon {
    margin-bottom: 10px;
    padding: 10px;
    width: 192px;
    height: 192px;
    margin: 0 auto 35px;
    ;
}

.introduction .in_box .img_icon.icon01 {
    background: url(/roda/images/front/introduction_icon01.png);
}

.introduction .in_box .img_icon.icon02 {
    background: url(/roda/images/front/introduction_icon02.png);
}

.introduction .in_box .img_icon.icon03 {
    background: url(/roda/images/front/introduction_icon03.png);
}

.introduction .in_box h3 {
    border: 5px solid #F9F0FF;
    padding: 15px 0 10px;
    font-family: 'GmarketSans';
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 20px;
}

.introduction .in_box li {
    position: relative;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5rem;
    padding: 0 10px 0 20px;
    text-wrap: balance;
}

.introduction .in_box li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #894CB8;
    top: 8px;
    left: -0px;
}

.introduct_img {
    margin: 0px auto 50px;
    max-width: 100%;
    display: block;
    pointer-events: none;
}

.introduct02 {
    max-width: 1340px;
    padding: 30px 10px;
    margin: 0 auto;
    border: 5px solid #F9F0FF;
}

@media (max-width: 1024px) {
    
	.introduction .in_box {
		padding: 0 10px;
	}
	
    .introduction br.pcv {
        display: none;
    }
}

@media (max-width: 700px) {
    .introduction .introduct01 {
	    display: block;
    }
    .introduction .in_box {
    	margin-bottom: 30px;
    	padding: 10px 0;
    }
}

@media (max-width: 500px) {
    .introduction h3.center_tit {
        font-size: 20px;
    }

    .introduction p {
        font-size: 15px;
    }

    .introduction .in_box li {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* 공공데이터 제공 신청 */
.publicdata_tx01 {
    font-family: 'GmarketSans';
}

.publicdata_tx02 {
    width: 100%;
    padding: 15px;
    background: #FAFAFA;
    border: 5px solid #f1f1f1;
}

.publicdata_img {
    width: 100%;
    max-width: 922px;
    height: 220px;
    background: url(/roda/images/front/publicdata01.png) no-repeat center;
    margin: 0 auto 30px;
    background-size: 100%;
}

.publicdata_list {
    width: 100%;
    max-width: 940px;
    margin: 0 auto 70px;
}

.publicdata_list li {
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.125rem;
    margin-left: 50px;
    position: relative;
}

.publicdata_list li:before {
    color: #D0D0D0;
    font-family: 'GmarketSans';
    font-weight: bold;
    position: absolute;
    top: 2px;
    left: -50px;
    letter-spacing: 0.1rem;
}

.publicdata_list li:nth-child(1):before {
    content: '01.';
}

.publicdata_list li:nth-child(2):before {
    content: '02.';
}

.publicdata_list li:nth-child(3):before {
    content: '03.';
}

.publicdata_list li:nth-child(4):before {
    content: '04.';
}

.publicdata_btn {
    width: 400px;
    height: 60px;
    display: block;
    border-radius: 10px;
    text-align: center;
    background: #535353;
    color: #fff;
    font-family: 'GmarketSans';
    font-size: 1.25rem;
    padding: 17px 0;
    margin: 0 auto;
    margin-bottom: 100px;
}

.publicdata_btn span {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: url(/roda/images/front/link-square.png) no-repeat center;
    margin-left: 5px;
    vertical-align: bottom;
}

.publicdata_btn:hover {
    background: #894CB8;
}

@media (max-width: 768px) {
    .publicdata_img {
        height: 300px;
        background: url(/roda/images/front/publicdata02.png) no-repeat center;
        margin: 0 auto 30px;
        background-size: auto 100%;
    }

    .publicdata_list {
        padding: 10px;
    }

    .publicdata_list li {
        margin-left: 40px;
    }

    .publicdata_list li:before {
        left: -40px;
    }

    .publicdata_btn {
        width: 100%;
        max-width: 300px;
        height: 50px;
        font-size: 1.125rem;
        padding: 15px 0;
    }

    .publicdata_btn span {
        width: 20px;
        height: 20px;
        background-size: cover;
        vertical-align: bottom;
        margin-bottom: 1px;
    }
}

@media (max-width: 500px) {
    .publicdata_list li {
        font-size: 14px;
    }
}

/* 스크롤 다운 애니메이션 */
.scroll_down {
    position: fixed;
    width: 50px;
    height: 50px;
    padding: 13px 0;
    z-index: 100;
    transition: 0.5s;
    opacity: 0.8;
    background: #fff; 
    border-radius: 30px;
    border: 1px solid #eee;
    left: calc(50% - 25px);
    bottom:20px;
    cursor:pointer;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.scroll_down:hover {
	background: #f1f1f1;
    opacity: 1;
    filter: hue-rotate(146deg);
}

.scroll_down.none {
    opacity: 0;
}

.scroll_down span {
	width: 24px;
	height: 15px;
	background: url(/roda/images/front/down_arrow.svg) center no-repeat;
	background-size: 100%;
	display: block;
	margin: 0 auto;
	opacity: 0.8;
	animation: scroll_down 2s infinite linear;
}

.scroll_down span:nth-child(1) {
	animation-delay: 0s;
}

.scroll_down span:nth-child(2) {
	animation-delay: 0.5s;
	margin-top: -2px;
}

.scroll_down span:nth-child(3) {
	animation-delay: 1s;
	margin-top: -2px;
}

@keyframes scroll_down {
  50%{opacity: 0.2;}
  100%{opacity: 0.8;}
}
 
/* 개인정보처리방침 */
.service_agreement p.txt {
    font-weight: 400;
    text-align: center;
    font-size: 1.125rem;
    word-break: keep-all;
    margin-bottom: 50px;
}

.service_agreement .text_area {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 50px;
    border: 1px solid #dfdfdf;
    padding: 30px 20px 20px;
    height: 500px;
    overflow-y: auto;
    border-radius: 10px;
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 1.5;
}

.service_agreement .text_area h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 2em;
    text-align: center;
}

.service_agreement .text_area h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.3em;
}

.service_agreement .text_area p {
    margin-bottom: 1em;
}

.service_agreement .text_area > ul {
    margin-bottom: 30px;
    margin-left: 20px;
}

.service_agreement .text_area > ul > li {
    margin-bottom: 0.5em;
    font-weight: 500;
}

.service_agreement .text_area > ul > li > ul {
    margin-left: 20px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service_agreement .none_email {
    width: 250px;
    height: 250px;
    background: url(/roda/images/front/none_email.png) no-repeat center;
    margin: 50px auto 30px;
}

.service_agreement .str {
    font-family: 'GmarketSans';
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.service_agreement .str strong {
    font-weight: bold;
    color: #EC5353;
}

.service_agreement .refusal {
    border: 3px solid #F9F0FF;
    max-width: 1340px;
    margin: 0 auto;
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .service_agreement p.txt br.pcv {
        display: none;
    }
}

.source_between { 
	display: flex;
    justify-content: space-between; 
}
.source_between p {}

p.left_source {
	margin-top: -5px;
	margin-bottom: 10px;
	margin-left:10px;
	font-size: 0.875rem;
    color: #999;
	text-align: left;	
	line-height: 1.1;
}

p.right_source {
	margin-top: -10px;
	margin-bottom: 10px;
	margin-right:10px;
	text-align: right;	
	line-height: 1.1;
}