/* Display */
.d-none {
	display: none;
}

/* Panel */
.panel {
	margin-top: 30px;
	background-color: #404042;
	background: linear-gradient(#f79520, #cc1f26);
	border: 5px solid #fff;
}

.panel label {
	display: none;
}

.panel .form-group + .form-group {
    border: 0;
}

.panel a {
	color: #fff;
}

.panel-body {
	padding: 50px;
}

.panel .btn-danger {
	border-color: #fff;
}

/* Text align in -xs */
.text-align-xs {
    text-align: '';
}

/* Media Query */
/* Portrait phones and smaller */
@media (max-width: 480px) {
	.text-align-xs {
		text-align: center;
	}
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) { /* xs */ 
	.text-align-xs {
		text-align: center;
	}
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) { /* sm */ 
	.text-align-xs {
		text-align: center;
	}
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) { /* md */ 
	.text-align-xs {
		text-align: '';
	}
}

/* Large desktops and laptops */
@media (min-width: 1200px) { /* lg */ 
	.text-align-xs {
		text-align: '';
	}
}

