/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.flex-row.column {
  flex-direction: column;
  justify-content: center;
}
.flex-row.uneven {
  align-items: flex-start;
}
.flex-row.uneven .short {
  width: 13.75em;
}
.flex-row.uneven .long {
  width: 38.75em;
  text-align: left;
}
@media only screen and (max-width : 767px) {
  .flex-row {
    flex-direction: column;
  }
  .flex-row.uneven .short,
  .flex-row.uneven .long {
    margin: auto;
    width: 90%;
  }
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
.button {
  display: inline-block;
  margin: 0.5em 0;
  border: 0;
  border-radius: 0.5rem;
  background-color: hsl(260, 60%, 60%);
  cursor: pointer;
  padding: 1em 1.25em;
  color: hsl(0, 100%, 100%);
  font-size: 0.8rem;
  font-weight: bold;
  /* USER BUTTON STATES */
  /* DATA BUTTON STATES */
}
.button:focus {
  outline: none;
}
.button.white {
  background-color: hsl(0, 100%, 100%);
  color: hsl(260, 60%, 60%);
}
.button.pass {
  background-color: hsl(144, 45%, 36%);
}
.button.fail {
  background-color: hsl(38, 100%, 55%);
}
.button:disabled {
  box-shadow: none;
}
.button.large {
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0.75rem 1.25rem 0.8125rem;
}
.button.icon-right img {
  height: 1.25rem;
  margin-bottom: -0.25rem;
  margin-left: 0.5rem;
  margin-right: -0.25rem;
}

.forms-close-button {
  padding: 0;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border-radius: 1rem;
  background-color: hsla(0, 0%, 0%, 0.1);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 2rem;
}

.forms-close-button img {
  padding-top: 0.5rem;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.row label {
  font-weight: 500;
}

.input {
  transition: all 0.5s ease;
  margin-bottom: 0.75rem;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  border-radius: 5px;
  background-color: hsl(0, 0%, 98%);
  padding: 0 1rem;
  height: 3rem;
  color: hsl(225, 15%, 40%);
  font-size: 0.875rem;
  /* IE10/11-specific style resets */
}
.input:focus {
  transition: all 0.5s ease;
  outline: none;
  border: 1px solid hsl(260, 60%, 60%);
}
.input.fail {
  border: 1px solid hsl(20, 100%, 40%);
}
.input.pass {
  border: 1px solid hsl(144, 45%, 36%);
}
.input::-ms-reveal, .input::-ms-clear {
  display: none;
}
/*
 * Styles for the Row component used by formsy-react-components
 * Should be imported for each component that extends one of
 * the formsy-react-components
 */
.row .required-symbol {
  display: none;
}
.row label {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.row.no-label label {
  display: none;
}

/* allow elements such as validation errors to position relative to this row */
.row-with-tooltip {
  position: relative;
}

.row-label {
  margin-bottom: 0.75rem;
  line-height: 1.7rem;
}

.row-inline {
  display: flex;
}

/* override margin-bottom so placing a label next to a radio button does not
mess up vertical alignment */
.row-inline label {
  margin-bottom: 0;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.dropdown {
  display: none;
  position: absolute;
  right: 0;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  border-radius: 0 0 5px 5px;
  background-color: hsl(260, 60%, 60%);
  padding: 10px;
  min-width: 9rem;
  max-width: 16.25rem;
  overflow: visible;
  color: hsl(0, 100%, 100%);
  font-size: 0.8125rem;
  font-weight: normal;
}
.dropdown.open {
  display: block;
}
.dropdown a:link, .dropdown a:visited, .dropdown a:active {
  background-color: transparent;
  color: hsl(0, 100%, 100%);
}
.dropdown input {
  margin-bottom: 12px;
  width: calc(100% - 30px);
}
.dropdown label {
  display: block;
  margin-bottom: 5px;
}
.dropdown > li {
  display: block;
  line-height: 30px;
}
.dropdown > li.divider {
  margin-top: 10px;
  border-top: 1px solid hsla(0, 0%, 0%, 0.1);
}
.dropdown > li a {
  display: block;
  padding: 0 10px;
}
.dropdown > li a:hover {
  background-color: hsla(0, 0%, 0%, 0.1);
  text-decoration: none;
}
.dropdown.with-arrow {
  margin-top: 14px;
  border-radius: 5px;
  overflow: visible;
}
.dropdown.with-arrow:before {
  display: block;
  position: absolute;
  top: -7px;
  right: 10%;
  transform: rotate(45deg);
  border-top: 1px solid hsla(0, 0%, 0%, 0.1);
  border-left: 1px solid hsla(0, 0%, 0%, 0.1);
  border-radius: 5px;
  background-color: hsl(260, 60%, 60%);
  width: 14px;
  height: 14px;
  content: "";
}
.studio-status-icon-spinner {
  /* This class can be used on an icon that should spin.
  It first plays the intro animation, then spins forever. */
  animation-name: intro, spin;
  animation-duration: 0.25s, 1s;
  animation-timing-function: cubic-bezier(0.3, -3, 0.6, 3), cubic-bezier(0.4, 0.1, 0.4, 1);
  animation-delay: 0s, 0.25s;
  animation-iteration-count: 1, infinite;
  animation-direction: normal;
  width: 1.4rem; /* standard is 1.4 rem but can be overwritten by parent */
  height: 1.4rem;
  transform-origin: center;
}

@keyframes intro {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
.login {
  padding: 10px;
  width: 200px;
  line-height: 1.5rem;
  white-space: normal;
  color: hsl(0, 100%, 100%);
  font-size: 0.8125rem;
}
.login .button {
  padding: 0.75em;
}
.login .row {
  margin-bottom: 1.25rem;
}
.login .input {
  margin-bottom: 12px;
  width: calc(100% - 30px);
  height: 2.25rem;
}
.login label {
  padding-top: 5px;
  font-weight: bold;
}
.login .spinner {
  margin: 0 0.8rem;
  width: 1rem;
  vertical-align: middle;
}
.login .submit-row {
  justify-content: space-between;
  flex-direction: row;
}
.login .submit-button {
  margin-top: 5px;
}
.login a {
  margin: auto 0;
  color: hsl(0, 100%, 100%);
}
.login a:link, .login a:visited, .login a:active {
  color: hsl(0, 100%, 100%);
}
.login a:hover {
  background-color: transparent;
}
.login .error {
  border: 1px solid hsla(0, 0%, 0%, 0.2);
  border-radius: 5px;
  background-color: hsl(38, 100%, 55%);
  padding: 0.75em 1em;
}

/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.overflow-hidden {
  /* to avoid double scroll bars this
  gets added to body while modal is open */
  overflow: hidden;
}

.modal-content {
  position: relative;
  margin: 3.75rem auto;
  border-radius: 1rem;
  box-shadow: 0 0 0 4px hsla(0, 100%, 100%, 0.15);
  background-color: hsl(0, 100%, 100%);
  padding: 0;
  width: 48.75rem;
}
.modal-content:focus {
  outline: none;
}
@media only screen and (max-width : 941px) {
  .modal-content {
    margin-top: 0;
    width: 100%;
    overflow: auto;
  }
}
@media only screen and (max-width : 479px), only screen and (max-height : 479px) {
  .modal-content {
    border-radius: 0;
    box-shadow: none;
    height: 100%;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 510;
  background-color: hsla(215, 100%, 65%, 0.7);
}

.modal-content-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border-radius: 1rem;
  background-color: hsla(0, 0%, 0%, 0.2);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 2rem;
}

.modal-content-close-img {
  padding-top: 0.5rem;
}

/* Close button, Submit button, etc. */
.action-buttons {
  display: flex;
  margin: 1.125rem 0.8275rem 0.9375rem 0.8275rem;
  line-height: 1.5rem;
  justify-content: flex-end !important;
  align-items: flex-start;
  flex-wrap: nowrap;
}
@media only screen and (max-width : 941px) {
  .action-buttons {
    justify-content: center !important;
    flex-direction: row !important;
  }
}

/* setting overall modal to contain overflow looks good, but isn't
compatible with elements (like validation popups) that need to bleed
past modal boundary. This class can be used to force modal button
row to appear to contain overflow. */
.action-buttons-overflow-fix {
  margin-bottom: 0.9375rem;
}

/* For action button row where left/right margin is handled by parent element */
.action-buttons.action-buttons-no-inset {
  margin-left: 0;
  margin-right: 0;
}

.action-button {
  margin: 0 0 0 0.54625rem;
  border-radius: 0.25rem;
  padding: 6px 1.25rem 14px 1.25rem;
  height: 36px;
}

.action-button.close-button {
  border: 1px solid hsla(0, 0%, 0%, 0.1);
}

.action-button-text {
  display: flex;
}

.action-button.disabled {
  background-color: hsla(0, 0%, 0%, 0.2);
}

.error-text {
  display: block;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  border-radius: 5px;
  background-color: hsl(38, 100%, 55%);
  padding: 1rem;
  min-height: 1rem;
  overflow: visible;
  color: hsl(0, 100%, 100%);
}

.modal-sizes * {
  box-sizing: border-box;
}

.modal-sizes {
  margin: 100px auto;
  outline: none;
  padding: 0;
  max-width: 36.25rem; /* 580px; */
  user-select: none;
}
@media only screen and (min-width : 480px) and (max-width : 767px), only screen and (min-height : 480px) and (max-height : 767px) {
  .modal-sizes {
    margin: 40px auto;
  }
}
@media only screen and (max-width : 479px), only screen and (max-height : 479px) {
  .modal-sizes {
    margin: 0 auto;
    width: auto;
  }
}
.modal-sizes .modal-header {
  padding-top: 0.75rem;
  width: 100%;
  height: 3rem;
}
@media only screen and (max-width : 479px), only screen and (max-height : 479px) {
  .modal-sizes .modal-header {
    border-radius: 0;
  }
}
.modal-sizes .modal-content {
  font-size: 0.875rem;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
#navigation {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 3px hsla(0, 0%, 0%, 0.25);
  background-color: hsl(260, 60%, 60%);
  width: 100%;
  /* NOTE: Height should match offset settings in main.scss file */
  height: 50px;
}
.ie9 #navigation {
  display: table;
  table-layout: fixed;
}
#navigation .inner > ul {
  display: flex;
  margin: 0;
  padding: 0;
  height: 50px;
  list-style: none;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
}
.ie9 #navigation .inner > ul {
  display: table-row;
}
#navigation .inner > ul > li {
  display: inline-block;
  position: relative;
  float: left;
  margin: 0;
  height: 100%;
  align-self: flex-start;
}
#navigation .inner > ul > li.right {
  float: right;
  margin-left: auto;
  align-self: flex-end;
}
.ie9 #navigation .inner > ul > li.right {
  float: none;
}
#navigation .inner > ul > li.right a:hover {
  background-color: hsla(0, 0%, 0%, 0.1);
}
.ie9 #navigation .inner > ul > li {
  display: table-cell;
  float: none;
  height: 50px;
  vertical-align: bottom;
}
#navigation .link > a {
  display: block;
  padding: 13px 15px 4px 15px;
  height: 33px;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(0, 100%, 100%);
  font-size: 0.85rem;
  font-weight: bold;
}
#navigation .link > a:hover {
  background-color: hsla(0, 0%, 0%, 0.1);
}
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.modal-content-iframe {
  border: 0;
}
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.modal-content.mod-registration {
  width: 38.125rem;
  overflow: hidden;
}

