#detailHeroImage {
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.09);
}
#detailHero .section {
  padding-bottom: 40px;
}
#detailHero .sectionText {
  margin-top: 10px;
}
#pricingSection {
  flex-direction: column;
  margin-bottom: 40px;
}
#individualOrganizations {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
}
.priceSection {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 350px;
}
.priceSection .billed {
  opacity: 0.68;
  margin-left: 10px;
}
.individualSection {
  margin-top: 15px;
}
.individualSection button {
  margin-right: 10px;
}
.individualSection > div:not(:first-child) {
  margin-top: 10px;
}
.bulkSection {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 15px;
}
.bulkExplain {
  margin-top: 10px;
  display: none;
}
#bulkTable {
  display: none;
  margin-right: 50px;
}
#bulkBuy {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 350px;
  height: 100%;
  justify-content: space-between;
}
#bulkInputContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 20px;
}
#bulkInputContainer > label {
  font-size: 14pt;
}
#bulkInput {
  font-size: 12pt;
  padding: 2px;
  text-align: right;
  margin-bottom: 10px;
  margin-top: 8px;
}
#bulkButtons {
  display: flex;
  flex-direction: column;
}
#bulkButtons button:not(:first-child) {
  margin-top: 10px;
}
.for {
  font-size: x-large;
}
th {
  text-align: left;
  min-width: 100px;
  padding-bottom: 5px;
}
#buttonSection {
  visibility: hidden;
  width: 100%;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 10px;
}
.buttonGroup {
  display: flex;
  flex-direction: column;
}
.downloadButton {
  font-size: 12pt;
  margin: 0 5px;
}
.downloadButton.secondaryButton {
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid transparent;
  padding: 0;
  font-size: 10pt;
}
#otherVersionsSection {
  display: flex;
  align-items: center;
  align-self: center;
  margin-top: 10px;
}
#otherVersionsSection span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10pt;
  margin-right: 5px;
}
#otherVersions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#otherVersions .downloadButton.secondaryButton {
  line-height: 1;
  border: 0;
  font-weight: normal;
}
#visitOnDesktop {
  display: none;
  font-weight: bold;
}
@media screen and (min-width: 1251px) {
  .buttonGroup:first-child {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .buttonGroup:first-child .button {
    padding: 5px 0;
    margin: 0;
    min-width: 225px;
    font-size: 11pt;
  }
}
@media screen and (max-width: 1250px) {
  .buttonGroup:first-child .button:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 750px) {
  .downloadButton {
    display: none;
  }
  #visitOnDesktop {
    display: initial;
  }
  .individualSection > div {
    line-height: 2;
  }
  .bulkSection,
  #individualOrganizations {
    flex-direction: column;
  }
  .priceSection {
    min-width: 0;
  }
  #bulkButtons > button {
    font-size: 10pt;
  }
  #bulkBuy {
    margin-top: 10px;
  }
  #bulkInputContainer {
    margin-left: 0;
  }
  .billed {
    font-size: 12px;
  }
}
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.loadIcon {
  position: absolute;
  height: 100px;
  width: 100px;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
}
.loadIcon.small {
  height: 50px;
  width: 50px;
  margin-left: -25px;
  margin-top: -25px;
}
.loadIcon.small .path {
  stroke: black;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}
.loadIcon .circular {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loadIcon .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}
@keyframes color {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}
