html, body {
  margin: 0;
  padding: 0;
}

html {
  /* overflow: hidden; */
  /* height: 100%; */
}

input {
  font-family: inherit;
}

body {
  overflow: auto;
  background: url('/assets/background.png') no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  /* height: 100%; */
}

nav {
  color: #66104c;
  font-weight: bold;
  padding: 40px;
  line-height: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  user-select: none;
}

.nav-more {
  position: relative;
  cursor: pointer;
}

.nav-links-more {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  background: #171b2e;
  padding: 0 20px 10px 20px;
  box-shadow: 0px 0px 12px 1px #171b2e;
  z-index: 1;
  border-radius: 4px;
}

.nav-links-more a {
  margin: 0;
}

.nav-links-more .more-nav-item {
  display: none;
}

@media (max-width: 500px) {
  .main-nav-item {
    display: none;
  }
  .nav-links-more .more-nav-item {
    display: inline-block;
  }
}

.nav-links-more-label {
  color: rgba(255, 255, 255, .25);
}

.nav-links-more a {
  display: block;
  color: rgba(255, 255, 255, .75);
}

.nav-links-more a:hover {
  color: rgba(255, 255, 255, 1);
  padding-left: 8px;
}

.nav-more:hover .nav-links-more {
  display: block;
  margin-top: -8px;
  margin-left: -18px;
}

nav a {
  margin-right: 40px;
  color: inherit;
  text-decoration: none;
  color: #66104c;
  transition: all .2s;
}

nav a:hover {
  color: #fff;
}

@media  (max-width: 430px) {
  nav a {
    margin-right: 20px;
  }
}

nav span.sign-up {
  float: right;
  color: #fff;
  border: 3px solid #66104c;
  padding: 10px;
  line-height: 18px;
  min-width: 100px;
  text-align: center;
  background: rgba(0, 0, 0, .25);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

nav span.sign-up.signed-in:hover:after {
  content: "Sign out";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  line-height: 18px;
  background:  #171b2e;
  box-sizing: border-box;
}

nav span.logo {
  float: left;
  color: #fff;
  line-height: 38px;
  font-size: 22px;
  min-width: 100px;
  text-align: center;
  margin-right: 60px;
  color: transparent;
  background-image: url(assets/logo.svg);
  background-size: contain;
  background-position: center 4px;
  background-repeat: no-repeat;
}

h1 {
  /* text-transform: uppercase; */
  font-size: 2.5em;
  margin: 0;
  padding: 0;
  text-align: center;
  padding: 20px 40px 20px 40px;
}

header p {
  text-align: center;
  padding: 0 0 20px 0;
  font-size: 16px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.form {
  text-align: center;
  padding: 0 20px 0 20px;
  position: relative;
}

.form.withHelp:before {
  content: "Wrong business? Try including some location info like the town or state.";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -240px;
  margin-top: 15px;
  transform: translate(-50%, -100%);
  background: #732a7b;
  padding: 10px 20px;
  border-radius: 40px;
  z-index: 2;
  display: none;
}

.form.withHelp:after {
  margin: 20px;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%) rotate(45deg);
  background: #732a7b;
  padding: 15px;
  border-radius: 0;
  margin-top: 20px;
  margin-left: -50px;
  display: none;
}

.submitted.form:before,
.submitted.form:after {
  display: block;
  animation: submitted .3s forwards 8s;
}

@keyframes submitted {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.form label {
  text-transform: uppercase;
  font-weight: bold;
  margin-left: -200px;
}

.form input {
  border: 3px solid #66104c;
  padding: 10px;
  line-height: 18px;
  text-align: center;
  margin: 10px;
  background: transparent;
  color: #66104c;
  font-weight: bold;
  font-size: 16px;
  background: rgba(255, 255, 255, .25);
  box-shadow: 0px 0px 6px 1px rgba(0,0,0,.25);
  border-radius: 4px;
  box-sizing: border-box;
  height: 46px;
}

.form input:disabled {
  box-shadow: none;
}

#publish:not(:disabled):hover {
  color: #fff;
  border: 3px solid #fff;
  cursor: pointer;
}

.glow {
  animation: glow 1s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px -10px #8af3db;
  }
  to {
    box-shadow: 0 0 10px 10px #8af3db;
  }
}

#help {
  opacity: 0;
  color: #eee;
  transition: all .3s;
}

input::placeholder {
  color: #66104c;
}

#businessDescription {
  min-width: 280px;
  box-shadow: none;
  border-radius: 0px;
  background: rgba(255, 255, 255, .75);
  text-align: left;
  outline: none;
}

