/* YOUR CUSTOM STYLES */

/* https://github.com/shlomiassaf/angular2-modal/issues/280
   work around needed to display modal popups
*/

/* HTML 5structural elements should force a line break */
section, article, header, footer, nav, aside, hgroup {
 display: block;
}

header {
  /* Tell the iPhoneX to dynamically adjust the screen to avoid the notch
     overlapping the status bar using the new env() CSS function */
  padding-top: constant(safe-area-inset-top); /* iOS 11.0 */
  padding-top: env(safe-area-inset-top); /* iOS 11.2 */
  background-color: #2196F3;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
} 

main {
  margin-top: max(40px, calc(env(safe-area-inset-top) + env(safe-area-inset-top))); /* 40px desktop, or auto*/
}

.fade.in {
  opacity: 1;
}

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

.modal-backdrop.in {
  opacity: 0.5;
}
/* end https://github.com/shlomiassaf/angular2-modal/issues/280 "work around"*/

.nav-tabs .nav-item.open .nav-link, .nav-tabs .nav-item.open .nav-link:focus, .nav-tabs .nav-item.open .nav-link:hover, .nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover{
  background-color: rgba(255,255,255,.2);
  color: #fff;
  transition: all 1s;
  border-radius: 2px;
}

.nav-tabs .nav-link{
  color: #fff;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border: 0px;
}

.nav-tabs {
  border:0px;
  padding:.7rem;
  margin-left:1rem;
  margin-right:1rem;
  margin-bottom:-20px;
  z-index:2;
  position:relative;
}

html{
  position: relative;
  height: 100%;
	overflow-x: hidden;
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
  min-height: 100%;
  font-family: Avenir,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after{
   position:absolute; width:0; height:0; overflow:hidden; z-index:-10;
   content:url(../featured_graphic_small.png);                       
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom:1px solid #eee;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 60px;
  z-index: 3;  /* req'd to keep footer above braintree dropin UI , which has z-index: -3 */
  padding-bottom: constant(safe-area-inset-bottom); /* iOS 11.0 */
  padding-bottom: env(safe-area-inset-bottom);      /* iOS 11.2 */
}

.footer-navbar > div {
  width: 20%;
}

.footer-copyright {
  font-size: 0.7em;
  text-align: center;
  margin: 0 auto;
  color: #EDEDED;
}

.footer-copyright a{
  color: #EDEDED;
}

.footer-copyright span {
  display: block;
}

.socialIcons, .browserIcons, .appStoreIcons, .appStoreIcons div, .socialIcons div, .browserIcons div{
  display: inline;
}

.navbar-fixed-top {
  top: 0;
  border: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*position: fixed;*/ /* setting fixed causes overlaps in iPhone X and up with the header*/
    z-index:1000;
    width: 100%;
}

#searchForm div input {
  width: 100%;
}


#custom-search-form {
  margin:0;
  margin-top: 10px;
  padding: 0;
  text-align: center;
  /*padding-top: 148px;
  padding-bottom: 148px;*/
}

#custom-search-form .search-query {
  padding-right: 3px;
  padding-right: 4px \9;
  padding-left: 3px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */

  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 81%;
}

#custom-search-form button, #history-form button {
  border: 0;
  /** belows styles are working good */
  padding: 2px 5px;
  margin-top: 2px;
  position: relative;
  left: -6px;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#custom-search-form button {
  opacity: 0.6;
}

#custom-search-form button:hover, #history-form button:hover {
  cursor: pointer; 
}

#custom-search-form .form-error {
  display: block;
}

.search-query:focus + button {
  z-index: 3;
}

.checkoutBlock {
  width: 100%;
  display: inline-block;
}

.form-error{
  margin: 0 auto;
}


 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* messages timeline */
