* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'geomanistlight';
  src: url('Geomanist-Light.woff2') format('woff2'),
       url('Geomanist-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'geomanistmedium';
  src: url('Geomanist-Medium.woff2') format('woff2'),
       url('Geomanist-Medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url('https://fairherstel.com/background-login.png');
  background-size: cover;
  background-color: #1f2633;
  color: white;
  margin: 0;
}

.loggedin {
  background: none;
}

.sidebar {
  height: calc(100vh);
  width: 120px;
  background: #000000;
  position: fixed;
  top: 0;
  padding-top: 50px;
}

.main-content {
  width: calc(100% - 120px);
  margin-left: 120px;
  padding-top: 120px;
}

.center-content {
  margin-left: 10%;
}

.radio {
  display: none;
}

.emoji {
  cursor: pointer;
  display: inline-block;
  padding: 14px;
  font-family: 'geomanistmedium';
  text-align: center;
  color: #9da3ac;
  border-radius: 5px;
  font-size:11px;
}

#test-1:checked ~ .emoji-1,
#test-2:checked ~ .emoji-2,
#test-3:checked ~ .emoji-3,
#test-4:checked ~ .emoji-4,
#test-5:checked ~ .emoji-5,
#test-6:checked ~ .emoji-6,
#test-7:checked ~ .emoji-7,
#test-8:checked ~ .emoji-8,
#test-9:checked ~ .emoji-9,
#test-10:checked ~ .emoji-10,
#test-11:checked ~ .emoji-11,
#test-12:checked ~ .emoji-12,
#test-13:checked ~ .emoji-13,
#test-14:checked ~ .emoji-14,
#test-15:checked ~ .emoji-15,
#test-16:checked ~ .emoji-16,
#test-17:checked ~ .emoji-17,
#test-18:checked ~ .emoji-18
{
  background-color: #151619;
}

.dash-icon {
  width: 40px;
  height: 70px;
  margin-left: calc(60px - 20px);
  background-image: url('https://fairherstel.com/dash-icon.png');
  background-size:contain;
  background-repeat: no-repeat;
}

.d-title {
  font-size: 17px;
  margin-top: 15px;
  font-family: 'geomanistlight';
  width: 120px;
  color: #6e6e6e;
  text-align: center;
}

.datum {
  font-size: 36px;
  margin-top: -5px;
  width: 120px;
  text-align: center;
  color: white;
  font-family: 'geomanistlight';
}

.dash-menu {
  margin-left: 80px;
}

.sidebar ul {
  padding: 0;
  margin: 0;
  width: 60px;
  margin-top: 65px;
}

.sidebar ul a {
  text-decoration: none;
}

.sidebar ul li {
  list-style-type: none;
  text-decoration: none;
  font-size: 20px;
  font-family: 'geomanistlight';
}

.menu-item-2 {
  color:white;
}

.menu-item {
  color: black;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(30deg) brightness(101%) contrast(104%);
}

.nav {
  width: calc(100vw - 280px);
  height: 80px;
  position: fixed;
  top: 0;
}

.nav form input[type="text"] {
  width: 50vw;
  height: 50px;
  border: none;
  background: #151619;
  margin-bottom: 20px;
  margin-top: 50px;
  color: #9da3ac;
  padding: 0 13px;
  margin-left: 10%;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-family: 'geomanistlight';
}

.nav form input[type="submit"] {
  width: fit-content;
  padding: 12px 20px;
  margin-top: 0px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  border: 3px solid #151619;
  background: #1B1F24;
  cursor: pointer;
  color: #9da3ac;
  -webkit-transition: background-color 0.22s;
  transition: background-color 0.22s;
  margin-left: 0px;
  font-family: 'geomanistlight';
}

.nav form input[type="submit"]:hover {
  background-color: #2d70b8;
  color: #e6e6e6;
}

.loguit {
  background-color: #A64951;
  position: fixed;
  top: 50px;
  right: 50px;
  transition: all ease-in-out .15s;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  padding: 4px;
}

.loguit:hover {
  background-color: #dbd5d6;
}

.login, .register {
  width: 400px;
  margin: calc(50vh - 200px) auto;
  border-radius: 5px;
}

.login h1, .register h1 {
  text-align: center;
  color: #5b6574;
  font-size: 24px;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
}

.login .links, .register .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
}

