body {
    width: 100 vw;
}


body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif}
.w3-quarter div{margin-bottom: -6px; cursor: pointer}
.w3-quarter div:hover{opacity: 0.6; transition: 0.3s}

.box {
    box-sizing: border-box;
    position:left;
    float: left;
    width: 50vw;
    xheight: 45vh;
    margin: 0 auto;
}

@media only screen 
and (max-width : 800px) {
    /* Styles */
    .box {
    box-sizing: border-box;
    position:left;
    width: 100vw;
    xheight: 80vw;
    }
}


.score1div{
  width:100%;
  text-align: left;
  position: relative;
}


.score1{
    height:10%;
    width:100%;
    text-align: left;
    position: relative;

  }

  .cookies-banner {
  background: #444444;
  opacity: 0.9;
  color: #ffffff;
  padding: 6px;
  font-size: 16px;
  text-align: center;
  position: fixed;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.cookies-banner button {
  text-decoration: none;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-banner button:hover {
  background: #fff;
  color: #222;
}

/*
.dropdown {
  position: absolute;
  display: xx;
  top:60px;
  left:10px;
  width:90vw;
  opacity: 0.9;
}

.dropdown-content {
  position: absolute;
  width:90vw;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
*/

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  width: 90vw;
  display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}



/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
  }
  
  /* The popup form - hidden by default ,   position: fixed;
  */
  .form-popup {
    display: none;
    top: 30px;
    right: 40vw;
    border: 3px solid #f1f1f1;
    z-index: 9;
  }
  
  /* Add styles to the form container */
  .form-container {
    max-width: 60vw;
    padding: 10px;
    background-color: white;
  }
  
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
    background-color: #4466aa;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }
  

/* Style the button that is used to open and close the collapsible content */
.collapsibleitem {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsibleitem:hover {
  background-color: #ddd;
}

  
.collapsible {
  background-color: #ddd;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
