/*
 *  Copyright (C) SCHUNK GmbH & Co. KG - All Rights Reserved
 *  Unauthorized copying of this file, via any medium is strictly prohibited
 *  Proprietary and confidential
 *  Written by Thomas Rutschke thomas.rutschke@rutschkeconsulting.com, November 2022
 */
/* 
    CSS for the structure of an ui-calc application
    Created on : 29.05.2024, 09:34:27
    Author     : ThomasRutschke
*/

.cursorBusy {
    cursor:wait;
}

.pointerEventsOff {
    pointer-events: none;
}

.pointerEventsOn {
    pointer-events: auto;
}

body {
    margin: 0;    
    background: #f5f5f5;
    font-size: 1rem;
    color: #444444;
    display: block;
    font-weight: normal;

}

div.applicationFix {
    /* margin: 0 auto; */
    margin: 0 4rem 0 4rem;
    width: 1440px;
    background: #fff;      
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

div.pageFix {
    /*
    display: flex;
    height: 1500px;
    */

}

div.content {
    /*margin-left: 20px;
    margin-right: 20px;
    padding-top: 160px;*/
}

div.app-container {
    margin: 0 auto;
    width: 1280px;
    background: #fff;      
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-frame {
    width: 100%;
    padding: 160px 10px;
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 auto;
}

.content-frame-column-12 {
    width: 100%;
}

div.footerHtml {
    margin-top: auto;
    background-image: url(../images/html-header-without-claim.svg);
    background-size: 100%;
}

div.copyright {
    color: white !important;
    font-size: .88rem;
    width: 100%;
    border: 0;
    padding: 0;
}

p.footerCopyright {
    text-align: right;
    padding-top: 90px;
    padding-bottom: 7px;
    padding-right: 30px;
    margin: 0; 
}

img.claim {
    width: 400px;
    margin: 10px 50px;
    padding: 10px 50px 50px 10px;
}

article {
    position: relative;
    top: 0;
    margin: 0px;
    padding-top: 0;
    padding-bottom: 0;
    /* border: solid 1px lightBlue; */
    /* TEST ONLY */
    padding: 2px;
    /*width: 100%;*/
}



article.tool-title {
    margin: 4rem;
}

/*
article.data-title {
    background-color: #f5f5f5;
    margin: 4rem;
}
*/

h1 {
    text-align: left;
    font-size: 2.25rem !important;
    color: #003d6a;
    display: block;
    font-weight: bold;
    line-height: normal;
}

h2 {
    text-align: left;
    font-size: 1.75rem !important;
    color: #003d6a;
    display: block;
    font-weight: bold;
    line-height: normal;
}

h2::after {
    content: attr(data-after);
}

h3 {
    text-align: left;
    font-size: 1.5rem !important;
    color: #003d6a;
    display: block;
    font-weight: bold;
    line-height: normal;
}

h1>p1 {

}

.text-important {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    padding: .5rem 1rem .5rem .5rem;
}

/* temporär */ 
.text-right {
    text-align: right;
}

nav.top {
    background-color: #f5f5f5;
    padding: 40px 0 40px 0;
    justify-content: center;    
}

nav.top>schunk-btn-bc {
    margin: 0 20px;
}


.nav-btn-separator {
    position: relative;
    top: 20px;
    background-color: #c8c8c8;
    width: 100px;
    height: 1px;
}

nav.bottom {
    float: right;
    margin: 1rem 4rem 4rem;
}

nav.bottom, nav.top {
    display: flex;
    /*justify-content: center;*/

}





