* {
            box-sizing: border-box;
        }

        
        .flex {
            max-width: 100%
        }

        select {
            width: auto;
            font-size: 14px;
            padding: 0px 0px;
            border: 0px;
            /*border-radius: 4px;*/
            background-color: white;
        }

        input[type=text] {
            width: 260px;
            font-size: 14px;
            padding: 10px 10px;
            border: 1px;
            border-radius: 1px;
        }

        input[type=submit] {
            /*width: 100px;*/
            background-color: #9dbf69;
            font-size: 14px;
            border: none;
            color: white;
            padding: 10px 10px;
            margin: 4px 2px;
            text-decoration: none;
            cursor: pointer;
            white-space: normal;
        }

        input[type=reset] {
            background-color: #64777d;
            border: 0px;
            width: 30px;
            height: 30px;
            color: white;
            /*padding: 4px 4px;*/
            text-decoration: none;
            /*margin: 4px 2px;*/
            cursor: pointer;
        }

        input[type=button] {
            width: 100%;
            white-space: normal;
            background-color: #9dbf69;
            border: none;
            color: white;
            padding: 4px;
            /*text-decoration: none;*/
            margin: 4px 2px;
            cursor: pointer;
        }

        p {
            /*border-bottom: 1px solid #64777d;*/
            font-size: 14px;
            background-color: white;
            /*border: 1px solid #375039;*/
            padding: 6px 6px;
            /*border-radius: 4px;*/
            /*background-color: #375039;*/
            color: black;
            font-weight: bold;
            margin: 0px;
        }

        p.uno {
            padding: 0px 0px;
            font-size: 0px;
            background-color: white;
            /*border-left: 3px solid #64777d;*/
            border-bottom: 2px solid #64777d;
        }

        p.due {
            padding: 0px 0px;
            font-size: 0px;
            background-color: white;
            /*border-left: 3px solid #64777d;*/
            border-bottom: 4px solid #64777d;
        }

        .tooltip {
            position: relative;
            display: inline-block;
            border-bottom: none;
            width: 100%;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 500px;
            background-color: white;
            color: black;
            text-align: left;
            border-radius: 6px;
            padding: 8px 8px;
            font-size: 12px;
            font-family: "Courier New";
            /* Position the tooltip */
            position: absolute;
            z-index: 1;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
        }

        .nice-select.open .list {
            max-height: 400px;
            overflow-y: scroll;
        }