@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS */
    html {
        height: 100%;
    }

    #hideTools {
        margin-top: 50%;
    }
} 

@-moz-document url-prefix() {
    /* Firefox */
    #hideTools {
        margin-top: auto;
    }
}

@supports ( -webkit-appearance:none ) {
    /* Chrome & others*/
    #hideTools {
        margin-top: auto;
    }
}

#tools, #toolsDiv {
    pointer-events: none;
}

#toggle, #tabDiv, #tabContentDiv {
    pointer-events: initial;
    pointer-events: auto;
}

/* ANIMATIONS */
.loader {
    display: inline-block;
    border: 3px solid rgb(28, 81, 94);
    border-top: 3px solid #ECB500;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
}

#passInfo_loader, #camera_loader{
    margin-left: 10px;
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    height: 28px;
    min-height: 28px;
    max-height: 28px; 
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* TINY MOBILE SCREENS */
@media screen and (max-width: 320px) {

    /* HEADER */
    #header {
        flex-direction : row;
        justify-content : flex-start;
        width : 100%;
        height : 40px;
        padding-top : 1px;
        border-right : none;
        border-bottom : solid;
    }

    .headerContent {
        min-height : 100%;
        margin-top : 5px;
    }

    .buttonGroup, .HeaderButton, a.fa {
        display: none;
    }

    #titleDiv {
        min-height : 25%;
        padding-left : 2px;
        padding-right : 2px;
        flex-direction : row;
        line-height : 50%;
        border-radius : 5px;
    }

    #logo {
        margin-left : 55px;
        width : 132px;
        height : 27px;
    }

    #menu {
        left : 10px;
        top : 5px;
    }

    #headTitle {
        margin-right: 0;
        margin-left: auto;
    }

    .line {
        min-width : 20px;
        min-height : 3px;
        margin : 3px 2px;
    }

    /* FOOTER */
    #footer {
        width : 100%;
    }

    #footer_logo {
        width : 185px;
    }

    #footer_logo img {
        height : 50px;
        margin-top: 1px;
        margin-bottom: 1px;
    }

    #footer_left_content {
        display: none;
    }

    #footer_right_content {
        font-size : 0.55em;
    }

    /* BISON FUTÉ */
    #bf {
        bottom : 51px;
        right : 224px;

        border-left : solid 1px #1C515E;
        border-right : solid 1px #1C515E;
        border-top : solid 1px #1C515E;

        border-top-left-radius : 5px;
        border-top-right-radius : 5px;
    }

    /* TOOLS */
    #toolsDiv {
        display : none;
    }

    #tabContentDiv {
        font-size : 0.8em;
    }

    /* MAP */
    #map {
        width : 100%;
    }

    .leaflet-control-attribution, .leaflet-control-scale-line {
        font-size: 0.75em !important;
    }

    /* GLOBAL POPUPS */
    .foreground {
        width : 90%;
        max-height : 60%;
        margin-left : 2%;
        margin-top : 25%;
    }

    .closePopup {
        top : 13px;
        padding : 2px;
    }

    .radio_image {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #radio_table {
        justify-content: flex-start;
        flex-direction: column;
    }
}

/* MEDIUM MOBILE SCREENS */
@media screen and (min-width: 321px) and (max-width: 1180px) {

    /* HEADER */
    #header {
        flex-direction : row;
        justify-content : flex-start;
        height  : 60px;
        width : 100%;
        padding-top : 1px;
        border-right : none;
        border-bottom : solid;
    }

    .headerContent {
        min-height : 100%;
        margin-top : 10px;
    }

    .buttonGroup, .HeaderButton, a.fa {
        display: none;
    }

    #titleDiv {
        min-height : 25%;
        padding-left : 2px;
        padding-right : 2px;
        flex-direction : row;
        line-height : 50%;
        border-radius : 5px;
    }

    #logo {
        margin-left : 55px;
        width : 191px;
        height : 39px;
    }

    #menu {
        min-height : 40px;
        min-width : 30px;
        left : 10px;
        top : 17px;
    }

    #headTitle {
        margin-right: 0;
        margin-left: auto;
    }

    .line {
        min-width : 26px;
        min-height : 6px;
        margin-top : 5px;
        margin-bottom : 5px;
    }

    /* FOOTER */
    #footer {
        padding: 0 !important;
        width : 100%;
    }

    #footer_logo {
        width : 130px;
    }

    #footer_logo img {
        height : 50px;
        margin-top: 1px;
        margin-bottom: 1px;
    }

    #footer_left_content {
        display: none;
    }

    #footer_right_content {
        font-size : 0.6em;
        margin-top: 4px;
    }

    /* BISON FUTÉ */
    #bf {
        bottom: 64px;
        right : 224px;

        border-left : solid 1px #1C515E;
        border-right : solid 1px #1C515E;
        border-top : solid 1px #1C515E;

        border-top-left-radius : 5px;
        border-top-right-radius : 5px;
    }

    /* TOOLS */
    #toolsDiv {
        display : none;
    }

    #tabContentDiv {
        font-size : 0.8em;
    }

    /* MAP */
    #map {
        width : 100%;
    }

    /* GLOBAL POPUPS */
    .foreground {
        width : 90%;
        max-height : 70%;
        margin-left : 2%;
        margin-top : 15%;
    }

    .closePopup {
        top : 13px;
        padding : 2px;
    }

    .radio_image {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #radio_table {
        justify-content: flex-start;
        flex-direction: column;
    }
}

