.smallfont {
    font-size: 14px;
}

.smallerfont {
    font-size: 12px;
}

.mediumfont {
    font-size: medium;
}

.bold {
    font-weight: bold;
}

.nowrap {
    white-space: nowrap;
}

.maxwidth {
    width: 100%;
}

.dropdownselect3 {
    background-color: #BFBFBF;
    font-size: 12px;
    color: black;
    width:76px;
}

.div-traffic {
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
}

.titlerow {
    display: flex;
    font-size: 24px;
    color: black;
    background-color: papayawhip;
    padding-top: 5px;
    padding-bottom: 10px;
}

.email-title-row {
    padding: 10px 0px 2px 2px;
    background-color: lightblue;
}

.email-textarea {
    padding: 2px;
    background-color: white;
    font-size: 12px;
    font-family: sans-serif;
}
a{
    padding: 3px;
    font-weight:normal;
    background-color:aliceblue;
}
a:hover{
    font-weight:bold;
    background-color:yellow;

}

.inforow {
    display: flex;
    font-size: medium;
    color: black;
    background-color: azure;
    padding-top: 5px;
    padding-bottom: 10px;
}

    .inforow::before {
        font-weight: bold;
        color: navy;
        content: "Status/Statut: ";
    }



.div-table {
    display: table;
    background-color: white;
    overflow-y: scroll;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    border-width: 2px;
    border-color: black;
    padding: 5px 5px 5px 5px;
    font-size: small;
    font-family: Arial, sans-serif;
    vertical-align: middle;
}

