/* Basis-Layout */
*,
div,
img,
h1,
h2,
h3,
h4,
p,
input,
button {
    margin:0;
    padding:0;
    border:0;
    outline: 0 none !important;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

a,a:link,a:visited,a:active, a:focus{outline:none !important;}

html,
body {
    height:100%;
}

body {
    position:relative;
    background-color:#ffffff;
    font:62.5% 'Source Sans Pro', sans-serif;
    color:#545454;
}

/* Responsive & Print */
.no-mobile,
.no-print {
    display:inline;
}

.only-mobile {
    display:none;
}

.only-print {
    display:none;
}

/* UI Icons und Buttons */
.btn{
    width: 55px;
    height: 55px;
    display: inline-block;
    padding: 0;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
    text-indent: -1000em;
    background-size: 80% 80%;
    cursor: pointer;
    overflow: hidden;
    float: left;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}

.btn-extended{
    width: auto;
    height: 45px;
    display: inline-block;
    text-align: left;
    padding-left: 50px;
    padding-right: 30px;
    background-position: -25px center;
    background-repeat: no-repeat;
    color: #fff;
    background-size: 53% 53%;
    cursor: pointer;
    overflow: hidden;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    background-color: #502471;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-left: 2px;
    border-radius: 4px;
}

.btn-extended.time{
    background-position: -27px center;
    background-size: 57% 57%;
}

.btn-extended:hover,
.btn-extended:focus{
    background-color: #462d6e;
}

.settings{ background-image: url("../img/icons/icon_settings.svg"); }
.logout{ background-image: url("../img/icons/icon_logout.svg"); }
.add{ background-image: url("../img/icons/icon_add.svg"); }
.time{ background-image: url("../img/icons/icon_time.svg"); }
.edit{ background-image: url("../img/icons/icon_edit_dark.svg"); }
.edit:hover{ background-image: url("../img/icons/icon_edit.svg"); }
.delete{ background-image: url("../img/icons/icon_delete_dark.svg"); }
.delete:hover{ background-image: url("../img/icons/icon_delete.svg"); }
.archive{ background-image: url("../img/icons/icon_archive_dark.svg"); }
.archive:hover{ background-image: url("../img/icons/icon_archive.svg"); }
.info{ background-image: url("../img/icons/icon_info_dark.svg"); }
.info:hover{ background-image: url("../img/icons/icon_info.svg"); }

.paginate_button.previous{ background-image: url("../img/arrows/arrow_left_dark.svg"); }
.paginate_button.next{ background-image: url("../img/arrows/arrow_right_dark.svg"); }


/* Header */
header{
    background-color: #462d6e;
    white-space: nowrap !important;
}

header .inside {
    color: #ffffff;
    margin: 0 auto;
    overflow: hidden;
    font-size: 1.65em;
    white-space: nowrap !important;
    display: block;
    max-height: 55px;
}

header #logo{
    display: inline-block;
    padding: 10px 12px 6px 10px;
    background-color: #2f1f48;
    float: left;
}

header #logo svg {
    width: 35px;
    height: 35px;
}

header #logo svg .fill{
    fill: #ffffff;
}

/* Main Navigation */
header #v-main-navigation{
    display: inline-block;
}

header #v-main-navigation ul{
    display: block;
}

header #v-main-navigation ul li{
    display: inline-block;
    float: left;
}

header #v-main-navigation ul li a{
    display: block;
    padding: 17px 20px 17px 20px;
    color: #cccccc;
    text-decoration: none;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}

header #v-main-navigation ul li a:hover,
header #v-main-navigation ul li a:focus,
header #v-main-navigation ul li.active a,
header .inside .right a.btn:hover{
    color: #ffffff;
    background-color: #382359;
}

/* User Informations und Settings */
header .inside .right {
    float: right;
    display: block;
    padding-right: 35px;
}

header .inside .right .btn{
    background-size: 45% 45%;
}

header .inside .right .username{
    padding: 17px 60px 17px 0;
    display: inline-block;
    color: #ffffff;
    float: left;
    position: relative;
}

header .inside .right .username:before{
    content: '';
    width: 55px;
    height: 55px;
    display: block;
    padding: 0;
    text-align: left;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
    text-indent: -1000em;
    background-size: 45% 45%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -52px;
    background-image: url("../img/icons/icon_smile.svg");
}

