/* PAGE-TITLE */
.sps-page-title {
	margin: 0;
	padding: 30px 0;
	
	font-size: 1.6em;
	color: #474747;
}

/* CONTAINER */
.container, .container-vertical {
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
    
    position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.container {
    align-items: center;
}

@media (min-width: 1280px) {
	.container, .container-vertical {
	    max-width: 1152px;
	}
}

@media (min-width: 998px) {
	.container, .container-vertical {
	    max-width: 992px;
	}
}

/* CARD */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff 0 0 no-repeat padding-box;
  box-shadow: 0 2px 4px #00000033;
  padding: 20px;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  
}

/* INPUT */
input {
	width: -moz-available;
	width: -webkit-fill-available;
	width: 100%;
	background: white !important;
	box-shadow: none !important;
	text-shadow: none !important;
	border: 1px solid !important;
	border-color: #d2d6de !important;
	border-radius: 4px !important;
	height: calc(1.5em + 0.75rem + 2px) !important;
	padding: 0 10px !important;
	color: black !important;
	margin: 0 0 10px !important;
}

input:focus {
/* 	border: 1px solid #d2d6de !important; */
/* 	border-color: #97ccef !important; */
/* 	box-shadow: 0 0 5px #1f89ce !important; */
	
	border: 1px solid #d2d6de !important;
	border-color: #f5ad8a !important;
	box-shadow: 0 0 5px #ec6c2b !important;
}

input:hover {
	border-color: #f5ad8a !important;
}

input:placeholder {
	color: rgba(0, 0, 0, 0.5) !important;
}

textarea {
	width: 100%;
	border: 1px solid !important;
	border-color: #d2d6de !important;
}

textarea:hover {
	border-color: #f5ad8a !important;
}

textarea:focus {
	border: 1px solid #d2d6de !important;
	border-color: #f5ad8a !important;
	box-shadow: 0 0 5px #ec6c2b !important;
}


/* BUTTON */
button {
	text-shadow: none !important;
	width: auto !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	border: 0 !important;
	background-color: #ec6c2b !important;
}

.success {
	background-color: #0c7041 !important;
}

.success:hover {
	background-color: #0a5c36 !important;
}

.danger {
	background-color: #CA1E1E !important;
}

.danger:hover {
	background-color: #b11b1b !important;
}

.primary {
	background-color: #ec6c2b !important;
}

.primary:hover {
	background-color: #eb5c14 !important;
}

.secondary {
	background: #6C757D !important;
}

.secondary:hover {
	background-color: #6b737b !important;
}

.warning {
	background-color: #FFC107 !important;
}

.warning:hover {
	background-color: #ffbf00 !important;
}

/* BUTTON */
.button-custom {
	text-align: center;
}

.button-data-table-custom__action {
	text-align: center;
	width: 100px;
}

.button-data-table-custom__action > button {
	font-size: 7px !important;
	width: 3em !important;
	height: 3em !important;
}


hr {
	border: 0;
	height: 1px;
	margin: 10px 0 20px;
	background: rgba(192, 192, 192, 0.5);
}