@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');

table>thead>tr>th {
	text-transform: uppercase;
    font-size: 0.850rem;
}

html {
  font-family: 'Rubik', sans-serif;
  -webkit-font-smoothing: antialiased !important;
}

body {
    background-color: #d6d6d652;
}

@media only screen and (max-width : 600px) {
	#toast-container {
		min-width: 10%;
		width: 99%;
		top: -90%;
		right: 50%;
		transform: translateX(50%) translateY(50%);
	}
}

.spaced{
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn.btn-outline-green{
    margin: 0 1%;
    line-height: 22px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid;
    border-color: #69f0ae;
    background-color: transparent;
    font-weight: bold;
    font-size: 15px;
    align-items: center;
}

.btn.btn-outline-orange{
margin: 0 1%;
    line-height: 22px;
    padding: 0 1.2rem;
    height: 20px;
    border-radius: 5px;
    border: 1px solid;
    border-color: #ff5a00;
    background-color: transparent;
    font-weight: bold;
    font-size: 15px;
    align-items: center;
}

.btn.btn-outline-red{
margin: 0 1%;
    line-height: 22px;
    padding: 0 0.5rem;
    height: 20px;
    border-radius: 5px;
    border: 1px solid;
    border-color: #e57373;
    background-color: transparent;
    font-weight: bold;
    max-height: 80px;
    font-size: 15px;
    align-items: center;
}

.btn.btn-outline-yellow{
    margin: 0 1%;
    padding: 0 0.6rem;
    line-height: 22px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid;
    border-color: #ffd54f;
    background-color: transparent;
    font-weight: bold;
    max-height: 80px;
    font-size: 15px;
    align-items: center;
}


.btn.btn-outline-blue{
    margin: 0 1%;
    line-height: 22px;
    padding: 0 0.6rem;
    height: 20px;
    border-radius: 5px;
    border: 1px solid;
    border-color: #4fc3f7;
    background-color: transparent;
    font-weight: bold;
    max-height: 80px;
    font-size: 15px;
    align-items: center;
}

.btn.btn-outline-green:hover{
    background-color: #00e676;
    color: white !important;
}

.btn.btn-outline-blue:hover{
    background-color: #03a9f4;
    color: white !important;
}

.almost-black{
    background-color: #000000eb;
}

.btn.btn-outline-red:hover{
    background-color: #e53935;
    color: white !important;
}

.btn.btn-outline-orange:hover{
    background-color: #e65100;
    color: white !important;
}

.btn.btn-outline-yellow:hover{
    background-color: #ffb300;
    color: white !important;
}

.border-radius-10{
    border-radius: 10px;
}

.border-top-radius-10{
    border-radius: 10px 10px 0 0;
}

.padding {
	padding-top: 60px;
}

@media only screen and (max-width: 600px) {
	.padding {
		padding-top: 10px;
	}
}

.login-form-text {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 1rem;
}

.user-form-text {
	letter-spacing: 1px;
	font-size: 0.8rem;
}

@media only screen and (max-width : 992px) {
	header, main {
		margin: 0 1%;
		padding-top: 15px;
		flex: 1 0 auto;
	}
}

@media only screen and (min-width : 992px) {
	main:not(.login):not(.dashboard) {
		padding-left: 150px;
		padding-top: 40px;
		flex: 1 0 auto;
	}
}



@media only screen and (min-width: 992px) {
    .dashboard {
        flex: 1 0 auto;
        padding-left: 250px;
    }
}

@media only screen and (max-width: 992px) {
    .dashboard {
        flex: 1 0 auto;
        margin: 0 1%;
    }
}

main.login {
	padding-top: 40px;
	flex: 1 0 auto;
}

@media only screen and (min-width : 992px) {
	footer:not(.transparent ) {
		padding-left: 150px;
	}
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

/* Customize website's scrollbar like Mac OS
Not supports in Firefox and IE */

/* total width */
*::-webkit-scrollbar {
	background-color: #fff;
	width: 16px
}

/* background of the scrollbar except button or resizer */
*::-webkit-scrollbar-track {
	background-color: #fff
}

/* scrollbar itself */
*::-webkit-scrollbar-thumb {
	background-color: #babac0;
	border-radius: 16px;
	border: 4px solid #fff
}

/* set button(top and bottom of the scrollbar) */
*::-webkit-scrollbar-button {
	display: none
}

.side-nav .collapsible>.active .collapsible-header .chevron {
	transform: rotate(-90deg);
}

.side-nav .collapsible .collapsible-header .chevron {
	float: right;
	height: 12px;
	width: 24px;
	line-height: 12px;
	margin: 20px 0 0 0;
	transition: transform .2s;
	transition-property: transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
	transition-delay: 0s;
}

.side-nav .logo-container {
	padding: 0 16px;
	height: 64px;
	line-height: 64px;
	font-size: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	box-sizing: content-box
}

.side-nav .user-dashboard {
	padding: 0 15px;
	height: 55px;
    max-height: 150px;
	line-height: 80px;
	font-size: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	box-sizing: content-box
}
/*custom style para botao tabela editar e deletar*/
.btn-flat.delete:hover {
	background-color: rgba(255, 0, 0, 0.7);
}

.btn-flat.update:hover {
	background-color: rgba(0, 147, 255, 0.8);
}

.btn-flat.close:hover {
	background-color: rgba(216, 216, 216, 0.8);
}

.btn-flat.delete:hover>i, .btn-flat.update:hover>i, .btn-flat.show:hover>i, .btn-flat.done:hover>i, .btn-flat.edit:hover>i  {
	color: white;
	transition: color 0.3s ease;
}

.btn-flat.delete:hover>span {
	color: white;
	transition: color 0.2s ease;
}

.btn-flat.show:hover{
    background-color: rgba(255, 91, 0, 0.7);
}

.btn-flat.done:hover{
    background-color: rgba(19, 185, 6, 0.7)
}

.btn-flat.small {
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	padding: 0 0.5rem;
}

.side-nav .logo-container i.material-icons {
	line-height: inherit
}

.card-alert {
    border-radius: 1%;
    padding: 1% 1.5%;
    border: rgba(0, 0, 255, 0.2) 1px solid;
}

.card-alert button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 15px;
  color: inherit;
}
.card-alert a{
  color: inherit;
  font-weight: 500;
}
.card-alert a:hover{
  color: inherit;
  text-decoration: underline;
}

.btn.medium {
	padding: 0 1rem;
	border-radius: 6px;
	line-height: 30px;
	height: 30px;
	max-height: 35px;
}

.btn.medium i, .btn.medium span{
	font-size: 0.8rem;
}

.btn-group {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group>.btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 6px 0 0 6px;
}

.btn-group .btn{
  height: 28px;
  line-height: 28px;
  padding: 0 0.8rem;
  max-width: 1000px;
  width: max-content;
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 0 6px 6px 0;
}

.btn-group>.btn-inactive {
  background-color: #607d8b;
}

.btn-group>.btn {
  -webkit-box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0px rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0px rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0);
}