/* Main Content */
#wrapper{
    display: block;
    position: relative;
    min-height: 100%;
}

#wrapper #main{
    display: block;
    position: relative;
}

#main p,
#main ul,
#main ol,
#main pre,
#main dl{
    font-size: 1.6em;
    line-height: 1.8em;
    padding: 0 0 3em;
    max-width: 100%;
}

#main dl{
    line-height: 1.6em;
    padding: 0;
}

#main dl dt{
    display: inline-block;
    width: 15%;
    padding: 5px 0;
}

#main dl dd{
    font-weight: 600;
    display: inline-block;
    width: 84%;
    color: #462d6e;
    clear: right;
    padding: 5px 0;
}

#main pre{
    display: block;
    max-width: 960px;
    overflow-x: scroll;
    margin-bottom: 60px;
    border: 1px solid #e3e3e3;
    padding: 15px;
}

#main p.quelle {
    font-size: 1.3em;
    margin-top: -1em;
    line-height: 1.4em;
    color: #989898;
}

#main a{
    text-decoration: none;
    color: #341869;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

#main a:hover,
#main a:focus{
    color: #6e3e88;
}

#main h1 {
    font-size: 3.8em;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.1em;
    color: #545454;
}

#main h2 {
    font-size: 2.5em;
    margin-bottom: 0.8em;
    font-weight: 500;
    line-height: 1.4em;
    color: #341869;
}

#main h3 {
    font-size: 2em;
    margin-bottom: 0.6em;
    font-weight: 600;
    line-height: 1.4em;
    color: #545454;
}

/* Zurücklink */
a.back{
    font-size: 1.5em;
    line-height: 1.8em;
    font-weight: 600;
}

a.back:before{
    content: '';
    background-image: url("../img/arrows/arrow_left_dark.svg");
    width: 20px;
    height: 24px;
    display: inline-block;
    background-size: 20px;
    background-position: bottom left;
    margin-right: 8px;
    float: left;
}

/* Standardcontent (eingeloggt) */
.default-content-container{
    width: 960px;
    margin: 0 auto;
    padding-top: 60px;
}

/* Interface- (eingeloggt) */
.interface-container{
    width: 100%;
    margin: 0 auto;
    padding: 60px 78px 80px 78px;
}

/* Zweispalten-Layout */
.subcolumns {
    width: 100%;
    overflow: hidden;
}

.c50l{
    float: left;
}

.c50r{
    float: right;
    margin-left: -5px;
}

.c50l, .c50r {
    width: 50%;
}

.subcl {
    padding: 0 1em 0 0;
}

/* Footer */
footer{
    background-color: #444444;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer .inside {
    position: relative;
    color: #ffffff;
    margin: 0 auto;
    overflow: hidden;
    font-size: 1.5em;
    padding: 0 35px;
}

footer .inside p,
footer .inside a{
    display: inline-block;
    padding: 20px;
}

footer .inside a {
    color: #cccccc;
    text-decoration: none;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}

footer .inside a:hover,
footer .inside a:focus{
    color: #ffffff;
    background-color: #1a1a1a;
}

footer .inside .left {
    float: left;
}

footer .inside .right {
    float: right;
}

/* Statischer Inhalt außerhalb des geschützten Portals */
body.v-project-static #wrapper #main{
    text-align: left;
    margin: 50px auto 0 auto;
    padding-bottom: 120px;
    width: 960px;
}

body.v-project-static header .inside{
    text-align: left;
    margin: 50px auto 0 auto;
    width: 960px;
}

body.v-project-static header .inside .right {
    padding-top: 10px;
}

body.v-project-static .logo_static {
    width: 300px;
    height: 68px;
    background: url("../img/logo_login.svg") no-repeat;
    background-size: 70%;
    margin: 0 20px 0 0;
    display: inline-block;
    float: left;
}

body.v-project-static header .inside .right .username{
    color:#545454;
}

body.v-project-static header .inside .right .username:before{
    background-image: url("../img/icons/icon_smile_dark.svg");
}

body.v-project-static .settings{ background-image: url("../img/icons/icon_settings_dark.svg"); }
body.v-project-static .logout{ background-image: url("../img/icons/icon_logout_dark.svg"); }

