/* TOGGLE */
.sps-toggle {
	margin-left: 20px;
	
	color: #fff;
}

/* MENU */
.sps-menu {
	padding: 20px 0;
	font-size: 1.1em;
}

.sps-menu > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sps-menu > ul a {
	display: block;
	padding: 10px 15px;
	
	text-decoration: none;
	font-weight: 500;
	color: #373737;
} 

.sps-menu > ul i {
	margin-right: 6px;
}

.sps-menu > ul a:hover {
	color: #ec6c2b;
	background-color: #dfdfdf;
	margin-left: -3px;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.sps-menu > ul .is-selected {
	border-left: 3px solid #ec6c2b;
	background-color: #f3f3f3;
}

.sps-menu > ul .is-selected a {
	margin-left: -3px;
	color: #ec6c2b;
}

/* 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;
/* 	margin: 5px 0 0 !important; */
/* 	height: calc(1.5em + 0.75rem + 2px) !important; */
	color: #fff !important;
	border: 0 !important;
	border-radius: 4px !important;
	font-size: 16px !important;
	box-shadow: none !important;
	border: 0 !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: 110px;
}

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


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