﻿/* ** Definição de fontes ** */
@font-face {
    font-family: 'Abel';
    src: url('../fonts/Abel-Regular.ttf');
}

@font-face {
    font-family: 'NewsCycle';
    src: url('../fonts/NewsCycle-Regular.ttf');
}

@font-face {
    font-family: 'NewsCycleBold';
    src: url('../fonts/NewsCycle-Bold.ttf');
}

/* ************************* */

* {
    box-sizing: border-box;
}

/* Dimensionamento por colunas */
.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

[class*="col-"] {
    float: left;
    padding: 15px;
    /*border:1px solid red;*/
}

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */


/* General stylings */

html {
    position: relative;
    min-height: 100%;
}

body {
    padding-top: 80px;
    background-color: rgba(240,240,250,0.30);
    /*background: url("../images/bg.png") no-repeat;
    background-size: cover;*/
    color: #5a6372;
    font-family: Abel;
    font-size: 10pt;
    height: 100%;
}

    body#import_window {
        padding-top: 5px;
    }

    body#close_window {
        padding-top: 5px;
    }

    body#estrutura_window {
        padding-top: 5px;
    }

    body#campo_window {
        padding-top: 5px;
    }

    body#gerar_window {
        padding-top: 5px;
    }


/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1500px;
}

#ErrorPage {
    padding-top: 5px;
}

.wrapper {
    padding: 20px;
}


.wrap_import {
    padding: 20px;
    margin: 0;
}


.manage {
    padding-top: 50px;
}


    .manage .nav li a {
        color: #cc0000;
        font-size: 12pt;
    }

    .manage .nav li.active a {
        background-color: #cc0000;
        color: white;
    }


/* Loader */
#dimScreen {
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 9998;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
}

#loader {
    position: absolute;
    left: 45%;
    top: 50%;
    z-index: 9999;
    width: 300px;
    height: 300px;
    margin: -75px 0 0 -75px;
    /*border: 7px solid #ebf2f9;*/
    border-radius: 50%;
    border-top: 7px solid #990000;
    width: 300px;
    height: 300px;
    -webkit-animation: spin 0.25s linear infinite;
    animation: spin 0.25s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* The alert message box */
.alert_danger {
    padding: 10px;
    background-color: #f44336; /* Red */
    color: white;
    margin: 1.5em;
    width: 55%;
    transition: opacity 0.6s;
}

.alert_success {
    padding: 10px;
    background-color: #33cc33; /* Green */
    color: white;
    margin: 1.5em;
    width: 35%;
    transition: opacity 0.6s;
}

.alert_info {
    padding: 10px;
    background-color: #57b5e3; /* Blue */
    color: white;
    margin-top: 2em;
    margin-bottom: 2em;
    transition: opacity 0.6s;
}

.alert_cookies {
    padding: 10px;
    background-color: #33cc33; /* Green */
    color: white;
    width: 100%;
    transition: opacity 0.6s;
    text-align: center;
}


#ErrorPage .alert_danger {
    margin-left: 22.5%;
    text-align: center;
}

/* close button */
.closebtn {
    margin-left: 15px;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.35s;
}

    /* When moving the mouse over the close button */
    .closebtn:hover {
        color: black;
    }


.row {
    margin: 0;
    padding: 0;
}


.btn-default {
    padding: 6px;
    color: #cc0000;
    font-size: 10pt;
    margin: 0;
    transition: all 0.35s ease-out;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
}

    .btn-default:hover {
        border-color: rgba(204, 0, 0, 0.3);
        background-color: #cc0000;
        color: white;
        /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
        transition: all 0.35s ease-in;
        -webkit-transition: all 0.35s ease-in;
        -moz-transition: all 0.35s ease-in;
        -o-transition: all 0.35s ease-in;
        -ms-transition: all 0.35s ease-in;
    }

    .btn-default i {
        font-size: 13pt;
    }

        .btn-default i.fas.fa-filter {
            font-size: 11pt;
        }

        .btn-default i.fas.fa-times {
            font-size: 9pt;
        }

.hover-success:hover {
    background-color: #449D44;
}

.hover-danger:hover {
    background-color: #C9302C;
}


.hover-default:hover {
    background-color: #4286f4;
}

.btn-sm {
    padding: 2px;
}

.form-control:focus {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 0, 0, 0.6);
    outline: 0 none;
}

input {
    padding: 2px;
}

@-webkit-keyframes autofill {
    to {
        background: transparent;
    }
}

input: -webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=file]:hover {
    cursor: pointer;
}

select {
    cursor: pointer;
}

