@CHARSET "UTF-8";

@font-face {
    font-family: AvenirLTStd-Book;
    src: url('../../fonts/Avenir/AvenirLTStd-Book.otf');
}

@font-face {
    font-family: AvenirLTStd-Light;
    src: url('../../fonts/Avenir/AvenirLTStd-Light.otf');
}

@font-face {
    font-family: Gnuolane;
    src: url('../../fonts/Gnuolane/gnuolane_rg-webfont.eot'),
        url('../../fonts/Gnuolane/gnuolane%20rg.ttf');
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Roboto';
}


/** REALDOOH NEWS **/

.news-wrapper{
	padding: 15px;
	height: 90%;
	overflow-y: auto !important;
}

.realdooh-news-title {
	color: #F1571C;
	text-shadow: 1px 1px 1px #a1a1a1;
	margin-bottom: 20px;
	padding-left: 25px;
	
	}

.realdooh-news-title img {
	max-height: 6rem;
}

.news-wrapper .realdooh-new {
	background-color: rgba(5, 32, 44, 0.8);
	padding: 5px;
	margin-bottom: 15px;
	border-top-left-radius: 10px;
}

.news-wrapper .realdooh-new h3{
	color: #fafafa;
	margin-left: 80px;
	margin-bottom: 25px;
	}

.new-author-portrait{
	width: 80px;
	height: 80px;
	border: 1px solid white;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	left: -10px;
	top: -10px;
	background-color: #fafafa;
}

.new-author-portrait img{
	max-width: 100%;
	display: block;
}

.realdooh-new-content {
	color: #fafafa;
	padding: 10px;
}

.realdooh-new-header {

}

/** END REALDOOH NEWS **/

/** REALDOOH DESKTOP **/

