:root {
  --MAX-WIDTH_screenShape:     414px;
  --BORDER-RADIUS_screenShape: 10px;

  --FONT_montserrat: 'montserrat';
  --FONT_quicksand:  'quicksand';
  --FONT_comfortaa:  'comfortaa';
  --FONT_lobster:    'lobster';
  
  --COLOR_main:   rgb(0 116 60);
  --COLOR_alt:    rgb(0 165 85);
  --COLOR_shadow: rgb(77 77 77);
  --COLOR_mark:   rgb(255 129 10);
  --COLOR_purp:   #5882FA;
  --COLOR_notice: #FA5959;
}

/*<><><><><><><><><><>*/

::-webkit-scrollbar {
  display: none;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--COLOR_main), var(--COLOR_alt));
  border-radius: 3px;
}

/*<><><><><><><><><><>*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  background: linear-gradient(90deg, var(--COLOR_mark), var(--COLOR_main));
}

body {
  background: #FAFAFA;
  display: block;
  height: 100vh;
  width: 100%;
  max-width: var(--MAX-WIDTH_screenShape);
  margin: auto;
  overflow: hidden;
  position: relative;
}

display, transition-view {
  background: inherit;
  display: block;
  height: inherit;
  width: inherit;
  max-width: inherit;
  overflow: scroll;
}
display[evenly-content] {
  align-items: center;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
}

main, form, concat {
  display: block;
  height: fit-content;
  width: 100%;
}

concat > inner {
  display: inherit;
  height: inherit;
  width: inherit;
}

/*<><><><><><><><><><>*/

transition-view {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  color: var(--COLOR_alt);
}

transition-view > i {
  font-size: 4.5em;
  text-align: center;
  margin: 40px;
}

transition-view > p {
  border-radius: 10px;
  font: bold 1.2em comfortaa;
  text-align: center;
  padding: 7px 5px;
}

transition-view > button {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: table;
  font: bold 15px comfortaa;
  margin-top: 10px;
  padding: 7px 5px;
}

/*..........*/

@keyframes RouterTransition_loadingIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
