/* Allgemein */
:root {
    --fewo-clr-dark: #0f172a;
    --fewo-clr-light: #f1f5f9;
    --fewo-clr-accent: #8C2F39;
    --fewo-icon-clock: "\23F0";
    --fewo-icon-calendar: "\1F4C5";
}

/* Allgemein */

.nowrap { white-space: nowrap; }

.alignCenter { text-align: center; }
.alignLeft { text-align: left; }
.alignRight { text-align: right; }

#window_size {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

* {
    box-sizing: border-box;
}

.wsr-form {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background-color: #efefef;
    /* background-color: red; */
}

label {
    padding: 0px 5px 5px 10px;
}

.required {
    color: darksalmon;
}

.form_error_message,
.form_success_message {
    background-color:darksalmon;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
}

.form_success_message {
    background-color: cadetblue;
}

.form_element_error {
    display: inline-block;
    padding: 5px 10px;
    color: darksalmon;
}

.wsr-form label {
    font-size: 0.8em;
}

.wsr-form input[type=text],
.wsr-form input[type=date],
.wsr-form input[type=submit], 
.wsr-form select, 
.wsr-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.wsr-form input[type=submit] {
    background-color: #4573b5;
    color: #ffffff;
    width: 100%;
}

.wsr-form input[type=submit]:hover {
    border-color: #000;
    cursor: pointer;
}

input.error {
    border-color: darksalmon;
}

.wsr-row::after {
    content: "";
    clear: both;
    display: table;
}

.wsr-row h3 {
    margin-bottom: 5px;
    margin-top: 10px;
}
  
[class*="wsr-col-"] {
    float: left;
    padding: 5px 10px;
}

[class*="wsr-col-"].left {
    padding-left: 0;
}
[class*="wsr-col-"].right {
    padding-right: 0;
}

/* Extra small devices (phones, 599px and down) */
@media screen and (max-width: 599px) {
    [class*="wsr-col-"] {
        width: 100%;
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (min-width: 600px) {
    [class*="wsr-col-"] {
        width: 100%;
    }
}
/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) {
    .wsr-col-1 {width: 8.33%;}
    .wsr-col-2 {width: 16.66%;}
    .wsr-col-3 {width: 25%;}
    .wsr-col-4 {width: 33.33%;}
    .wsr-col-5 {width: 41.66%;}
    .wsr-col-6 {width: 50%;}
    .wsr-col-7 {width: 58.33%;}
    .wsr-col-8 {width: 66.66%;}
    .wsr-col-9 {width: 75%;}
    .wsr-col-10 {width: 83.33%;}
    .wsr-col-11 {width: 91.66%;}
    .wsr-col-12 {width: 100%;}
}
/* Large devices (laptops/desktops, 992px and up) */
/*@media screen and (min-width: 992px) { body { background-color: red; }}*/
/* Extra large devices (large laptops and desktops, 1200px and up) */
/*@media screen and (min-width: 1200px) { body { background-color: white; }}*/