#businessDescription:focus {
  outline: none;
}

#businessDescription::placeholder {
  color: rgba(0, 0, 0, .65);
}

#submit {
  border: 3px solid #66104c;
  min-width: 260px;
}

#submit:hover {
  color: #fff;
  border: 3px solid #fff;
  cursor: pointer;
}

input#submit:disabled {
  border: 3px solid #66104c;
  color: #66104c;
  cursor: default;
}

.businessDescriptionWrapper {
  position: relative;
}

.website-mode .pac-container {
  display: none !important;
}

.website-mode .businessDescriptionWrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  width: 20px;
  height: 20px;
  background-image: url('/assets/internet_icon.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.tv {
  text-align: center;
  padding: 20px 20px 120px 20px;
  box-sizing: border-box;
}

.tv-screen-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}

.tv-screen {
  width: 100%;
  padding-bottom: 56.25%;
  background: #171b2e;
  background-image: url(/assets/default-screen.png);
  background-size: cover;
  background-position: right;
  box-shadow: 0px 0px 12px 1px #171b2e;
}

.tv-screen.uploading .tv-photo {
  animation: darken 1s infinite;
}

.tv-screen.uploading .change-photo {
  animation: strobe 1s infinite;
}

.tv-info {
  background: rgba(23, 27, 46, 0);
  transition: background 1s;
}
.tv-info.loading {
  background: rgba(23, 27, 46, 0.85);
  animation: strobe 1s infinite;
}

@keyframes darken {
  0% {
    background-color: rgba(0, 0, 0, .25);
  }
  50% {
    background-color: rgba(0, 0, 0, .75);
  }
  100% {
    background-color: rgba(0, 0, 0, .25);
  }
}

@keyframes strobe {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

/* legs */
.tv-screen-wrapper::before, 
.tv-screen-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -6%;
  left: 30%;
  width: 40%;
  height: 3%;
  border-radius: 20px;
  background: #171b2e;
  transform: rotate(15deg) translate(0, -50%);
  box-shadow: 35px 0px 60px 60px rgba(23, 27, 46, 0.3);
}

.tv-screen-wrapper::after {
  transform: rotate(165deg) translate(0, 50%);
}

.tv-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  border: 12px solid #171b2e;
  box-sizing: border-box;
  overflow: hidden;
}

.tv-info::after {
  clear: both;
}

.tv-photo,
.tv-text {
  /* overflow: hidden; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  width: 50%;
  float: left;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  line-height: 22px;
  /* transition: background-image .3s; */

  /* version 2 styling */
  position: absolute;
  width: 100%;
}

.tv-photo[data-odd="true"] {
  animation-name: zoomIn;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transform: scale(1.0);
}

.tv-photo[data-odd="false"] {
  animation-name: zoomOut;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transform: scale(1.2);
}

.tv-photo[data-last="true"] {
  /* background-size: 30%;
  background-position: center 40%; */
  background-color: rgba(0, 0, 0, .5);
  filter: blur(6px);
  /* height: calc(100% - 42px); */
  /* animation: none;
  transform: scale(1); */
}

@keyframes zoomIn {
  from { transform: scale(1.0); }
  to { transform: scale(1.2); }
}

@keyframes zoomOut {
  from { transform: scale(1.2); }
  to { transform: scale(1.0); }
}

.tv-text {
  z-index: 3;
  height: auto;
  bottom: 0;
  padding: 10px 20px;
  background-color: rgba(23, 27, 46, 0.85);
  border-bottom: 2px solid transparent;
}

.tv-text:focus {
  outline: none;
  border-bottom: 2px solid #b06bbd;
}

.tv-text,
.tv-text:empty {
  opacity: 0;
}

.edit {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
}

.editing .tv-text {
  opacity: 1;
}

#audio {
  opacity: 0;
  pointer-events: none;
}

#controls * {
  cursor: pointer;
  transition: all .3s;
  border-radius: 2px;
}

#controls *:disabled {
  opacity: .5;
  cursor: not-allowed;
}

#controls.active * {
  opacity: 1;
  pointer-events: all;
}

#onscreen {
  position: absolute;
  bottom: 10%;
  left: 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 2em;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, .6);
  font-weight: bold;
  display: none;
}

.tv-info[data-last="true"] #onscreen {
  display: block;
}

@media screen and (max-width: 660px) {
  #onscreen {
    font-size: 1em;
  }
}

img#qrcode {
  width: 30%;
  margin-bottom: 2%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, .6);
  border-radius: 10%;
}

#modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 27, 46, .85);
  z-index: 8;
  display: none;
}

