#__bs_notify__ {
    display: none !important;
}

html
{
--scrollbarBG: #ededed;
--thumbBG: #c6c6c6;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
    background-color: #F3F5F7;
    font-family: "Inter";
    margin: 0;
}

body::-webkit-scrollbar {
    width: 11px;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}


input[type=number]::-webkit-inner-spin-button {
    opacity: 1
}

input
{
    font-family: "Inter-Light";
    height: 40px;
    width: 180px;
    border: 1px solid #c4c4c4;
    border-radius: 7px;
    padding-left: 15px;
    padding-right: 15px;
    /*padding-inline: 0px;*/
    font-size: 14px;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.95);

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input.searchicon
{
    background-image: url('../assets/icons/search black2.svg');
    background-position: 10px 10px; 
    background-size: 18px;
    background-repeat: no-repeat;
    padding-left: 35px;
}


.bdefault
{
    height: 38px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
    background-color: #0782FF;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    font-weight: bold;
}

.bdefault img
{
    max-width: 20px;
    max-height: 20px;
    margin-right: 15px;
}

.bdefault svg
{
    max-width: 50px;
    max-height: 50px;
}

.bdefault:hover
{
    background-color: #52a8ff;
}

.bMenuHamburguer
{
    display: none;
}

.topbar
{
    z-index: 2;
    background-color: white;
    height: 72px;
    width: 100vw;
    /* position: fixed; */
    top: 0;
    left: 0;
    box-shadow: 0px 3px 7px 1px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.topbar .logo
{
    max-height: 25px;
    margin-right: 40px;
}

.topbar a
{
    text-decoration: none;
    color: #5f6368;
    margin-right: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}


.topbar a.selected
{
    background-color: #eef5ff;
    color: #0782FF;
    font-weight: 600;
}

.topbar a:hover
{
    background-color: #f5f5f5;
    color: #21242a;
}

.topbar a.selected:hover
{
    background-color: #e0efff;
    color: #0782FF;
}


.topbar .lopt
{
    margin-left: 25px;
    display:flex;
}

.topbar .lopt .blocoMenuTopoDesktop
{
    display:flex;
    justify-content: center;
    align-items: center;
}

.topbar .ropt
{
    margin-right: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.topbar .ropt img
{
    margin-left: 15px;
}

.topbar .ropt img:hover
{
    cursor: pointer;
}

.imguser
{
    background-color: white;
    border: 1px solid #d8d8d8;
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
}


.footerbar
{
    background-color: white;
    height: 30px;
    width: 100vw;
    position: fixed;
    bottom: 0px;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    color:#6a6a6a;
}

.footerbar .lopt
{
    margin-left: 25px;
}

.footerbar .ropt
{
    margin-right: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footerbar svg
{
    margin-left: 12px;
}



.content
{
    position: fixed;
    top: 72px;
    left: 0px;
    width: calc(100vw - 80px);
    height: calc(100vh - 72px - 30px - 30px);
    padding-left: 40px;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
}

.content .panel_left
{
    width: 260px;
    border: 0px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.content .panel_left hr
{
    width: 90%;
    height: 1px;
    background-color: rgb(230, 230, 230);
    border: none;
    margin-bottom: 20px;
}

.content .panel_left #nomeestabelecimento
{
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.content .panel_left #panqtdlojas
{
    font-size: 12px;
    color: #6a6a6a;
    margin-bottom: 10px;
}

.content .panel_left .panel_left_menu
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.content .panel_left .panel_left_menu_item
{
    display: flex;
    background-color: #ffffff;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #5c5c5c;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.2s ease, color 0.2s ease;
    user-select: none;
}

.content .panel_left .panel_left_menu_item:hover
{
    background-color: #eef5ff;
    color: #0782FF;
    cursor: pointer;
    outline: 1px solid #0783ff5f;
    outline-offset: 0px;
    border: none;
}

.content .panel_left .panel_left_menu_item.selected
{
    background-color: #0782FF;
    color: white;
    box-shadow: 0 6px 18px rgba(7, 130, 255, 0.18);
    position: relative;
}

.content .panel_left .panel_left_menu_item.selected::after {
    content: '';
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
    width: 8px;
    height: 8px;
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    pointer-events: none;
}

.content .panel_left .panel_left_menu_item.selected:hover
{
    background-color: #60afff;
    color: white;
    box-shadow: 0 6px 18px rgba(7, 130, 255, 0.18);
}

.content .panel_left .panel_left_menu_item svg
{
    width: 22px;
    height: 22px;
    stroke: currentColor;
}


.content .panel_left .panel_left_menu_item_red
{
    display: flex;
    background-color: #ffffff;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #5c5c5c;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.2s ease, color 0.2s ease;
    user-select: none;
}

.content .panel_left .panel_left_menu_item_red:hover
{
    background-color: rgb(255, 235, 235);
    color: #ff0000;
    cursor: pointer;
    outline: 1px solid #ff000038;
    outline-offset: 0px;
    border: none;
}

.content .panel_left .panel_left_menu_item_red.selected
{
    background-color: #ff0000;
    color: white;
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.18);
    position: relative;
}

.content .panel_left .panel_left_menu_item_red.selected::after {
    content: '';
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
    width: 8px;
    height: 8px;
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    pointer-events: none;
}

.content .panel_left .panel_left_menu_item_red.selected:hover
{
    background-color: #ff7373;
    color: white;
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.18);
}

.content .panel_left .panel_left_menu_item_red svg
{
    width: 22px;
    height: 22px;
    stroke: currentColor;
}




.content .mainpanel
{
    flex: 1;
    border: 0px solid black;
    display: flex;
    flex-direction: column;
    align-items: start;
    /* overflow: hidden; */
}

.content .mainpanel .panel_right
{
    flex: 1;
    border: 0px solid black;
    display: flex;
    flex-direction: column;
    align-items: start;
    overflow: auto;
    padding-bottom: 30px;
    margin-top: 15px;
    scrollbar-color: #0782FF var(--scrollbarBG);
}

.content .mainpanel .panel_right.noscroll
{
    overflow-x: hidden;
    width: 100%;
    scrollbar-color: #0782FF var(--scrollbarBG);
}

.content .mainpanel .panel_right hr
{
    width: 100%;
    height: 1px;
    border:1px solid rgb(230, 230, 230);
    margin-bottom: 20px;
}

.content .mainpanel .navoptions
{
    height: 50px;
    width: 100%;
    border: 0px solid black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-decoration: solid;
    align-items: center;
}

.content .mainpanel .navoptions .linkbar
{
    width: 450px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: solid;
    border: 0px solid red;
}

.content .mainpanel .navoptions .filters
{
    display: flex;
    width: 300px;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    text-decoration: solid;
    border: 0px solid blue;
    font-size: 13px;
    color: #21242a;
}

.content .mainpanel .navoptions a
{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: solid;
    color: #a3a3a3; /*#21242a*/
    font-size: 14px;
    stroke:#a3a3a3;
    margin-right: 40px;
    font-weight: bold;
    stroke-width: 2.0;
    cursor: pointer;
    transition: font-size 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.content .mainpanel .navoptions a svg
{
    max-width: 14px;
    max-height: 14px;
    margin-right: 8px;
}

.content .mainpanel .navoptions a:hover
{
    color: #21242a;
    stroke:#21242a;
}

.content .mainpanel .navoptions a.selected
{
    color: #0782FF;
    stroke:#0782FF;
    filter: drop-shadow(0px 0px 5px #0783ff45);
    font-size: 15px;
}

/* Help area */
.help-wrapper
{
    margin-top: 10px;
    margin-left:50px;
    width: 85%;
    background: linear-gradient(135deg, #f7faff 0%, #ffffff 45%, #f1f6ff 100%);
    border: 1px solid #e6ecf5;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(7, 130, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.help-wrapper::after
{
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(7,130,255,0.16) 0%, rgba(7,130,255,0) 60%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.help-wrapper::before
{
    content: "";
    position: absolute;
    /* width: 180px;
    height: 180px; */
    background: radial-gradient(circle, rgba(50,50,50,0.05) 0%, rgba(50,50,50,0) 65%);
    bottom: -60px;
    left: -40px;
    pointer-events: none;
}

.help-hero
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.help-hero-info
{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-badge
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(7, 130, 255, 0.1);
    color: #0782FF;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.help-title
{
    font-size: 26px;
    font-weight: 800;
    color: #1f2733;
}

.help-subtitle
{
    font-size: 15px;
    color: #4b5563;
    max-width: 720px;
    line-height: 1.6;
}

.help-meta
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.help-meta .chip
{
    padding: 8px 12px;
    border-radius: 10px;
    background: #f0f4fb;
    color: #2d3748;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #e1e8f3;
}

.help-illustration
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-illustration svg
{
    max-width: 360px;
    width: 100%;
    height: auto;
}

.contact-options
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.contact-card
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e5e9f0;
    background: #ffffff;
    color: #1f2733;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-card:hover
{
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(7, 130, 255, 0.12);
    border-color: #d7e7ff;
}

.contact-card__top
{
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-headline h3
{
    margin: 0;
    font-size: 16px;
    font-weight: 800;
}

.contact-headline p
{
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
}

.contact-icon
{
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f6ff;
    color: #0782FF;
}

.contact-card.whatsapp .contact-icon
{
    background: linear-gradient(135deg, #e8f7ef, #d1f2e0);
    color: #1f9d55;
}

.contact-card.email .contact-icon
{
    background: linear-gradient(135deg, #eef2ff, #e2e8ff);
    color: #3949ab;
}

.contact-card__footer
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.contact-btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #0782FF;
    color: white;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 10px 20px rgba(7, 130, 255, 0.18);
}

.contact-hint
{
    font-size: 12px;
    color: #4b5563;
    font-weight: 600;
}

.help-note
{
    font-size: 13px;
    color: #475569;
    background: #f8fbff;
    border: 1px dashed #d7e7ff;
    padding: 12px 14px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

@media (max-width: 720px) {

    .help-wrapper
    {
        padding: 22px;
    }

    .contact-card__footer
    {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-btn
    {
        width: 100%;
        justify-content: center;
    }
}

.listcontents
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    width: 100%;
    gap: 20px;
    height: 100%;
}

.cardworkspace_skeleton
{
    margin-top: 20px;
    border-radius: 8px;
    min-width: 220px;
    height: 63px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    ),
    rgb(228, 228, 228);
    background-repeat: repeat-y;
    background-size: 120px 500px;
    background-position: -220px 0;
    animation: shine 1.2s infinite;
}
@keyframes shine {
    to {
        background-position: 200% 0, /* move highlight to right */ 0 0;
    }
}



.cardworkspace
{
    padding: 20px 20px 20px 20px;
    border: 1px solid black;
    /*margin-bottom: 10px;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #cecece;
    border-radius: 8px;
    font-weight: bold;
    color: #8b8b8b;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.735);
    /*min-width: 180px;*/
    user-select: none;
    -webkit-user-drag: none;
}


.cardworkspace.novapasta
{
    padding-left: 10px;
    font-weight: bold;
    color: #929292;
    stroke: #929292;
    font-size: 14px;
    height: 15px;
}

.cardworkspace.pasta
{
    font-weight: bold;
    color: #5d5d5d;
    font-size: 14px;
    height: 15px;
    stroke: #5d5d5d;
}

.cardworkspace.projeto
{
    font-weight: bold;
    color: #8b8b8b;
    font-size: 14px;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cardworkspace.projeto svg
{
    margin-bottom: 10px;
}

.cardworkspace.novoproduto
{
    margin-top: 0px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #8b8b8b;
    font-size: 14px;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}


.cardworkspace:hover
{
    box-shadow: 1px 1px 2px 0px #8b8b8b76;
}


.cardoption
{
    font-family: "Inter";
    box-sizing: border-box;
    padding: 2px 2px 2px 2px;
    border: 1px solid rgb(185, 185, 185);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #8b8b8b;
    font-size: 13px;
    background-color: #F3F5F7;
    cursor: pointer;
    /* width: 210px;*/
    height: 140px; 
    stroke: #8b8b8b;
    fill: #8b8b8b;
}

.cardoption:hover
{
    background-color: white;
    stroke: black;
    fill: black;
    box-shadow: inset 0 0 1px 1px rgb(215, 215, 215);
    color: black;
}

.cardoption.selected
{
    background-color: white;
    stroke: black;
    fill: black;
    box-shadow: inset 0 0 0px 2px #0782FF;
    color: black;
}

.cardoption .stitle
{
    margin-top: 15px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}

.cardoption .ssubtitle
{
    font-size: 10px;
    text-align: center;
}


.viewportcanvas
{
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 0px);
    height: calc(100vh - 0px);
    border: 0px solid red;
}

.panapptool
{
    z-index: 5;
    position: fixed;
    left: 0;
    top: 0;
    width: 40px;
    height: 100vh;
    border: 0px solid red;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.panapptool .bar
{
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    min-height: 40px;
    border: 0px solid blue;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: white;
    box-shadow: 3px 10px 15px 3px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.panapptool .bar.noshadow
{
    animation: anmPanAppToolNoShadow 0.15s forwards;
}

@keyframes anmPanAppToolNoShadow {
    from {
        box-shadow: 3px 10px 15px 3px rgba(0, 0, 0, 0.09);
    }
    to {
        box-shadow: none;
    }
}

.panapptool .bar.setshadow
{
    animation: anmPanAppToolSetShadow 1.45s forwards;
}

@keyframes anmPanAppToolSetShadow {
    from {
        box-shadow: none;
    }
    to {
        box-shadow: 3px 10px 15px 3px rgba(0, 0, 0, 0.09);
    }
}


.panapptool .bar .tool
{
    width: 35px;
    height: 45px;
    fill:black;
    stroke:black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.panapptool .bar .tool .tooltip
{
    pointer-events: none;
    text-wrap: nowrap;
    visibility: visible;
    position: absolute;
    left: 45px;
    font-size: 12px;
    background-color: #21242ad7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px 10px 16px;
    color: white;
    opacity: 0;
}

@keyframes showing_tooltip {
    0%   { opacity: 0; }
    80%  { opacity: 0; }
    100% { opacity: 1; }
}

.panapptool .bar .tool:hover .tooltip
{
    animation: showing_tooltip 0.72s ease-out forwards;
}

.panapptool .bar .tool svg
{
    width: 24px;
    height: 24px;
}

.panapptool .bar .tool:hover
{
    fill:#0782FF;
    stroke:#0782FF;
    cursor: pointer;
}

.panapptool .bar .tool.selected
{
    fill:#0782FF;
    stroke:#0782FF;
}

.panapptool .bar .tool:hover svg
{
    filter: drop-shadow(0px 0px 10px #0783ffbd);
}


.titlebarproject
{
    z-index: 2;
    position: fixed;
    top: 0;
    left: 470px;
    width: calc(100vw - 385px - 570px);
    height: 55px;
    border: 0px solid blue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #585858;
    font-size: 13px;
    font-weight: bold;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.topbarprofile
{
    z-index: 5;
    position: fixed;
    top: 0;
    right: 0px;
    width: 480px;
    height: 55px;
    border: 0px solid red;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 20px;
    color: black;
    font-size: 10px;
    font-weight: bold;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.panMainLeftTools
{
    z-index: 4;
    position: fixed;
    left: -380px;
    top: calc(100vh / 2 - ((100vh - 120px) / 2));
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: white;
    box-shadow: 3px 10px 15px 3px rgba(0, 0, 0, 0.09);
    width: 380px;
    height: calc(100vh - 120px);
}

.panMainLeftTools.show {
    animation: anmShowMainLeftTools 0.2s forwards;
}

@keyframes anmShowMainLeftTools {
    from {
        left: -380px;
    }
    to {
        left: 0;
    }
}

.panMainLeftTools.close {
    animation: anmCloseMainLeftTools 0.2s forwards;
}

@keyframes anmCloseMainLeftTools {
    from {
        left: 0;
    }
    to {
        left: -380px;
    }
}

.panMainLeftTools .contentTool
{
    padding: 15px 15px 0px 5px;
    position: relative;
    left: 45px;
    top: 0px;
    border: 0px solid red;
    width: calc(380px - 45px);
    height: 100%;
    
    font-size: 13px;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.panMainLeftTools .contentTool .area
{
    position: relative;
    width: 100%;
    height: calc(100% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap:10px;
    opacity: 1;
    border: 0px solid blue;
}

.panMainLeftTools .contentTool .area.show
{
    animation: anmShowAreaLeftToolsContent 0.1s forwards;
}

.panMainLeftTools .contentTool .area.hide
{
    animation: anmHideAreaLeftToolsContent 0.1s forwards;
}

@keyframes anmShowAreaLeftToolsContent {
    from {
        opacity: 0;
        display: none;
        left: -20px;
    }
    to {
        opacity: 1;
        display: flex;
        left: 0px;
    }
}

@keyframes anmHideAreaLeftToolsContent {
    from {
        opacity: 1;
        display: flex;
        left: 0px;
    }
    to {
        opacity: 0;
        display: none;
        left: -20px;
    }
}


.panMainLeftTools .contentTool .area .title
{
    font-size: 14px;
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items:center;
    border: 0px solid red;
    stroke: #8f8f8f;
}

.panMainLeftTools .contentTool .area .bclose
{
    cursor: pointer;
}


.groupTabOptRound
{
    width:100%;
    height:28px;
    border: 0px solid black;
    color: #7d7d7d;
    stroke: #7d7d7d;
    border-top: 1px solid rgb(210, 210, 210);
    border-bottom: 1px solid rgb(210, 210, 210);
    background-color: #f0f0f0;
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.groupTabOptRound.bleft
{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid rgb(210, 210, 210);
}

.groupTabOptRound.bright
{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-right: 1px solid rgb(210, 210, 210);
}

.groupTabOptRound:hover
{
    background-color: #fbfbfb;
    cursor: pointer;
}

.groupTabOptRound.selected
{
    color: #21242a;
    stroke: #21242a;
    font-weight: bold;
    background-color: #fbfbfb;
}



.panlistHVItens
{
    padding: 5px;
    border-radius: 5px;
    display: block;
    flex-direction: column;
    width:100%;
    height:100%;
    border: 1px solid rgb(210, 210, 210);
    background-color: #ffffff;
    justify-content: start;
    align-items: start;
    
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.panlistHVItens .groupList
{
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 1px;
    width: 100%;
    border: 0px solid red;
    background-color: #f2f2f2;
    text-wrap: nowrap;
    margin-bottom:10px;
    border-radius: 5px;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.panlistHVItens .groupList .titleGList
{
    font-size: 12px;
    font-weight: bold;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.panlistHVItens .groupList .titleGList .option
{
    cursor: pointer;
    color: #0782FF;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.panlistHVItens .groupList .titleGList .option svg
{
    margin-right: 3px;
}

.panlistHVItens .groupList .list
{
    margin-top: 10px;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: thin;
    border: 0px solid rgb(0, 0, 255);
    margin-bottom: 10px;
}

.panlistHVItens .groupList .list img
{
    width: 100px;
    height: 100px;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgb(170, 170, 170);
    object-fit: contain;
    aspect-ratio: 3/3;
    background-color: white;
}






.panMiddleBottomOpts
{
    z-index: 5;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100vw;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.panOpts
{
    height: 36px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.panOpts hr
{
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(227,227,227,1) 50%, rgba(255,255,255,1) 100%);
    border: none;
}

.panOpts .bOpt
{
    font-size: 12px;
    font-weight: bold;

    width: 40px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.panOpts .bOpt
{
    font-size: 12px;
    font-weight: bold;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    color:#585858;
    stroke: #585858;
}

.panOpts .bOpt:hover
{
    color:#0782FF;
    stroke: #0782FF;
    cursor: pointer;
    filter: drop-shadow(0px 0px 10px #0783ffbd);
}





.introAreaStepByStep
{
    padding: 5px;
    margin-right: 20px;
    border-right:1px solid rgba(0,0,0,0.1);
    gap: 0px;
    font-size:12px;
    width: 140px;/*
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;*/
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}


.introAreaStepByStep .step
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
    border:0px solid red;
    width: 100%;
    height: 100px;
    stroke: #c3c3c3;
    color: #c3c3c3;
    background: linear-gradient(to bottom, white, rgb(245, 245, 245));
}

.introAreaStepByStep .step.selected
{
    cursor: pointer;
    color: #0782FF;
    stroke: #0782FF;
    border:1px solid #0782FF;
    font-weight: bold;
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(255, 255, 255));
}

.introAreaStepByStep .step.pass
{
    cursor: pointer;
    color: black;
    stroke: black;
    background: linear-gradient(to bottom, white, rgb(245, 245, 245));
}

.introAreaStepByStepDimensao
{
    cursor:pointer;
    border: 1px solid rgb(190, 190, 190);
    border-radius:10px;
    flex: 1 0 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.introAreaStepByStepDimensao.selected
{
    border: 2px solid #0782FF;
    color: #0782FF;
    font-weight: bold;
    fill: #0782FF;
}


.abaGrupoOpcoes
{
    border: 0px solid red;
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.abaGrupoOpcoes .aba
{
    border: 0px solid red;
    color: #575757;
    cursor: pointer;
    stroke: #575757;
    display: flex;
    align-items: center;
}

.abaGrupoOpcoes .aba svg
{
    margin-right: 5px;
}

.abaGrupoOpcoes .aba.selected
{
    stroke: #0782FF;
    color: #0782FF;
    font-weight: bold;
    text-shadow: #0783ff33 0px 2px 10px;
}


.grpListaImgsMaisImagens
{
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: calc(100% - 125px);
    border: 0px solid red;
    overflow: visible;
    overflow-y: visible;
    overflow-x: hidden;
    padding-right: 20px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.grpListaImgsMaisImagens img
{
    width: 100%;
    /*width: 100%;
    min-width: 110px;
    max-width: 150px;
    height: auto;
    min-height: 110px;
    max-width: 150px;
    max-height: 150px;*/
    border: 1px solid rgb(219, 219, 219);
    border-radius: 5px;
    object-fit: contain;
    aspect-ratio: 3/3;
    background-color: white;
    cursor: pointer;
    -webkit-user-drag: none; /* Para Chrome, Safari, e navegadores baseados em WebKit */
    user-drag: none;
}

.grpListaImgsMaisImagens img.selecionado
{
    width: 100%;
    /*width: 100%;
    min-width: 110px;
    max-width: 150px;
    height: auto;
    min-height: 110px;
    max-width: 150px;
    max-height: 150px;*/
    box-sizing: border-box;
    border: 4px solid #0782FF;
    border-radius: 5px;
    object-fit: contain;
    aspect-ratio: 3/3;
    background-color: white;
    cursor: pointer;
}



.gridMainTemas
{
    width: 1023px;
    height: 600px; /* Ajuste conforme necessário */
    overflow-y: auto; /* Scroll vertical principal */
    overflow-x: hidden;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 5px;
    scrollbar-width: thin;
}


.gridMainTemas .titleGrid
{
    width: 100%;
    border:0px solid blue;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #f3f3f3;
    color: black;
}

.gridMainTemas .listHGrid
{
    width: 100%;
    border-radius: 10px;
    height: 215px; /* Altura para cada bloco horizontal */
    border: 0px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 5px;
    box-sizing: border-box;
    overflow-x: scroll; /* Scroll horizontal para itens dentro do bloco */
    overflow-y: hidden;
    scrollbar-width: thin;
    align-items: center;
    margin-bottom: 10px;
}

.gridMainTemas .listHGrid .item
{
    width: 300px;
    height: 190px;
    border: 1px solid rgb(188, 188, 188);
    border-radius: 10px;
    flex: 0 0 auto;
    background-image: url('../assets/imgs/theme.jpg');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}


/* Locutores */

.optLocutor
{
    background-color:#FFFFFF;
    width: 100%;
    display: flex;
    flex-direction: row;
    border-radius:10px;
    padding:10px;
    -moz-box-sizing:border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.optLocutor img
{
    max-width: 180px;
    border-radius:10px;
    object-fit: cover;
}

.optLocutor .conteudoLocutor
{
    margin-left: 20px;
    margin-top:15px;
    margin-bottom:15px;
    border:0px solid red;
    width: 100%;
    margin-right: 10px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

.optLocutor label
{
    font-size: 18px;
    font-weight: bold;
}

.fundo-xadrez-moderno {
  background-color: #e5e5e5;
  background-image:
    linear-gradient(45deg, #c0c0c0 25%, transparent 25%),
    linear-gradient(-45deg, #c0c0c0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #c0c0c0 75%),
    linear-gradient(-45deg, transparent 75%, #c0c0c0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.fundo-xadrez-moderno img{
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}








:root{
    --wave-h: 45px;
    --blue: #0782FF;
}

/* Barra do topo */
.wave-strip{
    position: relative;
    width: 100%;
    height: var(--wave-h);
    overflow: hidden;
    z-index: 9999;

    /* variação suave em torno do #0782FF */
    background: linear-gradient(90deg,
        rgba(7,130,255,.8),
        rgba(7,130,255,1),
        rgba(37,150,255,1),
        rgba(7,130,255,1),
        rgba(7,130,255,.8)
    );
    background-size: 200% 100%;
    animation: waveHue 4s ease-in-out infinite;

    box-shadow: 0 4px 15px rgba(7,130,255,.3);

    font-size:12px;
}

/* “onda” de verdade (recorte + movimento), SEM SVG no DOM (não quebra com innerHTML) */
.wave-strip::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

    /* brilho de água + leve profundidade */
    background:
        linear-gradient(to bottom, rgba(255,255,255,.4), rgba(255,255,255,0) 80%),
        radial-gradient(120% 100% at 20% 0%, rgba(255,255,255,.3), transparent 70%),
        radial-gradient(120% 100% at 80% 0%, rgba(255,255,255,.2), transparent 70%);

    opacity: 1;

    /* máscara em formato de onda (seno) repetida no eixo X */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 45'%3E%3Cpath fill='%23000' d='M0 25 C 15 10 30 40 45 25 C 60 10 75 40 90 25 C 105 10 120 40 120 25 L120 45 L0 45 Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: 120px 45px;
    -webkit-mask-position: 0 0;

                    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 45'%3E%3Cpath fill='%23000' d='M0 25 C 15 10 30 40 45 25 C 60 10 75 40 90 25 C 105 10 120 40 120 25 L120 45 L0 45 Z'/%3E%3C/svg%3E");
                    mask-repeat: repeat-x;
                    mask-size: 120px 45px;
                    mask-position: 0 0;

    animation: waveMaskMove 2s linear infinite;
}

/* linha de “crista” bem sutil, dá acabamento premium */
.wave-strip::before{
    content:"";
    position:absolute;
    left:0; right:0;
    bottom:0;
    height: 3px;
    background: rgba(255,255,255,.5);
    filter: blur(1px);
    opacity: .8;
    pointer-events:none;
}

@keyframes waveHue{
    0%   { background-position: 0% 50%; filter: saturate(1.1) brightness(1.00); }
    50%  { background-position: 100% 50%; filter: saturate(1.3) brightness(1.1); }
    100% { background-position: 0% 50%; filter: saturate(1.1) brightness(1.00); }
}

@keyframes waveMaskMove{
    from {
        -webkit-mask-position: 0 0;
                        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: -120px 0;
                        mask-position: -120px 0;
    }
}

@media (prefers-reduced-motion: reduce){
    .wave-strip{ animation: none; }
    .wave-strip::after{ animation: none; }
}



.timerRegressivoTeste
{
    color:white;
    font-size: 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}