﻿/*CSS for input textbox and password*/

input[type='text'], input[type='password'] {
    border-radius: 3px;
    border: 1px solid #CCC;
    padding: 3px;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    box-shadow: 1px 1px 5px #CCC;
    text-align: left;
}

    input[type='text']:hover, input[type='password']:hover {
        border-radius: 3px;
        border: 1px solid #aaa;
        /*padding: 3px;
font-weight: 200;
font-size: 15px;
font-family: Verdana;
box-shadow: 1px 1px 5px #CCC;*/
    }

input[type=submit] {
    border-radius: 3px;
    border: 1px solid #CCC;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    box-shadow: 1px 1px 5px #CCC;
}

input[type='submit']:hover {
    border-radius: 5px;
    border: 1px solid #aaa;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    box-shadow: 1px 1px 5px #CCC;
}

/*input{
border-radius: 3px;
border: 1px solid #CCC;
font-weight: 200;
font-size: 15px;
font-family: Verdana;
box-shadow: 1px 1px 5px #CCC;
}*/

/*input:hover
{

border: 1px solid #aaa;

font-weight: 200;
font-size: 15px;
font-family: Verdana;
box-shadow: 1px 1px 5px #CCC;
}*/


/*CSS for dropdown box*/
select {
    border-radius: 3px;
    border: 1px solid #CCC;
    font-weight: 200;
    font-size: large;
    font-family: Verdana, sans-serif;
    box-shadow: 1px 1px 5px #CCC;
}

/*CSS for text*/
p {
    border: 1px solid #CCC;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana, sans-serif;
}


/*CSS for textarea*/

textarea {
    border-radius: 3px;
    border: 1px solid #CCC;
    padding: 8px;
    font-weight: 200;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    box-shadow: 1px 1px 5px #CCC;
}

.AlignLeft {
    text-align: left;
}

.RoundCorners {
    border-radius: 10px;
    z-index: 9999;
}

.CircleImage {
    border-radius: 50%;
    border-color: #666666;
    border-width: 1px;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.PanelLoginShadow {
    box-shadow: 10px 10px 200px #000000;
}

.BrandingLogoMaxW300H100 {
    max-width: 300px;
    max-height: 100px;
}

.LogoShadow {
    -webkit-filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 1.0));
    filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 1.0));
    max-width: 400px;
}

.LocationIcon {
    max-width: 500px;
    max-height: 250px;
}

.LocationSplitter {
    height: 600px;
}

.StandardFeaturedFrame {
    padding: 10px;
    border: 1px solid lightgrey;
    /*background: -webkit-linear-gradient(lightgrey, whitesmoke);
    background: -o-linear-gradient(lightgrey, whitesmoke);
    background: -moz-linear-gradient(lightgrey, whitesmoke);
    background: linear-gradient(lightgrey, whitesmoke);*/
    /*-webkit-box-shadow: 2px 2px 3px 0px #CCCCCC;
    box-shadow: 2px 2px 3px 0px #CCCCCC;*/
}


.StandardTreeview {
    color: black;
}

    .StandardTreeview :hover {
        font-weight: bold;
    }

.StandardTreeviewNode {
    padding: 5px;
    color: black;
}

.StandardTreeviewNodeSelected {
    background: -webkit-linear-gradient(white,lightgray,white); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(white,lightgray,white); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(white,lightgray,white); /* For Firefox 3.6 to 15 */
    background: linear-gradient(white,lightgray,white); /* Standard syntax */
    font-weight: bold;
    border-radius: 5px;
}

.StandardTable {
    border: 1px solid #404040;
    font: 8pt Verdana, sans-serif;
}

.StandardTableRow {
    background: -webkit-linear-gradient(white,whitesmoke,white); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(white,whitesmoke,white); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(white,whitesmoke,white); /* For Firefox 3.6 to 15 */
    background: linear-gradient(white,whitesmoke,white); /* Standard syntax */
}

