/*HELE WEBSITE*/

html { 
    scroll-behavior: smooth;   
}

body {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    background-color: rgb(201, 201, 201);
    height: 100%;
}

/*JQUERY - SCHOOLEXAMEN - CONTACT KLOK*/

.clock_center {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.clock_container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    font-family: arial, 'montserrat','Orbitron', sans-serif;
    height: 100%;
    width: 80%;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgb(0, 255, 208);
    border: 2px solid black;
    opacity: 1;
}

.clock_container_schoolexamen {
    font-family: arial, 'montserrat','Orbitron', sans-serif;
    height: 100%;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgb(0, 255, 208);
    border: 2px solid black;
    opacity: 1;
}

#clock {
    font-size: 150%;
    font-weight: bold;
    margin: 0;
}

/*TEXT*/

h1 {
    text-align: center;
    font-size: 200%;
    color: black;
    margin-top: 70px;
}

h2 {
    text-align: center;
    font-size: 170%;
    color: black;
}

h3 {
    text-align: center;
    font-size: 160%;
    color: black;
    font-weight: normal;
}

h4 {
    text-align: center;
    font-size: 150%;
    color: black;
    font-weight: normal;
    font-style: italic;
}   

h5 {
    text-align: center;
    font-size: 140%;
    color: black;
    font-weight: normal;
    margin: 0;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
}

h6 {
    text-align: center;
    font-size: 130%;
    color: black;
    font-weight: normal;
}

p {
    font-size: 110%;
    padding-left: 2.5%;
    padding-right: 2.5%;
}

/*TABELLEN*/
    
table {
    font-size: 100%;
    padding: 2.5%;
    border-collapse: collapse;
    margin-left: 2.5%;
	margin-right: 2.5%;
	width: 90%;
}

.contact_table {
    margin-left: 8%;
}

.table_text {
    font-size: 100%;
    padding: 2.5%;
    border-collapse: collapse;
    width: 100%;    
    margin-left: 0;
	margin-right: 0;
}


.table_container {
    overflow-x: auto;
    width: 95%;
    margin-left: 2.5%;
	margin-right: 2.5%;
}

.table_text th {
    width: fit-content;
    padding: 1% 1%;
    font-size: 90%;
    border: 2px solid black;
    color: white;
    background-color: rgb(100, 100, 100);;
}

.table_text td {
    width: fit-content;
    padding: 1% 1%;
    font-size: 90%;
    border: 2px solid black;
    color: white;
    background-color: rgb(165, 165, 165);
}

.table_text .italic {
    background-color: rgb(130, 130, 130);
}

/*LIJSTEN*/

ol {
    font-size: 110%;
    padding-left: 6.5%;
    padding-right: 6.5%;
    list-style-type: decimal;
}

ul {
	font-size: 110%;
	color: black;
	padding-left: 6.5%;
    padding-right: 6.5%;
    list-style-type: bullet;
}

.ul_list_none {
    list-style: none;
    font-size: 110%;
    padding-left: 7.5%;
    padding-right: 7.5%;
}

.button ul {
    display: block;
    opacity: 1;
    list-style: none;
}

.button li a {
    display: block;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: white;
    text-decoration: none;
    opacity: 1;
    background-color: transparent;
    border: 1px #033 solid;
    border-radius: 0px;
	border-color: white;
    width: 100px;
    padding: 10px;
    font-size:  20px;
    transition: 0.35s ease-out;
}

.button li a:hover {
    display: block;
    text-decoration: none;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    transition: all 0.35s ease-in;
    color: rgb(0, 0, 0);
}


/*OVERIGE KLASSEN*/

.white {
    color: white;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.italic_normal {
    font-style: italic;
    font-weight: normal;
}

.width_100 {
    width: 100%;
}

.width_90 {
    width: 90%;
    padding-right: 6%;
}

.text_align_left {
    text-align: left;
}

.text_align_center {
    text-align: center;
}

a:link, a:visited {
    color: rgb(146, 51, 255);
    text-decoration: none;
}

a:hover {
    color: gray;
    text-decoration: none;
}

/*HEADER*/

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

/*NAVIGATIE DESKTOP*/
    
.backgroundcolor_blue {
        background-color: rgb(0, 119, 255);
        transition: all 0.5s ease-out
    }

.navbar_links .backgroundcolor_blue a:hover {
        background-color: rgb(0, 192, 0);
        transition: all 0.5s ease;
    }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(73, 73, 73);
    color: white;
}