#modal.active {
  display: block;
}

#modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background: #171b2e;
  z-index: 9;
  box-shadow: 0px 0px 12px 1px #171b2e;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
  font-size: 16px;
}

#step-one {
  text-align: center;
  font-size: 18px;
}

#modalClose {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  border: 3px solid #762f67;
  cursor: pointer;
  background: rgba(0, 0, 0, .9);
}

#modalClose:hover {
  color: #fff;
  border: 3px solid #fff;
}

.step-one-buttons {
  margin: 20px 0;
}

.step-button {
  border: 3px solid #45276a;
  padding: 10px;
  line-height: 18px;
  text-align: center;
  margin: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  background: rgba(0, 0, 0, .9);
  width: 65px;
  box-sizing: border-box;
  display: inline-block;
}

.step-button:hover,
.step-button.selected {
  color: #fff;
  border: 3px solid #fff;
  cursor: pointer;
}

.step-input.selected {
  border: 3px solid #fff;
}

.step-button.launch {
  width: auto;
  min-width: 260px;
  margin: 0 0 10px 0;
}

.step-button.launch:disabled {
  opacity: .35;
  pointer-events: none;
}

.step-input {
  border: 3px solid #602b68;
  background: rgba(0, 0, 0, .9);
  padding: 10px;
  line-height: 18px;
  text-align: center;
  margin: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  width: 270px;
  height: 45px;
  box-sizing: border-box;
  display: inline-block;
}

.step-input::placeholder {
  color: #602b68;
}

#step-continue:hover {
  color: #fff;
  border: 3px solid #fff;
  cursor: pointer;
}

.image {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgb(126 52 166) 100%);
}

/* Change the color to the desired fade color */
.gradient {
  background-color: rgba(23, 27, 46, .95);
}

video#video-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  display: none;
  object-fit: cover;
}

#file-input {
  display: none;
}

section.edit {
  margin: 100px auto;
  max-width: 1200px;
  padding: 20px;
}

.slide {
  width: 480px;
  padding-bottom: 270px;
  background: #000;
  display: inline-block;
}

.editing #tvText:before {
  margin: 20px;
  content: "You can now change the text below";
  position: absolute;
  top: -70px;
  background: #732a7b;
  left: 0;
  padding: 10px 20px;
  border-radius: 40px;
  z-index: 2;
}

/* .editing[data-last="true"] #tvText:before {
  content: "You can include a link your website at the end";
} */

.editing #tvText:after {
  margin: 20px;
  content: "";
  position: absolute;
  top: -60px;
  background: #732a7b;
  left: 200px;
  padding: 20px;
  border-radius: 0;
  transform: rotate(45deg);
}

.edit-next,
.edit-previous,
.change-photo,
.photo-library,
.add-frame,
.remove-frame {
  cursor: pointer;
  margin: 20px;
  position: absolute;
  top: 50%;
  transform: translate(0px, -100%);
  background: #b06bbd;
  left: 0;
  padding: 10px 20px;
  border-radius: 2px;
  border: 3px solid #66104c;
  box-shadow: 0px 0px 6px 1px rgba(0,0,0,.25);
  display: none;
  user-select: none;
  font-weight: bold;
  color: #66104c;
}

.edit-next {
  left: auto;
  right: 0;
}

.change-photo,
.photo-library {
  top: 0;
  left: auto;
  right: 0;
  transform: none;
}

.add-frame {
  top: 0;
  left: 0;
  transform: none;
}

.remove-frame {
  top: 0;
  left: 150px;
  transform: none;
}

.edit-next:hover,
.edit-previous:hover,
.change-photo:hover,
.photo-library:hover,
.add-frame:hover,
.remove-frame:hover {
  color: #fff;
  border: 3px solid #fff;
} 

.editing .edit-previous,
.editing .edit-next,
.editing .change-photo,
.editing .photo-library,
.editing .add-frame,
.editing .remove-frame {
  display: block;
}

/* [data-last="true"] .change-photo,
[data-last="true"] .photo-library {
  display: none;
} */

[data-last="true"] .add-frame,
[data-last="true"] .remove-frame {
  pointer-events: none;
  opacity: .5;
}

[data-index="0"] .remove-frame {
  pointer-events: none;
  opacity: .5;
}

.editing .tv-photo[data-odd="true"],
.editing .tv-photo[data-odd="false"] {
  animation-name: none;
  animation-duration: 0s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transform: none;
}

.photo-library-module {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(23, 27, 46, .9);
  padding: 80px 0;
  box-sizing: border-box;
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  display: none;
}