ul.timeline {
    list-style-type: none;
    position: relative;
    width: 100%;
    z-index: 2;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 3;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 43px;
    text-align: left;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.notificationDesc{
  text-align: left;
}

.carousel-inner {
  overflow: hidden;
}

.carousel-item {
  overflow: hidden;
  flex-direction: column;
}

.carousel-item:hover {
	cursor: pointer;
}

.signupbutton {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 12px 24px;
  border: 1px solid #a12727;
  border-radius: 8px;
  background: #992828;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4a4a), to(#992727));
  background: -moz-linear-gradient(top, #ff4a4a, #992727);
  background: linear-gradient(to bottom, #ff4a4a, #992727);
  -webkit-box-shadow: #ff5959 0px 0px 40px 0px;
  -moz-box-shadow: #ff5959 0px 0px 40px 0px;
  box-shadow: #ff5959 0px 0px 40px 0px;
  text-shadow: #591717 1px 1px 1px;
  font: normal normal bold 20px arial;
  color: #ffffff;
  text-decoration: none;
  margin-top: 12px;
}
.signupbutton:hover, .signupbutton:focus {
  background: #992828;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff5959), to(#b62f2f));
  background: -moz-linear-gradient(top, #ff5959, #b62f2f);
  background: linear-gradient(to bottom, #ff5959, #b62f2f);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.signupbutton:active {
  background: #982727;
  background: -webkit-gradient(linear, left top, left bottom, from(#982727), to(#982727));
  background: -moz-linear-gradient(top, #982727, #982727);
  background: linear-gradient(to bottom, #982727, #982727);
}
.signupbutton:before, .landingButton:before{
  content:  "\0000a0";
  display: inline-block;
  height: 24px;
  width: 24px;
  line-height: 24px;
  margin: 0 4px -6px -4px;
  position: relative;
  top: 0px;
  left: 0px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAEsklEQVRIia2VW2wUZRzFfzs72y677crSUlrSQqmlmrZUrEGq9AEblQeUB2NEk4pSvITwIIkvohAe0BiDmiBRoojE4APRBOIDSljEtNYCQhGlNKWX7fZid9lt99a9ze7MfD7MFFZjFNR/cjKZL9/8z/+cOfONldus0nmU3+WmZaGdUjVHOq2Tvt0ef1tvr3cdFv4fhD5yQoTPvKl4drb++Ey9taNAwv6/ELzzuPsrkZwUYnZCiNlJIVIBIaY6Re+7j1xrXkTrn/dLt80gBChRExFIBsHmpnnzvrrOo7u+31gvd/w3AgRk46DE8oiikA5RVLdO/uyj1w6ureSxf00g1DSi90MYOwnpoEkUMUgy0ziWtkiH3lh3yGWjFMDqtFFU46J2JkME0P+JYE2F9tSy5JX6RF8XFu9JCheUgN0NagrUDOSSuKtqnKHLZ/Rz4+p31o1NbD91oP34ppbijlULsy0FIjU/kyEVUQgbfvyxaktYe2cJK2wyciajoHp/wlmxGGwOUNOgpUFAhc1f+YnH/7GlvYk9R/Zv24lzqelvhNy0l6HBIV9Pr6/bcyXiuTBB92gMn6mwFKguc1LX3sSWl+6jraqmHEfrVtA0cySBcr2P5ZuO3yNnNXKEvSA5bwxscy+lvmVZdf0DevULarQ9Gx5naMQ33H1pquvkr7Oe86N0+5Ncev8s31ybYfenTwa2O5RxsDiMlGlQaLdR6mSJPBFjWETHsBRXgdBvuiIJIwKSoKB0MQ1llbUNa/Tal9VYRyYS0L/1XD71xP7U+hOD7PZ4WfusHl4JikGgW2DmPJKEJI9GGUiEQxSXRQwCiwArxsa5WGLe60bu7JawVJJN1ZkpjPtzBQNIyko0xWge7gdlDCSQQ0kmA9PxeLESdoF+s7k1rzlzanTE1BDBc9eZTRqJq1lA44sbyzegx0DLQXwYlDBIoGvosiaIjgaV8eWR/kaKSgGroUISRv8bSjS0ER+B3hTjaeKvn2ZvWx1th3fccdhdMc+BMgLpEMYLgFQQYhmmZSB79TreRzP+RvQAOJxgd4DFBpIlL6Aaogwc98okR0X0813SqysaCuqssgbZIcNem2laFrxe4hNxfDLAL376kdmALIAEaAlQAUkyYLWABWQXuN3wcANLECqInKGy0Bh8Dumr8PU1unIaQRlgeIafBWCRgTnYAFk3Ya5ZTVhMYH4ZutlcB/UKTP2GevAi+wBdBhgJM5hWwOEyG9gMmQigKG/NahLln2DCJFAg1wNBL7x3gS/GwnRhbic4y2QgRrymHBc2EDEI9xq2uqvBugJYlEci5SlQQIxCohsiGTg6TNeBHnaYIxoEuiDqDeKraaRJ+CHUD+MaKdmClPBhd3qhaDEU3g1SOWAHoYI2DalBiI1DVsD+Sxz7oItXgMCcQNm8qn1jeB/qoykYgr40gee+ZGsmR2bz/Wx7upG2ijAO+TzI88BqJhkVEjl0zyQDezvZNxDgKBDPM/CGUJ5fzZ63Wtl5eoq+bcfYklC4aLpbZLNS31xFW3Mlq6rclNttSKEE8asBBs6O0hmapQcI8nfHfeV8HuxYzRGrRC1//SOSDHNwmXDkOXBLJQEFt/PArdTvxlkxaAvP728AAAAASUVORK5CYII=") no-repeat left center transparent;
  background-size: 100% 100%;
}

.card-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.card-title a:hover{
  cursor: pointer;
}

.card-block p {
  font-size: 0.8rem;
}

#registerForm {
  margin-top: 10em;
}

.h1-responsive {
  border-bottom: 1px solid #EDEDED;
  padding-top: max(45px, env(safe-area-inset-right), env(safe-area-inset-left), env(safe-area-inset-top), env(safe-area-inset-bottom));
  font-size: 200%;
}

.foundPrice {
  font-style: italic;
}

.lastGlassed {
  font-size: 0.82rem;
}

.lastGlassed span:first-child {
  font-weight: bold;
}

.lastGlassed span {
  display: block;
  padding: 0px;
}

#billingInformation {
  width: 100%;
}

#billingInformation > div {
  margin: auto;
}

#send-payment:hover {
  cursor: pointer;
}

@-webkit-keyframes blink {
    0%   { border-color:#00c851; }
    50%  { border-color:#fbeededb;}
    100% { border-color:#00c851; }
}
@-moz-keyframes blink {
    0%   { border-color:#00c851; }
    50%  { border-color:#fbeededb;}
    100% { border-color:#00c851; }
}
@-ms-keyframes blink {
    0%   { border-color:#00c851; }
    50%  { border-color:#fbeededb;}
    100% { border-color:#00c851; }
}

.animatedNotification :before{
 -webkit-animation: blink 1s infinite;
 -moz-animation:    blink 1s infinite;
 -ms-animation:     blink 1s infinite;
}

.animatedNotification .notificationTitle{
  background-color: #fff2ac;
  background-image: linear-gradient(to right, #ffe359 0%, #fff2ac 100%);
}

.glassItLogo {
  padding: 0px;
  margin: 0px;
}

.glassItLogo img{
  max-width: 100%;
  height: auto;
  max-height: 40px;
}

.targetPriceSettingButton {
  margin: 0px;
  overflow: unset;
}

#dropin-container label{
  display: unset;
}

#modalSearchResultsForm div.modal-dialog {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-top: max(10px, env(safe-area-inset-top), env(safe-area-inset-left), env(safe-area-inset-right), env(safe-area-inset-bottom));
  padding-left: max(10px, env(safe-area-inset-top), env(safe-area-inset-left), env(safe-area-inset-right), env(safe-area-inset-bottom));
  padding-right: max(10px, env(safe-area-inset-top), env(safe-area-inset-left), env(safe-area-inset-right), env(safe-area-inset-bottom));
}

.contactUs {
  text-align: center;
}

.privacyPolicy, .contactUs, .aboutUs, .termsOfService {
  display: none;
  padding-top: 20px;
}

.contactUsResult {
  padding-top: max(25px, env(safe-area-inset-top), env(safe-area-inset-left), env(safe-area-inset-right), env(safe-area-inset-bottom));
}

.aboutUs {
  text-align: center;
}

.aboutUs div.card {
  padding-bottom: 25px;
}

.contactUs span{
  display: block;
}

.privacyPolicy ul li {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  margin-top: 0;
  margin-left: 1.4rem;
  line-height: 1.65rem;
  max-width: 75ch;
  position: relative;
}

.privacyPolicy ul li:before {
  color: rgba(0, 0, 0, 0.3);
  content: "·";
  font-family: B_Proportional-Bold, Courier, monospace;
  font-size: 1.875rem;
  left: -1.5625rem;
  position: absolute;
  top: 0px;          
}

.privacyPolicy {
  padding-bottom: 100px;  /*else overlaps footer on mobile */
}

.cali-privacy-policy-container {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.cali-privacy-policy {
  border: 1px solid #000;
  font-family:"Avenir Next W01", "Avenir Next", Helvetica, sans-serif;
  font-size:16px;
  line-height:1.65rem;
  border-collapse: collapse;
  border-spacing: 0;
}

.cali-privacy-policy th {
  font-weight: 600;
}

.cali-privacy-policy td {
  text-align: left;
}

.cali-privacy-policy th, .cali-privacy-policy td {
  border: 1px solid #000;
  font-size: smaller;
  line-height: 1.2rem;
  padding: 0.3rem;
  vertical-align: baseline;
  width: 25%;
}

.cali-privacy-policy ul{
  line-height: 1.2rem;
  margin-left: 1rem;
  margin-top: 0px;
  padding: 0px;
}

.app_icon {
  display: none;
}

.app_icon img {
  height: 32px;
  padding-top: 5px;
}

.ios img, .android img {
  padding-top: 0px;
}

.loaderSpinner {
  padding-top: 45px;
}

.faq li {
  float: left;
  text-align: left;
}

.faq li.col-md-11 {
  border-bottom: 1px solid #EDEDED;
  padding-top: 5px;
  padding-bottom: 5px;
}

.curtain {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .curtain, .curtain__panel, .curtain__content {
    background-size: contain;
    /*background-image: url("../featured_graphic_small.png");*/
    height: 176px;
  }
  .curtain__content input {
    padding-left: 5.0vw;
  }
}

@media only screen and (min-width: 600px) {
  .curtain, .curtain__panel, .curtain__content {
    background-size: auto;
    background-image: url("../landing_background.png");
    height: 230px;
  }
  .curtain__content input {
    padding-left: 4.0vw;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .curtain__content input {
    padding-left: 5.0vw;
  }
}

/* Large devices (laptops/desktops, 1025px and up) */
@media only screen and (min-width: 1025px) {
  .curtain__content input {
    padding-left: 2.2vw;
  }
}

.curtain__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.curtain__wrapper input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  top: 0;
  left: 0;
}

.curtain__content input[type=password] {
  background-color: #fff;
}

.curtain__wrapper input[type=checkbox]:checked ~ div.curtain__panel--left {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.curtain__wrapper input[type=checkbox]:checked ~ div.curtain__panel--right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.curtain__panel {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background: #ffa42e;
  color: #fff;
  float: left;
  position: relative;
  width: 50%;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  transition-property: transform, translateY; /* transform = curtain, translateY = error messages */
  z-index: 2;
}
.curtain__panel--left {
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.curtain__panel--right {
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.curtain__content {
  -webkit-box-align: center;
          align-items: center;
  background-position: center;
  opacity: 1;
  background-color: #fff; /*#2196F3;*/ /*white looks better on PC*/
  background-repeat: no-repeat;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  width: 100%;
}

#landing-form i {
  left: 0;
  padding-right: 1vw;
}

#landing-form i.fa-lock.active {
  color: #ffa42e;
}

#landing-form i.fa-lock {
  color: #2196F3;
}

.landingSection .col-md-5{
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0px;
}

.landingSection span.col-md-4{
  display: inline-block;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
  float: left;
}

.landingSection img.img-fluid{
  margin: auto;
  max-width: 34%;
}

.landingSection h2 {
  text-align: center; 
  padding-top: 7%;
  font-size: 145%;
}

.landingSection ul {
  padding-top: 10px;
}

.landingSection li {
  list-style-type:circle;
  margin-left: 9%;
}

/*.landingSection button{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.landingSection button:hover {
  cursor: pointer;
}*/

.landingSection .centered {
  /*display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;*/
  margin: 0;
  position: absolulte;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.extensionStart {
  text-align: center;
  font-size: 85%;
}

.homePageItems h2{
  padding-top: max(45px, env(safe-area-inset-right), env(safe-area-inset-left), env(safe-area-inset-top), env(safe-area-inset-bottom));
  font-size: 145%;
  text-align: center;
}

.supped strong {
  display: block;
  font-size: 50%;
  opacity: 0.75;
  font-weight: bold;
}

.suppedDash strong {
  font-size: 87%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.supped strong a {
  color: #000;
}

.fa-arrow-left:hover {
  cursor: pointer;
}

.fa-arrow-right:hover {
  cursor: pointer;
}

.d3LineGraph:hover {
  cursor: pointer;
}

#historyItemURL {
  font-size: 65%;
}

.refText {
  color: #000;
}

.resp-sharing-button__link, .resp-sharing-button__icon {
  display: inline-block
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
}

.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 0.5em 0.75em;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--pinterest {
  background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
  background-color: #8c0615
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--tumblr {
  background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
  background-color: #222d3c
}

.resp-sharing-button--reddit {
  background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
  background-color: #3a80c1
}

.resp-sharing-button--google {
  background-color: #dd4b39
}

.resp-sharing-button--google:hover {
  background-color: #c23321
}

.resp-sharing-button--linkedin {
  background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
  background-color: #046293
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--xing {
  background-color: #1a7576
}

.resp-sharing-button--xing:hover {
  background-color: #114c4c
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--hackernews {
background-color: #FF6600
}
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus {   background-color: #FB6200 }

.resp-sharing-button--vk {
  background-color: #507299
}

.resp-sharing-button--vk:hover {
  background-color: #43648c
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--email {
  background-color: #777777;
  border-color: #777777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}

.resp-sharing-button--reddit {
  background-color: #5f99cf;
  border-color: #5f99cf;
}

.resp-sharing-button--reddit:hover, .resp-sharing-button--reddit:active {
  background-color: #3a80c1;
  border-color: #3a80c1;
}

.FlexBox {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.FlexBox .FlexRow{
  flex: 1 1 auto;
}

#contest_rules {
  text-align: left;
  font-family: arial;
}

#contest_rules li{
  padding-bottom: 7px;
}

.rules_section {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: bold;
  right: 4vh;
}

.glassItBtn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.promo_table_header td {
  background-color: #fff;
  border: 1px solid #000;
  font-weight: bold;
  font-family: 'Roboto';
}

.promo_table_body td{
  border: 1px solid #000;
  font-size: 90%;
}

i.fa-question-circle:hover {
  cursor: pointer;
}

#pendingItemsList .cancelRequest button:hover{
  cursor: pointer;
}

#pendingItemsList ul {
  text-align: left;
  padding-left: 3vh;
}

#pendingItemsList ul li {
  list-style-type: decimal;
}

.cancelRequest, .pendingItem{
  display: inline-block;
}

.cancelRequest {
  font-weight: bold;
  font-size: 80%;
  padding-left: 0.5vh;
}

.pendingItem {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  top: 4px;
}

.stickyReport {
  display: inline-flex;
  border: 1px solid #d3d3d3;
}

.reportOptions {
  margin-left: auto;
}

.reportOptions i {
  padding-left: 4px;
  position: relative;
  top: 3px;
  left: 6px;
  font-size: 85%;
}

.reportOptions i:hover {
  cursor: pointer;
}

.solutions li{
  display: block;
  width: 100%;
  text-align: center;
}

.onBoardingItemStatus {
  height: 15px;
  width: 15px;
}

.businessItemSelect, .businessItemImg, .businessItemName, .businessItemSKU, .businessItemCost, .businessItemPrice, .businessItemCompetitors, .businessItemsRow div,
.myItemSelect, .myItemImg, .myItemName, .myItemPrice, .myItemCompetitors, .myItemsRow div {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  font-size: 81%;
}

.businessItemsRow, .myItemsRows {
  padding: 0px;
}

#firstPage:hover, #lastPage:hover, #nextPage:hover, #prevPage:hover,
#myItems_firstPage:hover, #myItems_lastPage:hover, #myItems_nextPage:hover, #myItems_prevPage:hover {
  cursor: pointer;
}

.fa-edit:hover, .fa-times {
  cursor: pointer;
}

#customCompetitorsEditList li:hover {
  background-color: #EDE;
}

.graph-tooltip {
  border: 1px solid #ccc;
  position: absolute;
  padding: 10px;
  background-color: #fff;
  display: none;
  pointer-events: none;
	width: 50%;
	height: 64px;
	z-index: 999; /* below header/footer */
}

.graph-tooltip .price {
  font-weight: bold;
}

.graph-tooltip .date {
  font-size: 80%;
}