.navbar_links ul {
    margin: 0px;
    padding: 0px;
    display: flex;

}

.navbar_links li {
    list-style: none;
    transition: 0.5s ease-out;
}

.navbar_links li a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
    font-size: 16px;
}

.navbar_links ul li:hover {
    background-color: rgb(109, 109, 109);
    transition: all 0.5s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2.5px;
    margin-top: 0.7rem;
    margin-right: 0.5rem;
    margin-bottom: 0.7rem;
    margin-left: 1rem;
}

.logo a {
    color: white;
    display: block;
    text-decoration: none;
}

.footer_logo {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2.5px;
    margin: 0;
}

.footer_logo a {
    color: white;
    display: block;
    text-decoration: none;
}

.toggle_button {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 27.5px;
}

.bar1 {
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
}

.bar2 {
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
}

.bar3 {
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 1px;
}

@keyframes navLinkFade{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/*MAIN*/

main {
    max-width: 1500px;
    margin: auto;
}

/*MIJZELF*/

.foto_mijzelf {
    height: 60vh;
    margin: 2.5%;
}

.mijzelf_foto_container {
    text-align: center;
}

/*INDEX*/

.index_background {
    background-image: url('../images/index_background.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-color: black;
    width: auto;
    height: auto;
}

.index_h1 {
    text-align: center;
    font-size: 400%;
    color: white;
    margin-top: 10%;
    text-shadow: 1px 1px black;
    padding: 2.5%;
}

.img_icon {
    width: 75px;
    height: 75px;
}

.index_main {
    margin: auto;
    max-width: none;
}

.index_p_background {
    margin: 0px;
    padding: 0px;
    min-width: 100%;
    background-color: white;
}

.index_p {
    margin-top: 0%;
    font-size: 110%;
    margin-bottom: 0%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.index_h2 {
    margin-top: 60%;
    margin-bottom: 0%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1500px;
}

article .index_p {
    padding: 2%;
}

article .index_h2 {
    padding-top: 2%;
    padding-bottom: 1%;
}

.button_2 {
    display: block;
    text-align: center;
    color: black;
    background-color: rgb(163, 162, 162);
    text-decoration: none;
    border: 1px white solid;
    padding: 1%;
    margin: 1%;
    transition: 0.25s ease-out;
}

.button_2:hover {
    display: block;
    text-align: center;
    color: rgb(119, 0, 255);;
    background-color: rgb(181, 181, 181);
    text-decoration: none;
    border: 1px white solid;
    padding: 1%;
    margin: 1%;
    transition: 0.25s ease-in;
}



/*FOOTER*/

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(73, 73, 73);
    color: white;
    padding-left: 2.5%;
    padding-right: 2.5%;
}

.footer_p {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0;
}

/*OPMAAK JAVASCRIPT OPMAAK*/

.box-image {
    width: 50%;
    height: auto;
    margin-left: 25%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
}

.opmaak_table {
    padding: 1% 1%;
    margin-right: 2.5%;
    margin-left: 2.5%;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
    border: 2px solid black;
    color: white;
    overflow: auto;
    width: 95%;
}

.opmaak_table tr td {
    min-width: 450px;
    font-size: 15px;
}

.opmaak_table tr {
    border: 2px solid black;
    padding: 1% 1%;
    float: none;
}

.opmaak_table td {
    border: 2px solid black;
    padding: 1% 1%;
    float: none;
}

.lime {
    color: lime;
}

.blue {
    color: blue;
}

.yellowgreen {
    color: yellowgreen;
}

.aqua {
    color: aqua;
}

.yellow {
    color: yellow;
}

.red {
    color: red;
}

/*CANVAS*/

.canvas_container {
    text-align: center;
    background-color: rgba(109, 109, 109, 0.5);
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 1.5%;
    padding-top: 25px;
    overflow: auto;
}

/*SCHOOLEXAMEN ACCOUNT*/

.account_main_registreren {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1px;
    padding-right: 0;
    padding-left: 0;
    padding-top: 17.5vh;
    padding-bottom: 17.5vh;
}

.account_main_wachtwoord_veranderen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1px;
    padding-right: 0;
    padding-left: 0;
    padding-top: 22.5vh;
    padding-bottom: 22.5vh;
}

.account_main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1px;
    padding-right: 0;
    padding-left: 0;
    padding-top: 28vh;
    padding-bottom: 28vh;
}

