html, body {
  font-family: "Roboto";
  margin: 0;
  padding: 0;
}

#app {
  margin: 0 auto;
  max-width: 400px;
  padding-bottom: 58px;
  position: relative;
}
#app .main {
  height: calc(100vh - 145px);
  overflow-y: auto;
  padding: 15px;
}
#app.logged-out {
  padding-bottom: 0;
}
#app.logged-out .main {
  height: calc(100vh - 45px);
}

.hidden {
  display: none;
}

.error-list {
  border-radius: 4px;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-weight: 300;
  padding: 8px 8px 8px 24px;
}

.success-message {
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #008000;
  color: #008000;
  font-weight: 300;
  padding: 8px 8px 8px 8px;
}

.center-content {
  display: flex;
  align-items: center;
}
.center-content .content-wrapper {
  width: 100%;
}

.logo-header .logo {
  margin: 0 auto;
  width: 300px;
}
.logo-header .logo img {
  max-width: 100%;
}
.logo-header h2 {
  color: #000000;
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.bottom-text, .terms-conditions {
  align-self: start;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}
.bottom-text p, .terms-conditions p {
  font-size: 16px;
}
.bottom-text a, .terms-conditions a {
  text-decoration: none;
}

.terms-conditions a {
  color: #000000;
  text-decoration: underline;
}

.input-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.input-wrapper [id*=-error] {
  order: 10;
}
.input-wrapper label {
  color: #663766;
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
}
.input-wrapper label.error {
  font-size: 13px;
  color: #ff0000;
}
.input-wrapper input, .input-wrapper select {
  background: white;
  border-radius: 20px;
  border: 1px solid #a19d9d;
  color: #1d1d1d;
  font-size: 16px;
  padding: 8px;
  width: calc(100% - 18px);
}
.input-wrapper input:-ms-input-placeholder, .input-wrapper select:-ms-input-placeholder {
  text-transform: uppercase;
}
.input-wrapper input::-moz-placeholder, .input-wrapper select::-moz-placeholder {
  text-transform: uppercase;
}
.input-wrapper input::placeholder, .input-wrapper select::placeholder {
  text-transform: uppercase;
}
.input-wrapper select {
  width: 100%;
}
.input-wrapper small {
  color: black;
  font-size: 12px;
  text-transform: none;
}

.form-header {
  background: #f7f7f7;
  color: #663766;
  display: block;
  font-size: 18px;
  margin: 0 -15px 30px;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
}

.select2-container {
  font-family: "Ubuntu";
  font-size: 16px;
}
.select2-container.select2-container--default .select2-selection {
  border-radius: 20px;
  height: auto;
  position: relative;
}
.select2-container.select2-container--default .select2-selection .select2-selection__rendered {
  color: #1d1d1d;
  line-height: normal;
  padding: 8px 12px;
}
.select2-container.select2-container--default .select2-selection .select2-selection__arrow {
  font-size: 10px;
  height: auto;
  padding-right: 4px;
  text-align: right;
  top: 50%;
  transform: translate(0, -50%);
}
.select2-container.select2-container--default .select2-selection .select2-selection__arrow:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.select2-container.select2-container--default .select2-selection .select2-selection__arrow b {
  display: none;
}

.flash {
  border-radius: 4px;
  font-weight: 300;
  margin-bottom: 20px;
  padding: 8px 8px 8px 8px;
}
.flash.error {
  border: 1px solid #ff0000;
  color: #ff0000;
}
.flash.success {
  border: 1px solid #008000;
  color: #008000;
}

.back-button {
  margin-top: 35px;
  align-self: start;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.back-button .pink-button {
  text-decoration: none;
  font-size: 14px;
  color: #663766;
}

.tiny-button {
  background: #663766;
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  margin-top: 8px;
  padding: 6px 18px;
}

.button {
  background: #663766;
  border-radius: 24px;
  border: none;
  color: #ffffff;
  display: block;
  font-size: 18px;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.button:hover {
  background: #c251c2;
  cursor: pointer;
}
.button.small {
  padding: 10px;
  font-size: 13px;
}
.button.space-top {
  margin-top: 20px;
}
.button.space-top.space-small {
  margin-top: 10px;
}
.button.full-width {
  width: 100%;
}

.button-reverse {
  background: #c251c2;
  border-radius: 24px;
  border: none;
  color: #ffffff;
  display: block;
  font-size: 18px;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.button-reverse:hover {
  background: #663766;
  cursor: pointer;
}
.button-reverse.small {
  padding: 10px;
  font-size: 13px;
}
.button-reverse.space-top {
  margin-top: 20px;
}
.button-reverse.space-top.space-small {
  margin-top: 10px;
}
.button-reverse.full-width {
  width: 100%;
}

header {
  background-color: #c251c2;
  color: #ffffff;
  display: flex;
  position: relative;
  width: 100%;
}
header .back {
  padding: 5px 0;
}
header .back a {
  color: #ffffff;
  display: inline-block;
  padding: 12px;
}
header .page-heading {
  width: 100%;
}
header .page-heading h1 {
  color: #ffffff;
  display: block;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  text-align: center;
  text-transform: uppercase;
}
header .ellipses {
  padding: 5px 0;
}
header .ellipses .action-menu > a {
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  padding: 12px 18px;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
}
.footer .user-actions {
  display: flex;
  text-align: center;
  padding: 15px 0;
}
.footer .user-actions .footer-button {
  background-color: #ffffff;
  border-radius: 60px;
  border: 2px solid #ffffff;
  flex-basis: 0;
  flex-grow: 1;
  padding: 16px 0;
  text-decoration: none;
}
.footer .user-actions .footer-button p {
  color: #c251c2;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}
.footer .page-footer {
  display: flex;
  text-align: center;
  max-width: 400px;
}
.footer .page-footer .footer-button {
  flex-basis: 0;
  flex-grow: 1;
  padding: 7px 0;
  text-decoration: none;
}
.footer .page-footer .footer-button:nth-of-type(2), .footer .page-footer .footer-button:nth-of-type(3), .footer .page-footer .footer-button:nth-of-type(4) {
  margin-left: -2px;
  margin-right: -2px;
}
.footer .page-footer .footer-button.active .active {
  display: inline-block;
}
.footer .page-footer .footer-button.active .inactive {
  display: none;
}
.footer .page-footer .footer-button .active {
  display: none;
}
.footer .page-footer .footer-button .inactive {
  display: inline-block;
}
.footer .page-footer .footer-button .circle-button {
  display: inline-block;
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  top: -15px;
  box-shadow: 0px 12px 10px 3px rgba(0, 0, 0, 0.16);
  background: #c251c2;
}
.footer .page-footer .footer-button .stroke {
  stroke-width: 700;
}
.footer .page-footer .footer-button .fa-thin, .footer .page-footer .footer-button .fas {
  color: #ffffff;
  font-size: 30px;
  position: relative;
  line-height: 48px;
}
.footer .page-footer .footer-button img {
  width: 35px;
}
.footer .page-footer .footer-button p {
  color: #ffffff;
  font-size: 10px;
  margin-bottom: 0;
  margin-top: 8px;
  text-transform: uppercase;
}
.footer .page-footer .footer-button.active {
  border: none;
}

.action-menu {
  position: relative;
}
.action-menu .toggle {
  display: inline-block;
  padding: 0 10px;
}
.action-menu ul {
  background: #fff;
  border-radius: 5px;
  bottom: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: none;
  margin: 0;
  min-width: 100px;
  padding: 6px 0;
  position: absolute;
  right: 0;
  transform: translate(0, 100%);
  z-index: 100;
}
.action-menu ul li {
  list-style-type: none;
}
.action-menu ul li a {
  color: black;
  display: inline-block;
  padding: 3px 16px;
  text-decoration: none;
  width: calc(100% - 32px);
}
.action-menu ul li a:hover {
  background: #f2f2f2;
}
.action-menu.open ul {
  display: block;
}

#loader {
  background: #ffffff;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100000;
}
#loader .loader-content {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  height: calc(100vh - 100px);
  justify-content: space-around;
  margin: 0 auto;
  max-width: 400px;
  padding: 50px 15px;
  text-align: center;
  text-transform: uppercase;
}
#loader .loader-content .gif {
  max-width: 75%;
}
#loader .loader-content .logo img {
  max-width: 350px;
  width: 100%;
}
#loader .loader-content .icons {
  font-size: 3px;
  padding-top: 18px;
}
#loader .loader-content .icons i {
  padding: 0 8px;
}
#loader .loader-content .wait-message {
  color: #663766;
  font-weight: 700;
}