body.v-project-static header #v-main-navigation ul li a:hover,
body.v-project-static header #v-main-navigation ul li a:focus,
body.v-project-static header #v-main-navigation ul li.active a,
body.v-project-static header .inside .right a.btn:hover{
    background-color: transparent;
}

/* Data-Tables (Listen) */
#main p.empty{
    margin: 100px 0;
    font-size: 1.8em;
}
.auswertung-data-table {
    font-size: 1.5em !important;
}

.auswertung-data-table td,
.auswertung-data-table th {
    white-space: normal !important;
}

.v-data-table,
.auswertung-data-table{
   margin-top: 25px;
   margin-bottom: 30px;
   margin-left: 2px;
   width: 100%;
   border-collapse: collapse;
   border-bottom: 1px solid #dbdbdb;
}

.v-data-table td,
.v-data-table th,
.auswertung-data-table td,
.auswertung-data-table th{
    text-align: left !important;
    border: 0;
    color: #5c5c5c !important;
    white-space: nowrap;
    vertical-align: center;
}

.v-data-table td a {
    color: #5c5c5c !important;
}

.v-data-table td .inner,
.auswertung-data-table td .inner {
    padding: 20px 25px 20px 18px;
}

.v-data-table td.functions .inner {
    padding: 0;
    height: 60px;
}

.v-data-table th,
.auswertung-data-table th{
    padding: 20px 25px 15px 18px;
    background: #ffffff;
    color: #221937 !important;
    border-bottom: 1px solid #dbdbdb;
    font-weight: 600;
    background-position: 99% 24px;
    background-repeat: no-repeat;
    background-size: 14px 14px;
}

.v-data-table th.sorting{
    background-image: url("../img/icons/sort.svg") !important;
    cursor: pointer;
}

.v-data-table th.sorting_asc{
    background-image: url("../img/icons/sort_asc.svg") !important;
    cursor: pointer;
}

.v-data-table th.sorting_desc{
    background-image: url("../img/icons/sort_desc.svg") !important;
    cursor: pointer;
}

.v-data-table th.sorting.functions,
.v-data-table th.sorting_asc.functions,
.v-data-table th.sorting_desc.functions{
    background-image: none !important;
}

.v-data-table tr:nth-of-type(2n+1),
.auswertung-data-table tr:nth-of-type(2n+1) {
    background: #ffffff;
}

.v-data-table tr:hover {
    background: #efefef;
}

.v-data-table td.functions{
    text-align: right !important;
    position: relative;
    white-space: nowrap;
}

.v-data-table td.functions button.btn{
    float: right;
    width: 25%;
    height: 100%;
    background-size: 28px;
    background-color: transparent;
    display: inline-block;
}

.v-data-table td.state1 .inner,
.auswertung-data-table td.state1 .inner{
    font-weight: 600;
    color: #bfbfbf;
}

.v-data-table td.state2 .inner,
.auswertung-data-table td.state2 .inner{
    font-weight: 600;
    color: #d7b300;
}

.v-data-table td.state3 .inner,
.auswertung-data-table td.state3 .inner{
    font-weight: 600;
    color: #49b441;
}

.v-data-table td.functions .btn:hover{
    background-color: #d4d4d4;
}

.dataTables_wrapper{
    font-size: 1.5em;
    margin-top: 40px;
    display: block;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter{
    padding: 0 30px 0 0;
    display: inline-block;
}

.dataTables_wrapper input,
.dataTables_wrapper select{
    width: 250px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: all ease-in-out 0.15s;
    -o-transition: all ease-in-out 0.15s;
    transition: all ease-in-out 0.15s;
    font-family: 'Source Sans Pro', sans-serif;
    display: inline-block;
    margin: 0 8px;
}

.dataTables_wrapper #kundenTable_length select,
.dataTables_wrapper #projektTable_length select,
.dataTables_wrapper #leistungTable_length select,
.dataTables_wrapper #benutzerTable_length select{
    width: 80px;
    margin-left: 2px;
}

.dataTables_wrapper #kundenTable_filter input,
.dataTables_wrapper #projektTable_filter input,
.dataTables_wrapper #leistungTable_filter input,
.dataTables_wrapper #benutzerTable_filter input{
    background-image: url("../img/icons/icon_search.svg");
    background-position: 8px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    padding-left: 40px;
}