.schoolexamen_table {
    font-size: 90%;
    width: 95%;
    max-width: 1000px;
    margin-left: auto;
    text-align: center;
    border: 1px solid black;
    border-collapse: collapse;
    margin-bottom: 10%;
    padding-right: 0;
    margin-right: auto;
}

.schoolexamen_table tr {
    text-align: center;
    border: 1px solid black;
    border-collapse: collapse;
}

.schoolexamen_table th {
    border: 1px solid black;
    color: white;
    background-color: rgb(94, 94, 94);
    border-collapse: collapse;
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 1%;
    padding-top: 1%;
}

.schoolexamen_table td {
    border: 1px solid black;
    border-collapse: collapse;
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 1%;
    padding-top: 1%;
    background-color: rgb(228, 228, 228);
}

.schoolexamen_table tr .vak {
    background-color: darkgray;
    color: white;
}

.schoolexamen_container {
    background-color: white;
    align-items: center;
    height: auto;
    flex-direction: column;
    border-radius: 10px;
    transform: translateY(40px);
    margin-top: 5%;
    margin-bottom: 5%;
    padding-left: 0;
    padding-top: 20px;
    padding-right: 0;
    padding-bottom: 2.5%;
    margin-right: 0;
    width: 100%;
}

.schoolexamen_footer {
    transform: translateY(40px);
    z-index: 0;
}

.schoolexamen_center {
    display: flex;
    flex-direction: column;
    float: center;
}

.schoolexamen_main {
    padding-left: 5%;
    padding-right: 5%;
}

.schoolexamen_h1 {
    margin-top: 1%;
}

.schoolexamen_p {
    font-size: 110%;
    width: 96%;
    text-align: center;
    padding: 0;
    margin: 10px;
}

.schoolexamen_input_p {
    font-size: 110%;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-top: 0;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
}

.account_settings {
    background-color: rgba(208, 208, 208, 0.974);
    width: 100%;
    padding-top: 0.025%;
}

.account_settings_options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.account_body {
    background-image: url('../images/account_background.jpg');
    background-color: transparent;
    background-repeat: repeat;
}

.account_body_login {
    background-image: url('../images/account_background.jpg');
    background-repeat: repeat;
}

.achtergrond_instellen_rgb {
    margin: 0;
    float: left;
    width: 100%;
}

.background_buttons_container {
    width: 100%;
    margin: 0 auto;
}

.background_buttons {
    margin-left: 25%;
    margin-right: 25%;
    text-align: center;
}


