.formbase nav
{
    background:var(--medigrape);
    border-radius:15px 15px 0 0;
    padding:10px;
    height:20px;
    position:relative;
}
.formbase nav label
{
    color:var(--iogurt);
}
.formbase section
{
    height:calc(100vh - 155px);
    width:calc(100vw - 100px);
}
.holdlink
{
    position:absolute;
    cursor:pointer;
}
.holdlink:first-child
{
    left:10px;
}
.holdlink#usericon
{
    right:40px;
}
.holdlink:last-child
{
    right:10px;
}
.holdlink img
{
    width:20px;
    height:20px;
    filter:invert(1);
}
#naviicon
{
    display:none;
}
#homeicon
{
    left:10px;
}

.dropdown
{
    width:105px;
    border-style:solid;
    border-width:0 1px 0 0;
    border-color:var(--iogurt);
    margin-right:10px;
    z-index:99999;
}
nav .dropdown:first-child
{
    padding-left:10px;
    border-left-width:1px;
}
.dropdown ul
{
    opacity:0;
    visibility:hidden;
    list-style-type:none;
    padding:0;
    margin:0;
    margin-top:11px;
    margin-left:-10px;
    width:115px;
    position:fixed;
    z-index:3;
    transition:0.3s;
}
.dropdown ul a
{
    width:100%;
    background:#eee;
    border-style:solid;
    border-width:0 0 1px 0;
    border-color:#aaa;
    height:30px;
    display:flex;
    align-items:center;
    text-decoration:none;
    color:gray;
    font-family:var(--ubuntu);
    font-weight:bold;
    font-size:15px;
    padding-left:8px;
    box-sizing:border-box;
    transition:0.3s;
}
.dropdown ul a:last-child
{
    border-radius:0 0 8px 8px;
}
.dropdown ul a:hover
{
    background:var(--lighgrape);
    cursor:pointer;
    color:white;
}
.dropdown.mini
{
    width:70px;
    border:none;
    margin:0;
}

.subtitle
{
    font-style:italic;
    font-size:14px;
    color:#aaa;
    margin-top:5px;
    width:50%;
}
.subtitle:last-child
{
    text-align:right;
}

#dashview
{
    justify-content:start;
}
.dashview
{
    width:100%;
}
.dashview h6
{
    font-size:18px;
    font-weight:bold;
    color:gray;
    text-align:center;
    margin:auto;
}
.myscroll
{
    display:flex;
    flex-wrap:wrap;
    height:auto;
    overflow-y:scroll;
    border-radius:10px;
    margin:0 5px 5px 5px;
    padding-right:5px;
}
.myscroll.mini
{
    border-radius:5px;
    height:50px;
    margin:5px 0 0 0;
    background:black;
    width:calc(100% - 5px);
    text-align:justify;
}
.myscroll.mini::-webkit-scrollbar
{
    width:10px;
}
.myscroll.mini::-webkit-scrollbar-thumb
{
    background:var(--medigrape);
}
.myscroll.mini p
{
    border:none;
    color:var(--silver);
}
.myscroll::-webkit-scrollbar,
.chatbody::-webkit-scrollbar,
.attelist::-webkit-scrollbar
{
    width:20px;
    height:20px;
}
.myscroll::-webkit-scrollbar-track,
.chatbody::-webkit-scrollbar-track,
.attelist::-webkit-scrollbar-track
{
    background:transparent;
}
.myscroll::-webkit-scrollbar-thumb,
.chatbody::-webkit-scrollbar-thumb,
.attelist::-webkit-scrollbar-thumb
{
    border-radius:10px;
    background:var(--steel);
}
h3.mytitle
{
    margin:0 0 5px 5px;
    color:var(--lighgrape);
    font-family:var(--ubuntu);
    font-size:20px;
}