/* LARGE SCREENS & BROWSERS */
@media screen and (min-width: 1181px) {

    /* HEADER */
    #header {
        flex-direction : row;
        justify-content : space-between;
        height  : 60px;
        width  : 100%;
        padding-top : 1px;
        border-bottom : solid;
    }

    .headerContent {
        max-width : auto;
        max-width : initial;
        width: 33%;
        margin-left : 10px;
        margin-top : 10px;
    }

    #headTitle {
        order : 2;
    }

    #headButtons1 {
        order : 1;
    }

    #headButtons2 {
        order : 3;
    }

    #headButtons3 {
        order : 4;
    }

    .HeaderButton, .fa {
        margin-left : 10px;
    }

    .fa-apple {
        margin-right : 10px;
    }

    .buttonGroup {
        display: block;
        width : auto;
        width : initial;
        height : auto;
        height : initial;
        flex-direction : row;
        justify-content : flex-start;
    }

    #socialMediaButtons {
        justify-content : flex-end;
    }

    #menu {
        display: none;
    }

    #titleDiv {
        min-height : 25%;
        padding-left : 2px;
        padding-right : 2px;
        flex-direction : row;
        line-height : 50%;
        border-radius : 5px;
    }

    #logo {
        width : 171px;
        height : 51px;
        margin-top: -5px;
    }

    /* FOOTER */
    #footer {
        width : 100%;
    }

    #footer_logo {
        width : 120px;
    }

    #footer_logo img {
        height : 50px;
    }

    #footer_left_content {
        left : 130px;
    }

    #footer_right_content, #footer_left_content {
        font-family: "roboto_cr";
    }

    /* BISON FUTÉ */
    #bf {
        bottom : 74px;
        right : 224px;

        border-left : solid 1px #1C515E;
        border-right : solid 1px #1C515E;
        border-top : solid 1px #1C515E;

        border-top-left-radius : 5px;
        border-top-right-radius : 5px;
    }

    /* MAP */
    #map {
        width : 100%;
    }

    /* TOOLS */
    #tools {
        max-width: 300px;
    }

    /* GLOBAL POPUPS */
    .foreground {
        width : 50%;
        max-height : 80%;
        margin-left : 25%;
        margin-top : 80px;
        bottom: 10%;
        top: 0%;
    }

    .closePopup {
        top : 15px;
        padding : 3px;
    }

    #radio_table {
        justify-content: center;
        flex-direction: row;
    }
}

html {
    width: 100%;
    height: 100%;
}

/* BEGIN MAIN ELEMENTS */
body{
    width:      100%;
    height:     100%;
    margin:     0;
    padding:    0;
    font-family:"Verdana", Arial, sans-serif;
}

#map{
    position:   absolute;
    z-index:    0;
    margin:     0;
    padding:    0;
    background-color: #F2F2F2;
}

#header, #tools {
    z-index: 4;
    position:   absolute;
    display:    flex;
    flex:       1;
}

#header{
    top: 0;
    left: 0;
    right: 0;
    overflow : visible;
    background-color: #455A63;
    border-color: #7cb342;
    border-width: 5px;
    box-shadow: 0px 1px 4px 2px #777;
}

.appHead {
    background-color: #7cb342;
}

.buttonGroup {
    display : flex;
    flex : 1;
}

#bf {
    position : absolute;
    z-index : 2;
    width : 40px;
    height : 36px;
    background : #FFF;
    box-shadow : 0px 0px 1px 1px #888;
}

@media screen and (max-width: 320px) {
    #bf {
        width : 36px;
        height : 33px;
    }
}

#tools{
    overflow-x: hidden;
    right:  0;
}

#hideTools{
    display:            table;
    height:             3em;
    min-width:          1.1em;
    margin-bottom:      auto;
    background-color:   #7cb342;
    color:              #FFF;
    text-align:         center;
    font-size:          2em;
    line-height:        100%;
    border-top-left-radius:    5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0px 1px 2px 1px #777;
}

@media screen and (max-width: 320px) {
    #hideTools {
        font-size : 1.4em;
    }
}

#hideTools span{
    display:        table-cell;
    vertical-align: middle;
    cursor:         pointer;
    cursor:         hand;
}

#tabDiv {
    height:         30px;
    display:        flex;
    flex:           1;
    justify-content:center;
}

.Tab{
    height:             18px;
    display:            inline-block;
    background-color:   #37474f;
    color:              #F3F3F3;
    padding:            6px;
    font-size:          1.1em;
    margin-left:        8px;
    text-align:         center;
    font-weight:        bold;
    cursor:             pointer;
    cursor:             hand;
    border-top-left-radius:  5px;
    border-top-right-radius: 5px;
}

.menuClickable:not(.selected):hover, .menuClickable.selected {
    background-color: #1c515e;
    color: #FFF;
}

.Tab:not(.selected):hover, .Tab.selected {
    background-color: #7cb342;
}

#tabContentDiv {
    background:     #F3F3F3;
    width:          100%;
    height:         80%;
    overflow-x:     hidden;
    overflow-y:     auto;
    border-top-left-radius:    8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0px 2px 4px 2px #777;
}

#legalMention {
    margin-bottom: 0;
    padding-bottom: 5px;
}

#legalMention > span {
    font-weight: bold;
    cursor: pointer;
    cursor: hand;
    border-radius: 5px;
}

#legalMention > span:hover {
    color: #ECB500;
}

#titleDiv {
    display:        flex;
    flex:           1;
    justify-content:center;
}

#title{
    color:       #455A63;
    font-weight: bold;
}

.HeaderButton:not(.selected) {
    background: rgba(50, 50, 50, 0.9);
}

.HeaderButton:not(.selected):hover {
    background-color: #7cb342;
}

.fa, .HeaderButton {
    cursor:         pointer;
    cursor:         hand;
    font-size:      30px;
    text-align:     center;
    text-decoration:none;
    border-radius:  50%;
}

.LangButton {
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
    padding: 0;
}

.fa {
    min-width:      16px;
    max-width:      16px;
    min-height:     16px;
    max-height:     16px;
    padding:        10px;
}

