/*
 * Reuse Glaze Basic setting of fonts and reset
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, input,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
}

/*
 * Base (stylesheets are under /dobermanConsumer/base, not /glaze/base)
 * Initial settings. Resets, element styles, variables, mixins
 */
/*
 * Color
 * All the colors we are using on the site
 */
/********Gray**********/
/********Green********/
/********Gold********/
/********Red********/
/********Turquoise*********/
/********Purple*********/
/********Teal*********/
/********Social Icon Color*********/
/*
 * Breakpoints ----- Layout
 * The window width that will potentially change the way we layout things
 */
/*
 * Dimensions
 * The height or width of a type of element
 */
/********Form*********/
/*
 * Typography
 * Variables that's used to set typography styles
 */
/********Font Family*********/
/********Font Size*********/
/********Line Height*********/
/*
 * Base styles
 */
body {
  background: #f5f7f9;
  font-family: "Source Sans Pro", Verdana, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  color: #78828c;
  text-align: center;
}

h1 {
  font-size: 26px;
  font-weight: 600;
  color: white;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  color: #78828c;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1c1c1c;
}

h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #1c1c1c;
}

strong {
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
}
p {
  margin-bottom: 1em;
  white-space: normal;
}

/*
 * a
 * Default link styles.
 */
a {
  color: #2db4d2;
  cursor: pointer;
}
a:hover, a:active {
  color: #739BFF;
}

/*
 * ul
 * Default list styles. No bullet points.
 */
ul {
  list-style-type: none;
}

/*
 * dialog
 * Default html5 dialog styles.
 */