#background_standaard {
    width: 80px;
    float: center;
    background-image: url('../images/account_background.jpg');
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_red {
    width: 35px;
    height: 35px;
    float: center;
    background: rgb(255, 0, 0);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_green {
    width: 35px;
    height: 35px;
    float: center;
    background: rgb(0, 255, 0);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_blue {
    width: 35px;
    height: 35px;
    float: center;
    background: rgb(0, 0, 255);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_whitesmoke {
    width: 35px;
    height: 35px;
    float: center;
    background: whitesmoke;
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_black {
    width: 35px;
    height: 35px;
    float: center;
    background: rgb(0, 0, 0);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_gray {
    width: 35px;
    height: 35px;
    float: center;
    background: gray;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_lightgray {
    width: 35px;
    height: 35px;
    float: center;
    background: lightgray;
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_darkgray {
    width: 35px;
    height: 35px;
    float: center;
    background:darkgray;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_cyan {
    width: 35px;
    height: 35px;
    float: center;
    background:cyan;
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_magenta {
    width: 35px;
    height: 35px;
    float: center;
    background:magenta;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_yellow {
    width: 35px;
    height: 35px;
    float: center;
    background:yellow;
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_orange {
    width: 35px;
    height: 35px;
    float: center;
    background:orange;
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_brown {
    width: 35px;
    height: 35px;
    float: center;
    background:brown;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_pink {
    width: 35px;
    height: 35px;
    float: center;
    background:pink;
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_purple {
    width: 35px;
    height: 35px;
    float: center;
    background:purple;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#color_darkblue {
    width: 35px;
    height: 35px;
    float: center;
    background:darkblue;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#background_zee {
    width: 80px;
    float: center;
    background: linear-gradient(to right, rgb(215, 166, 255), rgb(79, 120, 255));
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#background_zon{
    width: 80px;
    float: center;
    background: linear-gradient(to right, rgb(255, 225, 0), rgb(139, 146, 0));
    padding: 10px 15px;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#background_heelal{
    width: 80px;
    float: center;
    background: linear-gradient(to right, rgb(28, 3, 255), rgb(11, 0, 61));
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    }

#background_natuur{
    width: 80px;
    float: center;
    background: linear-gradient(to right, rgb(0, 255, 8), rgb(125, 131, 0));
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#background_strand{
    width: 80px;
    float: center;
    background: linear-gradient(to right, rgb(255, 229, 124), rgb(154, 162, 0));
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

#background_stad{
    width: 80px;
    float: center;
    background: linear-gradient(to right, rgb(57, 57, 58),rgb(23, 0, 60));
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    margin-bottom: 15px;
}

.rgb_red {
    width: auto;
    height: 5px;
    font-size: 15px;
    margin: auto;
    padding-left: 5px;
    padding-right: 5px;
}

.rgb_green {
    width: auto;
    height: 5px;
    font-size: 15px;
    margin: auto;
    padding-left: 5px;
    padding-right: 5px;
}

.rgb_blue {
    width: auto;
    height: 5px;
    font-size: 15px;
    margin: auto;
    padding-left: 5px;
    padding-right: 5px;
}

.rgb_inputs {
    width: 100%;
}

form {
    width: 500px;
    border: 2px solid #ccc;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
}

.account_h2 {
    text-align: center;
    margin-bottom: 40px;
}

input {
    display: block;
    border: 2px solid #ccc;
    width: 95%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
}

label {
    color: #888;
    font-size: 18px;
    padding: 5px;
}

.account_button { 
    float: right;
    background: rgb(111, 0, 255);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.account_button:hover {
    float: right;
    background: rgb(139, 49, 255);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.account_button:active {
    float: right;
    background: rgb(120, 113, 130);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}
.account_a_button a {
    float: right;
    background: rgb(111, 0, 255);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 25px;
}

.account_a_button a:hover {
    float: right;
    background: rgb(139, 49, 255);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}
.account_a_button a:active {
    float: right;
    background: rgb(120, 113, 130);
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.account_error {
    background: #F2DEDE;
    color: #A94442;
    padding: 15px;
    width: 93%;
    border-radius: 5px;
    font-size: 15px;
    margin: 20px auto;
}


.account_succes {
    background: #1aff006d;
    color: #000000;
    padding: 15px;
    width: 93%;
    border-radius: 5px;
    font-size: 20px;
    margin: 20px auto;
}

.account_p {
    font-size: 15px;
    margin-top: 7.5px;
    margin-left: 0px;
    padding-left: 2.5px;
}

.black {
    color:#000000;
}

/*REKENMACHINE POP-UP*/

#pop_up_knop {
    background-color: green;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-self: center;
    width: 200px;
    transition: 0.25s ease-in-out;
    margin-bottom: 80vh;
}

#pop_up_knop:hover {
    opacity: 0.5;
}

.pop_up_knop {
    background-color: green;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-self: center;
    width: 200px;
    transition: 0.25s ease-in-out;
}

.pop_up_knop:hover {
    opacity: 0.5;
}

.pop_up_h1 {
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    font-size: 200%;
    color: black;
    margin-top: 3.5%;
    font-weight: bold;
}

.pop_up {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    display: none;
}

.pop_up_container {
    background-color: rgba(255, 255, 255, 1);
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #888;
    width: 80%;
    top: -300px;
    animation-name: open;
    animation-duration: 0.8s;
}


/*REKENMACHINE*/

.calc {
    width: 324px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    background-color: #39383D;
    padding: 20px;
    border-radius: 8px;
}

.calc_container {
    height: auto;
    margin-bottom: 40px;
    overflow: auto;
}

.calc-display {
    width: 89.75%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 2px;
    height: 75px;
    border: none;
    background-color: #A2AF77;
    margin-bottom: 10px;
    border-radius: 8px;
    display: auto;
    padding-bottom: 0;
    padding-top: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 250%;
}

.calc-button {
    width: 75px;
    height: 75px;
    margin: 2px;
}

.calc-button-long {
    width: 156px;
    height: 75px;
    margin: 2px;
}

.calc-form {
    width: auto;
    border: none;
    padding: 0;
    background: none;
    border-radius: 0;
}

input[type=button] {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    border: none;
    border-radius: 8px;
    background-color: #58595B;
    font-size: 125%;
}

.calc_table {
    font-size: 200%;
    padding: 0;
    border-collapse: collapse;
    margin-left: 0;
	margin-right: 0;
	width: 80%;
}

/*JQUERY*/


.jquery_p {
    font-size: 110%;
}

.jquery_center {
    text-align: center;
}

.jquery_button {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.jquery_buttons {
    background-color: rgba(110, 110, 110, 0.25);
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 10%;
    padding-right: 10%;
    margin-left: 25%;
    margin-right: 25%;
}

.jquery_buttons_2 {
    background-color: rgba(110, 110, 110, 0.25);
    padding-top: 0.5%;
    padding-bottom: 0.25%;
    display: flex;
    flex-direction: column;
    margin-left: 25%;
    margin-right: 25%;
}

#jquery_color_red {
    background-color: red;
}

#jquery_color_green {
    background-color: green;
}

#jquery_color_blue {
    background-color: blue;
}

#jquery_color_magenta {
    background-color: magenta;
}

#jquery_color_cyaan {
    background-color: cyan;
}

#jquery_color_geel {
    background-color: yellow;
}

#jquery_color_oranje {
    background-color: orange;
}

#jquery_color_paars {
    background-color: purple;
}

#jquery_color_donkerblauw {
    background-color: darkblue;
}

#jquery_color_wit {
    background-color: whitesmoke;
}

#jquery_color_lichtgrijs {
    background-color: rgb(201, 201, 201);
}

#jquery_color_donkergrijs {
    background-color: darkgray;
}

#jquery_color_grijs {
    background-color: gray;
}

#jquery_color_zwart {
    background-color: black;
}

#letter {
    width: 48%;
}

