* {
	padding: 0;
	margin: 0;
}

html {
	font-size: 62.5%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select {
	font-family: 'Noto Sans KR', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fcfcfc;
	width: 1080px;
	margin: 0 auto;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

a {
	text-decoration: none;
	/* 링크의 밑줄 제거 */
	color: inherit;
	/* 링크의 색상 제거 */
}

@keyframes animate {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0.7;
	}

	100% {
		opacity: 0;
	}
}

/* 공통 헤더 처리 */
header {
	width: 100%;
	height: 68px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #254698;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
}

header img {
	margin: 15px 0px 0px 50px;
}

header .date {
	margin-right: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.toggleSwitch {
	width: 66px;
	height: 36px;
	display: block;
	position: relative;
	border-radius: 10px;
	background-color: #fff;
	cursor: pointer;
	margin: 0 0 0 20px;
	display: flex;
	align-items: center;
}

.toggleSwitch .toggleButton {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	border-radius: 8px;
	background: #bc2323;
	display: flex;
	align-items: center;
	justify-content: center;
}

#toggle:checked ~ .toggleSwitch {
	background: #8c95ab;
}

#toggle:checked ~ .toggleSwitch .toggleButton {
	left: calc(100% - 34px);
	background: #fff;
}

.toggleSwitch,
.toggleButton {
	transition: all 0.2s ease-in;
}

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

/* 공통 헤더 처리 끝 */

/*메뉴부분*/
footer {
	width: 100%;
	height: 174px;
	margin-top: 32px;
	margin-bottom: 48px;
}