.btn-group>.btn-inactive:hover {
  background-color: #728F9D;
}

.btn-group>.btn:hover {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.dropdown-content.dropdown-table li>a{
	padding: 7px 2px;
}

.dropdown-content.dropdown-table li{
	min-height: 20px;
	max-height: 50px;
	height: auto;
}

.dropdown-content.dropdown-medium li>a{
	padding: 8px 4px;
	font-size: 14px;
}

.dropdown-content.dropdown-medium li{
	min-height: 0;
	max-height: 50px;
}

.tabs.green-tab .indicator{
	background-color: #f1a42e;
}

.tabs.green-tab .tab a{
	color: #f1a42e;
}

.tabs.green-tab .tab a:hover, .tabs.green .tab a.active {
	color: #714e10;
}

.tabs.green-tab>li.tab.disabled>a {
    color: darkgrey;
    cursor: not-allowed;
}

.breadcrumb:before {
    color: rgba(82, 82, 82, 0.7);
}

.icon-green{
    border: 2px solid #00C853;
    color: #00C853 !important;
}

.icon-green-text{
    color: #00C853 !important;
}

.icon-red{
    border: 2px solid #E53935;
    color: #E53935 !important;
}

.icon-red-text{
    color: #E53935 !important;
}

.icon-blue{
    border: 2px solid #2979FF;
    color: #2979FF !important;
}

.icon-blue-text{
    color: #2979FF !important;
}

.icon-orange{
    border: 2px solid #ff8f00;
    color: #ff8f00 !important;
}

.icon-orange-text{
    color: #ff8f00 !important;
}

.border-icon-green{
    border-top: 3px solid green;
}

.border-icon-red{
    border-top: 3px solid #E53935;
}

.border-icon-blue{
    border-top: 3px solid #2979FF;
}

.border-icon-orange{
    border-top: 3px solid #ff8f00;
}

.notification-badge {
    position: relative;
    left: -15px;
    top: -10px;
    color: #a20000;
    background-color: #f5f1f2;
    margin: 0 -.8em;
    border-radius: 50%;
    padding: 2px 6px;
}

@media only screen and (min-width: 1052px){
.modal.small{
    width: calc(100% - 80%);
}
}

.button-back {
    cursor: pointer;
}

.padding-card {
    padding: 4% !important;
}

.icon-rounded {
    padding: 15px;
    border-radius: 50%;
    color: white;
}

.box-shadow-light {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3), 0 0 24px 0 rgba(0, 0, 0, 0.11);
}

