/*GENERAL STYLE FOR PARI DASHBOARD*/
/* FONTS*/

/* cabin-condensed-regular - latin */
@font-face {
    font-family: 'Cabin Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/cabin-condensed-v11-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Cabin Condensed'), local('CabinCondensed-Regular'),
         url('../fonts/cabin-condensed-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/cabin-condensed-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/cabin-condensed-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/cabin-condensed-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/cabin-condensed-v11-latin-regular.svg#CabinCondensed') format('svg'); /* Legacy iOS */
  }

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Roboto'), local('Roboto-Regular'),
         url('../fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
  }


/*GENERAL*/

body {
        width: 100%;
        margin: 0; 
        padding: 0;
        font-family: 'Roboto', Arial;
        min-height: 100%;
        position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Cabin Condensed', Arial;
    font-size: 40px;
}

#bg_container {
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center;
}


/*HEADER*/

header {
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    color: #434343;
    font-size: 30px;
}

#logo_box img {
    width: 100%;
    padding: 3px;
}

#header_box {
    display: flex;
    align-items: center;
}

#header_time {
    width: 250px;
    text-align: right;
}

#header_date {
        width: 1180px;
        margin: 0 auto;
        text-align: center;
}

#time_text {
    text-align: right;
    padding-right: 20px;
}

/*SETTING ICONS*/

#notification_bell {
    background-color: #df002a;
    width: 67px;
    height: 67px;
    display: table;
    text-align: center;
    display: none; /*WIRD IM ERTEN SCHRITT NICHT BENÖTIGT*/
}

#bell_img {
    display: table-cell;
    vertical-align: middle;
}

#notification_bell img {
    width: 50px;
    height: 38px;
}

#settings {
    padding: 15px;
    position: absolute;
    right: 0;
    z-index: 20;
}

#settings_img {
    width: 60px;
    height: 60px;
    float: right;
    display: none; /*WIRD IM ERTEN SCHRITT NICHT BENÖTIGT*/
}

#lightswitch_img {
   /* raus solange settings_img draußen ist margin-right: 10px; */
    width: 60px;
    height: 60px;
    display: inline-block;
}

#pari_profile {
    margin: 0 auto;
    text-align: center;
    min-height: 250px;

}

#pari_profile span {
    display: inline-block;
    vertical-align: middle;
    margin-top: 8%;
  }

/*BOXES*/


#content {
    max-width: 1180px;
    margin: 0 auto;
}

#flex_container {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;

}

#flex_container a {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 20;
}

.flex_child {
    background-color: rgba(255,255,255,0.8);
    display: table;
    flex-wrap: wrap;
    margin: auto;
    width: 280px;
    height: 280px;
   
    z-index: 20;
    box-shadow: 4px 4px 52px 0px rgba(0,0,0,0.75);
}

.flex_child img {
    width: 100%;
    height: 60px;

}

.flex_img_container {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}


/* FOOTER */

footer {
    height: 150px;
    z-index: 20;
}

#support {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    margin-top: 24px;
    z-index: 20;
}

#support a {
    z-index: 20;
}




/*MEDIA QUERIES*/

@media screen and (max-width: 1024px) {
    #settings_img {
        float: none;
        height: 40px;
        width: 40px;
    }

    #lightswitch_img {
        margin-right: 5px;
        width: 40px;
        height: 40px;
    }
}
