:root {
  --valred1: #ff4457;
  --valwhite: #ece9e1;
  --valblue1: #101823;
  --valred2: #cb1a20;
  --valblue2: #1f354c;
  --valteal: #22ffc5;
}

body {
  font-family: Arial, sans-serif;
  position: relative;
  background-color: var(--valblue1);
  color: var(--valwhite);
  padding: 0%;
  margin: 0%;
  min-height: 100%;
}

hr {
  border: solid var(--valwhite);
}

p {
  padding: none;
  margin: none;
}

#val {
  color: var(--valred1);
}



/* <HEADER> */
header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--valblue1);
  z-index: 1;

  font-size: 50px;
  text-align: center;
  margin: 0px auto;
  width: 100%;

  white-space: nowrap;
}

header hr {
  position: fixed;
  width: 100%;
  height: 1px;
  border: 0;
  border-top: 3px solid var(--valred1);
  padding-top: 20px;
}

.headerTitle {
  z-index: 5;
  width: 40%;
  padding-top: 10px;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  display: block;

  /*/ background-color: green;/*/
}

.headerNav {
  z-index: 5;
  font-size: 20px;
  height: 65px;
  float: right;
  padding-left: 5px;
  padding-right: 5px;
  display: block;

  /*/background-color:blueviolet;/*/

  text-align: center;
  display: block;
}

#nav {
  font-size: 18px;
  text-decoration: none;
  color: var(--valwhite);
  border: var(--valred1) solid 5px;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--valblue1);
  margin: auto;
  display: inline-block;
  box-sizing: border-box;
}

#navsel {
  font-size: 18px;
  text-decoration: none;
  color: var(--valwhite);
  border: var(--valteal) solid 5px;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--valblue1);
  margin: auto;
  display: inline-block;
  box-sizing: border-box;
}

#nav:hover,
#navsel:hover {
  background-color: var(--valblue2);
}

#foot {
  font-size: 18px;
  text-decoration: none;
  color: var(--valwhite);
  border: var(--valred1) solid 5px;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--valblue1);
  margin: auto;
  display: inline-block;
  box-sizing: border-box;
}

#footsel {
  font-size: 18px;
  text-decoration: none;
  color: var(--valwhite);
  border: var(--valteal) solid 5px;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--valblue1);
  margin: auto;
  display: inline-block;
  box-sizing: border-box;
}

#foot:hover,
#foot:hover {
  background-color: var(--valblue2);
}

/* MAIN */
button {
  background-color: var(--valblue1);
  border: 5px solid var(--valred1);
  color: var(--valwhite);
  font-size: 20px;
  font-weight: 600;
  height: 45px;
  width: 175px;
  border-radius: 25px;
}

button:hover {
  border: 5px solid var(--valteal);
  color: var(--valwhite);
  padding-top: none;
  display: block;
  width: 180px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
}

.UL-Section{
  padding-left: 20%;
  padding-right: 20%; 
  text-align: left;
}
.UL-Stxt{
  text-align: left;
  font-size: smaller;
  padding-left: 25px;
}
.UL-Link{
  text-decoration: none;
  color: #ff4457;
}
.UL-L{
  text-align: left;
}

body {
  height: 50%;
}

/* <LOADING> */
.selall {
  color: var(--valteal);
  text-decoration-color: var(--valteal);
  text-decoration: var(--valteal);
}

#SelTitle {

  font-size: 35px;
  color: var(--valwhite);
  padding: 20px;
  margin: 0%;
}

#SelOut {
  font-size: 50px;
  text-decoration: underline;
  color: var(--valred1);
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 0%;
}

#SelExtra {
  font-size: 20px;
  color: var(--valwhite);
  margin: 0%;
  margin-top: 20px;
}

.resultGamemodeImage {
  width: 85%;
  margin: auto;
  margin-top: 20px;
  border: 5px solid var(--valblue1);
  border-radius: 25px;
  margin-bottom: 25px;
}

.resultGunImage {
  width: 100%;
  margin: auto;
  margin-top: 20px;
  border: 5px solid var(--valblue1);
  border-radius: 25px;
  margin-bottom: 25px;
}

.resultAgentImage {
  height: 70%;
  max-width: 75%;
  margin: auto;
  margin-top: 20px;
  border: 5px solid var(--valblue1);
  border-radius: 25px;
  margin-bottom: 25px;
}

.loading {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  align-self: center;
  align-content: center;
  padding-left: calc(50% - 35px);
  padding-right: calc(50% - 35px);
}

.loading::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 10px solid var(--valblue1);
  border-top-color: var(--valred1);
  border-radius: 50%;
  transform: rotate(0.16turn);
  animation: loading 1s ease infinite;
}