#letter_h1 {
    width: 48%;
}

#letter_h2 {
    width: 48%;
}

#letter_clock {
    width: 48%;
}

.slider {
    width: 80%;
    cursor: pointer;
    background: red;
    display: auto;
    border: 2px solid rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 0;
    margin-top: 0;
    border-radius: 5px;
}

.jquery_button_2 {
    width: 95%;
    min-height: 25px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    color: rgb(0, 0, 0);
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
    font-weight: bold;
    background-color: white;
    padding-top: 1%;
    padding-bottom: 1%;
}

.jquery_button_3 {
    width: 95%;
    height: 25px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    color: rgb(0, 0, 0);
    margin-left: 2.5%;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
    font-weight: bold;
    background-color: white;
}

.tekst_buttons {
    background-color: rgba(110, 110, 110, 0.25);
    padding-top: 15px;
    padding-bottom: 10px;
    margin-left: 25%;
    margin-right: 25%;
}

/*JQUERY SLIDERS*/

.slidecontainer {
    width: 50%; /* Width of the outside container */
    padding-top: 2%;
    padding-bottom: 1%;
    height: 250px;
    background-color: rgba(110, 110, 110, 0.25);
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
}
  

.red_slider {
    -webkit-appearance: none;
    appearance: none;
    width: 90%;
    height: 5px;
    padding: 0;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border: none;
    margin-bottom: 10px;
    margin-top: 10px;
    transition: ease-in-out 0.25s;
}
  
.red_slider:hover {
    opacity: 1;
    background-color: rgb(140, 140, 140);
    transition: ease-in-out 0.25s;
}
  

.red_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid black;
    background: red;
    cursor: pointer;
}
  
.red_slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}

.green_slider {
    -webkit-appearance: none;
    appearance: none;
    width: 90%;
    height: 5px;
    padding: 0;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border: none;
    margin-bottom: 10px;
    margin-top: 10px;
    transition: ease-in-out 0.25s;
}
  
.green_slider:hover {
    opacity: 1;
    background-color: rgb(140, 140, 140);
    transition: ease-in-out 0.25s;
}
  

.green_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid black;
    background: green;
    cursor: pointer;
}
  
.green_slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}

.blue_slider {
    -webkit-appearance: none;
    appearance: none;
    width: 90%;
    height: 5px;
    padding: 0;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border: none;
    margin-bottom: 10px;
    margin-top: 10px;
    transition: ease-in-out 0.25s;
}

.blue_slider:hover {
    opacity: 1;
    background-color: rgb(140, 140, 140);
    transition: ease-in-out 0.25s;
}
  

.blue_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid black;
    background: blue;
    cursor: pointer;
}
  
.blue_slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}

