@charset "UTF-8";

:root {
    --font-name: "Pretendard";
    --font-size: 1.5rem;
    --font-weight: 400;
    --font-color: #000000;
    --line-height: 24px;

    --text-primary: #2b316a;
    --text-secondary: #029c58;
    --text-tertiary: #717171;

    --bg-primary: #2b316a;
    --bg-secondary: #029c58;
    
    --border-radius: 6px;
}


*{
    font-family: 'Pretendard';
    box-sizing: border-box;
}
html,body{
    min-width: 1410px;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,button {
    margin: 0;
    padding: 0;
}

fieldset,img {
    border: 0 none
}

dl,ul,ol,menu,li {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:before,blockquote:after,q:before,q:after {
    content: "";
    content: none
}

input,select,textarea,button {
    vertical-align: middle
}

input::-ms-clear {
    display: none
}

button {
    border: 0 none;
    background-color: transparent;
    cursor: pointer
}
body,th,td,input,select,textarea,button {
    color: #333;
    font-family: 'Pretendard';
}
a {
    color: #333;
    text-decoration: none;
    cursor: pointer
}
a:active,a:hover {
    text-decoration: none
}
a:active {
    background-color: transparent
}

address,caption,cite,code,dfn,em,var {
    font-style: normal;
    font-weight: 400
}
html {
    font-size: 10px
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,button{
    font-size: var(--font-size);
}

img{
    vertical-align: top;
}

.flex {
    display: flex;
}
.flex.gap-8 {
    gap: 0.8rem;
}
.flex.gap-20 {
    gap: 2rem;
}
.flex.gap-16 {
    gap: 1.6rem;
}
.flex.flex-1 > * {
    flex: 1;
}

.flex-item-cetner {
    align-items: center;
}

.flex-space-between {
    justify-content: space-between !important;
}

.flex-center {
    justify-content: center;
}

.flex-end {
    justify-content: flex-end;
}

.flex-start {
    align-items: flex-start;
}
.mb0{
    margin-bottom: 0 !important;
}
.mb10{
    margin-bottom: 10px !important;
}
.mb20{
    margin-bottom: 20px !important;
}
.tac {
    text-align: center;
}
.btn-center {
    padding-top: 3rem;
    display: flex;
    gap:1rem;
    justify-content: center;
}
.green{
    color:#049a58 !important;
}

.bb-custom-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.bb-custom-wrapper .bb-bookblock {
	width: 100%;
	height: 100%;
	-webkit-perspective: 2000px;
	perspective: 2000px;
}

.bb-custom-side {
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
	background: #fff;
	/* Centering with flexbox */
}
.h170{
    height: 170px;
}
.h225{
    height: 225px;
}
.h285{
    height: 285px;
}

/* No JS */
.no-js .bb-custom-wrapper {
	height: auto;
}

.no-js .bb-custom-content {
	height: 470px;
}

@media screen and (max-width: 61.75em){
	.bb-custom-side {
		font-size: 70%;
	}
}

@media screen and (max-width: 33em){
	.bb-custom-side {
		font-size: 60%;
	}
}

/* common   */
.bold{
    font-weight: bold !important;
}
.chart-box{
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 20px;
}
.form-radio {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0 1rem;
    cursor: pointer;
}
.form-radio input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0.1;
}
.form-radio i {
    display: inline-block;
    position: relative;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    transition: all 0.25s;
}

.form-radio i::after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.25s;
    border-radius: 50%;
    background-color: #fff;
}
.form-radio span {
    color: #555555;
    font-size: 1.5rem;
}

.form-radio input[type=radio]:checked + i {
    background-color: #fff;
    border-color: #2b316a;
    background-repeat: no-repeat;
    background-position: center;
}
.form-radio input[type=radio]:checked + i:after {
    background-color: #2b316a;
    border: 1px solid #2b316a;
    width: 10px;
    height: 10px;
}
.form-radio input[type=checkbox] + i {
    border-radius: 0;
    border-radius: 0.3rem;
}
.form-radio input[type=checkbox]:checked + i::after {
    border-radius: 0;
    border-radius: 0.3rem;
}
.form-radio span span {
    color: #007ab4;
    font-size: 1.9rem;
}
.form-radio input[type=checkbox] + i {
    border-radius: 0;
    border-radius: 0.3rem;
}

/* form control */
.form-control{
    position: relative;
    border-radius: 0.6rem;
    border: 1px solid #c6c6c6;
    height: 4.8rem;
    padding: 0 1rem;
    background: #fff;
    color:#555555;
}
.form-control.search {
    position: relative;
}

.form-control.search input {
    background: transparent;
    height: 100%;
    width: 95%;
    border: none;
}

.form-control.search .serch-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 17px;
    background: url('../images/home/search-btn.png') no-repeat;
    border: none;
}
.form-control.sm{
    height: 3rem;
    width: 6.5rem;
}
select{
    appearance:none;
    background:#fff url('images/select-arrow.png') no-repeat right 10px center !important;
}