dialog {
  display: none;
  position: relative;
  right: auto;
  left: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
dialog[open] {
  display: block;
}

/* $border1 is the height of the arrow, $border2 is width/2 of the arrow */
/* $border1 is the height of the arrow, $border2 is width/2 of the arrow */
/* $border1 is the height of the arrow, $border2 is width/2 of the arrow */
/*
* You can add a .btn to <a> to style it like a button
* Add .btn.gray-btn to style <a> like a gray button
*/
.btn,
button,
input[type=reset],
input[type=submit],
input[type=button] {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-family: "Source Sans Pro", Verdana, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 17px 0;
  margin-top: 10px;
  line-height: 1;
  color: white;
  background: #2db4d2;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-appearance: none;
}
.btn:hover, .btn.loading,
button:hover,
button.loading,
input[type=reset]:hover,
input[type=reset].loading,
input[type=submit]:hover,
input[type=submit].loading,
input[type=button]:hover,
input[type=button].loading {
  background: #739BFF;
  color: white;
}
.btn:disabled, .btn.disabled,
button:disabled,
button.disabled,
input[type=reset]:disabled,
input[type=reset].disabled,
input[type=submit]:disabled,
input[type=submit].disabled,
input[type=button]:disabled,
input[type=button].disabled {
  cursor: auto;
  background: #d2d7dc;
}
.btn.red-btn,
button.red-btn,
input[type=reset].red-btn,
input[type=submit].red-btn,
input[type=button].red-btn {
  background: #e66878;
}
.btn.red-btn:hover, .btn.red-btn.loading,
button.red-btn:hover,
button.red-btn.loading,
input[type=reset].red-btn:hover,
input[type=reset].red-btn.loading,
input[type=submit].red-btn:hover,
input[type=submit].red-btn.loading,
input[type=button].red-btn:hover,
input[type=button].red-btn.loading {
  background: #e66878;
}
.btn.gray-btn,
button.gray-btn,
input[type=reset].gray-btn,
input[type=submit].gray-btn,
input[type=button].gray-btn {
  color: #78828c;
  background: #d2d7dc;
}
.btn.gray-btn:hover, .btn.gray-btn.loading,
button.gray-btn:hover,
button.gray-btn.loading,
input[type=reset].gray-btn:hover,
input[type=reset].gray-btn.loading,
input[type=submit].gray-btn:hover,
input[type=submit].gray-btn.loading,
input[type=button].gray-btn:hover,
input[type=button].gray-btn.loading {
  background: #e6ebf0;
}

.icon-edit {
  color: #a0aab4;
}
.icon-edit:hover, .icon-edit.active {
  color: #78828c;
}

button.link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  color: #2db4d2;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: inherit;
  text-align: left;
  display: inline;
  width: auto;
  height: auto;
  text-decoration: underline;
}
button.link:hover {
  color: #739BFF;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Form Style
 * label, input(text, password, radio button, checkbox), select, textarea, button
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/*
 * Label
 */
label {
  cursor: pointer;
  color: #1c1c1c;
}

/*
 * General
 */
input,
select,
textarea,
button {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
  margin-bottom: 10px;
  outline: none;
  -webkit-appearance: none;
}

input[type=text],
input[type=password],
input[type=search],
textarea {
  width: 100%;
  border: 1px solid #d2d7dc;
  color: #1c1c1c;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
textarea:disabled {
  background: #d2d7dc;
  opacity: 0.3;
}

input[type=date] {
  width: 100%;
}

input[type=text],
input[type=password],
input[type=date],
input[type=search] {
  height: 36px;
  max-width: 440px;
  padding: 0 10px;
}

/* hides ie10+ default close/password icons */
input[type=text]::-ms-clear,
input[type=password]::-ms-reveal {
  width: 0;
  height: 0;
}

textarea {
  margin-top: 10px;
  padding: 10px;
}
textarea:disabled, textarea:read-only {
  background: #d2d7dc;
  opacity: 0.3;
}
textarea:-moz-read-only {
  background: #d2d7dc;
  opacity: 0.3;
}

input[type=text].error,
input[type=password].error,
textarea.error {
  color: #1c1c1c;
  border-color: #d1394d;
}

input[type=text].short_input,
input[type=password].short_input {
  display: inline-block;
  width: 73px;
  padding: 0 4px;
}

input[type=text].middle_input,
input[type=password].middle_input {
  padding: 0 10px;
}

/*
 * Radio Button
 * source: http://www.sitepoint.com/replacing-radio-buttons-without-replacing-radio-buttons/
 */
input[type=radio] {
  position: absolute;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

input[type=radio] + label {
  display: table;
  color: inherit;
}

input[type=radio] + label:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  vertical-align: top;
  margin: 2px 15px 0 2px;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d2d7dc;
}

input[type=radio]:checked + label:before {
  background: #2db4d2;
  box-shadow: 0 0 0 1px #a0aab4;
}

input[type=radio]:hover + label:before,
input[type=radio] + label:before:hover {
  box-shadow: 0 0 0 1px #a0aab4;
}

input[type=radio]:checked:hover + label:before,
input[type=radio]:checked + label:before:hover {
  background: #77cca2;
  box-shadow: 0 0 0 1px #d2d7dc;
}

input[type=radio]:disabled + label:before {
  background: #e6ebf0;
  border-color: #e6ebf0;
  box-shadow: 0 0 0 1px #d2d7dc;
}

input[type=radio]:checked:disabled + label:before {
  background: #77cca2;
  border-color: #d2d7dc;
}

/*------Checkbox------*/
input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  float: left;
  background: white;
  margin-right: 10px;
  content: "";
  color: #78828c;
  font-family: "icomoon";
  text-align: center;
  padding-left: 1px;
  margin-top: 2px;
  width: 14px;
  height: 14px;
  font-size: 10px;
  border: 1px solid #d2d7dc;
}

input[type=checkbox] + label span,
input[type=radio] + label span {
  display: table-cell;
  vertical-align: middle;
}
input[type=checkbox] + label span span.inline,
input[type=radio] + label span span.inline {
  display: inline;
}

input[type=checkbox].small + label:before {
  margin-top: 0;
}

input[type=checkbox]:checked + label:before {
  content: "\e90a";
  background: #d2d7dc;
}

input[type=checkbox].active + label:before {
  content: "\e800";
  background: #d2d7dc;
}

input[type=checkbox]:disabled + label,
input[type=radio]:disabled + label {
  color: #d2d7dc;
}

input[type=checkbox]:disabled + label:before {
  color: #d2d7dc;
  background: #e6ebf0;
}

input[type=checkbox]:hover + label:before,
input[type=checkbox] + label:hover:before {
  background: #e6ebf0;
}

/*------Special Checkbox: Toggle------*/
input[type=checkbox].toggle + label:before {
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  padding-left: 1px;
  width: 35px;
  height: 18px;
  font-size: 10px;
  content: "";
  background: #a0aab4;
  border: 0;
  margin: 0;
}

input[type=checkbox].toggle + label span.toggle {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  display: inline-block;
  text-indent: -20000px;
  position: absolute;
  left: 1px;
  top: 1px;
  height: 16px;
  width: 16px;
  background: white;
}

input[type=checkbox].toggle:checked + label:before {
  background: #2db4d2;
}

input[type=checkbox].toggle:disabled + label:before {
  background: #e6ebf0;
}

input[type=checkbox].toggle:checked + label span.toggle {
  left: 18px;
}

@media only screen and (min-width: 768px) {
  input[type=text],
  input[type=password] {
    display: block;
    max-width: 400px;
  }
  input[type=text].short_input,
  input[type=password].short_input {
    padding: 0 5px;
    width: 65px;
  }
  input[type=text].middle_input,
  input[type=password].middle_input {
    width: 286px;
  }
}
/*
 * Normalize Browser Default
 */
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: #78828c;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  display: none;
  margin: 0;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #a0aab4;
  font-weight: 200;
  font-family: inherit;
  font-size: inherit;
}