.jquery_label {
    opacity: 1;
    color: black;
    margin-left: 5%;
    padding: 0;
}

.jquery_label_left {
    opacity: 1;
    color: black;
    margin-left: 5%;
    font-size: 12.5px;
    padding: 0;
}

.jquery_label_right {
    opacity: 1;
    color: black;
    margin-right: 5%;
    font-size: 12.5px;
    float: right;
    padding: 0;
}

.jquery_label_left_2 {
    margin-left: 25%;
    color: black;
    font-size: 90%;
}

/*GIMP POP UP*/

.pop_up_container_gimp {
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
    width: 80%;
    top: -300px;
    animation-name: open;
    animation-duration: 0.8s;
    z-index: 10;
}

@-webkit-keyframes open {
    from { opacity: 0 } 
    to { opacity: 1 }
}
  
@keyframes open {
    from { opacity: 0 }
    to { opacity: 1 }
}  

.sluiten {
    color: #aaa;
    float: right;
    font-size: 50px;
    font-weight: bold;
    transition: ease-in-out 0.25s;
    margin-right: 15px;
}
  
.sluiten:hover, .sluiten:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.sluiten_gimp_container {
    position: absolute;
    right: 10%;
}

.sluiten_gimp {
    color: white;
    position: relative;
    font-size: 50px;
    font-weight: bold;
    transition: ease-in-out 0.25s;
    padding-right: 15px;
    float: right;
}
  
.sluiten_gimp:hover, .sluiten_gimp:focus {
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
}

/*GIMP TABBLADEN*/

.tablink {
    background-color: #555;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 12.5%;
    margin: 0;
}

.gimp_h3 {
    margin-top: 50px;
}

.tablink:hover {
    background-color: #777;
}

.tabcontent {
    color: black;
    display: none;
    padding-top: 100px;
    padding-left: 0.5%;
    padding-right: 0.5%;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100%;
    background-color: whitesmoke;
    margin: 0;
}

/*GIMP TUMBNAILS*/

.tumbnails {
    width: 100%;
    height: 56px;
    margin: 0px auto;
    overflow: hidden;
    position: relative;
}
.gallerij-knop-tumbnail {
    position: absolute;
    text-align: center;
    top: 8px;
    font-size: 15px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    cursor: pointer;
    left: 0.5%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 3px 3px;
    padding: 10px;
    border: none;
}
.gallerij-knop-tumbnail:hover {
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
}
.gallerij-knop-tumbnail:active {
    border: none;
}
.gallerij-knop-tumbnail:nth-of-type(2) {
    float: right;
    position: relative;
    text-align: center;
    top: 8px;
    font-size: 15px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    cursor: pointer;
    margin-right: 0.5%;
    left: 0%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 3px 3px;
    border: none;
}
.gallerij-knop-tumbnail:nth-of-type(2):hover {
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
}

.tumbnail-container {
    width: 100%;
    height: 300px;
    background-color: gray;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    overflow-x: auto;
    position: absolute;
    z-index: 0;
}
.tumbnail-container::-webkit-scrollbar {
    visibility: hidden;
}
.tumbnail {
    min-width: 100px;
    height: 50px;
    position: relative;
    left: 0;
    font-size: 10px;
    font-weight: bold;
    margin: 0;
    color: white;
    transition: 0.25s;
}

.gallerij_h2 {
    background-color: gray;
    color: white;
    margin: 0;
    padding-top: 10px;
}

/*GIMP IMAGES (op de pagina/niet in het foto album)*/

.eindopdracht {
    max-width: 45%;
    margin-left: 10px;
    margin-right: 12.5px;
    margin-bottom: 2px;
    box-shadow: 5px 5px 10px gray, -5px -5px 10px gray, 5px -5px 10px gray, -5px 5px 10px gray;
    transition: 0.25s;
}

.eindopdracht:hover {
    cursor: pointer;
    box-shadow: 5px 5px 10px rgb(148, 148, 148), -5px -5px 10px rgb(148, 148, 148), 5px -5px 10px rgb(148, 148, 148), -5px 5px 10px rgb(148, 148, 148);
    opacity: 0.75;
    transition: 0.25s;
}

.eindopdracht_p {
    color: white;
}

.eindopdracht_ol {
    font-size: 110%;
    color: white;
}

.eindopdracht_beschrijving {
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 1.5%;
    background-color: gray;
    padding-bottom: 10px;
}

