body {
  font: 14px Helvetica, Arial, sans-serif;
  margin:0;
}

a {
  color: #00B7FF;
}

:root {
  --font-color: #33475b;
  --bg-color: #f3f3f3;
  --fill-color: #41424E;
  /* --primary-color: #302AE6;
  --secondary-color: #536390;
  --heading-color: #292922; */
}

[data-theme="dark"] {
  --font-color: #e3e3e3;
  --bg-color: #101219;
  --fill-color: #41424E;
  /* --primary-color: #9A97F3;
  --secondary-color: #818cab;
  --heading-color: #818cab; */
}
body {
  background-color: var(--bg-color);
}
#site-wrapper {
  background-color: var(--bg-color);
  color: var(--font-color);
  min-width: 380px;
}
#header {
  display:flex;
  margin-top:8px;
  margin-bottom: -11px;
  justify-content: space-between;
}
.header-left {
  display: flex;
}
.header-headings {
  margin-left: 20px;
}
.header-headings h1 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.4rem;
}
.header-headings h2 {
  margin:0;
  font-size: 0.6rem;
}
#logo {
  width: 101px;
  margin-left: 8px;
}
.header-navbar {
  display:flex;
  align-items: center;
  height: 15px;
  width: 100%;
  /* border-top: 1px solid #080808;
  border-bottom: 1px solid #080808; */
  background-color: #B4CDEB;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.header-navbar a {
  text-decoration: none;
  color:#080808;
  margin-left:25px;
}

/*slider switch css */
.theme-switch-wrapper {
  margin-right:14px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
} 
.theme-switch-wrapper em {
  font-size: 0.7rem;
  margin-top:4px;
}
.theme-switch {
  display: inline-block;
  position: relative;
  height: 19px;
  width: 30px;
}

.theme-switch input {
  display:none;
}

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

.slider:before {
  background-color: #fff;
  content: "";
  position: absolute;
  transition: .4s;
  bottom: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
}

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

input:checked + .slider:before {
  transform: translateX(16px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* end slider switch css */

/* Home page styles */
.page-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-width:380px;
}
.page-content p {
  line-height: 1.5em;
}
.content-box,
.hbspt-form {
  position:relative;
  border-radius: 4px;
  min-width: 340px;
  width: 100%;
  margin: 20px;
  padding: 10px;
  background-color: #B4CDEB;
  color: #33475b;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
#uniqueId {
  border-radius: 10px;
  border: 1px solid #666;
  padding: 1px 8px;
}
.icon-info {
  background-image: url('/images/info.png');
  background-size: 15px 15px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  cursor: pointer;
}
.icon-close {
  background-image: url('/images/close.png');
  background-size: 14px 14px;
  position:absolute;
  right:8px;
  display:block;
  width:14px;
  height:14px;
  cursor: pointer;
}
.tooltip-cardId {
  display: none;
  z-index: 1000;
  position: absolute;
  right:0;
  background:lightyellow;
  width: 200px;
  font-size: 0.7rem;
  margin:5px;
  padding:8px;
  border-radius:8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.tooltip-cardId .title {
  margin: 0px 0px 5px;
}
.tooltip-cardId p {
  margin:0;
}
.input-field input {
  margin:5px 0;
  display: block;
}
.input-field textarea{
  display: block;
  margin: 5px 0;
}
.input-field-line {
  margin-bottom: 12px;
}
.button {
  border: 0;
  padding: 2px 8px;
  border-radius: 10px;
  background-color: #EEA04E;
  box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6), inset -2px -2px 3px rgba(0, 0, 0, .6);
  cursor: pointer;
}
.button:active {
  box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6), inset 2px 2px 3px rgba(0, 0, 0, .6);
}
.error {
  outline: 2px solid red;
}
.text-error {
  color: red;
}
#cardError{
  display: none;
  position:absolute;
  left: 150px;
  padding-top:3px;
  font-size: 0.7rem;
}
.error-content {
  width:100%;
  margin: auto;
  padding: 5px 25px;
  background: lightsalmon;
  color: #33475b;
}
.error-content h1 {
  margin: 0;
  font-size: 1.3rem;
}
.stack-trace {
  font-size: .7rem;
  overflow: scroll;
}
.message-toast {
  width: 100%;
  margin: auto;
  padding: 5px 25px;
  background: #77E47E;
  color: #33475b;
}
.message-toast h1 {
  margin: 0;
  font-size: 1.1rem;
}
.email-sent-icon {
  background-image: url('/images/email-sent.png');
  background-size: 14px 14px;
  display:inline-block;
  width:14px;
  height:14px;
  vertical-align: middle;
  margin-right: 5px;
}


@media only screen and (min-width: 560px) {
  body {
    background-color:var(--fill-color);
  }
  #site-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 0;
  }
  #header {
    min-width: 560px;
    margin-bottom: -15.1px;
  }
  #logo {
    width: 141px;
  }
  .header-headings h1 {
    font-size: 2.3rem;
  }
  .header-headings h2 {
    font-size: 1rem;
  }

  .theme-switch-wrapper em {
    font-size: 1rem;
  }
  .theme-switch {
    height: 34px;
    width: 60px;
  }
  .slider:before {
    bottom: 4px;
    left: 4px;
    height: 26px;
    width: 26px;
  }
  input:checked + .slider:before {
    transform: translateX(26px);
  }

  .header-navbar {
    min-width: 560px;
    border-width:1.5px;
  }

  .page-content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}