.editing .photo-library-module {
  display: flex;
}

.photo-library-module-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
  background: rgba(23, 27, 46, .5);
}

.photo-library-module-header * {
  vertical-align: middle;
}

.photo-library.library-close {
  position: relative;
  left: auto;
  right: auto;
  display: inline-block;
  margin-right: 8px;
}

.photo-library-module img {
  width: 200px;
  margin: 20px;
  flex: 1;
  object-fit: cover;
  border: 6px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 12px 1px #171b2e;
  transition: all .3s;
  cursor: pointer;
  opacity: 0;
}

.photo-library-module-load-more {
  width: 200px;
  margin: 20px;
  flex: 1;
  background: rgba(23, 27, 46, .2);
  color: #fff;
  display: flex;
  align-items: center;
  min-width: calc(100% - 40px);
  padding: 20px;
  box-sizing: border-box;
  font-weight: bold;
  border: 4px solid #fff;
  transition: all .3s;
  cursor: pointer;
}

.photo-library-module-load-more:hover {
  background: #171b2e;
}

.photo-library-module img.selected {
  border: 6px solid green;
  transform: scale(1.01);
}

.photo-library-module img:hover {
  transform: scale(1.01);
  border: 6px solid #171b2e;
}

.photo-library-module img.selected:hover {
  transform: scale(1);
  border: 6px solid #fff;
}

@media screen and (max-width: 660px) {
  .photo-library-module {
    padding: 40px 0;
  }
  .photo-library-module-header {
    padding: 0;
  }
  .photo-library-module img {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .photo-library-module-load-more {
    width: calc(50% - 20px);
    min-width: calc(100% - 20px);
    margin: 10px;
  }
}

.tv-remote {
  position: absolute;
  top: 3px;
  left: 3px;
  background: rgba(23, 27, 46, .5);
  text-align: center;
  border-radius: 2px;
  padding: 6px 4px 4px 4px;
  box-shadow: 1px 1px 1px 0px #171b2e;
  cursor: pointer;
  z-index: 12;
  display: none;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity .3s .3s;
}

.tv-screen-wrapper:hover .tv-remote {
  opacity: 1;
  transition: opacity .3s .3s;
}

.editing .tv-remote,
.publishing .tv-remote {
  display: none !important;
}

#tv-remote-button-play {
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 30px;
  border-color: transparent transparent transparent #fff;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: solid;
  border-width: 15px 0 15px 27px;
  display: inline-block;
  margin: 0 4px;
  vertical-align: top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#tv-remote-button-play.paused {
  border-style: double;
  border-width: 0px 0 0px 27px;
}

#tv-remote-button-play:hover {
  border-color: transparent transparent transparent #fff;
}

#tv-remote-button-rw,
#tv-remote-button-ff {
  width: 30px;
  height: 30px;
  background-image: url(/assets/rw-ff.svg);
  display: inline-block;
  vertical-align: top;
  filter: invert(1);
  background-size: contain;
  margin: 0 4px;
}
#tv-remote-button-rw {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  margin-left: -100px;
}
#tv-remote-button-ff {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  margin-left: 109px;
}
.custom-video .tv-remote {
  display: none !important;
}

/* TABLET */
@media (max-width: 940px) {
  span.sign-up {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  nav {
    padding: 80px 20px 60px 20px;
  }
  .nav-links {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  .nav-links a:last-child {
    margin-right: 0;
  }
  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  h1 {
    max-width: 660px;
    margin: 0 auto;
  }
  #modal.active {
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #step-one {
    margin-top: 40px;
    height: 100%;
    overflow: auto;
  }
  .image {
    height: 100%;
  }
  #modal.active .launch {
    margin-bottom: 60px;
  }
  nav span.sign-up {
    position: absolute;
    font-size: 13px;
    padding: 10px 6px;
    top: 0;
    right: 0;
    margin: 18px 20px 0 0;
  }

  .nav-links-more {
    left: auto;
    right: -4px;
  }

  .nav-links-more-label {
    margin-left: 0;
    margin-right: -16px;
    text-align: right;
  }
}

