/* Floats */
.flLeft{
	float: left !important;
}
.flRight{
	float: right !important;
}
.clear{
	clear: both;
}
.clearfix:after, .group:after{
	content: "";
	display: table;
	clear: both;
}

/* Positioning */
.rel{
	position: relative;
}

/* Table */
.table{
	display: table;
}
.thead{
	display: table-header-group;
}
.tbody{
	display: table-row-group;
}
.trow{
	display: table-row;
}
.tcell{
	display: table-cell;
}

/* Button */
.button{
	padding: 3vh;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background-color: #333;
	border-radius: 0.5vh;
	line-height: 1.4;
}
.button.turquoise{
	background-color: #45a1a4;
}
.button.blue{
	
}
.button.white{
	background-color: white;
	color: #000;
}

.littleButton img{
	width: 5vh;
	height: 5vh;
	padding: 1vh;
	background-color: #45a1a4;
	border-radius: 10vh;
	opacity: 0.7;
}

/* Inputs */
input[type="text"], input[type="password"]{
	padding: 3vh;
	border-radius: 0px;
	border: 0.2vh solid #ccc;
	-webkit-appearance: none;
	outline: none;
}
input[type="submit"]{
	-webkit-appearance: none;
	border: none;
}
input[type="checkbox"]{
	width: 4vh;
	height: 4vh;
}
/*
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	position: relative;
	padding-left: 5vh;
	cursor: pointer;
}
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: -0.1vh;
	width: 3vh;
	height: 3vh;
	margin-top: 0.5vh;
	margin-right: 2vh;
	vertical-align: middle;
	border: 1px solid #aaa;
	background: #f8f8f8;
}

[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
	content: url(../images/icons/check.png);
	position: absolute;
	top: 3px; 
	left: 4px;
	font-size: 3vh;
	line-height: 0.8;
	color: #000;
}

[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
}
[type="checkbox"]:checked + label:after {
	opacity: 1;
}

[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
	border-color: #bbb;
	background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
	color: #999;
}
[type="checkbox"]:disabled + label {
	color: #aaa;
}*/

[contenteditable=true]:empty:not(:focus):before{
    content: attr(placeholder);
    color: #999;
}

/* Shadows */
.shadow{
	box-shadow: 0 0 1vh 0 rgba(0, 0, 0, 0.4);
}

/* Dots */
.dot{
	font-size: 2vh;
	display: inline-block;
	width: 10vh;
	height: 2vh;
	padding: 1vh 2vh;
	background-color: #fff;
	border-radius: 4vh;
	border-width: 0.3vh !important;
	margin-right: 0.3vh;
	text-align: center;
	vertical-align: middle;
}
.dot .co{
	display: none;
}
.dot .ddate{
	font-size: 2.5vh;
	position: relative;
	top: -0.6vh;
}

.skeletons, .hide{
	display: none;
}