/* Fonts */
@import url(https://fonts.googleapis.com/css?family=Coustard:400,900);

body {
	background-image: url('bg4.jpg');
	background-repeat: repeat;
}
#title {
	color: white;
	width: 100%;
	text-align: center;
	font-family: 'Coustard', serif;
	font-weight: 900;
	font-size: 50px;
}
.name {
	color: red;
	font-family: 'Coustard', serif;
	text-shadow:
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    3px 3px 0 #fff;  
	font-weight: 900;
	font-size: 40px;
	cursor: pointer;
	width: 100%;
	text-align: center;
}
.name:nth-child(odd) {
	color: green;
}
#list {

}
.listItem {
	width: 95%;
	max-width: 700px;
	border: 2px dotted red;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3px;
	padding: 2px 2px 2px 2px;
	background: rgba(255,255,255,.5);
	position: relative;
}
.listItem:nth-child(odd) {
	border: 2px dotted green;
}
.listItemText {
	font-family: 'Coustard', serif;
	font-weight: 400;
	font-size: 27px;
	position: relative;
}
.listItemDelete {
	width: 20px;
	height: 20px;
	background-image: url('delete.png');
	cursor: pointer;
	float: right;
	top: 2px;
	position: absolute;
	right: 2px;
}
.loader {
	width: 16px;
	height: 16px;
	background-image: url('loader.gif');
	float: right;
}
#newGift {
	color: #555;
}
#back {
	cursor: pointer;
	padding: 7px 9px 8px 7px;
	margin: 20px auto;
	width: 120px;
	height: 25px;
	position: relative;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .3), inset 0px 1px 0px 0px rgba(255, 255, 255, .15);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .3), inset 0px 1px 0px 0px rgba(255, 255, 255, .15);
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .3), inset 0px 1px 0px 0px rgba(255, 255, 255, .15);
	background: #9C2929;
	background: -moz-linear-gradient(top, #9C2929 0%, #872323 100%);
	background: -webkit-gradient(linear, left top, left bottombottom, color-stop(0%,#9C2929), color-stop(100%,#872323));
	background: -webkit-linear-gradient(top, #9C2929 0%,#872323 100%);
	background: -o-linear-gradient(top, #9C2929 0%,#872323 100%);
	background: -ms-linear-gradient(top, #9C2929 0%,#872323 100%);
	background: linear-gradient(to bottombottom, #9C2929 0%,#872323 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9C2929', endColorstr='#872323',GradientType=0 );
}

#backText{
	font-family: 'Coustard', serif;
	font-weight: 400;
	font-size: 18px;
	color: white;
	margin-left: auto;
	margin-right: auto;
	width: inherit;
	height: inherit;
	text-align: center;
	text-shadow: 1px 1px 0px rgba(0,0,0,.5);
	position: absolute;
	border: 1px dashed #691212;
	line-height: 29px;
}
#backText:after {  
	border: 1px dashed rgba(255,255,255, .1);
	top: 0px;
	left: 0px;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
}  

#ajaxloader
{
	position: absolute;
	width: 15px;
	height: 15px;
	border: 6px solid red;
	border-right-color: transparent;
	border-radius: 50%;
	right: 5px;
	top: 0px;
}
#ajaxloader
{
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	-ms-animation: spin 1s linear infinite;
	-o-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}
@-webkit-keyframes spin
{
	from { -webkit-transform: rotate(0deg);   opacity: 0.2; }
	50%  { -webkit-transform: rotate(180deg); opacity: 1.0; }
	to  { -webkit-transform: rotate(360deg); opacity: 0.2; }
}
@-moz-keyframes spin
{
	from { -moz-transform: rotate(0deg);   opacity: 0.2; }
	50%  { -moz-transform: rotate(180deg); opacity: 1.0; }
	to  { -moz-transform: rotate(360deg); opacity: 0.2; }
}
@-ms-keyframes spin
{
	from { -ms-transform: rotate(0deg);   opacity: 0.2; }
	50%  { -ms-transform: rotate(180deg); opacity: 1.0; }
	to  { -ms-transform: rotate(360deg); opacity: 0.2; }
}
@-o-keyframes spin
{
	from { -o-transform: rotate(0deg);   opacity: 0.2; }
	50%  { -o-transform: rotate(180deg); opacity: 1.0; }
	to  { -o-transform: rotate(360deg); opacity: 0.2; }
}
@keyframes spin
{
	from { transform: rotate(0deg);   opacity: 0.2; }
	50%  { transform: rotate(180deg); opacity: 1.0; }
	to  { transform: rotate(360deg); opacity: 0.2; }
}