.eindopdracht_container {
    background-color: rgb(82, 82, 82);
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 5px;
}

.eindopdracht_h2 {
    color: white;
}

.eindopdracht_h3 {
    color: white;
    font-weight: bold;
    margin-top: 12.5px;
    padding: 0;
    margin-bottom: 0;
}

.gimp_responsive_images {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.gimp_responsive_image_container {
    padding: 0 0.5% 0.5%;
}

.gimp_description {
    display: none;
}

.gimp_gallerij_container {
    margin-left: 0.5%;
    margin-right: 0.5%;
}

.gimp_responsive_image {
    cursor: pointer;
    width: 200px;
    height: 125px;
    overflow: hidden;
    transition: 0.25s;
    object-fit: cover;
}

.gimp_responsive_image:hover {
    opacity: 0.5;
    transition: 0.25s;
}

.gimp_responsive_image:hover + .gimp_description {
    display: block;
    color: black;
    position: absolute;
    z-index: 2;
    transform: translateY(-24px);
    background-color: whitesmoke;
    border: 1px solid rgb(202, 202, 202);
    max-width: 198px;
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.gimp_description:hover {
    display: block;
    color: black;
    position: absolute;
    z-index: 2;
    transform: translateY(-24px);
    background-color: whitesmoke;
    border: 1px solid rgb(202, 202, 202);
    max-width: 198px;
    width: 100%;
    text-align: center;
    font-size: 15px;
}

/*GIMP FOTO ALBUM*/

#progress {
    width: 100%;
    background-color: grey;
    display: none;
}
  
#bar {
    width: 0%;
    height: 7.5px;
    background-color: green;
}


.gallerij {
    background-color: gray;
}

.gimp_h2 {
    font-size: 25px;
    margin: 0;
    padding-top: 15px;
}

.gimp_h5 {
    font-size: 15px
}

.caption-container p {
    font-size: 13px;
}

.gimp_img {
    max-width: 93%;
    max-height: 500px;
    margin-left: 12px;
    margin-right: 12px;
}

.img_center {
    text-align: center;
    background-color: gray;
    padding-top: 12px;
}

.gallerij_container {
    position: relative;
}

.mySlides {
    display: none;
    opacity: 0;
    animation-name: open;
    animation-duration: 1.5s;
}

.cursor {
    cursor: pointer;
}

.controls {
    background-color: gray;
    height: 60px;
    padding-bottom: 2px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 3px 3px;
    user-select: none;
    -webkit-user-select: none;
    opacity: 1;
    transition: all 0.25s ease-in-out;
    display: block;
}

.next {
    right: 0;
    margin-right: 12px;
}

.prev {
    margin-left: 12px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.start, .stop {
    cursor: pointer;
    position: absolute;
    background-color: transparent;
    margin-top: 10px;
    border: none;
    border-radius: 25px 25px;
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: all 0.25s ease-in-out;
    margin-left: 60px;
    display: block;
}

.start:hover, .stop:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.stop {
    display: none;
    width: 40px;
    height: 40px;
}

.loading {
    position: absolute;
    margin-top: 15px;
    width: 30px;
    height: 30px;
    display: none;
    margin-left: 65px;
}

.numbertext {
    color: #f2f2f2;
    background-color: rgba(128, 128, 128, 1);
    font-size: 12px;
    padding: 8px 8px;
    position: absolute;
    top: 0;
}

.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.demo {
    opacity: 0.3;
    height: 111%;
    object-fit: cover;
}

.demo:hover {
    opacity: 0.7;
}

.active {
    opacity: 1;
}

/*NAAR BOVEN SCROLLEN KNOPPEN*/

.mybtnn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    border: none;
    outline: none;
    background-color: rgba(110, 110, 110, 0.75);
    color: white;
    cursor: pointer;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 17.5px;
    padding-left: 10.5px;
    padding-right: 10.5px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    font-size: 30px;
    transition: ease-in-out 0.25s;
}

.schoolexamen_btnn {
    z-index: 1;
}
  
.mybtnn:hover {
    background-color: rgba(110, 110, 110, 1);
}