/* button */
.btn{
    height: 48px;
    padding: 0 32px;
    border-radius: 6px;
}
.btn-black{
    background: #000;
    color:#fff;
}
.btn-nav{
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.btn-nav div{
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-nav.between{
    justify-content: space-between;
}
.btn-nav a{    
    display: inline-block;
    border-radius: 6px;
    height: 48px;
    line-height: 46px;
    font-size: 17px;
}
.btn-nav .home-btn{
    border: 1px solid #555555;
    padding: 0 16px;
    line-height: 50px;
}
.btn-nav .home-btn i{
    width: 17px;
    height: 17px;
    background-image: url('../images/ico-home.png');
    background-repeat: no-repeat;
    display: inline-block;
}
.btn-nav .btn-prev{
    color:#555555;
    border: 1px solid #555555;
    padding: 0 24px;
}
.btn-nav .btn-prev.blue{
    background: #2b316a;
    color:#fff;
}
.btn-nav .btn-next{
    color:#fff;
    background: #2b316a;
    padding: 0 24px;
}
.btn-nav .down-btn{
    border: 1px solid #2b316a;
    color:#2b316a;
    padding: 0 22px;
}

.first-side{
    display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    background-image: url(../images/first-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
}
.first-side.green{
    background-image: url(../images/green/first-bg02.png);
}
.first-side.home{
    background-image: url(../images/home/first-bg03.png);
}
.first-side h2{
    font-size: 32px;
    background: linear-gradient(to right, #2b336a, #049b59);
    color: transparent;
    -webkit-background-clip: text;
}
.first-side h2.mb40{
    margin-bottom: 40px;
}
.first-side h2 em{
    color:#1d1d1d;
    font-weight: normal;
}

.first-side span{
    display: block;
    color:#1d1d1d;
    font-size: 32px;
    margin-bottom: 30px;
}
.first-side p{
    font-size: 19px;
    color:#555555;
    text-align: center;
    margin-bottom: 75px;
}
.first-side p.mb30{
    margin-bottom: 30px;
}
.first-side p.mb55{
    margin-bottom: 55px;
}
.first-side p.fz17{
    font-size: 17px;
}
.service-building{
    display: flex;
    flex-wrap: wrap;
    width: 412px;
    gap: 4px;
    margin-bottom: 30px;
}

.service-building li{
    height: 36px;
    line-height: 36px;
    width: calc(100% / 2 - 2px);
    position: relative;
    border: 1px solid #f0f0f0;
    background: #f8f8f8;
    border-radius: 4px;
    color:#555555;
    padding-left: 37px;
}
.service-building.single li{
    width: 100%;   
    height: auto;
    line-height: 1.3;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 8px;
}
.service-building li:after{
    position: absolute;
    left: 12px;
    top: 10px;
    display: block;
    content:'';
    width: 18px;
    height: 18px;
    background-image: url(../images/ico-arrow.png);
}
.service-building li.none:after{
    display: none;
}
.first-side .start-btn{
    display: inline-block;
    color:#fff;
    border-radius: 8px;
    height: 56px;
    line-height: 56px;
    padding: 0 32px;
    font-size: 19px;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(43,52,106,1) 0%, rgba(4,155,88,1) 100%);
}
.first-side .board-btn{
    display: inline-block;
    color:#2b316a;
    border: 1px solid #2b316a;
    border-radius: 8px;
    height: 56px;
    line-height: 56px;
    min-width: 128px;
    padding: 0 30px;
    font-size: 19px;
    text-align: center;
}
.first-side .board-btn + a{
    margin-left: 7px;
}
.first-bg{
    width: 100%;
    height: 100%;
    background-image: url(../images/solar/first-bg.png);
    background-size: cover;
}
.first-bg02{
    width: 100%;
    height: 100%;
    background-image: url(../images/green/first-bg.png);
    background-size: cover;
}
.first-bg03{
    width: 100%;
    height: 100%;
    background-image: url(../images/home/first-bg.png);
    background-size: cover;
}
.map-section{
    position: relative;
    width: 100%;
    height: 100%;
}
.map-section .mark-info{
    position: absolute;
    top: 0px;
    width: 100%;
}
.map-section .map-btn{
    position: absolute;
    right: 0;
    top: 60px;
}
.map-section .map-btn .map-btn-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    text-align: left;
    min-width: 150px;
    border-radius: 8px;
    font-size: 15px;
    padding: 10px;
    border: 1px solid #c6c6c6;
    background: #fff;
    transition: all .3s;
}
.map-section .map-btn .map-btn-item:hover{
    background: #000;
    color:#fff;
}
.map-section .map-btn .map-btn-item + .map-btn-item{
    margin-top: 10px;
}
.map-section .map-btn .map-btn-item i{
    display: inline-block;
    width: 22px;
    height: 22px;
}
.map-section .map-btn .map-btn-item i.draw{
    background-image: url(../images/solar/ico-draw.svg);
}
.map-section .map-btn .map-btn-item i.del{
    background-image: url(../images/solar/ico-del.svg);
}
.map-section .map-btn .map-btn-item:hover i.draw{
    background-image: url(../images/solar/ico-draw-on.svg);
}
.map-section .map-btn .map-btn-item:hover i.del{
    background-image: url(../images/solar/ico-del-on.svg);
}
.bb-custom-side{
    padding: 30px;
}
.bb-custom-side + .bb-custom-side{
    background: #f0f1f3;
}

/* head--ti */
.head--ti{
    margin-bottom: 40px;
}
.head--ti h3{
    font-size: 25px;
    color:#2b316a;
    margin-bottom: 18px;
    background: linear-gradient(90deg, rgba(43,52,106,1) 0%, rgba(4,155,88,1) 50%, rgba(4,155,88,1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}
.head--ti p{
    font-size: 17px;
    color:#555555;
}

/* mark-info */
.mark-info{
    border: 1px solid #f0f0f0;
    background: #f8f8f8;
    border-radius: 4px;
    padding: 11px;
    margin-bottom: 8px;
}
.mark-info p{
    position: relative;
    color:#555555;
    font-size: 15px;
    padding-left: 26px;
}
.mark-info p:after{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content:'';
    background-image: url(../images/mark-info-ico.png);
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}
.mark-info .issue-value{
    font-size: 13px;
    color:#c8553e;
}
.mark-info.flex span{
    font-size: 13px;
    color:#8e8e8e;
}


/* search-form */
.search-form{
    display: flex;
    padding: 20px;
    border-radius: 4px;
    background: #f0f1f3;
    gap: 12px;
    margin-bottom: 32px;
}

.search-form select{
    width: 167px;
}

.search-form input{
    flex:1;
}

/* juso-li */
.juso-li{
    max-height: 480px;
}
.juso-li-item{
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 20px;
    transition: all .3s;
    cursor:pointer;
}
.juso-li-item + .juso-li-item{
    margin-top: 8px;
}
.juso-li-item.active{
    border: 1px solid #2b316a;
    background: #f0f1f3;

}
.juso-li-item.confirm{
    border: 1px solid #2b316a;
    background: #f0f1f3;
    cursor: auto;
    margin-bottom: 32px;
}

.juso-li-item:hover{
    border: 1px solid #2b316a;
    background: #f0f1f3;
}
.juso-li-item dl{
    display: flex;
    align-content: center ;
    gap: 20px;
    
}
.juso-li-item dl + dl{
    margin-top: 10px;
}
.juso-li-item dl dt{
    position: relative;
    font-size: 17px;
    min-width: 90px;
    padding-left: 9px;
}
.juso-li-item dl dt:after{
    position: absolute;
    left: 0;
    top:8px;
    display: block;
    content:'';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000;

}
.juso-li-item dl dd{
    font-size: 17px;
}


/* building-info */
.building-info{
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
}

.building-info div{
    display: flex;
}
.building-info div + div{
    margin-top: 12px;
}
.building-info div dl{
    display: flex;
    flex:1;
}
.building-info div dl dt{
    width: 100px;
    color:#555555;
}
.building-info div dl dd{
    font-weight: bold;
}

/* panel-flex2 */
.panel-flex2{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.panel-flex2 > div{
    flex:1;
    height: 192px;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    cursor: pointer;
}
.panel-flex2 > div.active{
    position: relative;
    border: 2px solid #2b316a;
    
}
.panel-flex2 > div.active:after{
    position: absolute;
    left: 10px;
    top: 10px;
    display: block;
    content:'';
    width: 20px;
    height: 20px;
    background:#fff url('../images/check_active.png')
}
.panel-flex2 dl{
    text-align: center;
    margin-bottom: 20px;
}
.panel-flex2 p{
    margin-bottom: 20px;
}
.panel-flex2 dl dd{
    font-weight: bold;
}
.panel-flex2 span{
    margin-top: 14px;
    color:#1d1d1d;
}
/* info-flex2 */
.info-flex2{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.info-flex2 h4{
    font-size: 17px;
    color:#1d1d1d;
    margin-bottom: 7px;
}
.info-flex2 > div{
    flex:1;
}
.info-flex2 .info-flex2-box{
    min-height: 160px;
    padding: 20px;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
}
.info-flex2 .type01{

}
.info-flex2 .type01 > div{
    padding: 10px 0;
    font-size: 25px;
    color:#029c58;
    font-weight: bold;
    margin-bottom: 15px;
    background-image: url('../images/solar/ico-result06.png');
    background-repeat: no-repeat;
    background-position: 350px center;
}
.info-flex2 > div + div .type01 > div{
    background-image: url('../images/solar/ico-result07.png');
}
.info-flex2 .type01 > div span{
    color:#555555;
    font-size: 15px;
}
.info-flex2 .type01 p{
    font-size: 13px;
    line-height: 1.3;
    color:#555555;
}

.info-flex1{
    margin-bottom: 20px;
}
.info-flex1 h4{
    font-size: 17px;
    color: #1d1d1d;
    margin-bottom: 7px;
}
.info-flex1 .chart-box{
    position: relative;
    display: flex;
    gap:20px;
    padding: 20px;
}
.info-flex1 .chart-box.flex-column{
    flex-direction: column;
}
.info-flex1 .chart-box.no-flex{
    display: block;
}
.info-flex1 .chart-box .chart-btn{
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.info-flex1 .chart-box .chart-btn button{
    border: 1px solid #555555;
    color:#555555;
    font-size: 15px;
    height: 40px;
    padding: 0 15px;
    border-radius: 6px;
    background: #fff;

}

.info-flex1 .dl-type01 dl{
    margin-bottom: 20px;
}
.info-flex1 .dl-type01 dl dt{
    color: #1d1d1d;    
}
.info-flex1 .dl-type01 dl dd{
    font-size: 40px;
    color:#029c58;
    font-weight: bold;
}
.info-flex1 .dl-type01 dl dd span{
    font-size: 15px;
    color:#555555;
    font-weight: normal;
}
.info-flex1 .chart-box .chart-area{
    flex:1;
}

.info-flex1 .dl-type02 dl{
    display: flex;
    align-items: flex-start;
    margin-bottom: 7px;
}
.info-flex1 .dl-type02.between dl{
    justify-content: space-between;
}
.info-flex1 .dl-type02 dl dt{
    min-width: 80px;
    color:#555555;
    font-size: 15px;
}
.info-flex1 .dl-type02 dl dd{
    font-size: 15px;
    color:#1d1d1d;
    line-height: 1.5;
}
.info-flex1 .dl-type02 dl dd.orange{
    color:#f79443;
}

.info-flex1 .dl-type03{
    display: flex;
    gap: 40px;
}
.info-flex1 .dl-type03 dl{

}
.info-flex1 .dl-type03 dl:after{

}
.info-flex1 .dl-type03 dl dt{
    margin-bottom: 10px;
}
.info-flex1 .dl-type03 dl dt strong{
    font-size: 15px;
}
.info-flex1 .dl-type03 dl dd{
    font-size: 40px;
    color:#2b316a;
    font-weight: bold;
}
.info-flex1 .dl-type03 dl dd span{
    font-size: 15px;
    color:#555555;
    font-weight: normal;
    margin-left: 10px;
}

.info-flex1 .dl-type04{
    display: flex;
    gap:40px;
}
.info-flex1 .dl-type04 dl{
    flex:1;
}
.info-flex1 .dl-type04 dl:after{

}
.info-flex1 .dl-type04 dl dt{
    margin-bottom: 5px;
}
.info-flex1 .dl-type04 dl dt strong{
    font-size: 15px;
}
.info-flex1 .dl-type04 dl dd{
    font-size: 15;
    color:#717171;
    line-height: 1.5;
    
}
.info-flex1 .dl-type04 dl dd strong{
    font-size: 15px;
    color:#1d1d1d;
    font-weight: bold;
    margin-left: 10px;
}
.info-flex1 .dl-type04 dl dd span{
    font-size: 13px;
    color:#1d1d1d;
}


.ico-result{
    display: block;
    width: 100px;
    height: 100px;
}

.ico-result01{
    background-image: url('../images/solar/ico-result01.png');
}
.ico-result02{
    background-image: url('../images/solar/ico-result02.png');
}
.ico-result03{
    background-image: url('../images/solar/ico-result03.png');
}
.ico-result04{
    background-image: url('../images/solar/ico-result04.png');
}
.ico-result05{
    background-image: url('../images/solar/ico-result05.png');
}
.ico-result06{
    background-image: url('../images/solar/ico-result06.png');
}



.info-flex2 .dl-type01 dl{
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}
.info-flex2 .dl-type01.between dl{
    justify-content: space-between;
}
.info-flex2 .dl-type01 dl dt{
    min-width: 145px;
    color:#555555;
    font-size: 15px;
}
.info-flex2 .dl-type01 dl dd{
    font-size: 15px;
    color:#1d1d1d;
    font-weight: bold;
}
.info-flex2 .dl-type01 dl dd.orange{
    color:#f79443;
}



/* slider-wrap */
.slider-wrap{
    padding: 40px 20px;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    background: #fff;
}
.slider-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap:12px;
    width: 100%;
    min-width: 620px;
}
.slider-container .i-text{
    width: 60px;
    font-style: normal;
    font-size: 15px;
    color:#2b316a;
    white-space: nowrap;
}
.slider-container .i-text.ico-led,
.slider-container .i-text.ico-light01,
.slider-container .i-text.ico-light02{
    position: relative;
    width: 80px;
}
.slider-container .i-text.ico-led:after,
.slider-container .i-text.ico-light01:after,
.slider-container .i-text.ico-light02:after{
    position: absolute;
    right: 0;
    top: -3px;
    display: inline-block;
    content:'';
    background-repeat: no-repeat;
    background-position: center;
}
.slider-container .i-text.ico-led:after{
    background-image: url('../images/green/ico-led.svg');
    width: 24px;
    height: 24px;
}
.slider-container .i-text.ico-light01:after{
    background-image: url('../images/green/ico-light01.svg');
    width: 24px;
    height: 24px;
}
.slider-container .i-text.ico-light02:after{
    background-image: url('../images/green/ico-light02.svg');
    width: 24px;
    height: 24px;
}
.slider-container .i-text .ico-light01:after{

}
.slider-container .ico-sun{
    width: 22px;
    height: 22px;
    background-image: url('../images/ico-panel.png');
    background-repeat: no-repeat;
    display: inline-block;
}
.slider-container .ico-sunpanel{
    width: 22px;
    height: 22px;
    /*background-image: url('../images/solar/ico-sunpanel.svg');*/
    background-image: url('../images/solar/icon-title-map.png');
    background-repeat: no-repeat;
    display: inline-block;
}
.slider-range{
    width: 380px;
}
.slider-container input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    position: relative;
    z-index: 2;
}

.slider-container input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: linear-gradient(to right, #22255e 0%, #22255e var(--percent), #ddd var(--percent), #ddd 100%);
    border-radius: 3px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 3px solid #22255e;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 3;
    margin-top: -4px;
}
.slider-container .tickmarks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #333;
}

.slider-container .tickmarks span{
    font-size: 15px;
    color:#717171;
}

.slider-container .input-box {
    margin-left: 26px;   
}

.slider-container .input-box input {
    width: 67px;
    padding: 4px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* toggle-label */
.toggle-ti-wrap{
    position: absolute;
    right: 10px;
    top: 10px;
}
.toggle-ti{
    border: 1px solid #c6c6c6;
    border-radius: 4px;
    background: #fff;
    min-width: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:8px;
    padding: 5px 10px;
}
.toggle-ti + .toggle-ti{
    margin-top: 4px;
}
.toggle-ti p{
    font-size: 13px;
    color:#555555;
}
.toggle-ti-info{
    display: flex;
    align-items: center;
    gap:8px;
}
.toggle-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}
.toggle-label input[type=checkbox] {
    display: none;
}
.toggle-label input[type=checkbox]:checked + .toggle-custom::before {
    transform: translateX(20px);
}

.toggle-label .toggle-custom {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.toggle-label .toggle-custom::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.toggle-label input[type=checkbox]:checked + .toggle-custom {
    background-color: #000000;
}


.energy-slider-wrapper {
    width: 600px;
    margin: 50px auto;
    position: relative;
}

.energy-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: #717171;
}

.energy-slider-labels .label-left,
.energy-slider-labels .label-right {
    color: #555555;
    text-align: center;
}

.energy-slider-labels .label-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #2b316a;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
}

.energy-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
  }

.energy-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: #2f3568;
    border-radius: 50%;
    margin-top: -0px;
    //border: 3px solid #80c49d;
    box-sizing: content-box;
}

.energy-range-input::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background: #fff;
    border: 3px solid #4caf50;
    border-radius: 50%;
}

