@charset "UTF-8";

.select-group .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.select-group .left {
	display: flex;
    width: 100%;
}
.select-group .left > div {
	width: 100%;
}

.select-group select {
	max-width: 300px;
	width: 100%;
	font-weight: 500;
	color: #888;
	border-radius: 25px;
	background-color: #dcdcdc;
	padding: 12px 26px;
	
	background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='17.345' height='9.917' viewBox='0 0 17.345 9.917'><g id='ios-arrow-forward' transform='translate(50.833 -60.781) rotate(90)'><path id='패스_13' data-name='패스 13' d='M67.709,42.157,61.145,35.6a1.234,1.234,0,0,1,0-1.751,1.25,1.25,0,0,1,1.756,0l7.436,7.431a1.237,1.237,0,0,1,.036,1.709l-7.467,7.483a1.24,1.24,0,0,1-1.756-1.751Z' fill='%2371a1a2'/></g></svg>");
	background-repeat: no-repeat;
	background-position: right 22px center; /* 위치 조정 */
	background-size: 16px; /* 크기 조정 */
}
.select-group label {
	font-family: Pretendard;
	font-weight: bold;
	font-size: 16px;
	color: #000;
	padding-left: 12px;
	margin-bottom: 8px;
}

.select-group .btn {
	width: 150px;
	height: 74px;
	border: unset;
	border-radius: 10px;
	background: #007073;
	opacity: 0.6;
}
.select-group .btn:hover {
	opacity: 0.8;
}
.select-group .btn.active {
	opacity: 1
}



/***************************성과관리 페이지***************************/
.result_section .card {
	border-radius: 20px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
}


.search-area {
	padding: 20px;
}
.search-area .tit {
	font-family: Pretendard;
	font-weight: 600;
	font-size: 18px;
	color: #000;
	
	margin-bottom: 10px;
}

/**search**/
.search {
    position: relative;
    height: 35px;
}
.search .txt {
    width: 100%;
    height: 100%;
    line-height: 100%;
    border: none!important;
    background-color: transparent;
}

.search label {
    position: absolute;
    display: block;
    width: 100%;
    font-size: 9px;
    color: transparent;
    overflow: hidden;
}

.search input {
    width: 100%;
    height: 35px;

    padding: 0 10px 0 14px;

    font-size: 12px;
    color: #333;
    line-height: 35px;
    
    border: unset;
    border-radius: 4px;
    background: #88888857;
}

.search input::placeholder {
    color: #555;
}
.search .search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 33px;
    height: 35px;

    border: unset;
    background: unset;
}

.search .search_btn .search_btn_icon {
    position: absolute;
    top: 38%;
    right: 12%;
    transform: translate(-50%, -60%);

    width: 16px;
    height: 16px;
}
.search .bi-search {
    fill: #555;
}



.list-area {
	padding: 12px;
}

.list-area .back {
	padding: 8px;
	display: flex;
	gap: 4px;
	
    width: fit-content;
	cursor: pointer;
	opacity: 0.9;
}
.list-area .back span {
	margin-top: -3px;
}
.list-area .back:hover {
	opacity: 1;
}

.list-area .back > a {
	font-family: Pretendard;
	font-weight: 600;
	color: #888;
}
.list-area .list .item {
	transition: ease 0.1s all;
	padding: 20px 18px;
	border-radius: 8px;
	
	display: flex;
    align-items: center;
	gap: 10px;
}
.list-area .list .item:not(:last-child) {
	border-bottom: 1px solid #e8e8e8;
}

