:root {
    --fundo: #eee;
    --luxlife-primary: #510863;
    --luxlife-primary-transparente: rgb(51, 08, 63, 0.69);
    --vivalux-primary: #4d89d0;
    --vivalux-primary-transparente: rgba(77, 136, 208, 0.69);
    --color-secondary: #510863;
    --color-black: #000;
    --color-grey-01: #ccc;
    --color-grey-01-transparente: #cccccc9e;
    --color-grey-02: #bbb;
    --color-grey-03: #aaa;
    --sofisticatto-roxo: #510863;
    --text-secondary:rgb(65, 65, 65);
    --luxlife-color:red;
    --nav-color:white;
    --base-color:rgb(228, 228, 228);
    --bord-color:#d1d1d1;
    --input-color:#d1d1d1;
    --text-color-02:rgb(22, 22, 22);
    --fundo-gradient-02:linear-gradient(145deg, #808080bb, #cacacab0);
    --filtro-logo2:brightness(0) saturate(100%) invert(13%) sepia(3%) saturate(0%) hue-rotate(255deg) brightness(106%) contrast(91%);
    --filtro-logo: brightness(0) saturate(100%) invert(26%) sepia(75%) saturate(6708%) hue-rotate(1deg) brightness(91%) contrast(136%);
    --fundo-gradient:linear-gradient(142deg, rgba(255,255,255,0.87718837535014) 0%, rgba(242,242,242,0.7343312324929971) 29%, rgba(218,218,218,0) 100%);
    --color-shadow-01: rgba(0, 0, 0, 0.75);
}


* {
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    padding: 0px;
    box-sizing: border-box;
    outline: none;
    background-color: var(--fundo);
    font-family: Arial, Helvetica, sans-serif;
}

#theme-switch{
    width: 45px !important;
    height: 45px !important;
    box-sizing: border-box;
    padding: 0;
    border-radius: 50%;
    background-color: var(--color-grey-01);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

#theme-switch svg{
    fill: var(--text-color);
}

#theme-switch svg:last-child{
    display: none;
}

.darkmode #theme-switch svg:first-child{
    display: none;
}

.darkmode #theme-switch svg:last-child{
    display: block;
}


body::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--color-grey-01);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-grey-02);
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid var(--color-grey-01);
    /* creates padding around scroll thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--luxlife-primary);
    /* color of the scroll thumb */

}

.messages-container {
    width: 100%;
    min-height: 100px;
    padding-top: 90px;
    box-sizing: border-box;
    grid-area: m;

}

/* classes padrão de mensagens */
.messages-container #message {
    padding: 6px;
    font-weight: bold;
    width: 80%;
    margin-left: 10%;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    box-sizing: border-box;
}

.messages-container .msg-error {
    color: rgba(81, 8, 99, 0.549);
    border: 1px solid rgba(81, 8, 99, 0.549);
}

.messages-container .msg-success {
    color: rgba(28, 207, 0, 0.548);
    border: 1px solid rgba(28, 207, 0, 0.548);
}

body header {
    display: flex;
    width: 100%;
    height: 70vh;
    justify-content: center;
    align-items: end;
    background-color: rgb(240, 240, 240);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(189, 189, 189, 1);
    -moz-box-shadow: 0px 0px 7px 0px rgba(189, 189, 189, 1);
    box-shadow: 0px 0px 7px 0px rgba(189, 189, 189, 1);
}

nav#nav-desk {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    position: absolute;
    background-color: #510863;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    top: 0px;
}

nav#nav-desk div.perfil {
    display: flex;
    align-items: center;
    height: 60px;
    width: fit-content;

}

nav#nav-desk div.perfil #modo-de-manutencao {
    background-color: yellow;
    padding: 10px;
    height: 70px;
    box-sizing: border-box;
    z-index: 1;
    display: flex;
    align-items: center;
    border: 1px solid black;
}

nav#nav-desk div.perfil #situacao-usuario {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    border-right: 1px solid #efefef;
    padding: 0px 10px;
}

nav#nav-desk div.perfil #situacao-usuario h2 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color: #e8e8e8;
}


nav#nav-desk div.perfil #situacao-usuario div.usuario-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status.u-ativo {
    box-shadow: green;
    background-color: rgb(0, 240, 0);
}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status.u-ativo:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 255, 0);
}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status.u-inativo {
    background-color: rgb(248, 0, 0);


}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status.u-inativo:hover {
    box-shadow: 0px 0px 10px 0px rgb(255, 0, 0);
}


nav#nav-desk div.perfil img {
    border-radius: 50%;
}

nav#nav-desk #logo-options #logo {
    margin-bottom: 20px;
    width: 90px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1608%) hue-rotate(298deg) brightness(116%) contrast(100%);
}