.link {
    font-size: 10pt;
    color: #cc0000;
    transition: all 0.35s ease-out;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
}

    .link:hover {
        color: #cc0000;
        text-decoration: none;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
        transition: all 0.35s ease-in;
        -webkit-transition: all 0.35s ease-in;
        -moz-transition: all 0.35s ease-in;
        -o-transition: all 0.35s ease-in;
        -ms-transition: all 0.35s ease-in;
    }

h4 {
    font-size: 16pt;
}

h5 {
    font-size: 12pt;
}

.tab_overflow {
    clear: both;
    overflow-x: auto;
    margin-bottom: 50px;
}

.table-header {
    background-color: #cc0000;
    color: white;
}

.table_hover {
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
}

    .table_hover:hover {
        cursor: pointer;
        background-color: #ffd1b3;
        transition: all 0.25s ease-in;
        -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;
        -o-transition: all 0.25s ease-in;
        -ms-transition: all 0.25s ease-in;
    }

.tab-responsive {
    overflow-x: auto;
    overflow-y: auto;
}

table {
    font-size: 10pt;
    clear: both;
}

thead, tbody {
    display: block;
}

tbody {
    clear: both;
    overflow: auto;
}

tr {
    background-color: #eeeeee;
}

    tr:nth-child(even) {
        background-color: white;
    }

.th_hover {
    cursor: pointer;
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
}

    .th_hover:hover {
        background-color: #ff6666;
        transition: all 0.25s ease-in;
        -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;
        -o-transition: all 0.25s ease-in;
        -ms-transition: all 0.25s ease-in;
    }


table.sortable th::after, th.sorttable_sorted::after, th.sorttable_sorted_reverse::after {
    content: " ";
    display: inline-block;
    width: 17px;
    height: 17px;
}

th.sorttable_sorted::after {
    background: url(../images/sort-up.png);
    background-size: contain;
}

th.sorttable_sorted_reverse::after {
    background: url(../images/sort-down.png);
    background-size: cover;
}


td a {
    width: 22px;
    height: 22px;
    text-align: right;
}


.table-scroll {
    height: 500px;
    overflow-y: scroll;
}

