body {
    background-color: #051821;
    width: 99%;
    align-items: center;
    text-align: center;
}
body * {
    transition: 0.5s;
}
/* light mode */
body.light {
    background-color: #f58800;
}
#selector1.light, #selector2.light, #selector3.light, #selector4.light, #selector5.light {
    border: 3px solid #231F20;
    color: #f5f5f5;
    background-color: #f58800;
}
table.light * {
    border: 3px solid #231F20;
    color: #f5f5f5;
    background-color: #f58800;
    font-size: 14px;
}
#switch.light .slider {
    background-color: #f58800;
    border: 3px solid #231F20;
}
#switch.light .slider::before {
    background-color: #f5f5f5;
}
.fas.light {
    color: #f5f5f5 !important;
}
/*table + content*/
table * {
    border: 2px solid #1A4645;
    color: #f58800;
    padding: 6px 10px;
    background-color: #051821;
    font-family: 'M PLUS 1 Code', sans-serif;
    font-size: 15px;
    white-space: nowrap;
}
table {
    border-collapse: collapse;
    width: 25%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
/*selectors*/
input[type=submit], select, button {
    width: 20%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 3px solid #1A4645;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #266867;
    color: #66fcf1;
    font-family: 'M PLUS 1 Code', sans-serif;
    cursor: pointer;
}
input[type=submit], button {
    color: #f58800;
    background-color: #051821;
    width: 25%;
}

/*toggleswitch*/
#switch  {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 34px;
    left: 2.5%;
    top: 2.5%;
}
switch input {
    opacity: 0;
    height: 0;
    width: 0;
}
.slider {
    position: absolute;
    background-color: #266867;
    transition: .2s;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 3px solid#1A4645;
    border-radius: 34px;
}
.slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: #66fcf1;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider::before{
    transform: translateX(26px);
}

.fas {
    color:#f58800;
    position:absolute;
    font-size:40px;
}
.fa-store{ right:20px;top:20px;}
.fa-info-circle{left:5%;top:17.5px;}
.fa-info-circle:hover .information{transform: scaleY(1)translateX(-50%);}
.information{margin-top: 10px;transform: scaleY(0)translateX(-50%);transform-origin: top;}
table * {padding: 10px 20px;}
td{font-weight: 100;}

.popUp {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
  }
  
  .popUp-content {
    background-color: #266867;
    margin: auto;
    padding: 20px;
    border: 3px solid #1A4645;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    width: 80%;
    height: auto;
    text-align: center;
    color: #f58800;
    font-family: 'Anonymous Pro', monospace;
    font-size: 20px;
    line-height: 10px;
  }
  
  .close {
    color: #f58800;
    float: right;
    font-size: 56px;
    font-weight: bold;
    position: absolute;
    right: 50%;
    bottom: 10px;
  }
  
  .close:hover {
    color: #4d2a00;
    text-decoration: none;
    cursor: pointer;
  }
/* scrollbar */

  /* width */
  body::-webkit-scrollbar {width: 10px;}
  
  /* Track */
body::-webkit-scrollbar-track {background: none;}
   
  /* Handle */
body::-webkit-scrollbar-thumb {background: rgba(245,245,245,0.1);border-radius: 5px;height: 10px;}
  
/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {background: rgba(245,245,245,0.5);}

/*
color-scheme: blue/orange - dark
#051821 - background
#1A4645 - border
#266867 - items-background
#f58800 - text
#66fcf1 - text2

color-scheme: orange/dark - light
#f58800 - background
#231F20 - border
#f5f5f5 - text
*/