@font-face {
    font-family: TitilliumWeb-Regular;
    src: url("Fonts/TitilliumWeb-Regular.ttf");
}

@font-face {
    font-family: TitilliumWeb-SemiBold;
    src: url("Fonts/TitilliumWeb-SemiBold.ttf");
}

body {
    font-family: TitilliumWeb-Regular, Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    background: #29abe2;
    color: #333;
    height: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: TitilliumWeb-SemiBold, Arial, sans-serif;
    color: #333;
    margin: 0px;
}

label {
    font-family: TitilliumWeb-SemiBold, Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}



.input-login {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14pt;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #57565615;
    color: #575656;
    box-sizing: border-box;
    font-family: TitilliumWeb-Regular, Arial, sans-serif;
}

    .input-login:focus {
        border-radius: 10px;
        border: 1px solid #57565615!important;
    }

.input, input[type="date" i], select {
    margin-bottom: 10px;
    padding: 5px;
    text-align: right;
    font-size: 12pt;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #57565615;
    color: #575656;
    box-sizing: border-box;
    font-family: TitilliumWeb-Regular, Arial, sans-serif;
}

    .input:focus {
        border-radius: 10px;
        border: 1px solid #57565615 !important;
    }

.accordion {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 12pt;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #29abe2;
    color: #575656;
    box-sizing: border-box;
    font-family: TitilliumWeb-Regular, Arial, sans-serif;
}

    .accordion:hover {
        border-color: #095792;
    }

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #57565615;
}

button {
    background-color: #29abe2;
    color: #FFFFFF;
    font-size: 14pt;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    width: 100%;
    font-family: TitilliumWeb-SemiBold, Arial, sans-serif;
}

.button-small {
    background-color: #29abe2;
    color: #FFFFFF;
    font-size: 14pt;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    width: auto;
    float: right;
    font-family: TitilliumWeb-SemiBold, Arial, sans-serif;
}

    button:hover {
        background-color: #095792;
    }

.menu {
    display: flex;
    flex-wrap: wrap;
}

.button-menu {
    width: 100%;
    height: 150px;
    background-color: #29abe2;
    margin-bottom: 20px;
}

    .button-menu:hover {
        background-color: #095792;
    }

.button-sidemenu {
    width: 100%;
    height: 100px;
    background-color: #29abe2;
    margin-bottom: 20px;
}

.active {
    background-color: #095792;
}

    .button-sidemenu:hover {
        background-color: #095792;
    }

.button-logout {
    background-color: #d34c5d;
}

    .button-logout:hover {
        background-color: #a50000;
    }

.button-disabled {
    background-color: gray !important;
}

    .button-disabled:hover {
        background-color: gray;
    }


.login-content {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #29abe2;
}

    .login-item {
        background-color: #f2f2f2;
        border-radius: 20px;
        height: auto;
        width: 300px;
        padding: 40px;
        box-shadow: 0px 10px 15px #57565615;
    }

.content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    /*flex-direction: column;*/
}

.content-item {
    background-color: #f2f2f2;
    border-radius: 20px;
    width: -webkit-fill-available;
    margin: 40px;
    padding: 40px;
    box-shadow: 0px 10px 15px #57565615;
}

.content-item-50 {
    flex-basis: 50%;
    
}



.content-item-70 {
    flex-basis: 80%;
    background-color: #f2f2f2;
    border-radius: 20px;
    width: -webkit-fill-available;
    margin: 40px 40px 40px 0px;
    padding: 40px;
    box-shadow: 0px 10px 15px #57565615;
}


.content-item-30 {
    position: sticky;
    top: 40px;
    flex-basis: 15%;
    background-color: #f2f2f2;
    border-radius: 20px;
    height: 100%;
    margin: 40px;
    padding: 40px;
    box-shadow: 0px 10px 15px #57565615;
}

.flex-50 {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-direction: row;
    justify-content: center;
    
}

.icon {
    width: 40px;
}

.icon-bar {
    width: 20px;
}

