* {
    box-sizing: border-box;
    font-family: 'Arial', 'Open Sans', sans-serif;
}

html {
    background: #fafafa;
    text-align: center;
    font-size: 15px;
}

body {
    /* font-family: 'Arial', 'Open Sans', sans-serif; */
    /* max-width: 1120px; */
    margin: 0 auto;
    font-size: 15px;
}

.bodyshadow {
    box-shadow: 0 0 10px 5px #3e3e3e, 0 0 15px 10px white;
    width: 100%;
    padding-top: 35px;
    min-height: calc(100vh - 75px);
}

.mainLoggedIn {
    margin-top: 70px;
}

#mainContent {
    padding: 10px;
}

@media screen and (max-width: 800px) {
    .bodyshadow {
        padding-top: 0;
    }

    .mainLoggedIn {
        margin-top: 35px;
    }

    #mainContent {
        padding: 10px 5px;
    }
}



h1 {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

h2 {
    font-size: 20px;
    font-weight: 800;
}

h3 {
    font-size: 18px;
    font-weight: 800;
}

p {
    font-size: 15px;
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 15px;
    }

    p {
        font-size: 14px;
    }
}

.style2 {
    text-align: left;
    color: #042a00;
}

.style3 {
    color: #863f00;
    font-weight: 800;
}

.AriaHidden {
    display: none;
}

label {
    display: block;
    margin-top: 20px;
}

legend label {
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.infowindow {
    border-radius: 20px;
    margin: 0 auto 45px;
    text-align: center;
    background: #e8e7e7;
    border: 1px solid black;
    box-shadow: 0 0 5px 2px #3e3e3e, 0 0 15px 10px white;
    width: 100%;
    padding: 8px;
    height: fit-content;
}

.infodiv {
    display: block;
    border-radius: 12px;
    background: #e6e6e6;
    border: 1px solid gray;
    box-shadow: 0px 0px 4px 0px #3e3e3e inset;
    padding: 10px;
    text-align: left;
    margin: 0 !important;
}

.infolist {
    display: block;
    padding: 10px;
    border-radius: 12px;
    background: #fbfbfb;
    border: 1px solid gray;
    box-shadow: 0px 0px 5px 2px #3e3e3e;
    text-align: left;
    /* margin: 0 !important; */
}

fieldset {
    margin-top: 20px;
    border-radius: 10px;
}

.loginBox {
    display: inline-block;
    width: 90%;
    max-width: 480px;
    text-align: center;
    margin: 0 auto 35px;
    border-radius: 15px;
    padding: 10px;
}

.formError {
    color: black;
    background: #fc4949;
    border: 1px solid black;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    box-shadow: 1px 1px 4px 1px black;
    text-align: center;
}

.formError p {
    font-weight: bold;
}

.toggle-password {
    float: right;
    left: -24px;
    top: -44px;
    position: relative;
    z-index: 2;
    height: 30px;
    cursor: pointer;
}

.show_blue {
    content: url(../image/show_blue.png);
}

.hide_blue {
    content: url(../image/hide_blue.png);
}

.noError {
    display: none !important;
}

.indexform {
    display: none !important;
}

.logintext {
    /* font-size: 17px; */
    margin: 0 !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 34px;
}

.messageClosed {
    display: inline;
    cursor: pointer;
}

.messageOpen {
    display: none;
    cursor: pointer;
}

#messages[open] .messageClosed {
    display: none !important;
}

#messages[open] .messageOpen {
    display: inline !important;
}

#messages summary {
    font-weight: bold;
    margin: 10px auto;
    text-align: left;
}

.calenderBox {
    background: #fbfbfb;
    border: 1px solid #5e5e5e;
    border-radius: 4px;
    width: 55px;
    text-align: center;
    box-shadow: black 2px 2px 3px;
}

.calenderMonth {
    background: #46B5FF;
    height: 20px;
    padding-top: 1px;
    border-radius: 3px 3px 0 0;
    width: 100%;
    color: black;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
}

.calenderNo {
    height: 34px;
    color: black;
    font-weight: 800;
    font-size: 26px;
    display: inline-block;
    line-height: 36px;
}

.calenderDay {
    color: black;
    height: 14px;
    font-size: 12px;
    line-height: 10px;
}

.pmKnapp {
    border: 1px solid #515050;
    padding: 5px;
    border-radius: 9px;
    background-color: #99f996;
    cursor: pointer;
    box-shadow: 1px 1px 2px black;
    transition: all 300ms ease-in-out;
    width: 110px;
    margin: 5px 10px 0 0;
    text-decoration: none;
    color: black;
    font-size: 13px;
}

.pmKnapp:hover {
    transform: scale(1.05);
    box-shadow: 2px 2px 3px black;
}