.background-desktop {
    background: url('../../images/bg1.jpg') no-repeat center center fixed #052D39;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.content-container {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    height: 100%;
    width: 100%;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

/*
    #realDoohFooter {
        width: 100%;
        height: 54px;
        background-color: #000;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 0;
        margin: 0;
    }

    .startBtn {
        height: 54px;
        width: 5%;
        padding: 0;
        padding-left: 23px;
        margin: 0;
    }

    .imgLogo {
        height: 40px;
        display: block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .imgLogo:hover {
        cursor: pointer;
    }

    .taskBar {
        height: 54px;
        width: 80%;
        padding: 0;
        margin: 0;
        float: left;
    }
    .taskBarDiv1 {
        float: left;
        color: white;
        height: 54px;
        margin-right: 10px;
    }
    .taskBarDiv2 {
        height: 54px;
        margin: auto;
    }
    .taskBarAppImg {
        height: 38px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .taskBarAppImg:hover {
        cursor: pointer;
    }

    .clientArea {
        display: block;
        background-color: white;
        border-radius: 50%;
        height: 45px;
        width: 45px;
        overflow: hidden;
        /*margin-left: 1%;*
        margin-right: 1%;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .clientBtn {
        display: block;
        position: relative;
        top: 50%;
        transform: translateY(-50%) scale(2);
    }
    .clientBtn:hover {
        cursor: pointer;
    }

    .userArea {
        height: 54px;
        width: 5%;
    }
    .userBtn {
        display: block;
        height: 45px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        float: right;
    }
    .userBtn:hover {
        cursor: pointer;
    }

    .notificationArea {
        height: 54px;
        width: 5%;
        padding: 0;
        padding-right: 23px;
        margin: 0;
    }
    .notificationBtn {
        display: block;
        height: 45px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        float: right;
    }
    .notificationBtn:hover {
        cursor: pointer;
    }

    #slideNotificationDiv {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 20%;
        height: 95%;
        background-color: rgba(29,28,33, 0.9);
    }

    .animate-slide {
        position: absolute;
        top: 0px;
        left: 80%;
        width: 20%;
        height: 95%;
        background-color: rgba(29,28,33, 0.9);
    }
    .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: 100%;
        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%;}
    }

    .notificationTitleDiv {
        height: 10%;
        width: 80%;
        margin: auto;
        border-bottom: 2px solid #484848;
        display: flex;
    }
    .notificationTitle {
        color: #6a6a68;
        align-self: flex-end;
        font-size: 2em;
        padding-right: 0px;
        padding-left: 0px;
    }

    .notificationInfoDiv {
        width: 85%;
        height: 12%;
        background-color: #484848;
        margin: auto;
        margin-top: 2em;
    }
    .notificationInfoLogo {
        width: 30%;
        height: 100%;
        float: left;
    }
    .notifImg {
        width: 80%;
        display: block;
        margin: auto;
        /* margin-top: 25%; *
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .notificationInfoData {
        width: 70%;
        height: 100%;
        float: left;
        color: #a0a0a0;
        text-align: left;
        padding-left: 10px;
        margin-top: 5%;
    }
    .notifInfoAppTitle {
        font-size: 1.4em;
    }
    .notifInfo {
        font-size: 1em;
    }

    #userInfoDiv {
        height: 215px;
        width: 435px;
        border-radius: 20px;
        background-color: rgba(211,211,211, 0.8);
        position: fixed;
        boTtom: 90px;
        right: 130px;
        color: #7e7e7e;
    }
    .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;
    }

    .entityTreeDesc {
        height: 7%;
        width: 80%;
        margin: auto;
        margin-top: 15px;
    }
    .entityTree {
        width: 80%;
        height: 65%;
        margin: auto;
        /*background-color: grey;*
        overflow: auto;
        /*padding-left: 15px;*
        color: #CAC4C4;
        font-size: 15px;
        font-weight: 400;
    }
    .entitySubmit {
        width: 80%;
        height: 5%;
        margin-left: auto;
        margin-right: auto;
    }
    .btnEntitySubmit {
        float: right;
    }

    input[type=checkbox] {
        margin-right: 4px;
    }

    .segundoNivel {
        margin-left: 15px;
    }
*/
    #escritorio {
        /*visibility: hidden;*/
    }

    .desktopArea {
        width: 100%;
        height: 95%;
        top: 0px;
        left: 0px;
    }

    .desktopAreaLeft {
        height: 100%;
    }
    .appIcon {
        width: 45px;
        box-shadow: 3px 3px 2px #1a1a1a;
        border-radius: 5px;
    }
    .appIcon:hover {
        cursor: pointer;
    }
    .appTitle {
        color: #ffffff;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
    }
    .beaconsApp {
        position: absolute;
        width: 45px;
        top: 50px;
        left: 50px;
    }
    .beaconsApp img {
        height: 45px;
        width: 45px;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }
    .beaconsApp img:hover {
        width: 55px;
        height: 55px;
    }
    .qmaticApp {
        position: absolute;
        width: 45px;
        top: 50px;
        left: 140px;
    }
    .qmaticApp img {
        height: 45px;
        width: 45px;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }
    .qmaticApp img:hover {
        width: 55px;
        height: 55px;
    }
    .tabulaeApp {
        position: absolute;
        width: 45px;
        top: 140px;
        left: 50px;
    }
    .tabulaeApp img {
        height: 45px;
        width: 45px;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }
    .tabulaeApp img:hover {
        width: 55px;
        height: 55px;
    }
    .noQApp {
        position: absolute;
        width: 45px;
        top: 140px;
        left: 140px;
    }
    .noQApp img {
        height: 45px;
        width: 45px;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }
    .noQApp img:hover {
        width: 55px;
        height: 55px;
    }
    .freeWifiApp {
        position: absolute;
        width: 45px;
        top: 230px;
        left: 50px;
    }
    .freeWifiApp img {
        height: 45px;
        width: 45px;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }
    .freeWifiApp img:hover {
        width: 55px;
        height: 55px;
    }


    .desktopAreaRight {
        height: 100%;
    }
    .digitalClockTime {
        width: 100%;
        height: 42%;
        margin-top: 5%;
        color: #ffffff;
        font-family: Gnuolane;
        font-size: 35vh;
        text-align: center;
        text-shadow: 2px 3px 4px #000;
    }
    .digitalClockDate {
        width: 100%;
        height: 5%;
        color: #ffffff;
        font-family: Gnuolane;
        font-size: 4vh;
        text-align: right;
        padding-right: 13%;
        text-shadow: 3px 4px 5px #000;
    }
    .weatherLocDiv {
        width: 100%;
        height: 17%;
        text-align: right;
        padding-right: 88px;
        text-shadow: 3px 4px 5px #000;
    }
    .weatherDiv {
        float: left;
        height: 100%;
    }
    .locationDiv {
        float: right;
        height: 100%;
        color: #ffffff;
        font-family: Gnuolane;
        font-size: 4vh;
    }
    .weatherWidgetDiv {
        background-color: rgba(0,0,0, 0.3);
        border-radius: 15px;
        margin-top: 30px;
        height: 100%;
    }

    .weather-widget-row {
        width: 100%;
        height: 100%;
    }

    .locDiv {
        height: 100%;
        margin: 0px;
        text-align: right;
        padding-top: 10%;
    }
    .locData {
        color: #ffffff;
        font-family: Gnuolane;
        font-size: 4vh;
    }

    .tempDiv {
        height: 100%;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }
    .todayTemp {
        color: #ffffff;
        font-family: Gnuolane;
        font-size: 4vh;
        margin-top: 40px;
    }
    .min-max-temp {
        color: #fff;
        font-family: Gnuolane;
        font-size: 2.5vh;
    }
    .weatherIcon {
        margin: 0px;
        padding: 0px;
        text-align: center;
    }

    #startMenu {
        position: absolute;
        width: 580px;
        /* width: 35%;
        height: 37%;*/
        left: 2%;
        bottom: 8%;
        z-index: 1000;
        background-color: rgba(255,255,255, 0.6);
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        padding: 25px;
    }
    .firstRow {
        width: 100%;
        height: 40%;
        margin-bottom: 5%;
    }
    .prgIcon {
        height: 100%;
        width: 130px;
        cursor: none;
    }
    .prgIcon:hover {
        cursor: pointer;
    }
    .prgTitle {
        /*width: 85%;*/
        text-align: center;
        color: #000000;
        font-size: 1.5vmin;
    }

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and (max-width: 1199px) {

}