#timeButtons img {
    width: 22px;
    min-width:  22px;
    max-width:  22px;
    min-height: 22px;
    max-height: 22px;
    padding:    7px;
}

.accountMessage {
    margin: 5px;
    font-size: 1.1em;
    font-style: italic;
}

@media screen and (max-width: 320px) {

    #timeButtons img {
        width: 22px;
        min-width:  22px;
        max-width:  22px;
        min-height: 22px;
        max-height: 22px;
        padding:    1px;
    }

    .LangButton {
        width: 23px;
        min-width: 23px;
        max-width: 23px;
        min-height: 23px;
        max-height: 23px;
        padding: 0;
    }

    .fa {
        min-width:      16px;
        max-width:      16px;
        min-height:     16px;
        max-height:     16px;
        padding:        4px;
    }

    #timeButtons img, .LangButton, .fa {
        margin-top: 2px;
    }
}

.fa-facebook {
    background: #3B5998;
    color:      white;
}

.fa-twitter {
    background: #55ACEE;
    color:      white;
}

.fa-youtube {
    background: #FF1A1A;
    color:      white;
}

.fa-android {
    background: #A4C639;
    color:      white;
}

.fa-apple {
    background: #222;
    color:      white;
}

.btn, .btnArw, .btnSave, .btnDel, .btnRtn {
    background-color: rgba(50,50,50,0.9);
    color: #FFF;
}

.HeaderButton.selected {
    background-color: #7cb342;
}

#layerOptions{
    background:  #F3F3F3;
    width:       100%;
    height:      100%;
    margin-top:  10px;
    margin-left: auto;
    margin-right:auto;
}

#layerOptions > tbody > tr {
    padding-top:  10px;
    padding-left: 10px;
    cursor:       pointer;
    cursor:       hand;
}

table, tr, td {
    border: none;
    border-collapse: collapse;
}

#layerOptions > tbody > tr > td {
    padding-top: 5px;
    padding-bottom: 5px;
}

#layerOptions > div * {
    cursor: pointer;
    cursor: hand;
}

.LayerChoice {}

#legalMention {
    display: block;
    border: none;
    border-radius: 0;
    background-color: rgba(50,50,50,0.9);
    color: #FFF;
    text-align: center;
    font-size: 9pt;
}

/* POPUP STYLE */
.background {
    z-index:  51;
    position: absolute;
    width:    100%;
    height:   100%;
}

.background {
    background: #000;
    opacity:    0.5;
}

.foreground {
    position: absolute;
    z-index:  52;
    background: #F3F3F3;

    overflow-y: auto;
    overflow-x: hidden;
    overflow-wrap: normal;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 2px 5px 1px #333;
}

.foreground_header_title {
    display:       block;
    margin-left:   auto;
    margin-right:  auto;
    margin-left:   auto;
    margin-right:  auto;
    padding-top:   5px;
    padding-bottom:5px;
    padding-left:  8px;
    padding-right: 8px;
    font-weight:   bold;
    text-align:    center;
    background:    #455A63;
    color:         #FFF;
    border:        groove;
    border-width:  2px;
    border-radius: 5px;
}

/* MOBILE PORTRAIT ORIENTATION */
@media screen and (max-width: 360px) {
    .foreground_header {
        height: 48px;
    }

    .foreground_header_title {
        font-size: 14px;
    }
}

@media screen and (min-width: 361px) {
    .foreground_header {
        height: 55px;
    }

    .foreground_header_title {
        font-size: 24px;
    }
}

.foreground_body {
    z-index: 52;
    min-width: 90%;
    max-width: 90%;
    overflow: auto;
    height: fit-content;
    top: 55px;
    margin-left: auto;
    margin-right: auto;
}

#flashPopup > .foreground > .foreground_body {
    padding: 10px;
}

#radio_table {
    width: 100%;
    display: flex;
    flex: 1;
}

iframe {
    margin-top: 13px;
}

fieldset {
    padding: 10px; 
}

legend {
    font-size: 1.5em;
    font-weight: bold;
}

.closePopup {
    position: absolute;
    z-index:  52;
    top: 15px;
    right: 18px;
    width: fit-content;
    background-color: rgba(50,50,50,0.9);
    color: #FFF;
    font-weight: bold;
    border: groove;
    border-width: 2px;
    border-radius: 5px;
    cursor: pointer;
    cursor: hand;
}

@media screen and (max-width: 360px) {
    .closePopup {
        font-size: 10px;
    }
}

@media screen and (min-width: 361px) {
    .closePopup {
        font-size: 18px;
    }
}

#returnVocalButton {
    top: 15px;
    left: 18px;
    text-align: center;
    max-width: 28px;
    padding: 5px;
}

.openTab {
    cursor: pointer;
    cursor: hand;
}

.zoneWrapper {
    height: fit-content;
    background: #F3F3F3;
}

.zoneTag {
    display:      block;
    height:       32px;
    padding-left: 5px;
    padding-top:  1em;
    background:   #455A63;
    color:        #F3F3F3;
    font-weight:  bold;
    cursor:       pointer;
    cursor:       hand;
    border-bottom: solid;
    border-bottom-color: #333;
    border-bottom-width: 2px;
}

.zoneContent {
    width: 80%;
    padding-left: 10%;
    padding-top:  5px;
    padding-bottom: 5px;
}

.passWrapper {
    width:  90%;
    height: fit-content;
    padding-bottom: 5px;
    padding-top: 5px;
}

.passTag {
    width:        100%;
    height:       auto;
    padding-left: 5px;
    padding-top:  1em;
    color:        #333;
    font-weight:  bold;
    cursor:       pointer;
    cursor:       hand;
    border-collapse: collapse;
}