.modal-content-iframe.mod-registration {
  width: 38.125rem;
  min-height: 27.375rem;
}

.modal-content.recaptcha-open {
  min-height: 500px;
}

.modal-content-iframe.recaptcha-open {
  min-height: 500px;
}

@media only screen and (max-width : 941px) {
  .modal-content.mod-registration {
    width: 100%;
    overflow: scroll;
  }
  .modal-content-iframe.mod-registration {
    height: 27.375rem;
  }
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.account-nav .user-info {
  display: inline-block;
  padding: 14px 15px 4px 15px;
  max-width: 260px;
  height: 33px;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: hsl(0, 100%, 100%);
  font-size: 0.8125rem;
  font-weight: normal;
}
.account-nav .user-info .avatar {
  margin-right: 10px;
  border-radius: 3px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.account-nav .user-info:hover {
  background-color: hsla(0, 0%, 0%, 0.1);
}
.account-nav .user-info.open {
  background-color: hsla(0, 0%, 0%, 0.1);
}
.account-nav .user-info:after {
  display: inline-block;
  margin-left: 8px;
  background-image: url("/images/dropdown.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  content: " ";
}
.account-nav .dropdown {
  top: 50px;
  padding: 0;
  padding-top: 5px;
  width: 100%;
  box-sizing: border-box;
}

@media only screen and (max-width : 479px) {
  .account-nav {
    margin-left: 0;
  }
  .account-nav .user-info .avatar {
    margin-right: 0;
  }
  .account-nav .user-info:after {
    display: none;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  .account-nav {
    margin-left: 0;
  }
  .account-nav .user-info .avatar {
    margin-right: 0;
  }
  .account-nav .user-info:after {
    display: none;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  .account-nav {
    margin-left: 0;
  }
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
#navigation .logo {
  margin-right: 10px;
}
#navigation .logo a {
  display: block;
  transition: 0.15s ease all;
  margin: 0 6px 0 0;
  border: 0;
  background-image: url("/images/logo_sm.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 95%;
  width: 81px;
  height: 50px;
}
#navigation .logo a:hover {
  transition: 0.15s ease all;
  background-size: 100%;
}
#navigation .inner > ul > li.search {
  margin: 0 20px;
  border-right: 0;
  color: hsl(0, 100%, 100%);
  flex-grow: 3;
}
.ie9 #navigation .inner > ul > li.search {
  width: 100%;
}
#navigation .inner > ul > li.search .form {
  margin: 0;
}
#navigation .inner > ul > li.search .row .help-block {
  display: none;
}
#navigation .inner > ul > li.search .input,
#navigation .inner > ul > li.search .button {
  display: inline-block;
  margin-top: 5px;
  outline: none;
  border: 0;
  background-color: hsla(0, 0%, 0%, 0.1);
  height: 14px;
}
#navigation .inner > ul > li.search .input[type=text],
#navigation .inner > ul > li.search .button[type=text] {
  transition: 0.15s ease background-color;
  padding: 0;
  padding-right: 10px;
  padding-left: 40px;
  width: calc(100% - 50px);
  height: 40px;
  color: hsl(0, 100%, 100%);
  font-size: 0.85em;
}
#navigation .inner > ul > li.search .input[type=text]::placeholder,
#navigation .inner > ul > li.search .button[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
#navigation .inner > ul > li.search .input[type=text]:focus,
#navigation .inner > ul > li.search .button[type=text]:focus {
  transition: 0.15s ease background-color;
  background-color: hsla(0, 0%, 0%, 0.2);
}
.ie9 #navigation .inner > ul > li.search .input[type=text],
.ie9 #navigation .inner > ul > li.search .button[type=text] {
  width: 70px;
}
#navigation .inner > ul > li.search .btn-search {
  position: absolute;
  box-shadow: none;
  background-color: transparent;
  background-image: url("/images/nav-search-glass.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px 14px;
  width: 40px;
  height: 40px;
}
#navigation .inner > ul > li.search .btn-search:hover {
  box-shadow: none;
}
#navigation .messages > a,
#navigation .mystuff > a {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 45%;
  padding-right: 10px;
  padding-left: 10px;
  width: 30px;
  overflow: hidden;
  text-indent: 50px;
  white-space: nowrap;
}
#navigation .messages > a:hover,
#navigation .mystuff > a:hover {
  background-size: 50%;
}
#navigation .messages > a {
  background-image: url("/images/nav-notifications.png");
}
#navigation .messages .message-count {
  display: none;
}
#navigation .messages .message-count.show {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.25rem;
  border-radius: 1rem;
  background-color: hsl(38, 100%, 55%);
  padding: 0 0.25rem;
  text-indent: 0;
  line-height: 1rem;
  color: hsl(0, 100%, 100%);
  font-size: 0.7rem;
  font-weight: bold;
}
#navigation .mystuff > a {
  background-image: url("/images/mystuff.png");
}

