*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

html, body {
    font-size: 16px;
    font-family: "Lato", sans-serif;
}

select{
    border: 1px solid;
    padding: 10px 5px;
    width: 100%;
}

input[type=number]{
    padding: 8px 3px;
    border: 1px solid #A7A7A7;
}

input[type=checkbox]{
    width: 31px;
    height: 31px;
    margin-right: 15px;
}

*:disabled{
    background-color: #e9e9e9;
    opacity: 1;
}

input[type=checkbox] *:disabled{
    background-color: #e9e9e9;
}

.wrapper{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wrapper p{
    margin-left: 12px;
    margin-top: 3px;
}

.wrapper input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark{
    border: 1px solid #A7A7A7;
    position: absolute;
    top: 0;
    left: 0;
    height: 31px;
    width: 31px;
    background-color: #eee;
    color: #45B02B;
}


.window{
    width: 90px;
    height: 31px;
}

.brb-error-width:after{
    content: 'Geben Sie eine Breite ein';
    position: absolute;
    left: 13px;
    top: 193px;
    font-size: 0.8rem;
    color: #E30045;
}

.brb-error-height:after{
    content: 'Geben Sie eine Höhe ein';
    position: absolute;
    left: 293px;
    top: 193px;
    font-size: 0.8rem;
    color: #E30045;
}

#error-width, #error-height, #error-window-amount{
    font-size: 0.8rem;
    color: #E30045;
}

.u-wert-box{
    height: 100%;
}

.u-wert-button{
    color: #fff;
    background: #006AB2 no-repeat padding-box;
    padding: 15px;
    font-size: 1.125rem;
}

.u-wert-button:hover{
    cursor: pointer;
}

.u-wert-button::after{
    content: '';
    position: relative;
    left: 13%;
    background-color: #006AB2;
    transform: rotate(-90deg);
    color: white;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 20px solid #e8e8e8;
    clear: both;
}

.u-wert-ausgabe{
    color: #fff;
    background: #006AB2 no-repeat padding-box;
    padding: 10px;
}

.u-wert-ausgabe-inner{
    text-align: end;
    padding: 6.5px;
    width: 78%;
    margin-left: auto;
    background-color: #fff;
    color: #006AB2;
    display: flex;
    justify-content: center;
}

.container{
    margin-left: 0;
    margin-right: 0;
}

.d-flex{
    align-items: center;
}

h3{
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
}

p{
    margin-bottom: 0;
}

.margin-10{
    margin-bottom: 10px;
}
.margin-20{
    margin-bottom: 20px;
}
.margin-40{
    margin-bottom: 40px;
}
.margin-60{
    margin-bottom: 60px;
}
.margin-80{
    margin-bottom: 80px;
}

.container {
    max-width: 840px !important;
    width: 100% !important;
}

.margin-medium{
    margin-left: 30px !important;
    margin-top: 30px !important;
}

.align-start{
    align-items: start;
}



.wrapper input:checked ~ .checkmark {
    background-color: #fff;
}

.wrapper input:disabled ~ .checkmark {
    background-color: #e9e9e9;
}

.wrapper input:enabled ~ .checkmark {
    background-color: #fff;
    border: 1px solid black;
}


.wrapper input:checked ~ .checkmark:after {
    display: block;
}

.wrapper .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    color: #45B02B;

    left: 10px;
    top: 2px;
    width: 9px;
    height: 20px;
    border: solid #45B02B;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.headline {
    padding-top: 30px;
}

.headline-content {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 10px;
}
.highlight-blue{
    color: #006AB2;
    font-weight: bolder;
}

h2{
    font-size: 27px;
    font-weight: bold;
    margin: 0;
    color: #58585A;
    text-transform: uppercase;
}

.logo img {
    width: 150px;
}

.line {

    background-image:   url(/assets/Header_Linie.svg);
    width: 100%;
    height: 30px;
    background-repeat: no-repeat;
}