.login .links a, .register .links a {
  color: #adb2ba;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 10px 10px 10px;
  font-weight: bold;
}

.login .links a:hover, .register .links a:hover {
  color: #9da3ac;
}

.login .links a.active, .register .links a.active {
  border-bottom: 3px solid #3274d6;
  color: #3274d6;
}

.login form, .register form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: left;
  padding-top: 20px;
}

.login form label, .register form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background-color: #3274d6;
  color: #ffffff;
}

.login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
  width: 310px;
  height: 40px;
  border: none;
  background: #151619;
  margin-bottom: 20px;
  color: #9da3ac;
  padding: 0 13px;
  margin-left: 45px;
  border-radius: 5px;
  outline: none;
  font-family: 'geomanistlight';
}

.login form input[type="password"]:focus, .login form input[type="text"]:focus, .login form input[type="email"]:focus {
  box-shadow: #2f3947 0px 0px 5px;
}

.login form input[type="submit"], .register form input[type="submit"] {
  width: fit-content;
  padding: 7px 12px;
  margin-top: 0px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #3EDD4D;
  border: 0;
  cursor: pointer;
  color: #141519;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  margin-left: 45px;
  font-family: 'geomanistlight';
}

.login form input[type="submit"]:hover, .register form input[type="submit"]:hover {
  background-color: #32af3f;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.navtop {
  background-color: #2f3947;
  height: 60px;
  width: 100%;
  border: 0;
}

.navtop div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 1000px;
  height: 100%;
}

.navtop div h1, .navtop div a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navtop div h1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
  padding: 0;
  margin: 0;
  color: #eaebed;
  font-weight: normal;
}

.navtop div a {
  padding: 0 20px;
  text-decoration: none;
  color: #c1c4c8;
  font-weight: bold;
}

.navtop div a i {
  padding: 2px 8px 0 0;
}

.navtop div a:hover {
  color: #eaebed;
}

body.loggedin {
  background-color: #1f2633;
}

.content {
  width: 1000px;
  margin: 0 auto;
}

.content h2 {
  margin: 0;
  padding: 25px 0;
  font-size: 22px;
  border-bottom: 1px solid #e0e0e3;
  color: #4a536e;
}

.content > p, .content > div {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  padding: 25px;
  background-color: #fff;
}

.content > p table td, .content > div table td {
  padding: 5px;
}

.content > p table td:first-child, .content > div table td:first-child {
  font-weight: bold;
  color: #4a536e;
  padding-right: 15px;
}

.content > div p {
  padding: 5px;
  margin: 0 0 10px 0;
}

/*Medewerkers pagina*/
.tiles {
  width: 150px;
  height: 150px;
  padding-top:30px;
  color: #e6e6e6;
  font-size: 55px;
  text-align: center;
  background-color: #1846DC;
  font-family: 'geomanistmedium';
  float: left;
  margin-right: 15px;
}

.tiles-2 {
  width: 150px;
  height: 150px;
  padding-top:30px;
  font-size: 55px;
  text-align: center;
  font-family: 'geomanistmedium';
  float: left;
  margin-right: 15px;
  background-color: #151619;
  color: #999999;
  transition: all ease-in-out .22s;
  text-decoration: none;
}

.tiles-2:hover {
  background-color: #1846DC;
  color: #e6e6e6;
  cursor: pointer;
}

#results {
  width: 88%;
  margin-top: 70px;
}

#results td, #results th {
  text-align: left;
  font-size: 15px;
}

#results tr {
  border-top: 1px solid #ddd;
}

#results td {
  color: #edeff2;
  padding: 13px 0;
}

#results td a {
  text-decoration: none;
  color: #1846DC;
}

.userId {
  color: #4DA6FF !important;
}

.a-invoice {
  height: 12px;
  width: 12px;
  border-radius: 6px;
  background: #108843;
  margin-right: 6px;
  margin-top: 6px;
  float: left;
}

