

html,body {
  font-family: 'Raleway', sans-serif;
}

body {
  background-image: url("/img/bg.png");
  background-color: #f786f7;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: right top;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding-bottom: 90px;
  background-size: cover;
}
.main-hero {
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 0px #3A3A3A;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.main-hero h1 {
  font-weight: bold;
  font-family: 'Fredoka One', cursive;
}
.main-hero p {
  font-weight: bold;
}

input.csstab { display: none; cursor: pointer; }                /* hide radio buttons */
input.csstab + label.csstab { display: inline-block; cursor: pointer; } /* show labels in line */
input.csstab ~ .tab { display: none }          /* hide contents *//* show contents only for selected tab */
#tab1:checked ~ .tab.content1,
#tab2:checked ~ .tab.content2 { display: block; }
label.csstab { font-weight: bold; }

input + label {             /* box with rounded corner */
  /*border: 1px solid #999;*/
  background: #9399ab;
  color: white;
  padding: 4px 12px;
  position: relative;
  border-radius: 8px 8px 0 0;
  top: 1px;
}
input:checked + label {     /* white background for selected tab */
  background: #FFF;
  color: inherit;
  border-bottom: 1px solid transparent;
}
input ~ .tab {          /* grey line between tab and contents */
  /*border: 1px solid #999;*/
  padding: 12px;
  background: #fff;
  border-radius: 0 16px 16px 16px;
}

.input-box {
	width: 70%;
	margin: 0 auto;
}
.is-rose {
  background: #f786f7;
  border-color: transparent;
  color: white;
  font-weight: bold;
}
div.notification.is-red {
  border-color: transparent;
  color: white;
  font-weight: bold;
  background: #c91221;
}

.address-input {
  margin-top: 25px;
  background-color: #eee;
  margin: 0 auto;
  width: 80%;
  padding: 10px 15px;
  text-align: center;
  word-break: break-all;
  overflow-wrap: break-word;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: monospace;
}

.input-container {
  text-align: center;
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  transform-origin: 10px 10px;
}
.lds-heart div {
  top: 12px;
  left: 12px;
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f786f7;
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background: #f786f7;
}
.lds-heart div:before {
  left: -12px;
  border-radius: 50% 0 0 50%;
}
.lds-heart div:after {
  top: -12px;
  border-radius: 50% 50% 0 0;
}
@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 30px;
}
.lds-ellipsis div {
  position: absolute;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f786f7;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