.tip {
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .tip:hover {
        position: relative;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .tip span {
        opacity: 0;
        padding: 5px;
        text-align: center;
        background-color: rgba(0,0,0,0.65);
        color: rgb(200,200,200);
        border-radius: 5px;
        font-weight: bold;
        width: auto;
        position: absolute;
        left: -35px;
        top: 0;
    }

    .tip:hover span {
        opacity: 1;
        z-index: 100;
        margin: 15px;
        left: -35px;
        top: -50px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }


/* Informação nro registos tabela */
.num_registos_tabela {
    width: 30%;
    text-align: left;
    float: left;
    padding: 0;
}

/* Caixa de pesquisa */
.search-box {
    float: left;
    width: 70%;
    text-align: right;
    margin-top: -10px;
    padding: 0;
}

    .search-box form .form-search {
        width: 305px;
        border: 1px solid #cccccc;
        border-left: none;
        border-radius: 5px;
        float: right;
        height: 32px;
        padding: 0;
        text-align: left;
    }


        .search-box form .form-search input {
            border: none;
            border-left: 1px solid #cccccc;
            border-radius: 5px;
            width: 300px;
            font-size: 10pt;
            color: #808080;
            padding: 5px;
        }

        .search-box form .form-search > input:focus {
            outline: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .search-box form .form-search ::placeholder {
            font-size: 10pt;
            color: #bfbfbf;
            font-style: italic;
        }

#tabela_container {
    display: block;
    clear: both;
}

/*** Navbar ***/
#nav {
    width: 100%;
    background-color: rgb(240, 240, 240);
    padding: 5px 10px 5px 10px;
    /*padding-bottom: 10px;*/
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    display: flex;
}

    #nav #logo {
        width: 10%;
        padding: 0;
    }


    #nav .logo {
        float: left;
        margin-left: 10px;
        padding: 0;
    }

    #nav #logo.logo h3 {
        color: #5a6372;
    }

    #nav #logo.logo img {
        width: 70%;
        margin: 0;
        padding: 0;
    }

    #nav #menu {
        width: 80%;
        padding-top: 10px;
        padding-bottom: 0;
        margin: 0;
        text-align: center;
        /*padding-left: 15%;*/
    }

        #nav #menu ul {
            align-content: center;
        }

            #nav #menu ul li {
                list-style: none;
                display: inline;
                margin: 0 5px 0 5px;
                text-align: center;
            }

                #nav #menu ul li a {
                    padding: 8px 10px 8px 10px;
                    margin-bottom: 0;
                    font-size: 11pt;
                    font-weight: bold;
                }

                    #nav #menu ul li a:hover {
                        text-decoration: none;
                    }

        #nav #menu .active {
            border-color: rgba(204, 0, 0, 0.3);
            background-color: #cc0000;
            color: white;
            /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
            transition: all 0.35s ease-in;
            -webkit-transition: all 0.35s ease-out;
            -moz-transition: all 0.35s ease-out;
            -o-transition: all 0.35s ease-out;
            -ms-transition: all 0.35s ease-out;
        }

        #nav #menu a.active:focus {
            border-color: rgba(204, 0, 0, 0.3);
            background-color: #cc0000;
            color: white;
            /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
            transition: all 0.35s ease-in;
            -webkit-transition: all 0.35s ease-out;
            -moz-transition: all 0.35s ease-out;
            -o-transition: all 0.35s ease-out;
            -ms-transition: all 0.35s ease-out;
        }


    #nav .perfil {
        /*width:10%;*/
        /*float: right;*/
        /*text-align: right;*/
        color: #cc0000;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
        font-size: 12pt;
        padding-top: 10px;
    }

        /* Dropdown */
        #nav .perfil .dropdown {
            cursor: pointer;
            position: relative;
            display: inline-block;
            text-align: left;
        }

            #nav .perfil .dropdown .dropbtn {
                margin-top: 0;
                padding: 5px;
                border: 1.5px solid #cc0000;
                border-radius: 50%;
                transition: all 0.45s ease-in;
                -webkit-transition: all 0.45s ease-out;
                -moz-transition: all 0.45s ease-out;
                -o-transition: all 0.45s ease-out;
                -ms-transition: all 0.45s ease-out;
            }

        #nav .perfil .dropdown-content {
            position: absolute;
            left: -105px;
            top: 35px;
            background-color: white;
            width: 120px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: -1;
            visibility: hidden;
            opacity: 0;
            transition: all 0.35s ease-in-out 0s, visibility 0s linear 0.35s, z-index 0s linear 0.05s;
            text-align: left;
            padding: 0;
        }

            #nav .perfil .dropdown-content li {
                list-style: none;
                margin: 5px;
                font-size: 10pt;
                text-shadow: none;
                font-weight: bold;
            }

                #nav .perfil .dropdown-content li a {
                    color: #cc0000;
                    font-weight: bold;
                    text-shadow: none;
                    text-decoration: none;
                    display: block;
                    padding: 5px;
                    transition: all 0.35s ease-out;
                    -webkit-transition: all 0.35s ease-out;
                    -moz-transition: all 0.35s ease-out;
                    -o-transition: all 0.35s ease-out;
                    -ms-transition: all 0.35s ease-out;
                }

                    #nav .perfil .dropdown-content li a:hover {
                        background-color: #cc0000;
                        color: white;
                        text-shadow: none;
                        transition: all 0.35s ease-in;
                        -webkit-transition: all 0.35s ease-in;
                        -moz-transition: all 0.35s ease-in;
                        -o-transition: all 0.35s ease-in;
                        -ms-transition: all 0.35s ease-in;
                    }

                #nav .perfil .dropdown-content li button {
                    padding: 0;
                    border: none;
                    background: none;
                    color: #2a5f95;
                    font-weight: bold;
                    text-shadow: none;
                    text-decoration: none;
                    display: block;
                    padding: 5px;
                    transition: all 0.35s ease-out;
                    -webkit-transition: all 0.35s ease-out;
                    -moz-transition: all 0.35s ease-out;
                    -o-transition: all 0.35s ease-out;
                    -ms-transition: all 0.35s ease-out;
                }

                    #nav .perfil .dropdown-content li button:hover {
                        background-color: #cc0000;
                        color: white;
                        text-shadow: none;
                        transition: all 0.35s ease-in;
                        -webkit-transition: all 0.35s ease-in;
                        -moz-transition: all 0.35s ease-in;
                        -o-transition: all 0.35s ease-in;
                        -ms-transition: all 0.35s ease-in;
                    }

        #nav .perfil .dropdown:hover .dropdown-content {
            text-shadow: none;
            visibility: visible; /* shows sub-menu */
            opacity: 1;
            z-index: 1;
            transform: translateY(0%);
            transition-delay: 0s, 0s, 0.35s; /* this removes the transition delay so the menu will be visible while the other styles transition */
        }

        #nav .perfil .dropdown:hover .dropbtn {
            background-color: #cc0000;
            color: white;
            text-shadow: none;
            /*transform: scale(1.2);*/
            transition: all 0.20s ease-in;
            -webkit-transition: all 0.20s ease-in;
            -moz-transition: all 0.20s ease-in;
            -o-transition: all 0.20s ease-in;
            -ms-transition: all 0.20s ease-in;
        }