.no-invoice {
  height: 12px;
  width: 12px;
  border-radius: 6px;
  background: #EE0000;
  margin-right: 6px;
  margin-top: 6px;
  float: left;
}

.modifyUser {
  padding: 8px 15px !important;
  background-color: #141a1e !important;
  color: #999999 !important;
  transition: all ease-in-out .22s !important;
  border-radius: 0 !important;
  margin: 5px 5px 0 0 !important;
  float: left;
  outline: none;
  border: none !important;
  cursor: pointer;
}

.edit-workorder {
  background: #086ED1 !important;
  color: #e6e6e6 !important;
}

.modifyUser:hover {
  background-color: #6F7275 !important;
  color: #e6e6e6 !important;
}

.remove-user {
  background: #B02727 !important;
  color: #e6e6e6 !important;
}

.activate-user {
  background: #108843 !important;
  color: #e6e6e6 !important;
}

.deactivate-user {
  background: #E9730A !important;
  color: #e6e6e6 !important;
}

.edit-user {
  background: #086ED1 !important;
  color: #e6e6e6 !important;
}

/* Medewerker Toevoegen */
:root {
  --radio-border-color: #8b8c89;
  --radio-checked-color: #2d70b8;
  --radio-hover-color: #151619;
  --radio-disabled-bg-color: #d9d9d9;
}

.center-content form input[type="password"], .center-content form input[type="text"], .center-content form input[type="email"] {
  width: 370px;
  height: 40px;
  border: none;
  background: #151619;
  margin-bottom: 25px;
  margin-top: 7px;
  color: #9da3ac;
  padding: 0 13px;
  border-radius: 5px;
  outline: none;
  font-family: 'geomanistlight';
}

.center-content form input[type="radio"] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 15px;
  margin-left: 0;
  padding: 0;
  border: 2px solid var(--radio-hover-color);
  border-radius: 50%;
  appearance: none;
  background-color: transparent;
  background-color: var(--radio-hover-color);
  outline: none;
  cursor: pointer;
  float: left;
}

.center-content form input[type="radio"]:not(:disabled):checked {
  border-color: var(--radio-checked-color);
  background-color: var(--radio-checked-color);
  background-clip: content-box;
  padding: 2px;
  background-image: radial-gradient(
    circle,
    var(--radio-checked-color) 0%,
    var(--radio-checked-color) 50%,
    transparent 60%,
    transparent 100%
  );
}

@media (hover: hover) {
  .center-content form input[type="radio"]:not(:disabled):hover {
    border: 2px solid var(--radio-border-color);
  }
}

.center-content form .radio-label {
  display: block;
  margin-top: 13px;
  margin-right: 15px;
  float: left;
}

.center-content form input[type="password"]:focus, .center-content form input[type="text"]:focus, .center-content form input[type="email"]:focus {
  box-shadow: #2f3947 0px 0px 5px;
}

.center-content form input[type="submit"] {
  width: fit-content;
  padding: 7px 12px;
  margin-top: 0px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #3EDD4D;
  border: 0;
  cursor: pointer;
  color: #141519;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  font-family: 'geomanistlight';
}

.center-content form input[type="submit"]:hover {
  background-color: #32af3f;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.center-content p a {
  color: #2d70b8;
  text-decoration: none;
}

.form-left {
  width: 370px;
  float: left;
  margin-right: 35px;
}

.form-right {
  width: 370px;
  float: left;
}

.form-right p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Medewerker (aanpassen)*/
h1 {
  font-family: 'geomanistmedium';
  font-size: 30px;
}

.userRow {
  margin-bottom: 20px;
}

.userTitle {
  float: left;
  width: 170px;
  text-align: right;
  padding-top: 11px;
  margin-right: 15px;
  font-family: 'geomanistmedium';
}

.userData {
  background-color: #283140;
  float: left;
  width: fit-content;
  height: 50px;
  border-radius: 8px;
  padding: 0 0 0 16px;
}

.userData p {
  color: #fcfcfc;
  margin-top: 12px;
  float: left;
}

