@charset "utf-8";
/* CSS Документ */

/******************************

[Съдържание]

1. Съобщения
2. Бутони
3. Таблици


******************************/

/***********
1. Шрифтове
***********/

.error {
	display: block;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 1% 0px 1%;
	background-color: #F7A7A5;
}
.warning {
	display: block;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 1% 0px 1%;
	background-color: #FFDA96;
}
.ready {
	display: block;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 1% 0px 1%;
	background-color: #EBF8A4;
}

.formError {
	display: block;
	color: #FF0000;
}

/***********
2. Бутони
***********/

/* Бутони за странициране */
.pager {
	display: block;
	text-align: left;
}
.pager .regular,
.pager .next,
.pager .prev,
.pager .current {
	display: inline-block;
	margin: 10px 5px 10px auto;
	padding: auto 100px auto 100px;
	min-width: 50px;
	min-height: 50px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.pager .regular {
	background-color: #FFFFFF;
	color: #636363;
	border: 1px solid #E5E5E5;
	font-weight: 500;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	border-radius: 5px;
}
.pager .regular:hover {
	background-color: #FFFFFF;
	color: #0E8CE4;
	border: 1px solid #E5E5E5;
	-o-transition-duration: .2s;
	-o-transition-property: all;
	-webkit-transition-duration: .2s;
	-webkit-transition-property: all;
	-moz-transition: all .2s linear;
	transition: all .2s ease-in-out;
}

.pager .next, .pager .prev {
	background-color: #FFFFFF;
	color: #E5E5E5;
	border: 1px solid #E5E5E5;
	font-weight: 500;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	border-radius: 5px;
}

.pager .next:hover, .pager .prev:hover {
	background-color: #FFFFFF;
	color: #636363;
	border: 1px solid #E5E5E5;
	-o-transition-duration: .2s;
	-o-transition-property: all;
	-webkit-transition-duration: .2s;
	-webkit-transition-property: all;
	-moz-transition: all .2s linear;
	transition: all .2s ease-in-out;
}

.pager .current {
	background-color: #FFFFFF;
	color: #0E8CE4;
	border: 1px solid #E5E5E5;
	font-weight: 500;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	border-radius: 5px;
}
.pager .current:hover {
	background-color: #FFFFFF;
	color: #636363;
	border: 1px solid #E5E5E5;
	-o-transition-duration: .2s;
	-o-transition-property: all;
	-webkit-transition-duration: .2s;
	-webkit-transition-property: all;
	-moz-transition: all .2s linear;
	transition: all .2s ease-in-out;
}

/***********
3. Таблици
***********/
.table-style1 {
	width: 100%;
	padding: 0px;
	margin: 0px;
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
.table-style1 .row {
	width: 100%;
	margin: 0px;
	padding: 15px;
	padding-right: 46px;
	cursor: pointer;
}
.table-style1 .row:hover {
	background-color: rgba(0,0,0,.05);
}
.table-style1 .row .cell {
	display: block;
	position: relative;
	width: 33%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}