.passTag > tr {
    width: 100%;
    height: 32px;
    border-bottom: ridge;
    border-bottom-color: #333;
    border-bottom-width: 1px;
    border-top: ridge;
    border-top-color: #333;
    border-top-width: 1px;
    border-radius: 5px;
}

.passName {
    width: 75%;
}

.passStatus {
    margin-left: 25%;
    margin-right: 25%;
    width: 25%;
    background: #E8BB31;
    color: green;
    font-weight: bold;
    margin-left: 10px;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}

.passContent {
    background: #333; 
    width: 90%;
    height: fit-content;
    padding: 5px;
    margin-left: 5%;
    margin-top: 5px;
    border-radius: 5px;
}

.situationContent, .situationTag{
    display:       block;
    width:         50%;
    background:    #F3F3F3;
    border-radius: 5px;
    padding:       5px;
    margin-top:    5px;
    margin-left:   auto;
    margin-right:  auto;
}

.situationTag{
    width: 70%;
    font-weight: bold;
    text-align:  center;
}

.situationContent{
    width: 70%;
    margin-bottom: 10px;
}

/* MOBILE PORTRAIT */
@media screen and (max-width: 360px) {
    .passWrapper {
        font-size: 12px;
    }

    .situationTag {
        font-size: 14px;
    }
}

/* MOBILE LANDSCAPE OR BROWSER HALF-SCREEN */
@media screen and (max-width: 640px) {
    .passWrapper {
        font-size: 14px;
    }

    .situationTag {
        font-size: 16px;
    }
}

/* LARGE SCREENS & BROWSERS */
@media screen and (min-width: 641px) {

    .passTag {
        min-width: 260px;
    }

    .passWrapper {
        font-size: 16px;
    }

    .situationTag {
        font-size: 18px;
    }
}

/* Leaflet popup styles */
.lfPopup{
    background: #333;
    min-width: 160px;
    max-height : 300px;
    border-radius: 5px;
    padding: 5px;
    margin-top: 18px;
    overflow-y: auto;
}

@media screen and (max-width: 420px) {
    .lfPopup{
        max-width: 280px;
    }
}


.lfPopup_title{
    font-weight: bold;
    font-size: 14px;
    width: 98%;
    background: #F3F3F3;
    border-radius: 5px;
    padding: 2px;
}

.lfPopup_title_text {
    display: inline-block;
    height: auto;
    line-height: 100%;
    font-weight: bold;
    font-size: 12pt;
}

.lfPopup_content{
    width: 98%;
    background: #F3F3F3;
    border-radius: 5px;
    margin-top: 5px;
    padding: 2px;
}

.lfPopup_content_docs {
    margin-top: 3px;
    padding: 3px;
    border: 1px solid #333;
    border-radius: 5px;
}

@media screen and (max-width: 420px) {
    .lfPopup {
        max-width: 240px;
    }

    .lfPopup_title, .lfPopup_title_text, .lfPopup_content {
        font-size: 0.75em;
    }

    .leaflet-popup-content {
        margin: 5px 8px !important;
    }
}

/* Styling for "Maison technique" popups */
.leaflet-popup-content {
    width: initial !important;
}

.leaflet-popup-close-button {
    width: 22px;
    height: 18px;
}

.technicalPopup{
    display: flex;
    flex:    1;
    flex-direction: column;
    justify-content: flex-start;
}

.technicalIcon{
    max-width: 300px;
    padding: 5px;
    display:    block;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 320px) {
    .technicalPopup{
        max-width : 240px;
        max-height : 300px;
    }

    .technicalIcon{
        max-width: 220px;
    }
}

.technicalIconDiv{
    border-radius: 5px;
    padding: 2px;
    margin:  2px;
}

.technicalTitle{
    background:    #3C3C3B;
    color :        #FFF;
    width:         95%;
    border-radius: 5px;
    padding:       5px;
    margin:        2px;
    font-weight:   bold;
    font-size:     16px;
    text-align:    center;
}

.technicalContactsDiv{
    width:           95%;
    border-radius:   5px;
    padding:         5px;
    margin:          2px;
    display:         flex;
    flex-direction:  column;
    flex-wrap:       nowrap;
    flex-grow:       1;
    justify-content: flex-start;
}

.technicalContact{
    font-style: normal;
    text-decoration: none;
    font-weight: bold;
    color:  black;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    cursor: hand;
}

.technicalContent{
    background: #F3F3F3;
    width:         95%;
    border-radius: 5px;
    padding:       5px;
    margin:        2px;
    display:     flex;
    flex-direction: column;
    flex-wrap:  nowrap;
    flex-grow:  1;
    justify-content: flex-start;
}

.documentList{
    display:     flex;
    flex-direction: row;
    flex-wrap:  nowrap;
    flex-grow:  1;
    justify-content: flex-start;
}

#error {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #FFF;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    bottom: 30px;
}

#error.show {
    visibility: visible; 
    -webkit-animation: fadein 0.5s, fadeout 0.5s 5.5s;
    animation: fadein 0.5s, fadeout 0.5s 5.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.legendInfo {
    padding: 5px;
    margin-bottom: 5px;
}

.legend_header {
    background: #F3F3F3;
    color: #000;
    padding: 5px;
    width: available;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
}

.legend_header > img {
    width: 40px;
    height: 40px;
}

