﻿@import url('https://fonts.cdnfonts.com/css/metropolis-2');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:ital,wght@0,400;0,500;0,700;1,500&display=swap');




:root {
    /* Cores */
    --cor-fundo: rgba(57, 74, 109, 0.55);
    --cor-fundo-topbar: rgba(255, 255, 255, 0.65);
    --cor-fundo-box: rgba(255, 255, 255, 0.7);
    --cor-fundo-box-empresa: rgba(255, 255, 255, 0.4);
    --cor-fundo-card: rgba(255, 255, 255, 0.75);
    --cor-texto-white: #ffffff;
    --cor-texto-header: #77787a;
    --cor-texto-black: #000000;
    --cor-link: royalblue;
    --cor-dropdown: royalblue;
    --cor-botao-fundo: #394A6D;
    --cor-botao-hover: #1972FF;
    /* Fontes e Estilos */
    --fonte-metropolis-light: 'Metropolis Light', sans-serif;
    --fonte-metropolis: 'Metropolis', sans-serif;
    --fonte-roboto: 'Roboto', sans-serif;
    --fonte-roboto-medium: 'Roboto Medium', sans-serif;
    /* Tamanhos de Fonte */
    --tamanho-fonte-16: 16px;
    --tamanho-fonte-19: 19px;
    --tamanho-fonte-24: 24px;
}

body {
    background-image: url('https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg');
    background-size: cover;
    -webkit-animation: slidein 100s;
    animation: slidein 100s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    font-size: var(--tamanho-fonte-16);
}

/* Limpa o flot a esquerda*/
.ClearFlot {
    clear: both;
}
/* Label de quem fez a alteração do registo*/
.LabelSmall {
    font-size: 9px;
    font-family: Roboto;
}

/*Jardel Moreno 07/03/24*/
.MainBk {
    width: 100%;
    top: 0;
    position: absolute;
    height: 100%;
    bottom: 57px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--cor-fundo);
}

.MainBk1 {
    background-color: unset;
    display: flex;
    align-items: center;
}

.BoxMyPerfil {
    padding: 40px;
    width: calc(100% - 100px);
    max-height: 80vh;
    min-height: 300px;
    background-color: rgba(247,247,247);
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 100px;
    margin: -50px 0 0 -50px;
    overflow: auto;
    z-index: 9999;
}

.divFieldMod {
    Width: auto;
    padding: 0px 10px 0px 0px;
}
/*Fim 07/03/24*/

.Box {
    padding: 40px;
    width: 800px;
    background-color: rgba(247,247,247);
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0,0.3);
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: calc((100% - 800px) / 2);
    margin: -50px 0 0 -50px;
}

/* Title da Pagina do Backoffice*/
.TitleBk {
    font-family: 'Metropolis-Light','Roboto';
    text-align: left;
    font-size: 19px;
    height: 38px;
    font-weight: bold;
}

.SubTitleBK {
    Font-size: 16px;
    font-family: Roboto;
    font-weight: 500; /* Fonte medium*/
}

.LabelLeft {
    /*font-weight:  bold;*/
    Font-size: 14px;
    font-family: Roboto;
    font-weight: 500; /* Fonte medium*/
}
/* Efecito para as DropDownList - 16px*/
.effectCb {
    height: 21px;
    font-family: Roboto;
    font-weight: 400;
}


    .effectCb:focus {
        height: 21px;
        transition: 0.9s;
        transition: 0.9s;
        border: 2px solid black;
        /*outline: none;*/
        /*background-color: #f2ebeb;*/
    }

.effectCb30 {
    height: 30px;
    font-family: Roboto;
    font-size: 18px;
}

.effectCb28 {
    height: 28px;
    font-family: Roboto;
    font-size: 18px;
}


.card-custom-bg {
    background-color: var(--cor-fundo-card);
}

.vertical-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.page-holder {
    background-color: var(--cor-fundo);
}

.Footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

    .Footer > p {
        color: var(--cor-texto-white);
    }

.Logo_Footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
}

.Lgr {
    height: 8.5px;
    width: 79.5px;
    margin-right: 30px;
}

.Lgr1 {
    height: 19px;
    width: 36.5px;
}

.ButtonLogin {
    border-style: none;
    font-family: var(--fonte-roboto);
    font-weight: bold;
    border-color: inherit;
    border-width: medium;
    border-radius: 4px;
    background-color: var(--cor-botao-fundo);
    color: var(--cor-texto-white);
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: var(--tamanho-fonte-19);
    margin-top: 5px;
    margin-bottom: 5px;
    Width: 120px;
    height: 30px;
}

    .ButtonLogin:hover {
        background-color: var(--cor-botao-hover);
        transition: 0.4s;
    }

.TitleBk {
    font-family: var(--fonte-metropolis-light);
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: var(--tamanho-fonte-19);
    height: 38px;
}

.SubTitleBK {
    font-family: var(--fonte-roboto);
    font-weight: 400;
    font-size: var(--tamanho-fonte-16);
}

.footer_Txt {
    font-family: var(--fonte-roboto-medium);
    font-weight: 400;
}

.linkButton {
    font-family: var(--fonte-roboto-medium);
    font-weight: 600;
}

.Description {
    font-family: var(--fonte-metropolis);
    font-size: 42px;
    font-weight: 200;
}

.Description-last {
    font-family: var(--fonte-metropolis);
    font-size: 42px;
    font-weight: 600;
}