.input-inner{
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    gap:50px;
    margin-bottom: 8px;   
}

.button-inner{
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 10px 40px;
    display: flex;
    gap:12px;
    margin-bottom: 8px;  
}

.button-inner button{
    border: 1px solid #c6c6c6;
    color:#555555;
    border-radius: 6px;
    padding: 0 20px;
    height: 40px;
    transition: all .3s;
}
.button-inner button.active{
    display: flex;
    align-items: center;
    gap:10px;
    border: 1px solid #2b316a;
    color:#2b316a;
}
.button-inner button.active:before{
    display: inline-block;
    content:'';
    width: 12px;
    height: 9px;
    background-image: url('../images/btn-check.png');
}
.slider-inner .slider-container + .slider-container{
    margin-top: 25px;
}

.system-row{
    height: 520px;
}
.system-row .system-row-inner{
    margin-bottom: 23px;
}
.system-row .panel-flex2{
    margin-bottom: 8px;
}
.row-ti{
    font-size: 17px;
    color:#1d1d1d;
    margin-bottom: 8px;
}

.energy-row{

}
.energy-row .row-ti{
    font-size: 17px;
    color: #1d1d1d;
    margin-bottom: 8px;
}
.energy-row-inner {
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 20px;
    gap: 50px;
    margin-bottom: 8px;
}
.energy-row01{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.energy-row01 dl{
    border-radius: 4px;
    background: #f0f0f0;
    padding: 10px 15px;
}
.energy-row01 dl dt{
    color:#555555;
    margin-bottom: 25px;
    font-size: 13px;
}
.energy-row01 dl dd{
    font-size: 25px;
    text-align: right;
    font-weight: bold;
}
.energy-row01 .green{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:3px;
}
.energy-row01 .green span{
    color: #049a58;
}
.txt-15{
    font-size: 15px;
    font-weight: normal;
}
.txt-13{
    font-size: 13px;
    font-weight: normal;
}
.energy-row02{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.energy-row02 dl{
    display: flex;
    align-content: center;
}
.energy-row02 dt{
    color:#555555;
    width: 80px;
}
.energy-row02 dt .green-circle{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #049a58;

}
.energy-row02 dt .circle{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #555555;
}
.energy-row02 dd{
    font-size: 15px;
    color:#1d1d1d
}

.energy-row03{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.energy-row03 dl{
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    padding: 12px 20px;
    padding-left: 45px;
}
.energy-row03 dl.active{
    border: 1px solid #2b316a;
}
.energy-row03 dt{
    position: relative;
    color:#2b316a;
    margin-bottom: 10px;
    font-size: 15px;
}
.energy-row03 dt:after{
    position: absolute;
    left: -25px;
    top: 5px;
    display: block;
    content:'';
    width: 12px;
    height: 9px;
    background-image: url("../images//green/ico-check.png");
}

.energy-row03 dl.active dt:after{
    background-image: url("../images//green/ico-check-on.png");
}
.energy-row03 dt .green-circle{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #049a58;

}
.energy-row03 dt .circle{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #555555;
}
.energy-row03 dd{
    font-size: 13px;
    color:#1d1d1d
}


/* modal */
.modal-wrap-dimmed {
    z-index: 110;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal {
    overflow: hidden;
    z-index: 30;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.modal--inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
}
.modal--close {
    width: 2rem;
    height: 2rem;
    background-image: url("../images/black-close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2rem;
}
.modal--head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 0.4rem 0.4rem 0 0;
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 1.8rem;
}
.modal--head--inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal--head--inner h3 {
    font-size: 2.1rem;
    font-weight: normal;
}
.modal--head--util {
    display: flex;
    align-items: center;
    gap: 2.3rem;
}
.modal--content {
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 3rem 0;
}
.modal.alert-modal .modal--content {
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 1.2rem;
    padding: 1rem 1.5rem;
    margin-top: -1px;
}
.modal.alert-modal .modal--content.flex-con {
    padding-bottom: 8rem;
}
.modal.modal-input-change .modal--inner {
    width: 450px;
}
.modal.modal-input-change .modal--inner .modal--content .txt01 {
    font-size: 2rem;
}
.modal.modal-input-change .modal--inner .modal--content .txt02 {
    color: #555555;
}
.btn.lg {
    display: inline-block;
    height: 4.8rem;
    line-height: 4.8rem;
    padding: 0 2.4rem;
    border-radius: 0.6rem;
    font-size: 1.7rem;
}
.btn.border-gray {
    border: 1px solid #717171;
    background: transparent;
    color: #555555;
}
.btn.primary {
    background: #164194;
    color: #fff;
}

.txt-wrap .txt02 {
    font-size: 1.5rem;
    color: #717171;
    margin-bottom: 20px;
}
.txt-wrap .txt01 {
    font-size: 1.7rem;
}
/* table */
.table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #c6c6c6;
}
.table tr {
    border-bottom: 1px solid #c6c6c6;
}
.table th,
.table td {
    padding: .8rem .8rem;
    text-align: left;
    vertical-align: middle;
    font-size: 1.5rem;
}
.table th {
    background: #f7f7f7;
    color: #332b28;
    font-weight: normal;
}
.table td {
    color: #717171;
}
.table td .time-small {
    color: #757575;
    font-size: 1.5rem;
}
.table .tac {
    text-align: center;
}
.table thead th {
    background-color: #f0f0f0;
    text-align: center;
    border: 1px solid #c6c6c6;
}
.table thead th:first-child {
    border-left: none;
}
.table thead th:last-child {
    border-right: none;
}
.table tbody td {
    text-align: center;
    background-color: #fff;
    border: 1px solid #c6c6c6;
}
.table tbody td:first-child {
    border-left: none;
}
.table tbody td:last-child {
    border-right: none;
}

.gauge-item{
    text-align: center;
}
.gauge-item .gauge-area{
    margin-bottom: 15px;
}
.gauge-item .guage-info{
    margin-bottom: 15px;
    font-size: 15px;
    color:#555555;
}
.gauge-item .guage-rangking{
    display: flex;
    align-items: center;
    justify-content: center;
}
.gauge-item .guage-rangking dt{
    font-size: 15px;
    color:#1d1d1d;
}
.gauge-item .guage-rangking dd{
    margin-left: 8px;
}
.gauge-item .guage-rangking dd strong{
    font-size: 40px;
    font-weight: bold;
    color:#029c58
}
.gauge-item .guage-rangking dd span{
    font-size: 15px;
    color:#029c58
}

.vs-input{
    display: flex;
    gap: 20px;
    align-items: center;
    background: #f0f1f3;
    padding: 20px;
    margin-bottom: 20px;
}
.vs-input .form-control{
    flex:1;
}
.vs-input .form-control input{
    width: 85%;
}

.vs-info{
    display: flex;
    gap:20px;
    align-items: center;
    margin-bottom: 30px;
}
.vs-info > div{
    min-height: 110px;
    border: 1px solid #c6c6c6;
    background: #f0f1f3;
    border-radius: 6px;
    padding: 20px;
    flex:1;
}
.vs-info .green{
    border: 1px solid #029c58;
}
.vs-info .green h3{
    color:#029c58;
}
.vs-info h3{
    font-size: 17px;
    margin-bottom: 6px;
}
.vs-info h4{
    font-size: 15px;
    margin-bottom: 20px;
}
.vs-info dl{
    display: flex;

}
.vs-info dl dt{
    font-size: 13px;
    color:#555555;
}
.vs-info dl dt span{
    margin: 0 8px;
}
.vs-info dl dd{
    font-size: 13px;
    color:#1d1d1d;
}

.vs-fare{
    border: 1px solid #c6c6c6;
    padding: 20px;
    margin-bottom: 20px;
}
.vs-fare div{
    position: relative;
    display: flex;
    justify-content: space-between;
}
.vs-fare div + div{
    margin-top: 15px;
}
.vs-fare div strong{
    font-size: 17px;
    color:#1d1d1d;
}
.vs-fare div span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: 17px;
    color:#555555;
}

.apt-img{
    background-repeat: no-repeat;
    
    background-position: center;
    background-color: #f0f0f0;
}

.solar-support-actions {
    display: flex;
    gap: 12px;
    background: #dcdde6;
    padding: 20px;
    justify-content: center;
    border-radius: 8px;
}

.solar-btn {
    padding: 10px 20px;
    border: 1px solid #2e347c;
    border-radius: 999px;
    background: #fff;
    color: #2e347c;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.solar-btn:hover {
    background: rgba(46, 52, 124, 0.1);
}



 /* ////////////// MAP /////////////// */
header.site-header {
    border-bottom: 1px solid #c6c6c6;
    color: #fff;
    height: 80px;
    display: flex;
    gap:20px;
    padding: 0 25px;
    align-items: center;
    background-image: url(../images/map/head_bg.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
header.site-header h1 {
    font-size: 25px;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(43, 52, 106, 1) 0%, rgba(4, 155, 88, 1) 70%, rgba(4, 155, 88, 1) 100%);
    color: transparent;
    -webkit-background-clip: text;
}
header.site-header span{
    font-size: 17px;
    color:#555555;
}
/* 레이아웃 */
.wrapper { display: flex; height: calc(100vh - 80px); }

/* 좌측 사이드바 */
aside#sidebar {
    width: 370px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.search-area {
    padding: 20px;
}
.search-area form {
    position: relative;
    display: flex;
    border: 2px solid transparent;
    margin-bottom: 20px;
    border-radius: 6px;
    background-image: linear-gradient(#fff, #fff), 
    linear-gradient(to right, #2b326a,  #029b58);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.search-area form input[type="search"] {
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    border: none;
}
.search-area form button {
    width: 40px;
    height: 48px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.location-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
}
.location-nav .location-nav-name{
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    background: #f0f1f3;
    font-size: 17px;
    text-align: center;
}
.location-nav .back-arrow{
    width: 40px;height: 40px;
    border: 1px solid #555555;
    border-radius: 6px;
}
.location-nav .back-arrow img{
    vertical-align: middle;
}
.list-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    border-top: 8px solid #f0f0f0;
}
.ranking-list {
    
}
.list-area-ti{
    font-size: 17px;
    color:#1d1d1d;
    margin-bottom: 15px;
}
.ranking-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px;
    border: 1px solid #c6c6c6;
    cursor: pointer;
    transition: background .2s;
    border-radius: 6px;
}
.ranking-item + .ranking-item{
    margin-top: 8px;
}
.ranking-item:hover,
.ranking-item.active{
    border: 1px solid #2b316a;
    background: #e8e8e8; 
}
.ranking-item .rank {    
    border: 1px solid #e8e8e8;;
    font-weight: bold;
    font-size: 21px;
    color:#8e8e8e;
}
.ranking-item .rank-com{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
}
.ranking-item .info {
    flex: 1;
    font-weight: bold;
    color:#1d1d1d;
    font-size: 17px;
}
.ranking-item .info .name { margin-bottom: 4px; }
.ranking-item .info .meta {
    font-size: 15px;
    color: #717171; 
}
.ranking-item .info .meta strong{
    color:#029c58;
}

/* 메인 콘텐츠 */
main#content {
    position: relative;
    width: 370px;
    background: #fff;
    border-right: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
}
main#content .close-panel{
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 60px;
    border-radius: 0 2px 2px 0 ;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
main#content .close-panel i{
    display: inline-block;
    vertical-align: middle;
    background-image: url('../images/map/panel-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
    width: 7px;
    height: 12px;
}
section.content-header{
    border-bottom: 1px solid #e0e0e0;
}
.content-header .label-wrap {
    padding: 15px 20px;
    background: #2b316a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.energy-range {
    background: #c8553e;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    margin-right: 12px;
}
.content-header .label-wrap .close-btn{
    width: 14px;
    height: 14px;
    background-image: url("../images/map/white-close.png");
    background-repeat: no-repeat;
    background-position: center;
}
.content-header .head-info{
    padding: 20px;
    height: 90px;
}
.content-header h2 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1;
    color: #2b316a;
}
.content-header .address {
    font-size: 14px;
    color: #555;
}
.tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}
.tab {
    flex:1;
    color: #555;
    cursor: pointer;
    position: relative;
    transition: color .2s;
}
.tab button{
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
}
.tab.active button {
    color: #049a58;
}
.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: #049a58;
}
section.content-body {
    overflow-y: auto;
    flex: 1;
}
.simulation {
    display: flex;
    gap: 24px;
}
.sim-panel {
    flex: 1;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
}
.sim-panel h3 {
    font-size: 16px;
    margin-bottom: 12px;
}
.slider-group {
    margin-bottom: 16px;
}
.slider-group label {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}
.slider-group input[type="range"] {
    width: 100%;
}
.summary {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.location-tab {
    
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px;
}
.location-tab .location-tab-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.location-tab button {
    border: none;
    border-right: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    background: #fff;
    padding: 8px 0;
    font-size: 15px;
    color:#717171;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: all .3s;
}
.location-tab button span{
    color:#2b316a;
    font-size: 13px;
}
.location-tab .location-tab-row button:nth-child(3n) {
    border-right: none;
}
.location-tab .location-tab-row:last-child button{
    border-bottom: none;
}
.location-tab button:hover,
.location-tab button:hover span {
    background: #eaf6ea;
    color: #28a367;
}

.quick-service{
    background: #fafafa;
    padding: 0 20px 20px;
}

.quick-service ul{

}
.quick-service ul li{

}
.quick-service ul li + li{
    border-top: 1px solid #e4e4e4;
}
.quick-service ul li a{
    padding: 20px 13px;
    display: inline-block;
    color:#717171;
    font-size: 17px;
}
.quick-service ul li a:after{
    display: inline-block;
    content:'';
    width: 8px;
    height: 12px;
    margin-left: 12px;
    vertical-align: middle;
    background-image: url(../images/map/right-arrow.png);
}

.quick-service .counseling{
    display: block;
    background-color: #d7eaf5;
    color:#1d1d1d;
    padding: 20px 20px 20px 100px;
    border-radius: 4px;
    background-image: url(../images/map/ico-call.png);
    background-repeat: no-repeat;
    background-position: 30px center;
    line-height: 1.5;
}
.quick-service .counseling span{
    color:#0086d9;
}

.toggle-hidden{
    display: none;
}


/* 기본 */
.default-details {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.default-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.default-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}


.default-detail-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.default-detail-icon {
    width: 20px;
    height: 20px;
}

.default-detail-label {
    font-size: 15px;
    color: #555555;
}

.default-detail-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.default-detail-value {
    font-size: 15px;
    color: #c8553e;
    white-space: nowrap;
}

.default-detail-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.default-detail-toggle:hover {
    color: #666;
}

.detail-toggle svg {
    transition: transform 0.3s ease;
}

.detail-item.expanded .detail-toggle svg {
    transform: rotate(180deg);
}

/* 이슈 */
.impact-estimate {
    position: relative;
    background: #f8f8f8;
    border-bottom: 1px solid #ebebeb;
    padding: 24px 16px 16px;
    color: #333;
}
.estimate-header {
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}
.estimate-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.estimate-title p{
    color:#1d1d1d;
    font-size: 15px;
}
.estimate-title span{    
    font-size: 13px;
    color:#8e8e8e;
}
.estimate-total {
    font-size: 15px;
    color: #2caf76;
    line-height: 1.2;
}
.estimate-total .amount {
    font-size: 25px;
    color: #2caf76;
    font-weight: 700;
}
.sub-tab {
    display: block;
    position: relative;
    width: max-content;
    margin: -12px auto 10px;
    padding: 4px 16px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-size: 13px;
    color: #555;
    text-align: center;
}
.sub-tab.active {
    background: #fff;
    border-color: #e0e0e0;
}
.issue-mark{
    padding: 16px 20px;
    border-bottom: 1px solid #ebebeb;
}
.estimate-item {
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:20px;
    align-items:center;     
    position:relative;
    padding:6px 0;
}
.estimate-label,
.estimate-value {
    white-space: nowrap;
    font-size:14px;
}

.estimate-label {
    grid-column:1;
    color:#777;
}

.estimate-value {
    grid-column:3;
    color:#2caf76;
}

.estimate-item::before {
    content:"";
    grid-column:2;
    grid-row:1 / -1;
    justify-self:stretch;
    align-self:center;
    border-bottom:1px dotted #ccc;
}

 /* Accordion Container */
.feature-accordion {
    padding: 20px;
}
.feature-accordion__item + .feature-accordion__item {
    margin-top: 12px;
}

/* Accordion Header */
.feature-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.feature-accordion__header:hover {
    background-color: #f9f9f9;
}
.feature-accordion__header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}
.feature-accordion__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #e0e0e0;
}
.feature-accordion__title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}
.feature-accordion__indicator svg {
    width: 16px;
    height: 16px;
    fill: #000000;
    transition: transform 0.3s;
}
.feature-accordion__item--expanded .feature-accordion__indicator svg {
    transform: rotate(180deg);
}

