@font-face {
  font-family: AmazonEmber;
  src: url(assets/AmazonEmber_Rg.ttf);
}
@font-face {
  font-family: AmazonEmber;
  src: url(assets/AmazonEmber_Bd.ttf);
  font-weight: bold;
}
@font-face {
  font-family: AmazonEmber;
  src: url(assets/AmazonEmber_Lt.ttf);
  font-weight: 200;
}
* {
  font-family: 'AmazonEmber';
}
a:hover {
  color: #0e00cc;
}
html {
  height: 100%;
  width: 100%;
}
body {
  font: 100% "AmazonEmber", "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
  color: #666;
  margin: 0px;
  height: inherit;
  background-color: #f2f2f2;
}
#root {
  height: inherit;
}
iframe {
  border: none;
  /* These are the absolute minimum sizes such that the CCP has no scoll bars. */
  min-height: 465px;
  min-width: 200px;
}
#customer-profiles-mount iframe {
  min-height: 0;
  min-width: 0;
}
button {
  background-color: #257CAF;
  color: white;
  height: 36px;
  width: 100px;
  box-shadow: 0px 1px 2px 0px;
  padding: 4px 8px;
  font-size: 0.875em;
  border: none;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  overflow: hidden;
}
.connect-button {
  background-color: white;
  box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.74);
  font-size: 0.875rem;
  max-width: 260px;
  width: 100%;
  height: 36px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 2px;
}
.connect-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
select {
  font-size: 0.9em;
  background-color: transparent;
  padding: 3px 6px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.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%;
}
/* Unideal Hacks */
#customerprofiles {
  border-radius: 6px;
}
.hidden-scrollbar {
  direction: rtl;
}
.hidden-scrollbar > * {
  direction: ltr;
}
.hover-highlight:hover {
  background-color: #aaa;
}