.legend_table {
    width: 100%;
    padding: 5px;
    background: #FFF;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}

.legend_icon_cell {
    margin-left: 5px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    background-size: 100%;
    background-clip: border-box;
    background-repeat: no-repeat;
}

.legend_road_cell {
    margin-left: 5px;
    width: 40px;
    height: 16px;
    border-radius: 5px;
}

.legend_text_cell {
    padding-left: 5px;
    font-size: 10pt;
    padding-top: 3px;
    padding-bottom: 3px;
}

/* Styling for patrol info frame */
.patrolContent {
    margin-top: 5px;
    border-radius: 5px;
    max-width: 95%;
    height: 350px;
    overflow-y: auto;
    padding: 5px;
}

.ensavoirplus {
    text-align: justify;
    background-color: #455A63;
    font-size: 12px;
    color: #FFF;
    padding: 10px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.ensavoirplus > tr > td > p {
    padding: 5px;
}

.titreensavoirplus {
    background-color: #7cb342;
    font-size: 14px;
    color: #FFF;
    padding: 5px;
}

#footer {
    position: absolute;
    z-index: 3;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5px 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #455A63;
    border-top: 5px solid #7cb342;
    color: #FFF;
}

#footer_logo {
    height: 100%;
}

#footer_logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
    margin-bottom: 4px;
}

@media screen and (max-width: 320px) {
    #footer_logo {
        height: 48px;
    }

    #footer_logo img {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

#footer_content {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px;
}

#footer_right_content, #footer_left_content {
    position: absolute;
}

#footer_right_content {
    right: 10px;
}

#footer_right_content div {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
}

.clickable {
    cursor: pointer;
    cursor: hand;
}

#menu {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index : 5;
    min-width: 24px;
    min-height: 21px;
    line-height: 100%;
    padding : 2px;
    background : transparent;
    border-top : 1px solid #FFF;
    border-right : 1px solid #FFF;
    border-bottom : 1px solid #FFF;
    border-left : 1px solid #FFF;
    color : #FFF;
    font-size : 1em;
    font-weight : bold;
    text-align : center;
    border-radius : 2px;
    border: 1px solid #FFF;
}

.line {
    min-width: 20px;
    min-height: 3px;
    margin: 3px 2px;
    background : #FFF;
    border-radius : 1px;
}

#menuBar {
    position: fixed;
    z-index: 6;
    background: #FFF;
    color: rgb(28, 81, 94);
    overflow-x: hidden;
    overflow-y: auto;
    left: 0;
    width: 100%;
}

.openSubmenu {
    width: calc(100% - 10px);
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
    cursor: pointer;
    cursor: hand;
}

.closeSubmenu {
    font-weight: bold;
}

.menuItem {
    width: calc(100% - 10px);
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
    cursor: pointer;
    cursor: hand;
}

.menuClickable {
    width: calc(100% - 20px);
    padding-left: 15px;
    padding-right: 5px;
    margin-top: 5px;
    font-size: 0.9em;
    cursor: pointer;
    cursor: hand;
}

.menuItem, .openSubmenu > span {
    font-weight: bold;
}

#cameras > .foreground > .foreground_body {
    min-width: 98%;
    max-width: 98%;
    display: flex;
}

#cameraList {
    direction: rtl;
}

.foreground_column {
    overflow-x: hidden;
    overflow-y: auto;
}

.cameraEntry, .cameraFilter {
    margin: 5px 0px;
    color: white;
    text-align: center;
    cursor: pointer;
    cursor: hand;
    direction: ltr;
}

.cameraEntry {
    border-top: 1px solid rgb(28, 81, 94);
    border-bottom: 1px solid rgb(28, 81, 94);
}

#cameraFilterContainer {
    direction: rtl;
}

.cameraFilter {
    display: inline-block;
    width: calc(50% - 4px);
    background: #7cb342;
    color: rgba(50, 50, 50, 0.9);
    font-weight: bold;
    font-size: 0.9em;
    border-radius: 5px;
}

#cameraDisplay {
    background: #D1D1D1;
    border: 1px groove #B3B3B3;
    overflow: hidden;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.returnBtn {
    background-position: center -1508px !important;
}

.disabled {
    margin: 3px 0 3px 3px;
    color: #666666;
    background-color: #aaaaaa;
    border-color: #fd7f76 #8f4843 #8f4843 #fd7f76;
    border: 1px solid;
    margin: 3px 3px 3px 0;
    font-weight: normal;
    font-size: 12px;
    overflow: visible;
    width: auto;
    cursor: pointer;
    cursor: hand;
    outline: none;
}

.itineraryEntry {
    font-weight: bold;
    cursor: pointer;
    cursor: hand;
    margin: 5px 0px;
}
#tarteaucitronRoot div{
    /*background: #000 !important;*/
    bottom:70px !important;
}
.tarteaucitronSelfLink{
    display:none !important;
}
.appContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.inlineButtons {
    float: right;
    display: inline-flex;
    justify-content: flex-end;
}

.app4.main > .appFooter {
    background-color: #455A63;
    padding-top: 10px;
    padding-bottom: 10px;
}

.app4.main > .appFooter > .btnRtn, .app4.main > .appFooter > .btnArw {
    margin-left: auto;
    margin-right: auto;
    float: none;
    min-width: 140px;
    max-width: 60%;
}