.userEdit {
  background-color: #181c2b;
  color: #999999;
  cursor: pointer;
  float: left;
  padding: 10px 15px;
  margin-left: 17px;
  margin-top: 4px;
  border-radius: 8px;
  margin-right: 4px;
  transition: all ease-in-out .22s;
}

.userEdit:hover {
  background-color: #1846DC;
  color: #e6e6e6;
}

.center-content .showForm form input[type="password"], 
.center-content .showForm form input[type="text"], 
.center-content .showForm form input[type="email"] {
  width: 330px;
  height: 40px;
  border: none;
  background: #151619;
  margin-bottom: 0px;
  margin-top: 12px;
  color: #9da3ac;
  padding: 0 13px;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-family: 'geomanistlight';
}

.center-content .showForm form input[type="submit"] {
  width: fit-content;
  padding: 9px 13px;
  margin-top: 0px;
  margin-bottom: 7px;
  border-radius: 0 5px 5px 0;
  background-color: #1846DC;
  border: 0;
  cursor: pointer;
  color: #e6e6e6;
  font-family: 'geomanistlight';
}

.showForm {
  margin-left: 183px;
}

.showForm p {
  margin-top: 0;
}

/* Locaties overzicht */
#search_text {
  width: 50% !important;
  height: 40px;
  border: none;
  background: #151619;
  margin-bottom: 0px;
  margin-top: 12px;
  color: #9da3ac;
  padding: 0 13px;
  border-radius:5px;
  outline: none;
  font-family: 'geomanistlight';
}

#search_text:focus {
  box-shadow: #2f3947 0px 0px 5px;
}

/* Werkorders overzicht */
.tiles-btn {
  width: 150px;
  height: 150px;
  padding-top:12px;
  font-size: 55px;
  text-align: center;
  font-family: 'geomanistmedium';
  float: left;
  margin-right: 15px;
  background-color: #1846DC;
  color: #e6e6e6;
  transition: all ease-in-out .22s;
  border: none;
  cursor: pointer;
}

.tiles-btn:hover {
  color: #151619;
  background-color: #e6e6e6;
}

.special-status {
  float: left;
  margin-right: 5px;
  background: #63bc4c;
  color: #151619;
  background-image: url( 'svg/euroDark.svg' );
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 40% 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 5px 0 0 0;
}

/* Werkorder individueel */
.barcode-align {
  margin-right: 20px;
  float: left;

}

.barcode-align p {
  font-family: 'geomanistmedium';
  margin-top: 0px;
  margin-bottom: 5px;
}

.barcode-space {
  padding: 13px 11px;
  border-radius: 8px;
  background-color: white;
}

.printing {
  background-color: #181c2b;
  color: #9da3ac;
  transition: all ease-in-out .22s;
  border: none;
  cursor: pointer;
  float: left;
  padding:12px 15px;
  border-radius: 3px;
  margin-right: 6px;
  border: #5d7081 solid 0px;
}

.workorder-printing {
  background: #086ED1; 
  color: #e6e6e6;
  transition: all ease-in-out .22s;
}

.prijsopgave-printing {
  background: #E9730A;
  color: #e6e6e6;
  transition: all ease-in-out .22s; 
}

.recycle-printing {
  background: #108843;
  color: #e6e6e6;
  transition: all ease-in-out .22s; 
}

.printing:hover {
  background: #6F7275; 
}

.center-content .showForm form .submit-device {
  width: 400px !important;
  height: 40px;
  border-radius: 7px !important;
  margin-top: 10px !important;
}

.stat-comp {
  background-color:#1846DC;
  padding:9px 17px;
  border-radius: 7px;
  margin-right: 10px;
  width: fit-content;
  float: left;
}

.stat {
  background-color: #141a1f;
  color: #2f3742;
  padding:9px 17px;
  border-radius: 7px;
  margin-right: 10px;
  width: fit-content;
  float: left;
}

/* Vrachtbrief binnenboeken */
textarea {
  width: 370px;
  height: 380px;
  border: none;
  margin-bottom: 20px;
  background: #151619;
  margin-bottom: 20px;
  margin-top: 12px;
  color: #9da3ac;
  padding: 13px;
  border-radius: 5px;
  outline: none;
  font-family: 'geomanistlight';
  resize: none;
}