.rollitem
{
    background:rgba(0, 0, 0, 0.5);
    padding:10px;
    border-radius:5px;
    color:#eee;
    height:fit-content;
    position:relative;
    width:100%;
}
.modalbox .rollitem
{
    box-sizing:border-box;
}
.modalbox .rollitem.chat
{
    height:70vh;
}
.modalbox .rollitem.docu
{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.modalbox .rollitem.docu p
{
    font-size:12pt;
}
.modalbox .rollitem.docu button
{
    color:white;
    width:100%;
    height:25px;
    font-family:var(--frasan);
    font-weight:bold;
}
.modalbox .rollitem.docu button:first-child
{
    background:#0d7d85;
}
.modalbox .rollitem.docu button:last-child
{
    background:#a01c43;
}
.modalbox .rollitem.docu button:hover
{
    background:white;
}
.modalbox .rollitem.docu button:first-child:hover
{
    color:#0d7d85;
}
.modalbox .rollitem.docu button:last-child:hover
{
    color:#a01c43;
}
.rollitem h4, .rollitem p
{
    margin:0;
    cursor:default;
}
.rollitem h4
{
    font-size:16px;
    font-weight:normal;
}
.rollitem p
{
    border-style:solid;
    border-width:0 0 1px 0;
    border-color:#333;
    padding:5px;
    font-weight:500;
    font-family:var(--frasan);
    color:#777;
    text-align:justify;
}
.rollitem p label
{
    width:75px;
    text-align:center;
    font-size:10px;
    font-weight:600;
    font-style:normal;
    padding:2px 0 2px 0;
    border-radius:5px;
    color:#ddd;
    letter-spacing:1px;
    font-family:var(--roboto);
    margin-left:4px;
    user-select:none;
    cursor:default;
    user-select:none;
}
.rollitem p label[type=Pendente]
{
    background:#c02222;
}
.rollitem p label[type=Atendendo]
{
    background:#cea51f;
    color:#222;
}
.rollitem p label[type=Resolvido]
{
    background:#187c2e;
}

.callgrid
{
    display:grid;
    grid-gap:5px;
    grid-template-columns:calc(50% - 137.5px) calc(50% - 127.5px) 255px;
}
button.callbutn, button.calloptn
{
    border-radius:5px;
    height:25px;
    font-size:11px;
    color:var(--silver);
    border:solid 2px var(--silver);
    background:var(--blackblue);
}
button.callbutn:hover
{
    color:var(--silver)
}
button.callbutn:disabled
{
    border-color:var(--petroleum);
    background:var(--petroleum);
    cursor:default;
}
button.callbutn:disabled:hover
{
    color:var(--silver);
}
button.calloptn
{
    min-width:25px;
    max-width:25px;
    padding:0;
    padding-top:2px;
    background:#ddd;
    color:var(--fishoil);
    border-color:var(--fishoil);
    background-position:center;
    background-size:75%;
    background-repeat:no-repeat;
}
button.calloptn[value=clip]
{
    background-image:url("../img/clip-icon-before.png");
}
button.calloptn[value=tech]
{
    background-image:url("../img/tech-icon-before.png");
}
button.calloptn[value=chat]
{
    background-image:url("../img/chat-icon-before.png");
}
button.calloptn:hover,
button.calloptn:focus
{
    background:var(--fishoil);
    background-position:center;
    background-size:75%;
    background-repeat:no-repeat;
}
button.calloptn[value=clip]:hover,
button.calloptn[value=clip]:focus
{
    background-image:url("../img/clip-icon-after.png");
}
button.calloptn[value=tech]:hover,
button.calloptn[value=tech]:focus
{
    background-image:url("../img/tech-icon-after.png");
}
button.calloptn[value=chat]:hover,
button.calloptn[value=chat]:focus
{
    background-image:url("../img/chat-icon-after.png");
}
p.flagsect
{
    display:flex;
    align-items:center;
    font-style:italic;
    font-size:14px;
    position:relative;
}
button.radiobut
{
    all:initial;
    margin-left:5px;
    background:transparent;
    border:solid 2px;
    border-radius:50%;
    height:17px;
    width:17px;
    padding:3px;
    box-sizing:border-box;
    cursor:pointer;
}
button.radiobut.opt1
{
    border-color:#c02222;
}
button.radiobut.opt2
{
    border-color:#cea51f;
}
button.radiobut.opt3
{
    border-color:#ee6617;
}
button.radiobut.opt4
{
    border-color:#1dbb25;
}
button.radiobut.opt5
{
    border-color:#39c3db;
}
button.radiobut.opt6
{
    border-color:#2b2ebe;
}
button.radiobut.opt7
{
    border-color:#891dbb;
}
button.radiobut:hover,
button.radiobut:focus
{
    background:transparent;
}
button.radiobut div
{
    height:100%;
    border-radius:50%;
}
button.radiobut.opt1 div
{
    background:#c02222;
}
button.radiobut.opt2 div
{
    background:#cea51f;
}
button.radiobut.opt3 div
{
    background:#ee6617;
}
button.radiobut.opt4 div
{
    background:#1dbb25;
}
button.radiobut.opt5 div
{
    background:#39c3db;
}
button.radiobut.opt6 div
{
    background:#2b2ebe;
}
button.radiobut.opt7 div
{
    background:#891dbb;
}

.attelist
{
    justify-content:left;
    overflow-x:scroll;
    padding-bottom:5px;
    width:100%;
}
.modalbox .attelist
{
    width:360px;
}
.atteitem
{
    height:75px;
    width:75px;
    background:var(--fishoil);
    padding:5px;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}
.atteitem:hover
{
    background:var(--silver);
}
.atteitem img
{
    height:75px;
    width:75px;
    background:var(--blackblue);
}

.datalist
{
    border-collapse:collapse;
}
.datalist th
{
    text-align:left;
    font-weight:normal;
    color:var(--platinum);
    height:27px;
    cursor:default;
    box-sizing:border-box !important;
}
.datalist td
{
    color:var(--silver);
    cursor:default;
    box-sizing:border-box !important;
}
.datalist td div
{
    width:fit-content;
    transition:0.3s;
}
.datalist td div:hover
{
    color:var(--platinum);
}
.datalist .colsize1
{
    width:100px;
}
.datalist .colsize2
{
    width:150px;
}
.datalist .colsize3
{
    width:200px;
}
.datalist .colsize4
{
    width:250px;
}
.datalist .colsize5
{
    width:300px;
}
.datalist .colsize6
{
    width:350px;
}
.datalist .colsize7
{
    width:400px;
}
.datalist .colsize8
{
    width:450px;
}
.datalist .colsize9
{
    width:500px;
}
.datalist .colsizeA
{
    width:550px;
}
.dataindx
{
    width:calc(100% - 10px);
    background:var(--steel);
    margin-bottom:5px;
    margin-left:5px;
    margin-right:5px;
    border-radius:10px;
}
.datalist.head
{
    margin-left:10px;
}
.datalist.user
{
    width:760px;
}
.datalist.addr
{
    width:606px;
}
button.opclbutn
{
    width:35px;
    height:20px;
    border-radius:5px;
    background:transparent;
    font-size:8px;
    font-family:var(--ubuntu);
    color:#9b9b9b;
    border:solid 2px #9b9b9b;
    padding-top:2px;
}
button.opclbutn:hover,
button.opclbutn:focus
{
    background:#9b9b9b;
    color:var(--blackblue);
}
button.opclbutn.edit
{
    color:var(--editing);
    border:solid 2px var(--editing);
}
button.opclbutn.edit:hover,
button.opclbutn.edit:focus
{
    background:var(--editing);
    color:var(--blackblue);
}
button.opclbutn.excl
{
    color:#ff4463;
    border:solid 2px #ff4463;
}
button.opclbutn.excl:hover,
button.opclbutn.excl:focus
{
    background:#ff4463;
    color:var(--blackblue);
}
button.opclbutn.expo
{
    color:#eb7434;
    border:solid 2px #eb7434;
}
button.opclbutn.expo:hover,
button.opclbutn.expo:focus
{
    background:#eb7434;
    color:var(--blackblue);
}
button.opclbutn.clon
{
    color:var(--cloning);
    border:solid 2px var(--cloning);
}
button.opclbutn.clon:hover,
button.opclbutn.clon:focus
{
    background:var(--cloning);
    color:var(--blackblue);
}
button.opclbutn.rcvr
{
    color:var(--rcvring);
    border:solid 2px var(--rcvring);
}
button.opclbutn.rcvr:hover,
button.opclbutn.rcvr:focus
{
    background:var(--rcvring);
    color:var(--blackblue);
}
.infotext
{
    margin-bottom:15px;
    color:#777;
    font-size:12px;
}
.optssect
{
    position:relative;
}
.optsbutn
{
    min-height:20px;
    min-width:20px;
    background-image:url("https://static.vecteezy.com/system/resources/thumbnails/020/522/357/small/cog-gear-industrial-icon-settings-icon-png.png");
    background-size:cover;
    filter:brightness(2);
    cursor:pointer;
    transition:0.3s;
}
.optsbutn:hover
{
    filter:brightness(2.75);
    transform:rotate(-90deg);
}
.optslist
{
    background:var(--blackblue);
    padding:5px;
    border-radius:10px;
    min-width:125px;
    box-sizing:border-box;
    position:absolute;
    z-index:10;
    display:flex;
    flex-wrap:wrap;
    top:-5px;
    left:25px;
    opacity:0;
    visibility:hidden;
    box-shadow:0 0 15px 1px var(--fishoil);
    transition:0.3s;
}

.chatbody
{
    height:calc(100% - 40px);
    overflow-y:scroll;
    justify-content:start;
}
.chatbody::-webkit-scrollbar-track,
.attelist::-webkit-scrollbar-track
{
    background:rgba(0, 0, 0, 0.25);
    border-radius:10px;
}
.chatmsge
{
    width:80%;
    border-radius:5px;
    padding:5px 8px 5px 8px;
    box-sizing:border-box;
}
.chatmsge.rem
{
    background:var(--sand);
    margin-left:calc(20% - 5px);
}
.chatmsge.des
{
    background:white;
}
.chatmsge h1.msge,
.chatmsge p.msge,
.chatmsge h6.msge
{
    all:initial;
    margin:0;
    font-family:var(--frasan);
    font-size:15px;
}
.chatmsge h1.msge
{
    font-weight:bold;
}
.chatmsge p.msge
{
    word-break:break-word;
}
.chatmsge h6.msge
{
    float:right;
    font-style:italic;
}
.chatmsge img.msge
{
    width:100%;
    cursor:pointer;
    border-radius:5px;
    transition:0.3s;
}
.chatmsge img.msge:hover
{
    filter:brightness(0.85);
}
.chatmsge.des img.msge
{
    background:var(--silver);
}
.chatmsge.des h1.msge
{
    color:var(--silver);
}
.chatmsge.des p.msge,
.chatmsge.des h6.msge
{
    color:var(--silver);
}
.chatmsge.rem h1.msge
{
    color:var(--dirt);
}
.chatmsge.rem p.msge,
.chatmsge.rem h6.msge
{
    color:var(--dirt);
}
.chatmsge.rem img.msge
{
    border-radius:5px;
    background:var(--dirt);
    transition:0.3s;
}
.chatmsge.rem img.msge:hover
{
    filter:brightness(0.75);
}
.sendmsge
{
    position:absolute;
    bottom:10px;
    width:calc(100% - 20px);
    border-radius:5px;
}
.sendmsge textarea
{
    height:30px;
    width:calc(100% - 30px);
    border-radius:5px;
    padding:6px;
    box-sizing:border-box;
}
.sendmsge button[title=Enviar],
.sendmsge button[title=Anexar]
{
    width:30px;
    height:30px;
    background:var(--silver);
    border-radius:5px;
    background-image:url("../img/send-icon-before.png");
    background-size:50%;
    background-repeat:no-repeat;
    background-position:center;
}
.sendmsge button[title=Anexar]
{
    background-image:url("../img/imge-icon-before.png");
}
.sendmsge button[title=Enviar]:disabled,
.sendmsge button[title=Anexar]:disabled
{
    filter:brightness(0.5);
    cursor:default;
}
.sendmsge button[title=Enviar]:not(:disabled):hover,
.sendmsge button[title=Anexar]:not(:disabled):hover
{
    background:#ddd;
    background-size:50%;
    background-repeat:no-repeat;
    background-position:center;
}
.sendmsge button[title=Enviar]:not(:disabled):hover
{
    background-image:url("../img/send-icon-after.png");
}
.sendmsge button[title=Anexar]:not(:disabled):hover
{
    background-image:url("../img/imge-icon-after.png");
}
.ntfychat
{
    position:absolute;
    bottom:50px;
    right:35px;
    height:25px;
    width:25px;
    color:white;
    border-radius:50%;
    background:var(--trouble);
    font-size:14px;
    align-content:center;
    text-align:center;
    visibility:hidden;
}
.acimganx
{
    position:absolute;
    opacity:0;
    visibility:hidden;
    transform:scale(0);
    padding:5px;
    border-radius:15px;
    background:var(--fishoil);
    box-shadow:0 5px 25px 10px black;
    transition:0.3s;
}
.acimganx h1
{
    width:100%;
    background:var(--blackblue);
    border-radius:10px 10px 0 0;
    color:var(--silver);
    margin:0;
    padding:10px;
    box-sizing:border-box;
    font-size:13px;
}
.acimganx img
{
    border-radius:0 0 10px 10px;
    width:350px;
    background:var(--platinum);
}
.acimganx button
{
    width:100%;
    height:26px;
    font-family:var(--ubuntu);
    font-weight:bold;
    color:white;
}
.acimganx button:first-child
{
    background:var(--silver);
}
.acimganx button:first-child:hover
{
    color:var(--silver);
    background:white;
}
.acimganx button:last-child
{
    background:#3a6b44;
}
.acimganx button:last-child:hover
{
    color:#3a6b44;
    background:white;
}
.acimganx.zoomimge button
{
    background:var(--silver);
    border-radius:13px;
}
.acimganx.zoomimge button:hover
{
    color:var(--silver);
    background:white;
}
.acimganx .zoomarea
{
    height:75vh;
    aspect-ratio:1/1;
    border-radius:13px;
    overflow-y:scroll;
    padding-right:5px;
    box-sizing:border-box;
}
.acimganx .zoomarea::-webkit-scrollbar
{
    width:6px;
    height:6px;
}
.acimganx .zoomarea::-webkit-scrollbar-track
{
    background:transparent;
}
.acimganx .zoomarea::-webkit-scrollbar-thumb
{
    background:var(--silver);
    border-radius:3px;
}
.acimganx .zoomarea img
{
    -webkit-user-drag:none;
    width:100%;
    border-radius:13px;
}
.acimganx .zoomview
{
    border-radius:13px;
    cursor:default;
}

.rollitem.occo h4,
.rollitem.occo h5,
.rollitem.occo label
{
    margin:0;
    font-weight:normal;
}
.rollitem.occo h4
{
    font-size:18px;
    line-height:18px;
}
.rollitem.occo h5
{   
    font-size:14px;
}
.rollitem.occo label
{
    margin-top:10px;
    line-height:10px;
}
.rollitem.occo img
{
    height:200px;
    min-width:150px;
    max-width:150px;
    border-radius:5px;
}
.rollitem.occo button.fnshocco
{
    position:absolute;
    width:fit-content;
    z-index:99999;
    right:0;
    padding:0 8px 0 10px;
    border-radius:0 3px 0 8px;
}
.rollitem.occo .infocard
{
    height:146px;
    width:190px;
    overflow-y:scroll;
    overflow-x:hidden;
    padding-right:10px;
}
.rollitem.occo .infocard::-webkit-scrollbar
{
    background:rgba(0, 0, 0, 0.5);
    border-radius:4px;
    width:8px;
}
.rollitem.occo .infocard::-webkit-scrollbar-thumb
{
    background:var(--purple);
    border-radius:4px;
}
button.alertoff
{
    position:absolute;
    left:calc(50% - 90px);
    top:calc(50% - 90px);
    width:180px;
    height:180px;
    background:#121212;
    border-radius:50%;
    border:ridge 20px var(--trouble);
    color:var(--trouble);
    font-size:22px;
    font-family:var(--roboto);
    z-index:99999;
}
button.alertoff:not(.help)
{
    animation:pulse 0.5s steps(1) infinite;
}
button.alertoff.help
{
    left:calc(50% - 135px);
    top:calc(50% - 135px);
    width:270px;
    height:270px;
    border-width:30px;
    font-size:33px;
}
button.alertoff:hover
{
    transform:scale(0.85);
}
@keyframes pulse
{
    0%, 49.999%
    {
        background:var(--trouble);
        border-color:#121212;
        color:#121212;
        box-shadow:0 0 15px 10px var(--trouble);
    }
    50%, 100%
    {
        background:#121212;
        border-color:var(--trouble);
        color:var(--trouble);
        box-shadow:0 0 15px 10px #121212;
    }
}
.rollitem.occo .location
{
    border-radius:5px;
    width:100%;
    height:200px;
}
.rollitem.occo .location > div
{
    border-radius:5px;
    width:100%;
    height:100%;
    background-image:url("../img/not-found-location.png");
    background-position:center;
    background-size:cover;
}
.custom-marker .mark .spot
{
    width:16px;
    height:16px;
    background-color:#4172cc;
    border-radius:50%;
    box-shadow:0 0 5px 1px rgba(0,0,0,0.5);
}
.custom-marker .mark .spot div
{
    width:8px;
    height:8px;
    border-radius:50%;
    background:white;
    z-index:2;
}
.custom-marker .mark .base
{
    width:0;
    height:0;
    margin:-5px 0 0 0;
    border-left:8px solid transparent;
    border-right:8px solid transparent;
    border-top:10px solid #4172cc;
}
.custom-marker .mark label
{
    margin:3px 0 0 0;
    color:white;
    background:rgba(0, 0, 0, 0.5);
    padding:2px 4px 2px 4px;
    font-weight:bold;
}

.occodash
{
    width:100%;
    height:auto;
    background:transparent;
    padding:20px;
    box-sizing:border-box;
}
.dashgrph
{
    height:100%;
    border-style:solid;
    border-color:#dcdcdc;
    border-width:0 0 2px 2px;
}
.grphitem
{
    justify-content:end;
    margin-bottom:-18px;
    text-align:center;
}
.grphitem:hover .itembody
{
    background:#dcdcdc;
    box-shadow:0 -1px 12px 1px var(--olive);
}
.grphitem .itembody
{
    background:var(--olive);
    width:30px;
    transition:0.3s;
}
.grphitem .itemlabl
{
    font-size:12px;
    color:#dcdcdc;
}
.grphitem .itemlabl:nth-child(2)
{
    color:var(--olive);
    margin-bottom:5px;
}
.grphitem .itemlabl:last-child
{
    font-size:10px;
    margin-top:5px;
    font-weight:normal;
}

.rollitem td b
{
    filter:brightness(1.25);
}
.rollitem td span
{
    position:relative;
}
.rollitem td span label
{
    position:absolute;
    visibility:hidden;
    opacity:0;
    background:rgba(0, 0, 0, 0.75);
    border:solid 1px var(--olive);
    color:var(--olive);
    box-shadow:0 0 5px 1px var(--olive);
    width:max-content;
    border-radius:5px;
    font-size:12px;
    font-weight:normal;
    bottom:-16px;
    left:8px;
    padding:5px;
    user-select:none;
    transition:0.3s;
}
.rollitem td span:hover label
{
    visibility:visible;
    opacity:1;
}

.vctmdata
{
    position:relative;
    width:100%;
    height:45px;
    border-radius:5px;
    padding:5px;
    background:var(--steel);
    box-sizing:border-box;
}
.vctmlabl
{
    position:absolute;
    width:125px;
    top:0;
    left:0;
    border-radius:10px 0 10px 0;
    background:var(--steel);
    padding:2px 5px 2px 5px;
    color:var(--platinum);
    font-weight:bold;
    font-size:10px;
    font-style:italic;
    font-family:var(--monosp);
    box-sizing:border-box;
}
.vctmvlue
{
    width:100%;
    height:100%;
    background:black;
    border-radius:5px;
    color:gray;
    font-size:12px;
    font-family:var(--monosp);
    padding:5px;
    padding-top:14px;
    box-sizing:border-box;
    overflow-y:scroll;
}
.vctmvlue::-webkit-scrollbar
{
    width:6px;
}
.vctmvlue::-webkit-scrollbar-track
{
    background:rgba(255, 255, 255, 0.1);
    border-radius:0 3px 3px 0;
}
.vctmvlue::-webkit-scrollbar-thumb
{
    border-radius:6px;
    background:var(--silver);
}
.switchbt
{
    position:absolute;
    background-size:75%;
    background-image:url("https://static.thenounproject.com/png/1881840-200.png");
    background-repeat:no-repeat;
    background-color:transparent;
    height:15px;
    width:15px;
    filter:invert(1);
    top:5px;
    right:25px;
    cursor:pointer;
}
.vtshbutn
{
    width:100%;
    border-radius:12px;
    height:24px;
    background:var(--steel);
    font-family:var(--roboto);
    color:var(--platinum);
    cursor:pointer;
    transition:0.3s;
}
.vtshbutn:hover
{
    background:var(--platinum);
    color:var(--steel);
}
.inspinpt
{
    color:var(--platinum);
    background:var(--fishoil);
    border-radius:4px;
    padding:2px 4px 2px 4px;
    height:24px;
    box-sizing:border-box;
}
.inspinpt::-webkit-calendar-picker-indicator
{
    cursor:pointer;
    filter:invert(95%) sepia(100%) saturate(500%) hue-rotate(240deg);
    padding:0;
}
.inspbutn
{
    height:25px;
    width:25px;
    background:transparent;
    border-radius:5px;
    border:solid 2px white;
    box-sizing:border-box;
    backdrop-filter:2px;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
}
.inspbutn:nth-child(1):hover
{
    box-shadow:inset 0 0 15px var(--editing);
}
.inspbutn:nth-child(2):hover
{
    box-shadow:inset 0 0 15px var(--trouble);
}
.inspbutn img
{
    height:15px;
    filter:invert(1);
}

.myscroll.qest label
{
    font-size:14px;
    width:280px;
    text-align:left !important;
}