.StandardTableHeaderRow {
    background-color: gray;
    font-weight: bold;
}

.topleft {
    /*set the div in the bottom right corner*/
    position: fixed;
    top: 0%;
    right: 0%;
    z-index: 1000;
    margin: 0px;
    border: 0px solid whitesmoke;
}

.botright {
    /*set the div in the bottom right corner*/
    position: fixed;
    bottom: 0%;
    right: 0%;
    z-index: 1000;
    border: 1px solid lightgrey;
    background-color: whitesmoke;
}

    .botright > div {
        position: relative;
    }

.image-with-label {
    display: inline-block;
    position: relative;
    opacity: 0.2;
}

    .image-with-label > div {
        position: absolute;
        top: 56px;
        font: bold 12px Arial, Verdana, sans-serif;
        color: white;
    }


.PanelUserInfo {
    /*display:block;*/
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 1000;
}


.betabanner {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9000;
}

.topright {
    display: block;
    position: absolute;
    top: 230px;
    right: 30px;
    z-index: 1000;
}

.background_lightgreen {
    background-color: Lime;
}

.background_orange {
    background-color: Orange;
}

.ContentMapIphone {
    position: absolute;
    width: 320px;
    height: 480px;
    background-color: gray;
    overflow: hidden;
}

.ContentMiniMap {
    position: fixed;
    width: 280px;
    height: 280px;
    background-color: gray;
    overflow: hidden;
}

#minimap {
    z-index: 1000;
}

.ContentMapKoerebog {
    position: absolute;
    width: 950px;
    height: 430px;
    top: 110px;
    left: 3px;
    background-color: gray;
    overflow: hidden;
}

.PanelSubmenuHover :hover {
    opacity: 0.9;
    transition: 0.3s;
}

.PanelPopupMenu {
    width: 400px;
    top: 50px;
    position: fixed; /* Stay in place */
    z-index: 101; /* Stay on top */
    background-color: #1f211d; /* #1C1C1C;  Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 0px; /* Place content Xpx from the top */
    transition: 0.5s; /*0.5 second transition effect to slide in the sidenav */
    border-right: 0px;
    color: white;
    font: 13px Verdana, sans-serif;
    -webkit-box-shadow: 2px 2px 3px 0px #000000;
    box-shadow: 2px 2px 3px 0px #000000;
}

    .PanelPopupMenu :hover {
        cursor: pointer;
    }

.PopupMenu {
    width: 100%;
    padding: 10px;
}

#dvloader {
    position: absolute;
    z-index: 999;
    top: 70px; /* set top value */
    left: 25px; /* set left value */
    /*width:100px;   set width value */
}

#divUnitsTab {
    position: absolute;
    z-index: 999;
    top: 150px; /* set top value */
    left: 100px; /* set left value */
}

#divAddressTab {
    position: absolute;
    z-index: 999;
    top: 150px; /* set top value */
    left: 200px; /* set left value */
}

#divAddressTabJobMap {
    position: absolute;
    z-index: 999;
    top: 200px; /* set top value */
    left: 250px; /* set left value */
}

#divAddressTabPoi {
    position: absolute;
    z-index: 999;
    top: 220px; /* set top value */
    left: 120px; /* set left value */
}

#divRoutesTab {
    position: absolute;
    z-index: 999;
    top: 150px; /* set top value */
    left: 333px; /* set left value */
}

#divToolsTab {
    position: absolute;
    z-index: 999;
    top: 150px; /* set top value */
    left: 460px; /* set left value */
}

#divRoutesTabMap {
    position: absolute;
    z-index: 999;
    top: 200px; /* set top value */
    left: 110px; /* set left value */
}

#divInputSelect {
    position: absolute;
    z-index: 999;
    top: 200px; /* set top value */
    left: 235px; /* set left value */
}

#MapAreaPanel {
    position: absolute;
    z-index: 999;
    top: 200px; /* set top value */
    left: 381px; /* set left value */
}