.div-title-row {
    display: table-row;
    background-color: papayawhip !important;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

    .div-title-row > div { /*div-title-cell*/
        display: table-cell;
        padding: 2px 10px 3px 5px;
        border-bottom: 1px solid rebeccapurple;
    }

.div-table-row {
    display: table-row;
    background-color: #FFFFFF;
    font-size: 12px;
    vertical-align: middle;
}

    .div-table-row:hover {
        background-color: lightcyan !important;
        xcolor: yellow;
    }

    .div-table-row > div:not(:last-child) { /*div-table-cell*/
        display: table-cell;
        padding: 2px 5px 2px 5px; /*top right bottom left*/
        border-bottom: 1px solid rebeccapurple;
    }

    .div-table-row > div:last-child { /*div-table-cell*/
        display: table-cell;
        padding: 2px 0px 2px 5px; /*top right bottom left*/
        border-bottom: 1px solid rebeccapurple;
    }

.div-table-cell {
    padding: 10px 10px 10px 10px;
}

.div-whole-row {
    display: flex;
    xcolumn-span: all;
    column-count: 3;
    width: 75%;
}

.wideinput {
    position: relative;
}

.cart-column {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    margin-right: 1.5em;
    padding-bottom: 1px;
    padding-left: 5px;
    margin-top: 2px;
}

.cart-row {
    display: flex;
}

    .cart-row:hover {
        background-color: #2D9CDB;
        color: white;
    }

.cart-item {
    width: 45%;
}

.cart-item-title {
    color: #333;
    margin-bottom: 8px;
    font-size: large;
    font-weight: bold;
    width: 100%;
    display: flex;
}

.cart-item-full {
    width: 100%;
    text-wrap: normal;
}

.cart-item-fit {
    width: auto;
    white-space: nowrap;
}

.cart-body {
    background-color: white;
    overflow-y: scroll;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    border-width: 2px;
    border-color: black;
    padding: 5px 5px 5px 5px;
    font-size: small;
    font-family: Arial, sans-serif;
}

.cart-placeholderx {
    background-color: ghostwhite;
    overflow: scroll;
    /**border-style: solid;
    border-radius: 1px 1px 1px 1px;
    border-width: 2px;
    border-color: grey;*/
    padding: 15px 1px 1px 5px;
    font-size: small;
    font-family: Arial, sans-serif;
}

.cart-placeholder {
    overflow: scroll;
    /**border-style: solid;
    border-radius: 1px 1px 1px 1px;
    border-width: 2px;
    background-color: ghostwhite;
    border-color: grey;*/
    padding: 15px 1px 1px 5px;
    font-size: small;
    font-family: Arial, sans-serif;
    background: ghostwhite;
    backdrop-filter: saturate(180%) blur(10px);
}

.savefilename {
    color: black;
    font-size: medium;
    font-size: 14px;
    /*padding: 8px;*/
}

.savefiletext {
    color: black;
    font-size: medium;
}

    .savefiletext:hover {
        color: black;
        background-color: lightblue;
        font-size: medium;
    }

    .savefiletext:after {
        color: black;
        background-color: darkgrey;
        font-size: medium;
    }

.btn {
    /* text-align: center;
    vertical-align: middle;
    margin: 2px;*/
    place-items: center stretch;
    padding: .35em .75em .35em .75em;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 1px solid black;
    border-radius: .3em;
}


.btn-primary {
    color: white;
    background-color: #56CCF2;
    font-weight: bold;
}

    .btn-primary:hover {
        background-color: #2D9CDB;
        transition: 0.3s;
    }

.btn-danger {
    color: white;
    background-color: #EB5757;
    font-weight: bold;
}

    .btn-danger:hover {
        background-color: #CC4C4C;
        transition: 0.3s;
    }

.btn-cancel {
    color: black;
    background-color: papayawhip;
    font-weight: bold;
}

    .btn-cancel:hover {
        background-color: darkslategrey;
        color: white;
        transition: 0.3s;
    }

.btn-green {
    color: black;
    background-color: lightgreen;
    font-weight: bold;
}

.btn-purple {
    font-size: 22px;
    font-weight: normal;
    color: #ffffff; /*CL_WHITE*/
    background-color: #715da3; /*NPURPLE*/
}

    .btn-purple:hover {
        font-weight: bold;
        color: #715da3; /*NPURPLE*/
        background-color: #ffffff; /*CL_WHITE*/
        transition: 0.19s;
    }

.hidden {
    display: none;
}

[data-tooltip] {
    position: relative;
    z-index: 9000;
}

    [data-tooltip]:hover:after {
        content: attr(data-tooltip);
        position: absolute;
        /*width:120%;*/
        background-color: black;
        color: white;
        padding: .25rem;
        top: -.5rem;
        left: 50%;
        transform: translate(-10%,-50%);
        font-family: Arial;
        font-size: smaller;
        white-space: pre;
        display: inline-block;
    }


.infotexthover2 {
    width: 25%; /* add the width here */
    position: static;
    background-color: white;
    color: black;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    border-width: 2px;
    border-color: black;
    padding: 5px 5px 5px 5px;
    font-size: medium;
    font-family: Arial, sans-serif;
    margin: -100px auto auto -100px;
    z-index: 90210;
}

.infotexthover {
    display: flex;
    width: max-content;
    height: auto;
    position: absolute;
    background-color: darkblue;
    color: white;
    top: 0;
    left: 35%;
    margin-top: auto;
    margin-left: auto;
    padding: 15px 1px 15px 10px;
    z-index: 90210;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    border-width: 2px;
    border-color: white;
    overflow: auto;
    opacity: 0; /*start hidden*/
}

.infotextx {
    font-weight: normal;
    font-size: small;
    xbackground-color: lightgrey;
    xcolor: white;
    position: relative;
    xbottom: 0.1em;
    xfont-size: 0.8em;
}

    .infotextx:hover {
        cursor: pointer;
        background-color: rebeccapurple;
        font-size: medium;
        xfont-weight: bolder;
    }

a:visited {
    color: white;
}


input[type=checkbox] {
    xposition: relative;
    cursor: pointer;
    padding: 5px;
    width: 16px;
    height: 16px;
    border: 2px solid black;
    xborder-width: 0 2px 2px 0;
}

    input[type=checkbox]:checked {
        xposition: relative;
        cursor: pointer;
        padding: 5px;
        width: 16px;
        height: 16px;
        border: 10px solid blue;
        xborder-width: 0 2px 2px 0;
    }

.checkboxtext {
    vertical-align: top;
    font-size: 14px;
    font-family: Arial, sans-serif;
    padding-bottom: 10px;
    padding-top: 10px;
}