nav#nav-desk #logo-options {
    display: flex;
    padding-top: 18px;
    align-items: center;
}

nav#nav-desk #logo-options ul li {
    position: relative;
}

nav#nav-desk #logo-options ul li a {
    padding: 5px 0px;
}

nav#nav-desk #logo-options ul {
    list-style: none;
    display: inline-block;
    box-sizing: border-box;
    margin-left: 50px;
}

nav#nav-desk #logo-options ul li {
    display: inline-block;
    margin: 10px 10px;
    font-size: 17px;
    padding-right: 10px;
    padding-left: 0px;
}

header #fazer-ativo-mensal {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 50px;
}

header #fazer-ativo-mensal .msg-ativar {
    color: white;
    margin-top: 0px;
    background-color: rgb(255, 0, 0);
    padding: 10px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: inherit;
}

header #fazer-ativo-mensal .msg-ativar img {
    width: 20px;
    height: auto;
}

nav#nav-desk #logo-options ul li a {
    color: rgb(153, 153, 153);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

nav#nav-desk.luxlife-style #logo-options ul li a:hover {
    color: rgb(153, 153, 153);
}

.foco {
    color: #640a7a !important;
    font-size: 17px;
}

.foco-2 {
    color: var(--vivalux-primary) !important;
}

nav#nav-desk div.perfil img {
    width: 50px;
    height: 50px;
}

nav#nav-desk div.perfil div.perfil-info h3 {
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 10px;
    margin-bottom: 0%;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: end;
}


nav#nav-desk div.perfil span {
    font-size: 16px;
    color: rgb(87, 87, 87);
    font-weight: 600;
}


.evento {
    align-items: center;
    width: 100%;
    height: inherit;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
}

.evento #add-evento {
    margin-top: 200px;
    margin-bottom: 181px;
    background-color: rgb(81, 8, 99);
    font-size: 16px;
    outline: none;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 4px;
}

.evento #editar-evento:hover {
    background-color: rgba(104, 12, 127, 0);
}

.evento #editar-evento {
    font-size: 16px;
    background-color: rgba(81, 8, 99, 0);
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: inherit;
    gap: 5px;
    justify-content: space-between;
    color: rgb(0, 0, 0);
}



.evento img {
    width: 100%;
    height: auto;
}

.evento iframe {
    width: 100%;
    height: 600px;

}

div#perfil-options {
    width: 200px;
    min-height: 20px;
    height: fit-content;
    position: absolute;
    right: 20px;
    top: 90px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 2px 5px 0px var(--color-shadow-01);
    -moz-box-shadow: 0px 2px 5px 0px var(--color-shadow-01);
    box-shadow: 0px 2px 5px 0px var(--color-shadow-01);
    z-index: 2;
}

div.vivalux {

    background-color: var(--vivalux-primary-transparente);
}

div.luxlife {
    background-color: #ffffffce;

}

.closed {

    visibility: hidden;
}


nav#mobile {
    display: none;
}

div#perfil-options #triangle {
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    right: 15px;
    margin-top: -20px;
    z-index: 2;
}

div.vivalux #triangle {

    border-bottom: 20px solid var(--vivalux-primary-transparente);
}

div.luxlife #triangle {
    border-bottom: 20px solid rgba(255, 255, 255, 0);

}

div#perfil-options #perfil-options-content {
    width: 100%;
    height: fit-content;
}

div#perfil-options-content .perfil-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 10px auto 0px auto;
    padding: 10px 0px;
    box-sizing: border-box;

}

div#perfil-options-content .perfil-container a {
    font-weight: 600;
    font-size: 14px;
}

div#perfil-options-content .perfil-container a#royalties {
    display: flex;
    align-items: center;
}

div#perfil-options-content .perfil-container a img#moeda-royalties {
    width: 25px;
    height: auto;
}

div#perfil-options-content .perfil-container span {
    font-weight: bold;
    font-size: 16px;
}

div#perfil-options-content .perfil-container span,
a {
    color: var(--color-secondary);
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-align: center;
    border-radius: 50%;
    margin: 0px;
}

div#perfil-options-content .perfil-container:not(:last-child) {
    border-bottom: 1.5px solid var(--color-grey-01-transparente)
}

.perfil-container img#perfil-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

footer {
    width: 100%;
    height: 300px;
    background-color: var(--luxlife-primary);
    position: relative;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;

}

footer.sofisticatto {
    background-color: var(--sofisticatto-roxo);
}

.footer-box {
    height: 250px;
    width: 100%;
    background-color: var(--luxlife-primary);
    display: flex;
    justify-content: space-around;
    padding: 50px 300px;
    box-sizing: border-box;
    color: white;
    border-bottom: 2px solid white;
}

.footer-box.sofisticatto {
    background-color: var(--sofisticatto-roxo);
}