/*#nav .btn-default {
        vertical-align: middle;
    }*/

.page-title {
    margin: 5px 20px 10px 20px;
    padding: 0 15px 0 15px;
    box-shadow: 1.2px 1.5px 2px 1.2px rgba(255, 0, 0, 0.3);
}

    .page-title .title {
        float: left;
    }

    .page-title .logo {
        float: right;
        padding-top: 10px;
        width: 100px;
    }

        .page-title .logo img {
            max-width: 100%;
            float: right;
        }

    .page-title hr {
        border: 0.5px solid #b3b3b3;
        width: 100%;
    }

    .page-title h5 {
        font-size: 12pt;
        font-weight: bold;
        font-style: italic;
    }

/* Frame formulários */
.frame {
    padding: 20px;
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 0, 0, 0.6);
    outline: 0 none;
    background: white;
    margin-bottom: 50px;
}

    .frame hr {
        border: 0.5px solid #f0f0fa;
    }

    .frame #codcliente {
        width: 18%;
    }

        .frame #codcliente input {
            width: 75%;
        }

    .frame #nvagas input {
        width: 55%;
    }

    .frame #ntipos input {
        width: 55%;
    }

    .frame .currency label {
        display: block;
    }

    .frame .currency input {
        display: inline;
        width: 65%;
    }

    .frame .currency_span {
        display: inline;
        margin-left: 5px;
    }


    .frame textarea {
        height: 100px;
        resize: none;
        overflow-y: scroll;
    }

    .frame select {
        cursor: pointer;
    }

    .frame h5 {
        font-size: 12pt;
    }

/* Checkbox */
#isvaga label, #ismulti label {
    display: inline;
}

.regular-checkbox {
    display: none;
}

    .regular-checkbox + label {
        background-color: #fafafa;
        border: 1px solid #cacece;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
        padding: 0 15px 10px 10px;
        border-radius: 3px;
        position: relative;
        margin-left: 20%;
        transition: all 0.35s ease-out;
        -webkit-transition: all 0.15s ease-out;
        -moz-transition: all 0.15s ease-out;
        -o-transition: all 0.15s ease-out;
        -ms-transition: all 0.15s ease-out;
    }


    .regular-checkbox:hover + label {
        cursor: pointer;
        background-color: #e9ecee;
        border: 1px solid #adb8c0;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
        transition: all 0.15s ease-in;
        -webkit-transition: all 0.15s ease-in;
        -moz-transition: all 0.15s ease-in;
        -o-transition: all 0.15s ease-in;
        -ms-transition: all 0.15s ease-in;
    }

    .regular-checkbox:disabled + label {
        background-color: #e9ecee;
        cursor: not-allowed;
    }

    .regular-checkbox + label:active, .regular-checkbox:checked + label:active {
        box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
    }

    .regular-checkbox:checked + label {
        color: #99a1a7;
    }

        .regular-checkbox:checked + label:after {
            content: '\2714';
            font-size: 20px;
            position: absolute;
            top: 1px;
            left: 5px;
            color: #99a1a7;
        }


.tag {
    position: relative;
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    margin-left: 20%;
}



/* Página Definições */

.definicoes_menu {
    text-align: center;
    margin-top: 5px;
    display: flex;
}

    .definicoes_menu .btn_menu {
        width: 20%;
    }


        .definicoes_menu .btn_menu .btn-default {
            font-size: 12pt;
            width: 200px;
            height: 40px;
            margin-bottom: 5px;
            padding: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }

            .definicoes_menu .btn_menu .btn-default.sub-button {
                font-size: 10pt;
                width: 90px;
                height: 30px;
                padding: 5px;
                text-transform: uppercase;
                margin: 0;
            }


    .definicoes_menu .btn-default.active {
        border-color: rgba(204, 0, 0, 0.3);
        background-color: #cc0000;
        color: white;
        /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
        transition: all 0.35s ease-in;
        -webkit-transition: all 0.35s ease-out;
        -moz-transition: all 0.35s ease-out;
        -o-transition: all 0.35s ease-out;
        -ms-transition: all 0.35s ease-out;
    }

        .definicoes_menu .btn-default.active:focus {
            border-color: rgba(204, 0, 0, 0.3);
            background-color: #cc0000;
            color: white;
            /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
            transition: all 0.35s ease-in;
            -webkit-transition: all 0.35s ease-out;
            -moz-transition: all 0.35s ease-out;
            -o-transition: all 0.35s ease-out;
            -ms-transition: all 0.35s ease-out;
        }

#seccao-definicoes .action-buttons {
    width: 100%;
    margin-bottom: 5px;
}


