/**
 * General css objects.
 *
 * @author		ivo.fortes@maria-design.pt
 * @date		2019-05-26
 * @version		1.0
 */
body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: #282627 !important;
    overflow-y: scroll;
}

* {
    box-sizing: border-box;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    letter-spacing: -2px;
}

#activeLine:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #de0a43;
    display: block;
    border-radius: 5px;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.clear {
    clear: both;
}

#menu {
    width: 100%;
    height: 56px;
    top: 0;
    left: 0;
    position: fixed;
    background-color: #282627;
    z-index: 1;
}

#menu>img:first-child {
    padding: 13px 10px 0 10px;
}

#menu>a:first-child {
    padding: 13px 10px 0 10px;
    display: inline-block;
}

#menu>ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
    top: -8px;
}

#menu>ul>li {
    color: #ed1c4d;
    display: inline-block;
    line-height: 56px;
    list-style: none;
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

#menu>ul>li:hover {
    color: #ffffff;
}

#menu>ul.right {
    position: relative;
    top: 0px;
    float: right;
}

#menu>ul.right>li {
    cursor: default;
}

#menu>ul.right>li:hover{
    color: #ed1c4d;
}

#menu>.icon-menu {
    display: inline-block;
    line-height: 56px;
    vertical-align: top;
    min-width: 30px;
    padding: 0 10px;
    float: right;
    cursor: pointer;
}

#menu>.icon-menu>img {
    vertical-align: middle;
}

.menuul li.active svg .cls-1, .menuul li.active svg .cls-2, .menuul li.active svg .cls-3, .icon-menu:hover svg .cls-1, .icon-menu:hover svg .cls-2, .icon-menu:hover svg .cls-3{
    stroke: #ed1c4d;
}

.menuul li:hover svg .cls-1, .menuul li:hover svg .cls-2, .menuul li:hover svg .cls-3{
    stroke: #ed1c4d;
}

.menuul li.active svg .cls-3, .menuul li:hover svg .cls-3{
    fill: #ed1c4d;
}

.menuul li:hover, .icon-menu:hover{
    cursor: pointer;
}

.tooltip, .tooltipMD {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext, .tooltipMD .tooltiptext{
    visibility: hidden;
    background-color: #282627;
    color: #ffffff;
    line-height: 12px;
    font-size: 12px;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 500;
}

.tooltip .tooltiptext::after, .tooltipMD .tooltiptext::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #282627 transparent transparent transparent;
}

.tooltip:hover .tooltiptext, .tooltipMD:hover .tooltiptext{
    visibility: visible;
    opacity: 1;
}


/*
 Popups
*/
#userProfileDropBox {
    display: none;
    position: fixed;
	width: 180px;
	min-height: 50px;
	top: 50px;
	right: 0px;
	border: 1px solid #282627;
	background-color: #ffffff;
	z-index: 5;
}

#userProfileDropBox>.item {
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: left;
	padding: 0 10px 0 10px;
	color: #282627;
	background-color: #ffffff;
	font-size: 12px;
	cursor: pointer;
}

#userProfileDropBox>.item:hover {
	background-color: #dddddd;
}


#userChangePasswordPopup .dlg {
	width: 600px;
	height: 380px;
}

#userChangePasswordPopup .dlg .content {
	height: 280px;
}