.btn {
    background: #3eaefb;
    border-radius: 8px;
    color: #000000;
    font-size: 12px;
    padding: 6px 8px;
    border: solid #000000 1px;
    box-shadow: 0px 0px 5px 1px #3e3e3e;
    margin: 5px 0 10px;
    width: fit-content;
    transition: background-color ease-in-out 300ms, border ease-in-out 300ms, box-shadow ease-in-out 300ms, transform ease-in-out 300ms;
    ;
}

.btn:hover {
    background: #6ec4ff;
    transform: scale(1.03);
}

.btn_active {
    background: #f7f7f7;
    box-shadow: 0px 0px 4px 0px #222 inset, 0px 0px 5px 1px #3e3e3e;
}

.btn_active:hover {
    background: #cee5f4;
    transform: scale(1.03);
}

.horiz_button {
    background: #3daefb;
    border: 1px solid black;
    margin: 0 -1px -1px 0;
    border-radius: 10px 10px 0 0;
    color: black;
    font-size: 15px;
    padding: 10px 10px 10px 10px;
    font-weight: 600;
    transition: all 300ms ease-in-out;
}

.horiz_button:disabled {
    background: #d9343c;
}

.horiz_button:hover {
    background: #80ccff;

}

.horiz_button_active {
    box-shadow: 0 0 4px 2px #686767 inset;
    background: #fcfcfc;
    color: #2c2c2c;
}

.horiz_button:active {
    background: #fcfcfc;
    color: #2c2c2c;
    border-bottom: 0;
}

.horiz_button_menu {
    background: #4fb7ff;
    border: 1px solid black;
    margin: 0 -1px -1px 0;
    border-radius: 8px 8px 0 0;
    color: #000;
    font-size: 15px;
    padding: 6px 6px 6px 6px;
    font-weight: 600;
    transition: all 300ms ease-in-out;
}

.horiz_button_menu:hover {
    background: #9bd7ff !important;
}

.horiz_button_menu_active {
    background: #fbfbfb;
    border-bottom: 1px solid white;
}

.button_red {
    width: 200px;
    height: 45px;
    text-align: center;
    background: #fc3c3c;
    background-image: linear-gradient(to bottom, #fc3c3c, #d93434);
    border-radius: 10px;
    box-shadow: 0px 1px 3px #666666;
    padding: 4px 4px;
    margin: 0 8px;
}

.button_red:hover {
    background: #d93434;
    background-image: linear-gradient(to bottom, #d93434, #b82b2b);
}

.button_green {
    width: 200px;
    height: 45px;
    text-align: center;
    background: #40ff00;
    background-image: linear-gradient(to bottom, #40ff00, #259400);
    border-radius: 10px;
    box-shadow: 0px 1px 3px #666666;
    padding: 4px 4px;
    margin: 0 8px;
}

.button_green:hover {
    background: #c2c2c2;
    background-image: linear-gradient(to bottom, #c2c2c2, #e8e8e8);
}

.button_orange {
    width: 200px;
    height: 45px;
    text-align: center;
    background: #ff9900;
    box-shadow: 0px 1px 3px #666666;
    border-radius: 10px;
    box-shadow: 0px 1px 3px #666666;
    color: #1f1e1f;
    padding: 4px 4px;
    margin: 0 8px;
}

.button_orange:hover {
    background: #c2c2c2;
    background-image: linear-gradient(to bottom, #c2c2c2, #e8e8e8);
}

.buttonSmall {
    padding: 7px 9px;
    margin: 0;
    height: unset;
    width: unset;
    box-shadow: 1px 2px 4px black;
    border: 1px solid darkgray;
}

.arrlistbutton {
    text-align: center;
    background: #d9d9d9;
    border-radius: 5px;
    box-shadow: 0px 1px 3px #666666;
    color: #1f1e1f;
    width: 100%;
    height: 40px;
    padding: 0;
    transition: all ease-in-out 300ms;
}

.arrlistbutton:hover {
    background: #c2c2c2;
    transform: scale(1.04);
}

.button {
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 1px 3px #666666;
    color: #1f1e1f;
    font-weight: 600;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    margin: 0 8px;
    font-size: 13px;
    transition: all ease-in-out 300ms;
}

.button:hover {
    background: #c2c2c2;
    transform: scale(1.04);
}

.button2 {
    width: 200px;
    height: 45px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 1px 3px #666666;
    color: #1f1e1f;
    font-weight: 700;
    padding: 4px 4px;
    margin: 0 8px;
    font-size: 13px;
    transition: all ease-in-out 300ms;
}

.button2:hover {
    background: #c2c2c2;
    transform: scale(1.04);
}