#seccao-definicoes #table_seeds_fixos, #seccao-definicoes #table_seeds_moveis {
    width: 800px;
}

#seccao-definicoes #table_blacklist {
    width: 400px;
}

#seccao-definicoes table tbody, #seccao-definicoes table thead {
    display: block;
}

#seccao-definicoes table tbody {
    overflow: auto;
    height: 500px;
}

#seccao-definicoes th {
    width: 400px;
}

#seccao-definicoes td {
    width: 400px;
}

#seccao-definicoes .table_hover:hover {
    cursor: default;
    background-color: #ffd1b3;
    transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
}

#import_window hr {
    margin-top: 0;
    margin-bottom: 0;
}

#import_window #import_buttons {
    margin: 0;
}

#import_window input[type="file"] {
    width: 100%;
}

#SuccessPage h4.alert_success {
    width: 85%;
}



/*Page error Pop-up*/

#import_logo_page {
    position: fixed;
    padding: 0;
    margin: 0;
    top: -500px;
    left: -500px;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.35);
    z-index: 99;
    transition: width 0.3s, height 0.3s;
}


    #import_logo_page .import_logo {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        position: absolute;
        left: 15%;
        top: 30%;
        width: 60%;
        height: auto;
        padding: 30px;
        background: white;
    }


        #import_logo_page .import_logo h5 {
            font-weight: bold;
            text-transform: uppercase;
        }



/* Página Definições END */

/* Página Clientes */

#seccao-clientes {
    margin-bottom: 150px;
}


    #seccao-clientes table tbody, #seccao-clientes table thead {
        display: block;
    }

    #seccao-clientes table tbody {
        overflow: auto;
        height: 500px;
    }

    #seccao-clientes th {
        width: 350px;
    }

    #seccao-clientes td {
        width: 350px;
    }

/* Página Clientes END */

/* Página Clientes */

#seccao-faturas {
    margin-bottom: 150px;
}

    #seccao-faturas table tbody, #seccao-faturas table thead {
        display: block;
    }

    #seccao-faturas table tbody {
        overflow: auto;
        height: 500px;
    }

    #seccao-faturas th {
        width: 350px;
    }

    #seccao-faturas td {
        width: 350px;
    }

#adiciona_faturaForm .frame #job_descricao {
    background-color: rgb(230,230,230);
    margin-top: 37px;
    margin-left: 20px;
    border-radius: 5px;
    height: 37px;
}

    #adiciona_faturaForm .frame #job_descricao h5 {
        margin: 0;
        padding: 0;
        margin-top: -5px;
        font-weight: bold;
        text-transform: uppercase;
    }



#edita_faturaForm .frame #job_descricao {
    background-color: rgb(230,230,230);
    margin-top: 37px;
    margin-left: 20px;
    border-radius: 5px;
    height: 37px;
}

    #edita_faturaForm .frame #job_descricao h5 {
        margin: 0;
        padding: 0;
        margin-top: -5px;
        font-weight: bold;
        text-transform: uppercase;
    }

/* Página Clientes END */



/* Página Projectos */
#seccao-projectosMain {
    width: 100%;
    overflow-x: auto;
}


    #seccao-projectos table tbody, #seccao-projectos table thead,
    #seccao-projectosMain table tbody, #seccao-projectosMain table thead {
        display: block;
        overflow: auto;
    }


    #seccao-projectos table tbody, #seccao-projectosMain table tbody {
        height: 500px;
    }

    #seccao-projectosMain th, #seccao-projectos th, #seccao-projectosMain td, #seccao-projectos td {
        border: 3px solid white;
    }

        #seccao-projectosMain th#NroJob, #seccao-projectosMain td#NroJob {
            width: 110px;
        }

        #seccao-projectosMain th#Data, #seccao-projectosMain td#Data {
            width: 100px;
        }

        #seccao-projectosMain th#Descricao, #seccao-projectosMain td#Descricao {
            width: 200px;
        }

        #seccao-projectosMain th#nProjectos, #seccao-projectosMain td#nProjectos {
            width: 75px;
        }

        #seccao-projectosMain th#nFaturas, #seccao-projectosMain td#nFaturas {
            width: 75px;
        }

        #seccao-projectosMain th#Tracker, #seccao-projectosMain td#Tracker {
            width: 75px;
        }

        #seccao-projectosMain th#Multitipo, #seccao-projectosMain td#Multitipo {
            width: 90px;
        }

        #seccao-projectosMain th#Cliente, #seccao-projectosMain td#Cliente {
            width: 170px;
        }

        #seccao-projectosMain th#Orcamento, #seccao-projectosMain td#Orcamento {
            width: 100px;
        }

        #seccao-projectosMain th#Fatura, #seccao-projectosMain td#Fatura {
            width: 100px;
        }

        #seccao-projectosMain th#Custos, #seccao-projectosMain td#Custos {
            width: 100px;
        }

        #seccao-projectosMain th#CustosExt, #seccao-projectosMain td#CustosExt {
            width: 95px;
        }

        #seccao-projectosMain th#Trash, #seccao-projectosMain td#Trash {
            width: 35px;
        }




        #seccao-projectos th#NroJob, #seccao-projectos td#NroJob {
            width: 110px;
        }

        #seccao-projectos th#Data, #seccao-projectos td#Data {
            width: 100px;
        }

        #seccao-projectos th#Descricao, #seccao-projectos td#Descricao {
            width: 200px;
        }

        #seccao-projectos th#NroVaga, #seccao-projectos td#NroVaga {
            width: 90px;
        }

        #seccao-projectos th#NroTipo, #seccao-projectos td#NroTipo {
            width: 90px;
        }

        #seccao-projectos th#Cliente, #seccao-projectos td#Cliente {
            width: 170px;
        }

        #seccao-projectos th#Orcamento, #seccao-projectos td#Orcamento {
            width: 100px;
        }

        #seccao-projectos th#Fatura, #seccao-projectos td#Fatura {
            width: 100px;
        }

        #seccao-projectos th#Custos, #seccao-projectos td#Custos {
            width: 100px;
        }

        #seccao-projectos th#CustosExt, #seccao-projectos td#CustosExt {
            width: 95px;
        }

        #seccao-projectos th#Trash, #seccao-projectos td#Trash {
            width: 35px;
        }