/* Mobile */
@media (max-width: 660px) {
  /* .tv-photo[data-last="true"] {
    height: calc(100% - 22px);
  }  */
  #controls input {
    width: calc(50% - 40px);
    margin: 10px 5px 0 0;
    min-width: 170px;
  }
  #businessDescription {
    width: calc(100% - 70px);
    margin: 10px 0 0 0;
    box-sizing: border-box;
  }
  h1 {
    font-size: 24px;
  }
  .form {
    padding: 0 10px 0 10px;
  }
  .tv-text {
    font-size: 10px;
    line-height: 14px;
    padding: 4px 6px;
  }
  .editing #tvText:before {
    padding: 5px 10px;
    top: -52px;
    left: 0;
  }
  .editing #tvText:after {
    padding: 10px;
    top: -45px;
    left: 150px;
  }
  .add-frame,
  .remove-frame,
  .change-photo,
  .photo-library,
  .edit-next,
  .edit-previous {
    padding: 4px 6px;
    font-size: 10px;
    margin: 0;
  }
  .add-frame {
    left: auto;
    right: 195px;
  }
  .remove-frame {
    left: auto;
    right: 95px;
  }
  /* sits on top of change-photo */
  .photo-library {
    z-index: 2;
  }

  .form:before {
    width: 80%;
    margin-left: 0;
  }

  nav span.sign-up {
    position: absolute;
    font-size: 13px;
    padding: 10px 6px;
    top: 0;
    right: 0;
    margin: 18px 20px 0 0;
  }
}

/* Initial state: hidden and transparent */
.fade-in-section {
  opacity: 0;
  transform: translate(0, 40px);
  transition: all .4s ease-out;
}

@media screen and (max-width: 660px) {
  .fade-in-section {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Class to be added when in view */
.fade-in-section.in-view {
  transform: translate(0, 0);
  opacity: 1;
}

.review-features-heading {
  text-align: center;
  padding: 20px 20px 50px 20px;
  max-width: 800px;
  margin:auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2em;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .review-features-heading {
    font-size: 1.2em;
  }
}

.reviews {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 0 auto;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  font-size: 0;
}

.reviews::-webkit-scrollbar {
  width: 8px;
  background-color: #171b2e;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reviews::-webkit-scrollbar-thumb {
  background-color: #622c8a;
  border-radius: 8px;
}

.review_card {
  display: inline-block;
  width: calc(100% / 3 - 40px);
  white-space: normal;
  vertical-align: top;
  margin: 20px;
  box-sizing: border-box;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  background-color: rgb(120, 56, 162);
  background-color: rgba(23, 27, 46, .25);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: all .3s;
}

.review_card:hover {
  transform: scale(1.025);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.r-header_image {
  height: 40px;
  margin: 0 auto 20px auto;
  width: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.r-hero_image {
  margin: 10px auto;
  height: 400px;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.r-quote {
  min-height: 100px;
}

.r-citation {
  text-align: right;
}

@media screen and (max-width: 1080px) {
  .review_card {
    width: calc(100% / 2 - 40px);
  }
}

@media screen and (max-width: 660px) {
  .review_card {
    width: calc(100% - 40px);
  }
}

/* hack */
.view-analytics {
  display: inline-block !important;
}

/* labs */
.labs-link {
  color: #FF42A1 !important;
}

.nscreenads-about {
  display: none;
}

/* themes */
body.dark {
  background: url(/assets/audio.svg) no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000;
}

body.dark::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, black, transparent);
  z-index: -1;
}

body.dark::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, transparent, black);
  z-index: -1;
}

body.dark nav,
body.dark nav a {
  color: #fff;
}

body.dark .form input,
body.dark #submit {
  color: #fff;
  border: 3px solid #600eb8;
  background: #600eb8;
}

body.dark #businessDescription {
  background: rgb(96 14 184 / 75%);
}

body.dark .tv-info {
  border: 12px solid #600eb8;
}

body.dark .tv-screen-wrapper::before, 
body.dark .tv-screen-wrapper::after {
  background: #600eb8;
}

body.dark .tv-screen {
  background-image: none;
  background: #0e0e0e;
}

body.dark .review_card {
  background-color: rgb(0 0 0 / 75%);
}

body.dark .reviews::-webkit-scrollbar {
  background-color: #0e0e0e;
}

body.dark  .reviews::-webkit-scrollbar-thumb {
  background-color: #cf34bb;
}


body.dark nav span.sign-up {
  border: 3px solid #cf34bb;
  background: rgba(0, 0, 0, .25);
}

body.dark .edit-next, 
body.dark .edit-previous, 
body.dark .change-photo, 
body.dark .photo-library, 
body.dark .add-frame, 
body.dark .remove-frame {
  background: #cf34bb;
  border: 3px solid #cf34bb;
  color: #fff;
}

body.dark .Logos_filmstrip_wrapper {
  background: rgba(255, 255, 255, .15);
  box-shadow: 0px 0px 12px 1px #0e0e0e;
}

.reachtv-faq {
  display: none;
}