/* Portrait & small-screen */
@media screen and (max-aspect-ratio: 1/1) and (max-width: 800px) {
    #cameras > .foreground {
        min-height: 90%;
        margin-top: 5%;
    }

    #cameras > .foreground > .foreground_body {
        height: calc(90% - 55px);
        flex-direction: column-reverse;
    }

    #cameraDisplay {
        max-width: calc(100% - 2px);
    }

    #camList_col {
        margin-top: 5px;
    }

    .foreground_column {
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .cameraEntry {
        padding: 8px;
        width: calc(100% - 16px);
    }

    #subscription > .foreground {
        display: flex;
        flex-direction: column;
        max-height: calc(100% - 24px);
        height: calc(100% - 24px);
        margin-top: 2px;
        width: calc(100% - 24px);
        margin-left: 2px;
    }

    .MobileSmall {
        display: block;
        margin: 8px 4px;
        max-height: 24px;
        max-width: 24px;
        min-height: 24px;
        min-width: 24px;
    }

    .app4.main {
        display: block;
        position: relative;
        padding: 0;
        font-family: Arial;
        text-align: left !important;
        background-color: transparent;
        background: #ffffff;
        height: inherit;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-top: 0;
        border-radius: 5px;
    }

    .app4.main > .appHead, .app4.main > .appBody, .app4.main > .appFooter {
        position: relative;
    }

    .app4.main > .appHead {
        font-size: 1em;
        height: inherit;
    }

    .app4.main > .appBody {
        top: inherit;
        margin: 0;
        font-size: 1em;
        border-left: 5px solid #455A63;
        border-right: 5px solid #455A63;
        border-radius: 0px;
        background-color: #FFF;
        overflow-y: auto;
    }

    .app4.main > .appBody > dl {
        margin-block-start: 0;
        margin-block-end: 0;
    }

    .app4.main > .appBody > dl > dt {
        margin-top: 12px;
    }

    .app4Logo {
        margin-left: 10px;
        width: calc(100% - 40px);
        background-color: #455A63;
        padding: 5px 10px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .app4Logo > img {
        margin-left: 0;
        max-height: 51px;
    }

    .main {
        display: none;
        height: calc(100% - 60px);
        width: calc(100% - 20px);
        margin-top: 55px;
        margin-left: 10px;
        border-radius: 5px;
    }

    .appHead, .appBody {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .appFooter, .appBody {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .appBody {
        margin: 3px;
        overflow-y: auto;
    }

    #account_account > .appFooter {
        height: 42px;
    }

    .appHead_container {
        position: absolute;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .appHead_container > .appHead {
        border: 2px solid #F5A000;
        position: relative;
        width: 29%;
    }

    .appFooter{
        display: flex;
        flex-grow: 0;
        justify-content: space-between;
        align-content: stretch;
    }

    .btnArw, .btnSave, .btnDel, .btnRtn {
        width: calc(33% - 21px);
    }

    #mobile_start_button {
        width: 70%;
    }

    .appBody_container {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .appBody_container > .btnArw {
        border: 2px groove;
        border-radius: 4px;
        border-color: #fd7f76 #8f4843 #8f4843 #fd7f76;
        background-position: right -1494px !important;
        width: 33%;
    }

    #subPaneUpper {
        padding: 1px;
        width: 50%;
        height: 100%;
    }

    .appHead {
        font-size: 12px;
        line-height: 200%;
    }

    #mobile_start_img {
        width: 120px;
        display: block;
        margin-left: calc(50% - 60px);
    }

    #mobile_start_text {
        overflow-y: auto;
        padding: 2px;
    }

    .mobile_account_details_container {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    #account_account_details_table {
        margin: 10px 0px;
        border-collapse: separate;
    }

    #account_account_details_status {
        margin: 2px 0px;
        font-weight: bold;
        color: red;
    }   

    #account_account_details_table > tbody > tr > td > label {
        font-weight: bold;
    }

    #account_account_details_table > tbody > tr > td {
        padding: 2px 10px;
    }

    #account_account_zones > div > div {
        width: 100%;
    }

    #account_account_zones > div > img {
        display: block;
        width: 100%;
    }

    #account_account_itineraries {
        overflow-y: auto;
    }

    .subPaneList {
        -webkit-padding-start: 20px;
    }

    .subPaneHeader {
        font-size: 1.1em;
        font-weight: bold;
    }

    .subPaneText {
        font-size: 12px;
    }

    .app3 {
        left: 51%;
        right: 2%;
        bottom: 0px;
        width: 47%;
    }

    .app1, .app2 {
        display: none;
        top: 5px;
        left: 17.5%;
        width: 75%;
        box-shadow: 2px 2px 5px black;
        border-radius: 5px;
    }

    .app1 > .appHead, .app2 > .appHead {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    } 

    .app1 > .appFooter, .app2 > .appFooter {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    } 

    .app1 > .appBody, .app2 > .appBody {
        padding-top: 5px;
        border-radius: 5px;
    }

    .app3 {
        top: 130px;
    }

    .appInput {
        width: calc(100% - 10px) !important;
    }

}