.green-app {
    background-color: #00c853;
}

.title-card {
    text-transform: uppercase;
    font-weight: 600;
}

.subtitle-card {
    letter-spacing: 1px;
}

span.feedback-error {
    position: absolute;
    left: 0.75rem;
    font-size: 12.3px;
    color: #F44336;
    top: 46px;
}

.modal-overflow-y {
    overflow-y: visible;
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    zoom: 1;
    overflow-x: auto;
}

span.dtr-title::after {
    content: " : "
}

.max-table-content {
    min-width: 100%;
    width: max-content;
}

.collapsible-body ul li a {
    padding: 0 2px 0 24px !important;
}

.green.accent-4 {
    background-color: rgb(40 89 61) !important
}

.primary-imperium {
    background-color: rgb(40 89 61) !important
}

.primary-imperium-2 {
    background-color: rgb(20 56 33) !important
}

.primary-text-imperium-2 {
    color: rgb(20 56 33) !important
}

.text-gold {
    color: #714e10
}

.secondary-imperium {
    background-color: #f1a42e !important
}

.secondary-imperium-2 {
    background-color: #714e10 !important
}

.secondary-imperium-outline {
    border: 2px solid;
    border-color: #f1a42e !important;
    color: #f1a42e;
}

.border-line-white {
    border: #fff 1px solid;
}

.p-05 {
    padding: .5rem;
}

.p-1 {
    padding: 1rem;
}

.p-3 {
    padding: 3rem;
}

.p-5 {
    padding: 5rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pl-5 {
    padding-left: 5rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pr-3 {
    padding-right: 3rem;
}

.pr-5 {
    padding-right: 5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.ml-1 {
    margin-left: 0.5rem;
}

.mr-1 {
    margin-right: 0.5rem;
}

nav.white, nav.transparent {
    height: 48px;
    line-height: 48px;
}

.breadcrumb {
   color: #222222 !important;
}

.breadcrumb i.material-icons {
    height: 48px;
    line-height: 48px;
    margin-right: 2px;
}

.text-center {
    text-align: center
}

@media only screen and (min-width: 712px) {
    .row .col._m6 {
            width: 50%;
    }
}

@media only screen and (min-width: 1064px) {
    .row .col._l4 {
        width: 33.333333%;
    }
}

[type='checkbox']:checked+label:before {
    border-right: 2px solid black !important;
    border-bottom: 2px solid black !important;
}

.select-none {
    user-select: none;
}