@charset "UTF-8";

/* 시계열 분석 */
.drought_layOut_container{
	width: 100%;
	
}

/* ==2024-09-26 수정값== */

.cY_container{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
    /*gap: 10px;*/
     position: relative;
}
.cY_line{
    display: flex;
    /*gap: 15px;*/
    /*gap: 10px;*/
    align-items: center;
    position: relative;
}
.cY_line .cY_title{
    /*width: 80px;*/
    width: 6rem;
    color: #2a2a2a;
    /*font-size: 15px;*/
    font-weight: 500;
}
.cY_line .cY_select_group{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.cY_line .cY_select_north{
    display: none;
}
.cY_line .cY_select_group select{
    color: #636363;
    border: 1px solid #CCCCCC;
    /*width: 100px;*/
    width: 60px;
    height: 30px;
    outline: none;
    padding-left:10px;
}
.cY_line .cY_select_group select:focus{
    border: 1px solid #016CBF;
}
.cY_line .cY_btn_group{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cY_lnput_group{
    display: flex;
    align-items: center;
    gap: 10px;
}
.cY_lnput_group input{
    color: #636363;
    border: 1px solid #CCCCCC;
    width: 150px;
    height: 30px;
    outline: none;
    padding-left: 10px;
}
.cY_lnput_group input:focus{
    border: 1px solid #016CBF;
}

.cY_line .cY_btn_group .label_choice{
    background-color: #016CBF;
    height: 30px;
    width: 80px;
    color: #fff;
    border-radius: 5px;
    border: none;
}
.cY_line .cY_btn_group .label_choice:hover{
    cursor: pointer;
    opacity: 0.8;
}
.cY_line .cY_list_group{
    display: flex;
    align-items: center;
    gap: 5px;
}
.cY_line .cY_list_group .cY_list{
    width: max-content;
    font-size: 1.5rem;
    color: #3f3f3f;
    font-weight: 500;
    border: 1px solid #8a8a8a;
    padding: 5px;
    height: 30px;
    border-radius: 3px;
}

.cY_label_layOut{
    position: absolute;
    background-color: #fff;
    border: 1px solid #D2D2D2;
    left: 190px;
    top: 0;
    z-index: 5;
    width: calc(100% - 190px);

    display: none;
}
.cY_label_container{
    width: 100%;
    height: 100%;
    padding: 15px;
}
.cY_label_container .cY_choice_group{
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #BDBDBD;
}
.cY_label_container .cY_choice_group .cYC_list{
    font-size: 15px;
    color: #2c2c2c;
    display: flex;
    gap: 5px;
    align-items: center;
}
.cY_label_container .cY_choice_group .cYC_list button{
    width: 16px;
    height: 16px;
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cY_label_container .cY_choice_group .cYC_list button:hover{
    cursor: pointer;
}
.cY_label_container .cYC_btn_layOut{
    margin-bottom: 15px;
    min-height: 160px;
}
.cY_label_container .cYC_btn_layOut .cYC_btn_group{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
    height: 160px;
    overflow-y: auto;
}
.cY_label_container .cYC_btn_layOut .cYC_btn_group button{
    height: 45px;   
    color: #7a7a7a;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    background-color: #fff;
}
.cY_label_container .cYC_btn_layOut .cYC_btn_group button:hover{
    border: 1px solid #016CBF;
    color: #016CBF;
    cursor: pointer;
}
.cY_label_container .cYC_btn_layOut .cYC_btn_group .cY_btnActive{
    border: 1px solid #016CBF;
    color: #016CBF;
}
.cY_label_container .reading_mes{
    font-size: 14px;
    color: #016CBF;
    font-weight: 500;
    position: relative;
}

/* 프로그래스 바 */
.cY_progress_bar {
    width: 100%;
    margin: 15px 0px;
    position: relative;
}

.slider_group {
    position: relative;
    z-index: 1;
    height: 6px;
    margin: 0 15px;
}

.slider_group>.track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #accbe2;
    width: 100%;
}

.slider_group>.range {
    position: absolute;
    z-index: 2;
    left: 0%;
    right: 0%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #016CBF;

}

.slider_group>.thumb {
    position: absolute;
    z-index: 3;
    width: 15px;
    height: 20px;
    background-color: #016CBF;
    /* border-radius: 50% ; */
    clip-path: polygon(0 0, 100% 0%, 100% 60%, 50% 100%, 0 60%);

}

.slider_group>.thumb.thumb_left {
    left: 0%;
    transform: translate(-7px, -7px);
}

.slider_group>.thumb.thumb_right {
    right: 0%;
    transform: translate(7px, -7px);
}

.cY_progress_bar input[type="range"] {
    position: absolute;
    pointer-events: none;
    appearance: none;
    z-index: 2;
    height: 10px;
    width: 100%;
    opacity: 0;
}

.cY_progress_bar input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 0 none;
    cursor: pointer;
    -webkit-appearance: none;
}

.number_group {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
}

.number_group .year_text_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.number_group .year_text_box .years_N {
    color: #3a3a3a;
    font-size: 14px;
    position: absolute;
    top: 30px;
}

.number_group .year_text_box span {
    width: 1px;
    height: 10px;
    background-color: #016CBF;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 반응형 */
@media(max-width:768px){

	.cY_label_layOut{
		left: 95px;
	    top: 45px;
	    width: calc(100% - 95px);
	}
	.cY_label_container .cYC_btn_layOut .cYC_btn_group{
		    grid-template-columns: repeat(3, 1fr);
	}
	.cY_lnput_group{
		width:100%;
		flex-direction: column;
	}
	.cY_lnput_group input{
		width: 100%;
	}
	.cY_line .cY_select_group select{
		width: 100%;
	}
	.cY_label_container .cY_choice_group{
		flex-direction: column;
	}
}

@media(max-width:487px){

	.cY_label_container .cYC_btn_layOut .cYC_btn_group{
	    grid-template-columns: repeat(2, 1fr);
	}
	
	.cY_label_layOut{
		left: 0px;
		top: 45px;
		width: calc(100% - 0px);
	}
}