.dataTables_empty{
    padding: 20px 25px 20px 18px;
    font-style: italic;
}

#kundenTable_wrapper .col_2,
#projektTable_wrapper .col_3,
#leistungTable_wrapper .col_1,
#leistungTable_wrapper .col_5,
#benutzerTable_wrapper .col_3,
#auswertungenTable_wrapper {
    font-weight: 600;
}

.dataTables_info{
    padding-bottom: 20px;
    text-align: center;
}

/* Pagina */
.dataTables_paginate{
    padding-bottom: 60px;
    text-align: center;
}

.dataTables_paginate a{
    display: inline-block;
    cursor: pointer;
    padding-top: 10px;
    width: 39px;
    height: 39px;
    color: #545454 !important;
    text-align: center;
}

.dataTables_paginate a:hover{
    background-color: #dedede;
    color: #462d6e !important;
}

.dataTables_paginate a.current{
    background-color: #c9c9c9;
    color: #000 !important;
}

.dataTables_paginate a.previous,
.dataTables_paginate a.next{
    text-indent: -1000em;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
    background-size: 52% 52%;
}

/* Spaltenbreiten */
#kundenTable .col_1{ width: 5% !important;}
#kundenTable .col_2{ width: 30% !important;}
#kundenTable .col_3{ width: 10% !important;}
#kundenTable .col_4{ width: 10% !important;}
#kundenTable .col_5{ width: 6% !important;}
#kundenTable .col_6{ width: 15% !important;}
#kundenTable .col_7{ width: auto !important;}
#kundenTable .col_8{ width: 210px !important;}

#projektTable .col_1{ width: 10% !important;}
#projektTable .col_2{ width: 30% !important;}
#projektTable .col_3{ width: 30% !important;}
#projektTable .col_4{ width: auto !important;}
#projektTable .col_5{ width: 210px !important;}

#leistungTable .col_1{ width: 5% !important;}
#leistungTable .col_2{ width: 5% !important;}
#leistungTable .col_3{ width: 5% !important;}
#leistungTable .col_4{ width: 5% !important;}
#leistungTable .col_5{ width: 20% !important;}
#leistungTable .col_6{ width: 15% !important;}
#leistungTable .col_7{ width: 5% !important;}
#leistungTable .col_8{ width: auto !important;}
#leistungTable .col_9{ width: 210px !important;}

#benutzerTable .col_1{ width: 10% !important;}
#benutzerTable .col_2{ width: 10% !important;}
#benutzerTable .col_3{ width: 15% !important;}
#benutzerTable .col_4{ width: 15% !important;}
#benutzerTable .col_5{ width: 15% !important;}
#benutzerTable .col_6{ width: auto !important;}
#benutzerTable .col_7{ width: 210px !important;}

#auswertungenTable .col_1{ width: 5% !important;}
#auswertungenTable .col_2{ width: 10% !important;}
#auswertungenTable .col_3{ width: 10% !important;}
#auswertungenTable .col_4{ width: 10% !important;}
#auswertungenTable .col_5{ width: 50% !important;}
#auswertungenTable .col_6{ width: 15% !important; text-align: right !important;}

#kundenTable .col_9,
#leistungTable .col_10,
#projektTable .col_6,
#benutzerTable .col_8{
    display: none !important;
}

.detailinfos{
    padding-bottom: 25px;
    display: block;
    overflow: hidden;
    line-height: 1.5em;
}

.detailinfos dd,
.detailinfos dt{
    display: block;
    padding: 6px 0;
    width: 100%;
}

.detailinfos dd{
    width: 130px;
    float: left;
    font-weight: 600;
}

.detailinfos dt{
    padding-left: 130px;
}

.detailinfos dt p{
    max-width: 700px;
}

.detailinfos_footer{
    font-size: 0.9em;
    color: #848484;
}

strong{
    font-weight: 600;
    color: #686868;
}

/* Allgemeine Fehlerseite */

.errorpage{
    margin-top: 60px;
}

#main .errorpage h2 a{
    color: #000000;
}

#main .errorpage h2 a:hover{
    color: #545454;
}