/**
 *
 * Apply Here your Custom CSS
 *
*/

* {
    font-size: 15px;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.header {
    height: 90px;
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .logo {
    height: 70px;
}

.header .right-nav {
    position: absolute;
    right: 0;
}

.header .right-nav .user {
    padding: 20px 30px;
}

.header .right-nav .user .profile {
    color: #f6f6f6;
}

.side-bar {
    position: fixed;
    width: 20%;
    top: 0;
    bottom: 0;
    margin-top: 90px;
}

.content {
    margin-left: 20%;
    padding: 0 20px;
    margin-top: 90px;
}

ul.side-bar {
}

ul.side-bar li a {
    padding: 20px 20px;
    display: block;
	color: #636363;
}

ul.side-bar li a:hover {
    background-color: #a7a7a7;
}

.loader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0,0,0, 0.6);
	z-index: 2000;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader img {
	-webkit-animation:spin 2.5s linear infinite;
	-moz-animation:spin 2.5s linear infinite;
	animation:spin 2.5s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.dropdown-content li>a {
	color: #636363;
}

a.profile {
	cursor: pointer;
}

.page-title {
	padding: 20px 0 0;
	margin: 0;
	font-size: 2.5rem;
	font-weight: 500;
}

.page-sub-title {
	padding: 20px 0 0;
	margin: 0;
	font-size: 1.7rem;
	font-weight: 500;
}

.action {
	cursor: pointer;
}

#divButtonSaveBack {
    padding-top: 20px;
    padding-bottom: 50px;
    padding-left: 30px;    
}

/* CSS Página - Inicio */

.form-content {
	padding: 20px 20px;
}

.template-list {
	margin-top: 20px;
}

.template-list .label {
	font-size: 1.05rem;
	color: #9e9e9e;
	margin-left: 12px;
}

.template-list ul {
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	margin: 0;
}

.template-list ul li {
	display: inline-block;
	padding: 10px;
}

.template-list ul li.selected {
	background-color: #CCC;
	border-radius: 5px;
}

.template-list ul li img {
	width: 80px;
}

.template-form {
	padding: 20px 50px;
}

.image-wrapper {
	width: 150px;
	height: 150px;
	overflow: hidden;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #BBB;
}

.image-wrapper img {
	width: 100%;
}

.form-wrapper {
	flex-grow: 1;
}

.form-wrapper .file-path-wrapper .file-path {
	margin-bottom: 0;
}

.dp-flex {
	display: flex;
	align-items: center;
}
/* CSS Página - Fim */

.page-error-404 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-error-404 .error-text h2 {
	font-size: 12rem;
	text-align: center;
}

.page-error-404 .error-text p {
	font-size: 5rem;
	margin: 0;
}

.login-container {
	margin-right: 20%;
	display: flex;
	align-items: center;
	padding-top: 50px;
}

.card.horizontal {
	height: 350px;
	overflow: hidden;
}

.card-action {
	display: flex;
	justify-content: space-around;
}