@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

html, body{
	padding: 0;
	margin: 0;
	background-color: #F8F8F8;

	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;

	color: #222222;

	width: 100%;
	height: 100%;
}

body{
	overflow: hidden;
	display: flex;
	flex-direction: row;
	position: relative;
}
	body.no-scroll{ overflow-y: hidden !important; }

*{ box-sizing: border-box; }
div.clear{ clear: both; }

/* WIDTH */

.w1p{ width: 1%; }
.w5p{ width: 5%; }
.w10p{ width: 10%; }
.w19p{ width: 19%; }
.w20p{ width: 20%; }
.w25p{ width: 25%; }
.w30p{ width: 30%; }
.w33p{ width: 33.3%; }
.w40p{ width: 40%; }
.w50p{ width: 50%; }
.w60p{ width: 60%; }
.w66p{ width: 66.6%; }
.w70p{ width: 70%; }
.w80p{ width: 80%; }
.w90p{ width: 90%; }
.w100p{ width: 100%; }

/* // */

/* MARGIN */

.mt{ margin-top: 30px; }

/* // */

/* TEXT */

.txt-center{ text-align: center; }
.txt-right{ text-align: right; }

.txt-bold{ font-weight: bold !important; }
.txt-normal{ font-weight: normal; }

.txt-small{ font-size: 14px; }
.txt-big{ font-size: 22px; font-weight: bold; }
.txt-gray{ color: #AAAAAA; }
.txt-black{ color: #222222 !important; }
.txt-red{ color: #D96363 !important; }
.txt-green{ color: #99D831 !important; }

/* // */

/* Box Colors

.red-orange{ background-color: #F89380 !important; color: #ffffff; }

/* // */

i.fas.fa-minus-circle{ color: #D96363; }
i.far.fa-check-circle{ color: #99D831; }

/*a{ transition: opacity .3s; color: #222222; }*/
a{ color: #222222; text-decoration: none; }
a.text{ text-decoration: underline; }
button:hover, a:not(.active):hover{ opacity: .5; cursor: pointer; }

button,
a.button{
	display: inline-block;
	width: 150px;
	padding: 10px;
	margin: 0;

	background-color: #A6A6A6;
	border-radius: 5px;
	border: 0;
	
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}

	button.gray,a.button.gray{ background-color: #505050; }
	button.green,a.button.green{ background-color: #99D831; }
	button.red,a.button.red{ background-color: #D96363; }
	button.transparent,a.button.transparent{
		background-color: inherit;
		text-decoration: underline;
		color: #505050;
		width: auto;
		padding: 10px 20px;
		text-transform: none;
		font-weight: 300;
	}

	button.disabled,a.button.disabled{ opacity: .2; cursor: default; }
	button.disabled.transparent,a.button.disabled.transparent{ opacity: 1; cursor: default; text-decoration: none; }


input:not([type="radio"]),textarea{
	margin: 0;
	padding: 10px;
	border: 1px solid #ffffff;
	border-radius: 5px;

	color: #222222;
	font-size: 16px;
	font-weight: 400;

	box-shadow: 0 1px 4px rgba(0,0,0,.2);
	font-family: 'Open Sans', sans-serif;
}

input[type="radio"]{
	margin: 0;
}

input[type="text"],
textarea{
	-webkit-appearance: none;
}

/*
	Pop-up
*/

div.popup-notice{
	position: absolute;
	top: 0; left: 0;
	z-index: 1001;

	min-width: 200px;
	max-width: 80%;
	padding: 15px 60px;

	box-shadow: 0 5px 10px rgba(0,0,0,.2);
	background-color: #FDFDFD;
	border-radius: 8px;

	font-size: 14px;
	text-align: center;

	display: none;
	-webkit-transition: transform .5s, opacity .5s, top .5s;
	transition: transform .5s, opacity .5s, top .5s;
}
	div.popup-notice:hover{ cursor: pointer; color: #ADADAF; }
	div.popup-notice:after{
		position: absolute;
		top: 18px; right: 10px;
		content: "\f00d";

		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		font-size: 12px;
		color: #ADADAF;
	}

	div.popup-notice.transformed{
		display: block;

		opacity: 0; top: 0;
		-webkit-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 60deg);
		transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 60deg);
	}

	div.popup-notice.active{
		display: block;

		opacity: 1; top: 20px;
		-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 0, 0);
		transform: scale3d(1, 1, 1) rotate3d(0, 0, 0, 0); 
	}

	div.popup-notice.no-transformed{
		opacity: 0 !important; top: 0 !important;

		-webkit-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 60deg) !important;
		transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 60deg) !important;
	}

		div.popup-notice p{ margin: 0 0 20px 0; padding: 0; }
		div.popup-notice p:last-child{ margin: 0; }

		
div.popup-background{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;

	background-color: rgba(0,0,0, .2);
	display: none;
}

	div.popup-background.active{ display: block; }

	div.popup-background div.popup-window{
		position: relative;
		margin: 0;
		padding: 60px;

		background-color: #FFFFFF;
		box-shadow: 0 0 10px rgba(0,0,0,.1);
	}
		div.popup-background div.popup-window div.move{
			position: absolute;
			top: 0;
			right: 0;
			width: 0;
			height: 0;

			border-radius: 0;
			border-top: 0 solid transparent;
 			border-bottom: 20px solid transparent;
 			border-right: 20px solid #505050;

			cursor: move;
			z-index: 1;
		}

	div.popup-background div.popup-window.confirm span,
	div.popup-background div.popup-window.notice span{
		display: block;
		margin-bottom: 30px;

		color: #505050;
		font-size: 16px;
	}

		div.popup-background div.popup-window.notice{
			width: 380px;
			text-align: center;
		}
		/*
			div.popup-background div.popup-window.notice span:before{
				margin-right: 10px;

				content: '\f05a';
				font-family: 'Font Awesome 5 Free';
			}*/
			div.popup-background div.popup-window.notice a{ margin: 0 auto; }

		div.popup-background div.popup-window.confirm{
			width: 440px;
			text-align: center;
		}

		div.popup-background div.popup-window.form{
			width: 670px;
			color: #222222;

			padding-bottom: 30px;

			overflow-y: auto;
		}
			div.popup-background div.popup-window.form span.txt-center{ display: block; width: 100%; }

			div.popup-background div.popup-window.form div.title{
				margin-bottom: 40px;

				font-weight: bold;
				font-size: 25px;
				text-align: center;
				text-transform: uppercase;
			}

			form div.group,
			div.popup-background div.popup-window.form div.group{
				float: left;
				width: 100%;

				margin-bottom: 20px;
			}

			div.popup-background div.popup-window.form div.name{
				float: left;
				width: 30%;
				padding: 10px 0;

				color: #ADADAF;
			}

			div.popup-background div.popup-window.form div.value{
				float: left;
				width: 70%;
			}
				div.popup-background div.popup-window.form div.value.last{ margin-bottom: 30px; }
				form div.group.no-name div.value,
				div.popup-background div.popup-window.form div.group.no-name div.value{ width: 100%; }

				div.popup-background div.popup-window.form div.group.full-name div.name{ width: 100%; }
				div.popup-background div.popup-window.form div.group.full-name div.value{ width: 100%; }

				div.popup-background div.popup-window.form div.value textarea{
					width: 100%; max-width: 100%;
					height: 115px; max-height: 215px;
					padding: 10px;

					border: 1px solid #FFFFFF;
					border-radius: 8px;
					background-color: #FFFFFF;

					color: #505050;
					font-size: 16px;
				}

				div.popup-background div.popup-window.form div.value select,
				div.popup-background div.popup-window.form div.value input[type="text"]{ width: 100%; }

				form div.value label,
				div.popup-background div.popup-window.form div.value label{
					display: block;
					width: 100%;
				}
					div.popup-background div.popup-window.form div.value label.radio{ display: inline-block; width: auto; margin-right: 30px; }

					form div.value label input,
					div.popup-background div.popup-window.form div.value label input{
						display: inline-block;
						float: left;
						margin-top: 5px;
					}
					form div.value label span,
					div.popup-background div.popup-window.form div.value label span{
						display: inline-block;
						margin-left: 10px;
						max-width: 90%;

						font-size: 16px;
						color: #444444;
					}

				div.popup-background div.popup-window.form div.value div.select-item{
					display: inline-block;
					padding: 10px;
					margin: 0 10px 0 0;
					min-width: 120px;

					background-color: #FFFFFF;
					border-radius: 8px;
				}
					div.popup-background div.popup-window.form div.value div.select-item.selected{ background-color: #FEC483; color: #FFFFFF; }
					div.popup-background div.popup-window.form div.value div.select-item:not(.selected):hover{ opacity: .5; cursor: pointer; }

			div.popup-background div.popup-window.form div.buttons{
				width: 100%;

				text-align: center;
			}
				div.popup-background div.popup-window.form div.buttons > button:nth-child(1),
				div.popup-background div.popup-window.form div.buttons > a:nth-child(1){ margin-right: 15px; }
				div.popup-background div.popup-window.form div.buttons > button:nth-child(2),
				div.popup-background div.popup-window.form div.buttons > a:nth-child(2){ margin-left: 15px; }

	div.popup-background div.popup-window.form div.group.error div.name{ color: #D96363 !important; }
	div.popup-background div.popup-window.form div.group.error div.value label span{ color: #D96363 !important; }
	div.popup-background div.popup-window.form div.group.error div.value input,
	div.popup-background div.popup-window.form div.group.error div.value textarea{ border: 1px solid #D96363 !important; }
	div.popup-background div.popup-window.form div.message{ font-size: 14px; text-align: center; margin-top: 15px; }
	div.popup-background div.popup-window.form div.message.error{ color: #; }

	div.popup-background div.popup-window.form nav.person{ margin-top: -20px; margin-bottom: 30px; }


	div.popup-background div.popup-window.calendar{
		width: 90%;
		height: 90%;
		padding: 30px 30px 70px 30px;

		color: #505050;
	}
		div.popup-background div.popup-window.calendar span{ margin-bottom: 0; }

		div.popup-background div.popup-window.calendar div.content-box{
			height: 100%;
			padding: 0;

			overflow-y: auto;
		}

		div.popup-background div.popup-window.calendar header { text-align: right; padding-bottom: 15px; }
		div.popup-background div.popup-window.calendar header a.button{ float: left; padding: 5px 0 0 0; }
			div.popup-background div.popup-window.calendar header div.buttons a{ color: #222222; font-size: 18px; padding-left: 10px; padding-right: 10px; }
			div.popup-background div.popup-window.calendar header div.buttons i.calendar-refresh-icon{ margin-right: 20px; opacity: 0; }
				div.popup-background div.popup-window.calendar header div.buttons i.calendar-refresh-icon.active{ opacity: 1; }
/*
	Content
*/

div#content{
	display: flex;
	flex-direction: column;
	flex: 2;

	height: 100%;
	width: 100%;
}

	/*
		Login
	*/

	div#content section.login{
		width: 100%;
		height: 100%;

		display: flex;
		justify-content: center;
		align-items: center;
	}

		div#content section.login > div{
			width: 75%;
			max-width: 1000px;
			min-height: 50%;

			display: flex;
			flex-direction: row;
		}

			div#content section.login > div > div{
				width: 50%;
				max-width: 500px;
				padding: 60px 60px 120px 60px;
			}

			div#content section.login div.top{
				background: rgb(253,151,0);
				background: linear-gradient(180deg, rgba(253,151,0,1) 0%, rgba(251,214,158,1) 100%);

				border-radius: 8px 0 0 8px;
				color: #ffffff;
			}

				div#content section.login div.top div.title{
					margin: 60px 0;

					text-transform: uppercase;
					word-spacing: 9999px;
					letter-spacing: -2px;
					line-height: 40px;

					font-size: 40px;
					font-weight: 100;
				}

				div#content section.login div.top div.sub-title{
					font-size: 20px;
				}

			div#content section.login div.main{
				position: relative;
				background-color: #FFFFFF;

				border-radius: 0 8px 8px 0;
			}

				div#content section.login div.main div.title{
					font-size: 25px;
					font-weight: bold;
				}

				div#content section.login div.main p{
					margin: 20px 0;
				}
					div#content section.login div.main div.login-box p:first-child{ margin-top: 0; }

				div#content section.login div.main form div.group:last-child{
					padding: 20px 0;
				}

					div#content section.login div.main form div.name{
						color: #ADADAF;
					}

					div#content section.login div.main form div.value{
						margin-top: 10px;
					}

						div#content section.login div.main form .error div.value input{ border-color: #D96363; }

				div#content section.login div.main form input{
					width: 100%;
				}
					div#content section.login div.main form input.code{ width: 50%; }

				div#content section.login div.main form div.group a.transparent,
				div#content section.login div.main form div.group button.transparent{
					margin-top: 10px;
					padding-left: 0;
					padding-right: 0;
				}
					div#content section.login div.main form div.group a.transparent.text,
					div#content section.login div.main form div.group button.transparent.text{ margin-top: 0; padding: 0; font-size: 16px; font-family: 'Open Sans', sans-serif; color: #222222; text-decoration: underline; }

				div#content section.login div.main form > button{
					position: absolute;
					left: 60px; bottom: 60px;
				}

				div#content section.login div.main form > div.buttons{
					position: absolute;
					left: 60px; bottom: 60px;
				}
					div#content section.login div.main form > div.buttons button,
					div#content section.login div.main form > div.buttons a.button{ margin-right: 15px; }

				button.big,
				a.button.big{
					width: 100%;
					padding: 20px 0;
					margin: 20px 0;
				}

	div#content header{
		flex: 0;
		padding: 30px;

		background-color: #FD9700;
	}

		div#content header a{ color: #ffffff; font-size: 16px; }

		div#content header div.logo{ display: inline-block; font-weight: bold; }

		div#content header nav{ float: right; }
		div#content header nav a{ margin-left: 30px; }
		div#content header nav a i{ margin-left: 10px; }

	div#content section.main{
		display: flex;
		flex-direction: column;
		flex: 1;

		width: 100%;
		max-width: 1100px;
		height: 100%;
		padding: 60px 60px 120px 60px;
		margin: 0 auto;
	}

		div.popup-background div.popup-window.form nav.person,
		div#content section.main nav.person{
			position: relative; z-index: 0;
			flex: 0;

			width: 100%;
			padding-bottom: 10px;

			font-size: 18px;
		}
			div.popup-background div.popup-window.form nav.person:after,
			div#content section.main nav.person:after{
				content: ' ';

				position: absolute;
				bottom: 0; left: 0;
				z-index: 1;

				width: 100%;
				height: 1px;

				background-color: #E5E5E5;
			}

			div.popup-background div.popup-window.form nav.person a,
			div#content section.main nav.person a{
				position: relative;
				z-index: 2;

				padding: 0 15px 10px 15px;
				color: #AAAAAA;
			}

			div.popup-background div.popup-window.form nav.person a:after,
			div#content section.main nav.person a:after{
				content: ' ';

				position: absolute;
				bottom: 0; left: 0;

				width: 100%;
				height: 1px;

				background-color: #E5E5E5;
			}

			div.popup-background div.popup-window.form nav.person a.active,
			div#content section.main nav.person a.active{
				color: #FEBC78;
				font-weight: 400;
			}

			div.popup-background div.popup-window.form nav.person a.active:after,
			div#content section.main nav.person a.active:after{
				content: ' ';

				position: absolute;
				bottom: 0; left: 0;

				width: 100%;
				height: 1px;

				background-color: #FD9D0E;
			}


		div#content section.main div.boxes{
			display: flex;
			flex-direction: row;
			flex: 1;

			padding: 30px 0;
			height: 100%;
		}/*
			div#content section.main div.boxes > div:first-child{ flex: 4; padding-right: 30px; }
			div#content section.main div.boxes > div:last-child{ flex: 3; padding-left: 30px; }
*/
			div#content section.main div.boxes div.box{
				display: flex;
				flex-direction: column;
				flex: 1;

				height: 100%;
			}
				div#content section.main div.boxes div.box > *{ flex: 0; }

				div#content section.main div.boxes div.box div.title{
					margin-bottom: 20px;

					font-size: 22px;
					color: #222222;
				}

				div#content section.main div.boxes div.box div.middle{
					display: flex;
					flex: 1;

					overflow-y: auto;
				}

				div#content section.main div.boxes div.box div.table{}
					div#content section.main div.boxes div.box div.table div.cell{
						padding: 20px;
						font-size: 16px;
						color: #AAAAAA;
						border-bottom: 1px solid #EDEFF0;
					}

					div#content section.main div.boxes div.box div.table div.txt-bold{ color: #444444; }
					div#content section.main div.boxes div.box div.table div.cell span.small{ color: #AAAAAA; font-weight: 300; display: block; }
					div#content section.main div.boxes div.box div.table div.cell.button{ padding: 0 20px; vertical-align: middle; }
					div#content section.main div.boxes div.box div.table div.cell i.fa-times{ color: #E16A6A; }
					div#content section.main div.boxes div.box div.table div.cell i.fa-minus-circle,
					div#content section.main div.boxes div.box div.table div.cell i.fa-check-circle{ font-size: 16px; }

				div#content section.main div.boxes div.box a.button{ margin-top: 30px; }