.footer-box .box {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.footer-box .box a {
    text-decoration: underline;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.footer-box img {
    width: 150px;
    height: auto;
}

footer span {
    color: white;
    font-size: 18px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    footer {
        height: inherit;
    }

    .footer-box {

        padding: 50px 100px;
    }

    .footer-box .box a {
        font-size: 16px;
    }

    footer span {
        font-size: 16px;
        margin-top: 20px;
        text-align: center;
        padding-bottom: 20px;
    }

}

@media (max-width: 1000px) {
    #fazer-ativo-mensal {
        display: block;
        width: 90%;
        margin-top: 10px;
        margin-left: 5%;
    }

    #fazer-ativo-mensal .msg-ativar {
        color: white;
        background-color: #510863;
        padding: 10px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    #fazer-ativo-mensal .msg-ativar img {
        width: 20px;
        height: auto;
    }

}

@media (max-width: 900px) {

    nav#nav-desk {
        display: none !important;
    }

    nav#mobile {
        width: 100%;
        height: 65px;
        -webkit-box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
        -moz-box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
        box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
        padding: 10px;
        box-sizing: border-box;
        position: absolute;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 20px;
        top: 0px;
        transition: height 0.8s linear;
        z-index: 5;

    }

    nav#mobile #nav-head {
        width: 100%;
        height: 80px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    nav#mobile #nav-head #logo {
        width: 80px;
        height: auto;
        filter: invert(9%) sepia(45%) saturate(6488%) hue-rotate(281deg) brightness(93%) contrast(105%);
    }

    nav#mobile #nav-head div.perfil {
        display: flex;
        align-items: center;
        height: 60px;
        width: fit-content;

    }

    nav#mobile #nav-head div.perfil #situacao-usuario {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }

    nav#mobile #nav-head div.perfil #situacao-usuario h2 {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 16px;
        padding: 5px 10px;
        border-radius: 2px;
    }

    nav#mobile #nav-head div.perfil #situacao-usuario h2.m-ativo {
        background-color: rgb(0, 239, 36);
        border-radius: 5px;
        color: white;
    }

    nav#mobile #nav-head div.perfil #situacao-usuario h2.m-inativo {
        background-color: red;
        border-radius: 5px;
        color: rgb(255, 255, 255);

    }

    nav#mobile #nav-menu {
        border-top: 1px solid var(--color-grey-01);
        display: none;
        width: 100%;
        overflow: hidden;
    }

    nav#mobile #nav-menu ul {
        padding-left: 0px;
    }

    nav#mobile #nav-menu ul#principal li:first-child {

        border-bottom: 1px solid var(--color-grey-01);
        color: #bbb;
        font-weight: 600;
    }

    nav#mobile #nav-menu ul li {
        width: 100%;
        list-style: none;
        text-align: center;
        display: inline-block;
        padding: 10px;
        box-sizing: border-box;
    }

    nav#mobile #nav-menu ul li#fazer-ativo-mensal .msg-ativar {
        color: white;
        background-color: red;
        padding: 10px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    nav#mobile #nav-menu ul li#fazer-ativo-mensal .msg-ativar img#aviso {
        width: 20px !important;
        height: auto;
    }


    nav#mobile #nav-menu ul li a {
        color: var(--color-grey-01);
        text-decoration: none;
        font-weight: 400;
    }

    .foco {
        color: #ffffff !important;
        font-size: 17px;
    }

    nav#mobile.luxlife-style #nav-menu ul li a:hover {
        color: var(--luxlife-primary);
    }

    nav#mobile.vivalux-style #nav-menu ul li a:hover {
        color: var(--vivalux-primary);
    }

    div#perfil-options {
        display: none;
    }

    div#perfil-options #triangle {
        display: none;
    }

    nav#mobile #nav-head div.perfil img {
        border-radius: 50%;
        height: 90%;
        width: auto;
    }

}

@media (max-width: 750px) {
    .footer-box {
        flex-direction: column;
        padding: 50px 0px;
        height: fit-content;
        align-items: center;

    }


    /*Inicio dos display none */
    #logo-g {
        display: none !important;
    }

    .evento iframe {
        display: none !important;

    }

    /* fim dos display none */

    .footer-box .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .messages-container #message {
        font-size: 1.1rem;
    }

    /*Inicio dos display none */
    #logo-g {
        display: none !important;
    }

    .evento img {
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    body header {
        width: 100%;
        height: fit-content;
    }

    .evento #add-evento {
        display: none !important;
    }

    .evento h2 {
        display: none !important;
    }

    .evento #editar-evento img {
        display: none !important;
    }



    .evento iframe {
        display: none !important;

    }

    /* fim dos display none */


    .messages-container {
        width: 100%;
        min-height: 70px;
        padding-top: 70px;
        box-sizing: border-box;
        grid-area: m;
    }
}