* {
    box-sizing: border-box;
}


html, body {
  /*  height: 100%;*/
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(images/background1.jpg);
}


body, input, textarea, button {
    font-size: 16px;  
}



@media only screen and (max-width: 700px) {
    .hidew700 {
        display:none;
    }
}
@media only screen and (max-height: 900px) {
    .hideh900 {
        display:none;
    }
}

[v-cloak] {
    display: none;
}
.app {

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


h1 {
    margin:20px 0px;    
}
h2,h3,h4,h5 {
    margin: 5px 0px;
}
.h3 {
    font-size: 1.2em;
    color:#1d1d1d;
    font-weight: bold;
}
.h4 {
    font-size: 1.0em;
    color:#1d1d1d;
    font-weight: bold;
}
.smallheader {
    font-size: 0.8em;
    color:#757575;
}

.big {
    font-size: 1.2em;
}
.small {
    font-size: 0.8em;
}
.xsmall {
    font-size: 0.6em;
}

.light {
    color:lightgray;
}

input {
    margin: 10px 2px 10px 2px
}

input.small {
    padding: 3px 7px;
}
input[type="radio"], input[type="checkbox"] {
    cursor: pointer;
}

input[type=text] {
    box-sizing: content-box;
    padding: 5px 5px;
}
input[type=file].inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.inputfileGroup {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.dropzone {
    min-width: 200px;
    min-height: 75px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px dashed #a09f9f;
    border-radius: 5px;
}
.dropzone:hover {
    border:1px solid #cfcfcf;
}
    /*
.inputfile + label {
    border: 1px solid #b3b1b1;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #cfcfcf;
    display: inline-block;
    cursor: pointer;
    color:#484747;
}
*/
input.underline {
    border: 0;
    border-bottom: 1px solid #6e6e6e;
    /* height: 1.4em; */
    padding: 5px 10px;
}
input, textarea, select {
    padding: 3px 3px;
    margin: 2px 2px;
    box-sizing: border-box;
    border: 3px solid #ccc;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    font-size: 16px;
}

textarea {
    width: 100%;
    height: 150px;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}

.button,.inputfile + label {
    border-radius: 3px;
    background-color: #cfcfcf;
    color:#484747;
    border: 1px solid #b3b1b1;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    min-width: 100px;
    outline:none;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

label {
    cursor: pointer;
    padding-left: 3px;
    user-select: none;
}


button:hover,.inputfile + label:hover  {
    background-color:#dfdede;
}


button.primary:hover,.button.primary:hover  {
    background-color:#004b6b;
}
button.secondary:hover,.button.secondary:hover  {
    background-color:#e07b08;
}

button.selected  {
    background-color: rgb(153, 153, 153);
    color: rgba(255,255,255,1);
}
button.small {
    padding: 2px 6px;
    min-width: inherit;
}
button.remove {
    width: 22px;
    height: 22px;
    border-radius: 10px;
    padding: 0px;
    margin: 0px;
    font-size: 1em;
    min-width: inherit;
}
button.colorpicker {
    min-width: 25px;
    min-height: 20px;
    padding: 5px;
}
button.primary,.button.primary {
    background-color:#01628a;
    color:#ffffff;
}

button.secondary,.button.secondary {
    background-color:#f69220;
    color:#ffffff;
}
button:disabled,button.primary:disabled,button.secondary:disabled {
    background-color:#c1c3c1;
    pointer-events: none;
}

/* Style buttons */
.btn {
    background-color: #888785;
    border: none;
    color: white;
    padding: 4px 6px;
    font-size: 18px;
    cursor: pointer;
    margin: 2px;
    border-radius: 3px;
    outline: none;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn * {
    pointer-events: none;
}
/* Darker background on mouse-over */
.btn:hover {
    background-color: #b8b6b6;
}
.btn:disabled {
    background-color: #ebeaea;
}



.link, a {
    display: inline-flex;
    cursor: pointer;
    color: rgba(1, 98, 138,1);
    align-items: center;
    justify-content: center;
    user-select: none;
    text-decoration: none;
}
.link.disabled {
    cursor: default;
    color: #d8d4d4;
    pointer-events: none;
}
.block {
    display:block;
}
.flex-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
   
}
.flex-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrap {
    flex-wrap: wrap;
    white-space:normal;
}
.nowrap {
    flex-wrap: nowrap;
    white-space:normal;
}
.truncate {
    text-overflow: ellipsis;
    overflow: hidden;
}
.flexflow {
    display: flex;
    flex-direction: row;
    /* flex-flow: row; */
    flex-wrap: wrap;
}


.flexone {
   flex:1;
}
.width100 {
    width:100%;
}
.justifycenter {
    justify-content:center;
}
.justifyaround {
    justify-content:space-around;
}
.justifybetween {
    justify-content:space-between;
}
.aligncenter {
    text-align: center;
    align-items: center;
}
.alignleft {
    text-align: left;
    justify-content: flex-start;
}
.alignright {
    text-align: right;
    justify-content: flex-end;
    display: flex;
}
.push {
    margin-left: auto;
}
.pushdown {
    margin-top: auto;
}
.disablevents {
   pointer-events: none;
}

.margin {
    margin:10px 15px;
}

.margintop {
    margin-top:15px;
}
.margintopxx {
    margin-top:25px;
}
.margintopx {
    margin-top:20px;
}
.margintops {
    margin-top:10px;
}
.margintopxs {
    margin-top:5px;
}
.margintopxxs {
    margin-top: 2px;
}
.marginbottom {
    margin-bottom:15px;
}
.marginbottomxs {
    margin-bottom: 5px;
}
.marginleft {
    margin-left:15px;
}
.marginright {
    margin-right:15px;
}
.padding {
    padding:15px 15px;
}
.paddingleft {
	padding-left:15px
}
.paddingright {
	padding-right:15px
}
.paddingtop {
	padding-top:15px
}
.paddingbottom {
	padding-bottom:15px
}
.paddings {
    padding:10px 10px;
}
.paddinglefts {
	padding-left:10px
}
.paddingrights {
	padding-right:10px
}
.paddingtops {
	padding-top:10px
}
.paddingbottoms {
	padding-bottom:10px
}
.paddingxs {
    padding:5px 5px;
}
.paddingleftxs {
	padding-left:5px
}
.paddingrightxs {
	padding-right:5px
}
.paddingtopxs {
	padding-top:5px
}
.paddingbottomxs {
	padding-bottom:5px
}


.faded {
    opacity: 0.5;
}
.error {
    color: #e83030;
    font-size: 0.8em;
    padding: 2px 5px 10px 5px;
}

.header {
    height: 75px;
    background-color: #cfcfcf;
    padding: 10px 25px;
    flex-shrink: 0;
    flex: none;
}

@media only screen and (max-height: 900px) {
    .header {
        height: 50px;
        padding: 5px 15px;
    }
}



.footer {
    height: 50px;
    background-color: #cfcfcf;
    padding: 10px 25px;
    flex-shrink: 0;
    flex: none;
    border-radius: 0px;
}

@media only screen and (max-height: 900px) {
    .footer {
        height: 30px;
        padding: 1px 5px;
        font-size: 0.6em;
    }
}


.waitDisplay {
    background-color: #ffffffd3;
    border-radius: 10px;
    position:fixed;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
    z-index: 10;
    width: 150px;
    height: 75px;
    padding:20px;
}

.main-view {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-content: center;
}

.error-display {
    padding: 10px;
    background-color: #f9e66f;
    position:relative;
}
.msg-display {
    padding: 10px;
    background-color: #4e51fd;
    position:relative;
    color:#ffffff;
}

.fielderror {
    font-size: 0.8em;
    color: #ffffff;
    padding: 1px 15px;
    background-color:#a75757;
    border-radius:3px;
}


.close {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    z-index: 10;
    top: 10px;
    right: 10px;
    position: absolute;
    height: 1px;
    overflow: visible;
}

.close:hover,
.close:focus {
  color: rgba(1, 98, 138,0.6);
  text-decoration: none;
  cursor: pointer;
}
.tooltip {
    position:absolute;
    visibility:hidden;
    background: #5f5e5b;
    color: white;
    border-radius: 3px;
    padding: 5px;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateX(-50%);
}

.tooltip .contents {
    flex:1;
    white-space: nowrap;
}


.tooltip.up::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-top: 5px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color:  transparent transparent #5f5e5b transparent;
}

.tooltip.down::after {
    content: " ";
    position: absolute;
    top: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-top: 5px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color:  transparent transparent #5f5e5b transparent;
}


.loader {
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 25%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*google icons - turn of icons for tooltips */
.material-icons {
    pointer-events: none;
}

.fadedbckgnd {
    background-color: rgba(255, 255, 255, 0.56);;
    border-radius: 5px;
}
.confirmationdialog .title {
    font-size: 1.3em;
    font-weight: bold;
    padding: 10px 5px;
}

.confirmationdialog .desc {
    font-size: 0.8em;
}

.confirmationdialog .options {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 5px;
}

.confirmationdialog .modal-container {
    width: 350px;
    padding: 5px 20px;
}

.note {
    display: flex;
    justify-content: center;
    margin: 0px 10px 10px 10px;
    font-style: italic;
    color: #6b6b6b;
    font-size: 0.8em;
}

.callout {
    padding:10px;
    background-color: #eae9e9;
    border: 2px solid #949393;
    border-radius: 3px;
    font-size: 0.8em;
}

.flowlistitem {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    border-radius: 5px;
    /* border: 1px solid #d4d4d4; */
    font-size: 0.8em;
    margin: 3px;
    background-color: #c5c4c4;
    height: 30px;
    /* color: white;*/
}
.flowlistitem:hover {
    background-color: #cecccc;
}
.flowlistitem.missing {
    background-color: #f39494;
}
.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; }

.kpicard {
    display: flex;
    align-items: center;
    background-color: #fff;
    flex-direction: row;
    padding:10px;

}
.kpicard-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex: 1;
    padding:5px 10px;
}
.kpicard-title {
    font-size: 0.8em;
    color: #4e4d4d;
   
}
.kpicard-icon {
    background-color: rgb(75, 75, 75);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.kpicard-value {
    font-size: 1.6em;
    font-weight: bold;
}