.mainMenu {
	margin: 0px 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

/*메뉴버튼*/
.menuBotton {
	width: 280px;
	height: 174px;
	background: rgb(37, 70, 152);
	background: linear-gradient(
		0deg,
		rgba(37, 70, 152, 1) 0%,
		rgba(43, 89, 162, 1) 5%,
		rgba(37, 70, 152, 1) 10%,
		rgba(37, 70, 152, 1) 90%,
		rgba(43, 89, 162, 1) 95%,
		rgba(37, 70, 152, 1) 100%
	);
	color: #8c95ab;
	font-size: 5rem;
	font-weight: bold;
	border-radius: 10px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.checkedBotton {
	width: 280px;
	height: 174px;
	color: #fff;
	font-size: 5rem;
	font-weight: bold;
	border-radius: 10px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: rgb(54, 105, 232);
	background: linear-gradient(
		180deg,
		rgba(54, 105, 232, 1) 0%,
		rgba(61, 129, 238, 1) 5%,
		rgba(54, 105, 232, 1) 10%,
		rgba(54, 105, 232, 1) 90%,
		rgba(42, 114, 230, 1) 95%,
		rgba(54, 105, 232, 1) 100%
	);
	box-shadow: 2px 6px 6px rgba(54, 105, 232, 0.4);
}

/*에러시 메뉴 버튼*/
.errorBotton {
	width: 280px;
	height: 174px;
	display: flex;
	flex-direction: row;
	animation: animate 2s linear infinite;
	background: #bc2323;
	color: #fff;
	font-size: 5rem;
	font-weight: bold;
	border-radius: 10px;
	border: none;
	box-shadow: 2px 6px 6px rgba(188, 35, 35, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/*메뉴끝*/

/*메인페이지*/
h1 {
	font-size: 8rem;
	color: #254698;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.31);
	margin: 50px 0px 40px;
}

.pack {
	width: 980px;
	height: 1387px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sensorBox {
	width: calc(100%);
	height: 880px;
	padding: 0px 50px;
}

/*센서 모니터링 현황*/

.sensorBox input[type='radio'] {
	display: none;
}

.sensorBox input[type='radio'] + label {
	display: inline-block;
	width: 230px;
	height: 80px;
	color: #b8babe;
	font-size: 4rem;
	font-weight: bold;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	text-align: center;
	margin-right: 10px;
	line-height: 80px;
	background: #ced5e2;
	color: #898b8f;
	z-index: 0;
}

.sensorBox input[type='radio']:checked + label {
	background: #3669e8;
	color: #fff;
}

.sensorBox input[class='error'] + label {
	color: #e85835;
	background-color: #e2cece;
}

.sensorBox input[class='error']:checked + label {
	color: #fff;
	background-color: #bc2323;
}

.conSensor {
	width: 900px;
	background: #fff;
	border-radius: 0 10px 10px 10px;
	display: none;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	padding: 16px 40px 26px;
}

.sensorBox input[id='tab01']:checked ~ .cs1 {
	display: block;
}

.sensorBox input[id='tab02']:checked ~ .cs2 {
	display: block;
}

.sensorBox input[id='tab03']:checked ~ .cs3 {
	display: block;
}

.sensorBox input[id='tab04']:checked ~ .cs4 {
	display: block;
}

/*탭 내부 영역*/
/*센서 그래프 들어가는 영역*/
.tab_menu .list .cont {
	padding: 16px 40px 26px;
	width: 900px;
	height: 740px;
}

.tab_graph {
	width: 900px;
	height: 360px;
	background-color: #dce4ed;
	/* background-image: url(../img/%EA%B7%B8%EB%9E%98%ED%94%842.JPG); */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border: 1px solid #dce4ed;
}

/*센서그래프 상세*/
.graphSub {
	width: 100%;
	height: 90px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.subTitle {
	font-size: 4rem;
	font-weight: bold;
	color: #3669e8;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.subTitle .deco {
	width: 10px;
	height: 42px;
	background-color: #366be7;
	margin-right: 26px;
}

/*우측 상단 버튼 추가(수정)*/
.subCont {
	height: 45px;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}

.subCont {
	height: 45px;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}

.period {
	font-size: 2rem;
	font-size: 2rem;
	font-weight: bold;
	color: #8c95ab;
	background: #2a4da4;
	padding: 0px 25px;
	border: none;
	cursor: pointer;
	border-radius: 10px 10px 10px 10px;
}

.periodClick {
	font-size: 2rem;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	padding: 0px 25px;
	border: none;
	cursor: pointer;
	border-radius: 10px 10px 10px 10px;
	background: rgb(54, 105, 232);
	background: linear-gradient(
		180deg,
		rgba(54, 105, 232, 1) 0%,
		rgba(61, 129, 238, 1) 5%,
		rgba(54, 105, 232, 1) 10%,
		rgba(54, 105, 232, 1) 90%,
		rgba(42, 114, 230, 1) 95%,
		rgba(54, 105, 232, 1) 100%
	);
	box-shadow: 2px 3px 3px rgba(54, 105, 232, 0.4);
}

.dropDown {
	width: 230px;
	border: 0px;
	outline: 0px;
	border-radius: 5px;
	font-size: 3rem;
	text-align: left;
	color: #707070;
	padding: 0px 10px 0px;
	background-image: url(../img/arrow.png);
	background-repeat: no-repeat;
	background-position: center right;
	-o-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.dropDown option {
	font-size: 2.5rem;
}

/*센서리스트영역*/

.sensorArea {
	width: 100%;
	height: 270px;
	display: flex;
	flex-wrap: wrap;
	gap: 0px 20px;
	margin-top: 22px;
	background: #f0f5ff;
	border-radius: 10px;
}

.sensorcont {
	width: 400px;
	height: 60px;
	padding: 15px 20px;
	display: flex;
	flex-direction: row;
}

.sensorcont img {
	width: 60px;
	height: 60px;
	margin-right: 20px;
	border-radius: 5px;
}

.sensorcont .text {
	width: 330px;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.sensorcont .text .number {
	font-size: 4rem;
	font-weight: bold;
}

.sensorcont .text .number span {
	font-size: 3.2rem;
	font-weight: 400;
	color: #333;
}

.sensorcont .text .exp {
	font-size: 3rem;
	color: #707070;
}

#sensorcheck {
	width: 400px;
	height: 58px;
	padding: 15px 20px;
	display: flex;
	flex-direction: row;
	outline: 1px solid #a8c6ff;
	border-radius: 10px;
}

/*센서에러시!*/

.errorTitle {
	animation: animate 2s linear infinite;
}

.errorTitle h1 {
	color: #bc2323;
	animation: animate 2s linear infinite;
}

.sensorError {
	width: 400px;
	height: 60px;
	padding: 15px 20px;
	display: flex;
	flex-direction: row;
	animation: animate 2s linear infinite;
	background: #bc2323;
	border-radius: 10px;
}

.sensorError img {
	width: 60px;
	height: 60px;
	margin-right: 20px;
	border-radius: 5px;
}

.sensorError .text {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

.sensorError .text .number {
	font-size: 4rem;
	font-weight: bold;
}

.sensorError .text .number span {
	font-size: 3.2rem;
	font-weight: 400;
}

.sensorError .text .exp {
	font-size: 3rem;
}

/*오늘의 해야할 목록*/
.todayWork {
	width: 900px;
	height: 337px;
	padding: 26px 40px;
	background-color: #fff;
	margin-top: 30px;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	border-radius: 10px;
}

.workTitle {
	width: 100%;
	height: 80px;
	font-size: 4rem;
	font-weight: bold;
	color: #366be7;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.workTitle .deco {
	width: 10px;
	height: 42px;
	background-color: #366be7;
	margin-right: 26px;
}

.workTitle span {
	color: #4f5055;
	font-weight: 400;
	margin-left: 20px;
}

.workTitle2 {
	display: flex;
	flex-direction: row;
}

.workCont {
	width: 100%;
	height: 239px;
	overflow-y: auto;
	font-size: 3rem;
	color: #4f5259;
	margin-top: 18px;
	font-weight: bold;
}

.workTable {
	width: 100%;
	border-collapse: collapse;
}

.workTable th,
td {
	padding-left: 40px;
	text-align: left;
	height: 90px;
}

.workTable tbody tr:nth-child(2n) {
	background-color: #fafbfd;
}

.workTable tbody tr:nth-child(2n + 1) {
	background-color: #ebf1ff;
}

/*스크롤바css*/
.workCont::-webkit-scrollbar {
	width: 40px;
}

.workCont::-webkit-scrollbar-track {
	background-color: #e8e8e8;
}

.workCont::-webkit-scrollbar-thumb {
	background-color: #cacdd8;
}

.workCont::-webkit-scrollbar-button:start:decrement {
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_up.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 5px 5px 0 0;
}

.workCont::-webkit-scrollbar-button:end:increment {
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_down.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 0 0 5px 5px;
}

.workCont::-webkit-scrollbar-button:start:decrement:active {
	background-color: #366be7;
}

.workCont::-webkit-scrollbar-button:end:increment:active {
	background-color: #366be7;
}

/*오늘의 상태 탐지*/
.statusToday {
	width: 980px;
	height: 58px;
	margin-top: 30px;
	font-size: 3rem;
	font-weight: bold;
	color: #707070;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #fff;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
}

.statusToday .box {
	width: 10px;
	height: 35px;
	background-color: #366be7;
}

.statusTable td {
	padding-left: 0;
}

.statusToday .more {
	width: 60px;
	height: 58px;
	background: rgb(58, 104, 220);
	background: linear-gradient(
		0deg,
		rgba(58, 104, 220, 1) 0%,
		rgba(55, 111, 200, 1) 5%,
		rgba(43, 77, 164, 1) 10%,
		rgba(57, 106, 229, 1) 90%,
		rgba(43, 114, 229, 1) 95%,
		rgba(46, 91, 206, 1) 100%
	);
	color: #fff;
	text-align: center;
	border: none;
	cursor: pointer;
}

/*메인페이지 종료*/

/*주요 농작업과 영농일지*/

.wrap {
	width: 980px;
	height: 1387px;
	/* padding: 50px 0px;
	margin: 56px; */
}

/*달력영역*/
.calendar {
	width: 100%;
	height: 880px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
}

/*탭메뉴*/
.diary {
	width: 100%;
	height: 477px;
	margin-top: 30px;
}

input[type='radio'] {
	display: none;
}

input[type='radio'] + label {
	display: inline-block;
	width: 470px;
	height: 80px;
	background: #ced5e2;
	color: #898b8f;
	font-size: 4rem;
	font-weight: bold;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	text-align: center;
	/* margin-right: 20px; */
	line-height: 80px;
}

input[type='radio']:checked + label {
	background: #3669e8;
	color: #fff;
}

.tableBox {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.tableBox::-webkit-scrollbar {
	width: 40px;
}

.tableBox::-webkit-scrollbar-track {
	background-color: #e8e8e8;
}

.tableBox::-webkit-scrollbar-thumb {
	background-color: #cacdd8;
}

.tableBox::-webkit-scrollbar-button:start:decrement {
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_up.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 5px 5px 0 0;
}

.tableBox::-webkit-scrollbar-button:end:increment {
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_down.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 0 0 5px 5px;
}

.tableBox::-webkit-scrollbar-button:start:decrement:active {
	background-color: #366be7;
}

.tableBox::-webkit-scrollbar-button:end:increment:active {
	background-color: #366be7;
}

.conbox {
	width: calc(100%-80px);
	height: 345px;
	background: #fff;
	border-radius: 0 10px 10px 10px;
	display: none;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	padding: 26px 40px;
}

input[id='tab01']:checked ~ .con1 {
	display: block;
}

input[id='tab02']:checked ~ .con2 {
	display: block;
}

/*cctv*/
.cctvTable {
	width: 100%;
	height: 100%;
	font-size: 3rem;
}

.cctvTable th {
	color: #3669e8;
	font-weight: bold;
	background-color: #ebf1ff;
	height: 69px;
	position: sticky;
	top: 0px;
	text-align: center;
}

.cctvTable td {
	color: #33353a;
	height: 65px;
	text-align: center;
	padding: 0px;
}

.cctvTable tbody tr:nth-child(2n) {
	background-color: #fff;
}

.cctvTable tbody tr:nth-child(2n + 1) {
	background-color: #fafbfd;
}

.picture {
	display: flex;
	justify-content: center;
	align-items: center;
}

.picture2 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.picture3 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.picButton {
	width: 140px;
	height: 50px;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	background-color: #254698;
	border: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

/*영농일지*/
/*workTitle, workCont참조*/
.total {
	width: 170px;
	height: 50px;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	background: #3669e8;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 10px 10px 10px 10px;
}

/*온실 환경관리 보고서*/
/*각 박스별 제목*/
.reportitle {
	width: 100%;
	height: 80px;
	font-size: 3rem;
	font-weight: bold;
	color: #366be7;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.reportitle .deco {
	width: 10px;
	height: 30px;
	background-color: #366be7;
	margin-right: 26px;
}

.reportitle span {
	color: #4f5055;
	font-weight: 400;
	margin-left: 20px;
}

.category {
	display: flex;
	flex-direction: row;
	gap: 20px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #254698;
}

.category .plus {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.category .plus .box {
	width: 22px;
	height: 22px;
}

/*정식 주차별 온실관리 현황*/
.manageBox {
	width: 900px;
	height: 412px;
	padding: 0px 40px 26px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
}

.condition {
	width: 10%;
	height: 270px;
	margin-top: 31px;
}

.condition th {
	display: block;
	height: 44px;
	font-weight: bold;
	line-height: 45px;
	border-collapse: collapse;
	border: 1px #fff solid;
	position: sticky;
	top: 0px;
}

.colHead {
	width: 77px;
	font-size: 1.5rem;
	text-align: center;
	background: #3669e8;
	color: #fff;
}

.manageTable {
	/* width: 90%; */
	margin-top: 32px;
	display: flex;
	align-items: center;
	overflow-x: auto;
	overflow-y: hidden;
	border-collapse: collapse;
}

.tableCont tbody {
	display: flex;
}

.tableCont th {
	display: block;
	height: 44px;
	font-weight: bold;
	line-height: 45px;
	border-collapse: collapse;
	border: 1px #fff solid;
	position: sticky;
	top: 0px;
}

.colHead {
	width: 77px;
	font-size: 1.5rem;
	text-align: center;
	background: #254698;
	color: #fff;
}

.rowHead {
	width: 37px;
	font-size: 1.5rem;
	background: #999;
	text-align: center;
	color: #fff;
	border: 1px #fff solid;
}

.tableCont {
	width: 90%;
}

.tableCont td {
	display: block;
	width: 37px;
	height: 44px;
	border-collapse: collapse;
	border: 1px #fff solid;
	text-align: center;
	line-height: 44px;
	color: #fff;
	font-weight: bold;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tableCont .good {
	background: #a3dfab;
}

.tableCont .bad {
	background: #fe6949;
}

.tableCont .caution {
	background: #fee097;
}

.tableCont .now {
	background: #2389b9;
}

.tableCont .result {
	background: #ebf1ff;
}

.tableCont .none {
	background: #d1d1d1;
}

.view {
	width: 30px;
	height: 30px;
	font-size: 1rem;
	font-weight: bold;
	border: none;
	background: #366be7;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
}

/*정식 주차별 온실관리 현황 스크롤*/
.manageTable::-webkit-scrollbar {
	width: 40px;
}

.manageTable::-webkit-scrollbar-track {
	background-color: #e8e8e8;
}

.manageTable::-webkit-scrollbar-thumb {
	background-color: #cacdd8;
}

.manageTable::-webkit-scrollbar-button:start:decrement {
	background-color: #6ba0f2;
	height: 69px;
	background-image: url(../img/arrow_left.png);
	background-repeat: no-repeat;
	background-size: 30%;
	background-position: center center;
	border-radius: 5px 0 0 5px;
}

.manageTable::-webkit-scrollbar-button:end:increment {
	background-color: #6ba0f2;
	height: 69px;
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_right.png);
	background-repeat: no-repeat;
	background-size: 30%;
	background-position: center center;
	border-radius: 0 5px 5px 0;
}

.manageTable::-webkit-scrollbar-button:start:decrement:active {
	background-color: #366be7;
}

.manageTable::-webkit-scrollbar-button:end:increment:active {
	background-color: #366be7;
}

/*일지 등록 작물 사진*/
.plant {
	width: 900px;
	height: 386px;
	padding: 0px 40px 26px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	margin-top: 30px;
}

/*cctv*/
.tableBox {
	width: 900px;
	height: 306px;
	overflow-y: auto;
}

.plantTable {
	width: 100%;
	font-size: 3rem;
}

.plantTable th {
	color: #3669e8;
	font-weight: bold;
	background-color: #ebf1ff;
	height: 60px;
	position: sticky;
	top: 0px;
	text-align: center;
}

.plantTable td {
	color: #33353a;
	height: 60px;
	text-align: center;
	padding: 0px;
	line-height: 60px;
}

.plantTable tbody tr:nth-child(2n) {
	background-color: #fff;
}

.plantTable tbody tr:nth-child(2n + 1) {
	background-color: #fafbfd;
}

.plantTable span {
	color: #fe6949;
}

.plantTable img {
	width: 50px;
	height: 50px;
}

.selectdate {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 20px;
}

.selectdate p {
	font-size: 2rem;
	color: #254698;
	font-weight: bold;
}

.picDate {
	width: 106px;
	font-size: 2rem;
	color: #707070;
	outline: none;
	border: 2px solid #3669e8;
	padding: 0px 15px;
}

.picDate label {
	font-size: 3rem;
}

/*분석 보고서 보기*/
.analysis {
	width: 900px;
	height: 451px;
	padding: 0px 40px 26px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	margin-top: 30px;
}

.tableArea {
	width: 100%;
	height: 371px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.reportTable {
	width: 290px;
	gap: 15px;
	text-align: center;
}

.reportTitle {
	font-size: 3rem;
	font-weight: bold;
	color: #254698;
	margin-bottom: 10px;
}

/*보고서 표 보기*/
.reportWrap {
	width: 100%;
	height: 316px;
	font-size: 3rem;
	overflow-y: auto;
}

.reportWrap th {
	width: 290px;
	height: 69px;
	color: #366be7;
	background: #ebf1ff;
	text-align: center;
	position: sticky;
	top: 0px;
}

.reportWrap td {
	width: 290px;
	height: 66px;
	text-align: center;
	padding: 0px;
	color: #33353a;
}

.reportWrap tbody tr:nth-child(2n) {
	background-color: #fff;
}

.reportWrap tbody tr:nth-child(2n + 1) {
	background-color: #fafbfd;
}

/*보고서 스크롤*/
.reportWrap::-webkit-scrollbar {
	width: 30px;
}

.reportWrap::-webkit-scrollbar-track {
	background-color: #e8e8e8;
}

.reportWrap::-webkit-scrollbar-thumb {
	background-color: #cacdd8;
}

.reportWrap::-webkit-scrollbar-button:start:decrement {
	background-color: #6ba0f2;
	height: 30px;
	background-image: url(../img/arrow_up.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 5px 5px 0 0;
}

.reportWrap::-webkit-scrollbar-button:end:increment {
	background-color: #6ba0f2;
	height: 30px;
	background-image: url(../img/arrow_down.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 0 0 5px 5px;
}

.reportWrap::-webkit-scrollbar-button:start:decrement:active {
	background-color: #366be7;
}

.reportWrap::-webkit-scrollbar-button:end:increment:active {
	background-color: #366be7;
}

/*팝업관련 스타일*/
.modal {
	position: absolute;
	width: 100%;
	height: 1920px;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.modal_content {
	width: 860px;
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.close {
	width: 50px;
	height: 50px;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	background: #3669e8;
	border: none;
	cursor: pointer;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 10px 10px 10px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reportPop {
	width: 860px;
	height: 1200px;
	overflow-y: auto;
	display: block;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal2 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.modal3 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.modal4 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.dailyBtn {
	width: 70px;
	height: 50px;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	background-color: #254698;
	border: none;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.weeklyBtn {
	width: 70px;
	height: 50px;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	background-color: #254698;
	border: none;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.monthlyBtn {
	width: 70px;
	height: 50px;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	background-color: #254698;
	border: none;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	cursor: pointer;
}

.listTitle {
	width: 100%;
	height: 80px;
	font-size: 4rem;
	font-weight: bold;
	color: #366be7;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.listTitle .deco {
	width: 10px;
	height: 42px;
	background-color: #366be7;
	margin-right: 26px;
}

.listTitle span {
	color: #4f5055;
	font-weight: 400;
	margin-left: 20px;
}

.listCont {
	width: 100%;
	font-size: 3rem;
	color: #4f5259;
	margin-top: 18px;
	font-weight: bold;
}

.picPop {
	position: absolute;
	width: 100%;
	height: 1920px;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.popup {
	width: 640px;
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.picPop img {
	width: 100%;
}

.picPop2 {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.picPop3 {
	position: absolute;
	width: 100%;
	height: 1920px;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	display: none;
}

.picPop2 img {
	width: 100%;
}

.picPop3 img {
	width: 100%;
}

.workTable {
	width: 100%;
	border-collapse: collapse;
}

.workTable th,
td {
	padding-left: 40px;
	text-align: left;
	height: 90px;
}

.workTable tbody tr:nth-child(2n) {
	background-color: #fafbfd;
}

.workTable tbody tr:nth-child(2n + 1) {
	background-color: #ebf1ff;
}

/*스크롤바css*/
.listCont::-webkit-scrollbar {
	width: 40px;
}

.listCont::-webkit-scrollbar-track {
	background-color: #e8e8e8;
}

.listCont::-webkit-scrollbar-thumb {
	background-color: #cbcdd8;
}

.listCont::-webkit-scrollbar-button:start:decrement {
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_up.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 5px 5px 0 0;
}

.listCont::-webkit-scrollbar-button:end:increment {
	background-color: #6ba0f2;
	height: 40px;
	background-image: url(../img/arrow_down.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center center;
	border-radius: 0 0 5px 5px;
}

.listCont::-webkit-scrollbar-button:start:decrement:active {
	background-color: #366be7;
}

.listCont::-webkit-scrollbar-button:end:increment:active {
	background-color: #366be7;
}

/*날짜 선택 입력창*/
.ui-widget-header {
	border: none !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #fff !important;
	background: #fff !important;
	font-weight: normal !important;
	color: #454545 !important;
	text-align: center !important;
	font-size: 28px;
}

.ui-widget.ui-widget-content {
	width: 500px;
}

.ui-datepicker .ui-datepicker-title {
	font-size: 30px;
}

.ui-datepicker .ui-datepicker-header {
	width: 100%;
	background-color: #2b5a91;
	color: #fff;
}

.ui-datepicker th {
	font-size: 20px;
	padding: 0.7em !important;
	background-color: #ebf1ff;
}

.ui-datepicker-calendar th:first-child {
	color: #ff0000 !important;
}

.ui-datepicker-calendar th:nth-last-child(1) {
	color: #0d47a1 !important;
}

.ui-datepicker-calendar tr td:first-child a {
	color: #ff0000 !important;
}

.ui-datepicker-calendar tr td:nth-last-child(1) a {
	color: #0d47a1 !important;
}

.errorBotton {
	width: 280px;
	height: 174px;
	display: flex;
	flex-direction: row;
	animation: animate 2s linear infinite;
	background: #bc2323;
	color: #fff;
	font-size: 5rem;
	font-weight: bold;
	border-radius: 20px;
	border: none;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* ================follcalendar=================== */
.fc .fc-button-primary {
	background-color: #254698 !important;
}

.fc-day-sun .fc-daygrid-day-number {
	color: #de1a16;
}

.fc-day-sat .fc-daygrid-day-number {
	color: #085f9e;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
	min-height: 0 !important;
	max-height: 84px;
}

.modal-content .workTable th,
td {
	height: 68px;
}

.modal-content .fc-scrollgrid-sync-table {
	height: 478px !important;
}

.popup-layer.s-hLq3Ynutsy7I .calendar-modal-content.s-hLq3Ynutsy7I {
	height: 67.7rem !important;
}

.fc .fc-daygrid-day-top {
	justify-content: center;
}

.fc .fc-daygrid-body {
	z-index: 0 !important;
}

.calendar .fc table {
	font-size: 0.8em !important;
}

.fc .fc-daygrid-day-frame {
	max-height: 0;
}

.fc .fc-highlight {
	background: pink !important;
}

/*로그인*/

.loginWrap {
	margin-top: 360px;
}

.loginWrap .pageTitle {
	text-align: center;
	margin-bottom: 120px;
}

.loginbox {
	width: 780px;
	height: 550px;
	margin: 0 auto;
	/* 블록요소를 부모영역에서 가운데 처리 */
}

.loginbox form {
	width: 100%;
	background-color: #fff;
	/* 패딩수치를 인사이드 처리 */
	padding: 60px;
	box-sizing: border-box;
	box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.31);
	border-radius: 10px;
}

.loginbox fieldset {
	border: none;
	/* 테두리 제거 */
}

.loginbox legend {
	/* 요소를 화면 밖으로 처리 */
	position: absolute;
	left: -999em;
}

.loginbox label {
	display: block;
	font-size: 4rem;
	color: #3669e8;
	font-weight: bold;
	margin-bottom: 30px;
	margin-top: 40px;
	/* 동위선택자와의 간격 조정 */
	display: flex;
	align-items: center;
}

.loginbox label .deco {
	width: 10px;
	height: 42px;
	background-color: #366be7;
	margin-right: 26px;
}

.loginbox input {
	display: block;
	width: 100%;
	height: 100px;
	margin-bottom: 60px;
	/* 동위선택자와의 간격 조정 */
	border: none;
	background-color: #ededed;
	padding: 0 20px;
	/* 앞상하 뒷좌우 */
	box-sizing: border-box;
	/* 패딩수치를 인사이드 처리 */
	font-size: 3rem;
}

.loginbox .errormms {
	text-align: center;
	margin-bottom: 80px;
	color: red;
	font-size: 2.5rem;
}

.loginbox button {
	display: block;
	width: 220px;
	padding: 20px;
	margin: 0 auto;
	/* 블록요소가 부모 영역에서 가운데 오기 */
	border: none;
	background: rgb(37, 70, 152);
	background: linear-gradient(
		0deg,
		rgba(37, 70, 152, 1) 0%,
		rgba(25, 76, 158, 1) 5%,
		rgba(37, 70, 152, 1) 10%,
		rgba(37, 70, 152, 1) 90%,
		rgba(25, 76, 158, 1) 95%,
		rgba(37, 70, 152, 1) 100%
	);
	color: #fff;
	font-size: 5rem;
	font-weight: bold;
	border-radius: 10px;
	border: none;
	box-shadow: 2px 6px 6px rgba(54, 105, 232, 0.4);
}

.loginbox button:active {
	display: block;
	width: 220px;
	padding: 20px;
	margin: 0 auto;
	/* 블록요소가 부모 영역에서 가운데 오기 */
	border: none;
	background: rgb(54, 105, 232);
	background: linear-gradient(
		180deg,
		rgba(54, 105, 232, 1) 0%,
		rgba(61, 129, 238, 1) 5%,
		rgba(54, 105, 232, 1) 10%,
		rgba(54, 105, 232, 1) 90%,
		rgba(42, 114, 230, 1) 95%,
		rgba(54, 105, 232, 1) 100%
	);
	color: #fff;
	font-size: 4rem;
	font-weight: bold;
	box-shadow: none;
}
