:root {
    --acc-color: #EB5E28;
    --positive-color: #AFFC41;
    --primary-background-color: #2F4550;
    --primary-text-color: #fff;
    --primary-border-color: #fff;
    --primary-content-background-color: #586F7C;
    --secondary-content-background-color: #586F7C;
}

body {
    background-color: var(--primary-background-color);
    overflow: auto;
    height: 100%;
}

html {
    height: 100%;
}


/*
--------------------------------
-----TEXT-----------------------
--------------------------------
*/

h1 {
    color: var(--acc-color);
}

* {
    font-family: ui-sans-serif, sans-serif;
    color: var(--primary-text-color);
}


/*
--------------------------------
-----BUTTON---------------------
--------------------------------
*/

button {
    background-color: var(--primary-content-background-color);
    color: var(--primary-text-color);
    border: 2px solid var(--primary-border-color);
    border-radius: 5px;
}


/*
--------------------------------
-----LABLE----------------------
--------------------------------
*/

label {
    align-self: center;
    font-size: large;
}


/*
--------------------------------
-----A--------------------------
--------------------------------
*/

a {
    text-decoration: none;
}


/*
--------------------------------
-----IMAGE----------------------
--------------------------------
*/

img {
    width: 32px;
    height: 32px;
    margin-top: 16px;
}

/*
--------------------------------
-----DIV------------------------
--------------------------------
*/

.FlexDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.HalfPageDiv {
    display: flex;
    width: 100%;
    height: 45%;
    /* background-color: #AFFC41;
    color: #EB5E28; */
}

.LRMargin {
    margin-right: 5%;
    margin-left: 5%;
}

#title_div {
    height: 10%;
}

/*
--------------------------------
-----TIMERWindow----------------
--------------------------------
*/

#timerDiv {
    display: block;
    width: 100%;
    height: 100%;
}

.TimerDivSub {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 100%;
}


.TimerDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    height: 90%;
    margin: 0 auto;

    color: black;
    text-shadow: 2px 2px 2px white, -2px -2px 2px white, -2px 2px 2px white, 2px -2px 2px white;
    font-size: 4em;

    border: 2px solid var(--primary-border-color);
    border-radius: 10px;
    margin: 10px;
}

#timer01 {
    background-image: repeating-conic-gradient(transparent 0% 25%, #00000050 0% 50%);
    background-position: 0 0;
    background-size: 50% 50%;
}

#timer02 {
    background-image: linear-gradient(90deg, transparent 50%, #00000050 50%);
    background-size: 20% 20%;
}

#timer03 {
    background-image: linear-gradient(0deg, transparent 50%, #00000050 50%);
    background-size: 20% 20%;
    background-color: #E4E4ED;
}

#timer04 {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5%, #000000A0 5%, #000000A0 10%);
    background-color: #E4E4ED;
}

/*
--------------------------------
-----SETUPWindow----------------
--------------------------------
*/

#setupDiv {
    display: block;
    width: 100%;
    height: 100%;
    /* background-color: #AFFC41;
    color: #EB5E28; */
}

#timeSelection {
    color: var(--primary-text-color);
    font-size: 5em;

    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#timeManipulations {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.timeManipulationButton {
    width: 15%;
    height: 100px;
    font-size: xx-large;
    margin: 10px
}

@media screen and (max-width: 800px) {
    .timeManipulationButton {
        font-size: x-large;
        width: 15%;
        height: 50px;
        margin: 8px;
    }
}

@media screen and (max-width: 600px) {
    .timeManipulationButton {
        font-size: medium;
        width: 15%;
        height: 50px;
        margin: 3px;
    }
}

#btn_start {
    display: flex;
    font-size: xx-large;
    justify-content: center;
    align-self: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

#btn_reset {
    border-radius: 0px;
    font-size: xx-large;
    left: 0;
    bottom: 0;
    position: fixed;
    width: auto;
}

/*
--------------------------------
-----WarningWindow--------------
--------------------------------
*/

#warningDiv {
    display: flex;
    width: 100%;
    height: 100%;
    /* background-color: #AFFC41;
    color: #EB5E28; */
}

#warningImg {
    justify-content: center;
    align-items: center;
    text-align: center;
    align-self: center;
    margin: 0 auto;
}

/*
--------------------------------
-----Sidebar--------------------
--------------------------------
*/

#sidebar {
    transition: 0.5s;
    position: fixed;
    width: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: var(--primary-background-color);
    overflow: scroll;
    z-index: 1;
}

#sidebar_inner_free_space_div {
    width: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    margin-bottom: 140px;
}

#sidebar_inner_div {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: var(--primary-content-background-color);
}



#sidebar_inner_contact {

    width: fit-content;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 10px;
    color: var(--primary-text-color);
}

.sidebar_inner_contact_text {
    display: inline-block;
    text-align: center;
}

#sidebar_inner_contact_text_right {
    display: inline-block;
    text-align: center;
    transform: scale(-1, 1);
}

#btn_menu_open {
    border-radius: 0px;
    font-size: x-large;
    right: 0;
    bottom: 0;
    position: fixed;
    width: 20%;
}

#btn_menu_close {
    border-radius: 0px;
    font-size: x-large;
    width: 100%;
}