.TopBar {
    padding: 0.5rem;
    background-color: var(--cor-fundo-topbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.TopBarMasterPublic {
    padding: 0.5rem;
    background-color: var(--cor-fundo-topbar);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: end;
}

.botao-link {
    margin: 0 10px;
    color: var(--cor-texto-header);
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--fonte-roboto);
}

    .botao-link:hover {
        color: var(--cor-link);
    }

.select {
    text-decoration: none;
}

/*Código específico de SelectCompany*/
.Header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.TitleEmpresa {
    font-family: var(--fonte-roboto);
    font-size: medium;
    color: var(--cor-link);
}

.LogoInterface {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Logotipo {
    margin-top: 6%;
    margin-bottom: 3%;
}

.IntroImage {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Intro {
    position: relative;
    height: 100vh;
    width: 100vw;
}

@media screen and (max-width: 600px) {
    .IntroImage {
        background-size: contain;
    }
}


/************************* Div dos campops **********************************/

/* Div Field*/
.divField60 {
    float: left;
    width: 60px;
    height: 55px;
}

/* Div Field*/
.divField90 {
    float: left;
    width: 90px;
    height: 55px;
}

/* Div Field*/
.divField100 {
    float: left;
    width: 100px;
    height: 55px;
}

/* Div Field*/
.divField180 {
    float: left;
    width: 180px;
    height: 55px;
}


/* Div Field*/
.divField220 {
    float: left;
    width: 220px;
    height: 55px;
}


/* Div Field*/
.divField250 {
    float: left;
    width: 250px;
    height: 55px;
}
/* Div Field*/
.divField250AutoHeight {
    float: left;
    width: 250px;
    height: auto;
}


/* Div Field*/
.divField280 {
    float: left;
    width: 280px;
    height: 55px;
}


/* Div Field*/
.divField290 {
    float: left;
    width: 290px;
    height: 55px;
}

/* Div Field*/
.divField300 {
    float: left;
    width: 300px;
    height: 55px;
}
/* Div Field*/
.divField320 {
    float: left;
    width: 320px;
    height: 55px;
}


/* Div Field*/
.divField420 {
    float: left;
    width: 420px;
    height: 55px;
}

/* Div Field*/
.divField {
    Width: auto;
    padding: 0px 10px 0px 0px;
    float: left;
}

.DivFilter {
    background-color: #E8E8E8;
    border-radius: 10px;
    padding: 10px 20px;
    height: 90px;
    box-shadow: 5px 5px 5px grey;
    margin-bottom: 20px;
}
/* A seguir a text Box com label*/
.divButtonText {
    display: flex;
    align-items: center;
}
/* Div Field*/
.divFieldNotLabel {
    Width: auto;
    padding: 0px 10px 0px 0px;
    float: left;
    height: 35px;
}


/* Icon a seguir textbox mas sem label*/
.divButtonTextNotLabel {
    top: -10px;
    padding-left: 5px;
    padding-right: 10px;
    float: left;
}



.Box400 {
    width: 350px;
    height: 200px;
    background-color: var(--cor-fundo-box);
    margin: 5px;
    border-radius: 10px;
    color: #CCC;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--fonte-roboto);
}

.TitleLabelCenter {
    text-align: center;
    font-family: var(--fonte-roboto);
    font-weight: 400;
    font-size: var(--tamanho-fonte-16);
    color: var(--cor-link);
    padding: 20px;
}

.TitleLabelCenterblackcolor {
    text-align: center;
    font-family: var(--fonte-roboto-medium);
    font-weight: 400;
    font-size: var(--tamanho-fonte-24);
    color: var(--cor-texto-black);
}

.DDL {
    display: flex;
    margin-top: 20px;
    Font-Size: var(--tamanho-fonte-20);
    text-align: center;
}

.ButtonContainer {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.button {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    border-radius: 4px;
    background-color: var(--cor-botao-fundo);
    color: var(--cor-texto-white);
    display: inline-flex;
    font-size: var(--tamanho-fonte-13);
    margin-top: 5px;
    Width: 150px;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

    .button:hover {
        background-color: var(--cor-botao-hover);
        transition: 0.4s;
    }

/*Código específico de SelectCompany*/
.box_empresas {
    display: flex;
    width: 50%;
    height: 40%;
    padding: 40px 10px 40px 10px;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: var(--cor-fundo-box-empresa);
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.effectTx {
    transition: 0.4s;
}

    .effectTx:focus {
        transition: 0.9s;
        transition: 0.9s;
        border: 1px solid var(--cor-link);
        outline: none;
        background-color: #f2ebeb;
        width: 70%;
        height: auto;
    }

.TitleLabelCenterSelectCompany {
    text-align: center;
    font-family: var(--fonte-roboto);
    font-weight: 400;
    font-size: var(--tamanho-fonte-24);
    color: var(--cor-link);
}

/*Page Register*/
.Box500 {
    padding: 10px 5px 5px 5px;
    width: 500px;
    color: var(--cor-texto-white);
    margin: 0 auto 10px;
    overflow: hidden;
    font-family: var(--fonte-roboto-medium);
    font-weight: 400;
}

/*Javascript para animar a imagem de fundo*/
@-webkit-keyframes slidein {
    from {
        background-position: top;
        background-size: 3000px 100%;
    }

    to {
        background-position: -100px 0px;
        background-size: 2750px 100%;
    }
}

@keyframes slidein {
    from {
        background-position: top;
        background-size: 3000px 100%;
    }

    to {
        background-position: -100px 0px;
        background-size: 2750px 100%;
    }


}


.BoxViewDoc {
    padding: 40px;
    width: calc(100% - 100px);
    max-height: 80vh;
    min-height: 300px;
    height: 100%;
    border-radius: 2px;
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 100px;
    margin: -50px 0 0 -50px;
    z-index: 9999;
}