@charset "UTF-8";

:root {
    font-size: 16px;
}

/*@media (min-width:1921px) {
    :root {font-size: 20px;}
}*/

@media (min-width:2561px) {
    :root {
        font-size: 28px;
    }
}

body {
    font-size: 1rem;
}

header {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 90px;
    background: #160026;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.header_wrap {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
}

.header_wrap > * {
    position: relative;
}

.header_wrap .logo_box {
    width: 33.33%;
    height: 100%;
    padding: 20px;
}

.header_wrap .logo_box .logo {
    width: 100%;
    height: 100%;
    display: block;
/*     background: url(/roda/images/front/dashboard/logo_w.svg) no-repeat center left; */
    background: url(/roda/images/front/dashboard/dashboard_logo.png) no-repeat center left;
    background-size: auto 100%;
}

.dashboard_tit {
    width: 33.33%;
    height: 70px;
    display: block;
/*     background: url(/roda/images/front/dashboard/dashboard_tit_w.svg) no-repeat center/contain; */
    background: url(/roda/images/front/dashboard/dashboard_title.png) no-repeat center/contain;
    padding: 0vw;
    margin: 10px 0
}

.home {
    position: absolute;
    top: 0px;
    width: 350px;
    right: 0;
    height: 0;
    background: none;
    transition: 0.2s;
    border-bottom: 90px solid #3D006C;
    border-left: 40px solid transparent;
}

.home span.home_tit {
    position: absolute;
    width: auto;
    top: 35px;
    right: 1vw;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    font-family: 'GmarketSans';
}

.home:before {
    content: "";
    top: 0px;
    position: absolute;
    width: calc(100% + 50px);
    height: 0px;
    background: none;
    z-index: -10;
    right: 0px;
    border-bottom: 90px solid #6100AC;
    border-left: 40px solid transparent;
}

.home:hover {
    border-bottom: 90px solid #360060;
    border-left: 40px solid transparent;
}

.home span.icon {
    display: inline-block;
    vertical-align: text-top;
    background: url(/roda/images/front/dashboard/db_home.svg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 15px;
    margin-top: -0.1rem;
}

main#dashboard {
    width: 100%;
    background: #25083A;
    height: calc(100vh - 90px);
    min-height: 990px;
    overflow: auto;
    padding: 20px;
    display: block;
}

@media (min-width:2561px) {
    header {
        height: 150px;
    }

    .header_wrap .logo_box .logo {
        background-size: auto 80%;
    }

    .dashboard_tit {
        height: 110px;
        margin: 20px 0;
    }

    .home {
        width: 600px;
        border-bottom: 150px solid #3D006C;
        border-left: 60px solid transparent;
    }

    .home:before {
        width: calc(100% + 70px);
        border-bottom: 150px solid #6100AC;
        border-left: 60px solid transparent;
    }

    .home:hover {
        border-bottom: 150px solid #360060;
        border-left: 60px solid transparent;
    }

    .home span.home_tit {
        top: 55px;
    }

    main#dashboard {
        height: calc(100vh - 150px);
    }
}


*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #3D006C;
}

*::-webkit-scrollbar-thumb {
    background-color: #3D006C;
    border-radius: 0px;
}

*::-webkit-scrollbar-track {
    background-color: #25083A;
    border-radius: 0px;
}

