/**
File: app.scss
*/
/* Utils */
/**
File: _normalize.scss
*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

/**
Filename: _vars.scss
Description:
This contains variables which can be used globally throughout the .scss files.

Note: placeholders (e.g. %fontColor-title { ...} ) are used for extending. So the compiled CSS will be DRY (Don't Repeat Yourself).
*/
.u-wrapper, .Copyright, .Footer-wrapper, .ContentWrapper, .MastheadBanner-wrapper, .SimpleMasthead-contentWrapper, .MastheadSlider-slides-slide-content-wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 1300px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.u-chevron {
  display: block;
  position: absolute;
}
.u-chevron::before {
  content: " ";
  border: 0.25em solid #EAEAEA;
  border-left-color: transparent;
  border-bottom-color: transparent;
  content: "";
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 60px;
  height: 60px;
}
.u-chevron--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.u-chevron--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/** 
File: _u-zindex.scss
*/
/** 
File: _u-global-extends.scss

Details: 
The purpose of this file is to make classes which can be extended in multiple other scss.
This could save lines of code. 

For example, adding a transition css property can involved multiple vendor prefixes.
So instead of adding it for every element that would need it, if there is a global class which can be extened...
... then it would save lines of code.

E.g. The correct (or at least better in this particular situation) way: 

// _u-extends.scss:
// ----------------------------------
.u-extend-transition-all {
    @include mixinTransition(all $transitionTime-default ease-in-out);
}

// _DownloadSoundHound.scss
// ----------------------------------
.DownloadSoundHound-text-title {
	...
    @extend .u-extend-transition-all--fast;
    ...
}
.DownloadSoundHound-text-detail {
	...
    @extend .u-extend-transition-all--fast;
    ...
}
.DownloadSoundHound-text-logo {
	...
    @extend .u-extend-transition-all--fast;
    ...
}

// Creates this in app.css:
// ----------------------------------

.u-extend-transition-all--fast,
.DownloadSoundHound-text-title,
.DownloadSoundHound-text-detail,
.DownloadSoundHound-logo {
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

Instead of the WORSE way (in this particular situation) which creates much more code...
... NOTE: this only applies if the extended code is more than 1 line.

// _DownloadSoundHound.scss
// ----------------------------------
.DownloadSoundHound-text-title {
	...
    @include mixinTransition(all $transitionTime-default ease-in-out);
    ...
}
.DownloadSoundHound-text-title {
	...
    @include mixinTransition(all $transitionTime-default ease-in-out);
    ...
}
.DownloadSoundHound-text-title {
	...
    @include mixinTransition(all $transitionTime-default ease-in-out);
    ...
}

// Creates this in app.css:
// ----------------------------------

.DownloadSoundHound-text-title {
	...
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	...
}

.DownloadSoundHound-text-detail {
	...
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	...
}

.DownloadSoundHound-logo {
	...
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	...
}

*/
.u-extend-transition-all {
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.u-extend-transition-all--fast, .YouTubeVideos-video {
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

/**
 File: _u-modal.scss
 */
.u-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.7);
}

.u-modal-window {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
}

.u-modal-window--fixed {
  position: fixed;
}

/**
File: _u-fonts.scss

Details:

NOTE: Some of the fonts are used in the project, but I've left the code there in case they become used/useful.

Also, I've commented out .eot and .svg files (since most browsers support .woff). But kept .ttf just in case for older Android devices.


ALSO: See below for details on using @extend 

*/
@font-face {
  font-family: "HelveticaNeueCustom";
  src: url("/fonts/HelveticaNeueLTStd-UltLt.woff") format("woff"), url("/fonts/HelveticaNeueLTStd-UltLt.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "HelveticaNeueCustom";
  src: url("/fonts/HelveticaNeueLTStd-Th.woff") format("woff"), url("/fonts/HelveticaNeueLTStd-Th.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "HelveticaNeueCustom";
  src: url("/fonts/HelveticaNeueLTStd-Lt.woff") format("woff"), url("/fonts/HelveticaNeueLTStd-Lt.ttf") format("truetype");
  font-weight: 300;
}
.FontHelveticaNeueUltraThin {
  font-family: "HelveticaNeueUltraLight", "Helvetica Neue Ultra Light", "HelveticaNeueCustom", "HelveticaNeue", "Helvetica Neue", "TeXGyreHerosRegular", "Arial", sans-serif;
  font-weight: 100;
  font-stretch: normal;
}

.FontHelveticaNeueThin {
  font-family: "HelveticaNeueThin", "Helvetica Neue Thin", "HelveticaNeueCustom", "HelveticaNeue", "Helvetica Neue", "TeXGyreHerosRegular", "Arial", sans-serif;
  font-weight: 200;
  font-stretch: normal;
}

.FontHelveticaNeueLight {
  font-family: "HelveticaNeueLight", "Helvetica Neue Light", "HelveticaNeueCustom", "HelveticaNeue", "Helvetica Neue", "TeXGyreHerosRegular", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-weight: 300;
  font-stretch: normal;
}

.u-mobilebarPushMasthead {
  padding-top: 0;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 800px) {
  .Nav-AreaMobile.showFixedNavList ~ .u-mobilebarPushMasthead, .Nav-AreaMobile.showFixedNavList ~ div .u-mobilebarPushMasthead {
    padding-top: 40px;
  }
}

.u-super {
  font-size: 46%;
}
.u-super--big {
  font-size: 61%;
}

.u-clearBoth {
  clear: both;
}

/**
File: _base-layout.scss
*/
/* BASE CSS for Track, Artist, and Album pages
-------------------------------------------------- */
html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
  background-color: #F3F3F3;
}

.html-isSoundHoundHelp.html-isInApp {
  background-color: #151515;
}

body {
  font-family: "Roboto", GillSans, Calibri, Trebuchet, sans-serif;
  font-weight: 300;
  letter-spacing: 0px;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 26px;
  background: #F3F3F3;
  color: #171717;
  position: static;
}

h2 {
  color: #eee;
  font-size: 1em;
  margin-bottom: 0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: #171717;
  text-decoration: none;
  font-size: normal;
}

a:hover {
  text-decoration: underline;
}

.is-notLoaded * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  vertical-align: bottom;
}

/* ---- l- layout utils ---- */
.l-masthead {
  position: relative;
  z-index: 1;
}
.l-masthead--noNavBar {
  margin-top: -60px;
}

.l-main {
  position: relative;
  z-index: 2;
}

/* ------- Loading ------- */
#loading {
  min-height: 480px;
  height: 100%;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  line-height: 1.4em;
  padding-top: 5px;
}

#loading div.spinner {
  text-align: center;
  padding-top: 30%;
}

/* Vendor Customized Overwrites */
.slider .indicators .indicator-item {
  height: 12px;
  width: 12px;
  margin: 0px 5px;
  border: 1px solid white;
  background-color: #2D302C;
}

.slider .indicators .indicator-item.active {
  background-color: white;
  border: 1px solid #2D302C;
}

.slider .indicators {
  bottom: 20px;
  width: 120px;
  left: 50%;
  margin-left: -60px;
}

div.g-recaptcha {
  margin: 0 auto;
  width: 304px;
}

.btn {
  padding: 0 1rem;
  min-width: 160px;
}