@media only screen and (max-width: 700px) {
    .login-item {
        padding: 20px;
        margin: 20px;
    }
    .content {
        flex-direction: column;
    }

    .flex-50 {
        flex-direction: column;
        gap: 5px;
    }

    .content-item-70 {
      margin: 0px 20px 20px 20px;
      padding: 20px;
}

    .content-item-30 {
        position: inherit;
        margin: 20px 20px 20px 20px;
        padding: 20px;
    }

    .content-item {
     flex-wrap: wrap;
    }

    .button-sidemenu {
        height: 50px;
    }

    h1 {
        font-size: 26px;
    }

    button.button-small {
        width: 100%;
    }
}








:root {
    --bg-table-stripe: #eaeaea;
    --b-table: #e3e3e2;
    --caption: #242423;
}

table {
    margin-top: 20px;
    background-color: transparent;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif
}

th {
    text-align: left;
    font-size: 16px;
    font-family: TitilliumWeb-SemiBold, Arial, sans-serif;
}

.dcf-txt-center {
    text-align: center !important
}

.dcf-txt-left {
    text-align: left !important
}

.dcf-txt-right {
    text-align: right !important
}

.dcf-table caption {
    color: var(--caption);
    font-size: 1.13em;
    font-weight: 700;
    padding-bottom: .56rem
}

.dcf-table thead {
    font-size: .84em
}

.dcf-table tbody {
    border-bottom: 1px solid var(--b-table);
    border-top: 1px solid var(--b-table);
    font-size: .84em
}

.dcf-table tfoot {
    font-size: .84em
}

.dcf-table td, .dcf-table th {
    padding-right: 1.78em
}

.dcf-table td {
    font-size: 14px;
    font-family: TitilliumWeb-Regular, Arial, sans-serif;
}

.dcf-table-bordered, .dcf-table-bordered td, .dcf-table-bordered th {
    border: 1px solid var(--b-table)
}

    .dcf-table-bordered td, .dcf-table-bordered th, .dcf-table-striped td, .dcf-table-striped th {
        padding-left: 1em;
        padding-right: 1em
    }

    .dcf-table-bordered tr:not(:last-child), .dcf-table-striped tr:not(:last-child) {
        border-bottom: 1px solid var(--b-table)
    }

.dcf-table-striped tbody tr:nth-of-type(2n) {
    background-color: var(--bg-table-stripe)
}

.dcf-table thead td, .dcf-table thead th {
    padding-bottom: .75em;
    vertical-align: bottom
}

.dcf-table tbody td, .dcf-table tbody th, .dcf-table tfoot td, .dcf-table tfoot th {
    padding-top: .75em;
    vertical-align: top
}

.dcf-table tbody td, .dcf-table tbody th {
    padding-bottom: .75em
}

.dcf-table-bordered thead th {
    padding-top: 12px;
}

.dcf-wrapper-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 1em;
    position: relative;
    right: 50%;
    width: 100vw
}






    @media only screen and (max-width: 700px) {

        .dcf-table-responsive thead {
            clip: rect(0 0 0 0);
            -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
            height: 1px;
            overflow: hidden;
            position: absolute;
            width: 1px;
            white-space: nowrap
        }

        .dcf-table-responsive tr {
            display: block
        }

        .dcf-table-responsive td {
            -webkit-column-gap: 3.16vw;
            -moz-column-gap: 3.16vw;
            column-gap: 3.16vw;
            display: grid;
            /*grid-template-columns: 1fr 2fr;*/
            text-align: left !important
        }

        .dcf-table-responsive.dcf-table-bordered, .dcf-table-responsive.dcf-table-bordered thead th {
            border-width: 0
        }

            .dcf-table-responsive.dcf-table-bordered tbody td {
                border-top-width: 0
            }

        .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
            padding-bottom: .75em
        }

        .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
            padding-bottom: 0
        }

        .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
            padding-right: 0
        }

        .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
            border-bottom-width: 0
        }

        .dcf-table-responsive tbody td:before {
            content: attr(data-label);
            float: left;
            font-weight: 700;
            padding-right: 1.78em
        }
    }

    .dcf-overflow-x-auto {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .dcf-w-100\% {
        width: 100% !important;
    }