/* General Styles ----------------------------------------------------------------------------------------------------------------------- */
body
{
    width: 99%;
    background-color: #EFEFEF;
    left: 0;
}
/* Andacht--------------------------------------------------------------------------------------------------------------------------------*/
.Andacht-Header
{
    color: #1A1D1E;
    font-family: Courier;
    font-size: 150%;
    font-weight: bold;
    margin-top: 15px;
}

.Andacht-Header-Small
{
    color: #1A1D1E;
    font-family: Courier;
    font-size: 100%;
    font-weight: bold;
    margin-top: 10px;
}

.Andacht-Text
{
    color: #1A1D1E;
    font-family: Courier;
    font-size: 100%;
    margin-top: 10px;
}

.Andacht-Trenner
{
    background-color: #36373A;
    width: 100%;
    height: 1px;
    margin-top: 10px;
}
/* Buttons -------------------------------------------------------------------------------------------------------------------------------*/
.ButtonWrapper
{
    width: calc((100%/3)/2);
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0px;
    right: 0px;
}

.Button
{
    height: 50px;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 100%;
    font-family: Courier;
    text-align: center;
    line-height: 50px;
    justify-content: center;
    border: none;
    background: #EFEFEF;
    box-shadow:  7px 7px 14px #a7a7a7,
            -7px -7px 14px #ffffff;
}

.Button:active
{
    border-radius: 15px;
    background: #EFEFEF;
    box-shadow: inset 7px 7px 14px #a7a7a7,
            inset -7px -7px 14px #ffffff;
}
/* Cards----------------------------------------------------------------------------------------------------------------------------------*/
.Announcement
{
    background-color: #36373A;
    border-radius: 15px;
    color: #EFEFEF;
    padding: 10px;
}

.BacklogCard
{
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #EFEFEF;
    border: none;
    border-radius: 30px;
    background: #1A1D1E;
    box-shadow:  9px 9px 14px #bfbfbf,
            -9px -9px 14px #ffffff;
}

.BacklogCard:active
{
    background: #1A1D1E;
    box-shadow: inset 9px 9px 14px #0f1011,
            inset -9px -9px 14px #252a2b;
}
/* Inputs---------------------------------------------------------------------------------------------------------------------------------*/
.Normal-Input-Form
{
    --width-of-input: 80%;
    --border-height: 1px;
    margin: auto;
    margin-top: 20px;
    --border-before-color: #dddddd63;
    --border-after-color: #E7D2CC;
    --input-hovered-color: #4985e01f;
    position: relative;
    width: var(--width-of-input);
}

.Normal-Input
{
    color: #E7D2CC;
    font-size: 0.9rem;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    padding-inline: 0.5em;
    padding-block: 0.7em;
    border: none;
    border-bottom: var(--border-height) solid var(--border-before-color);
}

.Normal-Input-border
{
    position: absolute;
    background: var(--border-after-color);
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.Normal-Input:focus
{
    outline: none;
}

.Normal-Input:focus ~ .Normal-Input-border
{
    width: 100%;
}
/* Checkmark------------------------------------------------------------------------------------------------------------------------------*/
.checkmark-class input
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark
{
    width: 15px;
    height: 15px;
    margin-top: -29px;
    border-radius: 50px;
    background: #2f2f2f;
    box-shadow:  2px 2px 7px #121212,
            -2px -2px 7px #303030;
}

.checkmark-class input:checked ~ .checkmark {
    background: #96d35f;
    box-shadow: inset 2px 2px 7px #4a672f,
        inset -2px -2px 7px #e3ff8f;
}
/* Divs-----------------------------------------------------------------------------------------------------------------------------------*/
.wrapper
{
    display: flex;
    flex-direction: row;
}

.firstDiv
{
    width: calc(100%/3);
    position: sticky;
    top: 0;
}

.firstDivContent
{
    width: 50%;
    position: sticky;
    top: 15px;
    left: 15px;
}

.Logo
{
    width: 100%;
    aspect-ratio: 1 / 1;
}

.secondDiv
{
    width: calc(100%/3);
    overflow-x: scroll;
    overflow-y: hidden;
}

.thirdDiv
{
    width: calc(100%/3);
    position: sticky;
    top: 100;
    right: 15px;
}
/* Size-Change----------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 760px)
{
    .wrapper
    {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    .firstDiv
    {
        width: 100%;
        position: relative;
        align-content: center;
    }

    .firstDivContent
    {
        width: 100%;
    }

    .Logo
    {
        width: 30%;
        margin-left: 35%;
    }

    .Announcement
    {
        width: calc(100%-30px);
    }

    .secondDiv
    {
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .thirdDiv
    {
        width: 100%;
        height: 145px;
    }

    .ButtonWrapper
    {
        position: relative;
        width: 100%;
    }

    .Button
    {
        position: relative;
        width: 50%;
        margin-left: 25%;
        bottom: 0;
    }
}