#detalhes_projeto .frame {
    width: 90%;
    margin-left: 5%;
}

#vagaForm .frame {
    width: 90%;
    margin-left: 5%;
}

#projetoForm .frame {
    width: 90%;
    margin-left: 5%;
}

#adiciona_projectoForm .frame {
    width: 90%;
    margin-left: 5%;
}


    #adiciona_projectoForm .frame #job_descricao {
        background-color: rgb(230,230,230);
        margin-top: 37px;
        margin-left: 20px;
        border-radius: 5px;
        height: 37px;
    }

        #adiciona_projectoForm .frame #job_descricao h5 {
            margin: 0;
            padding: 0;
            margin-top: -5px;
            font-weight: bold;
            text-transform: uppercase;
        }




#edita_projectoForm .frame {
    width: 90%;
    margin-left: 5%;
}


    #edita_projectoForm .frame #job_descricao {
        background-color: rgb(230,230,230);
        margin-top: 37px;
        margin-left: 20px;
        border-radius: 5px;
        height: 37px;
    }

        #edita_projectoForm .frame #job_descricao h5 {
            margin: 0;
            padding: 0;
            margin-top: -5px;
            font-weight: bold;
            text-transform: uppercase;
        }


#delete_projectoForm .frame {
    width: 90%;
    margin-left: 5%;
}


    #delete_projectoForm .frame #job_descricao {
        background-color: rgb(230,230,230);
        margin-top: 37px;
        margin-left: 20px;
        border-radius: 5px;
        height: 37px;
    }

        #delete_projectoForm .frame #job_descricao h5 {
            margin: 0;
            padding: 0;
            margin-top: -5px;
            font-weight: bold;
            text-transform: uppercase;
        }

/* Página Projectos END */

/* Página Sample */

/*#sample-page table{
    width:2270px;
}*/

#sample-page table thead th {
    vertical-align: central;
}


#sample-page table th, #sample-page table td {
    padding: 5px;
    text-align: left;
    width: 150px;
    border: 1px solid white;
}



#sample-buttons {
    text-align: right;
}


    #sample-buttons .btn-default {
        text-align: center;
        width: 35px;
    }

        #sample-buttons .btn-default i {
            font-size: 12pt;
        }

            #sample-buttons .btn-default i.fas.fa-filter {
                font-size: 11pt;
            }

            #sample-buttons .btn-default i.fas.fa-times {
                font-size: 9pt;
            }

/* Página Sample END */

#projectSample .search-box form .form-search input {
    width: 265px;
    display: inline;
}

#projectSample .search-box form .form-search #search-btn {
    text-align: center;
    width: 25px;
    height: 25px;
    display: inline;
    border:none;
}

#projectSample #tabela_container table tbody, #projectSample #tabela_container table thead {
    display: block;
}

#projectSample #tabela_container table tbody {
    overflow: auto;
    height: 500px;
}

#projectSample #tabela_container th, #projectSample #tabela_container td {
    width: 200px;
}

#gerar_window .frame {
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
}

