/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
.sp {
  margin: 0 auto;
}

/* Circle Spinner */
.spCircle {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.25rem solid rgba(255, 255, 255, 0.25);
  border-top: 0.25rem solid white;
  border-radius: 50%;
  animation: spCircRot 0.6s infinite linear;
}

@keyframes spCircRot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* Balls Spinner */
.spBalls,
.spBalls:before,
.spBalls:after {
  border-radius: 50%;
  background-color: white;
  width: 1rem;
  height: 1rem;
  transform-origin: center center;
  display: block;
}

.spBalls {
  position: relative;
  background-color: white;
  opacity: 1;
  animation: spScaleAlpha 1s infinite linear;
}

.spBalls:before,
.spBalls:after {
  content: "";
  position: relative;
  opacity: 0.25;
}

.spBalls:before {
  left: 32px;
  top: 0;
  animation: spScaleAlphaBefore 1s infinite linear;
}

.spBalls:after {
  left: -32px;
  top: -16px;
  animation: spScaleAlphaAfter 1s infinite linear;
}

@keyframes spScaleAlpha {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.25;
  }
  66% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spScaleAlphaBefore {
  0% {
    opacity: 0.25;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.25;
  }
}
@keyframes spScaleAlphaAfter {
  33% {
    opacity: 0.25;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
.btn {
  font-size: inherit;
  line-height: 1;
  height: 2.5rem;
  padding: 0 1rem;
  background: transparent;
  border: 0.125rem solid rgba(0, 0, 0, 0);
  cursor: pointer;
  border-radius: 0.125rem;
  vertical-align: middle;
}
.btn::-moz-focus-inner {
  border: 0;
}
.btn:focus {
  box-shadow: 0 0 0 0.125rem rgba(4, 116, 232, 0.5);
}
.btn:active {
  transform: scale(0.96);
}
.btn:disabled {
  cursor: not-allowed;
}
.btn:disabled:active {
  transform: scale(1);
}
.btn.blue {
  color: white;
  background: #0474e8;
}
.btn.blue:hover {
  background: #0d82fb;
}
.btn.blue:active {
  background: #0468d1;
}
.btn.blue.ghost {
  color: #0474e8;
  border: 0.125rem solid #0474e8;
}
.btn.red {
  color: white;
  background: #d9534f;
}
.btn.red:hover {
  background: #dd6461;
}
.btn.red:active {
  background: #d43b37;
}
.btn.red.ghost {
  color: #d9534f;
  border: 0.125rem solid #d9534f;
}
.btn.orange {
  color: white;
  background: #ff8000;
}
.btn.orange:hover {
  background: #ff8d1a;
}
.btn.orange:active {
  background: #e67300;
}
.btn.orange.ghost {
  color: #ff8000;
  border: 0.125rem solid #ff8000;
}
.btn.transparent {
  height: auto;
  border: none;
  color: #0474e8;
  background: none;
  padding: 0;
}
.btn.transparent:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.125rem;
}
.btn.transparent:active {
  transform: scale(1);
}
.btn.inherit {
  height: auto;
  border: none;
  background: none;
  padding: 0;
}
.btn.inherit:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.125rem;
}
.btn.inherit:active {
  transform: scale(1);
}
.btn.ghost {
  background: transparent;
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.5);
}
.btn.signIn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  height: 2rem;
}
.btn.mini {
  height: 1.5rem;
}
.btn.pill {
  font-size: 0.875rem;
}

