:root {
    --baseColor:red;
    --baseColorContrast: white;
    --borderColor: #C3C3C3;
    --lightBorder: #C3C3C3;
    --rgb-baseColor: rgb(255, 108, 12);
    --rgb-baseColor-fifty: rgba(255, 108, 12, .5);
    --boxShadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
    --backgroundColor: rgb(203, 203, 237);
    --highlightColor: rgb(238, 127, 45);
    --toggleContrastColor: #c3c3c3;
    --baseColorDot: red;
    --contrastColorDot:  black;
    --fontFamily: "futura-pt", Helvetica, "Trebuchet MS", Verdana, Sans-Serif;
    interpolate-size: allow-keywords;
}

a{
    text-decoration:none;
    color: var(--baseColor);
}

a:hover, input[type="radio"]{
    color: var(--baseContrastColor);
}

body{
    font-size: 1em;
    font-family: var(--fontFamily);
    margin: 0 0 40px 0;
    color: #808080;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;

}

input{
    font-family: "futura-pt", Helvetica, "Trebuchet MS", Verdana, Sans-Serif;
}

footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    padding: 10px;
    border-top: 1px solid var(--borderColor);
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: white;
    z-index: 100;
}

footer *{
    flex: 1;

}

.info-icon:before{
    content:'\f059';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.delete-icon:before{
    content: '\f2ed';
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.plus-icon:before{
    content: '\f0fe';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.edit-icon:before{
    content: '\f044';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.right-arrow-icon:before{
    content: '\f061';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.left-arrow-icon:before{
    content: '\f060';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.money-icon:before{
    content: '\f155';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

}
.palette-icon:before{
    content: '\f53f';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

}
.trip-icon:before{
    content: '\f0f2';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

}

.car-icon:before{
    content: '\f1b9';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.users-icon:before{
    content: '\f0c0';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

}

.hotel-icon:before{
    content:'\f594';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

}

.map-icon:before{
    content:'\f279';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


.phone-icon:before{
    content:'\f095';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.calendar-icon:before{
    content:'\f133';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.info-icon:before{
    content: '\f129';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

nav.breadcrumb{
    border: 0.5px solid var(--baseColor);
    border-left: 0;
    border-right: 0;
    display: flex;
    font-size: .8rem;
    background-color: #F8F8F8;
    overflow: hidden;
    height: 24px;
    position: sticky;
    top:0;
    z-index: 100;
    align-items: center;
    text-indent: 10px;
}



nav.breadcrumb a, nav.breadcrumb span{
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
    flex: min-content 0 0;
}

nav a.breadcrumb:after{
    content:"\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    padding: 0 10px;
    font-size: .7rem;
}

nav.breadcrumb .breadcrumb-nav-left{
    flex: 10;
    margin: 0;
    display: flex;
    overflow: hidden;
}

nav.breadcrumb .breadcrumb-nav-right{
    display: flex;
    text-align: right;
    margin-left: auto;
}

nav.breadcrumb-nav-left a{
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#page_help{
    padding: 10px;
    text-align: left;
    margin: auto;
}

@media screen and (min-width: 800px){
    nav.primary{
        padding: 50px 50px 40px 50px
    }

    header{
        margin: 0;
        /* padding: 0px 10px; */
    }
}

button.button-link{
    border: 0;
    background-color: transparent;
    color: var(--baseColor);
    font-size: 1rem;
    outline: unset;
}

button.button-link:hover{
    cursor: pointer;
    /* color: var(--baseColor); */
}

.hidden{
    display: none;
}

.frm-feedback{
    user-select: none;
    opacity: .5;
}

select,
input[type="text"],
input[type="date"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea {
    font-family: var(--fontFamily);
    width: 100%;
    padding: 2px;
    font-size: 16px;
}

dialog{
    width: 500px;
    max-width: 90%;
}
#content{
    padding: 10px;
}