@charset "utf-8";

/**
* File Name : common.css
* Description : 공통 스타일시트
*/
/* 레이아웃 */
.container {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	z-index: 1;
}

.contents {
	display: block;
	position: absolute;
	top: 0;
	left: 280px;
	width: calc(100% - 280px);
	height: 100%;
	padding: 25px 40px;
	overflow-x: hidden;
	overflow-y: auto;
}

.flex {
	display: flex;
}

.btn-full {
	width: 100%;
}

.btn-circle {
	border-radius: 5px;
}

.btn-sky {
	background: #A5CD38;
	font-weight: 600;
	font-size: 17px;
	color: #fff;
}

.width220 {
	width : 220px;
}

.width329 {
	width : 329px;
}

.width215 {
	width : 215px;
}