/*MOBIEL*/
@media only screen and (max-width: 1125px) {

    .tablink {
        width: 25%;
    }

    .gimp_h3 {
        margin-top: 100px;
    }

    .uitleg_container {
        width: 43.5%;
    }

    .code_container {
        width: 43.5%;
    }

    #clock {
        font-size: 115%;
        font-weight: bold;
        margin: 0;
    }

    .button_2 {
        display: block;
        text-align: center;
        color: black;
        background-color: rgb(163, 162, 162);
        text-decoration: none;
        border: 1px white solid;
        padding: 1%;
        margin: 1%;
        transition: 0.25s ease-out;
    }
    
    .button_2:hover {
        display: block;
        text-align: center;
        color: rgb(119, 0, 255);;
        background-color: rgb(181, 181, 181);
        text-decoration: none;
        border: 1px white solid;
        padding: 1%;
        margin: 1%;
        transition: 0.25s ease-in;
    }
    
    
    ol {
        font-size: 110%;
        padding-left: 10%;
        padding-right: 10%;
        list-style-type: decimal;
    }
    
    .footer_logo a {
        color: white;
        display: block;
        text-decoration: none;
    }
    
    .text_small {
        font-size: 80%;
    }

    .img_icon {
        width: 70px;
        height: 70px;
    }           

    .index_h1 {
        text-align: center;
        font-size: 275%;
        color: white;
        margin-top: 100px;
        text-shadow: 1px 1px black;
        padding: 2.5%;
       }
    
    .index_h2 {
        margin-top: 100%;
        margin-bottom: 0%;
        margin-left: auto;
        margin-right: auto;
        max-width: 1500px;
    }

    .toggle_button {
        display: flex;
    }

    .navbar_links {
        transform: translateY(-500px);
        display: flex;
        position: absolute;
        width: 100%;
        opacity: 0;
        transition: transform 0.5s;
        background-color: rgb(73, 73, 73);
        z-index: -1;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar_links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar_links li {
        text-align: center;
        opacity: 0;
    }

    .navbar_links.active {
        transform: translateY(50px);
        opacity: 1;
        transition: transform 0.5s;
    }

    .bar1.active {
        transform: rotate(-45deg) translate(-2.5px, 14px);
        transition: all 0.25s ease-in;
    }

    .bar2.active {
        opacity: 0;
    }

    .bar3.active {
        transform: rotate(45deg) translate(-2.5px, -14px);
        transition: all 0.25s ease-in;
    }

    .bar1.inactive {
        transform: rotate(-45deg) translate(0px, 0px);
        transition: all 0.25s ease-in;
    }

    .bar2.inactive {
        opacity: 1;
    }

    .bar3.inactive {
        transform: rotate(45deg) translate(0px, 0px);
        transition: all 0.25s ease-in;
    }
    /*account*/

    .account_main {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        flex-direction: column;
    }

    .account_p {
        font-size: 15px;
        margin-top: 0px;
        margin-left: 0px;
        padding-left: 2.5px;
    }
}

@media only screen and (max-width: 600px) {
    form {
        width: 250px;
        border: 2px solid #ccc;
        padding: 30px;
        background: #fff;
        border-radius: 15px;
    }

    .tablink {
        width: 50%
    }

    .gimp_h3 {
        margin-top: 200px;
    }
}



@media only screen and (max-width: 750px) {
    .index_h2 {
        margin-top: 150%;
        margin-bottom: 0%;
        margin-left: auto;
        margin-right: auto;
        max-width: 1500px;
    }

    .pop_up_container {
        background-color: #fefefe;
        margin: 0;
        border: 1px solid #888;
        width: 100%;
        height: 680px;
        margin-top: 20%;
        padding: 0;
    }

    .pop_up_container_gimp {
        margin: auto;
        background-color: transparent;
        width: 100%;
        height: 100%;
        padding: auto;
    }

    .sluiten_gimp_container {
        right: 0;
    }
}

@media only screen and (max-width: 416px) {
    
    .gimp_responsive_image {
        width: 47.5vw;
        height: 100px;
    }
    .start, .stop {
        margin-left: 15%;
    }

    .gimp_img {
        max-width: 93%;
        max-height: 45vh;
        margin-left: 12px;
        margin-right: 12px;
    }

    .opmaak_table tr td {
        min-width: 450px;
        font-size: 10px;
    }

    .eindopdracht {
        max-width: 90%;
    }
}

@media (hover: none) {
    .gallerij-knop-tumbnail {
        display: none;
    }

    .gimp_responsive_image:hover + .gimp_description {
        display: none;
    }

    .gimp_description:hover {
        display: none;
    }

    #progress {
        height: 0;
    }

    #bar {
        height: 0;
    }
}