/* Accordion Panel */
.feature-accordion__panel {
    display: none;
    background-color: #fff;
    border: 1px solid #c6c6c6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 16px;
    margin-top: -1px;
}
.feature-accordion__item--expanded .feature-accordion__panel {
    display: block;
}
.feature-accordion__item--expanded .feature-accordion__header{
    border-bottom: 2px solid #c6c6c6;
    border-radius:  8px 8px 0 0;
}
.feature-accordion__text {
    font-size: 14px;
    color: #555;
    line-height: 1.3;
    margin-bottom: 16px;
}

.data-grid-container {
    background: #fff;
    border-radius: 8px;
}
.data-grid__section {
    margin-bottom: 8px;
}
.data-grid__section:last-child {
    margin-bottom: 0;
}
.data-grid__header .data-grid__row{
    margin-bottom: 4px;
    background: #f8f8f8;
}
.data-grid__footer .data-grid__row{
    border: 1px solid #2caf76;
    background: #f5fbf8;
    margin-top: 8px;
}

.data-grid__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    padding: 13px 15px;
}
.data-grid__row + .data-grid__row {
    margin-top: 4px;
}
.data-grid__cell {
    flex: 1;
    text-align: center;
    font-size: 13px;
    border: none;
    white-space: nowrap;
}
.data-grid__cell--primary {
    text-align: left;
    color: #555;
}
.data-grid__cell--highlight {
    color: #049a58;
    font-weight: 500;
}
.data-grid__cell--numeric {
    text-align: right;
    color: #555;
}
.data-grid__body .data-grid__cell--numeric strong{
    font-size: 15px;
    color:#1d1d1d;
}
.data-grid__body .data-grid__cell--numeric .line-through{
    font-size: 13px;
    color:#717171;
    text-decoration: line-through;
}
.data-grid__footer .data-grid__row .data-grid__cell--primary{
    color: #049a58 !important;
}
.data-grid__footer .data-grid__row .data-grid__cell--numeric{
    color: #049a58 !important;
}
.data-grid__footer .data-grid__row .data-grid__cell--numeric strong{
    font-size: 15px;
    color: #049a58 !important;
}
.blue-down{
    display: inline-block;
    margin-right: 5px;
    color:#0000ff;
    font-size: 13px;
    
}
.blue-down svg{
    width: 11px;
}
.blue-down svg path{
    color:#0000ff;
}
.red-up{
    display: inline-block;
    margin-right: 5px;
    color:#ff0000;
    font-size: 13px;
}
.red-up svg{
    width: 11px;
    transform: rotate(180deg);
}
.red-up svg path {
    fill: #ff0000;
}
.feature-link{
    margin-top: 10px;
    display: block;
    background: #2b316a;
    color:#fff !important;
    text-align: center;
    font-size: 15px;
    border-radius:4px;
    height: 40px;
    line-height: 40px;
}