@media only screen and (max-width : 479px) {
  #navigation .inner {
    width: 18.75em;
  }
  #navigation .inner > ul > li.login-item {
    margin-left: 0;
  }
  #navigation .inner .create,
  #navigation .inner .discuss,
  #navigation .inner .explore,
  #navigation .inner .search,
  #navigation .inner .help,
  #navigation .inner .mystuff,
  #navigation .inner .profile-name {
    display: none;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #navigation .inner {
    width: 28.75em;
  }
  #navigation .inner > ul > li.login-item {
    margin-left: 0;
  }
  #navigation .inner .discuss,
  #navigation .inner .explore,
  #navigation .inner .search,
  #navigation .inner .mystuff,
  #navigation .inner .profile-name {
    display: none;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #navigation .inner {
    width: 38.75em;
  }
  #navigation .inner > ul > li.login-item {
    margin-left: 0;
  }
  #navigation .inner .explore,
  #navigation .inner .search,
  #navigation .inner .mystuff {
    display: none;
  }
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
#footer {
  display: block;
  background-color: hsl(0, 0%, 95%);
  padding: 10px 0;
  color: hsl(225, 15%, 40%);
  font-size: 0.85rem;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.select label {
  font-weight: 500;
}
.select select {
  transition: border 0.5s ease;
  margin-bottom: 0.75rem;
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  border-radius: 5px;
  background: hsl(0, 0%, 98%) url("/svgs/forms/caret.svg") no-repeat right center;
  padding-right: 4rem;
  padding-left: 1rem;
  width: 100%;
  height: 3rem;
  color: hsl(225, 15%, 40%);
  font-size: 0.875rem;
  appearance: none;
  -webkit-appearance: none; /* added to fix dropdown appearance on safari */
}
.select select::-ms-expand {
  display: none;
}
.select select::-ms-value {
  background-color: inherit;
  padding-left: 1rem;
  color: inherit;
}
.select select:focus {
  outline: none;
  border: 1px solid hsl(260, 60%, 60%);
}
.select select:-moz-focusring {
  text-shadow: 0 0 0 hsl(225, 15%, 40%);
  color: transparent;
}
.select select:focus, .select select:hover {
  background: hsl(0, 0%, 98%) url("/svgs/forms/caret-hover.svg") no-repeat right center;
}
.select select > option {
  background-color: hsl(0, 100%, 100%);
  width: 100%;
}
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.language-chooser .select select {
  width: 13.75rem;
  /* 3 columns */
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
#footer .lists {
  display: flex;
  text-align: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#footer .lists dl {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  font-size: 0.8rem;
}
#footer .lists dt {
  display: block;
  margin-bottom: 8px;
}
#footer .lists dd {
  display: block;
  margin: 5px 0;
  line-height: 1.2rem;
}
#footer .lists dd a {
  font-weight: 400;
}
#footer .copyright {
  display: block;
  width: 100%;
  text-align: center;
}
#footer .copyright p {
  font-size: 0.7rem;
}
#footer .language-chooser {
  text-align: center;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