#gerar_window .div-topo {
    position: relative;
    width: 100%;
    padding: 5px;
    margin-bottom: 20px;
}

    #gerar_window .div-topo #project_descricao {
        width: 70%;
        position: absolute;
        top: 5px;
        left: 0;
    }

    #gerar_window .div-topo #gerar_qtd {
        width: 30%;
        position: absolute;
        top: 0;
        right: 0;
    }

#gerar_window #gerar_qtd label {
    margin-left: 50px;
}

#gerar_window #gerar_qtd input {
    width: 55%;
    height: 30px;
    margin-left: 50px;
}


#gerar_window #tipo_sample {
    position: relative;
    width: 100%;
    padding: 10px;
    margin-top: 60px;
    text-align: center;
}


    #gerar_window #tipo_sample .btn-default {
        width: 120px;
        padding: 5px;
        font-size: 14pt;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        margin: 20px;
    }

        #gerar_window #tipo_sample .btn-default.active {
            border-color: rgba(204, 0, 0, 0.3);
            background-color: #cc0000;
            color: white;
            /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
            transition: all 0.35s ease-in;
            -webkit-transition: all 0.35s ease-out;
            -moz-transition: all 0.35s ease-out;
            -o-transition: all 0.35s ease-out;
            -ms-transition: all 0.35s ease-out;
        }

            #gerar_window #tipo_sample .btn-default.active:focus {
                border-color: rgba(204, 0, 0, 0.3);
                background-color: #cc0000;
                color: white;
                /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
                transition: all 0.35s ease-in;
                -webkit-transition: all 0.35s ease-out;
                -moz-transition: all 0.35s ease-out;
                -o-transition: all 0.35s ease-out;
                -ms-transition: all 0.35s ease-out;
            }

        #gerar_window #tipo_sample .btn-default:focus {
            border-color: rgba(204, 0, 0, 0.3);
            background-color: white;
            color: #cc0000;
            box-shadow: none;
            /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
            transition: all 0.35s ease-in;
            -webkit-transition: all 0.35s ease-out;
            -moz-transition: all 0.35s ease-out;
            -o-transition: all 0.35s ease-out;
            -ms-transition: all 0.35s ease-out;
        }


#gerar_window #div_options .frame {
    width: 50%;
    margin-left: 25%;
    margin-top: 15px;
    margin-bottom: 0;
    padding: 20px;
}


    #gerar_window #div_options .frame h4 {
        text-align: center;
        text-transform: uppercase;
    }


/* Checkbox */
[class*="option-"] {
    display: block;
}

    [class*="option-"] label {
        display: inline;
    }

    [class*="option-"] .regular-checkbox + label {
        padding: 0 15px 3px 5px;
        margin-top: -5px;
    }

    [class*="option-"] .regular-checkbox:checked + label:after {
        content: '\2714';
        font-size: 12pt;
        position: absolute;
        top: 1px;
        left: 3px;
        color: #99a1a7;
    }

    [class*="option-"] .tag {
        position: relative;
        display: inline;
        font-weight: bold;
        margin-left: 15%;
    }



#gerar_buttons {
    text-align: right;
}


/* Página Samples END */
/* Página Utilizadores */
#seccao-users table tbody, #seccao-users table thead {
    display: block;
}

#seccao-users table tbody {
    overflow: auto;
    height: 500px;
}

#seccao-users th {
    width: 350px;
}

#seccao-users td {
    width: 350px;
}


#register_user #username, #edit_user #username {
    width: 40%;
}

#register_user #email_group, #edit_user #email_group {
    width: 80%;
}

    #register_user #email_group label, #edit_user #email_group label {
        display: block;
    }

    #register_user #useremail, #edit_user #email_group #useremail {
        width: 70%;
        display: inline-block;
    }

#edit_user #verif_resend {
    display: inline-block;
    margin: 0;
    margin-top: -4px;
    margin-left: -3px;
}

#register_user #userphone, #edit_user #userphone {
    width: 30%;
}

#register_user #usertype, #edit_user #usertype {
    width: 40%;
}

/* Página Utilizadores END */
/*Page error Pop-up*/
#page_error {
    position: fixed;
    padding: 0;
    margin: 0;
    top: -500px;
    left: -500px;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.35);
    z-index: 99;
    transition: width 0.3s, height 0.3s;
}


    #page_error .error_message {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        position: absolute;
        left: 25%;
        top: 30%;
        width: 50%;
        height: auto;
        padding: 30px;
        background: white;
    }

        #page_error .error_message img {
            max-width: 60%;
        }

        #page_error .error_message h4 {
            font-weight: bold;
            text-transform: uppercase;
        }

        #page_error .error_message h5 {
            font-weight: bold;
            text-transform: uppercase;
        }

        #page_error .error_message button {
            width: 100px;
        }