#divInputSelectHistory {
    position: absolute;
    z-index: 999;
    top: 250px; /* set top value */
    left: 100px; /* set left value */
}

#divInputSelectKoerebog {
    position: absolute;
    z-index: 999;
    top: 200px; /* set top value */
    left: 230px; /* set left value */
}

#divRoutesTabPoi {
    position: absolute;
    z-index: 999;
    top: 220px; /* set top value */
    left: 260px; /* set left value */
}


.FullSizeMap {
    height: 100%;
    position: fixed;
}

.FrontpageMap {
    height: 100%;
    position: fixed;
}

.TableCenter {
    text-align: center;
}

#logon_textbox {
    text-align: center;
}

.divtitle {
    font-size: medium;
    font-weight: 700;
    background-color: lightgray;
}

.collapsePanel {
    width: 640px;
    height: 0px;
    background-color: white;
    overflow: hidden;
}

.panelFloat {
    padding: 5px;
    float: left;
    display: inline;
}

.panelBannerFloat {
    position: relative;
    margin: 0px;
    padding: 0px;
    padding-left: 6px;
    float:left;
    display: inline;
}

    .panelBannerFloat > div {
        margin: 2px;
        padding: 0px;
    }

.collapsePanelTimesheet {
    height: 0px;
    background-color: white;
    overflow: hidden;
}

.collapsePanelHeader {
    width: 640px;
    padding: 2px;
    cursor: pointer;
    vertical-align: middle;
}

.FrontpageMapIcons {
    border: 1px solid black;
    background-color: White;
    padding: 2px;
    -webkit-box-shadow: 2px 2px 3px 0px #000000;
    box-shadow: 2px 2px 3px 0px #000000;
    font-family: Verdana, sans-serif;
}

.LoginPrompt {
    border: 1px solid grey;
    background: -webkit-linear-gradient(lightgrey, whitesmoke); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(lightgrey, whitesmoke); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(lightgrey, whitesmoke); /* For Firefox 3.6 to 15 */
    background: linear-gradient(lightgrey, whitesmoke); /* Standard syntax */
}

.TopMenuBanner {
    border: 0px;
    margin: 0px;
    background: -webkit-linear-gradient(lightgrey, whitesmoke); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(lightgrey, whitesmoke); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(lightgrey, whitesmoke); /* For Firefox 3.6 to 15 */
    background: linear-gradient(lightgrey, whitesmoke); /* Standard syntax */
}

.TopBanner {
    background-repeat: repeat-x;
    width: 100%;
    height: 75px;
    border: 0px;
    padding: 0px;
    margin: 0px 0px 0px 0px;
    /*-webkit-box-shadow: 2px 2px 3px 0px grey;
    box-shadow: 2px 2px 3px 0px grey;*/
}

.StaticBanner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

.StaticContent {
    top: 45px;
    width: 100%;
}

.grid {
    max-width: 100%;
}

.grid-item {
    width: 400px;
    border-radius: 5px;
    border: 1px solid gray;
    -webkit-border-radius: 10px;
    -webkit-box-shadow: 1px 1px 2px 0px #000000;
    box-shadow: 1px 1px 2px 0px #000000;
    background: white;
    margin: 10px;
    float: left;
    overflow: auto;
}

.IntranetArticle {
    max-width: 400px;
    border-radius: 5px;
    border: 1px solid gray;
    -webkit-border-radius: 10px;
    -webkit-box-shadow: 1px 1px 2px 0px #000000;
    box-shadow: 1px 1px 2px 0px #000000;
    background: white;
    margin: 10px;
    float: left;
    overflow: auto;
}

.FloatingBoxWithPadding
{
    width: 400px;
    
    padding: 10px;
    float: left;
}


.grid-item a {
    color: #000000;
}