/* 인프라 */
.info-card {
    max-width: 360px;
    margin: 20px;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    font-family: 'Noto Sans KR', sans-serif;
}

.info-card__header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8f8f8;
    border-bottom: 1px solid #ebebeb;
}
.info-card__icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 1px solid #ddd;
}
.info-card__icon-wrapper svg {
    width: 20px;
    height: 20px;
}
.info-card__title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.info-card__body {
    padding: 12px 16px;
}
.info-card__row {
    display: flex;
    justify-content: space-between;
}
.info-card__label {
    font-size: 14px;
    color: #555;
}
.info-card__value {
    font-size: 13px;
    color: #8e8e8e;
}

/* 분석 */
.sim-intro-wrap{
    padding: 20px;
    border-bottom: 1px solid #ebebeb;
}
.sim-intro {
    background-color: #f8f8f8;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 12px 10px;
    color: #333;
}
.sim-intro__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sim-intro__title {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color:#555555;
}
.sim-intro__period {
    font-size: 13px;
    color: #8e8e8e;
}
.sim-intro__subtitle {
    margin-top: 8px;
    font-size: 12px;
    color: #8e8e8e;
    line-height: 1.4;
}
.simulation-wrap{
    padding: 20px;
    background: #f8f8f8;
}
.simulation__panels {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.simulation__panel {
    flex: 1;
    
}
.simulation__panel-header {

}
.simulation__panel-title {
    margin: 0;
    font-size: 14px;
    gap: 4px;
    font-weight: normal;
    margin-bottom: 7px;
}
.simulation__panel-title--main {
    color: #c8553e;   
}
.simulation__panel-title--sub {
    color: #555;
}
.simulation__panel-body {
    padding: 16px;
    border: 1px solid #c6c6c6;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}
.simulation__panel-body .slider-container{
    min-width: 100%;
}
.simulation__panel-body .slider-range{
    width: 100%;
}
.simulation__item {
    margin-bottom: 12px;
}
.simulation__item:last-child {
    margin-top: 20px;
    margin-bottom: 0;
}
.simulation__label {
    font-size: 13px;
    color:#2b316a
}
.simulation__value {
    font-size: 13px;
    color:#2b316a
}
.simulation__panels + .simulation__summary {
    margin-top: 8px;
}
.simulation__summary {
    background: #fff;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    padding: 16px;
}
.simulation__summary-item {
    margin-bottom: 8px;
    font-size: 14px;
}
.simulation__summary-item:last-child {
    margin-bottom: 0;
}
.simulation__summary-label {
    color: #555;
}
.simulation__summary-value {
    font-weight: 600;
}
.simulation__summary-value--highlight{
    color: #c8553e !important;
}
.simul-tbl table{
    margin-top: 10px;
    width: 100%;
    border-top: 1px solid #000;
}
.simul-tbl table td{
    font-size: 13px;
    color:#1d1d1d;
    text-align: center;
    padding: 5px 3px;
    border-bottom: 1px solid #ebebeb;
}

.tool-modal {
    z-index: 10;
    position: absolute;
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 40px auto;
    border: 1px solid #2d2d2d;
}

/* Header */
.tool-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d2d2d;
    color: #fff;
    padding: 12px 16px;
}
.tool-modal__title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.tool-modal__close {
    background: none;
    border: none;
    color: #e4e4e4;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    font-weight: 200;
}
.tool-modal__body{
    padding: 20px;
    background: #fff;
}
.tool-modal__body .slider-container{
    min-width: 100%;
    margin-bottom: 20px;
}
.tool-modal__body .slider-range{
    width: 100%;
}
.tool-modal__term{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.tool-modal__term-label{
    color:#1d1d1d;
    font-size: 15px;
}
.tool-modal__term-value{
    color:#717171;
    font-size: 13px;
    font-weight: bold;
}
.tool-modal__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
}

.tool-modal__tab {
    padding: 5px 0;
    background-color: #e4e4e4;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.tool-modal__tab:hover {
    background-color: #8083a6;
    border: 1px solid #555a88;
    color: #fff;
}

.tool-modal__tab--active {
    background-color: #8083a6;
    border: 1px solid #555a88;
    color: #fff;
}

.tool-modal__legend {
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 16px;
    display: inline-block;
}

.tool-modal__legend-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tool-modal__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tool-modal__legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
}
.tool-modal__legend-label {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.map-btn-wrap{
    display: flex;
    gap: 4px;
    justify-content: flex-end;
}
.black-btn{
    display: inline-block;
    padding: 10px;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #000;
    color:#000;
    background: #fff;
    transition: all .3s;
}
.black-btn:hover{
    background: #000;
    color:#fff;
}
.ico-add01{
    background-image: url(../images/ico-add01.png);
    display: inline-block;
    width: 14px;
    height: 17px;
    vertical-align: text-top;
}
.ico-add02{
    background-image: url(../images/ico-add02.png);
    display: inline-block;
    width: 16px;
    height: 17px;
    vertical-align: text-top;
}
.ico-add03{
    background-image: url(../images/ico-add03.png);
    display: inline-block;
    width: 16px;
    height: 17px;
    vertical-align: text-top;
}
.black-btn:hover .ico-add01{
    background-image: url(../images/ico-add01-on.png);
}
.black-btn:hover .ico-add02{
    background-image: url(../images/ico-add02-on.png);
}
.black-btn:hover .ico-add03{
    background-image: url(../images/ico-add03-on.png);
}


.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    
}

