@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@1,700&display=swap");

@import url("https://rsms.me/inter/inter.css");
:root {
  --color-light: white;
  --color-dark: #212121;
  --color-signal: #fab700;
  --color-background: var(--color-light);
  --color-text: var(--color-dark);
  --color-accent: var(--color-signal);
  --size-bezel: 0.5rem;
  --size-radius: 4px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  font-size: calc(0.6rem + 0.4vw);
  color: var(--color-text);
  background: var(--color-background);
  font-weight: 300;
  /*padding: 0 calc(var(--size-bezel) * 3);*/
}
body {
  margin: 0 !important;
}
.mainContainer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  justify-content: space-around;
  align-items: center;
  margin: 8px;
}
.buttonContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-around;
  align-items: flex-start;
  position: relative !important;
  width: 100%;
  max-width: 500px;
}
.coverButtons {
  width: 100%;
  height: 100%;
  background-color: white;

  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  z-index: 999999;
  position: absolute;
  visibility: visible;
}
.tipOptions {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}
.tips {
  height: 100px;
  width: 30%;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0px 5px 8px #888888;
  font-size: 38px;
  font-weight: bold;
  color: green;
  font-family: "Azeret Mono", monospace;
  cursor: pointer;
}
.selected-tip {
  background-color: green;
  color: white;
}
.customTipContainer {
  margin-bottom: 20px;
  /*position: relative;*/
  width: 100%;
  max-width: 500px;
}
.input {
  position: relative;
  display: block;
}
.input__label {
  position: absolute;
  -webkit-transform-origin: 0 0;
  -webkit-transform: translate(0, 0);
  left: 0;
  top: 0;
  /*padding: calc(var(--size-bezel) * 0.75) calc(var(--size-bezel) * 0.5);*/
  margin: calc(var(--size-bezel) * 0.75 + 3px) calc(var(--size-bezel) * 0.5);
  background: white;
  white-space: nowrap;
  transform: translate(0, 0);
  transform-origin: 0 0;
  background: var(--color-background);
  transition: transform 120ms ease-in;
  font-weight: bold;
  line-height: 1.2;
}
.input__field {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border: 1px solid rgb(196, 196, 196);
  padding: -webkit-calc(var(--size-bezel) * 1.5) var(--size-bezel);
  padding: calc(var(--size-bezel) * 1.5) var(--size-bezel);
  color: currentColor;
  background: transparent;
  border-radius: var(--size-radius);
  font-size: 20px;
  height: 50px;
  font-family: "Azeret Mono", monospace;
  margin-bottom: 15px;
}

.input__field:focus + .input__label,
.input__field:not(:placeholder-shown) + .input__label {
  -webkit-transform: translate(0.25rem, -65%) scale(0.8);
  transform: translate(0.25rem, -80%) scale(0.8);
  color: var(--color-accent);
}

.userImageContainer {
  width: 100%;
  height: 200px;
  max-width: 400px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
  position: relative;
  /*background: url("https://jrdispatch.com/stripe/img/bckimg.jpg");*/
  background-size: cover;

  font-size: 142px;
  color: green;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.usrImg {
  /*z-index: 99;*/
}
.imageCover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;

  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-between;
  align-items: center;
}
.tyText {
  color: #797979;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.tipText {
  color: #636365;
  width: 100%;
  display: flex;
  padding: 5px;
  font-size: 17px;
  font-style: italic;
  text-align: center;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  max-width: 700px;
  margin-bottom: 20px;
}
.tipText::before {
  flex: 1 0 30px;
  margin: 0 10px 0 0;
  content: "";
  border-top: 1px solid #b1b1b1;
}

.tipText::after {
  flex: 1 0 30px;
  border-top: 1px solid #b1b1b1;
  content: "";
  margin: 0 0px 0 10px;
}

.tipHeader {
  height: 100px;
  width: 100%;
  border-bottom: 3px solid #b1b1b157;
  margin-bottom: 20px;
  background: url("/style/image/logo");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.label-container {
  visibility: hidden;
  display: block;
  position: absolute;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 20px;
}
.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
.label-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.label-container input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.label-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.label-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.offsetAmount {
  font-weight: bold;
}
.loading {
  visibility: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9999999;
  background-color: rgb(255 255 255);
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(loading.gif);
  max-width: 550px;
  border-radius: 15px;
}
.tipform {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  justify-content: space-around;
  align-items: center;
  margin: 8px;
}