.list-area .list .item .img-box {
	width: 40px;
	height: 26px;
	border-radius: 4px;
	background: #e2e2e2;
	overflow: hidden;
}
.list-area .list .item .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-area .list .item .info {
	width: 100%;
    margin-right: unset;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-area .list .item .info .tit {
	font-family: Pretendard;
	font-weight: 600;
	font-size: 16px;
	color: #000;
}
.list-area .list .item .info .more {
	font-family: Pretendard;
	font-weight: bold;
	font-size: 10px;
	color: #b7b7b7;
}
.list-area .list .item .info .more svg {
	width: 12px;
	height: 12px;
}



.list-area .list .item:hover {
	background: #007073;
	cursor: pointer;
}

.list-area .list .item:hover .info .tit {
	color: #fff;
}


.list-depth-03 .bottom {
 	padding: 8px;
 	background: #e7edee;
 	border-radius: 8px;
}

.list-depth-03 .nation {
	padding: 20px 18px;
	display: flex;
	align-items: center;
	gap: 10px;	
	
	border-bottom: 1px solid #ccc;
	margin-bottom: 6px;
}

.list-depth-03 .nation .img-box {
	width: 40px;
	height: 26px;
	border-radius: 4px;
	background: #e2e2e2;
	overflow: hidden;
}
.list-depth-03 .nation .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-depth-03 .nation .tit {
	font-family: Pretendard;
	font-weight: 600;
	font-size: 16px;
	color: #000;
}

.list-depth-03 .list .item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
}

.list-depth-03 .list .item .date {
	font-family: Pretendard;
	font-weight: bold;
	font-size: 15px;
	color: #5e6379;
}
.list-depth-03 .list .item .project-name {
	font-family: Pretendard;
	font-weight: normal;
	font-size: 14px;
	color: #5e6379;
}
.list-depth-03 .list .item:hover {
	background: rgba(0, 0, 0, 0.06);
}




/********************************* 콘텐츠부분 ******************************/

.menu-tab {
	border-radius: 20px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
	
	display: flex;
}
.menu-tab li {
	border: 8px solid transparent;
	position: relative;
	/* width: 33%; */
}
.menu-tab li:not(:last-child):after {
	content: '';
	width: 3px;
	height: 33px;
	background: #ccc;
	display: block;
	position: absolute;
	right: -9px;
	top: 50%;
	transform: translateY(-50%);
}

.menu-tab li a {
	padding: 35px 0;
    text-align: center;
    border-radius: 14px;
    
    font-family: Pretendard;
	font-weight: 600;
	font-size: 26px;
	color: #000;
    transition: ease 0.1s all;
}

.menu-tab li:hover a {
	background: #007073;
	color: #fff;
}

.menu-tab li a.active {
	background: #007073;
	color: #fff;
}




/**** 준비중 ****/
.ready-card {
    padding: 50px 60px;
    text-align: center;
    width: 100%;
}
.ready-card .icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}
.ready-card .icon-1 {
    transform: rotate(-10deg);
    animation: icon-move-1 2.5s infinite ease-in-out;
}
.ready-card h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -1px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 25px;
}
.dot {
    width: 6px;
    height: 6px;
    background: #007073;
    border-radius: 50%;
    opacity: 0.3;
}

/* 4. 애니메이션: 스패너가 서로 맞물려 조여지는 듯한 움직임 */
@keyframes icon-move-1 {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(5deg); }
}


.contents-area .top {
	display: flex;
	align-items: center;
	gap: 20px;	
	
	border-bottom: 2px solid #f1f1f1;
	margin-bottom: 36px;
	padding-bottom: 20px;
}
.contents-area .top .img-box {
	width: 78px;
	height: 51px;
	border-radius: 8px;
	background: #e2e2e2;
	overflow: hidden;
}
.contents-area .top .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contents-area .top > .tit {
	font-family: Pretendard;
	font-weight: 600;
	font-size: 35px;
	text-align: left;
	color: #000;
}