/* 중앙 스피너 */
.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


[hidden] {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
}

body,
html {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-primary);
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.video-bg video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.1);
}

.video-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.header {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100vw;
    z-index: 2;
}

.header-inner {
    padding: 0 12.5vw;
}

.logo {
    width: 234px;
    height: 40px;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/logo.png") no-repeat center center;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 2;
    padding-left: 12.5vw;
}

.main-title {
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
}

.main-desc {
    font-size: 19px;
    opacity: 0.6;
    color: #fff;
    padding: 28px 0 40px;
    line-height: 1.7;
}

.main-btn {
    background: #0868ac;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, filter 0.2s;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 0 2rem;
}

.main-btn:hover {
    background: #0a7edb;
    filter: brightness(1.08) saturate(1.2);
    box-shadow: 0 8px 32px rgba(8, 104, 172, 0.28);
}

.main-btn:hover .icon-arrow-right {
    transform: translateX(12px);
}

.main-btn .icon-arrow-right {
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/arow.png") no-repeat center center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.main-btn:hover .icon-arrow-right {
    transform: translateX(12px);
}

.bottom-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 2;
}

.bottom-menu-inner {
    padding-left: 12.5vw;
    padding-right: 12.5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.bottom-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 12.5vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.2s;
}

.bottom-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 12.5vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.2s;
}