a.btn,
a.btn:hover {
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn:hover, .btn-large:hover, .btn-floating:hover, .btn, .btn-large, .btn-floating {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.col .col {
  display: block;
}

@media (max-width: 600px) {
  .col.s12 {
    margin-top: 10px;
  }

  .col.s12:first-child {
    margin-top: 0;
  }

  .slider .indicators {
    bottom: 3px;
  }
}
.card-panel {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.waves-effect.waves-white .waves-ripple {
  background-color: rgba(33, 150, 243, 0.5);
}

.waves-effect.waves-black .waves-ripple {
  background-color: rgba(200, 200, 200, 0.5);
}

.waves-effect.waves-blue .waves-ripple {
  background-color: rgba(33, 150, 243, 0.5);
}

.waves-effect.waves-grey .waves-ripple {
  background-color: rgba(0, 0, 0, 0.2);
}

.waves-effect.waves-whiteOrange .waves-ripple {
  background-color: rgba(251, 154, 52, 0.5);
}

.waves-effect.waves-whiteBlueHound .waves-ripple {
  background-color: rgba(33, 150, 243, 0.5);
}

.waves-effect.waves-whiteBlueHoundify .waves-ripple {
  background-color: rgba(33, 150, 243, 0.5);
}

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
textarea.materialize-textarea {
  border: 1px solid #CCC;
  height: 62px;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  /* margin-right: -77px; */
  /* margin-left: 3px; */
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 0 30px 0;
}

input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #CCC;
  box-shadow: none;
}

input[type=text].invalid,
input[type=text]:focus.invalid,
input[type=password].invalid,
input[type=password]:focus.invalid,
input[type=email].invalid,
input[type=email]:focus.invalid,
input[type=url].invalid,
input[type=url]:focus.invalid,
input[type=time].invalid,
input[type=time]:focus.invalid,
input[type=date].invalid,
input[type=date]:focus.invalid,
input[type=datetime-local].invalid,
input[type=datetime-local]:focus.invalid,
input[type=tel].invalid,
input[type=tel]:focus.invalid,
input[type=number].invalid,
input[type=number]:focus.invalid,
input[type=search].invalid,
input[type=search]:focus.invalid,
textarea.materialize-textarea.invalid,
textarea.materialize-textarea:focus.invalid {
  border: 1px solid #F44336;
}

textarea.materialize-textarea {
  padding-top: 20px;
  height: 120px;
  min-height: 120px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal-overlay .modal-dialog {
  cursor: auto;
}

.modal-overlay.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal-overlay.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  z-index: 1050;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  padding: 70px 90px 70px 90px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 0px;
}
.modal-header .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.modal-header .modal-close i {
  font-size: 40px;
  color: #CCC;
}
.modal-header .modal-close:hover {
  text-decoration: none;
}
.modal-header .modal-close:hover i {
  color: #DDD;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}
.modal-footer:after {
  clear: both;
}
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 760px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 600px) {
  .modal-content {
    padding: 25px 10px 20px 10px;
  }
  .modal-header .modal-close {
    position: absolute;
    top: 5px;
    right: 2px;
  }
}
/* Mixins */
/* Components (Possibly Layout) */
.Nav {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 60px;
  width: 100%;
  overflow: hidden;
  color: #171717;
  box-shadow: none;
}
.Nav.filled {
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.Nav .Burger {
  display: none;
}
.Nav-content {
  position: absolute;
  right: 0;
  z-index: 2;
  height: 100%;
}
.Nav-hamburger {
  opacity: 0.6;
}
.Nav-hamburger:hover {
  text-decoration: none;
  opacity: 1;
}
.Nav-hamburger-icon:before {
  color: #171717;
}
.Nav-items--topNav {
  height: 100%;
}
.Nav-items--topNav .Nav-items-item {
  height: 100%;
}
.Nav-items-item-link {
  height: 100%;
  color: #171717;
  line-height: 50px;
  border-style: solid;
  border-width: 5px 0 5px 0;
  border-color: transparent;
  font-weight: bold;
}
.Nav-items-item-link--soundhound.active, .Nav-items-item-link--soundhound:hover {
  border-bottom-color: #FB9A34;
}
.Nav-items-item-link--hound.active, .Nav-items-item-link--hound:hover {
  border-bottom-color: #2196F3;
}
.Nav-items-item-link--houndify.active, .Nav-items-item-link--houndify:hover {
  border-bottom-color: #BADEFC;
}
.Nav-items-item-link--download.active, .Nav-items-item-link--download:hover {
  border-bottom-color: #222222;
}
.Nav-items-item-link.active, .Nav-items-item-link:hover {
  border-bottom-width: 5px;
}
.Nav-items-item-link:hover {
  text-decoration: none;
}
.Nav-background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.Nav-background-left, .Nav-background-right {
  position: absolute;
  background-color: transparent;
  background-image: url("../img/Nav/SoundHound-Inc-Nav-1x1.png");
  height: 100%;
  width: 100%;
}
.Nav-background-logo {
  position: absolute;
  color: #fff;
  display: inline-block;
  font-size: 2.1rem;
  padding: 0;
  background-color: transparent;
  line-height: 0;
}
.Nav-background-logo-img {
  width: 244px;
}
.filled .Nav-background-logo-img {
  background-color: black;
}
.Nav-background-logo-a {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.Nav-background-logo-a--filled {
  background-color: #333;
}
.Nav-background-left {
  display: none;
}
.Nav-background-right {
  margin-left: 243px;
}
.Nav-AreaMobile {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: 0;
  z-index: 4;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  overflow: hidden;
}
.Nav-AreaMobile-container {
  position: absolute;
  background-color: rgba(33, 33, 33, 0.5);
  top: 0;
  width: 100%;
  left: 0;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}
.Nav-AreaMobile .Nav-items-item-link {
  font-weight: 300 !important;
}
@media (max-width: 400px) {
  .Nav-AreaMobile .Nav-items-item-link {
    font-size: 14px;
  }
}
.Nav-AreaMobile ul {
  display: table;
  width: 100%;
  margin: 0;
}
.Nav-AreaMobile ul li {
  display: table-cell;
  text-align: center;
  font-weight: bold;
  height: 100%;
}
.Nav-AreaMobile ul li a, .Nav-AreaMobile ul li a:hover {
  color: white;
}
.Nav-AreaMobile ul li a {
  display: block;
  height: 100%;
  line-height: 30px;
}
@media (max-width: 800px) {
  .Nav .Burger {
    display: block;
  }
  .Nav-items--topNav {
    display: none;
  }
  .Nav-AreaMobile.showFixedNavList {
    height: 40px;
  }
  .Nav-AreaMobile.showFixedNavList .Nav-AreaMobile-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.Burger {
  border: none;
  background: none;
  appearance: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 50px;
  z-index: 444;
  margin-right: 5px;
  cursor: pointer;
}

.Burger:focus {
  outline: 0;
}

.Burger .bars {
  width: 28px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -12px;
  will-change: transform;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}

.Burger .bar {
  width: 100%;
  height: 4px;
  background: #666;
  display: block;
  position: absolute;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}

.Burger .bar2 {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}

.Burger .bar3 {
  -webkit-transform: translateY(16px);
  -ms-transform: translateY(16px);
  transform: translateY(16px);
}

.Burger.active .bars, .mobile-menu-trigger:checked + .banner .Burger .bars {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}

.Burger.active .bar, .mobile-menu-trigger:checked + .banner .Burger .bar {
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.Burger.active .bar1, .mobile-menu-trigger:checked + .banner .Burger .bar1 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.Burger.active .bar2, .Burger.active .bar3, .mobile-menu-trigger:checked + .banner .Burger .bar2, .mobile-menu-trigger:checked + .banner .Burger .bar3 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.MastheadSlider {
  position: relative;
  min-height: 560px;
  max-height: 670px;
  height: 71vh;
  width: 100%;
  background-color: white;
  overflow: hidden;
}
.MastheadSlider--short {
  height: 460px;
  max-height: 460px;
}
.MastheadSlider--shortCapable {
  min-height: 340px;
}
.MastheadSlider--home .u-chevron::before {
  border-color: #888;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.MastheadSlider .MastheadSlider-slides {
  height: 100%;
  background-color: white;
}
.MastheadSlider .slides li img {
  height: auto;
  width: auto;
}
.MastheadSlider-slides {
  background-color: #9e9e9e;
  margin: 0;
  overflow: hidden;
}
.MastheadSlider-slides-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: inherit;
  overflow: hidden;
  background-color: white;
}
.slider .slides li .MastheadSlider-slides-slide-imgBack {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translate(0px, 0px);
}
.slider .slides li .MastheadSlider-slides-slide-imgBack--mobile {
  visibility: hidden;
}
@media (max-width: 900px) {
  .slider .slides li .MastheadSlider-slides-slide-imgBack--mobile {
    visibility: visible;
  }
}
.slider .slides li .MastheadSlider-slides-slide-imgBack--desktop {
  visibility: visible;
}
@media (max-width: 900px) {
  .slider .slides li .MastheadSlider-slides-slide-imgBack--desktop {
    visibility: hidden;
  }
}
.slider .slides li .MastheadSlider-slides-slide-imgFore {
  position: relative;
  padding-top: 20px;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.slider .slides li .MastheadSlider-slides-slide-imgFore-img {
  height: 100%;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.slider .slides li .MastheadSlider-slides-slide-imgFore--home {
  left: 40%;
  width: 50%;
}
.slider .slides li .MastheadSlider-slides-slide-sideImg {
  position: absolute;
  left: 60%;
  bottom: 0;
  height: 95%;
}
.slider .slides li .MastheadSlider-slides-slide-sideImg--houndify {
  margin-left: -7%;
}
.MastheadSlider-slides-slide-homeContent {
  position: absolute;
  top: 14%;
  left: 2%;
  padding-left: 20px;
  width: 60%;
  height: 100%;
  text-align: left;
  font-size: 18px;
}
.slider .slides li .MastheadSlider-slides-slide-homeContent-topImg {
  height: auto;
  width: 80%;
}
.slider .slides li .MastheadSlider-slides-slide-homeContent-topImg .sh_logo {
  width: 82%;
}
.slider .slides li .MastheadSlider-slides-slide-homeContent-topImg {
  height: auto;
  width: 80%;
}
.slider .slides li .MastheadSlider-slides-slide-homeContent-topImg-sh_logo {
  width: 82%;
}
.MastheadSlider-slides-slide-homeContent-text {
  position: relative;
  line-height: 1.6;
  left: 18.6%;
  width: 75%;
  max-width: 380px;
  top: 2vh;
  top: 15px;
}
.MastheadSlider-slides-slide-homeContent-title {
  font-weight: 600;
}
.MastheadSlider-slides-slide-homeContent-links {
  margin-top: 30px;
  margin-top: 4vh;
}
.MastheadSlider-slides-slide-homeContent-links-link a {
  color: #2196F3;
}
.MastheadSlider-slides-slide-homeContent-links-link:hover {
  text-decoration: underline;
}
.MastheadSlider-slides-slide-homeContent-extraHtml {
  margin-top: 6%;
}
.MastheadSlider-slides-slide-homeContent-downloads {
  width: 240px;
}
.MastheadSlider-slides-slide::before {
  content: " ";
  display: block;
}
.MastheadSlider-slides-slide::after {
  content: " ";
  display: block;
}
.MastheadSlider-slides-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0;
  height: 100%;
  padding-top: 60px;
}
.MastheadSlider-slides-slide-content-wrapper {
  height: 100%;
}
.MastheadSlider-slides-slide-content-atBottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.MastheadSlider-slides-slide-content-textContent {
  display: table;
  height: 100%;
}
.MastheadSlider-slides-slide-content-textContent .TextContent {
  display: table-cell;
  vertical-align: middle;
  max-width: 680px;
}
.MastheadSlider .indicators {
  z-index: 9;
}
.MastheadSlider-prevNextBar {
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 120px;
  opacity: 0.5;
  z-index: 10;
  cursor: pointer;
}
.MastheadSlider-prevNextBar:hover {
  opacity: 0.9;
}
.MastheadSlider-prevNextBar--prev {
  left: 0px;
}
.MastheadSlider-prevNextBar--next {
  right: 0px;
}
.MastheadSlider-prevNextBar-chevron {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  z-index: 10;
}
.MastheadSlider-prevNextBar-chevron--prev {
  left: 30px;
}
.MastheadSlider-prevNextBar-chevron--next {
  right: 30px;
}
@media (max-width: 840px) {
  .MastheadSlider {
    height: auto;
    min-height: 460px;
  }
  .MastheadSlider::before {
    content: " ";
    display: block;
    height: 60px;
  }
  .MastheadSlider::after {
    content: " ";
    display: block;
    padding-bottom: 60%;
  }
}
@media (max-width: 840px) {
  .MastheadSlider-prevNextBar {
    display: none;
  }
  .MastheadSlider-slides-slide-homeContent {
    width: 100%;
    top: 6%;
  }
  .slider .slides li .MastheadSlider-slides-slide-homeContent-topImg {
    width: 70%;
  }
  .slider .slides li .MastheadSlider-slides-slide-homeContent-topImg-sh_logo {
    width: 72%;
  }
  .MastheadSlider-slides-slide-homeContent-text {
    max-width: none;
    left: 16.4%;
    width: 78%;
  }
  .MastheadSlider-slides-slide-sideImg {
    display: none;
  }
}
@media (max-width: 390px) {
  .HomePage .MastheadSlider {
    height: auto;
    min-height: 410px !important;
  }
}
@media (max-width: 840px) {
  .Page--MastheadCanGrow .MastheadSlider {
    min-height: 300px;
    max-height: none;
  }
  .Page--MastheadCanGrow .MastheadSlider::after {
    content: " ";
    display: block;
    padding-bottom: 20px;
  }
  .Page--MastheadCanGrow .MastheadSlider-slides {
    position: static !important;
    display: block !important;
    height: auto !important;
    min-height: 300px;
    max-height: none;
  }
  .Page--MastheadCanGrow .MastheadSlider-slides-slide {
    position: static !important;
    display: block !important;
    height: auto !important;
    min-height: 300px;
    max-height: none;
  }
  .Page--MastheadCanGrow .MastheadSlider-slides-slide-content {
    position: static !important;
    display: block !important;
    height: auto !important;
    min-height: 300px;
    max-height: none;
    padding-top: 20px;
  }
}
@media (max-width: 400px) {
  .MastheadSlider--shortCapable {
    min-height: 0;
  }
  .MastheadSlider--shortCapable::after {
    padding-bottom: 95%;
  }
}

#MastheadSlider-houndify-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 500px !important;
  height: auto;
  max-width: 90%;
  margin-top: -30px;
}

.SimpleMasthead {
  margin-top: 60px;
}
.SimpleMasthead-contentWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.SimpleMasthead-content {
  flex: 1;
  margin-right: 15px;
}
.SimpleMasthead-content-title {
  font-size: 28px;
  font-weight: 300;
}
.SimpleMasthead-content-title + .SimpleMasthead-content-subtitle {
  margin-top: 15px;
}
.SimpleMasthead-content a {
  color: #0072BE;
}
.SimpleMasthead-sideImg {
  flex: 1;
  margin-top: 50px;
  margin-left: 15px;
  margin-bottom: 30px;
}
.SimpleMasthead-sideImg-img {
  width: 100%;
}
@media (max-width: 601px) {
  .SimpleMasthead {
    padding-bottom: 15px;
  }
  .SimpleMasthead-contentWrapper {
    flex-direction: column;
  }
  .SimpleMasthead-content {
    margin-top: 30px;
    margin-right: 0;
  }
  .SimpleMasthead-sideImg {
    margin-top: 30px;
    margin-left: 0;
  }
}

.MastheadSingle {
  position: relative;
  min-height: 560px;
  max-height: 670px;
  height: 71vh;
  width: 100%;
  background-color: white;
}
.MastheadSingle-backgroundImg {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
}
.MastheadSingle-content {
  z-index: 10;
}
.MastheadSingle--short {
  height: 460px;
  max-height: 460px;
}
.MastheadSingle--shortCapable {
  min-height: 340px;
}
@media (max-width: 840px) {
  .MastheadSingle {
    height: auto;
  }
  .MastheadSingle::before {
    content: " ";
    display: block;
    height: 60px;
  }
  .MastheadSingle::after {
    content: " ";
    display: block;
    padding-bottom: 72.619047619%;
  }
}
.MastheadBanner {
  width: 100%;
  min-height: 136px;
  transition: all 1s ease;
  background-color: #898989;
  color: white;
}
.MastheadBanner--orange {
  background-color: #FB9A34;
}
.MastheadBanner--blue {
  background-color: #2196F3;
}
.MastheadBanner--blueLight {
  background-color: #BADEFC;
  color: #333;
}
.MastheadBanner--grey {
  background-color: #898989;
}
.MastheadBanner--orangeDark {
  background-color: #FB6134;
}
.MastheadBanner-leftImg {
  display: block;
  position: absolute;
  width: 100px;
  top: 20px;
  left: 10px;
}
.MastheadBanner-text {
  display: table;
  min-height: 136px;
}
.MastheadBanner-text--hasLeftImg {
  padding-left: 120px;
}
.MastheadBanner-text-container {
  display: table-cell;
  vertical-align: middle;
}
.MastheadBanner-title {
  font-size: 28px;
  padding-top: 30px;
  padding-bottom: 15px;
  line-height: 36px;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 5px;
}
.MastheadBanner-subtitle {
  line-height: 24px;
  font-size: 18px;
  padding-bottom: 26px;
}
.MastheadBanner .btn {
  display: none;
}
.MastheadBanner-text--extraButton {
  padding-right: 176px;
}
.MastheadBanner-extraButton {
  position: absolute;
  height: 100%;
  top: 50px;
  right: 0;
  padding-right: 20px;
}
@media (max-width: 480px) {
  .MastheadBanner-leftImg {
    width: 70px;
    left: 20px;
  }
  .l-masthead--shortBanner .MastheadBanner {
    min-height: 60px;
    max-height: 60px;
  }
  .MastheadBanner-text--hasLeftImg {
    padding-left: 0;
  }
  .MastheadBanner-text--hasLeftImg .MastheadBanner-title {
    font-size: 26px;
    line-height: 33px;
    display: table;
    min-height: 125px;
    padding-left: 120px;
    min-height: 95px;
    padding-left: 90px;
    font-size: 20px;
  }
  .MastheadBanner-text--hasLeftImg .MastheadBanner-title-container {
    display: table-cell;
    vertical-align: middle;
  }
  .MastheadBanner-text--hasLeftImg .MastheadBanner-subtitle {
    padding-top: 10px;
  }
}

.MastheadBannerData {
  display: none;
}

.ContentWrapper {
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.ContentWrapper--noSlider {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .ContentWrapper {
    padding-top: 10px;
  }
}

.ContentCards {
  max-width: 100%;
}
.ContentCards-row {
  margin-left: -10px !important;
  margin-right: -10px !important;
  margin-bottom: 0 !important;
}
.ContentCards-col {
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-bottom: 40px !important;
}
.ContentCards-col--containerCard {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 1000px) and (min-width: 601px) {
  .ContentCards-col.col.m3.s12 {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .ContentCards-col:not(.ContentCards-col--containerCard) {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }
}

.ImageCard {
  background-color: white;
  transition: all 250ms ease;
  transform: scale(1);
  width: 100%;
}
.ImageCard.AlertCard .ImageCard-subtitle {
  font-weight: bold;
}
.ImageCard.AlertCard .ImageCard-title {
  font-size: 2em;
  padding-top: 16px;
  padding-bottom: 25px;
}
.ImageCard--withLink {
  cursor: pointer;
}
.ImageCard--withLink:hover {
  transform: scale(1.03);
}
.ImageCard-img {
  width: 100%;
}
.ImageCard-img-container--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background-color: black;
}
.ImageCard-img--icon {
  width: auto;
  height: 100px;
}
.ImageCard-text {
  display: table;
  width: 100%;
}
.ImageCard-text-cell {
  text-align: center;
  padding: 10px;
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  line-height: 1.4em;
}
.ImageCard-title {
  font-weight: 600;
  font-size: 18px;
}
.ImageCard-subtitle {
  font-size: 18px;
}
.ImageCard-subtitle-group {
  display: inline-block;
}
.ImageCard-subtitle-group--big {
  font-size: 20px;
}
.ImageCard a:hover {
  text-decoration: none;
}
@media (max-width: 1118px) {
  .row .ImageCard--SoundHoundImageCard.col {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .row .ImageCard--SoundHoundImageCard.col {
    width: 100%;
  }
}

.TextCard {
  position: relative;
  background-color: white;
  padding: 40px;
  min-height: 220px;
  line-height: 1.4;
  width: 100%;
}
.TextCard-text {
  display: block;
}
.TextCard-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 15px;
  word-wrap: break-word;
}
.TextCard-subtitle {
  font-size: 18px;
}
.TextCard-title + .TextCard-subtitle {
  margin-top: 20px;
}
.TextCard-subtitle + .TextCard-textButton {
  margin-top: 20px;
}
.TextCard-sideImg {
  float: left;
  display: block;
  width: 90px;
}
.TextCard-sideImg-container {
  text-align: center;
}
.TextCard-sideImg-img {
  width: 100%;
}
.TextCard--withStaticTextButton .TextCard-textButton {
  position: static !important;
  top: auto !important;
  right: auto !important;
}
@media (max-width: 480px) {
  .TextCard {
    padding: 0;
    min-height: 0;
  }
  .TextCard-text {
    padding: 16px;
  }
  .TextCard-textButton {
    position: static;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 16px;
    padding-left: 0;
    paddinb-bottom: 5px;
  }
  .TextCard-textButton .btn.margin-button, .TextCard-textButton .btn {
    margin: 0;
  }
}
.TextCard--Hound-invite {
  height: 160px;
  min-height: 160px;
  max-height: 160px;
}
.TextCard--Hound-invite .TextCard-sideImg {
  width: 90px;
  margin-top: -12px;
}
.TextCard--Hound-invite .TextCard-text {
  width: auto;
  margin-left: 130px;
}
.TextCard--Hound-invite .TextCard-subtitle {
  margin-right: 190px;
  margin-top: -12px;
}
.TextCard--Hound-invite .TextCard-textButton {
  position: absolute;
  top: 35%;
  right: 0;
  margin-right: 40px;
}
.TextCard--Hound-longTall {
  padding: 0px;
  display: table;
}
.TextCard--Hound-longTall .TextCard-container {
  display: table-row;
}
.TextCard--Hound-longTall .TextCard-sideImg {
  display: table-cell;
  vertical-align: middle;
  width: 33.333%;
  float: none;
}
.TextCard--Hound-longTall .TextCard-text {
  display: table-cell;
  vertical-align: middle;
  width: 66.666%;
}
.TextCard--Hound-longTall .TextCard-text-container {
  display: block;
  min-height: 220px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
}
.TextCard--Hound-longTall--domains .TextCard-sideImg-img {
  margin-top: 2%;
  width: 98%;
  margin-bottom: 2%;
}
@media (max-width: 695px) {
  .TextCard--Hound-longTall {
    display: block;
  }
  .TextCard--Hound-longTall .TextCard-container {
    display: block;
  }
  .TextCard--Hound-longTall .TextCard-sideImg {
    display: block;
    width: 100%;
    padding-top: 20px;
  }
  .TextCard--Hound-longTall .TextCard-text {
    display: block;
    width: 100%;
  }
  .TextCard--Hound-longTall .TextCard-text-container {
    min-height: 0;
    padding: 40px;
  }
  .TextCard--Hound-longTall--domains .TextCard-sideImg-img {
    margin-top: 1%;
    margin-bottom: 0;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .TextCard--Hound-longTall .TextCard-text-container {
    padding: 0;
  }
}
.TextCard--HoundifyCTACard .TextCard-subtitle {
  margin-bottom: 15px;
}
.TextCard--HoundifyCTACard .TextCard-text-container {
  padding-bottom: 40px;
}
.TextCard--HoundifyCTACard .TextCard-textButton {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media (max-width: 480px) {
  .TextCard--HoundifyCTACard {
    padding: 0;
  }
  .TextCard--HoundifyCTACard .TextCard-text-container {
    padding-bottom: 0;
  }
  .TextCard--HoundifyCTACard .TextCard-subtitle {
    margin: 0;
  }
  .TextCard--HoundifyCTACard .TextCard-textButton {
    position: static;
    left: auto;
    bottom: auto;
  }
}
.TextCard--colorSoundHound {
  background-color: #FB9A34;
  color: #171717;
}
.TextCard--colorHound {
  background-color: #2196F3;
  color: #171717;
}
.TextCard--colorHoundify {
  background-color: #BADEFC;
  color: #171717;
}

.TextUlCard {
  position: relative;
  background-color: white;
  padding: 40px;
  min-height: 220px;
  line-height: 1.4;
  overflow: auto;
}
.TextUlCard-Ul ul {
  list-style-type: disc;
  padding-left: 0.5em;
}
.TextUlCard-Ul ul li {
  list-style-type: inherit;
}
.TextUlCard-text {
  display: block;
  padding: 0;
}
.row .TextUlCard-text.col {
  display: block;
  padding: 0;
}
.TextUlCard-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 15px;
  word-wrap: break-word;
}
.TextUlCard-subtitle {
  font-size: 18px;
}
.TextUlCard-title + .TextUlCard-subtitle {
  margin-top: 20px;
}
.TextUlCard-subtitle + .TextUlCard-textButton {
  margin-top: 20px;
}
.TextUlCard-sideImg {
  float: left;
  display: block;
  width: 90px;
}
.TextUlCard--Hound-invite {
  height: 160px;
  min-height: 160px;
  max-height: 160px;
}
.TextUlCard--Hound-invite .TextUlCard-sideImg {
  width: 90px;
  margin-top: -12px;
}
.TextUlCard--Hound-invite .TextUlCard-text {
  width: auto;
  margin-left: 130px;
}
.TextUlCard--Hound-invite .TextUlCard-subtitle {
  margin-right: 190px;
  margin-top: -12px;
}
.TextUlCard--Hound-invite .TextUlCard-textButton {
  position: absolute;
  top: 35%;
  right: 0;
  margin-right: 40px;
}
.TextUlCard--Hound-longTall .TextUlCard-sideImg {
  width: 33.333%;
  margin-left: -40px;
  padding-left: 20px;
  padding-right: 20px;
}
.TextUlCard--Hound-longTall .TextUlCard-text {
  margin-left: 33%;
}
.TextUlCard--HoundifyCTACard .TextUlCard-subtitle {
  margin-bottom: 50px;
  min-height: 50px;
}
.TextUlCard--HoundifyCTACard .TextUlCard-textButton {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.TextUlCard--colorSoundHound {
  background-color: #FB9A34;
  color: #171717;
}
.TextUlCard--colorHound {
  background-color: #2196F3;
  color: #171717;
}
.TextUlCard--colorHoundify {
  background-color: #BADEFC;
  color: #171717;
}
@media (max-width: 480px) {
  .TextUlCard {
    padding: 16px;
  }
}

.ScrollingCard {
  position: relative;
  background-color: white;
  padding: 40px;
  padding-left: 0px;
  padding-right: 0px;
  line-height: 1.4;
  width: 100%;
}
.ScrollingCard-title {
  font-weight: 600;
  font-size: 26px;
  padding-left: 40px;
  padding-right: 40px;
}
.ScrollingCard-body {
  overflow: hidden;
  position: relative;
  height: 90px;
  margin-top: 20px;
}
.ScrollingCard-body-image {
  background: url(/corp_new/img/A_d/Parnters_Logo_Strip_90x7650.png);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10000px;
  -webkit-animation: slideshow 100s linear infinite;
  -moz-animation: slideshow 100s linear infinite;
  -o-animation: slideshow 100s linear infinite;
  animation: slideshow 100s linear infinite;
}
.ScrollingCard-body-image.pauseable:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@media (max-width: 480px) {
  .ScrollingCard {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .ScrollingCard-title {
    font-size: 21px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .ScrollingCard-body {
    height: 45px;
    margin-bottom: 16px;
  }
  .ScrollingCard-body-image {
    background-size: auto 45px;
    -webkit-animation: slideshowMobile 70s linear infinite;
    -moz-animation: slideshowMobile 70s linear infinite;
    -o-animation: slideshowMobile 70s linear infinite;
    animation: slideshowMobile 70s linear infinite;
  }
}

@-webkit-keyframes slideshow {
  0% {
    left: 0;
  }
  100% {
    left: -7650px;
  }
}
@-moz-keyframes slideshow {
  0% {
    left: 0;
  }
  100% {
    left: -7650px;
  }
}
@-o-keyframes slideshow {
  0% {
    left: 0;
  }
  100% {
    left: -7650px;
  }
}
@keyframes slideshow {
  0% {
    left: 0;
  }
  100% {
    left: -7650px;
  }
}
@-webkit-keyframes slideshowMobile {
  0% {
    left: 0;
  }
  100% {
    left: -3825px;
  }
}
@-moz-keyframes slideshowMobile {
  0% {
    left: 0;
  }
  100% {
    left: -3825px;
  }
}
@-o-keyframes slideshowMobile {
  0% {
    left: 0;
  }
  100% {
    left: -3825px;
  }
}
@keyframes slideshowMobile {
  0% {
    left: 0;
  }
  100% {
    left: -3825px;
  }
}
.HtmlCard {
  background-color: white;
  padding: 40px;
  min-height: 220px;
  width: 100%;
}
.HtmlCard-text {
  display: table;
  width: 100%;
}
.HtmlCard-title {
  font-weight: 600;
  font-size: 26px;
}
.HtmlCard-subtitle {
  font-weight: 600;
  font-size: 18px;
}
.HtmlCard-title + .HtmlCard-subtitle {
  margin-top: 20px;
}
.HtmlCard-title + .HtmlCard-html {
  margin-top: 20px;
}
.HtmlCard-subtitle + .HtmlCard-html {
  margin-top: 20px;
}
.HtmlCard--autoHeight, .HtmlCard--houndify-socialmedia {
  height: auto;
  min-height: 0;
}
.HtmlCard--houndify-socialmedia, .HtmlCard--DownloadSocialCard {
  text-align: center;
  background-color: transparent;
  padding: 0;
}
.HtmlCard--DownloadSocialCard {
  min-height: 0;
}
.HtmlCard--DownloadSocialCard .HtmlCard-html {
  min-height: 0;
  width: 100%;
}
@media (max-width: 480px) {
  .HtmlCard {
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .HtmlCard--DownloadSocialCard {
    min-height: 0;
  }
}

.DownloadCard {
  position: relative;
  background-color: white;
  padding: 40px;
  min-height: 350px;
  overflow: hidden;
  width: 100%;
  font-size: 18px;
}
.DownloadCard-topImg {
  height: auto;
  width: 500px;
}
.DownloadCard-text {
  position: relative;
  line-height: 1.6;
  margin-left: 117px;
  padding-right: 40%;
}
.DownloadCard-title {
  font-weight: 600;
}
.DownloadCard-sideImg {
  position: absolute;
  bottom: 0;
  right: 0%;
  height: 100%;
  width: 36%;
}
.DownloadCard-sideImg-img {
  height: 95%;
  position: absolute;
  bottom: -20px;
  right: 14%;
}
.DownloadCard--hound .DownloadCard-sideImg-img, .DownloadCard--soundhound .DownloadCard-sideImg-img {
  height: 390px;
}
.DownloadCard--soundhound .DownloadCard-sideImg-img {
  bottom: -60px;
}
.DownloadCard-links {
  margin-top: 30px;
  margin-top: 4vh;
}
.DownloadCard-links-link a {
  color: #2196F3;
}
.DownloadCard-links-link:hover {
  text-decoration: underline;
}
.DownloadCard-extraHtml {
  margin-top: 2%;
}
.DownloadCard-textButton {
  margin-top: 32px;
}
.DownloadCard--houndify .DownloadCard-text {
  padding-right: 395px;
}
.DownloadCard--houndify .DownloadCard-sideImg-img {
  right: 2%;
  bottom: auto;
  width: 430px;
  height: auto;
  top: 60px;
}
@media (min-width: 951px) and (max-width: 1080px) {
  .DownloadCard-extraHtml {
    width: 300px;
  }
  .DownloadCard .DownloadButton:nth-child(even) {
    margin-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 950px) {
  .DownloadCard-sideImg {
    display: none;
  }
  .DownloadCard-text {
    padding-right: 0px !important;
  }
}
@media (max-width: 775px) {
  .DownloadCard-extraHtml {
    width: 300px;
  }
  .DownloadCard .DownloadButton:nth-child(even) {
    margin-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .DownloadCard-text {
    margin-left: 0.1%;
    margin-top: 25px;
  }
  .DownloadCard-topImg {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .DownloadCard {
    padding: 16px;
    min-height: 0;
  }
}

.TextButton {
  font-style: normal;
}
.TextButton.btn:hover, .TextButton.btn:focus {
  background-color: white;
}
.TextButton--fullWidth {
  width: 100%;
}
.TextButton--white {
  background-color: white;
  border-color: white;
  color: #0062C7 !important;
}
.TextButton--white.btn:hover, .TextButton--white.btn:focus {
  background-color: #EEE;
}
.TextButton--black {
  background-color: black;
  border-color: black;
  color: white !important;
}
.TextButton--black.btn:hover, .TextButton--black.btn:focus {
  background-color: #333;
}
.TextButton--blue {
  background-color: #2196F3;
  border-color: #2196F3;
  color: white !important;
}
.TextButton--blue.btn:hover, .TextButton--blue.btn:focus {
  background-color: #2196F3;
}
.TextButton--grey {
  background-color: #E5E5E5;
  border-color: #555;
  color: #555 !important;
}
.TextButton--whiteOrange {
  background-color: white;
  border-color: white;
  color: #FB9A34 !important;
}
.TextButton--whiteOrange.btn:hover, .TextButton--whiteOrange.btn:focus {
  background-color: white;
}
.TextButton--whiteBlueHound {
  background-color: white;
  border-color: white;
  color: #2196F3 !important;
}
.TextButton--whiteBlueHound.btn:hover, .TextButton--whiteBlueHound.btn:focus {
  background-color: white;
}
.TextButton--whiteBlueHoundify {
  background-color: white;
  border-color: white;
  color: #2196F3 !important;
}
.TextButton--whiteBlueHoundify.btn:hover, .TextButton--whiteBlueHoundify.btn:focus {
  background-color: white;
}

.Footer {
  background-color: #E1E1E1;
  font-size: 16px;
  padding-top: 36px;
  padding-bottom: 16px;
}
.Footer-items {
  font-size: 14px;
  text-align: justify;
  width: 100%;
}
.Footer-items--JapanPage {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.Footer-items-item {
  display: inline-block;
}
.Footer-items:after {
  content: " ";
  display: inline-block;
  width: 100%;
  height: 0;
}
.Footer-items-group {
  display: inline;
}
@media (max-width: 840px) {
  .Footer-items-item {
    display: block;
    float: left;
    width: 25%;
    text-align: left;
  }
}
@media (max-width: 680px) {
  .Footer-items-item {
    display: block;
    float: left;
    width: 33.3333%;
    text-align: left;
  }
  .Footer-items-item:nth-child(3n+1) {
    width: 40%;
  }
  .Footer-items-item:nth-child(3n+2) {
    width: 30%;
  }
  .Footer-items-item:nth-child(3n+0) {
    width: 30%;
  }
}
@media (max-width: 510px) {
  .Footer-items-item {
    display: block;
    float: left;
    width: 50%;
    text-align: left;
  }
  .Footer-items-item:nth-child(odd) {
    width: 60%;
  }
  .Footer-items-item:nth-child(even) {
    width: 40%;
  }
}

.Copyright {
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.5px;
  line-height: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 680px) {
  .Copyright-text {
    display: block;
  }
  .Copyright-spacer {
    display: none;
  }
}
@media (max-width: 350px) {
  .Copyright-text2 {
    display: block;
  }
  .Copyright-spacer2 {
    display: none;
  }
}

/**
File: _YouTubeVideos.scss 
*/
/* ------- You Tube ------- */
.YouTubeVideos-cardTitle {
  z-index: 1;
}
.YouTubeVideos-video-tile-thumb {
  cursor: pointer;
}
.YouTubeVideos-video-img {
  position: relative;
  width: 100%;
  z-index: 3;
}
.YouTubeVideos-video-play {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/ic/ic_btn_video_play.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  opacity: 0.45;
  filter: alpha(opacity=45);
  -webkit-transition: opacity 300ms ease-in;
  -o-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
.YouTubeVideos-video-play-clickHighlightArea {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #404040;
  opacity: 0.01;
  filter: alpha(opacity=1);
  -webkit-transition: opacity 300ms ease-in;
  -o-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
.YouTubeVideos-video-modalWindow {
  display: table;
  max-width: 1000px;
  margin: auto;
}
.YouTubeVideos-video-modalWindow-container {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.YouTubeVideos-video-modalWindow-containerRelative {
  position: relative;
  width: 100%;
}
.YouTubeVideos-video-modalWindow-closeButton {
  position: absolute;
  display: block;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.YouTubeVideos-video-iframeContainer {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio = 56.25% */
  padding-top: 30px;
  height: 0;
  margin: 5px;
  background-color: #171717;
  z-index: 1;
}
.YouTubeVideos-video-iframeContainer-iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.YouTubeVideos-video-iframeContainer.isLoading {
  background-image: url(../img/tempImages/loading-temp.gif);
  background-position: center;
  background-repeat: no-repeat;
}
.YouTubeVideos-swiper-slide.isSelected .YouTubeVideos-video-play, .YouTubeVideos-video-play:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.YouTubeVideos-swiper-slide.isSelected .YouTubeVideos-video-play-clickHighlightArea {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.YouTubeThumbsCard {
  background-color: white;
  transition: all 250ms ease;
  transform: scale(1);
  width: 100%;
}
.YouTubeThumbsCard-thumbs {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.YouTubeThumbsCard-thumbs-container {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px;
}
.YouTubeThumbsCard-thumbs-container-table {
  height: 100%;
  width: 100%;
}
.YouTubeThumbsCard-thumb {
  display: block;
  width: 100%;
  height: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 250ms ease;
  transform: scale(1);
}
.YouTubeThumbsCard-thumb:hover {
  transform: scale(1.03);
}
.YouTubeThumbsCard-thumb:first-child {
  padding-top: 0;
}
.YouTubeThumbsCard-thumb:last-child {
  padding-bottom: 0;
}
.YouTubeThumbsCard-thumb-sideImg {
  display: inline-block;
  vertical-align: middle;
  background-image: url(/corp_new/img/HoundHelp/Video2_Uber_800x520.png);
  background-size: cover;
  background-position: center;
  width: 45%;
  height: 100%;
  float: left;
}
.YouTubeThumbsCard-thumb-text {
  display: inline-block;
  vertical-align: middle;
  width: 55%;
  float: left;
  height: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
}
.YouTubeThumbsCard-thumb-text-container {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.YouTubeThumbsCard-thumb-text:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */
}
.YouTubeThumbsCard-thumb-text-title {
  font-weight: bold;
  font-size: 18px;
}
.YouTubeThumbsCard-thumb-text-subtitle {
  font-size: 14px;
}
.YouTubeThumbsCard-thumb-text-title {
  white-space: normal;
  width: 100%;
  display: block;
  line-height: 20px;
}
.YouTubeThumbsCard-thumb-text-subtitle {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  overflow: hidden;
}
.YouTubeThumbsCard-img {
  width: 100%;
}
.YouTubeThumbsCard-text {
  display: table;
  width: 100%;
}
.YouTubeThumbsCard-text-cell {
  text-align: center;
  padding: 10px;
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  line-height: 1.4em;
}
.YouTubeThumbsCard-title {
  font-weight: 600;
  font-size: 26px;
}
.YouTubeThumbsCard-subtitle {
  font-size: 18px;
}
@media (max-width: 600px) {
  .YouTubeThumbsCard-thumbs-container {
    padding: 10px;
  }
  .YouTubeThumbsCard-thumb {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .YouTubeThumbsCard-thumb-text-title, .YouTubeThumbsCard-thumb-text-subtitle {
    white-space: normal;
  }
  .YouTubeThumbsCard-thumb-text-title {
    line-height: 20px;
  }
  .YouTubeThumbsCard-thumb-text-subtitle {
    line-height: 18px;
    padding-top: 2px;
  }
}

/**
File: _CloseButton.scss
*/
.CloseButton {
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: 41px;
  background-image: url(../img/ic/ic_btn_gallery_close@2x.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.CloseButton--inCard {
  display: none;
  float: right;
  margin-top: -11px;
  margin-right: -11px;
}

.DownloadButton {
  display: inline-block;
  background-image: url("/corp_new/img/Other_Elements/SoundHound_Buttons_sprite_492x292.png");
  background-size: 200%;
  margin-top: 15px;
  width: 93px;
  height: 28px;
  cursor: pointer;
}
.DownloadButton--small {
  width: 75px;
  height: 22px;
}
.DownloadButton--spaced {
  margin-right: 20px;
}
.DownloadButton--iOS {
  background-position: 0 0;
}
.DownloadButton--iOS:hover {
  background-position: 0 33.3333333333%;
}
.DownloadButton--aOS {
  background-position: 100% 0;
}
.DownloadButton--aOS:hover {
  background-position: 100% 33.3333333333%;
}
.DownloadButton--win {
  background-position: 0 66.6666666667%;
}
.DownloadButton--win:hover {
  background-position: 0 100%;
}
.DownloadButton--bb {
  background-position: 100% 66.6666666667%;
}
.DownloadButton--bb:hover {
  background-position: 100% 100%;
}
.DownloadButton:last-child {
  margin-right: 0;
}

.SocialButton {
  display: inline-block;
  background-image: url("/corp_new/img/Other_Elements/Social-Media-icons-sprite-inline.png");
  background-size: 800%;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.SocialButton--small {
  width: 35px;
  height: 35px;
}
.SocialButton--spaced {
  margin-right: 20px;
}
.SocialButton--facebook {
  background-position: 0 0;
}
.SocialButton--facebook:hover {
  background-position: 0 100%;
}
.SocialButton--twitter {
  background-position: 14.2857142857% 0;
}
.SocialButton--twitter:hover {
  background-position: 14.2857142857% 100%;
}
.SocialButton--youtube {
  background-position: 28.5714285714% 0;
}
.SocialButton--youtube:hover {
  background-position: 28.5714285714% 100%;
}
.SocialButton--instagram {
  background-position: 42.8571428571% 0;
}
.SocialButton--instagram:hover {
  background-position: 42.8571428571% 100%;
}
.SocialButton--linkedin {
  background-position: 57.1428571429% 0;
}
.SocialButton--linkedin:hover {
  background-position: 57.1428571429% 100%;
}
.SocialButton--pinterest {
  background-position: 71.4285714286% 0;
}
.SocialButton--pinterest:hover {
  background-position: 71.4285714286% 100%;
}
.SocialButton--google {
  background-position: 85.7142857143% 0;
}
.SocialButton--google:hover {
  background-position: 85.7142857143% 100%;
}
.SocialButton--tumblr {
  background-position: 100% 0;
}
.SocialButton--tumblr:hover {
  background-position: 100% 100%;
}
.SocialButton:last-child {
  margin: 0;
}
@media (max-width: 480px) {
  .SocialButton {
    width: 35px;
    height: 35px;
  }
}

.visable {
  display: block !important;
}

#beta_title2,
#beta_status_text2 {
  display: none;
}

.modal-form-input-errMsg {
  position: absolute;
  right: 12px;
  top: -20px;
  font-size: 10pt;
  color: red;
}

#resend_email {
  font-size: 14px;
}

#beta_modal {
  /* 
  * Very blue color on all the fields
  */
  /*
  *  Building out the android/ios selector
  */
  /*
  *  Resizing the modal
  */
  /* clear float */
}
#beta_modal .modal-header a {
  padding: 0;
  color: grey !important;
}
#beta_modal input[type=submit] {
  background: transparent;
  border: none;
  height: 60px;
  width: 100%;
}
#beta_modal input:-moz-read-only {
  /* For Firefox */
  border: none;
}
#beta_modal input:read-only {
  border: none;
}
#beta_modal .submit-field .waves-input-wrapper {
  padding: 0;
  height: 60px;
}
#beta_modal input:-webkit-autofill {
  color: white !important;
}
#beta_modal h4 {
  color: #2A98F1;
}
#beta_modal .orangeDark h4 {
  color: #FB9A34;
}
#beta_modal .orangeDark .prefix {
  color: #FB9A34;
}
#beta_modal .orangeDark select {
  color: #FB9A34;
}
#beta_modal .orangeDark .btn {
  background-color: #FB9A34;
}
#beta_modal .orangeDark a,
#beta_modal .orangeDark a:link,
#beta_modal .orangeDark a:visited,
#beta_modal .orangeDark a:hover,
#beta_modal .orangeDark a:active {
  color: #FB9A34;
}
#beta_modal .prefix {
  color: #2A98F1;
}
#beta_modal select {
  color: #2A98F1;
}
#beta_modal .btn {
  height: 60px;
  background-color: #2A98F1;
}
#beta_modal a,
#beta_modal a:link,
#beta_modal a:visited,
#beta_modal a:hover,
#beta_modal a:active {
  color: #2A98F1;
}
#beta_modal .error {
  color: red !important;
}
#beta_modal #option2 {
  display: none;
}
#beta_modal .alternative_text:hover #option1 {
  display: none;
}
#beta_modal .alternative_text:hover #option2 {
  display: block;
}
#beta_modal label {
  border-radius: 0px 4px 4px 0px;
}
#beta_modal input:first-child + label {
  border-radius: 4px 0px 0px 4px;
}
#beta_modal label.alternative_text:hover {
  cursor: not-allowed;
}
#beta_modal .toggle-btn-group label:after,
#beta_modal .toggle-btn-group label:before {
  content: none;
}
#beta_modal .toggle-btn-group {
  box-sizing: content-box;
  -webkit-backface-visibility: hidden;
  padding: 2px;
  margin: auto;
}
#beta_modal .platform {
  margin: 0px;
  width: 100%;
}
#beta_modal .toggle-btn-group label {
  top: 0;
  left: -2px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0px;
  width: 50%;
  float: left;
  text-align: center;
  cursor: pointer;
  color: #000;
  background-color: #ddd;
  height: 46px;
  line-height: 46px;
}
#beta_modal .toggle-btn-group input[type=radio]:checked + label {
  background-color: #00a1ff;
  color: white;
}
#beta_modal .toggle-btn-group input[type=radio]:focus + label {
  outline: 2px #999 dotted;
}
#beta_modal .toggle-btn-group label:hover,
#beta_modal .toggle-btn-group label:focus {
  background-color: #ccc;
  color: #000;
}
#beta_modal .accessAid {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}
#beta_modal .modal-action {
  width: 100%;
}
#beta_modal .modal-fixed-footer {
  height: 80%;
}
#beta_modal .row {
  margin-bottom: 0px;
}
#beta_modal .row--fullNoMargin {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
#beta_modal .row--fullNoMargin .col {
  display: block;
}
#beta_modal .input-field {
  margin-bottom: 20px;
}
#beta_modal .input-field input, #beta_modal .input-field textarea {
  margin-bottom: 0;
}
#beta_modal .row .col.recaptcha-field {
  padding-left: 0;
  padding-right: 0;
}
#beta_modal .container {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
  width: 100% !important;
}
#beta_modal #resend_email {
  text-align: center;
  color: black;
}
#beta_modal #success_name,
#beta_modal #success_email {
  text-align: center;
}
#beta_modal .clearfix {
  content: "";
  display: table;
  clear: both;
}
#beta_modal textarea.materialize-textarea {
  margin-bottom: -8px;
}
#beta_modal .sending .btn {
  background-color: #ddd;
}
#beta_modal .sending .btn::before {
  content: "Sending...";
  display: block;
  margin-top: 11px;
}
#beta_modal .sending .btn input {
  display: none;
}
@media (max-width: 480px) {
  #beta_modal .btn {
    height: 40px;
  }
  #beta_modal .btn input {
    height: 40px;
  }
  #beta_modal .sending .btn::before {
    margin-top: 2px;
  }
  #beta_modal {
    margin: 8px;
    font-size: 10pt;
    line-height: 18pt;
  }
  #beta_modal .modal-content {
    padding: 25px 0 36px 0;
  }
  #beta_modal .modal-header .modal-close i {
    font-size: 30px;
  }
  #beta_modal h4 {
    font-size: 18pt;
    font-weight: 300;
    margin-bottom: 0;
    padding: 0 12px;
  }
  #beta_modal .row {
    margin: 0;
    width: 100%;
  }
  #beta_modal .row .col {
    padding: 0;
    margin-top: 18px;
    margin-bottom: 0px;
  }
  #beta_modal .row .col:first-child {
    margin-top: 0;
  }
  #beta_modal .row .col.input-field.recaptcha-field {
    padding: 0;
  }
  #beta_modal .row .col:not(form) {
    padding: 0 12px;
  }
  #beta_modal .toggle-btn-group label {
    height: 25px;
    line-height: 25px;
  }
  #beta_modal input[type=text], #beta_modal input[type=password], #beta_modal input[type=email], #beta_modal input[type=url], #beta_modal input[type=time], #beta_modal input[type=date], #beta_modal input[type=datetime-local], #beta_modal input[type=tel], #beta_modal input[type=number], #beta_modal input[type=search], #beta_modal textarea.materialize-textarea {
    padding: 12px;
    font-size: 9pt;
    height: 36px;
  }
  #beta_modal .row .col.recaptcha-field {
    margin-left: 0px;
  }
  #beta_modal .contact_modal {
    font-weight: 400;
  }
  #beta_modal .submit-field .waves-input-wrapper {
    padding: 0;
    height: 40px;
  }
  #beta_modal .input-field p {
    margin-top: 0;
    margin-bottom: 0px;
  }
}

