* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html, body {
  margin: 0;
  font-size: initial !important;
}
a {
  color: #0947DA
}
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#app {
  min-height: calc(100vh - 120px);;
  margin: 0px auto;
  max-width: 1440px;
}

body {
  background-color: white;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 300;
  font-size: initial !important;
  line-height: initial !important;
}

.container-fixed > hr {
  margin: 30px 0;
}

.spinner {
  display: inline-block;
  width: 150px;
  height: 150px;
}
.spinner:after {
  content: " ";
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid gray;
  border-color: gray transparent gray transparent;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

._pendo-launcher-badge_ {
  display: none;
}

.container-fixed {
  margin: 0 auto;
  max-width: 1000px;
}

.container-fixed > hr {
  margin: 30px 0;
}

.dark-hr {
  border-top: 1px solid #999;
}

form {
  padding: 15px;
}

.request-header {
  color: #444444;
  font-size: 30px;
  margin: 0;
  font-weight: inherit;
  line-height: normal;
}

#pageTitle {
  margin-bottom: 30px;
  text-align: center;
}

#selectorRow {
  margin-bottom: 15px;
}

#instructionRow {
  margin-bottom: 15px;
}

.instruction-text {
  color: #444444;
  font-size: x-large;
  margin: 0;
  font-weight: inherit;
}

#sr-logo {
  margin-top: 10px;
  text-align: center;
  padding-right:10px;
  margin-bottom: 10px;
}

#sr-logo > img {
  width: 80px;
}

#sr-logo > div {
  font-size: 14px;
}

#practice-header {
  margin: 24px auto;
  padding-top: 50px;
}

.large-header {
  font-size:20px;
}

h1.large-header {
  margin-top: 0;
}

h2.large-header {
  margin: 0;
  line-height: 1.6;
}

#linkButton {
  margin-top: 20px;
  color:#0947DA;
  border:none;
  padding:0;
  background-color: white;
}

#lowerContainer {
  padding: 36px 0;
  min-height: 150px
}

.summary {
  padding: 20px;
}

.modal_open {
  overflow: hidden;
}

.custom-banner {
  background-color: #d9edf7;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, .5);
  padding: 16px 0px;
  max-width: 1440px;
  z-index: 5;
  margin-bottom: 5px;
}

.custom-banner-text {
  text-align: center;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px;
  padding: 0 50px;
}

.header{
  padding: 0 100px 0 100px;
}

@media only screen and (max-width: 767px) {

  body {
    max-width: 767px;
    margin: auto;
    padding:10px;
  }

   #practice-header {
    text-align: center;
  }

  .request-header {
    font-size: 20px;
  }

  .instruction-text {
    font-size: 20px;
  }

  .selector {
    margin: 20px;
  }

  #sr-logo {
    margin: 100px auto auto;
    text-align: center;
    height: 120px;
    padding-top: 20px;
  }
}

@media only screen and (min-width: 768px) {
  #sr-logo {
    margin-top: 100px;
    text-align: center;
    height: 120px;
  }
}

.bothVisible {
  padding-top: 150px;
}
.errorVisible {
  padding-top: 70px;
}

.inactive{
    opacity : 0.6;
}

.emailMissing > div > span {
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  div#selectorRow {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .selectorItem {
    width: 33%;
  }
}

@media screen and (max-width: 767px) {
  div#selectorRow {
    display: flex;
    flex-direction: column;
  }
}

.scroll-fixed {
  position: fixed;
  top: 0;
  max-width: 1440px;
  width: 100%;
  z-index: 100;
}