/*
Author: Nor267
Website: http://www.nor267.com
*/
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@200;300;400;700;800&display=swap');
@font-face { font-family: 'Courier'; src:  url('courierstd.woff2') format('woff2'), url('courierstd.woff') format('woff'); font-weight: 400; font-style: normal; }

html{
    margin: 0px;
    padding: 0;
    width: 100%;
    height: 100%;
}
body {
	margin: 0px;
    padding: 0;
    width: 100%;
    min-height: 100%;
	font-family: Prompt, sans-serif;
	font-weight: 400;
	font-size: 12px;
	background-color: #F5F6F7;
	color: #212529;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';
}
* {
    text-decoration: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-print-color-adjust: exact;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
img, svg { display: block; vertical-align: middle; }
*.clear { clear: both; }
.noScroll { overflow: hidden; max-height: 100%; }
.noselect {
  -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
    -webkit-user-drag: none; 
    user-drag: none;
}
*.pointer, *.toggle{ cursor: pointer; }
*.textCenter{text-align: center; }
*.disabled, *.disabled *{cursor: not-allowed;}
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: 400; }
a, a:visited,a:focus,a:hover,a:active{text-decoration: none; }
a.underline{text-decoration: underline;}
a.underline:hover{text-decoration: none;}


::-webkit-input-placeholder { color: #C0C0C0; }
:-moz-placeholder { color: #C0C0C0; }
::-moz-placeholder { color: #C0C0C0; }
:-ms-input-placeholder { color: #C0C0C0; }

/* ---------- LOGIN ---------- */
.loginArea { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    background-color: #101010;
    display: flex;
    justify-content: center;
}
.login { 
    width: calc(100% - 48px);
    max-width: 258px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 0;
}
.login h1 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    color: #005889;
    margin: 0 0 18px 0;
}
.login p {
	text-align: center;
	color: #d9dce0;
    font-size: 12px;
    font-weight: 400;
    clear: both;
    font-family: 'Courier';
}
.login-alert {
	position: fixed;
	width: 100%; 
	top: -103px;
	padding: 0;
	background-color: #ED5565;
	z-index: 80;
    padding: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.login-alert p {
	font-size: 24px; 
    font-weight: 400; 
    color: #ffffff;
	margin: 24px 0; 
    padding: 0;
	line-height: 30px;
}
.login-alert p span { font-size: 48px; float: left; margin: 0 24px 0 0; }
.login .text-input { text-align: center; margin: 0 0 6px 0; }
.login .submit-btn { margin: 18px 0 22px 0; background-color: #f0f0f0; }
.login-alert .material-icons{margin: 24px 24px 24px 0; color: #FFFFFF;}

/* ---------- INPUTS / BUTTONS ---------- */
.text-input {
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #C0C0C0;
	margin: 0;
	padding: 16px 12px;
	border-radius: 2px;
	outline: none;
	font-family: Prompt, sans-serif;
	font-size: 14px;
    line-height: 16px;
	font-weight: 400;
	color: #101010;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-transition: 0.15s linear; 
    transition: 0.15s linear; 
}
.text-input:focus { border: 1px solid #005889 !important; }
.cancelar-btn, .submit-btn{
    display: block;
	width: calc(50% - 12px);
    background-color: transparent;
    padding: 16px 12px;
    border-radius: 2px;
	outline: none;
	font-family: Prompt, sans-serif;
	font-size: 14px;
    line-height: 18px;
	font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    -ms-transition: 0.15s linear; 
    transition: 0.15s linear; 
    text-align: center;
    float: left;
    margin: 0;
    text-decoration: none;
}
.cancelar-btn {
	border: 1px solid #C0C0C0;
	margin-left: 24px;
	color: #C0C0C0;
}
.cancelar-btn:hover, .cancelar-btn:focus { background-color: #C0C0C0; color: #f0f0f0; }
.submit-btn {
	border: 1px solid #005889;
	color: #005889;
}
.submit-btn.disabled{
    border: 1px solid #c6dae5;
	color: #c6dae5;
}
.submit-btn:hover, .submit-btn:focus { background-color: #005889; color: #f0f0f0; }
.submit-btn.disabled:hover, .submit-btn.disabled:focus { background-color: #c6dae5; color: #f0f0f0; }
input[type="checkbox"], input[type="radio"] { display: none; }
.input-cnt label {
	float: left;
	margin: 14px 24px 0 0;
	cursor: pointer;
}
.input-cnt label.error{display: none;}
.input-cnt label p {
	display: block;
	width: auto;
	float: left;
	color: #212529 !important;
	clear: none !important;
	margin: 1px 0 0 8px !important;
	font-weight: 400 !important;
}
.input-cnt label.disabled p{
    color: #C0C0C0 !important;
}
.input-cnt label span {
	display: block;
	content: '';
	width: 18px;
	height: 18px;
	float: left;
	border: 2px solid #C0C0C0;
	border-radius: 50%;
	-webkit-transition: 0.2s ease; -moz-transition: 0.2s ease; transition: 0.2s ease;
}
.input-cnt label span:before {
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin: 3px auto;
	border-radius: 50%;
	-webkit-transition: 0.2s ease; -moz-transition: 0.2s ease; transition: 0.2s ease;
}
input[type="checkbox"] + label span, input[type="checkbox"] + label span:before{
    border-radius: 0;
}
.input-cnt label img {
    border: 2px solid #ffffff;
    border-radius: 2px;
}
.input-cnt label svg{
    width: 24px;
    height: 24px;
    fill:#C0C0C0;
    -webkit-transition: 0.1s ease; -moz-transition: 0.1s ease; transition: 0.1s ease;
}
.input-cnt label:hover svg, .input-cnt label.active svg, input[type="checkbox"]:checked +label svg{fill:#005889;}
input[type="checkbox"]:checked +label img { border: 2px solid #005889; }
.input-cnt label:hover span:before { background-color: #C0C0C0; }
input[type="checkbox"]:checked +label span, input[type="radio"]:checked +label span { border: 2px solid #005889; }
.input-cnt label.disabled span, input[type="checkbox"]:checked +label.disabled span, input[type="radio"]:checked +label.disabled span { border: 2px solid #E4E6E9; }
.input-cnt label.disabled:hover span:before { background-color: #E4E6E9; }
input[type="checkbox"]:checked +label span:before, input[type="radio"]:checked +label span:before { background-color: #005889; }

.styled-select {
    overflow: hidden;
    background: #ffffff;
    -webkit-appearance: none;
    border-radius: 2px;
 }
.styled-select + svg {
    position: absolute;
    bottom: 16px;
    z-index: 1;
    right: 4px;
    width: 36px;
    height: 36px;
    transform-origin: center;
    -webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.nice {
	outline: none;
	font-size: 14px;
	font-weight: 500;
	font-smooth: always;
    margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    width: 100%;
}
.nice .NFI-button {
	color: #C0C0C0;
    border: 1px solid #C0C0C0;
	width: 96px;
    text-transform: uppercase;
    padding: 14px 8px;
    line-height: 18px;
    border-radius: 2px 0 0 2px;
    -ms-transition: 0.15s linear; 
    transition: 0.15s linear; 
}
.nice .NFI-filename {
	font-size: 14px;
    line-height: 46px;
	font-weight: 400;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    width: calc(100% - 96px);
    border: 1px solid #C0C0C0;
	border-left: none;
	background: #FFFFFF;
	color: #212529;
    padding: 0 12px !important;
    border-radius: 0 2px 2px 0;
    -ms-transition: 0.15s linear; 
    transition: 0.15s linear; 
}
.nice:hover .NFI-button { border: 1px solid #005889; color: #005889; }
.nice:hover .NFI-filename { border: 1px solid #005889; border-left: none; }


/* ---------- HEADER ---------- */
.header {
	position: fixed;
	width: 100%; 
    height: 96px;
	background-color: #101010;
	z-index: 100;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1); box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    top: 0;
}
.header .cnt{
    width: 100%;
    max-width: 1920px;
}
.header h1 {
	font-size: 48px;
    line-height: 48px;
	color: #005889;
	font-weight: 200;
	text-transform: uppercase;
	margin: 24px;
	float: left;
    max-width: calc(100% - 110px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.header .utilizador {
	float: right;
	margin: 24px 48px 0 0;
}
.header .utilizador .welcome {
	float: left;
	margin: 16px 36px 0 0;
}
.header .utilizador .welcome p {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	padding: 0;
    color: #f0f0f0;
}
.header .utilizador .welcome p span { color: #005889; }
.header .utilizador .options-btn { 
    float: right; 
    color: #C0C0C0; 
    margin: -18px -22px 0 0;
    cursor: pointer;
}
.header .utilizador .options-btn i{margin: 0;}
.header .utilizador .avatar {
	width: 46px; 
    height: 46px;
	float: right;
	overflow: hidden;
}
.header-menu {
	position: fixed;
	width: 100%;
	height: 1px;
	top: 96px;
	z-index: 80;
    right:96px;
}
.header-menu-cnt {
	float: right;
	background-color: #005889;
	padding: 16px 24px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1); box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
	margin-top: -160px;
	-webkit-transition: 0.4s ease-in-out; -moz-transition: 0.4s ease-in-out; transition: 0.4s ease-in-out;
    z-index: 100;
}
.header-menu-open {
	margin-top: 0;
}
.header-menu-cnt a {
	display: block;
	white-space: nowrap;
	text-align: right;
	padding: 4px 0;
	text-decoration: none;
	font-weight: 400;
    font-size: 14px;
	color: #101010;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.header-menu-cnt a:hover { color: #c6dae5; }
.header-menu-cnt p{ display: none; }


/* ---------- SIDEBAR ---------- */
.slidebar_mobile{display: none;}
.sidebar {
	position: fixed;
	width: 72px; height: 100%;
    top: 96px;
	background-color: #212529;
	overflow: hidden;
	z-index: 90;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.sidebar:hover, .sidebar.open { width: 288px; }
.sidebar .menu {
	list-style: none;
	width: 288px;
	margin: 0;
	padding: 0;
}
.sidebar .menu li { width: 100%; border-bottom: 1px solid #101010; }
.sidebar .menu li a {
	display: table-cell;
	width: 288px; height: 71px;
	vertical-align: middle;
	text-decoration: none;
	text-transform: uppercase;
	color: #f0f0f0;
	font-size: 14px;
	font-weight: 500;
	background-color: #212529;
}
.sidebar .menu li a i {
	display: block;
	width: 72px;
	color: #101010;
	text-align: center;
    margin: 0;
}
.sidebar .menu li a svg{
    display: block;
	width: 72px;
    height: 24px;
	fill: #101010;
    float: left;
}
.sidebar .menu li a p { margin: 5px 0 0 0; float: left; }
.sidebar .menu li a:hover svg, .sidebar .menu li a.current span, .sidebar .menu li a.current svg{ fill: #005889; }
.sidebar .menu li a:hover i, .sidebar .menu li a:hover p, .sidebar .menu li a.current i, .sidebar .menu li a.current p { color: #005889; }
.sidebar .menu li a:hover { background-color: #101010; }


/* ---------- ALERTS ---------- */
.alert, .alert-error, .alert-error2 {
	position: fixed;
	width: 100%; 
	top: -24px;
	padding: 0 0 0 72px;
	box-sizing: border-box; -moz-box-sizing: border-box;
	background-color: rgba(72,207,173,0.9);
	z-index: 80;
    cursor: pointer;
    transition: all 0.2s 0.2s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}
.alert-error, .alert-error2{ background-color: rgba(237,85,101,0.9);  }
.alert.open, .alert-error.open, .alert-error2.open {
    top: 96px;
}
.alert p, .alert-error p, .alert-error2 p {
	font-size: 24px; 
    line-height: 30px;
    font-weight: 400;
    color: #ffffff;
    margin: 24px 0;
}
.alert .material-icons, .alert-error .material-icons, .alert-error2 .material-icons {
	font-size: 48px;
	float: left;
	margin: 24px;
    color: #FFFFFF;
}
.alert-confirm {
	position: fixed;
	width: 100%; 
	top: -106px;
	padding: 0 0 0 72px;
	box-sizing: border-box; -moz-box-sizing: border-box;
	background-color: rgba(255,206,84,0.9);
	z-index: 80;
    transition: all 0.2s 0.2s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.alert-confirm.open {
    top: 96px;
}
.alert-confirm p {
	font-size: 24px; 
    line-height: 30px;
    font-weight: 400; 
    color: #ffffff;
	margin: 0 24px; 
    padding: 35px 0 0 72px;
}
.alert-confirm p .material-icons{margin: -9px 24px 0 -72px;}
.alert-confirm .options {
	margin: 24px 24px 24px 96px;
}
.alert-confirm a {
	display: block;
	width: 144px;
	margin: 0;
	background-color: #FFCE54;
	border: 1px solid #ffffff;
	font-size: 14px;
    line-height: 18px;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	float: left;
	padding: 16px 0;
	box-sizing: border-box; -moz-box-sizing: border-box;
	-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.alert-confirm a:hover {
	background-color: #ffffff;
	color: #FFCE54;
}
.alert-confirm a.cancelar {
    border: 1px solid #F1AC00; 
    color: #F1AC00;
    margin-left: 24px;
}
.alert-confirm a.cancelar:hover { background-color: #F1AC00; color: #FFCE54; }


/* ---------- CONTENT ---------- */
.wrapper {
	position: relative;
	width: 100%;
	min-height: 100%;
	box-sizing: border-box; -moz-box-sizing: border-box;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.wrapper.sidebar-open { margin: 0 0 0 216px; }
h1 {
	font-size: 36px;
	font-weight: 800;
	color: #C0C0C0;
	text-transform: uppercase;
	margin: 0;
	line-height: 24px;
}
h2 {
	font-size: 24px;
	font-weight: 800;
	color: #C0C0C0;
	text-transform: uppercase;
	margin: 0;
	line-height: 48px;
    margin-bottom: 36px;
    width: calc(100% - 138px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
h3{
    font-size: 18px;
	font-weight: 800;
	color: #C0C0C0;
	text-transform: uppercase;
	margin: 36px 0 18px 0;
	line-height: 18px;
    clear: both;
}
.add-page h2{
    margin-bottom: 24px;
    margin-top: 64px;
}
.add-page h3{
	margin: 48px 0 0 0;
}
h2:first-child, .add-page h2:first-child, h3:first-child, .add-page h3:first-child{
    margin-top: 0px;
}
p, .trumbowyg-editor li{
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}


/* ---------- DASHBOARD ---------- */
.dashboard-cnt {
	width: 100%;
	padding: 128px 36px 0 108px;
	box-sizing: border-box; -moz-box-sizing: border-box;
}
.dashboard-widgets { width: 100%; float: left; margin: 0 0 48px 0; }
.widget {
	width: calc(50% - 12px);
	float: left;
}
.widget:first-of-type{
    margin-right: 24px;
}
.widget .cnt {
	position: relative;
	width: 100%;
	height: 132px;
	background-color: #FFFFFF;
	border-radius: 2px;
	overflow: hidden;
    -ms-transition: background-color 0.15s linear 0s;
    transition: background-color 0.15s linear 0s;
}
.widget p {
	margin: 10px 12px;
	color: #005889;
	text-transform: uppercase;
	float: left;
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}
.widget p span.valor {
	font-size: 48px;
    line-height: 48px;
	font-weight: 200;
	margin: 0;
}
.widget p span {
	display: block;
	margin: 4px 0 0 0;
}
.widget .bottom {
	position: absolute;
	display: block;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #f0f0f0;
	color: #808080;
	text-transform: uppercase;
	padding: 10px 12px;
    font-size: 14px;
    line-height: 18px;
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}
.widget .bottom i { float: right; margin: 0; }
.widget:hover .cnt { background-color: #005889; }
.widget:hover p, .widget:hover .bottom { color: #f5f6f7; }

/* ---------- PAGES ---------- */
#urlToGo { display: none; }
.pages-cnt {
	width: 100%;
    max-width: 1920px;
	padding: 48px 48px 0 120px;
    margin-top: 96px;
	box-sizing: border-box; -moz-box-sizing: border-box;
}
.pages-cnt.left{
    width: calc(33.33% + 36px);
    float: left;
    min-height: calc(100vh - 96px);
}
.home.nonAdmin .pages-cnt.left{
    width: calc(50% + 36px);
}
.pages-cnt.middle{
    width: calc(33.33% - 18px);
    float: left;
    background-color: #c0c0c0;
    padding: 48px 48px 0 48px;
    min-height: calc(100vh - 96px);
}
.home.nonAdmin .pages-cnt.middle{
    width: calc(50% - 36px);
}
.pages-cnt.right{
    width: calc(33.33% - 18px);
    float: right;
    padding: 48px 48px 0 48px;
    min-height: calc(100vh - 96px);
}
.pages-cnt.left h2, .pages-cnt.middle h2, .pages-cnt.right h2{
    color: #808080;
    width: 100%;
}
.pages-cnt .cnt {
	position: relative;
	width: 100%;
	float: left;
}
.link-adicionar {
	display: block;
	margin: 0;
    width: 144px;
    height: 144px;
	padding: 48px;
	font-size: 48px;
	color: #C0C0C0;
	text-decoration: none;
	background-color: #ffffff;
	border-radius: 2px;
	-ms-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
    box-shadow: none;
}
.link-adicionar:hover, .link-adicionar:focus { background-color: #005889; color: #ffffff; }
.link-adicionar i{
    float: none;
    margin: 0;
}
.pages-cnt .links-options {
    width: 144px;
	position: relative;
	z-index: 20;
	float: left;
}
.pages-cnt .links-options ul {
	list-style: none;
	margin: 12px 0 0 0;
	padding: 0;
	float: left;
    width: 100%;
}
.pages-cnt .links-options ul li { display: block; margin: 0 0 1px 0; }
.pages-cnt .links-options ul.displayOptions li a {
	display: inline-block;
	width: 48px; height: 48px;
	overflow: hidden;
	background-color: #ffffff;
	font-size: 12px;
    font-weight: 500;
	color: #C0C0C0;
	text-decoration: none;
    clear: both;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.pages-cnt .links-options ul.otherOptions li a {
	display: inline-block;
	width: 100%; height: 48px;
	overflow: hidden;
	background-color: #ffffff;
	font-size: 12px;
    font-weight: 500;
	color: #C0C0C0;
	text-decoration: none;
	clear: both;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.pages-cnt .links-options ul.otherOptions li a span { 
    padding: 14px 14px; 
    font-size: 16px;
    float: left; 
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pages-cnt .links-options ul.otherOptions li a:hover, .pages-cnt .links-options ul.otherOptions li a.current {
    background-color: #005889;
    color: #FFFFFF;
}
.pages-cnt .links-options ul li:first-child a {
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-topright: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.pages-cnt .links-options ul li:last-child a {
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.pages-cnt .links-options ul.displayOptions li a p { width: 140px; margin: 0; padding: 0; line-height: 18px; padding: 16px 0;}
.pages-cnt .links-options ul.displayOptions li a p span { padding: 0 16px; font-size: 16px; float: left; }
.pages-cnt .links-options ul.displayOptions li a:hover, .pages-cnt .links-options ul.displayOptions li:first-child a:hover, .pages-cnt .links-options ul.displayOptions li:last-child a:hover { 
    color: #ffffff;
    background-color: #005889;
    width: 144px;
    -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
}
.pages-cnt .links-options .titleArea {
    width: 144px;
    height: 48px;
    background-color: #005889;
    color: #ffffff;
    margin: 8px auto 0 auto;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-topright: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.pages-cnt .links-options .titleArea span {
    font-size: 16px;
    margin: 16px;
    float: left;
}
.pages-cnt .links-options .titleArea p {
    float: left;
    font-size: 14px;
    line-height: 18px;
}
.pages-cnt .links-options .text-input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-top: none;
    margin: 0;
}
.pages-cnt .links-options .text-input.last {
    border-radius: 2px;
    margin-bottom: 40px;
}
.pages-cnt .links-options .paginacao {
	float: left;
	clear: both;
	margin: 8px 12px;
    border-radius: 2px;
	overflow: hidden;
}
.pages-cnt .links-options .paginacao a {
	display: block;
	font-size: 16px;
	color: #C0C0C0;
	text-decoration: none;
	padding: 16px;
	background-color: #ffffff;
	float: left;
	-ms-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.pages-cnt .links-options .paginacao a.active:hover { background-color: #005889; color: #ffffff; }
.pages-cnt .links-options .paginacao a.number {
	width: 48px; height: 48px;
	font-size: 24px;
	color: #005889;
	text-align: center;
	padding: 10px 0;
}
.pages-cnt .listagem {
	width: 100%;
	float: left;
}
.pages-cnt a.linkBack {
    float: right;
    display: inline-block;
	width: 48px; height: 48px;
	overflow: hidden;
	background-color: #ffffff;
	font-size: 12px;
    font-weight: 500;
	color: #C0C0C0;
	text-decoration: none;
    margin: 0;
    border-radius: 2px;
	-ms-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.pages-cnt a.linkBack p { 
    width: 88px; 
    margin: 0; 
    line-height: 18px; 
    padding: 16px 0; 
    float: right; 
}
.pages-cnt a.linkBack p + i { 
    position: absolute;
    right: 14px;
    top: 16px;
    margin: 0;
}
.pages-cnt a.linkBack:hover {
    width: 102px;
    background-color: #005889;
    color: #ffffff;
}
.pages-cnt .listagem.hide { display: none; }
.pages-cnt .listagem .listagem-cnt {
    position: relative;
    width: 100%; 
    clear: both; 
}
.pages-list {
	width: 100%;
	padding: 0 0 96px 192px;
}
.pages-list.fixed { 
    padding-left: 0; 
}
.pages-cnt.users .pages-list{
    position: absolute;
}


/* ---------- USERS ---------- */
/* Utilizador */
.pages-list .user {
	width: calc(50% - 12px);
	padding: 0;
	float: left;
	box-sizing: border-box; -moz-box-sizing: border-box;
    margin-right: 24px;
    margin-bottom: 24px;
}
.pages-list .user:nth-of-type(2n){margin-right: 0;}
.pages-list .user .cnt {
	position: relative;
	width: 100%;
	height: 144px;
	background-color: #ffffff;
	overflow: hidden;
	-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
}
.pages-list .user .cnt .avatar {
	width: 96px;
	height: 96px;
	border: 1px solid #005889;
	margin: 24px 24px 0 24px;
	float: left;
	-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;
	overflow: hidden;
}
.pages-list .user .cnt .info { 
    float: left; 
    margin: 24px 16px 0 32px; 
    width: calc(100% - 97px); 
}
.pages-list .user .cnt .info h3 {
    width: 100%;
	font-size: 24px;
    line-height: 28px;
    margin-bottom: 12px;
	color: #005889;
	text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pages-list .user .cnt .info p {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.pages-list .user .cnt .info p span { display: block; color: #005889; margin: 4px 0;}
.pages-list .user .cnt .info p a { width: 100%; display: block; font-weight: 500; text-decoration: none; color: #212529; white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
.pages-list .user .cnt .options, .pages-list .new .cnt .options {
	position: absolute;
	height: 100%;
	right: 0;
	background-color: #ffffff;
	border-left: 1px solid #F5F6F7;
}
.pages-list .user .cnt .options a, .pages-list .new .cnt .options a {
    width: 48px; height: 49px;
	display: block;
	font-size: 16px;
	padding: 15px;
	color: #C0C0C0;
	text-decoration: none;
	background-color: #ffffff;
	border-bottom: 1px solid #F5F6F7;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.pages-list .user .cnt .options a:hover, .pages-list .new .cnt .options a:hover { background-color: #005889; color: #ffffff; }
.pages-list .user .cnt .options a i, .pages-list .new .cnt .options a i{float: none;margin: 0;}


/* ---------- ADD CONTENT ---------- */
.pages-cnt .add-page {
	position: absolute;
	width: 100%;
	float: left;
	display: none;
	left: -96px;
    margin-bottom: 72px;
}
.pages-cnt .add-page.start {
	display: block;
	left: 0;
}
.add-page .input-cnt, .popup .input-cnt {
	width: calc(50% - 12px);
	padding: 0;
	margin: 24px 0 0 0;
	float: left;
}
.add-page .input-cnt:last-of-type{
    margin-top: 64px;
}
.add-page .input-cnt.big, .popup .input-cnt.big{
    width: 100%;
}
.add-page .input-cnt.half, .popup .input-cnt.half {
    width: calc(25% - 18px);
}
.popup .input-cnt.short {
    width: calc(33.33% - 16px);
}
.popup .input-cnt.bigger {
    width: calc(66.66% - 8px);
}
.add-page .input-cnt.btns{
    margin-top: 72px;
}
.add-page .input-cnt.right-side, .add-page .input-cnt.half.right-side, .add-page .input-cnt.third, .popup .input-cnt.right-side, .popup .input-cnt.half.right-side, .popup .input-cnt.short.right-side, .popup .input-cnt.third{
    margin-left: 24px;
}
.add-page .input-cnt p, .popup .input-cnt p {
	display: block;
	color: #005889;
	font-weight: 400;
	clear: both;
	margin: 0 0 8px 0;
}
.add-page .input-cnt p span, .popup .input-cnt p span{ font-size: 12px; font-weight: 400; }
.add-page .input-cnt p a, .popup .input-cnt p a{ color: inherit; }
.add-page .input-cnt .dd-list p{
    color: #005889;
    margin: 15px 0 15px 24px;
    width: calc(100% - 128px);
}
.popup .input-cnt:nth-of-type(1), .popup .input-cnt:nth-of-type(2){
    margin-top: 0;
}
.popup form + p{
    color: #808080;
    text-align: center;
    margin-top: 36px;
}

.input-cnt .input-cnt-area {
	width: 100%;
	position: relative;
	float: left;
	overflow: hidden;
    margin-top: 8px;
}
.input-cnt .input-cnt-area:first-of-type{ margin-top: 0; }
.input-cnt .input-cnt-area:before {
	position: absolute;
	content: '';
	bottom: 0;
	right: 0px;
	padding: 13px;
    z-index: 10;
}
.input-cnt .input-cnt-area.area-half{
    width: calc(50% - 12px);
}
.input-cnt .input-cnt-area.short{
    width: calc(33.33% - 16px);
}
.input-cnt .input-cnt-area.bigger{
    width: calc(66.66% - 8px);
}
.input-cnt .input-cnt-area.area-half.right-side, .input-cnt-area.short.right-side {margin-left: 24px; margin-top: 0; }
ul.tagit input[type="text"]{
    font-size: inherit;
    line-height: inherit;
}
ul.tagit{ 
    position: relative; 
    padding: 2px !important;
}
ul.tagit:before{
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	padding: 13px;
}
ul.tagit li{
    margin: 0 !important;
}
ul.tagit li.tagit-choice{
    padding: 12px 20px 12px 8px !important;
    margin: 2px !important;
}
ul.tagit li.tagit-new{
    padding: 10px 0 !important;
}
.input-cnt-area.wrong + ul.tagit:before, .input-cnt-area.wrong:before { content: url(../images/layout/gicons_error.svg); }
.input-cnt-area.wrong .text-input{
    border: 1px solid #8b020f !important;
}
.input-cnt .input-cnt-area .error { display: none; margin: 0; }
.input-cnt .link-btn {
	width: calc(50% - 12px);
	background-color: #F5F6F7;
	border: 1px solid #005889;
	margin: 0 0 12px 24px;
	padding: 15px 10px;
	-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	box-sizing: border-box; -moz-box-sizing: border-box;
	outline: none;
	font-family: Prompt, sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #005889;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	cursor: pointer;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
	float: left;
    text-align: center;
    text-decoration: none;
}
.input-cnt.big .link-btn{
    width: calc(25% - 18px);
}
.input-cnt .link-btn:nth-of-type(4n+1){
    margin-left:0;
}
.input-cnt .link-btn:hover, .input-cnt .link-btn:focus { background-color: #005889; color: #F5F6F7; }
.input-cnt .link-btn.dark { border-color: #8dd3fa; color: #8dd3fa; }
.input-cnt .link-btn.dark:hover, .input-cnt .link-btn.dark:focus { background-color: #8dd3fa; color: #F5F6F7 ; }


/* ---------- BACKUSERS ---------- */
.add-page .avatar-cnt { float: left; margin: 0; }
.carregar-foto-btn {
	width: 240px;
	display: block;
	background-color: #F5F6F7;
	border: 1px solid #C0C0C0;
	padding: 16px 0;
	font-family: Prompt, sans-serif;
	font-size: 14px;
    line-height: 18px;
	color: #C0C0C0;
	font-weight: 500;
	font-smooth: always;
	text-transform: uppercase;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
	margin: 46px 0 0 24px !important;
	float: left;
	box-sizing: border-box; -moz-box-sizing: border-box;
	-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.carregar-foto-btn:hover { background-color: #005889; color: #F5F6F7; border: 1px solid #005889; }

.new-img .carregar-foto-btn { margin: 179px 0 0 24px !important; }
.service-img .carregar-foto-btn { margin: 179px 0 0 24px !important; }

/* ---------- REDACTOR ---------- */
.toolbar-fixed-box { top: 96px !important; left: 120px !important; position: fixed !important; z-index: 50 !important; -webkit-transition: left 0.2s ease-in-out; -moz-transition: left 0.2s ease-in-out; transition: left 0.2s ease-in-out; }
.toolbar-fixed-box.menuopen { left: 336px !important; }
#redactor_content { z-index: 40; float: left; margin-bottom: 12px; }
.redactor_redactor-input { font-family: Prompt; font-size: 14px; }
.redactor-dropdown.dropdown-fixed { top: 128px !important; }

/* ---------- IDIOMAS ---------- */
.idiomas-add-page {
	list-style: none;
	margin: 0 0 14px 0;
	padding: 0;
	float: left;
	clear: both;
	-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	overflow: hidden;
}
.idiomas-add-page li {
	float: left;
	text-align: center;
	border-right: 1px solid #F5F6F7;
}
.idiomas-add-page li:last-child { border: none; }
.idiomas-add-page li a {
	display: block;
	width: 48px;
	height: 48px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	color: #005889;
	font-weight: 500;
	background-color: #ffffff;
	padding: 15px 0;
	box-sizing: border-box; -moz-box-sizing: border-box;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.idiomas-add-page li a:hover, .idiomas-add-page li a.current {
	background-color: #005889; color: #ffffff;
}

/* ---------- DATEPICKER ---------- */
.ui-datepicker {
    max-width: 338px;
    width: calc(100% - 48px);
	display: none;
	background-color: #ffffff;
	border: 1px solid #005889;
	z-index: 400 !important;
	borde-radius: 2px;
    padding: 0;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	height: 48px;
	padding: 0;
	background-color: #005889;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	padding: 18px;
	color: #c6dae5;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
	cursor: pointer;
    width: 24px;
    height: 24px;
    top: 6px;
}
.ui-datepicker .ui-datepicker-next { right: 0; }
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
	color: #FFFFFF;
}
.ui-datepicker .ui-datepicker-prev:before, .ui-datepicker .ui-datepicker-next:before{
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 6px;
    left: 6px;
    content: "chevron_right";
}
.ui-datepicker .ui-datepicker-prev:before{
    content: "chevron_left";
}
.ui-datepicker .ui-datepicker-title {
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffffff;
	padding: 12px 0;
    line-height: 24px;
    margin: 0 24px;
}
.ui-datepicker .ui-datepicker-title select { font-size: 14px; }
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year { width: 49%; }
.ui-datepicker table {
	width: 100%;
	font-size: 14px;
	border-collapse: collapse;
	margin: 0;
}
.ui-datepicker th {
	width: 14.3%; 
    max-width: 48px;
    height: 48px;
	padding: 0;
	text-align: center;
	font-weight: bold;
	color: #005889;
    border: 0;
}
.ui-datepicker td {
	width: 14.3%; 
    max-width: 48px;
    height: 48px;
	border: 0;
	padding: 0;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	width: 100%; 
    height: 48px;
	text-align: center;
	text-decoration: none;
	color: #005889;
	border: 1px solid #ffffff;
	padding: 12px 0;
	box-sizing: border-box; -moz-box-sizing: border-box;
}
.ui-datepicker td.ui-state-disabled span, .ui-datepicker td.ui-datepicker-other-month a { color: #C0C0C0; }
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
    border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current a { float: left; }
.ui-datepicker td a.ui-state-active { background-color: #005889; color: #ffffff; border: 1px solid #005889; }
.ui-datepicker td a:not(.ui-state-active):hover { background-color: #c6dae5; color: #ffffff; border: 1px solid #c6dae5; }
.ui-datepicker td.ui-datepicker-other-month a.ui-state-active { background-color: #C0C0C0; color: #ffffff; border: 1px solid #C0C0C0; }
.ui-datepicker td a.ui-state-highlight { border: 1px solid #005889; }
.ui-datepicker td.ui-datepicker-other-month a.ui-state-highlight { border: 1px solid #C0C0C0; }

/* others */
.dd {
	display: block;
	width: 100%;
	list-style: none;
	float: left;
	box-sizing: border-box; -moz-box-sizing: border-box;
}
.dd-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.dd-list-content{
    display: flex;
    flex-direction: column;
}
.dd-list .dd-list { padding-left: 64px; }
.dd-collapsed .dd-list { display: none; }
.dd-item, .dd-empty, .dd-placeholder {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
    min-height: 48px;
    width: 100%;
}
.dd-placeholder, .dd-empty {
	margin: 0 0 16px 0;
	background: #F5F6F7;
	border: 1px dotted #212529;
	-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
}
.dd-list .links a, .dd-handle {
	display: block;
	padding: 15px;
	background-color: #ffffff;
	color: #C0C0C0;
	font-size: 16px;
	text-decoration: none;
	border-left: 1px solid #F5F6F7;
	float: left;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.dd-list .links a.disabled{
    color: #F5F6F7;
}
.dd-handle {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    float: none;
}
.dd-list .links a i, .dd-handle i{margin: 0;}
.dd-handle + .dd3-content .links{
    margin-right: 48px;
}
.dd .links a:not(.disabled):hover, .dd-handle:hover { color: #ffffff; background-color: #005889; cursor: pointer;}
.dd-item > button {
	display: block;
	position: relative;
	cursor: pointer;
	float: left;
	width: 48px;
	height: 48px;
	margin: 0 16px 0 0;
	padding: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	background: #ffffff;
	content: attr(data-icon);
	outline: none;
	border-right: 1px solid #F5F6F7;
	-webkit-border-top-left-radius: 2px; -webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px; -moz-border-radius-bottomleft: 2px;
	border-top-left-radius: 2px; border-bottom-left-radius: 2px;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}
.dd-item > button:hover { background-color: #005889;  }
.dd-item > button:before { 
    content: url(../images/layout/gicons_expland_more.svg); 
    display: block; 
    position: absolute; 
    width: 100%; 
    text-align: center; 
    text-indent: 0; 
    margin-top: -6px;
}
.dd-item > button:hover:before { content: url(../images/layout/gicons_expland_more_white.svg);  }
.dd-item > button[data-action="collapse"]:before { content: url(../images/layout/gicons_expland_less.svg); }
.dd-item > button[data-action="collapse"]:hover:before { content: url(../images/layout/gicons_expland_less_white.svg);  }
.dd-empty {
	border: 1px dashed #bbb;
	min-height: 100px;
	background-color: #e5e5e5;
	background-size: 60px 60px;
}
.nestable-lists {
	display: block;
	clear: both; padding: 30px 0;
	width: 100%; border: 0;
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd; 
}
#nestable-menu {
	padding: 0;
	margin: 20px 0;
}
.dd-hover > .dd-handle { background: #2ea8e5 !important; }
.dd3-content {
	display: block;
	color: #005889;
	text-decoration: none;
	background: #ffffff;
	border-radius: 2px;
    overflow: hidden;
    height: 48px;
    margin-bottom: 8px;
}
.dd3-content:hover { background: #fff; }
.dd-dragel .dd3-item .dd3-content { -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.3); box-shadow: 0 0 10px 0 rgba(0,0,0,.3); }
.historico .dd3-content {
    margin-bottom: 0;
}
.historico .dd-header .dd3-content{
    margin-bottom: 8px;
}
.dd3-item.inside { margin-left: 36px; }
.dd-list p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	width: calc(100% - 240px);
    float: left;
    margin: 14px 0 14px 24px;
    color: #808080;
}
.dd-list p a{
    color: #808080;
}
.dd-list p .material-icons{
    margin: 0;
    float: none;
}
.historico .dd-list .dd3-content p:nth-of-type(1){
    margin: 16px;
    width: 42px;
    text-align: center;
}
.historico .dd-list .dd3-content p:nth-of-type(2){
    width: 78px;
    margin: 16px 24px;
}
.historico .dd-list .dd3-content p:nth-of-type(3){
    width: calc(100% - 474px);
    margin: 16px 24px;
}
.historico .dd-list .dd3-content p:nth-of-type(4){
    width: 144px;
    margin: 16px;
}
.tabelas .dd-item:not(.dd-header){
    display: none;
    order: 1;
}
.tabelas .dd-list .dd3-content p:nth-of-type(1){
    margin: 15px 16px;
}
.tabelas .dd-list .dd3-content p:nth-of-type(2), .tabelas .dd-list .dd3-content p:nth-of-type(3), .tabelas .dd-list .dd3-content p:nth-of-type(4){
    margin: 16px 10px;
    width: 72px;
    text-align: right;
}
.tabelas .dd-list .dd3-content p:nth-of-type(5){
    width: calc(100% - 572px);
    margin: 16px;
}
.tabelas .dd-list .dd3-content p:nth-of-type(6), .tabelas.tabelaHoraLouca .dd-list .dd3-content p:nth-of-type(4), .tabelas.tabelaLucros .dd-list .dd3-content p:nth-of-type(5){
    width: 84px;
    margin: 16px;
    text-align: left;
}
.tabelas.tabelaHoraLouca .dd-list .dd3-content p:nth-of-type(3){
    width: calc(100% - 388px);
    text-align: left;
    margin: 16px;
}
.tabelas.tabelaLucros .dd-list .dd3-content p:nth-of-type(4){
    width: calc(100% - 480px);
    text-align: left;
    margin: 16px;
}
.tabelas .dd-header .dd3-content p:nth-of-type(2), .tabelas .dd-header .dd3-content p:nth-of-type(6), .tabelas.tabelaHoraLouca .dd-header .dd3-content p:nth-of-type(4), .tabelas.tabelaLucros .dd-header .dd3-content p:nth-of-type(5){
    padding-left: 24px;
    cursor: pointer;
}
.tabelas .dd-list .dd3-content p{
    position: relative;
}
.tabelas .dd-list .dd3-content p i{
    position: absolute;
    top: 0;
    left: 0;
    -ms-transition: transform 0.15s linear 0s;
    transition: transform 0.15s linear 0s;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #c6dae5;
}
.tabelas .dd-list .dd3-content p.selected i{
    color: #005889;
}
.tabelas .dd-list .dd3-content p.up i{
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.dd-list .links {
	margin: 0;
	float: right;
}
.toggleOpen i{
    transition: transform 0.15s linear 0s;
}
.dd-item.open .toggleOpen i{
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.dd-details {
    top: 100%;
    overflow: hidden;
    max-height: 0px;
    height: auto;
    width: 100%;
    background-color: #FFFFFF;
    margin-bottom: 8px;
    -ms-transition: max-height 0.35s ease-in 0s;
    transition: max-height 0.35s ease-in 0s;
}
.dd-item.open .dd-details{
    max-height: 540px;
}
.dd-details .top, .dd-details .middle, .dd-details .bottom{
    border-top: 1px solid #C0C0C0;
    width: 100%;
}
.dd-details .middle{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dd-details .middle .left{
    width: calc(50% - 1px);
}
.dd-details .middle .right{
    width: calc(50% - 1px);
    border-left: 1px solid #F5F6F7;
}
.dd-details p{
    width: auto !important;
    margin: 14px 24px;
    float: none;
}
.dd-details .top p:first-of-type{
    text-transform: uppercase;
}
.dd-header{
    order: 0;
}
.dd-header .dd3-content{
    background-color: #c0c0c0;
    text-transform: uppercase;
}
.dd-header .dd3-content p{
    color: #005889;
}

/* Image Preview */
.imagePreview {
    position: absolute;
    width: 144px;
    z-index: 10;
    top: 50%;
    right: 240px;
    opacity: 0;
    background-color: #005889;
    border-radius: 4px;
    overflow: hidden;
    pointer-events: none;
    -ms-transform: translateY(-50%); transform: translateY(-50%);
    -webkit-transition: 0.1s ease-in-out; -moz-transition: 0.1s ease-in-out; transition: 0.1s ease-in-out;
}
.dd3-content:hover + .imagePreview { opacity: 1; }


/* HELP */
.help-cnt .span { display: block; }


/* IMG actual */
.tableImagemActual{
    width: 576px;
    height: auto;
    margin: 0;
    padding: 0;
}
.tableImagemActual td{
    text-align: center;
    width: 50%;
}
.imagem_actual{
    width: auto;
    height: 150px;
    border: 1px solid #C0C0C0;
}
.tableImagemActual a {
	width: 32px; height: 32px;
	padding: 8px;
	color: #C0C0C0;
	font-size: 16px;
	text-decoration: none;
    line-height: 28px;
	box-sizing: border-box; -moz-box-sizing: border-box;
	-webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
}

/**/
.dd-dragel { 
    position: absolute; 
    z-index: 500; 
    pointer-events: none;
}
.dd-dragel .dd3-content { 
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.3); box-shadow: 0 0 10px 0 rgba(0,0,0,.3); 
    overflow: auto;
}
.dd-dragel .imagePreview{ display: none;}
.hidden_forms{
    overflow: hidden;
    height: auto;
    max-height: 0;
    -webkit-transition: 0.3s ease-in-out; -moz-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;
}
.hidden_forms.show{ max-height: 200vh; }

.trumbowyg-box, .trumbowyg-editor{ width: auto; margin: auto; }
.trumbowyg-box{border: 1px solid #C0C0C0;}
.trumbowyg-editor, .trumbowyg-textarea, .trumbowyg-box{min-height: 100px;}
.trumbowyg-editor, .trumbowyg-textarea{padding: 16px 12px;}
.input-cnt .trumbowyg-modal-box label{
    float: none;
    margin: 15px 12px;
    cursor: default;
}
.input-cnt label span.trumbowyg-input-infos{
    width: auto;
    float: none;
    border: none;
    border-radius: 0;
}
.trumbowyg-modal {
    position: fixed;
    top: calc(50% - 155px) !important;
    height: 310px !important;
}
.input-cnt label span.trumbowyg-input-infos:before, .input-cnt label span.trumbowyg-input-infos span:before{ display: none; }
.input-cnt label span.trumbowyg-input-infos span{
    height: auto;
    float: none;
    border-radius: 0;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit{
    background: transparent;
    border: 1px solid #005889;
    border-radius: 2px;
    color: #005889;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover{
    background: #005889;
    color: #FFFFFF;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset{
    border: 1px solid #C0C0C0;
    background: transparent;
    border-radius: 2px;
    color: #C0C0C0;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover{ background: #C0C0C0; color: #FFFFFF; }
.trumbowyg-modal-box .trumbowyg-modal-button{line-height: 30px;}
.trumbowyg-box svg{fill:#212529;}
.trumbowyg-button-pane .trumbowyg-button-group:not(:empty)+.trumbowyg-button-group::before{margin: 0;}
.trumbowyg-button-pane{padding: 0;}
.trumbowyg-button-pane button{ padding: 0 6px !important; margin: 0; }
.trumbowyg-button-pane button.trumbowyg-active, .trumbowyg-button-pane button:not(.trumbowyg-disable):focus, .trumbowyg-button-pane button:not(.trumbowyg-disable):hover, .trumbowyg-dropdown button:focus, .trumbowyg-dropdown button:hover{background: #005889;color: #FFFFFF !important;}
.trumbowyg-button-pane button.trumbowyg-active svg, .trumbowyg-button-pane button:not(.trumbowyg-disable):focus sv, .trumbowyg-button-pane button:not(.trumbowyg-disable):hover svg, .trumbowyg-dropdown button:focus svg, .trumbowyg-dropdown button:hover svg{fill:#FFFFFF;}
.trumbowyg-button-pane button.trumbowyg-active.trumbowyg-open-dropdown::after, .trumbowyg-button-pane button.trumbowyg-open-dropdown:hover::after{border-top-color: #FFFFFF;}
.trumbowyg-dropdown{
    padding: 0;
    border: 1px solid #C0C0C0;
}
.trumbowyg-button-pane .trumbowyg-button-group:not(:empty)+.trumbowyg-button-group::before{background:#C0C0C0; }
.trumbowyg-button-pane{border-bottom: 1px solid #C0C0C0; }
.trumbowyg-button-pane::after{background: transparent;}
.add-page .input-cnt .trumbowyg-editor h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 48px auto 16px auto;
    text-align: center;
    color: #212529;
}
.add-page .input-cnt .trumbowyg-editor h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin: auto;
    text-align: left;
    font-weight: 500;
}
.add-page .input-cnt .trumbowyg-editor p {
    text-align: left;
    text-transform: none;
    margin: auto;
    font-weight: 400;
    font-weight: normal;
    margin: 2px 0 0 0; 
    color: #212529; 
}
.add-page .input-cnt .trumbowyg-editor li{
    margin: 2px 0 0 0; 
}
.add-page .input-cnt .trumbowyg-editor p:first-of-type, .add-page .input-cnt .trumbowyg-editor li:first-of-type{ margin-top: 0; }
.add-page .input-cnt .trumbowyg-editor ol, .add-page .input-cnt .trumbowyg-editor ul{ 
    margin: 0;
    padding-left: 48px;
}
.inner-dd{
    float: left;
    width: calc(100% - 180px);
    margin-top: 8px;
}
.icon-valid{
    display: block;
    padding: 2px 16px 2px 0;
    background-color: #ffffff;
    color: #C0C0C0;
    font-size: 16px;
    text-decoration: none;
    float: left;
}
.icon-valid.icon-attention-1{ color: #ED5565; }
.icon-valid.icon-right-1{ color: rgba(72,207,173,1); }
.icon-valid.icon-info-1{ color: #005889; }

.sp-replacer {
    width: 240px;
    border-radius: 2px;
    padding: 8px;
    border: 1px solid #C0C0C0;
    background-color: #FFFFFF;
    color: #212529;
    margin-bottom: 12px;
}
.sp-replacer:hover, .sp-replacer.sp-active { border-color: #005889; }
.sp-replacer.sp-active { border-radius: 2px 2px 0 0;}
.sp-preview {
    height: 28px;
    width: calc(100% - 24px);
    margin-right: 8px;
    border: solid 1px #C0C0C0;
}
.sp-dd {
    font-size: 14px;
    height: auto;
    line-height: 14px;
    padding: 0;
    margin-top: 8px;
    color: #C0C0C0;
}
.sp-replacer:hover .sp-dd, .sp-replacer.sp-active .sp-dd { color: #005889; }
.sp-container {
    background-color: #FFFFFF;
    border: solid 1px #C0C0C0;
    border-radius: 0 0 2px 2px;
    display: block;
}
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear{
    font-family: Prompt, sans-serif;
}
.sp-picker-container {
    width: 240px;
    border-left: none;
}
.sp-color, .sp-hue, .sp-clear {
    border: solid 1px #C0C0C0;
}
.sp-input {
    -webkit-appearance: none;
    border: none;
    padding: 6px 8px;
    border: solid 1px #C0C0C0;
    border-radius: 2px;
    color: #212529;
    outline: none;
}
.sp-input:focus { border: solid 1px #005889; }
.sp-input.sp-validation-error {
    border: 1px solid #FF0000;
    background: #FFFFFF;
}
.sp-slider {
    height: 4px;
    border: 1px solid #212529;
    background: #FFFFFF;
    opacity: .85;
}
.sp-input-container{margin: 8px 0;}
.sp-palette-button-container, .sp-button-container{float: left; width: 100%;}
a.sp-cancel {
    text-transform: uppercase;
    color: #C0C0C0 !important;
    width: calc(50% - 8px);
    background-color: #F5F6F7;
    float: right;
    border: 1px solid #C0C0C0;
    border-radius: 2px;
    padding: 4px;
    line-height: 14px;
    text-align: center;
    margin: 0;
    font-size: 12px;
}
a.sp-cancel:hover {
    color: #F5F6F7 !important;
    background-color: #C0C0C0;
    text-decoration: none;
}
.sp-container button {
    -webkit-appearance: none;
    width: calc(50% - 8px);
    float: left;
    border-radius: 2px;
    outline: none;
    background-color: #F5F6F7;
    border: 1px solid #005889;
    color: #005889;
    font-size: 14px;
    background-image: none;
    padding: 4px;
}
.sp-container button:hover{
    background-image: none;
    text-shadow:none;
    border: 1px solid #005889;
    border-bottom: 1px solid #005889;
    background-color: #005889;
    color: #F5F6F7;
}

.select-triangle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #C0C0C0;
    margin: 18px 12px 0 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.styled-select:focus + .select-triangle{border-top: 12px solid #005889;}

.material-icons{
    float: left;
    margin: 0 24px 0 0;
    color: inherit;
}
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.image-explorer-container{
    width: 144px !important;
}
.image-explorer-container .image-explorer-image-view{
    width: 144px !important;
    height: 144px !important;
}
.image-explorer-container.empty .image-explorer-image-view[data-upload-prompt]:after{
    padding: 94px 48px 48px 48px !important;
}

.content-left{
    float: left;
    width: calc(50% - 24px);
}
.content-left p{
    padding-left: 42px;
}
.content-left .material-icons{
    margin-left: -42px;
}
.content-right{
    float: left;
    width: calc(50% - 24px);
    margin-left: 48px;
}

.swiper-bar {
    height: 2px;
    width: 0;
    background-color: #005889;
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    -ms-transition: left 0.15s linear 0s, width 0.15s linear 0s;
    transition: left 0.15s linear 0s, width 0.15s linear 0s;
}

.searchParent{
    width: 100%;
    margin-bottom: 32px;
}
.searchParent > p{
    line-height: 26px;
    color: #005889;
    text-transform: uppercase;
    cursor: pointer;
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}
.searchParent:hover > p{
    color: #c6dae5;
}
.searchParent > p .material-icons{
    margin: 0 12px 0 0;
    -ms-transition: transform 0.2s linear 0s;
    transition: transform 0.2s linear 0s;
}
.searchParent.open > p .material-icons{
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.searchParent .searchExpand{
    width: 100%;
    height: auto;
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    margin-top: 0;
    -ms-transition: max-height 0.3s linear 0s, opacity 0.15s linear 0.15s, margin 0.15s linear 0.15s;
    transition: max-height 0.3s linear 0s, opacity 0.15s linear 0.15s, margin 0.15s linear 0.15s;
}
.searchParent.open .searchExpand{
    opacity: 1;
    margin-top: 16px;
    -ms-transition: max-height 0.4s linear 0s, opacity 0.15s linear 0.05s, margin 0.15s linear 0.05s;
    transition: max-height 0.4s linear 0s, opacity 0.15s linear 0.05s, margin 0.15s linear 0.05s;
}
.historico .searchParent.open .searchExpand{
    max-height: 192px;
}
.tabelas .searchParent.open .searchExpand{
    max-height: 336px;
}
.searchField{
    border-radius: 2px;
    -ms-transition: border-color 0.15s linear 0s;
    transition: border-color 0.15s linear 0s;
}
.historico .searchField{
    margin-bottom: 24px;
}
.searchField:focus {
    border-color: #005889;
}
.searchField .text-input{
    border: 1px solid #c0c0c0;
    border-radius: 2px 0 0 2px;
    width: calc(100% - 49px);
    float: left;
    padding: 15px 12px;
}
.searchField a{
    display: block;
    padding: 14px 15px;
    background-color: #FFFFFF;
    color: #C0C0C0;
    text-decoration: none;
    box-sizing: border-box;
    -ms-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
    float: right;
    border: 1px solid #c0c0c0;
    border-left: none;
}
.searchField a:hover{
    color: #FFFFFF;
    background-color: #005889;
}
.searchField .material-icons, .filterField .material-icons{
    margin: 0;
}
.filterField .text-input{
    border: none !important;
    padding: 15px 12px;
}
.filterField .text-input + i{
    position: absolute;
    pointer-events: none;
    right: 8px;
    top: 14px;
    color: #C0C0C0;
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}
.filterField .text-input:hover + i{
    color: #005889;
}
.filterField {
    float: left;
    width: calc(33.33% + 8px);
}
.historico .filterField{
    width: 100%;
    float: none;
}
.filterField > p:first-of-type{
    color: #005889;
    margin-bottom: 6px;
}
.filterField ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.filterField ul li {
    width: calc(50% - 24px);
    float: left;
    margin-right: 24px;
    background-color: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #c0c0c0;
    -ms-transition: background-color 0.15s linear 0s, border-color 0.15s linear 0s;
    transition: background-color 0.15s linear 0s, border-color 0.15s linear 0s;
    cursor: pointer;
    position: relative;
}
.filterField ul li:last-of-type{
    margin-right: 0;
}
.historico .filterField ul li{
    width: calc(20% - 20px);
}
.filterField ul li:hover {
    background-color: #005889;
    border-color: #005889;
}
.filterField ul li p{
    padding: 14px 12px;
    font-weight: 400;
    color: #C0C0C0;
    -ms-transition: background-color 0.15s linear 0s;
    transition: background-color 0.15s linear 0s;
}
.filterField ul li:hover p{
    color: #FFFFFF;
}
.filterField ul li span, p.radioBtn{
    display: block;
    position: relative;
    width: 18px;
    height: 18px;
    float: right;
    border: 1px solid #C0C0C0;
    background-color: transparent;
    border-radius: 2px;
    margin-left: 12px;
    -ms-transition: border-color 0.15s linear 0s, background-color 0.15s linear 0s;
    transition: border-color 0.15s linear 0s, background-color 0.15s linear 0s;
}
.tabelas .filterField, .tabelas .searchField{
    margin-bottom: 24px;
}
.searchParent .btns{
    margin-top: 24px;
    width: calc(50% - 12px);
}
.searchParent .cancelar-btn, .searchParent .submit-btn{
    padding: 14px 12px;
}
p.radioBtn{
    float: left;
    cursor: pointer;
}
.dd-header p.radioBtn{
    border: 1px solid #005889;
}
.filterField ul li:hover span, .dd-header p.radioBtn:hover{
    border-color: #FFFFFF;
}
p.radioBtn:hover{
    border-color: #005889;
}
.filterField ul li span:before, .filterField ul li span:after, p.radioBtn:before, p.radioBtn:after{
    display: block;
    position: absolute;
    content: '';
    background-color: transparent;
    -ms-transition: background-color 0.15s linear 0s;
    transition: background-color 0.15s linear 0s;
    width: 2px;
}
.filterField ul li span:before, p.radioBtn:before {
    top: 2px;
    left: 9px;
    height: 12px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.filterField ul li span:after, p.radioBtn:after {
    top: 7px;
    left: 3px;
    height: 6px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.filterField ul li.selected span{
    background-color: #005889;
    border-color: #005889;
}
p.radioBtn.selected {
    background-color: #C0C0C0;
    border-color: #C0C0C0;
}
.dd-header p.radioBtn.selected {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}
.filterField ul li.selected:hover span{
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}
.searchParent #filterField_datas{
    width: calc(66.66% + 16px);
}
.searchParent #filterField_pagamento, .searchParent #filterField_agrupar{
    width: calc(33.33% - 16px);
}
.searchParent #filterField_agrupar{
    margin-top: 0;
    margin-right: 24px;
}
.searchParent .select{
    width: 100%;
    position: relative;
}
.searchParent .select p{
    padding: 14px 12px;
}
.searchParent .select .selected, .searchParent .select .option{
    width: 100%;
    margin-right: 24px;
    background-color: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #c0c0c0;
    -ms-transition: background-color 0.15s linear 0s, border-color 0.15s linear 0s;
    transition: background-color 0.15s linear 0s, border-color 0.15s linear 0s;
    cursor: pointer;
}
.searchParent .select .option{
    border-top: 0;
}
.searchParent .select .option:hover{
    background-color: #005889;
    border-color: #005889;
    color: #FFFFFF;
}
.searchParent .select .options{
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    -ms-transition: max-height 0.25s linear 0s;
    transition: max-height 0.25s linear 0s;
}
.searchParent .select.open .options{
    max-height: 192px;
}
.searchParent .select:hover .selected{
    border-color: #005889;
}
.searchParent .select i{
    position: absolute;
    pointer-events: none;
    right: 8px;
    top: 14px;
    color: #C0C0C0;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -ms-transition: color 0.15s linear 0s, transform 0.15s linear 0s;
    transition: color 0.15s linear 0s, transform 0.15s linear 0s;
}
.searchParent .select:hover i{
    color: #005889;
}
.searchParent .select.open i{
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
p.radioBtn.selected:hover, .dd-header p.radioBtn.selected:hover {
    background-color: #005889;
    border-color: #005889;
}
.filterField ul li.selected span:before, .filterField ul li.selected span:after, p.radioBtn.selected:before, p.radioBtn.selected:after, p.radioBtn.selected:hover:before, p.radioBtn.selected:hover:after {
    background-color: #FFFFFF;
}
.filterField ul li.selected:hover span:before, .filterField ul li.selected:hover span:after{
    background-color: #005889;
}
.dd-header p.radioBtn.selected:before, .dd-header p.radioBtn.selected:after, .dd-header p.radioBtn.selected:hover:before, .dd-header p.radioBtn.selected:hover:after{
    background-color: #C0C0C0;
}

.pagination{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 24px;
}
#prevPage, #nextPage{
    color: #005889;
}
#prevPage.disabled, #nextPage.disabled{
    color: #c6dae5;
}
.pageNumber{
    color: #005889;
    margin: 0 4px;
    width: 10px;
    text-align: center;
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}
.pageNumber:hover{
    color: #101010;
}
.pageNumber.currentPage{
    border-bottom: 1px solid;
}

.pages-cnt.tabelas{
    padding-right: 330px;
}
.resumo-mobile{ display: none; }
.resumo-desktop{
    position: absolute;
    min-height: calc(100vh - 96px);
    top: 0;
    right: 0;
    width: 306px;
    z-index: 80;
    background-color: #005889;
    padding: 48px;
}
.resumo-desktop .link-adicionar, .resumo-mobile .link-adicionar{
    width: 100%;
    margin: 0 0 24px 0;
    padding: 36px 24px;
}
.resumo-desktop .link-adicionar:hover, .resumo-mobile .link-adicionar:hover{
    background-color: #c6dae5;
}
.resumo-desktop .link-adicionar p, .resumo-mobile .link-adicionar p, .pages-cnt.left .link-adicionar p, .pages-cnt.right .link-adicionar p, .pages-cnt.middle .link-adicionar p{
    text-transform: uppercase;
    color: #005889;
    text-align: center;
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
    margin-top: 12px;
}
.resumo-desktop .link-adicionar:hover p, .resumo-mobile .link-adicionar:hover p, .pages-cnt.left .link-adicionar:hover p, .pages-cnt.right .link-adicionar:hover p, .pages-cnt.middle .link-adicionar:hover p{
    color: #FFFFFF;
}
.resumo-desktop .link-adicionar svg, .resumo-mobile .link-adicionar svg, .pages-cnt.left .link-adicionar svg, .pages-cnt.right .link-adicionar svg, .pages-cnt.middle .link-adicionar svg{
    height: 48px;
    width: 48px;
    margin: auto;
    fill: #005889;
    -ms-transition: fill 0.15s linear 0s;
    transition: fill 0.15s linear 0s;
}
.resumo-desktop .link-adicionar:hover svg, .resumo-mobile .link-adicionar:hover svg, .pages-cnt.left .link-adicionar:hover svg, .pages-cnt.right .link-adicionar:hover svg, .pages-cnt.middle .link-adicionar:hover svg{
    fill: #FFFFFF;
}
.resumo-desktop .info{
    margin-top: 48px;
}
.resumo-desktop .info p, .resumo-mobile .info p{
    color: #c6dae5;
    text-transform: uppercase;
}
.resumo-desktop .info p.number, .resumo-mobile .info p.number{
    color: #FFFFFF;
    font-weight: 200;
    font-size: 28px;
    line-height: 32px;
}
.resumo-desktop .info p:nth-of-type(1), .resumo-mobile .info > p:nth-of-type(1){
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
}
.resumo-desktop .info p:nth-of-type(2), .resumo-mobile .info > p:nth-of-type(1) span{
    font-weight: 200;
    font-size: 24px;
    line-height: 28px;
}
.resumo-desktop .submit-btn{
    width: 100%;
    margin-top: 48px;
    background-color: #f5f6f7;
    border-color: #f5f6f7;
}
.resumo-mobile .submit-btn{
    background-color: #f5f6f7;
    border-color: #f5f6f7;
}
.resumo-desktop .submit-btn:hover, .resumo-mobile .submit-btn:hover{
    background-color: #101010;
    border-color: #101010;
}

.pdf-btn{
    max-width: 276px;
    margin: 24px auto 0 auto;
    float: none;
}
.pages-cnt.left .link-adicionar, .pages-cnt.middle .link-adicionar, .pages-cnt.right .link-adicionar{
    width: 100%;
    padding: 36px 12px;
    height: 144px;
    margin-bottom: 24px;
}
.home.nonAdmin .pages-cnt.left .link-adicionar, .home.nonAdmin .pages-cnt.middle .link-adicionar{
    width: calc(50% - 12px);
    float: left;
}
.home.nonAdmin .pages-cnt.left .link-adicionar:first-of-type, .home.nonAdmin .pages-cnt.middle .link-adicionar:first-of-type{
    margin-right: 24px;
}
.icon_bigHeart{
    width: 144px;
    height: 144px;
    float: left;
    margin: 96px 0 96px -48px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.home:not(.nonAdmin) .icon_bigHeart{
    margin: 96px auto 96px auto;
    float: none;
    -ms-transform: none;
    transform: none;
}


.popup{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    -ms-transition: opacity 0.25s linear 0.5s;
    transition: opacity 0.25s linear 0.5s;
    overflow: auto;
}
.popup.open{
    opacity: 1;
    pointer-events: auto;
    -ms-transition: opacity 0.25s linear 0s;
    transition: opacity 0.25s linear 0s;
}
.popup .background{
    background-color: #101010;
    position: fixed;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}
.popup .content{
    z-index: 1;
    width: calc((6 * ((100% - 360px) / 12)) + 168px);
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translate(0,-72px);
    transform: translate(0,-72px);
    opacity: 0;
    -ms-transition: opacity 0.25s linear 0s, transform 0.25s linear 0s;
    transition: opacity 0.25s linear 0s, transform 0.25s linear 0s;
    margin: 96px calc((3 * ((100% - 360px) / 12)) + 96px);
}
.popup.open .content{
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
}
.popup .content .top{
    padding: 16px;
}
.popup .content .top svg{
    height: 64px;
    width: 64px;
    float: left;
    margin-right: 24px;
}
.popup .content h2{
    font-weight: 200;
    font-size: 28px;
    line-height: 64px;
    float: left;
    margin: 0;
    color: #FFFFFF;
}
.popup .content h2 span{
    font-weight: 300;
}
#popup_addProveito .content .top, #popup_addProveitoHora .content .top, #popup_addLucro .content .top{
    background-color: #006b4e;
}
#popup_addGasto .content .top, #popup_addGastoHora .content .top{
    background-color: #8b020f;
}
.popup .content .bottom{
    padding: 48px;
    background-color: #FFFFFF;
}
.popup .btns{
    margin: 48px auto 0 auto;
    width: 100%;
    max-width: 600px;
}
.popup h3{
    color: #005889;
    text-align: center;
    margin: 0;
    font-weight: 400;
    line-height: 26px;
}
.popup h3 a{
    color: #C0C0C0;
}


@media(min-width:1599px){
    .sidebar, .sidebar.open{
        width: 288px;
    }
    .wrapper{
        margin: 0 0 0 216px;
        max-width: calc(100% - 216px);
    }
    .alert, .alert-error, .alert-error2, .alert-confirm{ padding: 0 0 0 306px; }
}

@media(max-width:1439px){
    .resumo-desktop{
        padding: 48px 24px;
        width: 248px;
    }
    .pages-cnt.tabelas {
        padding-right: 272px;
    }
    .popup .content{
        width: calc((8 * ((100% - 360px) / 12)) + 216px);
        margin: 96px calc((2 * ((100% - 360px) / 12)) + 72px);
    }
}

@media(max-width:1279px){
    .header{
        height: 72px;
    }
    .header h1 {
        font-size: 36px;
        line-height: 36px;
        margin: 18px;
    }
    .header .utilizador{
        margin: 12px 36px 0 0;
    }
    .header-menu{
        top: 72px;
        right: 84px;
    }
    .header-menu-cnt{
        padding: 10px 18px;
    }
    .sidebar, .alert-confirm.open, .alert.open, .alert-error.open, .alert-error2.open{top: 72px;}
    
    h2{
        margin-bottom: 24px;
    }
    .add-page h2{
        margin-bottom: 18px;
        margin-top: 48px;
    }
    h3{
        margin: 24px 0 12px 0;
    }
    .add-page h3{
        margin: 36px 0 0 0;
    }
    .add-page .input-cnt p{margin-bottom: 8px;}
    .material-icons{margin: 0 18px 0 0;}
    .alert-confirm p{
        margin: 0 18px;
        padding: 27px 0 0 54px;
    }
    .alert-confirm p .material-icons{margin: -9px 18px 0 -54px;}
    .alert-confirm .options{margin: 18px 18px 18px 84px;}
    .alert-confirm a.cancelar{margin-left: 18px;}
    .pages-cnt{
        padding: 36px 36px 0 108px;
        margin-top: 72px;
    }
    .add-page .input-cnt{
        margin-top: 18px;
        width: calc(50% - 9px);
    }
    .add-page .input-cnt:last-of-type{
        margin-top: 48px;
    }
    .add-page .input-cnt.half {
        width: calc(25% - 14px);
    }
    .add-page .input-cnt.big{
        width: 100%;
    }
    .add-page .input-cnt.btns{
        margin-top: 54px;
    }
    .add-page .input-cnt.right-side, .add-page .input-cnt.half.right-side, .add-page .input-cnt.third{
        margin-left: 18px;
    }
    .add-page .input-cnt.btns, .input-cnt .input-cnt-area.area-half, .cancelar-btn, .submit-btn, .input-cnt .link-btn{
        width: calc(50% - 9px);
    }
    .input-cnt.big .link-btn{
        width: calc(25% - 14px);
    }
    .input-cnt .input-cnt-area{ margin-top: 6px; }
    .cancelar-btn, .input-cnt .input-cnt-area.area-half.right-side, .input-cnt .link-btn{
        margin-left: 18px;
    }
    .input-cnt .input-cnt-area.area-half.right-side, .input-cnt-area.short.right-side{ margin-top: 6px; }
    .carregar-foto-btn{
        margin: 46px 0 0 18px !important;
        width: 180px;
    }
    .pages-list {
        padding: 0 0 72px 180px;
    }
    .pages-list .user{
        width: calc(50% - 9px);
        margin-right: 18px;
        margin-bottom: 18px;
    }
    .pages-list .user .cnt .avatar{
        margin: 24px 18px 0 18px;
    }
    .input-cnt label{
        margin: 9px 18px 0 0;
    }
    .content-left{
        width: calc(50% - 18px);
    }
    .content-right{
        width: calc(50% - 18px);
        margin-left: 36px;
    }
    .pages-cnt .add-page{margin-bottom: 54px;}
    .content-left p{
        padding-left: 36px;
    }
    .content-left .material-icons{
        margin-left: -36px;
    }
    .pages-cnt .listagem .listagem-cnt{margin-top: 36px;}
    .alert p, .alert-error p, .alert-error2 p, .login-alert p{
        margin: 18px 0;
    }
    .alert p .material-icons, .alert-error p .material-icons, .alert-error2 p .material-icons{margin: 18px;}
    .login-alert .material-icons{margin: 18px 18px 18px 0;}
    
    .historico .searchField{
        margin-bottom: 24px;
        float: none;
        width: 100%;
    }
    .filterField ul li{
        width: calc(50% - 12px);
    }
    .tabelas .filterField{
        width: calc(33.33% - 16px);
        margin-right: 24px;
    }
    .searchParent #filterField_datas{
        width: calc(66.66% - 8px);
        margin-right: 24px;
    }
    .searchParent #filterField_pagamento{
        margin-right: 0;
    }
    .resumo-desktop, .pages-cnt.tabelas .listagem > h2:first-child{ display: none; }
    .pages-cnt.tabelas{
        padding-right: 36px;
    }
    .resumo-mobile{
        display: flex; 
        align-items: flex-start;
        flex-wrap: wrap;
        background-color: #005889;
        width: calc(100% + 72px);
        margin: -36px 0 36px -36px;
        padding: 36px;
    }
    .resumo-mobile .link-adicionar{
        width: 184px;
        height: 120px;
        float: left;
        margin: 0 24px 0 0;
        padding: 24px 12px;
    }
    .resumo-mobile .link-adicionar:nth-of-type(1){ order: 2; }
    .resumo-mobile .link-adicionar:nth-of-type(2){ order: 3; }
    .resumo-mobile .submit-btn{
        width: 144px;
        height: 144px;
        float: left;
        padding: 64px 12px;
        order: 6;
    }
    .resumo-mobile .info{
        float: left;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        order: 4;
        margin-top: 24px;
    }
    .tabelaLucros .resumo-mobile .info{
        width: calc(100% - 208px);
        margin-top: 0;
        justify-content: flex-start;
    }
    .resumo-mobile .info:nth-of-type(2) {
        order: 5;
    }
    .resumo-mobile .info > p:nth-of-type(1){
        width: 100%;
    }
    .resumo-mobile .info > div {
        margin-top: 8px;
        margin-right: 24px;
        width: calc(25% - 18px);
        max-width: 192px;
    }
    .tabelaLucros .resumo-mobile .info > div{
        width: calc(33.33% - 16px);
        max-width: 208px;
    }
    .resumo-mobile .info > div:last-of-type{
        margin-right: 0;
    }
    .resumo-mobile h2{
        color: #FFFFFF;
        width: 100%;
        order: 1;
    }
    
    .pages-cnt.right, .pages-cnt.middle{
        padding: 36px 36px 0 36px;
        min-height: calc(100vh - 72px);
    }
    .icon_bigHeart{
        margin: 96px 0 96px -36px;
    }
    .home.nonAdmin .pages-cnt.left .link-adicionar, .home.nonAdmin .pages-cnt.middle .link-adicionar{
        width: 100%;
    }
    .home.nonAdmin .pages-cnt.left .link-adicionar:first-of-type, .home.nonAdmin .pages-cnt.middle .link-adicionar:first-of-type{
        margin-right: 0;
    }
}

@media(max-width:1023px){
    .pages-list .user{
        width: 100%;
        margin-right: 0;
    }
    .popup .content{
        width: calc((10 * ((100% - 468px) / 12)) + 396px);
        margin: 72px calc((1 * ((100% - 468px) / 12)) + 36px);
    }
    .tabelas .filterField{
        margin-right: 0;
        width: calc(66.66% - 8px);
    }
}

@media(max-width:959px){
    .header .utilizador .welcome{
        display: none;
    }
    .header-menu{ right: 18px;}
    .header-menu-cnt p{ 
        display: block;
        text-align: right;
        padding: 8px 0;
    }
    .header-menu-cnt p span{ color: #FFFFFF;}
    .carregar-foto-btn{
        padding: 12px;
        margin: 36px 0 0 18px !important;
    }
    .image-explorer-container{
        width: 108px !important;
    }
    .image-explorer-container .image-explorer-image-view{
        width: 108px !important;
        height: 108px !important;
    }
    .image-explorer-container.empty .image-explorer-image-view[data-upload-prompt]:after{
        padding: 70px 36px 36px 36px !important;
    }
    
    .add-page .input-cnt, .add-page .input-cnt.btns{
        width: 100%;
    }
    .add-page .input-cnt.half, .input-cnt.big .link-btn{
        width: calc(50% - 9px);
    }
    .add-page .input-cnt.right-side, .add-page .input-cnt.third, .input-cnt .link-btn:nth-of-type(2n+1){margin-left: 0;}
    .content-left{
        float: none;
        width: 100%;
    }
    .content-right{
        float: none;
        width: 100%;
        margin-left: 0;
        margin-top: 72px;
    }
    
    .alert p, .alert-error p, .alert-error2 p, .alert-confirm p, .login-alert p{
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
    }
    .alert .material-icons, .alert-error .material-icons, .alert-error2 .material-icons{font-size: 36px;}
    .alert-confirm p .material-icons{
        font-size: 36px;
        margin: -6px 18px 0 -54px;
    }
    .alert-confirm .options{
        margin: 18px 18px 18px 72px;
    }
    .alert-confirm a{
        padding: 12px 0;
    }
    .cancelar-btn, .submit-btn, .text-input, .trumbowyg-editor, .trumbowyg-textarea, .input-cnt .link-btn{
        padding: 12px 8px;
    }
    .link-adicionar{
        width: 108px;
        height: 108px;
        padding: 30px;
    }
    .pages-cnt .links-options{width: 108px;}
    .pages-list {
        padding: 0 0 72px 144px;
    }
    .pages-list .user .cnt .avatar{
        width: 72px;
        height: 72px;
        margin: 18px;
    }
    .pages-list .user .cnt{
        height: 108px;
    }
    .pages-list .user .cnt .info h3{
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 26px;
    }
    .pages-list .user .cnt .options a, .pages-list .new .cnt .options a{
        width: 36px;
        height: 37px;
        padding: 8px;
    }
    .pages-list .user .cnt .info {
        width: calc(100% - 74px);
        margin: 18px 12px 0 24px;
    }
    .login-alert .material-icons{
        font-size: 36px;
    }
    .dd-list .links a, .dd-handle{
        padding: 15px 9px;
    }
    .dd-handle + .dd3-content .links{
        margin-right: 37px;
    }
    .input-cnt .input-cnt-area:before, ul.tagit:before{
        padding: 9px 8px;
    }
    .dd-list .dd-list { padding-left: 54px; }
    .dd-item > button{ width: 37px; }
    .imagePreview{
        right: 192px;
    }
    .historico .dd-list .dd3-content p:nth-of-type(3){
        width: calc(100% - 286px);
    }
    .tabelas .dd-list .dd3-content p:nth-of-type(5){
        width: calc(100% - 368px);
    }
    .historico .dd-list .dd3-content p:nth-of-type(4), .tabelas:not(.tabelaHoraLouca) .dd-list .dd3-content p:nth-of-type(3), .tabelas:not(.tabelaHoraLouca):not(.tabelaLucros) .dd-list .dd3-content p:nth-of-type(4){ display: none; }
    .tabelas.tabelaHoraLouca .dd-list .dd3-content p:nth-of-type(3), .tabelas.tabelaLucros .dd-list .dd3-content p:nth-of-type(4){
        width: calc(100% - 364px);
    }
    .historico .filterField ul li{
        width: calc(33.33% - 12px);
    }
    .historico .searchParent.open .searchExpand{
        max-height: 256px;
    }
    .filterField ul li{
        margin-right: 18px;
        width: calc(50% - 9px);
    }
    .historico .filterField ul li:nth-of-type(1), .historico .filterField ul li:nth-of-type(2){
        margin-bottom: 18px;
    }
    .historico .searchField{
        margin-bottom: 18px;
    }
    .searchField a{
        padding: 14px 9px;
    }
    .searchField .text-input{
        width: calc(100% - 37px);
    }
    
    .dd-details .middle{
        display: block;
    }
    .dd-details .middle .left, .dd-details .middle .right{
        width: 100%;
    }
    .dd-details .middle .rightp:first-of-type{
        display: none;
    }
    .dd-details .middle .right{
        border-left: none;
        border-top: 1px solid #F5F6F7;
    }
    .searchParent .btns{
        width: 100%;
    }
    .tabelas .filterField{
        width: calc(66.66% - 9px);
    }
    .tabelas .filterField, .tabelas .searchField{
        margin-bottom: 18px;
    }
    .searchParent #filterField_datas{
        margin-right: 18px;
        width: calc(66.66% - 9px);
    }
    .searchParent #filterField_pagamento{
        width: calc(33.33% - 9px);
        margin-right: 0;
    }
    .searchParent #filterField_agrupar{
        width: calc(33.33% - 12px);
        margin-right: 18px;
    }
    .resumo-mobile .info{
        width: 100%;
        order: 4;
        margin-top: 24px;
        justify-content: space-between;
    }
    .resumo-mobile .link-adicionar:nth-of-type(2){
        order: 3;
        margin-top: 0;
    }
    .resumo-mobile .submit-btn{
        order: 4;
        width: calc(50% - 12px);
        height: 48px;
        padding: 16px 12px;
        margin-top: 24px;
    }
    .resumo-mobile .info > div{
        min-width: 178px;
        margin-right: 0;
    }
    .popup .content{
        margin: 48px calc((1 * ((100% - 468px) / 12)) + 36px);
    }
    .popup .content .top svg{
        height: 48px;
        width: 48px;
    }
    .popup .content h2{
        line-height: 48px;
    }
    .popup .content .bottom{
        padding: 36px;
    }
    .popup .input-cnt{
        width: 100%;
        margin: 18px 0 0 0;
    }
    .popup .input-cnt.half{
        width: calc(50% - 12px);
    }
    .popup .input-cnt.third, .popup .input-cnt.right-side{
        margin-left: 0;
    }
    .popup .input-cnt.short.third, .popup .input-cnt.bigger.right-side{
        margin-left: 24px;
    }
    .input-cnt .input-cnt-area.area-half{
        width: 100%;
    }
    .input-cnt .input-cnt-area.area-half.right-side{
        margin-left: 0;
        margin-top: 6px;
    }
    .pages-cnt.left{
        width: 100%;
        float: none;
        min-height: initial;
    }
    .pages-cnt.right, .pages-cnt.middle{
        padding: 48px 36px 72px 108px;
        position: relative;
        margin-top: 96px;
        width: 100%;
        min-height: initial;
        float: none;
    }
    .pages-cnt.right{
        margin-top: 0;
    }
    .home.nonAdmin .pages-cnt.middle, .home.nonAdmin .pages-cnt.left{
        width: 100%;
    }
    .pages-cnt.left .link-adicionar, .pages-cnt.middle .link-adicionar, .pages-cnt.right .link-adicionar{
        width: calc(50% - 12px);
        float: left;
        margin-bottom: 0;
    }
    .pages-cnt.left .link-adicionar:first-of-type, .pages-cnt.middle .link-adicionar:first-of-type{
        margin-right: 24px;
    }
    .icon_bigHeart{
        display: none;
    }
    .popup form + p{
        margin-top: 24px;
    }
}

@media(max-width:759px){
    .searchParent #filterField_datas{
        width: 100%;
        margin-right: 0;
    }
    .tabelas .filterField{
        margin-top: 0;
        margin-right: 0;
        width: 100%;
    }
    .tabelas .searchParent.open .searchExpand {
        max-height: 384px;
    }
    .searchParent #filterField_pagamento, .searchParent #filterField_agrupar{
        width: calc(50% - 9px);
    }
    .searchParent #filterField_agrupar{
        margin-right: 0;
        margin-left: 18px;
    }
    .searchParent #filter_tipos > p{
        display: none;
    }
    .popup .content{
        margin: 0;
        width: 100%;
    }
}

@media(max-width:599px){
    .pages-list .user .cnt .info h3{
        font-size: 20px;
        line-height: 24px;
    }
    h2{
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 16px;
        width: calc(100% - 48px);
    }
    h3{
        font-size: 16px;
        line-height: 16px;
        margin: 18px 0 12px 0;
    }
    p, .text-input, .trumbowyg-textarea, .cancelar-btn, .submit-btn, .carregar-foto-btn, ul.tagit li.tagit-new, .input-cnt .link-btn, .trumbowyg-editor li, .widget .bottom, .header-menu-cnt a{
        font-size: 12px;
        line-height: 16px;
    }
    .trumbowyg-editor p, .trumbowyg-editor li{ line-height: 17px; }
    .add-page .input-cnt .trumbowyg-editor h3{
        font-size: 14px;
        margin: 24px auto 12px auto;
    }
    .header {
        height: 60px;
    }
    .header h1{
        margin: 12px 0 12px 18px;
        font-size: 28px;
    }
    .header-menu{
        top: 60px;
        right: 12px;
    }
    .header .utilizador .avatar{
        height: 36px;
        width: 36px;
        margin-top: 4px;
    }
    .header .utilizador{
        margin: 8px 24px 0 0;
    }
    .header-menu-cnt{
        padding: 4px 12px;
    }
    .wrapper.sidebar-open { margin: 0 0 0 168px; }
    .alert.open, .alert-error.open, .alert-error2.open{top:60px;}
    .alert-confirm.open {
        top: 60px;
        padding: 0;
    }
    .alert-confirm .options{
        margin: 12px;
    }
    .alert-confirm a.cancelar {
        margin-left: 12px;
    }
    .alert-confirm a {
        padding: 8px 0;
        width: calc(50% - 6px);
    }
    .alert-confirm p{
        margin: 0 12px;
        padding: 18px 0 0 48px;
    }
    .alert-confirm p .material-icons { margin: -6px 12px 0 -48px; }
    .pages-cnt{
        margin-top: 100px;
        padding: 24px 24px 0 24px;
    }
    .add-page h2 {
        margin: 36px 0 12px 0;
    }
    .add-page h3{
        margin: 24px 0 0 0;
    }
    .add-page .input-cnt{margin-top: 12px;}
    .add-page .input-cnt p{margin-bottom: 6px;}
    .add-page .input-cnt.btns {
        margin-top: 36px;
    }
    .pages-cnt .add-page {
        margin-bottom: 36px;
    }
    .content-right{
        margin-top: 48px;
    }
    .add-page .input-cnt.btns, .input-cnt .input-cnt-area.area-half, .cancelar-btn, .submit-btn, .input-cnt.big .link-btn, .input-cnt .link-btn{
        width: 100%;
    }
    .add-page .input-cnt:last-of-type{
        margin-top: 36px;
    }
    .content-left p{
        padding-left: 30px;
    }
    .content-left .material-icons{
        margin-left: -30px;
    }
    .material-icons {
        margin: 0 12px 0 0;
    }
    .cancelar-btn, .submit-btn, .text-input, .trumbowyg-editor, .trumbowyg-textarea, .input-cnt .link-btn{padding: 8px;}
    .add-page .input-cnt .trumbowyg-editor ol, .add-page .input-cnt .trumbowyg-editor ul{ padding-left: 32px; }
    ul.tagit li.tagit-new { padding: 4px 0 !important; }
    ul.tagit{ min-height: 34px; }
    ul.tagit li.tagit-choice{
        padding: 6px 18px 6px 6px !important;
        margin: 0px !important;
        line-height: 17px;
    }
    .input-cnt .link-btn{
        margin-left: 0;
    }
    
    .sidebar{display: none;}
    .wrapper.sidebar-open { margin: 0; }
    
    .slidebar_mobile {
        display: block;
        position: fixed;
        width: 100%;
        height: 40px;
        top: 60px;
        background-color: #212529;
        z-index: 70;
        padding: 0 12px;
    }
    .slidebar_mobile .swiper-slide{
        width: auto;
         height: auto;
    }
    .slidebar_mobile a{ 
        vertical-align: middle;
        text-decoration: none;
        text-transform: uppercase;
        background-color: #212529;
        font-weight: 500;
        -ms-transition: background-color 0.15s linear 0s;
        transition: background-color 0.15s linear 0s;
    }
    .slidebar_mobile a p{ 
        padding: 12px;
        color: #F5F6F7; 
        -ms-transition: color 0.15s linear 0s;
        transition: color 0.15s linear 0s;
    }
    .slidebar_mobile a.current p, .slidebar_mobile a:hover p { color: #005889; }
    .slidebar_mobile a:hover { background-color: #101010; }
    .pages-list {
        padding: 0 0 48px 0;
    }
    .pages-list .user{margin-bottom: 12px;}
    .pages-list .user .cnt .avatar{
        margin: 18px 12px;
    }
    .pages-cnt .links-options{
        position: fixed;
        bottom: 24px;
        right: 24px;
        float: none;
        width: 72px;
    }
    .link-adicionar{
        width: 72px;
        height: 72px;
        padding: 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.06), 0 6px 6px rgba(0,0,0,0.08);
    }
    .link-adicionar .material-icons{
        font-size: 36px;
    }
    .idiomas-add-page li a{
        height: 36px;
        font-size: 12px;
        padding: 11px 0;
    }
    .pages-cnt .listagem .listagem-cnt{margin-top: 24px;}
    .carregar-foto-btn{
        padding: 8px;
        margin: 36px 0 0 12px !important;
        width: 144px;
    }
    .input-cnt .input-cnt-area{ margin-top: 4px; }
    .cancelar-btn, .input-cnt .input-cnt-area.area-half.right-side{margin-left: 0;margin-top: 12px;}
    .input-cnt label {
        margin: 6px 12px 0 0;
    }
    .input-cnt label:first-of-type{margin-top: 0;}
    .input-cnt input[type="checkbox"] + label, .input-cnt input[type="radio"] + label{clear: both;}
    .input-cnt label p{
        margin: 1px 0 0 6px !important;
    }
    .alert, .alert-error, .alert-error2{
        padding: 0;
        top: -30px;
    }
    .alert p, .alert-error p, .alert-error2 p, .login-alert p{
        margin: 12px 0;
    }
    .login-alert .material-icons{margin: 12px 12px 12px 0;}
    .alert p .material-icons, .alert-error p .material-icons, .alert-error2 p .material-icons{margin: 12px;}
    
    .pages-cnt .links-options ul.otherOptions:after{
        content: url(../images/layout/gicons_chevron_left.svg);
        position: absolute;
        right: -30px;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
        width: 24px;
        height: 24px;
        cursor: pointer;
        padding: 24px 0;
    }
    .pages-cnt .links-options ul.otherOptions{
        position: absolute;
        top: 0;
        margin: 0;
        right: calc(100% + 36px);
        width: auto;
        height: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
    .pages-cnt .links-options ul.otherOptions.moreThanOne{ 
        flex-direction: column; 
        justify-content: flex-end;
    }
    .pages-cnt .links-options ul li{
        width: 154px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.06), 0 6px 6px rgba(0,0,0,0.08);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        opacity: 0;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -ms-transition: transform 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
        transition: transform 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    }
    .pages-cnt .links-options ul:focus li, .pages-cnt .links-options ul:hover li, .pages-cnt .links-options ul:active li{
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
    }
    .dd-item, .dd-empty, .dd-placeholder{
        min-height: 36px;
    }
    .pages-cnt a.linkBack{
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
    .pages-cnt a.linkBack p + i {
        right: 9px;
        top: 9px;
    }
    .pages-cnt a.linkBack p{
        padding: 9px 0;
        width: 72px;
    }
    .pages-cnt a.linkBack:hover{
        width: 36px;
    }
    .input-cnt .input-cnt-area:before, ul.tagit:before{
        padding: 5px 8px;
    }
    .dd-list .dd-list { padding-left: 48px; }
    .dd-item > button{ margin: 0 12px 0 0; height: 36px; }
    .dd3-content{
        height: 36px;
    }
    .dd-list p{
        margin: 10px 0 10px 12px;
        width: calc(100% - 184px);
    }
    .dd-list .links a, .dd-handle{
        padding: 10px;
    }
    .historico .dd-list .dd3-content p:nth-of-type(1){
        width: 36px;
        margin: 10px;
    }
    .historico .dd-list .dd3-content p:nth-of-type(2){
        margin: 10px 12px;
        width: 68px;
    }
    .historico .dd-list .dd3-content p:nth-of-type(3){
        margin: 10px 12px;
        width: calc(100% - 210px);
    }
    .tabelas .dd-list .dd3-content p:nth-of-type(1){
        margin: 10px;
    }
    .tabelas .dd-list .dd3-content p:nth-of-type(2){
        margin: 10px 6px;
        width: 68px;
    }
    .tabelas:not(.tabelaHoraLouca) .dd-list .dd3-content p:nth-of-type(3), .tabelas:not(.tabelaHoraLouca):not(.tabelaLucros) .dd-list .dd3-content p:nth-of-type(4){ display: none; }
    .tabelas .dd-list .dd3-content p:nth-of-type(5){
        width: calc(100% - 310px);
        margin: 10px 12px;
    }
    .tabelas .dd-list .dd3-content p:nth-of-type(6), .tabelas.tabelaHoraLouca .dd-list .dd3-content p:nth-of-type(4), .tabelas.tabelaLucros .dd-list .dd3-content p:nth-of-type(5){
        width: 72px;
        margin: 10px 12px;
    }
    .tabelas.tabelaHoraLouca .dd-list .dd3-content p:nth-of-type(3), .tabelas.tabelaLucros .dd-list .dd3-content p:nth-of-type(4){
        width: calc(100% - 310px);
        margin: 10px 12px;
    }
    .material-icons.md-18{
        font-size: 16px;
    }
    .imagePreview{
        width: 96px;
    }
    .searchParent{
        margin-bottom: 24px;
    }
    .searchField{
        margin-bottom: 12px;
    }
    .searchField a{
        padding: 9px 10px;
    }
    .searchField .text-input{
        width: calc(100% - 37px);
        padding: 9px 12px;
    }
    .filterField {
        margin-bottom: 12px;
    }
    .filterField ul li p{
        padding: 9px 12px;
    }
    .filterField ul li{
        width: calc(50% - 6px);
        margin-right: 12px;
    }
    .filterField ul li span{
        height: 16px;
        width: 16px;
    }
    .filterField ul li span:before, p.radioBtn:before{
        top: 1px;
        left: 8px;
    }
    .filterField ul li span:after, p.radioBtn:after{
        top: 6px;
        left: 2px;
    }
    .searchParent.open .searchExpand{
        margin-top: 12px;
    }
    .searchParent .btns{
        margin-top: 12px;
    }
    .searchParent .cancelar-btn, .searchParent .submit-btn{
        width: calc(50% - 6px);
        padding: 9px 12px;
    }
    .searchParent .cancelar-btn{
        margin-left: 12px;
        margin-top: 0;
    }
    .historico .searchParent.open .searchExpand{
        max-height: 232px;
    }
    .historico .searchField{
        margin-bottom: 12px;
    }
    .historico .filterField{
        margin-bottom: 0;
    }
    .historico .filterField:nth-of-type(3){
        margin-top: 16px;
    }
    .tabelas .searchField, .tabelas .filterField{
        margin-bottom: 12px;
    }
    .filterField > p:first-of-type{
        margin-bottom: 4px;
    }
    .filterField .text-input, .searchParent .select p{
        padding: 9px 12px;
    }
    .searchParent .select i{
        top: 10px;
    }
    .searchParent #filterField_pagamento, .searchParent #filterField_agrupar{
        width: calc(50% - 6px);
    }
    .searchParent #filterField_agrupar{
        margin-left: 12px;
    }
    .historico .filterField ul li:nth-of-type(1), .historico .filterField ul li:nth-of-type(2), .historico .filterField ul li:nth-of-type(3), .historico .filterField ul li:nth-of-type(4){
        margin-bottom: 12px;
    }
    .historico .filterField ul li:nth-of-type(2), .historico .filterField ul li:nth-of-type(4){
        margin-right: 0;
    }
    .historico .filterField ul li{
        width: calc(50% - 6px);
    }
    p.radioBtn{
        width: 16px;
        height: 16px;
    }
    .resumo-mobile .link-adicionar:nth-of-type(2){
        margin-right: 0;
    }
    .resumo-mobile .link-adicionar{
        width: calc(50% - 6px);
        margin: 0 12px 0 0;
        box-shadow: none;
    }
    .pages-cnt.tabelas{
        padding-right: 24px;
    }
    .resumo-mobile{
        padding: 24px;
        width: calc(100% + 48px);
        margin: -24px 0 24px -24px;
    }
    .resumo-mobile .info{
        margin-top: 16px;
    }
    .resumo-desktop .info p:nth-of-type(1), .resumo-mobile .info > p:nth-of-type(1), .resumo-desktop .info p:nth-of-type(2), .resumo-mobile .info > p:nth-of-type(1) span{
        font-size: 20px;
        line-height: 24px;
    }
    .resumo-mobile .info > div{
        margin-top: 6px;
        width: calc(33.33% - 8px);
        min-width: 156px;
    }
    .resumo-mobile .info > div:nth-of-type(2){
        margin-right: 0;
    }
    .resumo-desktop .info p.number, .resumo-mobile .info p.number{
        font-size: 24px;
        line-height: 28px;
    }
    .resumo-mobile .info:nth-of-type(2){
        margin-top: 12px;
    }
    .resumo-mobile .info.info-pesquisa{
        margin-top: 0;
    }
    .resumo-mobile .submit-btn{
        width: calc(50% - 6px);
        height: 36px;
        padding: 10px 12px;
        margin-top: 16px;
    }
    .pages-cnt.right{
        margin-top: 0;
        padding: 48px 24px;
    }
    .pages-cnt.middle{
        margin-top: 72px;
        padding: 48px 24px 72px 24px;
    }
    .pages-cnt.left .link-adicionar, .pages-cnt.middle .link-adicionar, .pages-cnt.right .link-adicionar{
        width: calc(50% - 6px);
        padding: 24px 8px;
        height: 108px;
        box-shadow: none;
    }
    .resumo-desktop .link-adicionar svg, .resumo-mobile .link-adicionar svg, .pages-cnt.left .link-adicionar svg, .pages-cnt.middle .link-adicionar svg, .pages-cnt.right .link-adicionar svg{
        height: 36px;
        width: 36px;
    }
    .pages-cnt.left .link-adicionar:first-of-type, .pages-cnt.middle .link-adicionar:first-of-type{
        margin-right: 12px;
    }
    .resumo-mobile .link-adicionar{
        height: 96px;
        padding: 18px 8px;
    }
    .tabelaLucros .resumo-mobile .info{
        width: 100%;
        margin-top: 16px;
    }
    
    .popup .content .bottom {
        padding: 24px;
    }
    .popup .content .top svg{
        margin-right: 12px;
        height: 36px;
        width: 36px;
    }
    .popup .content h2{
        width: calc(100% - 48px);
        font-size: 22px;
        line-height: 36px;
    }
    .popup .content .top {
        padding: 12px;
    }
    .popup .btns{
        margin: 24px 0 0 0;
    }
    .popup .input-cnt.half, .popup .input-cnt.short, .input-cnt .input-cnt-area.short{
        width: calc(50% - 6px);
    }
    .input-cnt .input-cnt-area.bigger, .popup .input-cnt.bigger{
        width: 100%;
    }
    .popup .input-cnt.half.right-side, .add-page .input-cnt.half.right-side, .popup .input-cnt.right-side, .popup .input-cnt.half.right-side, .popup .input-cnt.short.right-side{
        margin-left: 12px;
    }
    .popup .input-cnt.bigger.right-side, .popup .input-cnt.third, .popup .input-cnt.short.third, .input-cnt-area.short.right-side, .add-page .input-cnt.third, .add-page .input-cnt.right-side{
        margin-left: 0;
    }
    .input-cnt .input-cnt-area.area-half.right-side, .input-cnt-area.short.right-side{
        margin-top: 16px;
    }
    .popup h3{
        line-height: 24px;
    }
    .popup form + p, .popup .input-cnt:nth-of-type(2){
        margin-top: 16px;
    }
    .nice .NFI-filename{
        line-height: 36px;
    }
    .nice .NFI-button{
        padding: 10px 8px;
        line-height: 16px;
        font-size: 12px;
    }
    .alert-confirm{
        top: -114px;
    }
}