.buttonGroup {
  flex-flow: row wrap;
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
.textFieldWrap:focus-within label {
  color: #0474e8;
}
.textFieldWrap label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0 0.5rem;
  background: white;
  cursor: text;
}
.textFieldWrap label.popOut {
  top: 1rem;
  left: 1rem;
  font-size: 0.875rem;
  padding: 0;
  color: #777777;
}
.textFieldWrap input {
  /* stylelint-disable */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* stylelint-enable */
  height: 3rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  background: white;
  outline: none;
  border: 0.125rem solid #d8d8d8;
  border-radius: 0.25rem;
  box-shadow: none;
}
.textFieldWrap input:invalid:not(:focus):not(:placeholder-shown) {
  border: 0.125rem solid #d9534f;
}
.textFieldWrap input:invalid:not(:focus):not(:placeholder-shown) + label {
  color: #d9534f;
}
.textFieldWrap input:not(:placeholder-shown) {
  border: 0.125rem solid #0474e8;
}
.textFieldWrap input:not(:placeholder-shown) + label {
  color: #0474e8;
}
.textFieldWrap input:focus {
  border: 0.125rem solid #0474e8;
}
.textFieldWrap input:disabled {
  cursor: not-allowed;
}
.textFieldWrap input:disabled + label {
  color: #d8d8d8;
}
.textFieldWrap input.popOut {
  padding: 0 1rem;
}
.textFieldWrap input.popOut:focus + label, .textFieldWrap input.popOut:not(:placeholder-shown) + label {
  top: 0;
  left: 0;
  padding: 0 0.5rem;
  color: #0474e8;
  transform: scale(0.875) translateY(-0.5rem);
}
.textFieldWrap .fieldMessage {
  font-size: 0.875rem;
  line-height: 1.5;
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
.gmg_alert {
  font-size: 0.875rem;
  line-height: 1.25;
  color: white;
  border-radius: 0.125rem;
  padding: 0.5rem 1rem;
}
.gmg_alert.warning {
  background: #ff8000;
}
.gmg_alert.error {
  background: #d9534f;
}
.gmg_alert.positive {
  background: #0474e8;
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .gmgCheckbox input[type=checkbox],
.gmgCheckbox input[type=radio] {
    /* stylelint-disable */
    -webkit-appearance: none;
    -moz-appearance: none;
    /* stylelint-enable */
    height: 1.5rem;
    width: 1.5rem;
    margin: 0;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    border: 0.125rem solid #d8d8d8;
    background: white;
    transition: 0.3s;
  }
  .gmgCheckbox input[type=checkbox]:after,
.gmgCheckbox input[type=radio]:after {
    content: "";
    display: block;
    opacity: 1;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform 0.6s ease-in-out, opacity 0.3s;
  }
  .gmgCheckbox input[type=checkbox]:checked,
.gmgCheckbox input[type=radio]:checked {
    border: 0.125rem solid #0474e8;
    background: #0474e8;
    opacity: 1;
  }
  .gmgCheckbox input[type=checkbox]:disabled,
.gmgCheckbox input[type=radio]:disabled {
    background: #d8d8d8;
    cursor: not-allowed;
    opacity: 0.9;
  }
  .gmgCheckbox input[type=checkbox]:disabled:checked,
.gmgCheckbox input[type=radio]:disabled:checked {
    background: #d8d8d8;
    border: #d8d8d8;
  }
  .gmgCheckbox input[type=checkbox]:disabled + label,
.gmgCheckbox input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  .gmgCheckbox input[type=checkbox]:hover:not(:checked):not(:disabled),
.gmgCheckbox input[type=radio]:hover:not(:checked):not(:disabled) {
    border: 0.125rem solid #0474e8;
  }
  .gmgCheckbox input[type=checkbox]:focus,
.gmgCheckbox input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .gmgCheckbox input[type=checkbox] + label,
.gmgCheckbox input[type=radio] + label {
    font-size: 0.875rem;
    line-height: 1.5rem;
    cursor: pointer;
  }
  .gmgCheckbox input[type=checkbox] + label.top,
.gmgCheckbox input[type=radio] + label.top {
    transform: translateY(-0.25rem);
  }
  .gmgCheckbox input[type=checkbox] {
    border-radius: 0.125rem;
    flex: 0 0 auto;
  }
  .gmgCheckbox input[type=checkbox]:after {
    width: 0.25rem;
    height: 0.5rem;
    border: 0.125rem solid white;
    border-top: 0;
    border-left: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(43deg);
  }
  .gmgCheckbox input[type=checkbox]:checked {
    --r: 43deg;
  }
  .gmgCheckbox input[type=radio] {
    border-radius: 50%;
  }
  .gmgCheckbox input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(0.5);
  }
  .gmgCheckbox input[type=radio]:checked {
    --s: 0.5;
  }
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .dropdown label {
    font-size: 0.875rem;
    line-height: 1;
  }
  .dropdown select {
    /* stylelint-disable */
    -webkit-appearance: none;
    -moz-appearance: none;
    /* stylelint-enable */
    background: white;
    border: 0.125rem solid #d8d8d8;
    border-radius: 0.25rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  .dropdown select:hover, .dropdown select:-moz-focusring {
    border: 0.125rem solid #0474e8;
  }
  .dropdown select:-moz-focusring {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0 0 0 #222222;
  }
  .dropdown svg {
    z-index: 10;
    right: 1rem;
    bottom: 0.875rem;
  }
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .textAreaWrap label {
    font-size: 0.875rem;
    line-height: 1;
  }
  .textAreaWrap textarea {
    /* stylelint-disable */
    -webkit-appearance: none;
    -moz-appearance: none;
    /* stylelint-enable */
    border: 0.125rem solid #d8d8d8;
    border-radius: 0.25rem;
    margin-bottom: 0;
    padding: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25;
  }
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=file] {
    padding: 0.5rem;
    border: 0.125rem solid #d8d8d8;
    border-radius: 0.25rem;
    background: #f0f0f0;
    line-height: 1;
  }
}
/* Breakpoints: */
/* -- Colors -- */
/* -- Shadows -- */
/* prettier-ignore */
/* stylelint-disable */
/* stylelint-enable */
/* -- Maintain aspect raito, @include on the parent wrapper, the child must have the class of content -- */
.header {
  background: white;
  padding: 1.5rem;
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .header {
    padding: 3rem 1.5rem;
  }
  .header > div.column {
    flex-flow: row;
  }
  .header > div.column > div {
    width: 75%;
    margin-bottom: 0;
  }
  .header > div.column button {
    align-self: flex-end;
    margin-left: auto;
  }
}