@keyframes loading {

  /* Safari support */
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}



/* <FOOTER> */
footer {
  padding: 0;
  font-size: 12px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 5px;
  width: 100%;
}

footer hr {
  width: 100%;
  height: 1px;
  border: 0;
  border-top: 3px solid var(--valred1);

  padding: 0;
  margin: 0;
}


header div,
main div {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 10px;
}

html {
  font-family: "Lucida Sans", sans-serif;
  height: 100%;
}

.menu div {
  margin: 0;
  padding: 2px;
  background-color: var(--valblue2);
}

.menu li {
  padding: 8px;
  height: 30px;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.menu div div:hover {
  background-color: var(--valred1)
}

.menu div .selall:hover {
  background-color: var(--valred1);
  color: var(--valblue1);
  font-weight: bold;
}

.result {
  background-color: var(--valblue2);
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}





/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 200px) {

  /* test: */
  .col-s-1 {
    width: 8.33%;
  }

  .col-s-2 {
    width: 16.66%;
  }

  .col-s-3 {
    width: 25%;
  }

  .col-s-4 {
    width: 33.33%;
  }

  .col-s-5 {
    width: 41.66%;
  }

  .col-s-6 {
    width: 50%;
  }

  .col-s-7 {
    width: 58.33%;
  }

  .col-s-8 {
    width: 66.66%;
  }

  .col-s-9 {
    width: 75%;
  }

  .col-s-10 {
    width: 83.33%;
  }

  .col-s-11 {
    width: 91.66%;
  }

  .col-s-12 {
    width: 100%;
  }

  .header-s-1 {
    height: 190px;
  }

  .nav-s-1 {
    margin-top: 0px;
  }

  .hr-s-1 {
    top: 188
  }

  .nav-s-2 {
    width: 150px;
  }

  .space-s-1 {
    height: 200px;
  }
}

@media only screen and (min-width: 600px) {

  /* For tablets: */
  .col-s-1 {
    width: 8.33%;
  }

  .col-s-2 {
    width: 16.66%;
  }

  .col-s-3 {
    width: 25%;
  }

  .col-s-4 {
    width: 33.33%;
  }

  .col-s-5 {
    width: 41.66%;
  }

  .col-s-6 {
    width: 50%;
  }

  .col-s-7 {
    width: 58.33%;
  }

  .col-s-8 {
    width: 66.66%;
  }

  .col-s-9 {
    width: 75%;
  }

  .col-s-10 {
    width: 83.33%;
  }

  .col-s-11 {
    width: 91.66%;
  }

  .col-s-12 {
    width: 100%;
  }

  .header-s-1 {
    height: 190px;
  }

  .nav-s-1 {
    margin-top: 0px;
  }

  .hr-s-1 {
    top: 188
  }

  .nav-s-2 {
    width: 150px;
  }

  .space-s-1 {
    height: 200px;
  }
}

@media only screen and (min-width: 768px) {

  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }

  .col-2 {
    width: 16.66%;
  }

  .col-3 {
    width: 25%;
  }

  .col-4 {
    width: 33.33%;
  }

  .col-5 {
    width: 41.66%;
  }

  .col-6 {
    width: 50%;
  }

  .col-7 {
    width: 58.33%;
  }

  .col-8 {
    width: 66.66%;
  }

  .col-9 {
    width: 75%;
  }

  .col-10 {
    width: 83.33%;
  }

  .col-11 {
    width: 91.66%;
  }

  .col-12 {
    width: 100%;
  }

  .header-1 {
    height: 100px;
  }

  .nav-1 {
    margin-top: 15px;
  }

  .hr-1 {
    top: 97
  }

  .nav-2 {
    width: 33%;
  }

  .nav-3 {
    width: 22%;
  }

  .space-1 {
    height: 100px;
  }
}

@media only screen and (min-width: 1200px) {

  /* For desktop: */
  .col-x-1 {
    width: 8.33%;
  }

  .col-x-2 {
    width: 16.66%;
  }

  .col-x-3 {
    width: 25%;
  }

  .col-x-4 {
    width: 33.33%;
  }

  .col-x-5 {
    width: 41.66%;
  }

  .col-x-6 {
    width: 50%;
  }

  .col-x-7 {
    width: 58.33%;
  }

  .col-x-8 {
    width: 66.66%;
  }

  .col-x-9 {
    width: 75%;
  }

  .col-x-10 {
    width: 83.33%;
  }

  .col-x-11 {
    width: 91.66%;
  }

  .col-x-12 {
    width: 100%;
  }
}