@CHARSET "UTF-8";

#startMenu ul{
	list-style: none;
	padding: 1%;
	margin: 0px;
}

#startMenu ul li{
	
	float: left;
	margin: 0%;
	width: 200px;
	text-align: center;
	margin-bottom: 2vh;
	padding: 2px;
}

#startMenu .rdAppIcon {
	display: inline-block;
	cursor: pointer;
	margin-bottom: 25px;
}

#startMenu ul li img{
	max-width: 100%;
	display: inline-block;
	cursor: pointer !important;
}

#realDoohAppFooter {
    width: 100%;
	min-width: 320px !important;
    height: 55px !important;
    background-color: #000;
    position: fixed;
    bottom: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.startBtn {

	float: left;
    height: 55px;
    width: 80px;
  	max-width: 5%;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.startBtn img{
	max-width: 100% !important;
	display: inline-block;
	
}


.imgLogo {
    height: 40px;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.imgLogo:hover {
    cursor: pointer;
}

.taskBar {
    height: 55px;
    width: 75%;
    padding: 0;
    margin: 0;
    float: left;
    padding: 0 10px;
}

.rd-menu{
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: block;
	height: 75px;
	position: fixed;
	right: 0px;
	width: 15%;
}

.rd-menu div{
	width: 50px !important;
	margin: 0 5px; 
	cursor: pointer !important;
	float: right;
	display: block;
	height: 55px;
}

.rd-menu div img{
	max-width: 80%;	
	display: block;
	margin: 0 auto;

    position: relative;
    top: 50%;
    transform: translateY(-50%);
	
}

div.clientLogo{
	
	border-radius: 50%;
	height: 45px !important;
	width: 45px !important;
	background-color: white;
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.taskBarDiv1 {
    float: left;
    color: white;
/*    height: 100%; */
    height: 55px;
    margin-right: 10px;
}
.taskBarDiv2 {
/*    height: 100%; */
    height: 55px;
    margin: auto;
}
.taskBarAppImg {
/*    height: 70%; */
    height: 38px;
    width: 38px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.taskBarAppImg:hover {
    cursor: pointer;
}

#dateTime {
    height: 55px;
    width: 5%;
    color: #efefef;
    font-size: 25px;
    text-align: center;
    line-height: 54px;
    float: left;
}

.clientArea {
    display: block;
    background-color: white;
    border-radius: 50%;
    height: 45px !important;
    width: 45px !important; 
    overflow: hidden;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.clientArea img{
	max-width: 100%;
	max-height: 100%;
}

.clientBtn {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%) scale(2);
}
.clientBtn:hover {
    cursor: pointer;
}

.userArea {
/*    height: 55px;
    width: 25px;*/
}


.userBtn {
    display: block;
    height: 45px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    float: right;
}
.userBtn:hover {
    cursor: pointer;
}

.notificationBtn {
    display: block;
    height: 45px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    float: right;
}

#rdMainSlideNotificationDiv {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20%;
    background-color: rgba(29,28,33, 0.9);
}
#rdLanguagesSlideDiv {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20%;
    background-color: rgba(29,28,33, 0.9);
}
#slideNotificationDiv {
   
    right: 0px;
    width: 20%;
    background-color: rgba(29,28,33, 0.9);
    z-index: 100;
}

#rdMainEntityTree {
    top: 0px;
    right: 0px;
    width: 20%;
    background-color: rgba(29,28,33, 0.9);
}
#rdAppEntityTree{
    right: 0px;
    width: 20%;
    background-color: rgba(29,28,33, 0.9);
    z-index: 100;
}