.register {
  height: calc(100vh - 73px);
  padding-top: 0;
}
.register .confirm-details-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.register .confirm-details-list .name {
  font-weight: 700;
  font-size: 18px;
}
.register .confirm-details-list .value {
  margin-bottom: 12px;
}
.register .button-container {
  display: flex;
}
.register .button-container .single-button {
  flex-basis: 0;
  flex-grow: 1;
}
.register .button-container .single-button:first-of-type {
  padding-right: 5px;
}
.register .button-container .single-button:last-of-type {
  padding-left: 5px;
}

.page-heading h1 {
  display: block;
  font-size: 24px;
  margin: 0;
  padding: 14px 0;
  text-align: center;
  text-transform: uppercase;
  color: #663766;
}

.home {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home .button-spacing {
  margin-bottom: 30px;
}
.home .content-wrapper {
  align-self: start;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}
.home .content-wrapper h1 {
  font-size: 24px;
}
.home .content-wrapper h2 {
  font-size: 20px;
}
.home .content-wrapper p {
  font-size: 16px;
}
.home .home-slider .slide {
  position: relative;
}
.home .home-slider .slide .slide-caption {
  bottom: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  left: 7px;
  position: absolute;
  text-align: left;
  text-shadow: 1px 0px 1px rgba(150, 150, 150, 0.5);
}
.home .home-slider .slide .slide-content {
  background-position: center center;
  background-size: cover;
  padding-bottom: 60%;
}
.home .home-sub-slider {
  margin-top: 6px;
}
.home .home-sub-slider .slide .items {
  color: #663766;
  display: flex;
  font-size: 14px;
  justify-content: space-evenly;
}
.home .home-sub-slider .slide .items .item {
  display: inline-block;
}
.home .home-slider-dots {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  margin: 15px 0 30px;
  padding: 0 70px;
}
.home .home-slider-dots .dot {
  color: #663766;
  font-size: 8px;
  padding: 8px;
  cursor: pointer;
}
.home .home-slider-dots .dot.active {
  color: #c251c2;
  font-size: 12px;
}

.search-page {
  height: calc(100vh - 73px);
  padding-top: 0;
}
.search-page .button-container {
  display: flex;
}
.search-page .button-container .single-button {
  flex-basis: 0;
  flex-grow: 1;
}
.search-page .button-container .single-button:first-of-type {
  padding-right: 5px;
}
.search-page .button-container .single-button:last-of-type {
  padding-left: 5px;
}
.search-page .radio-container {
  margin-bottom: 15px;
}
.search-page .radio-container .custom-radio {
  margin-bottom: 10px;
  display: block;
}
.search-page .radio-container .custom-radio input {
  display: none;
}
.search-page .radio-container .custom-radio input:checked ~ span {
  background: #7b337b;
}

.product-listing .filters .filter-items {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-wrap: wrap;
  color: #000000;
  display: flex;
  font-size: 18px;
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
}
.product-listing .filters .filter-items .filter-item {
  flex-basis: 100%;
  padding-top: 2px;
}
.product-listing .listing {
  margin: 20px 0;
}
.product-listing .listing .single-product {
  color: #663766;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.product-listing .listing .single-product img {
  max-width: 75%;
  border-radius: 24px;
  border: 2px solid #663766;
}
.product-listing .listing .single-product hr {
  border-top: 1px dotted #a19d9d;
  margin-bottom: 25px;
}
.product-listing .loading {
  margin-top: 40px;
  text-align: center;
}

.search-results .product-wrapper h2, .search-results .product-wrapper h3 {
  color: #663766;
  font-size: 24px;
  position: relative;
  text-transform: uppercase;
  transition: opacity 0.2s;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
}
.search-results .product-wrapper .image-wrapper {
  width: 50%;
  min-width: 250px;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.search-results .product-wrapper .image-wrapper .square-image {
  background-position: center center;
  background-size: cover;
  padding-bottom: 100%;
}
.search-results .results h2 {
  font-size: 20px;
}
.search-results .results h3 {
  font-size: 14px;
}
.search-results .button-wrapper {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 50px;
}
.search-results .button-wrapper .no, .search-results .button-wrapper .yes {
  flex-basis: 50%;
}
.search-results .button-wrapper .no a, .search-results .button-wrapper .yes a {
  border-radius: 50%;
  color: #f7f7f7;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  height: 100px;
  line-height: 100px;
  margin: 0 20px;
  text-align: center;
  text-decoration: none;
  width: 100px;
}
.search-results .button-wrapper .no {
  text-align: right;
}
.search-results .button-wrapper .no a {
  background-color: #a72a2a;
}
.search-results .button-wrapper .yes {
  text-align: left;
}
.search-results .button-wrapper .yes a {
  background-color: #5ca72a;
}
.search-results .previous-button-wrapper {
  text-align: center;
  margin-top: 20px;
}
.search-results .previous-button-wrapper .previous a {
  display: inline-block;
  color: #ffffff;
  background: #10a9e6;
  height: 60px;
  line-height: 60px;
  text-align: center;
  width: 60px;
  border-radius: 50%;
}
.search-results .button-wrapper a, .search-results .previous-button-wrapper a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.terms-styling h1 {
  font-size: 22px;
  font-weight: 700;
}
.terms-styling h2 {
  font-size: 20px;
  font-weight: 600;
}
.terms-styling p {
  font-size: 16px;
}
.terms-styling ul li {
  font-size: 16px;
}

.offers .product-wrapper h2 {
  color: #663766;
  cursor: pointer;
  font-size: 24px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.offers .product-wrapper .image-wrapper {
  display: block;
  height: auto;
  min-width: 65px;
  width: 15px;
}
.offers .product-wrapper .image-wrapper .square-image {
  background-position: center center;
  background-size: cover;
  padding-bottom: 100%;
}
.offers .product-wrapper .result {
  border-bottom: 2px solid #000000;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.offers .product-wrapper .result .info {
  margin-left: 15px;
  width: 100%;
}
.offers .product-wrapper .result .info p {
  margin: 2px;
}
.offers .product-wrapper small {
  display: block;
  font-size: 12px;
  text-align: center;
}
.offers .product-wrapper .results-wrapper .results {
  display: block;
}
.offers .product-wrapper .results-wrapper.closed .results {
  display: none;
}
.offers .product-wrapper .results-wrapper .info .less {
  display: none;
}
.offers .product-wrapper .results-wrapper .info .more {
  display: block;
}
.offers .product-wrapper .results-wrapper .info.closed .less {
  display: block;
}
.offers .product-wrapper .results-wrapper .info.closed .more {
  display: none;
}
.offers .product-wrapper .results-wrapper a {
  cursor: pointer;
}

#app .dashboard {
  height: calc(100vh - 115px);
  padding: 0;
}
.dashboard .location-section {
  padding: 10px 15px;
  display: flex;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
}
.dashboard .location-section .heading h2 {
  font-size: 24px;
  margin: 0;
  color: #663766;
  text-transform: uppercase;
  font-weight: 500;
}
.dashboard .location-section .location-select .current-location {
  display: inline-block;
  font-size: 14px;
  color: #663766;
  text-transform: uppercase;
  font-weight: 500;
}
.dashboard .location-section .location-select .icon {
  display: inline-block;
  font-size: 16px;
}
.dashboard .featured-image {
  background-image: url("/images/featured-image.png");
  background-position: center center;
  background-size: cover;
  padding-bottom: 75%;
  position: relative;
}
.dashboard .featured-image h2 {
  margin: 0;
  position: absolute;
  left: 5px;
  bottom: 5px;
  font-size: 24px;
  color: #c251c2;
  text-transform: uppercase;
  font-weight: 800;
}
.dashboard .category-section .heading {
  font-size: 18px;
  color: #663766;
  text-transform: uppercase;
  font-weight: 800;
  padding: 10px 15px;
}
.dashboard .category-section .filters {
  display: flex;
}
.dashboard .category-section .filters .filter {
  display: inline-block;
}
.dashboard .category-section .filters .filter.active {
  background: purple;
}
.dashboard .category-section .filters .filter.all {
  align-self: flex-end;
}
.dashboard .category-section .content .product {
  display: block;
  height: auto;
  width: 50%;
  position: relative;
}
.dashboard .category-section .content .product .square-image {
  width: 100%;
  background-position: center center;
  background-size: cover;
  padding-bottom: 100%;
}
.dashboard .category-section .content .product .product-name {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-heading h1 {
  display: block;
  font-size: 24px;
  margin: 0;
  padding: 14px 0;
  text-align: center;
  text-transform: uppercase;
  color: #663766;
}