textarea:focus {
  box-shadow: #2f3947 0px 0px 5px;
}

/* search wordorder styling */
#liveResult {
  width: 50%;
  height: fit-content;
  position: fixed;
  background-color: #151619;
  left: calc(10% + 254px);
  top: 105px;
}

.rowResult {
  width: 100%;
  padding: 15px;
  cursor: pointer;
  transition: all ease-in-out .11s;
}

.rowResult:hover {
  background-color: #1b1d20;
}

.rowResult p {
  margin: 0;
}

.pLeft {
  float: left;
  text-align: left;
  width: 20%;
  padding: 0;
  color: #d9d9d9;
}

.pRight {
  float: right;
  width: fit-content;
  background-color: #32af3f;
  padding: 5px 10px;
  border-radius: 15px;
  margin-top: 6px !important;
}

.sendToWordorder {
  width: 100%;
  background-color: unset;
  border: none;
  cursor: pointer;
}

/* Menu v2 */
.menuv2 {
  width: 60px;
  margin-left: 30px;
}

.menuv2 li {
  height: 60px;
  width: 60px;
  border-radius: 5px;
  margin-bottom: 12px;
  color: white;
  font-size: 18px !important;
  transition: all ease-in-out .13s;
}

.menuv2 li:hover {
  background: #1846DC;
}

.active-menu {
  background: #1846DC;
}

/* Dashboard */
#weekresultaten {
  display: flex;
  max-width: 716px;
  overflow: hidden;
  flex-wrap: wrap;
}
.weekresult-container {
  background: #1a202b;
  width: 110px;
  text-align: center;
  padding-top: 1px;
  margin-top: 12px;
  float: left;
  margin-right: 12px;
  text-decoration: none;
  transition: all ease-in-out .1s;
  border-radius: 10px;
  position: relative;
  scale: 1;
}

.weekresult-container:hover {
  scale: 1.03;
}

.weekresult-container:hover::before {
  opacity: 1;
}

.weekresult-container::before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  content: "";
  border-radius: inherit;
  z-index: 2;
  opacity: 0;
  transition: opacity 500ms;
  background: radial-gradient(
    150px circle at var(--mouse-x) var(--mouse-y), 
    rgba(255, 255, 255, 0.144),
    transparent 100%
  );
}

.weeknummer {
  font-family: 'geomanistmedium';
  color: white;
  font-size: 50px;
  margin-top: 12px;
}

.weekline {
  background: #1846DC;
  width: 60px;
  height:4px;
  margin: 5px 25px 0 25px;
}

.weeknaam {
  font-size: 18px;
  font-family: 'geomanistlight';
  color: white;
}

.weekitems {
  background: #1F2633;
  margin: 15px 20px;
  font-size: 25px;
  padding-top: 20px;
  border-radius: 35px;
  height: 70px;
  width:70px;
  font-family: 'geomanistlight';
  color: white;
}

.weekresult-container-active {
  background: #1846DC;
  width: 110px;
  text-align: center;
  padding-top: 1px;
  margin-top: 12px;
  float: left;
  margin-right: 12px;
  text-decoration: none;
  transition: all ease-in-out .1s;
  border-radius: 10px;
  position: relative;
}

.weekresult-container-active .weekline {
  background: #1B1F24;
}

.weekresult-container:hover {
  cursor: pointer;
}

/* Dashboard > Jaaroverzicht ontvangen */
.center-jaar {
  width:80%;
}

/* Dashboard > Jaaroverzicht ontvanegen > Weekoverzicht */
.week-heading-left {
  width:130px;
  height: 130px;
  padding-top: 23px;
  text-align: center;
  border-radius: 50%;
  font-size: 60px;
  font-family: 'geomanistmedium';
  color: white;
  background: #1846DC;
  margin: 15px 25px 15px 0;
  float: left;
}

.week-heading-right {
  float: left;
  margin-top: 24px;
  font-family: 'geomanistlight';
}