.contents-area {
	width: 100%;
	background: linear-gradient(310deg, #007073 0%, #b3dbdc 100%);
	padding: 60px 40px;
	border-radius: 30px;
	
	margin-top: 30px;
}

.contents-area .dataArea {
	border-radius: 26px;
	background: #fff;
	opacity: 0.8;
	padding: 40px 36px;
}

.contents-area li.list-group-item a {
    width: fit-content;
    padding: 6px 12px;
    background: #dbdbdb;
    color: #003032;
    border-radius: 8px;
}

.contents-area .badge {
	font-family: Pretendard;
	font-weight: normal;
	font-size: 20px;
	color: #fff;
	padding: 8px 20px;
    border-radius: 20px;
    
    margin-bottom: 10px;
}
.contents-area .badge.badge01 {
	background: #fe5c5c;
}
.contents-area .badge.badge02 {
	background: #fead5c;
}
.contents-area .badge.badge03 {
	background: #01999E;
}








/******* 메인위젯 ********/
.world-map-info {
	border-radius: 20px;
	background: #fff;
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
	padding: 20px;
	
	max-width: 400px;
	width: 100%;
	
	position: absolute;
	top: 60px;
	right: 20px;
    z-index: 60;
}

.world-map-info .top {
	display: flex;
	align-items: center;
    justify-content: space-between;
	
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.world-map-info .top .left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.world-map-info .top .left .img-box {
	width: 40px;
	height: 26px;
	border-radius: 4px;
	background: #e2e2e2;
	overflow: hidden;
}
.world-map-info .top .left .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.world-map-info .top .left .tit {
	font-family: Pretendard;
	font-weight: 600;
	font-size: 18px;
	color: #000;
}

.world-map-info .info .badge {
	font-family: Pretendard;
	font-weight: normal;
	font-size: 10px;
	color: #fff;
	padding: 4px 10px;
    border-radius: 20px;
    
    margin-bottom: 10px;
}
.world-map-info .info .badge.badge01 {
	background: #fe5c5c;
}
.world-map-info .info .badge.badge02 {
	background: #fead5c;
}
.world-map-info .info .badge.badge03 {
	background: #01999E;
}



.world-map-info .info .item {
	display: flex;
	gap: 22px;
	
	font-family: Pretendard;
	font-weight: 500;
	font-size: 15px;
	text-align: left;
	color: #000;
}
.world-map-info .info .item .year {
	position: relative;
}
.world-map-info .info .item .year:after {
	content: '';
	position: absolute;
	display: block;
	width: 2px;
	height: 8px;
	background: #e8e8e8;
	
	top: 50%;
	transform: translateY(-50%);
    right: -12px;
}






.world-map-info2 {
	border-radius: 20px;
	background: #fff;
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
	padding: 20px;
	
	max-width: 400px;
	width: 100%;
	
	position: absolute;
	top: 60px;
	left: 20px;
    z-index: 60;
}

.world-map-info2 .top {
	display: flex;
	align-items: center;
    justify-content: space-between;
	
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.world-map-info2 .top .left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.world-map-info2 .top .left .img-box {
	width: 40px;
	height: 26px;
	border-radius: 4px;
	background: #e2e2e2;
	overflow: hidden;
}
.world-map-info2 .top .left .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.world-map-info2 .top .left .tit {
	font-family: Pretendard;
	font-weight: 600;
	font-size: 18px;
	color: #000;
}

.world-map-info2 .info .badge {
	font-family: Pretendard;
	font-weight: normal;
	font-size: 10px;
	color: #fff;
	padding: 4px 10px;
    border-radius: 20px;
    
    margin-bottom: 10px;
}
.world-map-info2 .info .badge.badge01 {
	background: #fe5c5c;
}
.world-map-info2 .info .badge.badge02 {
	background: #fead5c;
}
.world-map-info2 .info .badge.badge03 {
	background: #01999E;
}



.world-map-info2 .info .item {
	display: flex;
	gap: 22px;
	
	font-family: Pretendard;
	font-weight: 500;
	font-size: 15px;
	text-align: left;
	color: #000;
}
.world-map-info2 .info .item .year {
	position: relative;
}
.world-map-info2 .info .item .year:after {
	content: '';
	position: absolute;
	display: block;
	width: 2px;
	height: 8px;
	background: #e8e8e8;
	
	top: 50%;
	transform: translateY(-50%);
    right: -12px;
}





/*********지도 안내 문구*********/
#world-map .info {
	padding: 14px 26px;
	border-radius: 12px;
	
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
    max-width: 300px;
    
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    
    background: #00000094;
	backdrop-filter: blur(8px);
	--webkit-backdrop-filter: blur(8px);
	/* animation: slideOut 8s forwards; */
}

#world-map .info .txt {
	font-size: 15px;
	font-weight: 600;
	color: #dedede;
}

#world-map .info .icon {
	font-size: 12px;
	font-weight: 900;
	color: #fff;
}

@keyframes slideOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none; /* 애니메이션 끝점에서 적용 시도 */
  }
}