@font-face {
  font-family: "icomoon";
  src: url("../../fonts/icomoon.eot?am0q92");
  src: url("../../fonts/icomoon.eot?am0q92#iefix") format("embedded-opentype"), url("../../fonts/icomoon.ttf?am0q92") format("truetype"), url("../../fonts/icomoon.woff?am0q92") format("woff"), url("../../fonts/icomoon.svg?am0q92#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before, [class^=icon-]:after,
[class*=" icon-"]:before,
[class*=" icon-"]:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-add:before {
  content: "\e602";
}

.icon-announce:before {
  content: "\e900";
}

.icon-confirm:before {
  content: "\e606";
}

.icon-customer:before {
  content: "\e901";
}

.icon-customize:before {
  content: "\e608";
}

.icon-download:before {
  content: "\e60a";
}

.icon-dropdown:before {
  content: "\e60b";
}

.icon-edit:before {
  content: "\e60c";
}

.icon-feedback:before {
  content: "\e60f";
}

.icon-help:before {
  content: "\e611";
}

.icon-logout:before {
  content: "\e612";
}

.icon-mobile:before {
  content: "\e616";
}

.icon-more:before {
  content: "\e617";
}

.icon-new-customer:before {
  content: "\e618";
}

.icon-refer:before {
  content: "\e619";
}

.icon-review:before {
  content: "\e61b";
}

.icon-send:before {
  content: "\e61c";
}

.icon-star:before {
  content: "\e620";
}

.icon-clock:before {
  content: "\e625";
}

.icon-less:before {
  content: "\e627";
}

.icon-recurring:before {
  content: "\e628";
}

.icon-more-active:before {
  content: "\e629";
}

.icon-google-plus:before {
  content: "\f0d5";
}

.icon-yelp:before {
  content: "\f1e9";
}

.icon-facebook:before {
  content: "\f09a";
}

.icon-facebook-f:before {
  content: "\f09a";
}

.icon-twitter:before {
  content: "\f099";
}

.icon-linkedin:before {
  content: "\f0e1";
}

.icon-instagram:before {
  content: "\f16d";
}

.icon-vimeo:before {
  content: "\ea9c";
}

.icon-error:before {
  content: "\e60e";
}

.icon-pushpin:before {
  content: "\e946";
}

.icon-less-active:before {
  content: "\e62a";
}

.icon-business:before {
  content: "\e600";
}

.icon-account:before {
  content: "\e902";
}

.icon-delete:before {
  content: "\e60d";
}

.icon-location:before {
  content: "\e61e";
}

.icon-search:before {
  content: "\e621";
}

.icon-agency:before {
  content: "\e622";
}

.icon-close:before {
  content: "\e801";
}

.icon-hamburger:before {
  content: "\e802";
}

.icon-transactions:before {
  content: "\e903";
}

.icon-referrals:before {
  content: "\e904";
}

.icon-email:before {
  content: "\e905";
  font-size: 14px;
}

.icon-added:before {
  content: "\e906";
}

.icon-schedule:before {
  content: "\e908";
}

.icon-check:before {
  content: "\e90a";
}

.icon-alert:before {
  content: "\e907";
}

.icon-customers:before {
  content: "\e90b";
}

.icon-helper:before {
  content: "\e90c";
}

.icon-move:before {
  content: "\e90d";
}

.icon-offer:before {
  content: "\e90e";
  font-size: 20px;
}

.icon-edit2:before {
  content: "\e90f";
}

.icon-alarm:before {
  content: "\e910";
}

.icon-caution:before {
  content: "\e909";
}

.icon-facebook-outline:before {
  content: "\e911";
}

/*
 * Layout
 * Reusable block of code that comprise page styles
 */
/*
 * blue background Layout, only used for feedback landing pages anymore
 */
.container {
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  box-sizing: border-box;
}

.top-section {
  background: #77cca2;
  padding: 32px 0;
}
.top-section.neutral, .top-section.white-banner {
  background: white;
  border-bottom: 1px solid #d2d7dc;
  box-shadow: 1px 1px 1px #d2d7dc;
}
.top-section.neutral h1, .top-section.white-banner h1 {
  font-size: 22px;
  color: #78828c;
}

.logo {
  max-width: 100%;
  min-height: 60px;
  max-height: 85px;
  margin-bottom: 15px;
}

.merchant-header {
  padding: 15px 0;
  background: white;
  border: 1px solid #d2d7dc;
  box-shadow: 1px 1px 1px #d2d7dc;
}

.column-wrapper {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.link-list {
  display: flex;
  flex-direction: column;
}
.link-list li {
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.box {
  width: 100%;
  border: 1px solid #d2d7dc;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 30px;
  background: white;
  box-shadow: 1px 1px 1px #d2d7dc;
}

.left-column,
.right-column {
  margin-top: 30px;
  text-align: left;
}

.column {
  margin: 100px auto;
}

.right-column ul {
  margin-bottom: 15px;
}

.phone {
  margin-top: 5px;
  margin-bottom: 10px;
}

.static-map {
  width: 100%;
  height: 200px;
  margin: 10px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.directions {
  font-size: 16px;
}

.description {
  margin-bottom: 5px;
}

.day {
  display: inline-block;
  width: 110px;
}

.ellipsis {
  display: none;
}
.ellipsis.toggled-active {
  display: inline-block;
}

.show-more-text {
  display: none;
}
.show-more-text.toggled-active {
  display: inline;
}
.show-more-text.toggled-inactive {
  display: none;
}

footer span {
  display: inline-block;
  margin: 40px auto;
  line-height: 1;
  font-size: 12px;
}

.sp-brand {
  width: 65px;
  height: 10px;
  display: inline-block;
  text-indent: -20000px;
  background: url(../../images/glaze/company.png) #e6ebf0;
  background-repeat: no-repeat;
  background-size: 65px auto;
  background-position: center center;
  border-radius: 3px;
  padding: 10px 12px;
  margin: 0 10px;
}

@media only screen and (min-width: 768px) {
  .logo {
    margin-right: 30px;
    margin-bottom: 0;
    float: left;
  }
  .container {
    padding: 0 58px;
  }
  .top-section .container {
    padding: 0px 135px;
  }
  .column {
    max-width: 550px;
  }
  .merchant-header {
    text-align: left;
  }
  .logo-wrapper,
  .snapshot-wrapper {
    display: table-cell;
    vertical-align: middle;
  }
  .link-list {
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
  }
  .link-list li {
    max-width: 70%;
    margin-bottom: 0;
    padding: 0 10px;
    border-left: 1px solid #d2d7dc;
  }
  .link-list li:first-child {
    padding-left: 0;
    border: 0;
  }
  .merchant-info {
    margin: 30px auto 0;
  }
  .merchant-info .column-wrapper {
    flex-direction: row;
    min-width: 500px;
    max-width: 900px;
  }
  .merchant-info .left-column,
  .merchant-info .right-column {
    width: 48%;
    height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .container {
    width: 1020px;
  }
  .top-section.neutral h1, .top-section.white-banner h1 {
    font-size: 20px;
  }
}
/*
 * Components
 * Reusable block of code that comprise component styles
 */
/*
* custom dropdown styles
*/
.custom-dropdown {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  border: 0;
  cursor: pointer;
  outline: none;
  margin: 10px 0;
}
.custom-dropdown .selected-option {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  background: #d2d7dc;
  padding: 10px 40px 10px 20px;
  font-weight: 600;
}
.custom-dropdown .selected-option:hover {
  background: #e6ebf0;
}
.custom-dropdown .selected-option:after {
  border-color: #78828c transparent;
  border-style: solid;
  border-width: 8px 4px 0;
  width: 0;
  height: 0;
  display: inline-block;
  line-height: 0;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  content: "";
  content: "";
  right: 20px;
}
.custom-dropdown .selected-option.error {
  border: 1px solid #d1394d;
}
.custom-dropdown > ul {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: inherit;
  border: 1px solid #d2d7dc;
  list-style: none;
  opacity: 0;
  pointer-events: none;
}
.custom-dropdown > ul.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.custom-dropdown > ul.scroll {
  max-height: 360px;
  overflow-y: scroll;
}
.custom-dropdown li {
  display: block;
  overflow: hidden;
  padding: 10px 20px 10px 20px;
}
.custom-dropdown li:not(.disabled):hover {
  background: #e6ebf0;
}
.custom-dropdown li:first-of-type {
  margin-top: 4px;
}
.custom-dropdown li:last-of-type {
  margin-bottom: 4px;
  border: none;
}
.custom-dropdown li.disabled {
  color: #d2d7dc;
  cursor: default;
}

@media only screen and (min-width: 768px) {
  .custom-dropdown {
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
  }
  .custom-dropdown > span {
    display: inline-block;
  }
}
.full-width-custom-dropdown {
  margin: 0;
  width: 100%;
}

/**
* Styles for the post feedback submission cta
**/
.feedback-cta h1 {
  margin-bottom: 15px;
}
.feedback-cta h2 {
  margin-bottom: 10px;
  color: #1c1c1c;
}
.feedback-cta h3 {
  margin-bottom: 20px;
}
.feedback-cta .btn {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #e66878;
}
.feedback-cta button.link {
  margin-top: 20px;
}
.feedback-cta .sms-fine-print {
  padding-top: 10px;
}

/*
* Styles for the forms on the page. Must use a subclass
*/
.feedback-forms {
  text-align: left;
}
.feedback-forms input[type=submit] {
  margin-top: 20px;
}
.feedback-forms .feedback-label {
  margin-bottom: 10px;
}

.five-star-feedback-forms .known-feedback-rating-question {
  margin-bottom: 0;
}
.five-star-feedback-forms .unknown-feedback-rating-question {
  margin-bottom: 10px;
}

.nps-feedback-forms .known-feedback-rating-question {
  margin-bottom: 15px;
}
.nps-feedback-forms .unknown-feedback-rating-question {
  margin-bottom: 15px;
}

/**
* styles for the mobile and desktop displays of the nps rating form
*/
.select-nps-rating .select-nps-rating-desktop {
  display: none;
}
.select-nps-rating .select-nps-rating-mobile {
  display: block;
}
.select-nps-rating .nps-buttons-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
}
.select-nps-rating .nps-rating-labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* when there is another question following this, we need to put some space in between the two*/
.known-feedback-select-nps-rating .select-nps-rating-desktop {
  margin-bottom: 30px;
}
.known-feedback-select-nps-rating .select-nps-rating-mobile {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .select-nps-rating .select-nps-rating-desktop {
    display: block;
  }
  .select-nps-rating .select-nps-rating-mobile {
    display: none;
  }
}
.star-rating input[type=radio] {
  position: absolute;
  height: 0px;
  width: 0px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.star-rating input[type=radio] + label {
  display: table;
  float: left;
  font-size: 44px;
  color: #d2d7dc;
  cursor: pointer;
  padding: 0 3px;
}
.star-rating input[type=radio]:first-child + label {
  padding-left: 0;
}
.star-rating input[type=radio].hover + label,
.star-rating input[type=radio]:hover + label {
  color: #f9bf54;
}
.star-rating input[type=radio]:disabled:hover:not(:checked) + label {
  color: #d2d7dc;
}
.star-rating input[type=radio].hover:disabled:hover + label {
  color: #f9bf54;
}
.star-rating input[type=radio] + label:before {
  height: 0;
  width: 0;
  margin: 0;
  border: 0;
  box-shadow: none;
  background: none;
}
.star-rating .star-rating-text {
  font-size: 18px;
  display: block;
  float: left;
  clear: both;
}

@media only screen and (min-width: 1024px) {
  .star-rating input[type=radio] + label {
    font-size: 46px;
    padding: 0 6px;
  }
  .star-rating .star-rating-text {
    margin-left: 14px;
    line-height: 72px;
    clear: none;
  }
}
/**
* Known feedback subclass of star rating. It's slightly smaller than the default.
**/
.star-rating-known input[type=radio] + label {
  font-size: 30px;
  padding: 0 2px;
}
.star-rating-known .star-rating-text {
  font-size: 16px;
  line-height: 49px;
  float: left;
  margin: 0 0 0 14px;
  clear: none;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Square radio buttons with the label in the middle for NPS landing page
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.square-label-radio-button input[type=radio] + label {
  display: block;
  width: 40px;
  height: 50px;
  border-radius: 3px;
  background-color: #d2d7dc;
  color: #78828c;
  line-height: 50px;
  text-align: center;
}
.square-label-radio-button input[type=radio] + label:before {
  display: none;
}
.square-label-radio-button input[type=radio]:checked + label {
  background-color: #2db4d2;
  color: white;
}
.square-label-radio-button input[type=radio] + label:hover {
  background-color: #2db4d2;
  color: white;
}

/*******
*  @tooltip: the tooltip container. Must contain tooltip-container
* tooltip-content: a snippet of information displays when triggered
* tooltip-icon: an icon that displays light tooltip on hover
* @light-tooltip: triggered on icon hover. displayed below content.
* @dark-tooltip: triggered by hover or click. displayed above content.
********/
.tooltip {
  display: inline-block;
  position: relative;
}

.tooltip-icon {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  margin: auto 5px;
  color: #78828c;
  font-size: 8px;
  text-align: center;
  border: 1px solid;
  border-radius: 50%;
  cursor: pointer;
  /* positions the help icon */
}
.tooltip-icon:before {
  display: inline-block;
  padding-top: 3px;
}
.tooltip-icon:hover {
  color: #77cca2;
}
.tooltip-icon:hover + .tooltip-content {
  display: block;
}

.tooltip-content {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: absolute;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  box-sizing: border-box;
  z-index: 99;
}
.tooltip-content.light-tooltip {
  display: none;
  width: 260px;
  margin-left: -160px;
  margin-top: 12px;
  color: #78828c;
  text-align: left;
  text-transform: none;
  background-color: white;
  border: 1px solid #a0aab4;
}
.tooltip-content.light-tooltip:before {
  border-color: white transparent;
  border-style: solid;
  border-width: 0 9px 9px;
  width: 0;
  height: 0;
  display: inline-block;
  line-height: 0;
  position: absolute;
  top: 0;
  margin-top: -9px;
  left: 50%;
  margin-left: -9px;
  content: "";
  z-index: 9999;
  margin-left: 34px;
}
.tooltip-content.light-tooltip:after {
  border-color: #a0aab4 transparent;
  border-style: solid;
  border-width: 0 10px 10px;
  width: 0;
  height: 0;
  display: inline-block;
  line-height: 0;
  position: absolute;
  top: 0;
  margin-top: -10px;
  left: 50%;
  margin-left: -10px;
  content: "";
  z-index: 999;
  margin-left: 33px;
}

@media only screen and (min-width: 768px) {
  .tooltip-content {
    width: 300px;
    margin-left: -68px;
  }
}
/*
 * Helper
 * Reusable class on all elements to overwrite part of the
 * element's default style without rewriting big chunk of code
 */
/*
 * Helper
 */
.white {
  color: white;
}

.gray-10 {
  color: #1c1c1c;
}

.gray-30 {
  color: #78828c;
}

.red-00 {
  color: #d1394d;
}

.smaller-font {
  font-size: 16px;
}

.normal {
  font-weight: 400;
}

.align-left {
  text-align: left;
}

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

@media only screen and (min-width: 1024px) {
  .smaller-font {
    font-size: 14px;
  }
}
.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.hide {
  display: none;
}

.display-table {
  display: table;
}

.display-table-cell {
  display: table-cell;
  float: none !important;
}

.inline-block-to-block {
  display: inline-block;
}

/* MOBILE ONLY STYLES */
.block-to-none {
  display: block;
}

.inline-to-none {
  display: inline;
}

/* DESKTOP ONLY STYLES */
.none-to-block,
.none-to-inline-block {
  display: none;
}

@media only screen and (min-width: 768px) {
  .inline-block-to-block {
    display: block;
  }
  /* MOBILE ONLY STYLES */
  .block-to-none,
  .inline-to-none {
    display: none;
  }
  /* DESKTOP ONLY STYLES */
  .none-to-block {
    display: block;
  }
  .none-to-inline-block {
    display: inline-block;
  }
}
/*
 * margin styles
 */
.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mv-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

/*
* padding styles
*/
.pr-10 {
  padding-right: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pv-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pv-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

/*
 * CSS hack
 */
.overflow-hidden {
  overflow: hidden;
}

.clearfix:after {
  display: block;
  content: " ";
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  clear: both;
}

.responsive-padding {
  padding-right: 6.25%;
  padding-left: 6.25%;
}

/*------Media Query---------*/
@media only screen and (min-width: 768px) {
  .responsive-padding {
    padding-right: 0;
    padding-left: 0;
  }
}
/*
 * Pages
 * Page specific styles
 */
.text {
  min-height: 110px;
}

.recommend-question {
  max-width: 380px;
}

.remarket li {
  display: block;
  margin: 15px auto;
  border-width: 0;
}

.positive-text {
  font-size: 24px;
}

.customer-consent {
  position: relative;
  margin: 10px 0;
  text-align: left;
}
.customer-consent label {
  color: #78828c;
}
.customer-consent .tooltip {
  margin-top: 1px;
  vertical-align: top;
  z-index: 1;
}

textarea[name=feedback]::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
}

textarea[name=feedback]:-moz-placeholder {
  font-style: italic;
  font-weight: 300;
}

textarea[name=feedback]::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
}

textarea[name=feedback]:-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
}

.sms-fine-print {
  font-size: 14px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .remarket li {
    display: inline-block;
    margin-right: 10px;
    border-width: 1px;
  }
}
.sms-fine-print {
  padding-top: 30px;
  text-align: center;
}

.sms-terms {
  font-size: 18px;
}

.sms-print {
  font-size: 16px;
}