/*Page sucesso Pop-up*/
#page_sucesso {
    position: fixed;
    padding: 0;
    margin: 0;
    top: -500px;
    left: -500px;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.35);
    z-index: 99;
    transition: width 0.3s, height 0.3s;
}


    #page_sucesso .sucesso_message {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        position: absolute;
        left: 25%;
        top: 30%;
        width: 50%;
        height: auto;
        padding: 30px;
        background: white;
    }

        #page_sucesso .sucesso_message img {
            max-width: 60%;
        }

        #page_sucesso .sucesso_message h4 {
            font-weight: bold;
            text-transform: uppercase;
        }

        #page_sucesso .sucesso_message h5 {
            font-weight: bold;
            text-transform: uppercase;
        }

            #page_sucesso .sucesso_message h5 span {
                text-transform: none;
                margin-left:10%;
            }

        #page_sucesso .sucesso_message button {
            width: 100px;
        }

/*Page filter Pop-up*/
#page_filter {
    position: fixed;
    padding: 0;
    margin: 0;
    top: -500px;
    left: -500px;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.35);
    z-index: 99;
    transition: width 0.3s, height 0.3s;
}


    #page_filter .filter_container {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        position: absolute;
        left: 25%;
        top: 20%;
        width: 50%;
        height: auto;
        padding: 30px;
        background: white;
    }

        #page_filter .filter_container h4 {
            font-weight: bold;
            text-transform: uppercase;
        }


        #page_filter .filter_container .filter_options {
            margin-top: 30px;
            height: 300px;
            position: relative;
        }


        #page_filter .filter_container button {
            width: 100px;
        }

        #page_filter .filter_container #campo_filter {
            width: 300px;
        }

        #page_filter .filter_container .filter_value {
            position: absolute;
            top: 110px;
            left: 35px;
            height: 0;
            transition: height 0.3s;
            overflow: hidden;
            width: 70%;
        }

            #page_filter .filter_container .filter_value input[type=radio] {
                cursor: pointer;
            }


            #page_filter .filter_container .filter_value #filtro_valores {
                margin-top: 25px;
            }

                #page_filter .filter_container .filter_value #filtro_valores label {
                    display: block;
                }

                #page_filter .filter_container .filter_value #filtro_valores input {
                    width: 120px;
                    display: inline;
                }


                #page_filter .filter_container .filter_value #filtro_valores #entre {
                    display: inline;
                    opacity: 0;
                    transition: opacity 0.2s;
                }


            #page_filter .filter_container .filter_value#data label {
                display: block;
            }

            #page_filter .filter_container .filter_value#data input {
                width: 150px;
                display: inline;
            }





/*Page error Pop-up*/
#page_export_filter {
    position: fixed;
    padding: 0;
    margin: 0;
    top: -500px;
    left: -500px;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.35);
    z-index: 99;
    transition: width 0.3s, height 0.3s;
}


    #page_export_filter .export_filter_container {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        position: absolute;
        left: 25%;
        top: 20%;
        width: 50%;
        height: auto;
        padding: 30px;
        background: white;
    }

        #page_export_filter .export_filter_container h4 {
            font-weight: bold;
            text-transform: uppercase;
        }


        #page_export_filter .export_filter_container .export_filter_options {
            margin-top: 30px;
            height: 300px;
            position: relative;
        }


        #page_export_filter .export_filter_container button {
            width: 100px;
        }

        #page_export_filter .export_filter_container #export_campo_filter {
            width: 300px;
        }

        #page_export_filter .export_filter_container .export_filter_value {
            position: absolute;
            top: 110px;
            left: 35px;
            height: 0;
            transition: height 0.3s;
            overflow: hidden;
            width: 70%;
        }

            #page_export_filter .export_filter_container .export_filter_value label {
                display: block;
            }

            #page_export_filter .export_filter_container .export_filter_value input {
                width: 150px;
                display: inline;
            }


/* ** Login Screen ** */
.login {
    width: 40%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.wrapper_login {
    width: 70%;
    padding: 20px;
    margin-left: 15px;
}


.logo_login {
    margin-top: 7%;
    width: 45%;
}

    .logo_login img {
        margin-left: 10%;
        width: 80%;
    }

footer {
    width: 100%;
    background: rgba(0,0,0,0.85);
    color: #9f9f9f;
    font-size: 10pt;
    position: absolute;
    bottom: 0;
    padding: 15px;
}

@media screen and (min-width: 1300px) {
    .login {
        margin-bottom: 100px;
    }

    #sample-page {
        margin-bottom: 70px;
    }

    #seccao-clientes {
        margin-bottom: 80px;
    }
}