/* Landscape & small-screen */
@media screen and (min-aspect-ratio: 1/1) and (max-width: 800px) {
    #cameras > .foreground {
        max-height: 90%;
        height: 90%;
        margin-top: 1%;
        width: 94%;
        margin-left: 1%;
    }

    #cameras > .foreground > .foreground_body {
        height: calc(100% - 55px);
        flex-direction: row;
    }

    .foreground_column {
        width: 49%;
        display: inline-block;
    }

    .cameraEntry {
        margin: 0px 2px 8px 2px;
        padding: 8px 4px;
        font-size: 0.9em;
    }

    #camList_col {
        height: 100%;
        width: 43%;
        padding: 0px 3px;
    }

    #camDisplay_col {
        width: 56%;
    }

    #subscription > .foreground {
        display: flex;
        flex-direction: column;
        max-height: calc(100% - 24px);
        height: calc(100% - 24px);
        margin-top: 2px;
        width: calc(100% - 24px);
        margin-left: 2px;
    }

    .MobileSmall {
        display: block;
        margin: 8px 4px;
        max-height: 24px;
        max-width: 24px;
        min-height: 24px;
        min-width: 24px;
    }

    .app4.main {
        display: block;
        position: relative;
        padding: 0;
        font-family: Arial;
        text-align: left !important;
        background-color: transparent;
        background: #ffffff;
        height: inherit;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-top: 0;
        border-radius: 5px;
    }

    .app4.main > .appHead, .app4.main > .appBody, .app4.main > .appFooter {
        position: relative;
    }

    .app4.main > .appHead {
        font-size: 0.85em;
        height: inherit;
    }

    .app4.main > .appBody {
        top: inherit;
        margin: 0;
        font-size: 0.75em;
        border-left: 5px solid #455A63;
        border-right: 5px solid #455A63;
        border-radius: 0px;
        background-color: #FFF;
        overflow-y: auto;
    }

    .app4.main > .appBody > dl {
        margin-block-start: 0;
        margin-block-end: 0;
    }

    .app4.main > .appBody > dl > dt {
        margin-top: 6px;
    }

    .app4Logo {
        margin-left: 10px;
        width: calc(100% - 40px);
        background-color: #455A63;
        padding: 5px 10px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .app4Logo > img {
        margin-left: 0;
        max-height: 38px;
    }

    .main {
        display: none;
        height: calc(100% - 60px);
        width: calc(100% - 20px);
        margin-top: 55px;
        margin-left: 10px;
        border-radius: 5px;
    }

    .appHead, .appBody {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .appFooter, .appBody {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .appHead_container {
        position: absolute;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .appHead_container > .appHead {
        border: 2px solid #F5A000;
        position: relative;
        width: 30%;
    }

    #account_account > .appFooter, #account_login > .appFooter, #account_confirmUnsubscribe > .appFooter {
        display: flex;
        justify-content: space-between;
    }

    .btnArw {
        float: right;
        background-position: right -1508px !important;
    }

    .btnRtn {
        float: left;
    }

    .appBody_container {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .appBody_container > .btnArw {
        border: 2px groove;
        border-radius: 4px;
        border-color: #fd7f76 #8f4843 #8f4843 #fd7f76;
        background-position: right -1494px !important;
        width: 33%;
    }

    #subPaneUpper {
        padding: 1px;
        width: 50%;
        height: 100%;
    }

    .appHead {
        font-size: 16px;
        line-height: 150%;
    }

    #mobile_start_img {
        width: 120px;
    }

    #mobile_start_text {
        position: absolute;
        top: 5px;
        left: 130px;
        max-height: calc(100% - 5px);
        overflow-y: auto;
    }

    .mobile_account_details_container {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    #account_account_details_table {
        margin: 10px 0px;
        border-collapse: separate;
    }

    #account_account_details_status {
        margin: 2px 0px;
        font-weight: bold;
        color: red;
    }   

    #account_account_details_table > tbody > tr > td > label {
        font-weight: bold;
    }

    #account_account_details_table > tbody > tr > td {
        padding: 2px 10px;
    }

    #account_account_zones:nth-child(2) {
        display: flex;
        justify-content: space-around;
    }

    #account_account_zones > div > div {
        display: inline-block;
        max-width: 45%;
    }

    #account_account_zones > div > img {
        display: inline-block;
        height: 100%;
    }

    #account_account_itineraries {
        overflow-y: auto;
    }

    .subPaneList {
        -webkit-padding-start: 20px;
    }

    .subPaneHeader {
        font-size: 1.1em;
        font-weight: bold;
    }

    .subPaneText {
        font-size: 12px;
    }

    .app3 {
        left: 51%;
        right: 2%;
        bottom: 0px;
        width: 47%;
    }

    .app1, .app2 {
        display: none;
        top: 5px;
        left: 17.5%;
        width: 75%;
        box-shadow: 2px 2px 5px black;
        border-radius: 5px;
    }

    .app1 > .appHead, .app2 > .appHead {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    } 

    .app1 > .appFooter, .app2 > .appFooter {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    } 

    .app1 > .appBody, .app2 > .appBody {
        padding-top: 0;
        border-radius: 5px;
    }

    .app3 {
        top: 130px;
    }

    .appInput {
        width: calc(100% - 10px) !important;
    }

    .returnBtn {
        background-position: center -1508px !important;
        float: right;
        height: 14px;
    }

}