.week-heading-right p, .week-heading-right span {
  font-size: 22px;
  margin: 3px 0px;
}

.week-stats {
  width: 330px;
  margin: 20px 20px 0 0;
  float: left;
}

.week-header {
  color: white;
  background: #1846DC;
  font-family: 'geomanistlight';
  margin-top: 20px;
  padding: 10px 15px;
  margin-bottom: 10px;
}

.week-results p {
  width: fit-content;
  float: left;
  margin: 12px 0;
}

.week-results form {
  width: fit-content;
  float: right;
  margin-top: 5px;
}

.week-results form .modifyUser {
  margin-right: 0 !important;
}

.employee-count {
  width: fit-content;
  float: right;
  margin: 12px 0;
  color: #2d70b8;
  font-family: 'geomanistmedium';
}

/* Patchnotes */
.patchnotes-container {
  width: 700px;
  padding: 35px;
  background: #21272d;
  border-radius: 5px;
  margin-bottom: 20px;
}

.patchnotes-type-hotfix {
  float: left;
  width: fit-content;
  padding: 4px 15px;
  background: #fff200;
  color: #070808;
  border-radius: 20px;
  font-family: 'geomanistlight';
}

.patchnotes-type-important {
  float: left;
  width: fit-content;
  padding: 4px 15px;
  background: #f04c23;
  color: #070808;
  border-radius: 20px;
  font-family: 'geomanistlight';
}

.patchnotes-type-patchnote {
  float: left;
  width: fit-content;
  padding: 4px 15px;
  background: #00aeef;
  color: #070808;
  border-radius: 20px;
  font-family: 'geomanistlight';
}

.patchnotes-type-announcement {
  float: left;
  width: fit-content;
  padding: 4px 15px;
  background: #92278f;
  color: #070808;
  border-radius: 20px;
  font-family: 'geomanistlight';
}

.patchnotes-time {
  float: left;
  margin-left: 10px;
  margin-top: 4px;
  font-family: 'geomanistlight';
}

.patchnotes-row p {
  font-size: 14px;
  font-family: 'geomanistlight';
  line-height: 1.4em;
}

.patchnotes-title {
  font-family: 'geomanistmedium';
  font-size: 27px;
}

.patchnotes-tag {
  width: fit-content;
  background: #323c47;
  font-size: 13px;
  font-family: 'geomanistlight';
  padding: 4px 16px;
  margin-top: 30px;
  border-radius: 12px;

}

/*Webstore API*/
.webstores-link {
  text-decoration: none;
  color: white;
  width: fit-content;
  display: block;
}
.webstores-container {
  margin-top: 40px;
  width: 360px;
  height: auto;
  padding: 20px 30px;
  text-align: center;
  background: #323c47;
  transition: all ease-in-out .22s;
  text-decoration: none;
  scale: 1;
}

.webstores-container:hover {
  background: #1846DC;
  transition: all ease-in-out .22s;
  cursor: pointer;
  scale: 1.05;
}

.center-content form input[type="number"]{
  width: 330px;
  height: 40px;
  border: none;
  background: #181c2b;
  margin-bottom: 0px;
  margin-top: 5px;
  margin-left: -10px;
  margin-right: 5px;
  color: #9da3ac;
  padding: 0 13px;
  border-radius: 5px;
  outline: none;
  font-family: 'geomanistlight';
}

.center-content form select {
  width: 330px;
  height: 40px;
  border: none;
  background: #181c2b;
  margin-bottom: 0px;
  margin-top: 5px;
  margin-left: -10px;
  margin-right: 5px;
  color: #9da3ac;
  padding: 0 13px;
  border-radius: 5px;
  outline: none;
  font-family: 'geomanistlight';
}

.center-content form input[type="checkbox"] {
  width: 40px;
  height: 20px;
  border: none;
  background: #181c2b;
  margin-bottom: 0px;
  margin-top: 14px;
  margin-left: -10px;
  margin-right: 5px;
  color: #9da3ac;
  padding: 0 13px;
  border-radius: 5px;
  outline: none;
  font-family: 'geomanistlight';
}