.map > div {
  height: 512px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

#upload_map {
  width: 100%;
  height: 512px;
}

.sort .dropdown {
  max-width: 512px;
}
.sort .filters {
  flex-flow: column;
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .sort .filters {
    flex-direction: row;
  }
}
.sort .filters .buttonGroup {
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .sort .filters .buttonGroup {
    width: 75%;
  }
}
.sort .filters button.orange {
  align-self: flex-end;
  margin-top: 1rem;
  width: 100%;
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .sort .filters button.orange {
    margin-left: auto;
    width: unset;
  }
}

.grid.pinGallery {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.pinWrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: white;
  box-shadow: 1px 1px 8px rgba(34, 34, 34, 0.25);
  /* Between 475 and 767px */
  /* stylelint-disable-next-line */
  /* Between 768px and 1023px */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 475px) {
  .pinWrap {
    border-radius: 0.25rem;
    width: unset;
    margin-left: unset;
  }
}
.pinWrap:hover .pinImage {
  transform: scale(1.05);
}
.pinWrap.promo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pinWrap figure {
  overflow: hidden;
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .pinWrap figure {
    border-radius: 0.25rem 0.25rem 0 0;
  }
}
.pinWrap .pinImage {
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.pinWrap .playButton {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.96);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pinWrap .tab {
  padding: 1rem;
  background: white;
}
.pinWrap .tab .content {
  font-size: 0.875rem;
}
.pinWrap .tab .desc {
  word-wrap: anywhere;
  max-width: 66ch;
}
.pinWrap .tab .location {
  font-size: 0.75rem;
  bottom: 1rem;
  right: 1rem;
  line-height: 1;
}
.pinWrap .tab .time {
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: auto;
}
.pinWrap .tab .icon {
  width: 56px;
  height: 56px;
  flex: 1;
}
.pinWrap .tab .user .username {
  line-height: 1;
}

.modal .pinWrap {
  width: unset;
  margin-left: unset;
}
.modal .pinWrap:hover .pinImage {
  transform: scale(1);
}
.modal .pinWrap figure {
  overflow: unset;
}
.modal a {
  background: black;
}
.modal .pinImage {
  height: 100%;
  padding: 0;
  max-height: 80vh;
  width: auto;
}
.modal video.pinImage {
  width: 100%;
  background: black;
}
.modal .prev,
.modal .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  z-index: 5;
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .modal .prev,
.modal .next {
    font-size: 3rem;
  }
}
.modal .prev {
  left: 1rem;
}
.modal .next {
  right: 1rem;
}

.pinUpload {
  background: white;
  padding: 1.5rem;
  height: 100%;
  overflow-y: scroll;
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
  /* Between 475 and 767px */
  /* Between 768px and 1023px */
  /* stylelint-disable-next-line */
  /* ONLY Between 475px and 768px */
  /* Between 1024px and 1199px */
  /* At least 1200px */
}
@media only screen and (min-width: 769px) {
  .pinUpload {
    padding: 3rem;
  }
}
@supports (-moz-appearance: none) {
  .pinUpload .uploadForm {
    margin-bottom: 3rem;
  }
}
.pinUpload .preview img {
  max-height: 16rem;
  width: auto;
}
.pinUpload .pinLocation span {
  font-size: 0.875rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .pinUpload .formSubmit.column {
    flex-flow: row;
  }
  .pinUpload .formSubmit.column .tos {
    margin-bottom: 0;
  }
}