/*
	Content-Box
*/

.flex-zero{ flex: 0; }
.flex-one{ flex: 1; }

.shadow{
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}

/*
	Table
*/

div.table{ display: table; width: 100%; }
div.table div.header-group{ display: table-header-group; }
div.table div.body-group{ display: table-row-group; }
div.table div.row{ display: table-row; }
div.table div.cell{ display: table-cell; }

/*
	Calendar box
*/

div.calendar-box{
	display: table;

	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
}

	div.calendar-box div.header-group{
		display: table-header-group;
	}

	div.calendar-box div.body-group{
		display: table-row-group;
	}

	div.calendar-box div.row{
		display: table-row;
	}
		div.calendar-box div.row:hover div.cell.time{
			background-color: rgba(0,0,0,.1);
			color: #000000;
		}

	div.calendar-box div.cell{
		display: table-cell;
		position: relative;

		border-left: 1px solid #EAEFF5;
	}
		div.calendar-box div.cell:first-child{ border-left: 0; }
		/*div.calendar-box div.cell:hover{
			box-shadow: 0 0 20px rgba(0,0,0,.1);
		}*/
		div.calendar-box div.header-group div.cell{ border-bottom: 1px solid #EAEFF5; }

		div.calendar-box div.header-group div.cell{
			padding: 10px 0;

			font-size: 16px;
			text-align: center;
			color: #505050;
		}

	div.divide-box div.cell{
		position: relative;
		float: left;
		width: 100%;

		margin-bottom: 2px;
	}

		div.divide-box div.cell div.cell-box,
		div.calendar-box div.cell div.cell-box{
			float: left;
			width: 100%;
			height: 100%;

			background-color: #FFFFFF;

			overflow-y: hidden;
		}
			div.calendar-box div.cell div.cell-box{ border-bottom: 1px solid #EAEFF5; }

			div.calendar-box div.cell div.cell-box.new-item,
			div.calendar-box:not(.new-item) div.cell:hover div.cell-box:not(.disabled):not(.empty):not(.done),
			div.calendar-box.new-item div.cell:hover div.cell-box.empty:not(.disabled):not(.inactive):not(.inactive-hours){
				position: absolute;
				z-index: 100 !important;
				box-shadow: 0 0 20px rgba(0,0,0,.1);

				cursor: default;
			}
			div.calendar-box div.cell div.cell-box.new-item{ overflow: inherit; }
			
			div.calendar-box div.cell div.cell-box.inactive-hours{ background-color: #F8F8F8; }
			/*div.calendar-box div.cell div.cell-box.inactive{ background-color: #EAEFF5; }*/
			div.calendar-box div.cell div.cell-box.inactive{ background-color: #F8F8F8; }
			div.calendar-box div.cell div.cell-box.disabled{ background-color: #CCCCCC; }
			div.calendar-box div.cell div.cell-box.full.no-empty{ background-color: #4D5F75; }
			div.calendar-box div.cell div.cell-box.full.no-empty .details{ background-color: #4D5F75; }
			div.calendar-box div.cell div.cell-box.done .details{ background-color: #CCCCCC !important; color: #CCCCCC !important; }
			/*div.calendar-box div.cell div.cell-box.full{ border-bottom: 1px solid #CCCCCC; }*/
			/*div.calendar-box div.cell div.cell-box.full.no-empty{ border-bottom: 1px solid #CCCCCC; }*/
			/*div.calendar-box div.cell div.cell-box.done::after{
				content: ' ';

				position: absolute;
				top: 0;
				left: 0;
				width: 100%; height: 100%;

				background-color: #ffffff;
				opacity: .5;
			}*/

			div.calendar-box div.cell div.cell-box.no-empty{ position: absolute; z-index: 10; }
			div.calendar-box div.cell div.cell-box.empty.new-height{ position: absolute; z-index: 1; }
				div.calendar-box div.cell div.cell-box.h2x{ height: 200%; }
				div.calendar-box div.cell div.cell-box.h3x{ height: 300%; }
				div.calendar-box div.cell div.cell-box.h4x{ height: 400%; }
				div.calendar-box div.cell div.cell-box.h5x{ height: 500%; }

			div.divide-box div.cell div.cell-box.new-item{
				border: 1px solid #E6E6E6;

				color: #969696;
				font-size: 14px;
				padding: 11px 10px;
			}
				div.divide-box div.cell div.cell-box.new-item:hover{ cursor: pointer; opacity: .5; }

			div.calendar-box div.cell.time{
				padding-top: 14px;
				padding-bottom: 14px;

				font-size: 12px;
				color: #ADADAF;
				text-align: center;
				vertical-align: middle;

				border-bottom: 1px solid #EAEFF5;
			}
				div.calendar-box div.cell.time.active{
					background-color: #FEBC78;

					color: #ffffff;
				}

			div.divide-box div.cell div.cell-box div.details,
			div.calendar-box div.cell div.cell-box div.details{
				float: left;
				width: 80%;
				height: 100%;
				padding: 3px 10px;

				background-color: rgba(255,255,255,0.5);
				font-size: 14px;
			}
			div.calendar-box div.cell div.cell-box.inactive-hours.empty div.details{ background-color: inherit; }
			div.calendar-box div.cell div.cell-box.inactive.empty div.details{ background-color: inherit; }
			div.calendar-box div.cell div.cell-box.disabled.empty div.details{ background-color: inherit; }

			div.calendar-box div.cell div.cell-box.full div.details{ width: 100%; background-color: #CCCCCC; color: #262626; }
			div.calendar-box div.cell div.cell-box.my div.details{ width: 100%; background-color: #99D831; color: #ffffff; }

				div.divide-box div.cell div.cell-box div.details span.grayed,
				div.calendar-box div.cell div.cell-box div.details span.grayed{
					display: block;

					color: #AFAFAF;
					font-size: 14px;
					font-weight: 300;
				}

				div.calendar-box div.cell div.cell-box div.details span.simple{
					display: block;
					width: 100%;
					padding: 10px 0;

					text-align: center;
				}

			div.divide-box div.cell div.cell-box div.type,
			div.calendar-box div.cell div.cell-box div.type{
				float: right;
				width: 20%;
				height: 100%;
				padding: 2px 0;

				text-align: center;
			}
				div.calendar-box div.cell div.cell-box.full div.type{ display: none; }
				div.calendar-box div.cell div.cell-box.my div.type{ display: none; }

				div.divide-box div.cell div.cell-box div.type.button, div.calendar-box div.cell div.cell-box div.type.button{
					position: absolute;
					right: 0;

					padding-top: 10px;
					background-color: rgba( 0, 0, 0, .1);
				}
					div.divide-box div.cell div.cell-box div.type.button:hover, div.calendar-box div.cell div.cell-box div.type.button:hover{
						opacity: .5;
						cursor: pointer;
					}

					div.divide-box div.cell div.cell-box div.type.button.red,
					div.calendar-box div.cell div.cell-box div.type.button.red{
						color: #ffffff;
						background-color: #D96363;
					}

			div.divide-box div.cell div.cell-box div.buttons,
			div.calendar-box div.cell div.cell-box div.buttons{
				display: none;
				float: right;
				width: 20%;
				height: 100%;
				padding: 0;

				text-align: center;
			}

			div.calendar-box div.cell div.cell-box.empty div.buttons{ display: none !important; }
			div.divide-box div.cell div.cell-box div.buttons a,
			div.calendar-box div.cell div.cell-box div.buttons a{ display: block; width: 100%; color: #FFFFFF; font-size: 20px; }
				div.divide-box div.cell div.cell-box div.buttons a:last-child,
				div.calendar-box div.cell div.cell-box div.buttons a:last-child{ font-size: 14px; margin-top: -4px; }
				div.calendar-box div.cell div.cell-box div.buttons.darker{ background-color: rgba( 0, 0, 0, .1 ); }

			div.divide-box div.cell div.cell-box div.buttons a{ color: #222222; }
			div.divide-box div.cell div.cell-box div.buttons{ display: block; background-color: rgba( 0, 0, 0, .1); }

			div.calendar-box:not(.new-item) div.cell:hover div.cell-box:not(.disabled):not(.empty):not(.done) div.type{ display: none; }
			div.calendar-box:not(.new-item) div.cell:hover div.cell-box:not(.disabled):not(.empty):not(.done) div.buttons{ display: block; }

			div.calendar-box div.cell div.cell-box div.select-items{
				position: absolute;
				top: 100%;
				width: 100%;
				max-height: 300px;

				background-color: #F0F0F0;
				box-shadow: 0 20px 20px rgba(0,0,0,.1);
				border-radius: 0 0 8px 8px;

				z-index: 100;
				overflow-y: auto;

				font-size: 14px;
			}

				div.calendar-box div.cell div.cell-box div.select-items div.item{
					position: relative;

					padding: 10px 30px 10px 10px;
				}
					div.calendar-box div.cell div.cell-box div.select-items div.item:last-child{ border-radius: 0 0 8px 8px; }
					div.calendar-box div.cell div.cell-box div.select-items div.item:hover{
						background-color: #FFFFFF;
						cursor: pointer;
					}

					div.calendar-box div.cell div.cell-box div.select-items div.item div.color-type{
						position: absolute;
						top: 0; right: 0;

						width: 10px;
						height: 100%;
					}


/*
	SELECT 2
*/

.select2-container .select2-selection--single{
	height: auto;
}

.select2-container--default .select2-selection--single{
	padding: 10px;
	border: 1px solid #ffffff;
	border-radius: 5px;

	box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
	.error .select2-container--default .select2-selection--single{ border-color: #D96363; }

.select2-container--default .select2-selection--single .select2-selection__rendered{
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #222222;
	line-height: 18px;
}

.select2-container .select2-selection--single .select2-selection__rendered{
	padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
	top: 7px;
}

.select2-dropdown{
	border: 1px solid #ffffff;
	border-radius: 5px;

	box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.select2-container--default .select2-results__option[aria-selected=true]{
	background-color: inherit;

	color: #ADADAF;
}