/* Large-screen */
@media screen and (min-width: 801px) {

    #cameras > .foreground {
        height: 100%;
    }

    #cameras > .foreground > .foreground_body {
        height: calc(100% - 55px);
        flex-direction: row;
    }

    .foreground_column {
        display: inline-block;
    }

    .cameraEntry {
        padding: 8px;
        width: calc(100% - 16px);
    }

    #camList_col {
        width: 43%;
        padding: 0px 3px;
    }

    #camDisplay_col {
        width: 56%;
    }

    #subscription > .foreground {
        display: flex;
        flex-direction: column;
        max-height: calc(100% - 40px);
        height: calc(100% - 40px);
        margin-top: 10px;
        width: 60%;
        margin-left: 20%;
    }

    #subPaneUpper {
        height: 48%;
    }

    #subPaneText {
        display: inline-block;
        width: calc(100% - 220px);
        height: 100%;
        overflow-y: auto;
    }

    #subPaneImg {
        vertical-align: top;
    }

    #subPaneLower {
        height: 49%;
        display: flex;
        flex-direction: row;
    }

    .MobileSmall {
        display: block;
        margin: 8px;
    }

    .appContainer {
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .app4.main {
        display: block;
        position: relative;
        padding: 0;
        font-family: Arial;
        text-align: left !important;
        background-color: transparent;
        background: #ffffff;
        height: inherit;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-top: 0;
        border-radius: 5px;
    }

    .app4.main > .appHead, .app4.main > .appBody, .app4.main > .appFooter {
        position: relative;
    }

    .app4.main > .appHead {
        font-size: 1em;
        height: inherit;
    }

    .app4.main > .appBody {
        top: inherit;
        margin: 0;
        font-size: 1em;
        border-left: 5px solid #455A63;
        border-right: 5px solid #455A63;
        border-radius: 0px;
        background-color: #FFF;
        overflow-y: auto;
    }

    .app4.main > .appBody > dl {
        margin-block-start: 0;
        margin-block-end: 0;
    }

    .app4.main > .appBody > dl > dt {
        margin-top: 12px;
    }

    .app4Logo {
        margin-left: 10px;
        width: calc(100% - 40px);
        background-color: #455A63;
        padding: 5px 10px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .app4Logo > img {
        margin-left: 0;
        max-height: 51px;
    }

    .main {
        display: none;
        height: calc(100% - 60px);
        width: calc(100% - 20px);
        margin-top: 55px;
        margin-left: 10px;
        border-radius: 5px;
    }

    .appHead, .appBody {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .appFooter, .appBody {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .appBody {
        margin: 3px;
        overflow-y: auto;
    }

    .appHead_container {
        position: absolute;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .appHead_container > .appHead {
        border: 2px solid #557a2f;
        position: relative;
        cursor: pointer;
        cursor: hand;
        width: 29%;
    }

    #account_account > .appHead_container > .appHead.selected {
        background-color: #455A63;
        border: 2px solid #29353b;
        color: #FFF;
    }

    #account_account > .appHead_container > .appHead {
        background-color: #7cb342;
        border: 2px solid #557a2f;
        color: #000;
    }

    #account_account > .appBody_container > .appBody {
        display: none;
    }

    #account_account > .appBody_container > .appBody.selected {
        display: block !important;
    }

    .appFooter{
        height: 48px;
        line-height: 48px;
        display: flex;
        flex-grow: 0;
        justify-content: space-between;
        align-content: stretch;
    }

    .btnArw, .btnSave, .btnDel, .btnRtn {
        text-align: center;
        max-width: 50%;
        height: 38px;
        line-height: 38px;
        font-size: 14pt;
    }

    .btnArw {
        background-position: right -1494px;
    }

    .btnRtn {
        background-position: right -1460px;
    }

    .btnSave {
        background-position: right -1218px;
    }

    .btnDel {
        background-position: right -2420px;
    }

    .app1 > .appFooter, .app2 > .appFooter {
        height: 26px;
        line-height: 26px;
    }

    .app1 > .appFooter > .btnBar > .btnArw, .app2 > .appFooter > .btnBar > .btnArw {
        height: 50%;
        line-height: 100%;
        font-size: 10pt;
        background-position: right -1510px;
    }

    .appBody_container {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .appBody_container > .btnArw {
        border: 2px groove;
        border-radius: 4px;
        border-color: #fd7f76 #8f4843 #8f4843 #fd7f76;
        background-position: right -1494px !important;
        width: 33%;
    }

    .appHead {
        font-size: 20px;
    }

    .account_account_details_container {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    #account_account_details_table {
        margin: 10px 0px;
        border-collapse: separate;
    }

    #account_account_details_status {
        margin: 2px 0px;
        font-weight: bold;
        color: red;
    }   

    #account_account_details_table > tbody > tr > td > label {
        font-weight: bold;
    }

    #account_account_details_table > tbody > tr > td {
        padding: 2px 10px;
    }

    #account_account_zones:nth-child(2) {
        min-width: 666px;
        overflow: auto;
    }

    #account_account_zones > div > div {
        max-width: calc(100% - 508px);
        display: inline-block;
        vertical-align: top;
    }

    #account_account_zones > div > img {
        display: inline-block;
        width: 510px;
        height: 418px;
    }

    #account_account_itineraries {
        overflow-y: auto;
    }

    .subPaneList {
        margin: 4px;
        -webkit-padding-start: 20px;
    }

    .subPaneHeader {
        font-size: 1.1em;
        font-weight: bold;
    }

    .subPaneText {
        font-size: 12px;
    }

    .app1, .app2 {
        top: 48%;
        width: 49%;
        border-radius: 5px;
    }

    .app2 {
        right: 0;
    }

    .app1 > .appHead, .app2 > .appHead {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    } 

    .app1 > .appFooter, .app2 > .appFooter {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    } 

    .app1 > .appBody, .app2 > .appBody {
        padding-top: 0;
        border-radius: 5px;
    }

    .app3 {
        top: 130px;
    }

    .app4 {
        display: block;
        height: 50%;
        width: 70%;
        margin-top: 12.5%;
        margin-left: 12.5%;
    }

    .app4 > .appFooter {
        display: block;
        height: 60px;
    }

    .app4 > .appFooter > #submitBtn {
        width: 140px;
        height: 48px;
        line-height: 52px;
        font-size: 20pt;
        background-position: right -1489px;
        margin-left: calc(50% - 70px);
        padding-left: 6px;
    }

    .appInput {
        width: calc(100% - 10px) !important;
    }
}

#fgalert_body > table {
    width: 100%;
}

.vehicle_popup {
    min-width: 200px;
    font-family: 'Helvetica', arial, sans-serif;
}

.vehicle_popup_title {
    font-weight: bold;
    font-size: 1.1em;
    padding: 6px;
    text-align: center;
    color: #FFF;
    background-color: #455A63;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: solid 2px #7cb342;
}

.vehicle_popup_content {
    border-left: solid 1px #455A63;
    border-right: solid 1px #455A63;
    border-bottom: solid 1px #455A63;
}

.vehicle_popup_prop {
    font-weight: bold;
    background-color: #CCC;
    padding: 3px;
}

.vehicle_popup_val {
    text-align: right;
}

.flash {
    color: #F55;
    padding: 0 6px;
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    border-radius: 10px;
    min-width: fit-content;
}

.flash:hover {
    background-color: #FFF !important;
    font-style: italic;
}

#flashTable {
    width: 100%;
}

.flashSep {
    height: 20px;
}

.flashSep > td > span {
    position: absolute;
    left: 5%;
    right: 5%;
    background-color: #D33;
    height: 2px;
}