.animate-slide {
    position: fixed !important;
    top: 0px;
    left: 80%;
    width: 20%;
    height: 100%;
    z-index: 1200 !important;
    background-color: rgba(29,28,33, 0.9);
    -webkit-transform: translate3d(0,0,0); /* Chrome, Safari, Opera */
    transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    box-shadow: 1px 1px 54px black;
}
.animate-slide.ng-hide-add,
.animate-slide.ng-hide-remove {
    display: block !important;
}
.animate-slide.ng-enter {
    -webkit-animation: slide-left;
    animation: slide-left;
}
.animate-slide.ng-leave {
    -webkit-animation: slide-right;
    animation: slide-right;
}
.animate-slide.ng-hide {
    left: 110%;
    display: block!important;
}
.animate-slide.ng-hide-remove {
    -webkit-animation: 1s slide-left;
    animation: 1s slide-left;
}
.animate-slide.ng-hide-add {
    -webkit-animation: 1s slide-right;
    animation: 1s slide-right;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes slide-left {
    0%   {left: 100%;}
    100%  {left: 80%;}
}
/* Standard syntax */
@keyframes slide-left {
    0%   {left: 100%;}
    100%  {left: 80%;}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes slide-right {
    0%  {left: 80%;}
    100%   {left: 100%;}
}
/* Standard syntax */
@keyframes slide-right {
    0%  {left: 80%;}
    100%   {left: 100%;}
}

.slider{
	position: relative;
	padding-top: 3vh;
}

.slider h3{
	width: 80%;
	margin: 0 auto;
}

.notificationTitleDiv {
/*    height: 10%; */
    height: 5%;
    width: 80%;
    margin: auto;
    border-bottom: 2px solid #484848;
    display: flex;
}
.notificationTitle {
    color: #6a6a68;
    align-self: flex-end;
/*    font-size: 2em; */
    font-size: 28px;
    padding-left: 0px;
    padding-right: 0px;
}

.notificationInfoDiv {
    width: 85%;
/*    height: 12%;  */
    height: 100px;
    background-color: #484848;
    margin: auto;
    margin-top: 10px;
}
.notificationInfoLogo {
    width: 30%;
    height: 100%;
    float: left;
}

.notification-counter{
    position: absolute;
    color: black;
    font-weight: bold;
    top: 20px;
    left: 65px;
    background-color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
}

.notification-area{
	height: 85% !important;
	overflow-y: auto !important;
}

.notifications-menu{
	padding: 5px;
	height: 10%;
}

.notifications-menu-option{
	
	width: 75px;
	height: 70px;
	margin: 5px;
	background-color: rgba(0,0,0, 0.4);
	color: white;
	text-align: center;
	cursor: pointer;
}

.notifications-menu-option-bg{
	width: 100%;
	height: 100%;
	line-height: 200%;
	position: relative;
	text-align: center;
	font-size: 35px;
}

.notifications-menu > .active{
	background-color: #162955;
}


/* OUs Area */
.entityTreeDesc {

    width: 80%;
    margin: 10px auto;
}

.entityTree {
    width: 80%;
    height: 65%;
    /*height: 650px;*/
    margin: auto;
    overflow: auto;
    /*padding-left: 15px;*/
    color: #CAC4C4;
    font-size: 14px;
    font-weight: 400;
}

.slider-submit{
	position: relative;
	width: 100%;
	padding-left: 10%;
	padding-right: 10%;
}

.slider-submit .btn{
	width: 80% !important;
	margin: 0 auto;
	display: block;
	color: white;
	font-weight: bold;
	background-color: #162955;
}

input[type=checkbox] {
    margin-right: 4px;
    margin-left: 4px;
}


/* User Area */
#userInfoDiv {
    height: 215px;
    width: 435px;
    border-radius: 20px;
    background-color: rgba(211,211,211, 0.8);
    position: fixed;
    boTtom: 90px;
    right: 130px;
    color: #7e7e7e;
    z-index: 1200 !important;
}
.userInfoRow1 {
    height: 150px;
}
.userLogo {
    height: 130px;
    width: 130px;
    margin-top: 20px;
    margin-left: 30px;
    float: left;
}
.userImg {
    height: 125px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.userTitle {
    float: left;
    height: 130px;
    margin-top: 20px;
    margin-left: 20px;
}
.userTitleName {
    font-size: 35px;
    margin-top: 20px;
    color: #3c3c3c;
}
.userTitleSurname {
    font-size: 20px;
}
.userTitleLogin {
    font-size: 20px;
    font-style: italic;
}

.userInfoRow2 {
    height: 70px;
}
.userActions {
    text-align: center;
    font-size: 18px;
    display: block;
    line-height: 70px;
}
.userActions:hover {
    cursor: pointer;
}

.isActiveApp {
    height: 100%;
    width: 100%;
}
.isActiveApp:after {
    display: block;
    background: #009719;
    height: 2px;
    /*width: 100%;*/
    width: 38px;
    position: absolute;
    bottom: 3px;
    content: '';
}

/* Medium devices, Desktops (992px and up) */
@media screen and (max-width : 768px {

	.taskBar {
		background-color: red !important;
	}
	
	.userArea{
		background-color: red !important;}
}

.notificationBtn:hover {
    cursor: pointer;
}

.searchBox {
    width: 160px;
    float: left;
    margin-right: 20px;
    font-family:Arial, FontAwesome;
}

.searchBoxesDiv {
    height: 50px;
}

.ng-table-counts {
    z-index: 0;
}

/** WEATHER WIDGET **/

/** COLORS **/

.color-red{ color: red; }
.bg-color-red { background-color: red; }

.color-green{ color: green; }
.bg-color-green{ background-color: green; }

