﻿/*
  0 - 600px:      phone
  600 - 900px:    tablet partrait
  900 - 1200px:   tablet landscape
  [1200 - 1800]:  normal styles (base design)
  1800 + :        big desktop

  1em = 16px (default browser text size)

  $breakpoint argument choices
  -phone        600px/16 = 37.5em
  -tab-port     900px/16 = 56.25em
  -tab-land     1200px/16 = 75em
  -big-desktop  1800px/16 = 112.5em

  order of responsive design
  ORDER: Base + typography > general layout + grid > page layout > components
*/
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  80% {
    transform: translate(-50%, -40px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -30%);
  }
}
@keyframes moveInVerticalRotate {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  20% {
    opacity: 0.2;
    transform: rotateY(70deg);
  }
  40% {
    opacity: 0.4;
    transform: rotateY(50deg);
  }
  60% {
    opacity: 0.6;
    transform: rotateY(30deg);
  }
  80% {
    opacity: 0.8;
    transform: rotateY(10deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes moveInHorizontalRotate {
  0% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  20% {
    opacity: 0.2;
    transform: rotateX(70deg);
  }
  40% {
    opacity: 0.4;
    transform: rotateX(50deg);
  }
  60% {
    opacity: 0.6;
    transform: rotateX(30deg);
  }
  80% {
    opacity: 0.8;
    transform: rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes moveOutVerticalRotate {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  20% {
    opacity: 0.8;
    transform: rotateY(10deg);
  }
  40% {
    opacity: 0.6;
    transform: rotateY(30deg);
  }
  60% {
    opacity: 0.4;
    transform: rotateY(50deg);
  }
  80% {
    opacity: 0.6;
    transform: rotateY(70deg);
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
  }
}
@keyframes moveOutHorizontalRotate {
  0% {
    opacity: 1;
    transform: rotateX(0deg);
  }
  20% {
    opacity: 0.8;
    transform: rotateX(10deg);
  }
  40% {
    opacity: 0.6;
    transform: rotateX(30deg);
  }
  60% {
    opacity: 0.4;
    transform: rotateX(50deg);
  }
  80% {
    opacity: 0.6;
    transform: rotateX(70deg);
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  box-sizing: inherit;
  position: relative;
  background-color: #fffafa;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #262626;
}

.SubView_body {
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.heading-4, .heading-3, .heading-2, .heading-1 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.heading-1 {
  font-size: 4.5rem;
  line-height: 1;
}
.heading-1--light {
  color: #fff;
}
.heading-1--dark {
  color: #000;
}

.heading-2 {
  font-size: 4rem;
  line-height: 1;
}
.heading-2--light {
  color: #fff;
}
.heading-2--dark {
  color: #000;
}

.heading-3 {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.heading-3--light {
  color: #fff;
}
.heading-3--dark {
  color: #000;
}

.heading-4 {
  font-size: 1.9rem;
}
.heading-4--light {
  color: #fff;
}
.heading-4--dark {
  color: #000;
}
@media only screen and (max-width: 25em) {
  .heading-4 {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}

.mb-sm {
  margin-bottom: 2rem;
}

.mb-md {
  margin-bottom: 3rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.mb-hg {
  margin-bottom: 8rem;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem;
}

.u-margin-bottom-large {
  margin-bottom: 8rem;
}

.u-center-text {
  text-align: center;
}

.u-margin-top-small {
  margin-top: 1.5rem;
}

.u-bold {
  font-weight: 600;
}

.u-unselectable {
  user-select: none;
}

.button_01 {
  font-size: 1rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  border-radius: 5rem;
  padding: 0.25rem;
  min-width: 3.5rem;
  text-transform: uppercase;
  cursor: pointer;
}
.button_01:hover {
  transform: translateY(-2px) scale(103%);
}
.button_01:active {
  transform: translateY(0.5px);
}

.button_02 {
  border: none;
  padding: 0.5rem;
  min-width: 5rem;
  text-decoration: underline;
  font-size: 1rem;
  transform: translateY(-2px) scale(100%);
  cursor: pointer;
}
.button_02:hover {
  transform: translateY(-4px) scale(103%);
}
.button_02:active {
  transform: translateY(1px);
}
.button_02:visited {
  color: red;
}

.button_03 {
  border: none;
  background-color: orangered;
  padding: none;
  color: inherit;
  font-size: inherit;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transform: translateY(-3px) scale(90%);
}
.button_03:hover {
  transform: translateY(-5px) scale(103%);
}
.button_03:active {
  transform: translateY(0px) scale(95%);
}

.button_04 {
  border: none;
  min-width: 5rem;
  text-decoration: underline;
  font-size: inherit;
  font-weight: 600;
  transform: translateY(-2px) scale(100%);
  cursor: pointer;
}
.button_04:hover {
  transform: translateY(-4px) scale(103%);
}
.button_04:active {
  transform: translateY(1px);
}
.button_04:visited {
  color: red;
}

.tageditbttn {
  padding: 0.75rem 1rem;
  border: none;
  background-color: #ffb84d;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  min-width: 8rem;
  text-transform: uppercase;
  transform: scale(0.75);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 25em) {
  .tageditbttn {
    transform: scale(1.5);
    margin: 0 2.5rem;
  }
}
.tageditbttn:hover {
  cursor: pointer;
  background-color: #cc7a00;
  color: #fff;
}

.siteMenu {
  background-color: #737373;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
}
.siteMenu__btn {
  padding: 0.5rem 0.5rem;
  border: 1px solid orange;
  border-radius: 1rem;
  margin: 0 0.5rem;
  min-width: 7.5rem;
  /*        @media only screen and (max-width: $bp-small) {
              min-width: 5.5rem;
              font-size: .8rem;
          }
  */
}
.siteMenu__btn:hover {
  background-color: orange;
  -webkit-transition: background-color 100ms linear;
  -ms-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}
.siteMenu__btn:not(:hover) {
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

.activa {
  background-color: #e69900;
  border-radius: 5rem;
}

.footer {
  position: absolute;
  bottom: 1rem;
}

.splash {
  height: 100vh;
  z-index: 1;
  background-image: linear-gradient(to right bottom, rgba(255, 204, 128, 0.75), rgba(230, 138, 0, 0.75)), url(../Images/SolarEclipse.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.splash__appTitle-h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 7rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
  padding-top: 3rem;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 62.5em) {
  .splash__appTitle-h1 {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .splash__appTitle-h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
}
.splash__appTitle-h2 {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: line-through;
  color: #fffafa;
  text-align: center;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.splash__footer {
  position: absolute;
  top: 92vh;
  left: 1vw;
}
.splash__footer-text {
  color: #000;
  font-weight: 900;
  font-size: 1.9rem;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.loginPopup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 9999;
}

.loginForm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  background-color: white;
  height: auto;
  width: 30%;
  opacity: 0.85;
  border-radius: 2.5rem;
  box-shadow: 0 1rem 2rem rgba(26, 15, 0, 0.2);
  animation-name: moveInBottom;
  animation-duration: 1.25s;
  animation-timing-function: ease-out;
}
@media (max-width: 75em) {
  .loginForm {
    top: 30%;
    width: 60%;
  }
}
@media (max-width: 56.25em) {
  .loginForm {
    top: 35%;
    width: 80%;
  }
}
@media (max-width: 37.5em) {
  .loginForm {
    top: 40%;
    width: 80%;
    background-color: transparent;
    opacity: 1;
    box-shadow: none;
  }
}
.loginForm__header {
  position: relative;
  height: 5rem;
  border-bottom: 1px solid #e68a00;
}
@media (max-width: 37.5em) {
  .loginForm__header {
    border-bottom: none;
  }
}
.loginForm__header--text {
  font-size: 2.5rem;
  padding-top: 0.5rem;
  padding-left: 1rem;
}
@media (max-width: 37.5em) {
  .loginForm__header--text {
    visibility: hidden;
  }
}
.loginForm__header--logobox {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (max-width: 37.5em) {
  .loginForm__header--logobox {
    visibility: hidden;
  }
}
.loginForm__header--logo {
  height: 3.5rem;
  border-radius: 50%;
}
.loginForm__body {
  position: relative;
  height: 60%;
  padding-top: 2rem;
}
.loginForm__body--label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
.loginForm__body--input {
  margin: 0 auto;
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 80%;
  display: block;
  transition: all 0.3s;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 37.5em) {
  .loginForm__body--input {
    background-color: white;
  }
}
.loginForm__body--input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #ff9900;
}
.loginForm__body--input:focus:invalid {
  border-bottom: 3px solid #ff0000;
}
.loginForm__body--input::-webkit-input-placeholder {
  color: #000;
}
.loginForm__body--label {
  margin: 0 auto;
  width: 80%;
}
.loginForm__body--input:placeholder-shown + .loginForm__body--label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.loginForm__footer {
  padding-top: 1rem;
  border-top: 1px solid #ff9900;
  position: relative;
}
@media (max-width: 37.5em) {
  .loginForm__footer {
    border-top: none;
  }
}
.loginForm__footer--btnSubmit {
  cursor: pointer;
  height: 100%;
  margin: 1rem auto;
  top: 50%;
  left: 50%;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 37.5em) {
  .loginForm__footer--btnSubmit {
    color: #fff;
  }
}
.loginForm__footer--btnSubmit, .loginForm__footer--btnSubmit:visited {
  text-transform: uppercase;
  padding: 1rem 3rem;
  border-radius: 5rem;
  display: block;
  font-size: 1.6rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 37.5em) {
  .loginForm__footer--btnSubmit, .loginForm__footer--btnSubmit:visited {
    background-color: #555;
  }
}
.loginForm__footer--btnSubmit:hover {
  transition: ALL 0.2s;
  transform: translate(0, -0.25rem);
  box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.3);
}
.loginForm__footer--btnSubmit:active {
  transition: ALL 0.2s;
  transform: translate(0, 0.25%);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.loginForm__footer--btnSubmit a {
  text-decoration: none;
  color: currentColor;
}

.anchor {
  display: block;
  position: relative;
  top: -4.5vh;
  visibility: hidden;
}
@media only screen and (max-width: 75em) {
  .anchor {
    top: -10vh;
  }
}
@media only screen and (max-width: 62.5em) {
  .anchor {
    top: -10vh;
  }
}
@media only screen and (max-width: 25em) {
  .anchor {
    top: -25vh;
  }
}

.suptitle {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  margin-left: 10vw;
  text-align: center;
}

.supMenu__header {
  background-color: #737373;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 0rem;
  text-align: center;
}
@media only screen and (max-width: 25em) {
  .supMenu__header {
    padding: 0.5rem 0rem;
    font-size: 1.2rem;
  }
}
.supMenu__btn {
  min-width: 100%;
  font-size: 1.6rem;
  padding: 0.75rem;
  text-align: center;
  background-color: #737373;
  color: #fff;
  border: none;
}
.supMenu__btn:hover {
  background-color: #ff9900;
  color: #fff;
}
@media only screen and (max-width: 75em) {
  .supMenu__btn {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .supMenu__btn {
    text-align: left;
  }
}
@media only screen and (max-width: 25em) {
  .supMenu__btn {
    min-width: 5rem;
    background-color: orange;
    border-radius: 0.5rem;
    margin: 0.75rem;
  }
}

.spSection__header {
  margin-top: 0.25rem;
  border-bottom: 1px solid #000;
  background-color: #eee;
  padding: 1rem 0;
  display: flex;
  justify-content: space-around;
  align-content: center;
}

.account {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.spContact {
  font-size: 1.6rem;
  /*    &__list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
      grid-gap: 2rem;
  } */
}
.spContact__list {
  display: flex;
  flex-wrap: wrap;
}

.spTags {
  font-size: 1.6rem;
  /*    &__list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
      grid-gap: 2rem;
      margin-bottom: 2rem;
  } */
}
.spTags__list {
  display: flex;
  flex-wrap: wrap;
}

.contact__card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ffd699;
  border-radius: 2rem;
  padding: 1.5rem;
  margin: 1.5rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 25em) {
  .contact__card {
    min-width: 100%;
    max-width: 100%;
    margin: 0.15rem;
  }
}
.contact__card-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.contact__card:hover {
  border: 1px solid #ffa31a;
  cursor: pointer;
}

.account__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1.5rem;
  font-size: 1.6rem;
  border: 1px solid #ffd699;
  border-radius: 2rem;
  margin-top: 0.5rem;
}
.account__card-title {
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 25em) {
  .account__card {
    min-width: 100%;
    max-width: 100%;
    margin: 0.15rem;
  }
}

.fw {
  grid-column: 1/-1;
}

.lc {
  grid-column-start: 1;
}

.rc {
  margin-left: 1.5rem;
  grid-column-start: 2;
}

.spTags__card {
  width: 15rem;
  min-height: 15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  min-height: 10rem;
  padding: 1rem;
  border-radius: 0.75rem;
  margin: 0.5rem;
}
@media only screen and (max-width: 25em) {
  .spTags__card {
    min-width: 100%;
    max-width: 100%;
    margin: 0.15rem;
  }
}
.spTags__card:hover {
  transform: translateY(-2px) scale(103%);
  cursor: pointer;
}
.spTags__card:active {
  transform: translateY(0.5px);
}

.spNote__card {
  font-size: 1.6rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.spNote__card-header {
  display: flex;
  flex-wrap: wrap;
}
.spNote__card-header-title {
  font-size: 1.8rem;
  font-weight: 600;
  min-width: 10rem;
  margin-bottom: 0.5rem;
}
.spNote__card-header-item {
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}
.spDoc__card {
  font-size: 1.6rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  box-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.75);
}
.spDoc__card-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, max-content));
}
.spDoc__card-header-title {
  font-size: 1.8rem;
  font-weight: 600;
  grid-column: 1/-2;
  margin-bottom: 0.5rem;
}
.spDoc__card-header-btn {
  grid-column: 5/-1;
}
.spDoc__card-header-item {
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.titleBar {
  position: fixed;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: 4.5vh;
  width: 100vw;
  height: 4.5vh;
  background-color: #737373;
  color: #fff;
  box-shadow: 1px 1px 1px 1px rgba(255, 153, 0, 0.68);
  -webkit-box-shadow: 1px 3px 1px 1px rgba(255, 153, 0, 0.68);
  -moz-box-shadow: 1px 1px 1px 1px rgba(255, 153, 0, 0.68);
}
@media only screen and (max-width: 37.5em) {
  .titleBar {
    position: fixed;
    height: 4.5rem;
    width: 100vw;
  }
}
@media only screen and (max-width: 25em) {
  .titleBar {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
  }
}

.supMenuBar {
  position: fixed;
  background-color: #737373;
  top: 9vh;
  width: 10vw;
  height: 100vh;
  box-shadow: 1px 1px 1px 1px rgba(255, 153, 0, 0.68);
  -webkit-box-shadow: 1px 1px 1px 1px rgba(255, 153, 0, 0.68);
  -moz-box-shadow: 1px 1px 1px 1px rgba(255, 153, 0, 0.68);
}
@media only screen and (max-width: 37.5em) {
  .supMenuBar {
    position: fixed;
    top: 4.5vh;
    width: 20vw;
  }
}
@media only screen and (max-width: 25em) {
  .supMenuBar {
    position: fixed;
    top: 4.5rem;
    width: 100%;
    height: 15rem;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.supMain {
  margin-top: 9vh;
  margin-left: 15rem;
  grid-column-start: 2;
  display: grid;
  padding: 0 10rem;
}
@media only screen and (max-width: 75em) {
  .supMain {
    margin-top: 7.5rem;
    margin-left: 12rem;
    padding: 1rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .supMain {
    margin-top: 6.5rem;
    padding: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .supMain {
    margin-top: 5.5rem;
    padding: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .supMain {
    margin-top: 19.5rem;
    margin-left: 0rem;
    padding: 1rem;
    width: 100%;
  }
}
.supMain__Footer {
  color: #000;
  font-weight: 900;
  font-size: 1.9rem;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  height: 15rem;
  margin-top: 2rem;
  background-color: #fffafa;
  padding-left: 1rem;
  display: flex;
  align-items: center;
}

.SubViewWrapper {
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
  box-shadow: inset 0px 0px 20px 10px #d9d9d9;
  width: 40%;
}
@media only screen and (max-width: 75em) {
  .SubViewWrapper {
    width: 60%;
  }
}
@media only screen and (max-width: 62.5em) {
  .SubViewWrapper {
    width: 70%;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 50em) {
  .SubViewWrapper {
    width: 95%;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .SubViewWrapper {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}

.SubSection_card {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  padding: 0 5.5rem;
  margin: 1.5rem 1.5rem 0rem 1.5rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 25em) {
  .SubSection_card {
    min-width: 100%;
    max-width: 100%;
    margin: 0.15rem;
  }
}
.SubSection_card-supplier {
  font-size: 1.8rem;
  font-weight: 600;
}
.SubSection_card-gap {
  margin: 1.5rem 0;
}
.SubSection_card-r {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0rem auto;
}
@media only screen and (max-width: 37.5em) {
  .SubSection_card-r {
    flex-wrap: wrap;
    max-width: 60%;
  }
}
.SubSection_card-r-c {
  display: flex;
  justify-content: center;
}
.SubSection_card-r-p {
  margin-right: 15rem;
  display: flex;
  flex-wrap: nowrap;
}
.SubSection_card-r span {
  margin: 1rem;
}
.SubSection_card-r2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0rem 0;
}
@media only screen and (max-width: 37.5em) {
  .SubSection_card-r2 {
    flex-wrap: wrap;
    max-width: 60%;
  }
}
.SubSection_card-r2-c {
  display: flex;
  justify-content: center;
}
.SubSection_card-r2-p {
  margin-right: 15rem;
  display: flex;
  flex-wrap: nowrap;
}
.SubSection_card-r2 span {
  margin: 1rem;
}
.SubSection_card-hdrline {
  display: flex;
  padding-left: 1.5rem;
}
.SubSection_card-hdrline-h {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 2.5rem 1.5rem 1rem 5.5rem;
}
.SubSection_card-hdrline-h-c {
  text-align: center;
}
.SubSection_card-hdrline-h-f {
  font-size: 1.6rem;
  margin: 0.5rem 1.5rem 1rem 7.5rem;
}
.SubSection_card-hdrline button {
  margin-left: 1rem;
}

.editSupplier {
  width: 100%;
}
.editSupplier input {
  padding: 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 0.75rem;
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.editSupplier input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  max-width: 10rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.editSupplier input[type=submit]:hover {
  transform: translateY(-2px) scale(103%);
}
.editSupplier input[type=submit]:active {
  transform: translateY(0.5px);
}
@media only screen and (max-width: 37.5em) {
  .editSupplier input[type=submit] {
    font-size: 1.2rem;
    padding: 0.5rem;
    margin: 0.5rem;
  }
}
.editSupplier select {
  font-size: 1.6rem;
  padding: 0.5rem;
  border-radius: 1rem;
  margin: 1rem 0.25rem;
  border: none;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.editSupplier textarea {
  display: block;
  height: 20rem;
  font-size: 1.4rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.editSupplier p {
  font-size: 1.2rem;
  margin: 0 2rem;
}

.urlView {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.wdth-30 {
  width: 30%;
}

.wdth-70 {
  width: 70%;
}

.delSupContact {
  width: 100%;
}
.delSupContact input {
  padding: 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  border: none;
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.delSupContact input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  max-width: 10rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.delSupContact input[type=submit]:hover {
  transform: translateY(-2px) scale(103%);
}
.delSupContact input[type=submit]:active {
  transform: translateY(0.5px);
}

.maxWidth_20 {
  max-width: 15rem;
}

.tgsubView_body {
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.tgSubViewWrapper {
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-color: white;
  box-shadow: inset 0px 0px 20px 10px #d9d9d9;
  width: 40%;
}
@media only screen and (max-width: 75em) {
  .tgSubViewWrapper {
    width: 60%;
  }
}
@media only screen and (max-width: 62.5em) {
  .tgSubViewWrapper {
    width: 70%;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 50em) {
  .tgSubViewWrapper {
    width: 95%;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .tgSubViewWrapper {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}

.tgHeader {
  display: flex;
  flex-direction: column;
  top: 1rem;
  width: 100%;
}
.tgHeader-hdrline {
  display: flex;
  width: 100%;
}
.tgHeader-hdrline-h {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
}
.tgHeader-hdrline-h-c {
  text-align: center;
}
.tgHeader-hdrline-h-f {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0.5rem 1rem 0.5rem;
  text-align: center;
}
.tgHeader-btnbar {
  width: 40%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.tgSubSection_card {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
}
@media only screen and (max-width: 25em) {
  .tgSubSection_card {
    min-width: 100%;
    max-width: 100%;
    margin: 0.15rem;
  }
}
.tgSubSection_card-supplier {
  font-weight: 600;
}
.tgSubSection_card-gap {
  margin: 1.5rem 0;
}
.tgSubSection_card-r2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .tgSubSection_card-r2 {
    flex-wrap: wrap;
    max-width: 60%;
  }
}
.tgSubSection_card-r2-c {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.tgSubSection_card-r2-p {
  margin-right: 15rem;
  display: flex;
  flex-wrap: nowrap;
}

.supTag__card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  font-size: 1.6rem;
  margin: 0.5rem 10rem;
  min-height: 7.5rem;
  min-width: 15rem;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 1px 1px 1px #737373;
  position: relative;
}
.supTag__card-chk {
  padding: 1rem;
  font-size: 1.8rem;
  min-width: 10%;
}
.supTag__card-r {
  text-align: left;
  width: 90%;
}
@media only screen and (max-width: 25em) {
  .supTag__card {
    display: flex;
    min-width: 99%;
    max-width: 99%;
    margin: 0.15rem;
    font-size: 1.2rem;
  }
}
.supTag__card:hover {
  cursor: pointer;
  transform: translateY(-2px) scale(103%);
}
.supTag__card:active {
  transform: translateY(0.5px);
}

.tgEditTags {
  width: 100%;
}
.tgEditTags input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
  /*        &:hover {
              transform: translateY(-2px) scale(103%);
          }

          &:active {
              transform: translateY(0.5px);
          }
  */
}
@media only screen and (max-width: 37.5em) {
  .tgEditTags input[type=submit] {
    font-size: 1.2rem;
    padding: 0.5rem;
    margin: 0.5rem;
  }
}

.tagHdrSection_card {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  padding: 0 5.5rem;
  margin: 1.5rem 1.5rem 0rem 1.5rem;
  font-size: 1.6rem;
}
.tagHdrSection_card-upper {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 2.5rem 1.5rem 1rem 5.5rem;
}
.tagHdrSection_card-lower {
  font-size: 1.8rem;
  margin: 0.5rem 1.5rem 1rem 5.5rem;
}

.menu {
  position: fixed;
  min-height: 4.5vh;
  background-color: #737373;
  width: 100vw;
  padding: 1rem 0;
  border-bottom: 1px solid #f4ab62;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn_alpha {
  border: 1px solid black;
  border-radius: 0.5rem;
  min-width: 3rem;
  margin: 0.5rem 0.5rem;
  padding: 0.5rem 0.5rem;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0.25rem 0.25rem 0.5rem 0.5px #4d4d4d;
  background-color: #ff9933;
}
.btn_alpha:hover {
  transform: translate(0, -0.2rem);
  box-shadow: 0.35rem 0.3rem 0.5rem 0.5px #4d4d4d;
}
.btn_alpha:active {
  transform: translate(0, 0.2rem);
  box-shadow: 0.15rem 0.15rem 0.5rem 0.5px #4d4d4d;
}
@media only screen and (max-width: 25em) {
  .btn_alpha {
    font-size: 1.4rem;
  }
}

.selection {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .selection {
    padding: 6.5rem 7.5rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .selection {
    padding: 8.5rem 1rem;
  }
}
@media only screen and (max-width: 50em) {
  .selection {
    padding: 8.5rem 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .selection {
    padding: 15.5rem 2.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .selection {
    padding: 14rem 0rem;
  }
}

.menu-card {
  border-radius: 1rem;
  margin: 1rem 1rem 1rem 1rem;
  padding: 1.5rem 0 1.5rem 0;
  width: 30rem;
  background-color: #f2fff2;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 37.5em) {
  .menu-card {
    margin: 0rem 1rem 0rem 1rem;
    padding: 0;
  }
  .menu-card:first-child {
    margin-top: 2rem;
  }
}

.btn {
  display: inline-block;
  border: 1px solid black;
  border-radius: 0.5rem;
  min-width: 5rem;
  margin: 0.5rem 0.5rem;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0.25rem 0.25rem 0.5rem 0.5px #4d4d4d;
}
.btn:hover {
  transform: translate(0, -0.2rem);
  box-shadow: 0.35rem 0.3rem 0.5rem 0.5px #4d4d4d;
}
.btn:active {
  transform: translate(0, 0.2rem);
  box-shadow: 0.15rem 0.15rem 0.5rem 0.5px #4d4d4d;
}
@media only screen and (max-width: 25em) {
  .btn {
    margin: 0.5rem 0rem;
  }
}

.contactsMenu {
  position: fixed;
  top: 4.2vh;
  min-height: 6vh;
  background-color: #737373;
  width: 100vw;
  padding: 1rem 0;
  border-bottom: 1px solid #f4ab62;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.2rem;
}
@media only screen and (max-width: 75em) {
  .contactsMenu {
    padding: 1.5rem 24rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .contactsMenu {
    padding: 1.5rem 4rem;
  }
}
@media only screen and (max-width: 50em) {
  .contactsMenu {
    padding: 1.5rem 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contactsMenu {
    top: 4.6vh;
    min-height: 8vh;
    padding: 1.5rem 3rem;
  }
}
.contactsMenu_btn-alpha {
  font-size: 1.8rem;
  margin: 0.4rem 0.2rem;
  background: #ff9900;
  color: #000;
  border-radius: 0.5rem;
  box-shadow: 0.25rem 0.25rem var(--orange);
  width: 3.25rem;
  height: 3.25rem;
}
.contactsMenu_btn-catgry {
  font-size: 1.8rem;
  margin: 0.4rem 0.2rem;
  background: #ff9900;
  color: #000;
  border-radius: 0.5rem;
  box-shadow: 0.25rem 0.25rem var(--orange);
  width: 5.25rem;
  height: 3.25rem;
}

.daldex-Contacts {
  background-color: #f2f2f2;
  min-height: 100vh;
}

.contactSection {
  position: fixed;
  margin-top: 9.8rem;
  width: 100%;
  height: 90vh;
  padding: 0 4rem;
  animation: moveInVerticalRotate 0.75s ease-out;
  overflow-y: scroll;
}
@media only screen and (max-width: 75em) {
  .contactSection {
    margin-top: 13.5rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .contactSection {
    margin-top: 13.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contactSection {
    margin-top: 20.5rem;
    width: 98%;
    padding: 0 0rem;
  }
}
@media only screen and (max-width: 25em) {
  .contactSection {
    overflow-y: scroll;
  }
}

.contact-card {
  font-size: 1.6rem;
  padding: 1.6rem;
  margin: 0.75rem;
  background: #eee;
  min-height: 15rem;
  min-width: 20rem;
  border-radius: 1.5rem;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0rem 0.25rem 1rem #f4ab62;
}
@media only screen and (max-width: 37.5em) {
  .contact-card {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .contact-card {
    width: 98%;
  }
}
.contact-card:hover {
  background: #d9d9d9;
  cursor: pointer;
  transform: translateY(-0.25rem);
  box-shadow: 0rem 0.5rem 2rem #f4ab62;
}
.contact-card:active {
  transform: translateY(0.25rem);
  box-shadow: 0rem 0.5rem 0.5rem #f4ab62;
}
.contact-card p {
  padding: 0;
  margin: 0;
}

.ContactWrapper {
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
  box-shadow: inset 0px 0px 20px 10px #d9d9d9;
  width: 40%;
}
@media only screen and (max-width: 75em) {
  .ContactWrapper {
    width: 60%;
  }
}
@media only screen and (max-width: 62.5em) {
  .ContactWrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 50em) {
  .ContactWrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 37.5em) {
  .ContactWrapper {
    width: 100%;
    padding-top: 2rem;
  }
}

/*.button_01 {
    font-size: 1rem;
    border: none;
    background-color: $color-primary;
    box-shadow: 0 1rem 2rem rgba($color-box-shadow, 0.2);
    border-radius: 5rem;
    padding: 0.25rem;
    min-width: 3.5rem;
    text-transform: uppercase;
    cursor: pointer;

    &:hover {
        transform: translateY(-2px) scale(103%);
    }

    &:active {
        transform: translateY(0.5px);
    }
}
*/
.button_01a {
  font-size: 1rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  border-radius: 5rem;
  padding: 0.25rem;
  margin: 1.5rem 0;
  min-width: 3.5rem;
  text-transform: uppercase;
  cursor: pointer;
}
.button_01a:hover {
  transform: translateY(-2px) scale(103%);
}
.button_01a:active {
  transform: translateY(0.5px);
}

.button_02c {
  font-size: 1.3rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  border-radius: 5rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  min-width: 3.5rem;
  text-transform: uppercase;
  cursor: pointer;
}
.button_02c:hover {
  transform: translateY(-2px) scale(103%);
}
.button_02c:active {
  transform: translateY(0.5px);
}
@media only screen and (max-width: 25em) {
  .button_02c {
    font-size: 1rem;
  }
}

.contactpg_card {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  padding: 0 5.5rem;
  margin: 1.5rem 1.5rem 0rem 1.5rem;
  margin-top: 0;
  font-size: 1.6rem;
}
@media only screen and (max-width: 25em) {
  .contactpg_card {
    min-width: 100%;
    max-width: 100%;
    margin: 0.15rem;
  }
}
.contactpg_card-contact {
  font-size: 1.8rem;
  font-weight: 600;
}
.contactpg_card-r {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contactpg_card-r-c {
  display: flex;
  justify-content: center;
}
.contactpg_card-r-p {
  margin-right: 15rem;
  display: flex;
  flex-wrap: nowrap;
}
.contactpg_card-r span {
  margin: 1rem;
}
.contactpg_card-hdrline {
  display: flex;
  padding-left: 1.5rem;
  padding: 5rem;
  padding-bottom: 1rem;
}
.contactpg_card-hdrline-h {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 1.5rem 1.5rem 1rem 1.5rem;
}
.contactpg_card-hdrline button {
  margin-left: 1rem;
}

.smallfont {
  font-size: 1.2rem;
}

.pre-wrapped {
  white-space: pre-wrap;
}

.undrline {
  text-decoration: underline;
}

.memosubject {
  margin-top: 1rem;
}

.editComment {
  width: 100%;
}
.editComment input {
  padding: 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.editComment input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  max-width: 10rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.editComment input[type=submit]:hover {
  transform: translateY(-2px) scale(103%);
}
.editComment input[type=submit]:active {
  transform: translateY(0.5px);
}
.editComment textarea {
  display: block;
  height: 20rem;
  font-size: 1.4rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.editContact {
  width: 100%;
}
.editContact input {
  padding: 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.editContact select {
  margin: 1rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 1.4rem;
  border-radius: 0.75rem;
  border: 2px solid #000;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.editContact input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  max-width: 10rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.editContact input[type=submit]:hover {
  transform: translateY(-2px) scale(103%);
}
.editContact input[type=submit]:active {
  transform: translateY(0.5px);
}

.delContact {
  width: 100%;
}
.delContact input {
  padding: 0.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  border: none;
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.delContact .wdth-30 {
  width: 30%;
}
.delContact .wdth-70 {
  width: 70%;
}
.delContact input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  max-width: 10rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.delContact input[type=submit]:hover {
  transform: translateY(-2px) scale(103%);
}
.delContact input[type=submit]:active {
  transform: translateY(0.5px);
}

.tagPage-header {
  position: fixed;
  top: 4.5vh;
  left: 0;
  height: 4.5vh;
  width: 100%;
  background-color: #737373;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  border-bottom: 1px solid #ff9900;
}

.tagPage-header-lowerHalf {
  position: fixed;
  top: 9vh;
  left: 0;
  height: 4.5vh;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 1rem;
  text-transform: uppercase;
  background-color: #737373;
  color: #fff;
}
.tagPage-header-lowerHalf span {
  padding: 0 0.4rem;
  font-size: 3.2rem;
}
@media only screen and (max-width: 50em) {
  .tagPage-header-lowerHalf {
    top: 4.5vh;
    left: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .tagPage-header-lowerHalf {
    top: 4.5vh;
    left: 0;
  }
}

.largest-section {
  display: none;
}
@media only screen and (min-width: 50em) {
  .largest-section {
    display: block;
  }
}
@media only screen and (max-width: 50em) {
  .largest-section {
    display: none;
  }
}

.medium-section {
  display: none;
}
@media only screen and (max-width: 50em) {
  .medium-section {
    display: block;
  }
}
@media only screen and (max-width: 25em) {
  .medium-section {
    display: none;
  }
}

.xsmall-section {
  display: none;
}
@media only screen and (max-width: 25em) {
  .xsmall-section {
    display: block;
    height: 99vh;
  }
}

.tags-section {
  margin-left: 0;
  margin-top: 11vh;
  padding-bottom: 10rem;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  height: 89vh;
}

.tag-card {
  border-radius: 5rem;
  margin: 5rem;
  padding: 0 0 5rem 0;
  height: 80vh;
  width: 30%;
  background-color: #f2f2f2;
  box-shadow: 1px 1px 2px 0px #000;
}
@media only screen and (max-width: 75em) {
  .tag-card {
    margin: 2.5rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .tag-card {
    margin: 1.5rem;
  }
}
@media only screen and (max-width: 50em) {
  .tag-card {
    width: 45%;
  }
}
@media only screen and (max-width: 37.5em) {
  .tag-card {
    width: 48%;
    margin: 0.5;
  }
}
@media only screen and (max-width: 25em) {
  .tag-card {
    width: 98%;
    margin: 0.1;
    height: 85vh;
    background-color: transparent;
    box-shadow: none;
  }
}
.tag-card-header {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 0 0;
  height: 5vh;
  border-bottom: 1px solid orange;
  border-radius: 5rem 5rem 0 0;
}
@media only screen and (max-width: 75em) {
  .tag-card-header {
    height: 7.5vh;
  }
}
@media only screen and (max-width: 25em) {
  .tag-card-header {
    height: 5.5vh;
    padding: 0.75rem 0 0 0;
  }
}
.tag-card-header p {
  font-weight: bold;
  font-size: 2rem;
}
.tag-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70vh;
  overflow-y: auto;
  padding-top: 1.5rem;
}
@media only screen and (max-width: 75em) {
  .tag-card-body {
    height: 65vh;
  }
}
@media only screen and (max-width: 25em) {
  .tag-card-body {
    height: 85vh;
  }
}
.tag-card-footer {
  height: 5vh;
  border-top: 1px solid #ffaa00;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 0 0 5rem 5rem;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .tag-card-footer {
    height: 7.5vh;
  }
}
@media only screen and (max-width: 25em) {
  .tag-card-footer {
    height: 5.5vh;
    border-radius: 0;
  }
}

.tagBttn {
  width: 80%;
  border: 1px solid black;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 1.6rem;
}
.tagBttn:hover {
  cursor: pointer;
}

.editBttn {
  padding: 0.75rem 1rem;
  border: none;
  background-color: #ffb84d;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  min-width: 8rem;
  text-transform: uppercase;
  transform: scale(0.75);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 25em) {
  .editBttn {
    margin: 0 2.5rem;
  }
}
.editBttn:hover {
  cursor: pointer;
  background-color: #cc7a00;
  color: #fff;
}

.tagSupMenu {
  background-color: #737373;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid #f4ab62;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tagSupplier_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 99%;
}

.btn_tagSub {
  border: 1px solid black;
  border-radius: 0.5rem;
  width: 80%;
  margin: 0.5rem 0.5rem;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0.25rem 0.25rem 0.5rem 0.5px #4d4d4d;
}
.btn_tagSub:hover {
  transform: translate(0, -0.2rem);
  box-shadow: 0.35rem 0.3rem 0.5rem 0.5px #4d4d4d;
}
.btn_tagSub:active {
  transform: translate(0, 0.2rem);
  box-shadow: 0.15rem 0.15rem 0.5rem 0.5px #4d4d4d;
}

@media only screen and (max-width: 25em) {
  .btn {
    margin: 0.5rem 0rem;
  }
}
.mainWrapper {
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  height: 100vh;
}

.Tier1Wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-color: white;
  box-shadow: inset 0px 0px 20px 10px #d9d9d9;
  width: 40%;
}
@media only screen and (max-width: 75em) {
  .Tier1Wrapper {
    width: 60%;
  }
}
@media only screen and (max-width: 62.5em) {
  .Tier1Wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 50em) {
  .Tier1Wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 37.5em) {
  .Tier1Wrapper {
    width: 100%;
  }
}
.Tier1Wrapper_header {
  height: 9vh;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3rem;
}
.Tier1Wrapper_tagheader {
  height: 6vh;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3rem;
}
.Tier1Wrapper_tagsubheader {
  height: 3vh;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
  padding: 3rem;
}
.Tier1Wrapper_body {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Tier1Wrapper_body input {
  border-radius: 0.75rem;
  border: 1px solid #f4ab62;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  padding: 1rem 1rem;
  box-shadow: 0.1rem 0.1rem 0.1rem 0rem #000;
  margin: 2rem 2rem;
  width: 90%;
}
@media only screen and (max-width: 25em) {
  .Tier1Wrapper_body input {
    width: 100%;
  }
}
.Tier1Wrapper_body textarea {
  border-radius: 0.85rem;
  border: 1px solid #f4ab62;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  padding: 1.25rem 1.25rem;
  box-shadow: 0.1rem 0.1rem 0.1rem 0rem #000;
  resize: none;
  margin: 1rem 2rem;
  width: 90%;
  height: 50%;
}
@media only screen and (max-width: 25em) {
  .Tier1Wrapper_body textarea {
    width: 100%;
  }
}
.Tier1Wrapper_body-lower {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
}
.Tier1Wrapper_body-lower label {
  height: 3rem;
  padding: 0.5rem;
  margin: 1rem 1rem;
  font-size: 1.6rem;
  text-align: right;
  width: 25%;
}
@media only screen and (max-width: 25em) {
  .Tier1Wrapper_body-lower label {
    width: 35%;
  }
}
.Tier1Wrapper_body-lower input[type=color] {
  height: 3rem;
  padding: 0.5rem;
  width: 20%;
  margin: 1rem 1rem;
}
@media only screen and (max-width: 62.5em) {
  .Tier1Wrapper_body-lower input[type=color] {
    height: 4rem;
    padding: 0.5rem;
    width: 25%;
  }
}
@media only screen and (max-width: 62.5em) {
  .Tier1Wrapper_body-lower input[type=color] {
    width: 35%;
  }
}
.Tier1Wrapper_body-lower p {
  height: 3rem;
  padding: 0.5rem;
  width: 20%;
  margin: 1rem 1rem;
  font-size: 1.6rem;
  text-align: left;
}
@media only screen and (max-width: 62.5em) {
  .Tier1Wrapper_body-lower p {
    width: 35%;
  }
}
.Tier1Wrapper_footer {
  height: 10%;
}
.Tier1Wrapper_footer input[type=submit] {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
.Tier1Wrapper_btn-submit {
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 1rem;
  margin: 1rem;
  border: none;
  background-color: #ff9900;
  box-shadow: 0.15rem 0.15rem 0.52rem 0px #000;
}