.menu-btn-wrap {
    position: relative;
}

.menu-btn-wrap:hover .menu-link {
    background-color: #fff;
}

.menu-btn {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    color: #fff;
    width: 100%;
    height: 100%;
    padding-left: 2.5rem;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: left;
    transition: background-color 0.2s;
}

.menu-link {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 17px;
    padding: 10px 17px;
    line-height: 1;
    transition: all 0.2s;
}

.type1:hover .menu-btn {
    background-color: rgba(200, 85, 62, 0.8);
}

.type1:hover .menu-link {
    color: #c8553e;
}

.type2:hover .menu-btn {
    background-color: rgba(35, 132, 67, 0.8);
}

.type2:hover .menu-link {
    color: #238443;
}

.type3:hover .menu-btn {
    background-color: rgba(53, 100, 94, 0.8);
}

.type3:hover .menu-link {
    color: #35645e;
}

.bottom-menu:has(.type1:hover) .bottom-bg-left {
    background-color: rgba(200, 85, 62, 0.8);
}

.bottom-menu:has(.type3:hover) .bottom-bg-right {
    background-color: rgba(53, 100, 94, 0.8);
}

@media (max-width: 1600px) {
    .header-inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .main-content {
        padding-left: 3rem;
    }

    .bottom-menu-inner {
        padding: 0;
    }

    .bottom-bg-left,
    .bottom-bg-right {
        display: none;
    }
}

@media (max-width: 1279px) {
    .menu-btn-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        background-color: rgba(0, 0, 0, 0.6);
        transition: background-color 0.2s;
        padding: 2rem 0;
    }

    .menu-btn-wrap .menu-btn {
        text-align: center;
        background: none;
        padding: 0;
    }

    .menu-btn-wrap .menu-link {
        position: static;
        transform: translateY(0);
    }

    .type1:hover {
        background-color: rgba(200, 85, 62, 0.8);
    }

    .type1:hover .menu-btn {
        background: none;
    }

    .type2:hover {
        background-color: rgba(35, 132, 67, 0.8);
    }

    .type2:hover .menu-btn {
        background: none;
    }

    .type3:hover {
        background-color: rgba(53, 100, 94, 0.8);
    }

    .bottom-menu:has(.type1:hover) .bottom-bg-left {
        background-color: rgba(200, 85, 62, 0.8);
    }

    .bottom-menu:has(.type3:hover) .bottom-bg-right {
        background-color: rgba(53, 100, 94, 0.8);
    }
}

@media screen and (max-width: 970px) {
    .header-inner {
        padding-left: 2rem;
    }

    .header .logo {
        width: 180px;
        height: 30px;
    }

    .header .logo a {
        background-size: cover;
    }

    .main-content {
        padding-left: 2rem;
        height: auto;
        top: 50dvh;
        transform: translateY(-80%);
    }

    .main-title {
        font-size: clamp(3.5rem, 5vw, 4rem);
    }

    .main-desc {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        padding: 1.5rem 0 2rem;
    }

    .main-btn {
        font-size: clamp(1.5rem, 2vw, 2rem);
        padding: 15px 20px;
        gap: 0 1.5rem;
    }

    .menu-btn-wrap {
        padding: 2rem 0;
        gap: 1rem;
    }

    .menu-btn {
        padding: 0;
        font-size: 1.4rem;
    }

    .menu-link {
        font-size: 1.2rem;
        padding: 4px 15px;
    }

    .type1 {
        background-color: rgba(200, 85, 62, 0.8);
    }

    .type1 .menu-link {
        color: #fff;
    }

    .type2 {
        background-color: rgba(35, 132, 67, 0.8);
    }

    .type2 .menu-link {
        color: #fff;
    }

    .type3 {
        background-color: rgba(53, 100, 94, 0.8);
    }

    .type3 .menu-link {
        color: #fff;
    }
}