#donor {
  color: hsl(225, 15%, 40%);
  font-size: 0.875rem;
  line-height: 1.5em;
  background-color: hsl(0, 0%, 95%);
  padding-bottom: 2.5rem;
  padding-top: 1rem;
}
#donor #donor-text {
  text-align: center;
  width: 58.75em;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 942px) {
  #donor #donor-text {
    width: 53.75em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  #donor #donor-text {
    width: 28.75em;
  }
}
@media only screen and (max-width: 480px) {
  #donor #donor-text {
    width: 18.75em;
  }
}
.crash-container {
  /* UI Primary Colors */
  /* #FF661A */
  /* #CC4400 */
  /* UI Secondary Colors */
  /* 3.0 colors */
  /* Using www naming convention for now, should be consistent with gui */
  /* #CF63CF Sounds Primary */
  /* #BD42BD Sounds Tertiary */
  /* modals */
  /* Overlay UI Gray Colors */
  /* Typography Colors */
  /* Down Deep */
  /*
      Frameless           <http://framelessgrid.com/>
      by Joni Korpi       <http://jonikorpi.com/>
      licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
  */
  /* Media Queries */
  /* Width */
  /*
  * ... small | medium     | intermediate | big ...
  * ... medium-and-smaller |
  *          ... intermediate-and-smaller |
  */
  /* Height */
  margin: 3rem auto;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 10px;
  background-color: hsl(0, 0%, 99%);
  width: 60%;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width : 479px) {
  .crash-container #view {
    text-align: center;
  }
  .crash-container .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  .crash-container #view {
    text-align: center;
  }
  .crash-container .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  .crash-container #view {
    text-align: center;
  }
  .crash-container .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .crash-container .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.crash-container img {
  width: 100%;
}
.crash-container .crash-message {
  margin: 2rem;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.title-banner {
  transition: background-image 0.5s ease, background-color 0.5s ease;
  margin-bottom: 40px;
  background-color: hsl(144, 45%, 36%);
  background-position: center;
  background-size: cover;
  padding: 20px 0;
  width: 100%;
}

.title-banner-h1,
.title-banner-p {
  margin: 0 auto;
  padding: 5px 0;
  text-align: center;
  color: hsl(0, 100%, 100%);
}

.title-banner-p {
  max-width: 500px;
}

.title-banner-strong {
  font-weight: 700;
}

.title-banner.mod-blue-bg {
  background-color: hsl(215, 100%, 65%);
}
.title-banner.mod-blue-bg a {
  color: hsl(0, 100%, 100%);
}
.title-banner.mod-blue-bg a.mod-underline {
  text-decoration: underline;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
.privacy-aside {
  position: sticky;
}

.privacy-banner {
  display: flex;
  z-index: 8;
  background-color: hsl(260, 46%, 54%);
  padding: 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-bottom: -50px;
  margin-top: 50px;
}
.privacy-banner .privacy-banner-container {
  display: flex;
  margin: 0.375rem auto;
  align-items: center;
}
.privacy-banner .privacy-banner-container .lightbulb-icon {
  margin: 0.6875rem;
  width: 1.75rem;
  height: 1.75rem;
}
.privacy-banner .privacy-banner-container .privacy-banner-centered {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.privacy-banner .privacy-banner-container .privacy-banner-text {
  text-align: left;
  color: hsl(0, 100%, 100%);
  font-size: 1rem;
  font-weight: bold;
  margin-right: 1rem;
  max-width: 70vw;
}
.privacy-banner .privacy-close-button {
  right: 1rem;
  top: auto;
}
.privacy-banner a {
  color: hsl(0, 100%, 100%);
  text-decoration: underline;
}

@media only screen and (max-width: 640px) {
  .privacy-banner .privacy-banner-container .privacy-banner-centered {
    flex-wrap: wrap;
  }
  .privacy-banner .privacy-banner-container .lightbulb-icon {
    padding-bottom: 2rem;
  }
  .privacy-banner .privacy-banner-container {
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .privacy-banner .donate-close-button {
    top: 1rem;
  }
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
.os-chooser {
  display: flex;
  position: sticky;
  top: 50px;
  z-index: 9;
  box-shadow: 0 0 3px hsla(0, 0%, 0%, 0.25);
  background-color: hsl(0, 100%, 100%);
  padding: 0;
  height: 5rem;
}
.os-chooser .inner {
  justify-content: flex-start;
}
.os-chooser span {
  margin-right: 1rem;
  font-weight: 600;
}
.os-chooser .button {
  display: flex;
  margin-right: 1rem;
  border-radius: 1.6rem;
  background-color: hsla(0, 0%, 0%, 0.1);
  padding: 0.5rem 1.1rem;
  align-items: center;
  box-sizing: border-box;
}
.os-chooser .button img {
  margin-right: 0.3rem;
  height: 1.5rem;
}
.os-chooser .button.active {
  background-color: hsl(260, 60%, 60%);
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
.steps {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.step {
  flex-basis: 0;
  flex-grow: 1;
}
.step .step-number-row {
  padding-bottom: 1.5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.step .step-number-row .step-content {
  text-align: left;
  align-items: flex-start;
}
.step .step-number-row .step-content .step-description {
  margin-bottom: 1rem;
}
.step .step-number-row .step-number {
  display: inline-flex;
  border-radius: 2rem;
  background-color: hsl(260, 60%, 60%);
  width: 2rem;
  height: 2rem;
  color: hsl(0, 100%, 100%);
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.step .step-content {
  display: flex;
  padding: 0 2rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  box-sizing: border-box;
}
.step .step-content .step-image {
  max-height: 10rem;
}
.step .step-content .step-image img {
  max-height: 10rem;
  width: 100%;
  height: auto;
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
#view {
  padding: 0;
}

.install-scratch {
  padding: 2rem 0;
}
.install-scratch .inner {
  align-items: flex-start;
}
.install-scratch .downloads-container {
  text-align: center;
}
.install-scratch .downloads-container .horizontal-divider {
  display: block;
  margin: 20px;
}
.install-scratch .downloads-container .horizontal-divider:before,
.install-scratch .downloads-container .horizontal-divider:after {
  display: inline-block;
  position: relative;
  background-color: hsl(0, 0%, 70%);
  width: 50%;
  height: 1px;
  vertical-align: middle;
  content: "";
}
.install-scratch .downloads-container .horizontal-divider:before {
  right: 0.5em;
  margin-left: -50%;
}
.install-scratch .downloads-container .horizontal-divider:after {
  left: 0.5em;
  margin-right: -50%;
}
.install-scratch .step-image {
  height: 14rem;
}
.install-scratch .title {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.install-scratch .legacy-link {
  display: flex;
}
.install-scratch .download-button {
  display: inline-block;
  margin: 0.5em 0;
  border: 0;
  border-radius: 8px;
  background-color: hsl(215, 100%, 65%);
  cursor: pointer;
  padding: 1rem 2rem;
  color: hsl(0, 100%, 100%);
  font-size: 1rem;
}
.install-scratch .macos-badge img {
  height: 50px;
}
.install-scratch .ms-badge img {
  height: 50px;
}
.install-scratch .play-badge img {
  height: 50px;
}
.install-scratch .download-image {
  width: 100%;
  max-width: 28.75em;
}
.install-scratch .download-image img {
  max-width: 100%;
  max-height: 100%;
}
.install-scratch .blue {
  background-color: hsla(215, 100%, 65%, 0.1);
}
/* UI Primary Colors */
/* #FF661A */
/* #CC4400 */
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
/* #CF63CF Sounds Primary */
/* #BD42BD Sounds Tertiary */
/* modals */
/* Overlay UI Gray Colors */
/* Typography Colors */
/* Down Deep */
/*
    Frameless           <http://framelessgrid.com/>
    by Joni Korpi       <http://jonikorpi.com/>
    licensed under CC0  <http://creativecommons.org/publicdomain/zero/1.0/>
*/
/* Media Queries */
/* Width */
/*
* ... small | medium     | intermediate | big ...
* ... medium-and-smaller |
*          ... intermediate-and-smaller |
*/
/* Height */
@media only screen and (max-width : 479px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width : 480px) and (max-width : 767px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 480px;
  }
}
@media only screen and (min-width : 768px) and (max-width : 941px) {
  #view {
    text-align: center;
  }
  .inner {
    margin: 0 auto;
    width: 768px;
  }
}
@media only screen and (min-width : 942px) {
  .inner {
    margin: 0 auto;
    width: 942px;
  }
}
#view {
  padding: 0;
}

.download .title {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.download .legacy-link {
  display: flex;
}
.download .download-button {
  display: inline-block;
  margin: 0.5em 0;
  border: 0;
  border-radius: 8px;
  background-color: hsl(215, 100%, 65%);
  cursor: pointer;
  padding: 1rem 2rem;
  color: hsl(0, 100%, 100%);
  font-size: 1rem;
}
.download .macos-badge img {
  height: 50px;
}
.download .ms-badge img {
  height: 50px;
}
.download .play-badge img {
  height: 50px;
}
.download .download-header {
  background-color: hsl(260, 60%, 60%);
  padding: 4rem 0;
  color: hsl(0, 100%, 100%);
}
.download .download-header .title {
  color: hsl(0, 100%, 100%);
}
.download .download-header .inner {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.download .download-header .download-info {
  padding-right: 3.75em;
  max-width: 35em;
  align-items: flex-start;
}
.download .download-header .download-info .download-copy {
  margin-bottom: 5rem;
  align-items: flex-start;
}
.download .download-header .download-info .download-copy .download-title {
  display: flex;
  margin-bottom: 2rem;
  color: hsl(0, 100%, 100%);
  font-size: 2rem;
}
.download .download-header .download-info .download-copy .icon {
  padding-right: 0.5rem;
  max-height: 100%;
  align-self: center;
}
.download .download-header .download-info .download-copy .download-description {
  line-height: 1.7rem;
  font-size: 1.2rem;
}
.download .download-header .download-info .download-requirements-container {
  font-weight: 500;
  align-items: flex-start;
}
.download .download-header .download-info .download-requirements-container .requirements-header {
  margin-bottom: 1.5rem;
}
.download .download-header .download-info .download-requirements-container .download-requirements {
  justify-content: space-between;
  line-height: 2rem;
}
.download .download-header .download-info .download-requirements-container .download-requirements span {
  display: flex;
  margin-right: 1rem;
  font-size: 15px;
  align-items: center;
}
.download .download-header .download-info .download-requirements-container .download-requirements span img {
  padding-right: 0.5rem;
}
.download .download-header .download-image {
  width: 100%;
  max-width: 23.75em;
}
.download .download-header .download-image img {
  max-width: 100%;
  max-height: 100%;
}
.download .install-scratch {
  padding: 2rem 0;
}
.download .install-scratch .inner {
  align-items: flex-start;
}
.download .install-scratch .downloads-container {
  text-align: center;
}
.download .install-scratch .step-image {
  height: 14rem;
}
.download .download-section {
  padding: 4rem 0;
}
.download .download-section .inner {
  align-items: flex-start;
}
.download .blue {
  background-color: hsla(215, 100%, 65%, 0.1);
}
.download .faq p {
  margin-bottom: 1.25rem;
  margin-left: 0;
  max-width: 38.75em;
  text-align: left;
}
.download .faq .faq-question {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.download .older-version {
  padding-right: 24px;
}
.download .older-version p {
  line-height: normal;
  color: hsl(260, 60%, 60%);
  font-weight: 600;
}
.download .older-version .little-arrow {
  padding-left: 2px;
}
.download .older-version .screenshot {
  margin-top: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