.ContentCard--HoundVideoCard {
  display: block;
}
.ContentCard--HoundVideoCard .ImageCard-text {
  display: none;
}
.ContentCard--HoundifyCTACard .TextCard {
  background-color: #0075C0;
  color: white;
  min-height: 0;
}
.ContentCard--HoundDownload {
  text-align: center;
}
.ContentCard--HoundDownload .TextCard-title {
  margin-bottom: 0;
}
.ContentCard--HoundDownload .TextCard-subtitle {
  margin-top: 0;
}
.ContentCard--HoundDownload-downloads::before {
  content: " ";
  width: 100%;
  border-top: 1px solid black;
  display: block;
  margin-top: 30px;
  margin-bottom: 70px;
}
.ContentCard--HoundDownload-available {
  margin-top: 4px;
}
.ContentCard--HoundDownload .DownloadButton {
  margin-top: 0;
}
.ContentCard--HoundDownload .DownloadButton:last-child {
  margin-right: 0;
}
.ContentCard--SoundHoundDownload {
  text-align: center;
}
.ContentCard--SoundHoundDownload .TextCard-title {
  margin-bottom: 0;
}
.ContentCard--SoundHoundDownload .TextCard-subtitle {
  margin-top: 0;
}
.ContentCard--SoundHoundDownload-downloads::before {
  content: " ";
  width: 100%;
  border-top: 1px solid black;
  display: block;
  margin-top: 30px;
  margin-bottom: 70px;
}
.ContentCard--SoundHoundDownload-available {
  margin-top: 4px;
}
.ContentCard--SoundHoundDownload .DownloadButton {
  margin-top: 10px;
}
.ContentCard--SoundHoundDownload .DownloadButton--spaced {
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 1290px) {
  .ContentCard--HoundDownload-downloads::before {
    margin-bottom: 20%;
  }
  .ContentCard--SoundHoundDownload-downloads::before {
    margin-bottom: 20%;
  }
}
@media (max-width: 1100px) {
  .ContentCard--HoundDownload-downloads::before {
    margin-bottom: 19%;
  }
}
@media (max-width: 1050px) {
  .ContentCard--HoundDownload-downloads::before {
    margin-bottom: 17%;
  }
}
@media (min-width: 1001px) {
  .ContentCard--HoundDownload .TextCard {
    padding-bottom: 0;
  }
}
@media (max-width: 1000px) {
  .ContentCard--HoundVideoCard {
    display: block;
  }
  .row .ContentCard--HoundVideoCard.col {
    width: 100%;
  }
  .row .ContentCard--HoundDownload.col {
    width: 100%;
  }
  .ContentCard--HoundDownload-downloads::before {
    margin-bottom: 40px;
  }
}
@media (min-width: 1160px), (max-width: 1000px) {
  .ContentCard--HoundDownload .DownloadButton {
    width: 123px;
    height: 37px;
  }
}
@media (min-width: 1160px), (max-width: 1000px) {
  .ContentCard--HoundDownload .DownloadButton {
    width: 123px;
    height: 37px;
  }
}
@media (max-width: 1159px) {
  .ContentCard--HoundDownload .DownloadButton {
    margin-top: 0;
  }
  .ContentCard--HoundDownload-available {
    margin-top: 4px;
  }
}
@media (max-width: 480px) {
  .ContentCard--HoundDownload-downloads::before {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .ContentCard--SoundHoundDownload .DownloadButton {
    width: 123px;
    height: 37px;
  }
  .ContentCard--SoundHoundDownload-downloads::before {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .ContentCard--SoundHoundDownload .DownloadButton {
    width: 123px;
    height: 37px;
  }
}
@media (max-width: 1118px) {
  .row .ContentCard--SoundHoundDownload.col {
    width: 100%;
  }
  .ContentCard--SoundHoundDownload-downloads::before {
    margin-bottom: 40px;
  }
  .ContentCard--SoundHoundDownload .DownloadButton {
    width: 123px;
    height: 37px;
  }
}
@media (max-width: 672px), (mid-width: 529px) {
  .ContentCard--SoundHoundDownload-downloads {
    width: 75%;
    margin: auto;
  }
}

.TextContent {
  line-height: 1.6;
  color: white;
  text-align: left;
}
.MastheadSlider .slides li .TextContent-titleImg {
  margin-bottom: 20px;
  max-width: 100%;
}
.MastheadSlider .slides li .TextContent-titleImg--soundhoundinc {
  width: 524px;
}
.MastheadSlider .slides li .TextContent-titleImg--about {
  width: 205px;
}
.MastheadSlider .slides li .TextContent-titleImg--careers {
  width: 275px;
}
.MastheadSlider .slides li .TextContent-titleImg--advertising {
  width: 400px;
}
.TextContent-title {
  font-weight: 400;
}
.TextContent--advertising {
  width: 470px;
  max-width: 470px !important;
}
.TextContent--houndhelp {
  width: 470px;
  max-width: 470px !important;
}

.ErrorMessage {
  padding-top: 70px;
  padding-bottom: 40px;
  width: 100%;
  text-align: center;
}

.HoundifyPage .ContentCard--HoundifyVideoCard {
  display: block;
}
.HoundifyPage .ContentCard--HoundifyVideoCard .ImageCard-text {
  display: none;
}
.HoundifyPage .ContentCard--HoundifyVideoCard .ImageCard-img-container--2nd {
  display: none;
}
@media (min-width: 1001px) {
  .HoundifyPage .TextCard--HoundifyCTACard {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .HoundifyPage .TextCard-textButton {
    position: static;
    bottom: auto;
    left: auto;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .HoundifyPage .ContentCard--HoundifyCTACard {
    width: 100% !important;
  }
  .HoundifyPage .ContentCard--HoundifyVideoCard {
    width: 100% !important;
  }
  .HoundifyPage .ContentCard--HoundifyVideoCard .ImageCard-img-container--2nd {
    display: block;
  }
  .HoundifyPage .ContentCard--HoundifyVideoCard .ImageCard-img-container:not(.ImageCard-img-container--2nd) {
    display: none;
  }
}
@media (max-width: 695px) {
  .HoundifyPage .ContentCard--HoundifyVideoCard .ImageCard-img-container--2nd {
    display: none;
  }
  .HoundifyPage .ContentCard--HoundifyVideoCard .ImageCard-img-container:not(.ImageCard-img-container--2nd) {
    display: block;
  }
}

.container-Card {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.container-Card-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(232, 98, 86, 0.8) url(/corp_new/img/SharedImgs/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.5;
}

.cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
.BreakLongText {
  word-break: break-word;
}

.Legal {
  margin-top: 60px;
  padding-top: 0;
}
@media only screen and (max-device-width: 350px) and (orientation: portrait) {
  .Legal h3 {
    font-size: 2.4rem;
  }
}
.Legal .anchor {
  display: block;
  position: relative;
  top: -60px;
  visibility: hidden;
}
@media (max-width: 800px) {
  .Legal .anchor {
    top: -100px;
  }
}
.Legal a {
  color: #2196F3;
}
.Legal-menu {
  margin-left: 20px;
}
.Legal-menu .col.s12 {
  margin-top: 0;
}
.Legal-menu .col.s12 ul {
  margin: 0;
  margin-top: 16px;
}
.Legal-subsection {
  margin-left: 20px;
  padding-left: 20px;
}
.Legal-ul {
  margin-top: 0;
  padding-left: 20px;
  margin-left: 20px;
  list-style-type: disc;
}
.Legal-ul li {
  display: list-item;
  list-style-type: disc;
  margin-bottom: 10px;
}
.Legal-toTopButton {
  z-index: 100;
}

body.is-homepage {
  background: white !important;
}

.SoundHoundPage .ContentCard--SoundHoundVideoCard .ImageCard-img-container--2nd {
  display: none;
}
@media (max-width: 500px) {
  .SoundHoundPage .ContentCard--DownloadLinks .HtmlCard {
    padding: 0;
  }
  .SoundHoundPage .ContentCard--DownloadLinks .HtmlCard-html {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  .SoundHoundPage .ContentCard--DownloadLinks .HtmlCard-html .DownloadButton:nth-child(even) {
    margin-right: 0;
  }
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard {
    padding: 0;
  }
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard .SocialButton:nth-child(4), .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard .SocialButton:last-child {
    margin-right: 0;
  }
}
@media (max-width: 500px) and (max-width: 480px) {
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard {
    width: 250px;
  }
}
@media (max-width: 500px) and (max-width: 1000px) {
  .SoundHoundPage .ContentCard--SoundHoundVideoCard .ImageCard-img-container:not(.ImageCard-img-container--2nd) {
    display: none;
  }
  .SoundHoundPage .ContentCard--SoundHoundVideoCard .ImageCard-img-container--2nd {
    display: block;
  }
}

.SoundHoundPage .ContentCard--SoundHoundVideoCard .ImageCard-img-container--2nd {
  display: none;
}
@media (max-width: 500px) {
  .SoundHoundPage .ContentCard--DownloadLinks .HtmlCard {
    padding: 0;
  }
  .SoundHoundPage .ContentCard--DownloadLinks .HtmlCard-html {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  .SoundHoundPage .ContentCard--DownloadLinks .HtmlCard-html .DownloadButton:nth-child(even) {
    margin-right: 0;
  }
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard {
    padding: 0;
  }
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard .SocialButton:nth-child(4), .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard .SocialButton:last-child {
    margin-right: 0;
  }
}
@media (max-width: 500px) and (max-width: 480px) {
  .SoundHoundPage .ContentCard--SocialLinks .HtmlCard--DownloadSocialCard {
    width: 250px;
  }
}
@media (max-width: 500px) and (max-width: 1000px) {
  .SoundHoundPage .ContentCard--SoundHoundVideoCard .ImageCard-img-container:not(.ImageCard-img-container--2nd) {
    display: none;
  }
  .SoundHoundPage .ContentCard--SoundHoundVideoCard .ImageCard-img-container--2nd {
    display: block;
  }
}

.AboutPage-titleClass {
  font-size: 24px;
  font-weight: bold;
}
.AboutPage-locations {
  position: relative;
  width: 100%;
}
.AboutPage-locations-title {
  position: absolute;
  color: white;
  top: 0;
  left: 1%;
  font-weight: 600;
}
.AboutPage-locations-backImg {
  width: 100%;
  min-height: 400px;
}
.AboutPage-locations-foreImg {
  position: absolute;
  top: 50%;
  margin-top: -166.125px;
  left: 50%;
  margin-left: -150px;
  z-index: 10;
  width: 300px;
  height: 332.25px;
  background-color: rgba(215, 238, 255, 0.8);
}
.AboutPage-locations-foreImg-img {
  max-width: 100%;
}
.AboutPage-locations-pins {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.AboutPage-locations-pins-pin {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 20px;
  margin-left: -10px;
  margin-top: -27.8571428571px;
  transform: translate(0, -690px);
  transition: all 1s ease;
}
.AboutPage-locations-pins-pin.showPin {
  transform: translate(0, 0);
}
@media (max-width: 481px) {
  .AboutPage-locations-pins-pin {
    transform: translate(0, 0);
  }
}
.AboutPage-locations-pins-pin img {
  width: 100%;
}
.AboutPage-leadership {
  padding: 40px;
  background-color: white;
}
.AboutPage-leadership .col, .AboutPage-leadership .row {
  display: block;
  padding-bottom: 8px;
}
.AboutPage-leadership-people {
  margin: 30px -10px 0 -10px;
}
.AboutPage-leadership-people-person.col:nth-of-type(1) .imgContainer {
  background-color: #2196f3;
}
.AboutPage-leadership-people-person.col:nth-of-type(1) .imgContainer .altImg {
  transform: scale(0.97);
  transform-origin: bottom left;
}
.AboutPage-leadership-people-person.col:nth-of-type(2) .imgContainer {
  background-color: #fb9a34;
}
.AboutPage-leadership-people-person.col:nth-of-type(3) .imgContainer {
  background-color: #2cd79e;
}
.AboutPage-leadership-people-person.col:nth-of-type(3) .imgContainer .altImg {
  transform-origin: bottom left;
}
.AboutPage-leadership-people-person.col:nth-of-type(4) .imgContainer {
  background-color: #792cd7;
}
.AboutPage-leadership-people-person.col:nth-of-type(5) .imgContainer {
  background-color: #bbdefb;
}
.AboutPage-leadership-people-person.col:nth-of-type(6) .imgContainer {
  background-color: #1976d2;
}
.AboutPage-leadership-people-person.col:nth-of-type(6) .imgContainer .altImg {
  transform: scale(0.97);
}
.AboutPage-leadership-people-person.col:nth-of-type(7) .imgContainer {
  background-color: #cccccc;
}
.AboutPage-leadership-people-person.col:nth-of-type(7) .imgContainer .altImg {
  transform: scale(1);
}
.AboutPage-leadership-people-person.col:nth-of-type(8) .imgContainer {
  background-color: #2c8cd7;
}
.AboutPage-leadership-people-person.col:nth-of-type(8) .imgContainer .altImg {
  transform: scale(1);
}
.AboutPage-leadership-people-person.col:nth-of-type(9) .imgContainer {
  background-color: #ff6235;
}
.AboutPage-leadership-people-person-container {
  position: relative;
}
.AboutPage-leadership-people-person-img {
  width: 100%;
  z-index: 1;
  position: relative;
  -web-kit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.AboutPage-leadership-people-person-img.mainImg:hover {
  opacity: 0;
}
.AboutPage-leadership-people-person-img.altImg {
  transform: scale(0.95);
  transform-origin: bottom;
  z-index: 0;
  padding: inherit;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
}
.AboutPage-leadership-people-person-text {
  height: 80px;
}
.AboutPage-leadership-people-person-text div {
  margin-top: 10px;
  line-height: 18px;
}
.AboutPage-leadership-people-person-text-name {
  font-weight: 600;
}
@media (max-width: 400px) {
  .AboutPage-leadership-people-person {
    width: 50% !important;
  }
}
@media (min-width: 401px) and (max-width: 640px) {
  .AboutPage-leadership-people-person {
    width: 50% !important;
  }
}
@media (min-width: 641px) and (max-width: 800px) {
  .AboutPage-leadership-people-person {
    width: 33.3333333% !important;
  }
}
@media (min-width: 801px) and (max-width: 1000px) {
  .AboutPage-leadership-people-person {
    width: 25% !important;
  }
}
@media (min-width: 1001px) and (max-width: 1200px) {
  .AboutPage-leadership-people-person {
    width: 20% !important;
  }
}
@media (min-width: 1201px) {
  .AboutPage-leadership-people-person {
    width: 16.666666% !important;
  }
}
.AboutPage-leadership-boardOfDir-title {
  padding-top: 20px;
  padding-bottom: 20px;
}
.AboutPage-leadership-boardOfDir-person {
  display: table-row;
}
.AboutPage-leadership-boardOfDir-person div {
  display: table-cell;
  padding-bottom: 12px;
}
.AboutPage-leadership-boardOfDir-person-text-name {
  padding-right: 40px;
}
@media (max-width: 600px) {
  .AboutPage-leadership {
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .AboutPage-leadership-people-person-text {
    height: 70px;
  }
  .AboutPage-leadership-people-person-text-name {
    font-size: 15px;
  }
  .AboutPage-leadership-people-person-text-title {
    margin-top: 5px !important;
    font-size: 12px;
  }
  .AboutPage-leadership-boardOfDir-person {
    display: block;
    line-height: 18px;
  }
  .AboutPage-leadership-boardOfDir-person div {
    display: block;
    padding-bottom: 0;
    padding-right: 0;
  }
  .AboutPage-leadership-boardOfDir-person-text-name {
    font-weight: 600;
    font-size: 15px;
  }
  .AboutPage-leadership-boardOfDir-person-text-title {
    padding-bottom: 18px !important;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .AboutPage-locations {
    padding: 16px;
    background-color: white;
  }
  .AboutPage-locations-title {
    position: static;
    color: inherit;
    padding-bottom: 16px;
  }
  .AboutPage-locations-title .flow-text {
    font-size: 24px !important;
  }
  .AboutPage-locations-backImg, .AboutPage-locations-pins {
    display: none;
  }
  .AboutPage-locations-foreImg {
    position: static;
    top: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    height: auto;
  }
  .AboutPage-leadership {
    padding: 16px;
  }
  .AboutPage-leadership-people {
    margin-top: 16px;
  }
}

.JapanPage-titleClass {
  font-size: 24px;
  font-weight: bold;
}
.JapanPage-mainContainer-Card a, .JapanPage-mainContainer-Card a:hover {
  color: #4178ff !important;
}
.JapanPage-Card {
  background-color: white;
  padding: 20px 40px 20px 40px;
  margin-bottom: 40px;
  width: 100%;
}
.JapanPage-Card-Margined {
  margin-top: 80px;
}
.JapanPage-TheMuse {
  width: 100%;
}
.JapanPage-CareersTable tr {
  border-bottom: 1px solid #ddd;
  line-height: 30px;
  height: 38px;
}
.JapanPage-CareersTable tr:last-child {
  border-bottom: none;
}
.JapanPage-CareersTable-link {
  color: #4178ff !important;
}
.JapanPage-CareersMobile {
  display: none;
}
.JapanPage-CareersMobile-entry-item {
  padding-bottom: 15px;
}
.JapanPage-CareersMobile-entry-department {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}
.JapanPage-ListItem {
  margin-bottom: 0.5em;
  display: block;
}
@media (max-width: 695px) {
  .JapanPage-CareersTable {
    display: none;
  }
  .JapanPage-CareersMobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .JapanPage-Card {
    padding: 16px;
    margin-bottom: 0;
  }
  .JapanPage-socialImg {
    margin-bottom: 0;
  }
  .JapanPage .MastheadSlider {
    min-height: 480px !important;
  }
}
@media (max-width: 780px) and (min-width: 600px) {
  .JapanPage .ImageCard .DownloadButton {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.HoundPage .ContentCard--HoundVideoCard .ImageCard-img-container--2nd {
  display: none;
}
.HoundPage .ContentCard--HoundVideoCard2 {
  display: none;
}
@media (max-width: 1000px) and (min-width: 481px) {
  .HoundPage .ContentCard--HoundVideoCard .ImageCard-img-container:not(.ImageCard-img-container--2nd) {
    display: none;
  }
  .HoundPage .ContentCard--HoundVideoCard .ImageCard-img-container--2nd {
    display: block;
  }
}
@media (max-width: 1000px) and (min-width: 701px) {
  .HoundPage .TextCard--Hound-invite {
    display: table;
    padding-left: 0;
    padding-right: 0;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container {
    display: table-row;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-sideImg, .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-text {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-sideImg {
    width: 33.333%;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-sideImg img {
    max-width: 140px;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-text {
    width: 66.666%;
    padding-right: 40px;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-text .TextCard-textButton {
    position: static;
    padding-top: 20px;
  }
  .HoundPage .TextCard--Hound-invite .TextCard-container .TextCard-text .TextCard-subtitle {
    margin-right: 0;
  }
}
@media (max-width: 1000px) {
  .HoundPage .ContentCard--HoundVideoCard1 {
    display: none;
  }
  .HoundPage .ContentCard--HoundVideoCard2 {
    display: block;
  }
}

.HoundHelpPage-breadCrumbs {
  font-size: 20px;
  box-sizing: content-box;
  display: inline-block;
  margin-left: 30px;
  margin-right: 30px;
  padding-bottom: 40px;
}
.HoundHelpPage-breadCrumbs a {
  color: #2196F3;
}
@media (max-width: 600px) {
  .HoundHelpPage-breadCrumbs {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.HoundHelpPage-article {
  width: 100%;
  height: 100%;
  box-shadow: none;
}
.HoundHelpPage-article-text {
  margin: 20px;
}
.HoundHelpPage .MastheadBanner {
  height: 30px;
  min-height: 30px;
}
.HoundHelpPage--contact .ContentWrapper {
  padding-bottom: 30px;
}
.HoundHelpPage--contact .HoundHelpPage-cards {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .HoundHelpPage--contact #beta_modal {
    margin: 0;
  }
}
.HoundHelpPage .MastheadSlider {
  min-height: 300px !important;
}
.HoundHelpPage .Search.Search--header {
  position: relative;
  display: table;
  border-collapse: separate;
  font-weight: 100;
}
.HoundHelpPage .Search .Search-field {
  display: table-cell;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  height: 36px;
  margin-bottom: 0;
  background-color: white;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
  padding: 0 12px;
  font-size: 20px;
  font-weight: 200;
  color: #333;
}
.HoundHelpPage .Search .Search-field::-webkit-input-placeholder {
  color: #999;
}

.HoundHelpPage .Search .Search-field:-moz-placeholder {
  color: #999;
}

.HoundHelpPage .Search .Search-field::-moz-placeholder {
  color: #999;
}

.HoundHelpPage .Search .Search-field:-ms-input-placeholder {
  color: #999;
}

.HoundHelpPage .Search .Search-group {
  display: table-cell;
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  border-collapse: separate;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: white;
}
.HoundHelpPage .Search .Search-button {
  z-index: 3;
  margin-left: -1px;
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  background-color: white;
  background-image: url("../img/HoundHelp/mag50.png");
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
  color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  opacity: 0.8;
}
.HoundHelpPage .Search .Search-button:hover {
  opacity: 1;
}
.HoundHelpPage-topics {
  width: 100%;
  border-radius: 5px;
  box-shadow: none;
}
.HoundHelpPage-topics-container {
  height: 100%;
}
.HoundHelpPage-topics .card-content {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #e1e1e1;
}
.HoundHelpPage-topics .card-title {
  font-size: 20px;
}
.HoundHelpPage-topics .card-action {
  padding-top: 10px;
  padding-bottom: 10px;
}
.HoundHelpPage-topics .card-action a {
  color: #292f33;
  text-transform: none;
  font-size: 18px;
}
.HoundHelpPage .article-list {
  max-width: 340px;
  margin: 0 auto;
}
.HoundHelpPage .article-list .card-action {
  padding-top: 5px;
  padding-bottom: 5px;
}
.HoundHelpPage .article-list .card-title {
  font-size: 16px;
}
.HoundHelpPage .article-list a {
  font-size: 14px;
}
.HoundHelpPage-cardTextWithLine .YouTubeThumbsCard-BottomText, .HoundHelpPage-cardTextWithLine .ImageCard-BottomText {
  position: relative;
}
.HoundHelpPage-cardTextWithLine .YouTubeThumbsCard-BottomText::before, .HoundHelpPage-cardTextWithLine .ImageCard-BottomText::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: " ";
  width: 100%;
  height: 0;
  border-top: 1px solid #808080;
}
.HoundHelpPage-cardTextWithLine .ImageCard-BottomText::before {
  top: 0px;
}
.HoundHelpPage-cardTextWithBlueLink .YouTubeThumbsCard-BottomText a {
  color: #2196F3;
}
@media (max-width: 600px) {
  .HoundHelpPage .YouTubeThumbsCard-thumb-text-subtitle {
    padding-top: 5px;
  }
  .HoundHelpPage-customContentCards {
    padding: 10px;
    background-color: white;
    margin-bottom: 10px !important;
    margin-left: 10px;
    margin-right: 10px;
  }
  .HoundHelpPage-customContentCards .ContentCards-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .HoundHelpPage-customContentCards .ContentCards-col {
    padding: 0px !important;
  }
  .HoundHelpPage-customContentCards .ContentCards-col:last-child {
    margin-bottom: 0 !important;
  }
  .HoundHelpPage-customContentCards .ImageCard > a {
    width: 100%;
    display: table;
  }
  .HoundHelpPage-customContentCards .ImageCard-img {
    display: inline-block;
    vertical-align: middle;
    background-image: url(/corp_new/img/HoundHelp/Video2_Uber_800x520.png);
    background-size: cover;
    background-position: center;
    display: table-cell;
  }
  .HoundHelpPage-customContentCards .ImageCard-text {
    display: inline-block;
    vertical-align: middle;
    width: 55%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    display: table-cell;
  }
  .HoundHelpPage-customContentCards .ImageCard-text-cell {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    text-align: left;
    height: auto;
    padding: 0;
  }
  .HoundHelpPage-customContentCards .ImageCard-text-cell .ImageCard-title {
    line-height: 20px;
    white-space: normal;
    width: 100%;
    display: block;
    line-height: 20px;
  }
  .HoundHelpPage-customContentCards .ImageCard-text-cell .ImageCard-subtitle {
    line-height: 18px;
    padding-top: 2px;
    white-space: normal;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    overflow: hidden;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .HoundHelpPage-customContentCards .ImageCard-text-cell .ImageCard-title, .HoundHelpPage .YouTubeThumbsCard-thumb-text-title {
    font-size: 16px;
  }
}

.CareersPage a, .CareersPage a:hover {
  color: #4178ff !important;
}
.CareersPage-Card {
  background-color: white;
  padding: 20px 40px 20px 40px;
  margin-bottom: 40px;
  width: 100%;
}
.CareersPage-socialImg {
  display: block;
  padding-bottom: 40px;
  width: 100%;
  margin-bottom: 40px;
}
.CareersPage-socialImg-img {
  width: 100%;
}
.CareersPage-CareersTable tr {
  border-bottom: 1px solid #ddd;
  line-height: 30px;
}
.CareersPage-CareersTable tr:last-child {
  border-bottom: none;
}
.CareersPage-CareersTable-link {
  color: #4178ff !important;
}
.CareersPage-CareersMobile {
  display: none;
}
.CareersPage-CareersMobile-entry {
  padding-bottom: 20px;
}
.CareersPage-TheMuse {
  width: 100%;
}
@media (max-width: 695px) {
  .CareersPage-CareersTable {
    display: none;
  }
  .CareersPage-CareersMobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .CareersPage-Card {
    padding: 16px;
    margin-bottom: 0;
  }
  .CareersPage-socialImg {
    margin-bottom: 0;
  }
  .CareersPage .MastheadSlider {
    min-height: 480px !important;
  }
}

.btn.margin-button {
  margin-top: 20px;
}

.ContactPage-text {
  text-align: left;
  position: absolute;
  top: 130px;
  left: 10px;
}
.MastheadSlider .slides li .ContactPage-text-titleImg {
  width: 363px;
  max-width: 97%;
}
.ContactPage-text-subtitle {
  margin-top: 40px;
  font-weight: 600;
}
.MastheadSlider .slides li .ContactPage-hero {
  position: absolute;
  right: 10px;
  bottom: 60px;
  width: 68%;
  max-width: 100%;
}
@media (max-width: 930px) {
  .ContactPage-text {
    top: 65px;
  }
  .MastheadSlider .slides li .ContactPage-hero {
    width: 632px;
  }
}
@media (max-width: 850px) {
  .row .ContactPage-m4.col.m4 {
    width: 100%;
  }
  .row .ContactPage-m4.col.m4 .TextCard {
    min-height: 0;
  }
  .row .ContactPage-m4.col.m4 .TextCard-textButton {
    position: absolute;
    top: 40px;
    right: 40px;
  }
  .row .ContactPage-m4.col.m4 .TextCard-textButton--static {
    position: static;
    top: auto;
    right: auto;
  }
}
@media (max-width: 840px) {
  .ContactPage .MastheadSlider {
    min-height: 560px;
  }
}
@media (max-width: 480px) {
  .row .ContactPage-m4.col.m4 .TextCard-textButton {
    position: static;
    top: auto;
    right: auto;
  }
}

@media (max-width: 500px) {
  .ContactPage .MastheadSlider {
    min-height: 430px !important;
  }
  .ContactPage .MastheadSlider .slides li .ContactPage-hero {
    bottom: 30px;
  }

  .ContactPage .ContactPage-text {
    top: 50px;
  }
}
@media (max-width: 370px) {
  .ContactPage .MastheadSlider {
    min-height: 370px !important;
  }
  .ContactPage .MastheadSlider .slides li .ContactPage-hero {
    bottom: 30px;
  }

  .ContactPage .ContactPage-text {
    top: 30px;
  }
}
.AdvertisingPage .HtmlCard-subtitle {
  font-weight: inherit;
}
.AdvertisingPage-darkTheme .HtmlCard {
  background-color: black;
  color: white;
}
.AdvertisingPage-textUl .TextUlCard-sideImg-img {
  max-height: 370px;
}
.AdvertisingPage-textUl--exploration .TextUlCard-img {
  text-align: center;
}
@media (max-width: 560px) {
  .AdvertisingPage-textUl--exploration .TextUlCard-text {
    width: 100% !important;
  }
  .AdvertisingPage-textUl--exploration .TextUlCard-img {
    display: none;
  }
}
.AdvertisingPage-audienceNums {
  border-top: rgba(128, 128, 128, 0.53);
  border-width: 1px;
  border-top-style: solid;
  padding-top: 18px;
}
.AdvertisingPage-audienceNums-container .HtmlCard-subtitle {
  font-weight: inherit;
}
.AdvertisingPage-audienceNums-group {
  width: 50%;
}
.AdvertisingPage-audienceNums-group:nth-child(even) {
  border-right: 1px solid rgba(128, 128, 128, 0.53);
  float: left;
  padding-right: 2%;
}
.AdvertisingPage-audienceNums-group:nth-child(odd) {
  float: right;
  padding-left: 2%;
}
.AdvertisingPage-audienceNums-img:first-child {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.53);
}
.AdvertisingPage-audienceNums-groupSeparator {
  width: 0;
  margin-left: 2%;
  margin-right: 2%;
  height: 100%;
}
.AdvertisingPage-audienceNums-img {
  width: 100%;
}
.AdvertisingPage-audienceNums-horSeparator {
  display: block;
  width: 100%;
  border-top: 1px solid rgba(128, 128, 128, 0.53);
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .AdvertisingPage-audienceNums-group {
    width: 100%;
    padding: 0 !important;
    border: none;
  }
  .AdvertisingPage-audienceNums-group:nth-child(even) {
    margin-top: 20px;
    padding-top: 20px !important;
    border-right: none;
    border-top: 1px solid rgba(128, 128, 128, 0.53);
  }
}
.AdvertisingPage-worldMap {
  width: 44%;
}
.AdvertisingPage-growthUsers {
  width: 55.3%;
}
@media (max-width: 480px) {
  .AdvertisingPage-headerGraphic img {
    position: relative;
    left: 50%;
    margin-left: -65%;
    width: 131%;
  }
}

.HtmlCard--AdvertisingPage-UserDetails {
  width: 100%;
}

.HoundHelpCard {
  position: relative;
  margin: 0 10px 10px 10px;
}
.HoundHelpCard p {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1em;
  padding-bottom: 1em;
}
.HoundHelpCard:not(.isOpen):not(.isNoOpen) {
  cursor: pointer;
}
.HoundHelpCard-title {
  font-size: 20px;
}
.HoundHelpCard-title:not(.isNoResults) {
  color: #2196F3;
}
.HoundHelpCard-textContainer {
  overflow: hidden;
  position: relative;
  max-height: 90px;
}
.HoundHelpCard-text {
  padding-right: 40px;
}
.HoundHelpCard-textFade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/HoundHelp/whiteGradient.png");
}
.HoundHelpCard-carrot {
  position: absolute;
  display: inline-block;
  bottom: 5px;
  right: 0px;
  background-image: url("../img/HoundHelp/ic_down_carrot2.png");
  width: 15px;
  height: 8px;
  background-size: cover;
}
.HoundHelpCard.isShow .HoundHelpCard-carrot {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 480px) {
  .HoundHelpCard--contact {
    padding-left: 0;
    padding-right: 0;
  }
}

.HoundHelpFooter {
  width: 100%;
  text-align: center;
  padding: 0;
  padding-bottom: 40px;
}
.HoundHelpFooter-title {
  font-weight: 600;
}
.HoundHelpFooter-img {
  height: 45px;
  margin-left: 15px;
  margin-right: 15px;
  vertical-align: middle;
}
.HoundHelpFooter .HoundHelpFooter-a {
  color: #2196F3;
}
.HoundHelpFooter-feedback {
  margin-right: 20px;
}
@media (max-width: 600px) {
  .HoundHelpFooter {
    padding: 10px;
    text-align: left;
  }
  .HoundHelpFooter-title, .HoundHelpFooter-feedback, .HoundHelpFooter-twitter {
    display: block;
    padding-bottom: 30px;
  }
  .HoundHelpFooter-title {
    padding-bottom: 20px;
    margin-left: 15px;
  }
  .HoundHelpFooter-feedback {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .HoundHelpFooter-img {
    height: 33px;
  }
}

.SoundHoundHelpPage ul {
  list-style-type: disc;
  padding-left: 40px;
}
.SoundHoundHelpPage ul li {
  list-style: inherit;
}
.SoundHoundHelpPage-customContentCards {
  padding: 10px;
}
.SoundHoundHelpPage-cards {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.SoundHoundHelpPage-article {
  width: 100%;
  box-shadow: none;
}
.SoundHoundHelpPage-article-text {
  margin: 20px;
}
.SoundHoundHelpPage-breadCrumbs {
  font-size: 20px;
  box-sizing: content-box;
  display: inline-block;
  margin-left: 30px;
  margin-right: 30px;
  padding-bottom: 40px;
}
.SoundHoundHelpPage-breadCrumbs a {
  color: #2196F3;
}
@media (max-width: 600px) {
  .SoundHoundHelpPage-breadCrumbs {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.SoundHoundHelpPage .MastheadBanner {
  height: 30px;
  min-height: 30px;
}
.SoundHoundHelpPage--contact .ContentWrapper {
  padding-bottom: 30px;
}
.SoundHoundHelpPage--contact .HoundHelpPage-cards {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .SoundHoundHelpPage--contact #beta_modal {
    margin: 0;
  }
}
.SoundHoundHelpPage .MastheadSlider {
  min-height: 300px !important;
}
.SoundHoundHelpPage .Search.Search--header {
  position: relative;
  display: table;
  border-collapse: separate;
  font-weight: 100;
}
.SoundHoundHelpPage .Search .Search-field {
  display: table-cell;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  height: 36px;
  margin-bottom: 0;
  background-color: white;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
  padding: 0 12px;
  font-size: 20px;
  font-weight: 200;
  color: #333;
}
.SoundHoundHelpPage .Search .Search-field::-webkit-input-placeholder {
  color: #999;
}

.SoundHoundHelpPage .Search .Search-field:-moz-placeholder {
  color: #999;
}

.SoundHoundHelpPage .Search .Search-field::-moz-placeholder {
  color: #999;
}

.SoundHoundHelpPage .Search .Search-field:-ms-input-placeholder {
  color: #999;
}

.SoundHoundHelpPage .Search .Search-group {
  display: table-cell;
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  border-collapse: separate;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: white;
}
.SoundHoundHelpPage .Search .Search-button {
  z-index: 3;
  margin-left: -1px;
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  background-color: white;
  background-image: url("../img/HoundHelp/mag50.png");
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
  color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  opacity: 0.8;
}
.SoundHoundHelpPage .Search .Search-button:hover {
  opacity: 1;
}
.SoundHoundHelpPage-topics {
  width: 100%;
  border-radius: 5px;
  box-shadow: none;
}
.SoundHoundHelpPage-topics-container {
  height: 100%;
}
.SoundHoundHelpPage-topics-card-content {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #e1e1e1;
}
.SoundHoundHelpPage-topics-card-title {
  font-size: 20px;
}
.SoundHoundHelpPage-topics .card-action {
  padding-top: 10px;
  padding-bottom: 10px;
}
.SoundHoundHelpPage-topics .card-action a {
  color: #292f33;
  text-transform: none;
  font-size: 18px;
}
.SoundHoundHelpPage .ImageCard {
  width: 100%;
}
.SoundHoundHelpPage-row {
  margin-left: 30px;
  margin-right: 30px;
}
.SoundHoundHelpPage-image {
  box-shadow: none;
}
.SoundHoundHelpPage .ContentCards-row {
  margin-left: 0;
  margin-right: 0;
}
.SoundHoundHelpPage-cardTextWithLine .YouTubeThumbsCard-BottomText, .SoundHoundHelpPage-cardTextWithLine .ImageCard-BottomText {
  position: relative;
}
.SoundHoundHelpPage-cardTextWithLine .YouTubeThumbsCard-BottomText::before, .SoundHoundHelpPage-cardTextWithLine .ImageCard-BottomText::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: " ";
  width: 100%;
  height: 0;
  border-top: 1px solid #808080;
}
.SoundHoundHelpPage-cardTextWithLine .ImageCard-BottomText::before {
  top: 0px;
}
.SoundHoundHelpPage-cardTextWithBlueLink .YouTubeThumbsCard-BottomText a {
  color: #2196F3;
}
.SoundHoundHelpPage .HoundHelpCard-title {
  color: #171717;
}
.SoundHoundHelpPage .article-list {
  max-width: 340px;
  margin: 0 auto;
}
.SoundHoundHelpPage .article-list .card-action {
  padding-top: 5px;
  padding-bottom: 5px;
}
.SoundHoundHelpPage .article-list .card-title {
  font-size: 16px;
}
.SoundHoundHelpPage .article-list a {
  font-size: 14px;
}
@media (max-width: 600px) {
  .SoundHoundHelpPage .YouTubeThumbsCard-thumb-text-subtitle {
    padding-top: 5px;
  }
  .SoundHoundHelpPage-customContentCards {
    margin-bottom: 10px !important;
    margin-left: 10px;
    margin-right: 10px;
    background-color: white;
  }
  .SoundHoundHelpPage-customContentCards .ContentCards-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .SoundHoundHelpPage-customContentCards .ContentCards-col {
    padding: 0px !important;
  }
  .SoundHoundHelpPage-customContentCards .ContentCards-col:last-child {
    margin-bottom: 0 !important;
  }
  .SoundHoundHelpPage-customContentCards .ImageCard > a {
    width: 100%;
    display: table;
  }
  .SoundHoundHelpPage-customContentCards .ImageCard-img {
    display: inline-block;
    vertical-align: middle;
    background-image: url(/corp_new/img/HoundHelp/Video2_Uber_800x520.png);
    background-size: cover;
    background-position: center;
    display: table-cell;
  }
  .SoundHoundHelpPage-customContentCards .ImageCard-text {
    display: inline-block;
    vertical-align: middle;
    width: 55%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    display: table-cell;
  }
  .SoundHoundHelpPage-customContentCards .ImageCard-text-cell {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    text-align: left;
    height: auto;
    padding: 0;
  }
  .SoundHoundHelpPage-customContentCards .ImageCard-text-cell .ImageCard-title {
    line-height: 20px;
    white-space: normal;
    width: 100%;
    display: block;
    line-height: 20px;
  }
  .SoundHoundHelpPage-customContentCards .ImageCard-text-cell .ImageCard-subtitle {
    line-height: 18px;
    padding-top: 2px;
    white-space: normal;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    overflow: hidden;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .SoundHoundHelpPage-customContentCards .ImageCard-text-cell .ImageCard-title, .SoundHoundHelpPage .YouTubeThumbsCard-thumb-text-title {
    font-size: 16px;
  }
  .SoundHoundHelpPage .SoundHoundHelpPage-customContentCards {
    background-color: #fff;
  }
  .SoundHoundHelpPage .SoundHoundHelpPage-customContentCards .ContentCards-row {
    background-color: #fff;
  }
}
.SoundHoundHelpPage-isInApp {
  background-color: #151515;
}
@media (max-width: 480px) {
  .SoundHoundHelpPage-isInApp .SoundHoundHelpPage-customContentCards {
    background-color: #222222;
  }
  .SoundHoundHelpPage-isInApp .SoundHoundHelpPage-customContentCards .ImageCard-title {
    font-size: 15px;
  }
  .SoundHoundHelpPage-isInApp .SoundHoundHelpPage-customContentCards .ImageCard-subtitle {
    font-size: 15px;
  }
  .SoundHoundHelpPage-isInApp .SoundHoundHelpPage-customContentCards .ContentCards-row {
    background-color: #222222;
  }
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-customContentCards {
  background-color: #151515;
}
.SoundHoundHelpPage-isInApp .MastheadSlider-slides {
  background-color: #151515;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-article {
  background-color: #222222;
  width: 100%;
  color: #cccccc !important;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-article a {
  color: #cccccc !important;
  text-decoration: underline;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-article-text {
  margin: 20px;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-breadCrumbs {
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-breadCrumbs a {
  color: #cccccc;
  text-decoration: underline;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-image {
  background-color: #222222;
  height: 100%;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpPage-row {
  margin-left: 20px;
  margin-right: 20px;
}
.SoundHoundHelpPage-isInApp .ImageCard-text-cell {
  background-color: #222222;
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .ImageCard {
  background-color: #222222;
  transition: all 250ms;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpFooter {
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .SoundHoundHelpFooter a {
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-breadCrumbs {
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-breadCrumbs a {
  color: #cccccc;
  text-decoration: underline;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-cards .HoundHelpCard {
  background-color: #222222;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-cards .HoundHelpCard-content {
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-cards .HoundHelpCard-title {
  color: #cccccc;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-cards .HoundHelpCard-textFade {
  background-image: none;
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-cards .HoundHelpCard-carrot {
  background-image: url("../img/HoundHelp/ic_down_carrot.png");
}
.SoundHoundHelpPage-isInApp .HoundHelpPage-cards a {
  color: #cccccc;
  text-decoration: underline;
}

.SoundHoundHelpFooter {
  width: 100%;
  text-align: center;
  padding: 0;
  padding-bottom: 40px;
}
.SoundHoundHelpFooter-title {
  font-weight: 600;
}
.SoundHoundHelpFooter-img {
  height: 45px;
  margin-left: 15px;
  margin-right: 15px;
  vertical-align: middle;
}
.SoundHoundHelpFooter .SoundHoundHelpFooter-a {
  color: #2196F3;
}
.SoundHoundHelpFooter-feedback {
  margin-right: 20px;
}
@media (max-width: 600px) {
  .SoundHoundHelpFooter {
    padding: 10px;
    text-align: left;
  }
  .SoundHoundHelpFooter-title, .SoundHoundHelpFooter-feedback, .SoundHoundHelpFooter-twitter {
    display: block;
    padding-bottom: 30px;
  }
  .SoundHoundHelpFooter-title {
    padding-bottom: 20px;
    margin-left: 15px;
  }
  .SoundHoundHelpFooter-feedback {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .SoundHoundHelpFooter-img {
    height: 33px;
  }
}

.SoundHoundHelpCard {
  position: relative;
  margin: 0 10px 10px 10px;
}
.SoundHoundHelpCard p {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1em;
  padding-bottom: 1em;
}
.SoundHoundHelpCard:not(.isOpen):not(.isNoOpen) {
  cursor: pointer;
}
.SoundHoundHelpCard-title {
  font-size: 20px;
}
.SoundHoundHelpCard-title:not(.isNoResults) {
  color: #2196F3;
}
.SoundHoundHelpCard-textContainer {
  overflow: hidden;
  position: relative;
  max-height: 90px;
}
.SoundHoundHelpCard-text {
  padding-right: 40px;
}
.SoundHoundHelpCard-textFade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url("../img/HoundHelp/whiteGradient.png");
}
.SoundHoundHelpCard-carrot {
  position: absolute;
  display: inline-block;
  bottom: 5px;
  right: 0px;
  background-image: url("../img/HoundHelp/ic_down_carrot2.png");
  width: 15px;
  height: 8px;
  background-size: cover;
}
.SoundHoundHelpCard.isShow .SoundHoundHelpCard-carrot {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 480px) {
  .SoundHoundHelpCard--contact {
    padding-left: 0;
    padding-right: 0;
  }
}
.SoundHoundHelpCard #beta_modal h4 {
  color: #fb9a34;
}
.SoundHoundHelpCard #beta_modal select {
  color: #fb9a34;
}
.SoundHoundHelpCard #beta_modal .btn {
  background-color: #fb9a34;
}
.SoundHoundHelpCard-isInApp {
  background-color: #222222;
}
.SoundHoundHelpCard-isInApp #contact_status_text {
  color: #cccccc;
}
.SoundHoundHelpCard-isInApp input {
  color: #cccccc;
}
.SoundHoundHelpCard-isInApp textarea {
  color: #cccccc;
}
.SoundHoundHelpCard-isInApp .modal-form-input-errMsg {
  color: #fb9a34;
}
.SoundHoundHelpCard-isInApp #success_span {
  color: #cccccc;
}
.SoundHoundHelpCard-isInApp .rc-anchor-light {
  background-color: #222222;
}
@media (min-width: 601px) {
  .SoundHoundHelpCard--resetPassword {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 479px) {
  .SoundHoundHelpCard--resetPassword {
    margin: 0 0 10px 0;
    padding: 10px 0;
  }
}

.PrivacyCookieAccepted {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 999;
  position: fixed;
  width: 1300px;
  bottom: 0px;
  margin: 0px;
  background-color: #FEFEFE;
  left: 50%;
  margin-left: -650px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  color: #222;
}
.PrivacyCookieAccepted-text {
  padding-left: 80px;
}
.PrivacyCookieAccepted-close {
  text-align: center;
  padding: 0 60px;
  display: flex;
}
.PrivacyCookieAccepted-close-reject {
  color: #7bc2ff;
  margin-right: 20px;
  margin-top: 3px;
  font-size: 14.5px;
}
.PrivacyCookieAccepted-close-reject:hover {
  color: #9ad0ff;
  cursor: pointer;
}
@media (max-width: 1300px) {
  .PrivacyCookieAccepted {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .PrivacyCookieAccepted {
    flex-direction: column;
    padding: 20px;
  }
  .PrivacyCookieAccepted-text {
    text-align: justify;
    padding-left: 0;
  }
  .PrivacyCookieAccepted-close {
    padding: 20px 0 5px 0;
  }
}

/* Shame */

/*# sourceMappingURL=app.css.map */