@media screen and (max-width: 768px) {
    .bottom-menu-inner {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*  //250707추가  */
.control-menu-bar {
    display: flex;
    gap: 10px;
}

.control-menu-btn {
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    background: #fff;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    color:#000;
    box-shadow: 0 1px 4px #0001;
    font-size: 15px;
    width: 80px;
    height: 60px;
    transition: background 0.2s;
    padding: 5px 0;
}

.control-menu-btn .icon{
    display: block;
    margin: auto;
    width: 25px;
    height: 25px;
    margin-bottom: 5px;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.control-menu-btn .icon.regulation{
    background-image: url(../images/solar//menubar01.png);
}
.control-menu-btn .icon.geo{
    background-image: url(../images/solar//menubar02.png);
}
.control-menu-btn.active .icon.regulation{
    background-image: url(../images/solar//menubar01-on.png);
}
.control-menu-btn.active .icon.geo{
    background-image: url(../images/solar//menubar02-on.png);
}
.control-menu-btn.active {
    background: #029c58;
    color: #fff;
}

.submenu-panel {
    display: none;
    position: absolute;
    top: 60px;
    margin-top: 10px;
    min-width: 140px;
}
.submenu-geo{
    left: 90px;
}
.submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-item {
    padding: 8px 14px;
    margin-bottom: 4px;
    border-radius: 6px;
    color: #555555;
    background: #fff;
    border: 1px solid #c6c6c6;
    font-size: 13px;
}

.legend-box {
    position: absolute;
    right: 0;
    bottom: 150px;
    width: 150px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 4px #0002;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legend-bar-wrap {
    width: 95%;
    height: 40px;
    margin-bottom: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.legend-bar {
    height: 16px;
    margin-bottom: 4px;
}

.legend-bar.color {
    background: linear-gradient(to right, #7f1b21, #fcf704);
}

.legend-bar.shade {
    background: linear-gradient(to right, #222, #eee);
}

.legend-labels {
    display: flex;
    justify-content: space-between;
    width: 95%;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.legend-label.high {
    color: #ea2335;
}

.legend-label.mid {
    color: #444;
}

.legend-label.low {
    color: #be8a35;
} 
/* 250707추가// */

/*  //250708추가  */
.energy-header-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 0 18px 8px 18px;
    color: #8fa1b6;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
}

.energy-header-row .energy-label {
    background: none;
    color: #8fa1b6;
    font-weight: 600;
    text-align: left;
}

.energy-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px #f2f3f7;
    margin-bottom: 16px;
    padding: 18px 18px;
    font-size: 16px;
}

.energy-label {
    font-weight: 700;
    color: #2b316a;
    font-size: 15px;
    text-align: left;
}

.energy-value-standard {
    color: #1d1d1d;
    font-weight: 500;
    text-align: center;
}

.energy-value-saving {
    color: #049a58 ;
    font-weight: 700;
    text-align: center;
}

.energy-value-rate {
    color: #049a58 ;
    font-weight: 700;
    text-align: center;
}

.service--inner{
    text-align: center;
}
.service--inner .service-building{
    margin: auto;
}
.service--inner .mb30{
    margin-top: 30px;
    margin-bottom: 30px;
}
/* 250714추가 */
.text-primary{color: var(--text-primary);}
.text-secondary{color: var(--text-secondary);}
.text-tertiary{color: var(--text-tertiary);}

.alert-container{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    border-radius: var(--border-radius);
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    padding: 14px 23px;
    line-height: 1;
    margin-bottom: 10px;
    > div{
        color: #0086d9;
        position: relative;
        font-size: 15px;
        padding-left: 10px;
        &::before{
            content: '';
            position: absolute;
            top: 4px;
            left: 0;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: #0086d9;
        }
    }
    &.mt-20{margin-top: 20px;}
}
.alert-container div{
    font-size: 15px;
}

.energy-card-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.energy-column{
    background: #f8f8f8;
    border-radius: var(--border-radius);
    padding: 20px;
}
.energy-title{
    display: flex;
    align-items: center;
    color: #1d1d1d;
    font-weight: 700;
    font-size: 15px;
    gap: 0 6px;
    margin-bottom: 15px;
}
.energy-title-icon-1,
.energy-title-icon-2,
.energy-title-icon-3{
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: top;
    display: inline-block;
    background-position: center center;
}
.energy-title-icon-1{
    background-image: url(../images/solar/icon-title-1.png);
}
.energy-item{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    line-height: 1;
}
.energy-item:last-child{
    margin-bottom: 0;
}

.energy-item .energy-item-label{
    font-size: 13px;
    color: #1d1d1d;
}
.energy-item .energy-item-info{
    display: flex;
    align-items: flex-end;
    gap:0 5px;
}
.energy-item .energy-item-value{
    font-size: 25px;
    font-weight: 700;
    color: #1d1d1d;
}
.energy-item .energy-item-unit{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-tertiary);
}

.energy-item:last-child .energy-item-value{
    color: var(--text-secondary);
    font-size: 40px;
}

.energy-item-unit-icon{
    display: inline-block;
    width: 14px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/solar/ico-updown.png);
    transform: rotate(0deg);
    vertical-align: top;
}
.energy-options-list{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
}
.energy-options-list dl{
    display: flex;
    align-items: center;
    gap:0 10px;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    background-color: #fff;
    height: 72px;
    padding: 0 20px;
}
.energy-options-list dl dt{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 61px;
    height: 32px;
    background: var(--bg-primary);
    color: #fff;
    border-radius: 16px;
}
.energy-options-list dl dd{}

.solar-status-grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
    margin-bottom: 25px;
}
.solar-status-column{

}
.solar-status-title{
    color: #1d1d1d;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
}
.solar-status-content{
    background-color: #fff;
    border: 1px solid #c6c6c6;
    border-radius: var(--border-radius);
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    height: 220px;
}
.solar-status-info{}
.solar-status-label{color: #1d1d1d;font-size: 13px;font-weight: 400;}
.solar-status-value{display: flex;align-items: center;gap:0 5px;line-height: 1;margin-top: 5px;}
.solar-status-value b{font-weight: 700;font-size: 25px;line-height: 1;}
.solar-status-value span{font-size: 15px;font-weight: 400;color: var(--text-tertiary);line-height: 1;}
.solar-status-content div.icon{text-align: right;padding-top: 7px;position: absolute;bottom: 20px;right: 20px;}
.solar-status-content i{display: inline-block;width: 60px;height: 60px;background-position: 50% 50%;background-repeat: no-repeat;background-color: #f8f8f8;border-radius: 50%;}
.solar-status-content i.ico-solar-01{background-image: url(../images/solar/ico-solar-01.png);}
.solar-status-content i.ico-solar-02{background-image: url(../images/solar/ico-solar-02.png);}
.solar-status-content i.ico-solar-03{background-image: url(../images/solar/ico-solar-03.png);}
.solar-status-content .text-tertiary{font-size: 15px;font-weight: 400;color: var(--text-tertiary);line-height: 1;margin-top: 20px;}

.chart-grid{
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin-bottom: 25px;
}
.chart-grid .cahrt-title{
    color: #1d1d1d;
    font-weight: 700;
    font-size: 17px;
}
.chart-area{
    background-color: #fff;
    border: 1px solid #c6c6c6;
    border-radius: var(--border-radius);
    height: 250px;
}
/* 250714추가 끝 */