.grid-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.IntranetMessageOutbound {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 2px 2px 3px 0px #000000;
    box-shadow: 1px 1px 3px 0px #000000;
    background: #64FE2E;
    margin: 10px 10px 10px 70px;
    padding: 10px 5px 5px 5px;
    overflow: hidden;
    max-width: 100%;
    text-align: right;
}

.IntranetMessageInbound {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 2px 2px 3px 0px #000000;
    box-shadow: 1px 1px 3px 0px #000000;
    background: lightblue;
    margin: 10px 70px 10px 10px;
    padding: 10px 5px 5px 5px;
    overflow: hidden;
    max-width: 80%;
}

    .IntranetMessageInbound img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

.IntranetMessageOutbound img {
    width: 100%;
    height: auto;
    max-width: 100%;
}


.LinkButtonGray {
    font-weight: bold;
    color: Gray;
}

.FrontpagePanelUnits {
    position: absolute;
    background-color: White;
    top: 180px;
    left: 100px;
    border: 1px solid black;
    padding: 2px;
    -webkit-box-shadow: 2px 2px 3px 0px #000000;
    box-shadow: 2px 2px 3px 0px #000000;
    font-family: Verdana, sans-serif;
}

.accordionHeader {
    border: 1px solid #2F4F4F;
    color: white;
    background-color: #2E4d7B;
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.accordionContent {
    background-color: #D3DEEF;
    border: 1px dashed #2F4F4F;
    border-top: none;
    padding: 2px;
    padding-top: 10px;
}

.accordionLink {
    background-color: #D3DEEF;
    color: white;
}

.watermark {
    background: #FFAAFF;
}

.popupControl {
    background-color: #AAD4FF;
    position: absolute;
    visibility: hidden;
    border-style: solid;
    border-color: Black;
    border-width: 2px;
}

.modalBackground {
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.modalPopup {
    background-color: #ffffdd;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
}

.sampleStyleA {
    background-color: #FFF;
}

.sampleStyleB {
    background-color: #FFF;
    font-family: monospace;
    font-size: 10pt;
    font-weight: bold;
}

.sampleStyleC {
    background-color: #ddffdd;
    font-family: sans-serif;
    font-size: 10pt;
    font-style: italic;
}

.sampleStyleD {
    background-color: Blue;
    color: White;
    font-family: Arial, sans-serif;
    font-size: 10pt;
}

.dxeImage:hover {
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}

.profile-image-circle-21 {
    clip-path: circle(21px at center);
    /* OLD VALUE example: circle(245px, 140px, 50px); */
    /* Yep, even the new clip-path has deprecated stuff. */
}

.profile-image-circle-30 {
    clip-path: circle(30px at center);
    /* OLD VALUE example: circle(245px, 140px, 50px); */
    /* Yep, even the new clip-path has deprecated stuff. */
}

.image-square-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.no-pointer {
    cursor: default !important;
}

.info-blue {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid #b8daff;
    border-radius: 0.25rem;
    margin: 10px;
    padding: 20px;
}
.warning-box {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #f3d889;
    border-radius: 0.25rem;
    margin: 10px;
    padding: 20px;
}
.content-indent {
    padding: 10px 20px 20px 20px;
}

.column-30 {
    float: left;
    width: 30%;
    height: 100%;
}

.column-10 {
    float: left;
    width: 10%;
    height: 100%;
}
.column-5 {
    float: left;
    width: 5%;
    height: 100%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.align-center {
    display: table;
}

.align-center span {
    display: table-cell;
    vertical-align: middle;
}

.padding-left{
    padding-left: 10px;
}

.top-bar-icon {
    margin-top: 8px;
    margin-left: 5px;
}

.top-bar-right-image {
    margin-top: 8px;
    margin-right: 15px;
}
.top-bar-right-button {
    margin-top: 12px;
    margin-right: 15px;
}
.top-bar {
    border: thin solid #C0C0C0;
    width: 100%;
    height: 50px;
    background-image: url('/tool/icons/menu_gr.jpg');
    background-repeat: repeat-x;
}

.align-right{
    text-align: right;
}