section.dashboard {
    width: 100%;
    min-width: 1600px;
    height: calc(100vh - 90px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: #25083A;
    padding: 20px 20px;
}

section.dashboard .box {
    background: #140023;
    border-radius: 15px;
    padding: 15px 15px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #e8e8e8;
    border: 2px solid #45007A;
}

.box_hd {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.box_hd h3{
    color: #fff;
    font-size: 1.25rem;
}

.box_hd p {
    color: #aaa;
    font-size: 0.875rem
}

.box .graph {
	position: relative;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.box .graph_fl2 {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
}

section.dashboard .box.ty_none {
    background: none;
    position: relative;
    padding: 0;
    border: none;
}

.db_main {
/*     width: 60%; */
    width: 85%;
    margin:auto;
    height: 100%;
    position: relative;
/*     bottom: -20px; */
/*     background: url(/roda/images/front/dashboard/dashboard_main.svg) no-repeat center; */
    background: url(/roda/images/front/dashboard/dashboard_main.png) no-repeat center;
    background-size: 100%;
    background-position: center;
    z-index: 0;
}

.X_axis, .Y_axis {
	font-size: 0.875rem;
	color: #999;
}

.X_axis {
	position: absolute;
	left: 25px;
	top: 50px;
}

.Y_axis {
	position: absolute;
	right: 25px;
	bottom: 10px;
}


@media (min-width:2561px) {
    section.dashboard {
        height: calc(100vh - 150px);
        padding: 30px 30px;
    }

    .box_hd {
        padding: 10px;
    }

    section.dashboard .box {
        border-radius: 50px;
        padding: 30px 40px 20px;
        border: 3px solid #45007A;
    }
    
    .X_axis, .Y_axis {
	font-size: 0.75rem;
	}
	
	.X_axis {
		position: absolute;
		left: 50px;
		top: 90px;
	}
	
	.Y_axis {
		position: absolute;
		right: 50px;
		bottom: 15px;
	}
}

/* ---- */
.data_tx {
    flex: 1;
}

.ty_row .data_tx {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ty_row .data_tx h3.box_tit {
    margin: 0;
    padding-right: 33px;
    position: relative;
}

.ty_row .data_tx h3.box_tit:after {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    width: 3px;
    height: 40px;
    background: #eee;
}

.ty_row .data_tx p {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.ty_col .data_tx {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.num {
    font-size: 1.5rem;
    font-family: 'Montserrat'
}

.data_tx span {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Montserrat';
}

.data_tx span.up {
    color: #EC5353;
}

.data_tx span.up:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    background: url(/roda/images/front/dashboard/up.png) no-repeat center
}

.data_tx span.dwon {
    color: #658aff;
}

.data_tx span.dwon:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    background: url(/roda/images/front/dashboard/down.png) no-repeat center
}

.table_area {
    max-height: 200px;
}

table.center {
    text-align: center;
    font-weight: 400;
    width: 100%;
}

table {
    font-size: 0.875rem;
}

tr {
    border-bottom: 1px solid #eee;
}

td,
th {
    padding: 5px 10px;
}

th {
    background: #F1F1F1;
}

td {
    border-right: 1px solid #F1F1F1;
}

td:last-child {
    border-right: none;
}

/* ---- */


/* 타입_01 */
.dashboard.ty01 {
    flex-wrap: wrap;
	position: relative;
	height: 100%;
}
.dashboard.ty01 .box {
	position: absolute;
}

.dashboard.ty01 .box:nth-child(1) {
    width: 33%;
    height:22.5%;
    top:0;
    left: 0;
}

.dashboard.ty01 .box:nth-child(2) {
    width: 33%; 
    height:22.5%;
    top:23.5%;
    left:0;
}

.dashboard.ty01 .box:nth-child(3) {
    width: 33%; 
    height:22.5%;
    top:47%;
    left:0;
}

.dashboard.ty01 .box:nth-child(4) {
    width: 33%; 
    height:36%;
    top:0%;
    left:33.5%;
}

.dashboard.ty01 .box:nth-child(5) {
    width: 33%; 
    height:32%;
    top:37.5%;
    left:33.5%;
}

.dashboard.ty01 .box:nth-child(6) {
    width: 33%;
    height:22.5%;
    top:0;
    right:0;
}

.dashboard.ty01 .box:nth-child(7) {
    width: 33%; 
    height:22.5%;
    top:23.5%;
    right:0;
}

.dashboard.ty01 .box:nth-child(8) {
    width: 33%; 
    height:22.5%;
    top:47%;
    right:0;
}

.dashboard.ty01 .box:nth-child(9) {
    width: 49.75%; 
    height:29.5%;
    top:70.5%;
    left:0;
}

.dashboard.ty01 .box:nth-child(10) {
    width: 49.75%; 
    height:29.5%;
    top:70.5%;
    right:0;
}

.loading_bar {
	position: fixed;
	width: 100%;
	height: calc(100vh);
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading_bar img {
	filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
	margin-bottom: 0px;
}

.visual_icon {
    width: 100%;
    margin-top: -28px;
}

.visual_icon ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.visual_icon ul li {
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    line-height: 1.3;
}

.visual_icon ul li .img {
    width: 60px;
    height: 60px;
}

.visual_icon ul li p.tit {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.visual_icon ul li p.num {
    font-size: 1.375rem;
    font-weight: bold;
    font-family: 'Montserrat';
    line-height: 1.5;
}

.visual_icon li .comparison {
	font-size: 0.875rem;
	color: #a8a8a8;
	font-weight: 400;
}

.visual_icon ul li span {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Montserrat';
    margin-right: 5px;
    vertical-align: middle;
}

.visual_icon ul li span.up {
    color: #EC5353;
}

.visual_icon ul li span.up:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 12px;
    background: url(/roda/images/front/visualization/up.png) no-repeat center
}

.visual_icon ul li span.dwon {
    color: #658aff;
}

.visual_icon ul li span.dwon:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 12px;
    background: url(/roda/images/front/visualization/down.png) no-repeat center
}

@media (min-width:2561px) {
	.visual_icon ul li .img {
	    width: 100px;
	    height: 100px;
	}
	.visual_icon ul li .img img {
		width: 100%;
	}
	.visual_icon ul li span.up:before {
	    margin-right:10px;
	    background-size: cover;
	    margin-bottom: 5px;
	}
	.visual_icon ul li span.dwon:before {
		margin-right:7px;
	    background-size: cover;
	    margin-bottom: 5px;
	}
}






