/**
 * Foundation
 */

a {
  text-decoration: none;
  color: inherit;
}

/**
 * jQueryUI Autocomplete CSS
 */

.ui-autocomplete {
  z-index: 1;
  padding: 8px 0;
  background: #fff;
  -webkit-box-shadow: 0 3px 7px rgba(27, 43, 106, 0.16);
          box-shadow: 0 3px 7px rgba(27, 43, 106, 0.16);
  list-style: none;
  width: 200px;
}

.ui-autocomplete .ui-menu-item {
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  cursor: pointer;
}

.ui-autocomplete .ui-menu-item:hover {
  background-color: #f5f5f5;
}

/**
 * Keyframes
 */

@-webkit-keyframes cio-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes cio-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**
 * Root flags
 */

.cio--coverup {
  overflow: hidden;
}

.cio--coverup::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.54);
  -webkit-animation: cio-fade-in 0.3s;
          animation: cio-fade-in 0.3s;
  z-index: 100;
}

/**
 * Block - Page
 */

.cioc-page {
  margin: 0;
  min-width: 320px;
  font: 16px / 1.5 Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
  color: #424242;
  background-color: #ebebeb;
}

.cioc-page__header {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.cioc-page__inner {
  min-height: 100%;
  min-height: 100vh;
  max-width: 1024px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
  padding-bottom: 72px;
}

/**
 * Block - Icon
 */

.cioc-icon {
  height: 24px;
  width: 24px;
  fill: currentColor;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: inline-block;
  vertical-align: middle;
}

.cioc-icon--wayfinding {
  -webkit-filter: drop-shadow(0 1px rgba(255, 255, 255, 0.54));
          filter: drop-shadow(0 1px rgba(255, 255, 255, 0.54));
}

.cioc-icon--yellow {
  fill: #e5aa00;
}

.cioc-icon--yellow.cioc-icon--wayfinding {
  -webkit-filter: url("#fltr_yellowicon");
          filter: url("#fltr_yellowicon");
}

/**
 * Block - Paragraph
 */

.cioc-paragraph {
  font: 16px / 1.5 Roboto, Arial, sans-serif;
  margin: 12px 0;
  padding: 0;
}

.cioc-paragraph--dark {
  color: #fff;
}

/**
 * Block - Page title
 */

.cioc-pagetitle {
  margin: 0;
  padding: 8px 0;
  font: 700 24px / 32px "Roboto Mono", Roboto, Arial, sans-serif;
  text-shadow: 0 1px #fff;
}

.cioc-pagetitle--primary {
  font-size: 32px;
  line-height: 48px;
}

.cioc-pagetitle--dark {
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
}

/**
 * Block - Page header
 */

.cioc-pageheader {
  margin-bottom: 16px;
}

/**
 * Block - Section header
 */

.cioc-sectionheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.cioc-sectionheader__icon {
  margin: 12px 16px 12px 0;
}

/**
 * Block - Domain title
 */

.cioc-domaintitle {
  margin: 0;
  padding: 0;
  font: 700 20px Montserrat, Roboto, Arial, sans-serif;
  text-shadow: 0 1px #fff;
}

.cioc-domaintitle--dark {
  color: #fff;
}

.cioc-domaintitle--yellow {
  color: #e5aa00;
}

.cioc-domaintitle--on-yellow {
  color: #424242;
}

.cioc-domaintitle--dark,
.cioc-domaintitle--on-yellow {
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
}

/**
 * Block - Subtitle
 */

.cioc-subtitle {
  margin: 0;
  padding: 0;
  color: rgba(66, 66, 66, 0.54);
  font: 700 16px / 24px Roboto, Arial, sans-serif;
  height: 24px;
}

.cioc-subtitle--dark {
  color: rgba(255, 255, 255, 0.54);
}

/**
 * Block - Badge
 */

.cioc-badge {
  width: 16px;
  height: 16px;
  padding: 5% 0;
  margin: 0 5%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  color: #36495b;
  -webkit-filter: drop-shadow(0 3px 7px rgba(27, 43, 106, 0.26));
          filter: drop-shadow(0 3px 7px rgba(27, 43, 106, 0.26));
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.cioc-badge::before {
  content: "";
  position: absolute;
  height: inherit;
  width: inherit;
  background: currentColor;

  /* scale with sqrt(2) and sqrt(2/3) */
  -webkit-transform: scale(1.414213, 0.816496) rotate(45deg);
          transform: scale(1.414213, 0.816496) rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-left-color: rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.25);
}

/**
 * Block - Textbadge
 */

.cioc-textbadge {
  display: inline-block;
  height: 16px;
  padding: 0 8px;
  margin: -2px 8px 0;
  color: #fff;
  font: 700 10px / 16px Montserrat, Roboto, Arial, sans-serif;
  text-shadow: 0 1px 0 rgba(180, 0, 0, 0.16);
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px;
  background-color: #424242;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 0 rgba(180, 0, 0, 0.16);
          box-shadow: 0 1px 0 #fff, inset 0 1px 0 rgba(180, 0, 0, 0.16);
  vertical-align: middle;
}

.cioc-textbadge--yellow {
  background-color: #e5aa00;
}

/**
 * Block - Avatar
 */

.cioc-avatar {
  height: 40px;
  width: 40px;
  margin: 4px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.16);
  background-size: auto 100%;
  background-size: cover;
  background-position: center;
  vertical-align: top;
  font: 600 16px Montserrat, Roboto, Arial, sans-serif;
  cursor: inherit;
  color: #424242;
}

.cioc-avatar:not(.cioc-avatar--raised)::after {
  content: "";
  width: 100%;
  position: absolute;
  -webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.3), 0 1px #fff;
          box-shadow: inset 0 1px rgba(0, 0, 0, 0.3), 0 1px #fff;
  border-radius: 50%;
}

.cioc-avatar--dark {
  color: #fff;
}

.cioc-avatar--medium {
  height: 80px;
  width: 80px;
}

.cioc-avatar--large {
  height: 160px;
  width: 160px;
}

.cioc-avatar--raised {
  -webkit-box-shadow: 0 6px 16px rgba(27, 43, 106, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: 0 6px 16px rgba(27, 43, 106, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cioc-avatar__image {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cioc-badge__icon {
  height: 75%;
  width: 75%;
  fill: #fff;
  -webkit-filter: drop-shadow(0 1px 0 rgba(0, 28, 54, 0.25));
          filter: drop-shadow(0 1px 0 rgba(0, 28, 54, 0.25));
}

.cioc-avatar__badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
}

.cioc-avatar--medium .cioc-avatar__badge {
  height: 32px;
  width: 32px;
  right: -10px;
  bottom: -3px;
}

.cioc-avatar--large .cioc-avatar__badge {
  right: -20px;
  bottom: -5px;
  height: 64px;
  width: 64px;
}

/**
 * Block - Link
 */

.cioc-link {
  font: 600 16px / 24px Montserrat, Roboto, Arial, sans-serif;
  color: inherit;
  text-decoration: none;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  min-height: 24px;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  margin: 0;
  padding: 0;
}

.cioc-link--dark {
  color: #fff;
}

.cioc-link--yellow {
  color: #e5aa00;
}

.cioc-link--primary {
  font-size: 24px;
  min-height: 48px;
  line-height: 48px;
}

a.cioc-link,
.cioc-link[tabindex] {
  cursor: pointer;
}

a.cioc-link:focus,
.cioc-link[tabindex]:focus,
a.cioc-link:hover,
.cioc-link[tabindex]:hover {
  text-decoration: underline;
}

a.cioc-link:active,
.cioc-link[tabindex]:active {
  color: #dd8f00;
}

a.cioc-link--yellow:active,
.cioc-link--yellow[tabindex]:active {
  color: #dd8f00;
}

a.cioc-link[disabled] {
  color: #424242;
}

a.cioc-link--yellow[disabled] {
  color: #424242;
}

.cioc-link__icon {
  height: 20px;
  width: 20px;
}

.cioc-link__image {
  margin: -8px 16px -8px 0;
}

.cioc-link--table {
  font: 700 14px / 24px Roboto, Arial, sans-serif;
  white-space: nowrap;
}

.cioc-link--table > .cioc-link__image {
  height: 32px;
  width: 32px;
  margin: -4px 16px -4px 0;
}

/**
 * Block - Link list
 */

.cioc-linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -12px;
}

.cioc-linklist--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cioc-linklist__item {
  display: inline-block;
  padding: 12px;
}

.cioc-linklist__item:last-child {
  margin-right: 0;
}

/**
 * Block - Secondary text
 */

.cioc-secondarytext {
  font: 16px / 1.5 Roboto, Arial, sans-serif;
  color: rgba(66, 66, 66, 0.54);
  margin: 0;
  padding: 0;
}

/**
 * Block - Icon button
 */

.cioc-iconbutton {
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: top;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: none;
  background: none;
  -webkit-transition: background-color 0.3s, color 0.3s, fill 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, color 0.3s, fill 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, color 0.3s, fill 0.3s, box-shadow 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, fill 0.3s, box-shadow 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  margin: 4px;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  font: 700 16px / 24px Montserrat, Roboto, Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cioc-iconbutton::-moz-focus-inner {
  border: 0;
}

.cioc-iconbutton::before {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
}

.cioc-iconbutton:focus:not(:active)::before {
  content: "";
}

.cioc-iconbutton:focus,
.cioc-iconbutton:hover {
  background-color: rgba(0, 0, 0, 0.12);
}

.cioc-iconbutton:active {
  background-color: rgba(0, 0, 0, 0.24);
}

.cioc-iconbutton--dark {
  color: #fff;
}

.cioc-iconbutton--dark:focus,
.cioc-iconbutton--dark:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.cioc-iconbutton--dark:active {
  background-color: rgba(255, 255, 255, 0.6);
}

.cioc-iconbutton--primary {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.cioc-iconbutton--primary.cioc-iconbutton--selected {
  background-color: #424242;
  color: #fff;
  border-top-color: #000;
  -webkit-box-shadow: 0 1px #fff;
          box-shadow: 0 1px #fff;
}

/* TODO */
.cioc-iconbutton.cioc-iconbutton--primary:focus,
.cioc-iconbutton.cioc-iconbutton--primary:hover,
.cioc-iconbutton.cioc-iconbutton--primary:active {
  color: #424242;
  background-color: #ffbd00;
  -webkit-box-shadow: 0 3px 7px rgba(27, 43, 106, 0.2);
          box-shadow: 0 3px 7px rgba(27, 43, 106, 0.2);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(180, 0, 0, 0.2);
  text-shadow: 0 1px rgba(180, 0, 0, 0.16), 0 -1px rgba(255, 255, 255, 0.16);
}

.cioc-iconbutton.cioc-iconbutton--primary:active {
  background-color: #dd8f00;
  border-top-color: rgba(255, 255, 255, 0.08);
}

/**
 * Block - Floating action button
 */

.cioc-fab {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #e5aa00;
  -webkit-box-shadow: 0 6px 16px rgba(27, 43, 106, 0.3);
          box-shadow: 0 6px 16px rgba(27, 43, 106, 0.3);
  color: #424242;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(180, 0, 0, 0.2);
}

.cioc-fab--fixed {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 10;
}

.cioc-fab:focus:not(:active)::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  margin: -1px 0;
}

.cioc-fab:hover {
  background-color: #ffbd00;
  -webkit-box-shadow: 0 12px 24px rgba(27, 43, 106, 0.3);
          box-shadow: 0 12px 24px rgba(27, 43, 106, 0.3);
}

.cioc-fab:active {
  background-color: #dd8f00;
  -webkit-box-shadow: 0 1px 4px rgba(27, 43, 106, 0.54);
          box-shadow: 0 1px 4px rgba(27, 43, 106, 0.54);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.cioc-fab:disabled {
  background-color: #d6d6d6;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  cursor: default;
  text-shadow: none;
}

.cioc-fab:disabled > .cioc-fab__icon {
  fill: rgba(66, 66, 66, 0.6);
  -webkit-filter: drop-shadow(0 1px rgba(180, 0, 0, 0.16)) drop-shadow(0 -1px rgba(255, 255, 255, 0.16));
          filter: drop-shadow(0 1px rgba(180, 0, 0, 0.16)) drop-shadow(0 -1px rgba(255, 255, 255, 0.16));
}

/**
 * Block - Button
 */

.cioc-button {
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font: 600 14px Montserrat, Roboto, Arial, sans-serif;
  height: 36px;
  padding: 0 16px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  vertical-align: top;
}

.cioc-button::-moz-focus-inner {
  border: 0;
}

.cioc-button--fullwidth {
  width: 100%;
}

.cioc-button:focus:not(:active)::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 1px;
  margin: -1px 0;
}

.cioc-button:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

.cioc-button:active {
  background-color: rgba(0, 0, 0, 0.16);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.cioc-button--primary {
  background-color: #e5aa00;
  -webkit-box-shadow: 0 3px 6px rgba(27, 43, 106, 0.2);
          box-shadow: 0 3px 6px rgba(27, 43, 106, 0.2);
  color: #424242;
  text-shadow: 0 1px rgba(180, 0, 0, 0.16), 0 -1px rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(180, 0, 0, 0.2);
}

.cioc-button--primary:hover {
  background-color: #ffbd00;
  -webkit-box-shadow: 0 6px 14px rgba(27, 43, 106, 0.24);
          box-shadow: 0 6px 14px rgba(27, 43, 106, 0.24);
}

.cioc-button--primary:active {
  background-color: #dd8f00;
  -webkit-box-shadow: 0 1px 4px rgba(27, 43, 106, 0.54);
          box-shadow: 0 1px 4px rgba(27, 43, 106, 0.54);
}

.cioc-button:disabled {
  background-color: #d6d6d6;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  color: rgba(66, 66, 66, 0.6);
  cursor: default;
  text-shadow: none;
}

/**
 * Block - Flatbutton
 */

.cioc-flatbutton {
  display: inline-block;
  height: 36px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 600 14px / 36px Montserrat, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  border-radius: 2px;
  outline: none;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: inherit;
  text-shadow: 0 1px #fff;
}

.cioc-flatbutton:focus:not(:active)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 1px;
}

.cioc-flatbutton--dark:focus:not(:active)::after {
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.cioc-flatbutton--dark {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.cioc-flatbutton--yellow {
  color: #e5aa00;
}

.cioc-flatbutton::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.12;
  background-color: currentColor;
}

.cioc-flatbutton:focus::before,
.cioc-flatbutton:active::before {
  content: "";
}

.cioc-flatbutton[disabled] {
  opacity: 0.5;
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.cioc-flatbutton[hidden] {
  display: none !important;
}

.cioc-flatbutton__icon {
  height: 24px;
  width: 24px;
  vertical-align: top;
  fill: currentColor;
  margin: 6px 8px 6px 0;
  -webkit-filter: drop-shadow(0 1px #fff);
          filter: drop-shadow(0 1px #fff);
}

.cioc-flatbutton--dark .cioc-flatbutton__icon {
  -webkit-filter: drop-shadow(0 1px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 1px rgba(0, 0, 0, 0.25));
}

.cioc-flatbutton__dropdownicon {
  margin-right: 0;
}

/**
 * Block - Card
 */

.cioc-card {
  background-color: #f5f5f5;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 3px 7px rgba(27, 43, 106, 0.16);
          box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 3px 7px rgba(27, 43, 106, 0.16);
  position: relative;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, background-color 0.3s;
  transition: box-shadow 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  min-height: 56px;
  min-width: 56px;
  display: inline-block;
  vertical-align: top;
}

.cioc-card[tabindex] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.cioc-card[tabindex]:hover {
  -webkit-box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 6px 14px rgba(27, 43, 106, 0.24);
          box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 6px 14px rgba(27, 43, 106, 0.24);
}

.cioc-card[tabindex]:active {
  -webkit-box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 1px 4px rgba(27, 43, 106, 0.32);
          box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 1px 4px rgba(27, 43, 106, 0.32);
}

.cioc-card[tabindex]:focus:not(:active)::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 1px;
}

.cioc-card__actions {
  padding: 8px;
}

.cioc-card__body {
  padding: 24px;
}

@media screen and (max-width: 1023px) {
  .cioc-card__body {
    padding: 16px;
  }

  .cioc-card__body--richcontent:first-child {
    padding-top: 24px;
  }

  .cioc-card__body--richcontent:last-child {
    padding-bottom: 24px;
  }
}

/**
 * Block - Cardgroup
 */

.cioc-cardgroup {
  margin: 8px -8px;
  font-size: 0;
}

.cioc-cardgroup__item {
  margin: 8px;
  font-size: 16px;
}

/**
 * Block - Dropdown
 */

.cioc-dropdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 60;
}

.cioc-dropdown__button {
  padding-right: 8px;
}

.cioc-dropdown__clickoutside {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cioc-dropdown__input {
  display: none;
}

.cioc-dropdown__input:not(:checked) ~ .cioc-dropdown__clickoutside {
  display: none;
}

.cioc-dropdown__input:checked ~ .cioc-dropdown__button::before {
  content: "";
}

.cioc-dropdown__popup {
  position: absolute;
  left: 0;
  top: 36px;
  padding: 16px;
}

.cioc-dropdown--align-right .cioc-dropdown__popup {
  left: auto;
  right: 0;
}

.cioc-dropdown__input:not(:checked) ~ .cioc-dropdown__popup {
  display: none;
}

/**
 * Block - Stepper
 */

.cioc-stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 24px 0;
}

.cioc-stepper__whitespace {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-stepper__connector {
  height: 1px;
  background: #424242;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-top: 20px;
}

.cioc-stepper__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.cioc-stepper__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 700 16px Montserrat, Roboto, Arial, sans-serif;
  -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 0 #fff, inset 0 1px 0 rgba(0, 0, 0, 0.08);
}

.cioc-stepper__item--selected .cioc-stepper__circle {
  background-color: #424242;
  -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 0 #000;
          box-shadow: 0 1px 0 #fff, inset 0 1px 0 #000;
  color: #fff;
}

.cioc-stepper__label {
  font: 16px / 24px Roboto, Arial, sans-serif;
  text-align: center;
  width: 80px;
  margin-top: 12px;
}

/**
 * Block - Logo
 */

.cioc-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.cioc-logo--dark {
  color: #fff;
}

.cioc-logo:focus,
.cioc-logo:active {
  text-decoration: underline;
}

.cioc-logo__icon {
  height: 48px;
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cioc-logo__text {
  text-transform: uppercase;
  font-weight: 700;
  font-family: Montserrat, Roboto, Arial, sans-serif;
  padding: 0 12px;
}

/**
 * Block - Textfield
 */

.cioc-textfield {
  position: relative;
  font-size: 0;
  overflow: hidden;
  border-radius: 2px;
  width: 300px;
}

.cioc-textfield--fullwidth {
  width: 100%;
}

.cioc-textfield__input {
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 16px / 24px Roboto, Arial, sans-serif;
  padding: 27px 16px 3px;
  min-height: 56px;
  width: 100%;
  margin: 0;
  margin-bottom: 32px;
  border: none;
  color: inherit;
  caret-color: #e5aa00;
  border-bottom: 2px solid #36495b;
  background-color: rgba(0, 0, 0, 0.06);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: color 0.2s, border-bottom-color 0.2s, background-color 0.2s;
  transition: color 0.2s, border-bottom-color 0.2s, background-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cioc-textfield__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.cioc-textfield__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.cioc-textfield__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.cioc-textfield__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.cioc-textfield__input::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.cioc-textfield--dark > .cioc-textfield__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield--dark > .cioc-textfield__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield--dark > .cioc-textfield__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield--dark > .cioc-textfield__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield--dark > .cioc-textfield__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield--dark > .cioc-textfield__input {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* fix for lastpass */

.cioc-textfield__input[style*="16px 18px"][style*="98% 50%"] {
  background-position: right 3px center !important;
  background-position-y: calc(50% + 2px) !important;
}

.cioc-textfield__input::-webkit-search-cancel-button,
.cioc-textfield__input::-webkit-search-decoration,
.cioc-textfield__input::-webkit-search-results-button,
.cioc-textfield__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

.cioc-textfield__input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.cioc-textfield__input:focus {
  color: #fff;
  border-bottom-color: #e5aa00;
  background-color: #36495b;
}

.cioc-textfield--dark > .cioc-textfield__input {
  background-color: rgba(255, 255, 255, 0.16);
}

textarea.cioc-textfield__input {
  resize: none;
}

.cioc-textfield--select > .cioc-textfield__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.cioc-textfield--chrome-force-open-picker > .cioc-textfield__input {
  position: relative;
}

.cioc-textfield--chrome-force-open-picker > .cioc-textfield__input::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 105px;
  height: auto;
  color: transparent;
  background: transparent;
}

.cioc-textfield--simple > .cioc-textfield__input:focus {
  color: inherit;
  background-color: #fff;
}

.cioc-textfield--resizevertical > textarea.cioc-textfield__input {
  resize: vertical;
}

.cioc-textfield__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 1px 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 500 12px / 24px Roboto, Arial, sans-serif;
  color: #36495b;
  -webkit-transition: font-size 0.2s, font-weight 0.2s, color 0.2s, background-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, background-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, font-size 0.2s, font-weight 0.2s, color 0.2s, box-shadow 0.2s, background-color 0.2s;
  transition: transform 0.2s, font-size 0.2s, font-weight 0.2s, color 0.2s, box-shadow 0.2s, background-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cioc-textfield--dark > .cioc-textfield__label {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield--error > .cioc-textfield__label,
.cioc-textfield__input:invalid ~ .cioc-textfield__label {
  color: #f44336;
}

.cioc-textfield__input:focus ~ .cioc-textfield__label {
  color: #e5aa00;
}

.cioc-textfield__input:not(:focus):invalid,
.cioc-textfield--error > .cioc-textfield__input:not(:focus) {
  border-bottom-color: #f44336;
}

.cioc-textfield__helper,
.cioc-textfield__error {
  min-height: 32px;
  margin-top: -32px;
  line-height: 16px;
  padding: 8px 16px;
  margin-bottom: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: rgba(66, 66, 66, 0.6);
  font-size: 12px;
}

.cioc-textfield--dark > .cioc-textfield__helper,
.cioc-textfield--dark > .cioc-textfield__error {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-textfield > .cioc-textfield__error {
  color: #f44336;
  font-weight: 700;
}

/* hide error if there is no error */
.cioc-textfield__input:focus ~ .cioc-textfield__error,
.cioc-textfield:not(.cioc-textfield--error) > .cioc-textfield__input:not(:invalid) ~ .cioc-textfield__error {
  display: none;
}

/* hide helper if error is shown */
.cioc-textfield__input:not(:focus):invalid ~ .cioc-textfield__error ~ .cioc-textfield__helper,
.cioc-textfield--error > .cioc-textfield__input:not(:focus) ~ .cioc-textfield__error ~ .cioc-textfield__helper {
  display: none;
}

.cioc-textfield__erroricon {
  height: 16px;
  width: 16px;
  margin-right: 8px;
  margin-bottom: 8px;
  float: left;
}

/* display the label in the middle of the field when no text is entered.
 * Not supported in all browsers.
 * See: https://caniuse.com//#search=css-placeholder-shown */

.cioc-textfield__input:placeholder-shown:not(:focus) ~ .cioc-textfield__label {
  color: rgba(66, 66, 66, 0.6);
  font-size: 16px;
  font-weight: 400;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.cioc-textfield--dark > .cioc-textfield__input:placeholder-shown:not(:focus) ~ .cioc-textfield__label {
  color: rgba(255, 255, 255, 0.7);
}

/* handle label interfering with entered text when a scrollbar is displayed */

textarea.cioc-textfield__input ~ .cioc-textfield__label,
select[multiple].cioc-textfield__input ~ .cioc-textfield__label {
  background-color: #ddd;
  -webkit-box-shadow: 0 2px 4px #ddd;
          box-shadow: 0 2px 4px #ddd;
}

textarea.cioc-textfield__input:focus ~ .cioc-textfield__label,
select[multiple].cioc-textfield__input:focus ~ .cioc-textfield__label {
  background-color: #36495b;
  -webkit-box-shadow: 0 2px 4px #36495b;
          box-shadow: 0 2px 4px #36495b;
}

.cioc-textfield--simple > textarea.cioc-textfield__input:focus ~ .cioc-textfield__label,
.cioc-textfield--simple > select[multiple].cioc-textfield__input:focus ~ .cioc-textfield__label {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px #fff;
          box-shadow: 0 2px 4px #fff;
}

.cioc-textfield > textarea.cioc-textfield__input:-webkit-autofill ~ .cioc-textfield__label,
.cioc-textfield > select[multiple].cioc-textfield__input:-webkit-autofill ~ .cioc-textfield__label {
  background-color: #faffbd;
  -webkit-box-shadow: 0 2px 4px #faffbd;
          box-shadow: 0 2px 4px #faffbd;
}

.cioc-textfield__input[multiple] option {
  padding-top: 4px;
  padding-bottom: 4px;
  display: block;
}

.cioc-textfield__input[multiple] option:checked {
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 0 #fff;
  background-color: #36495b;
  -webkit-box-shadow: inset 0 0 0 16px #e5aa00;
          box-shadow: inset 0 0 0 16px #e5aa00;
  border-radius: 1px;
}

.cioc-textfield--simple > .cioc-textfield__input[multiple] option:checked {
  background-color: #36495b;
  -webkit-box-shadow: inset 0 0 0 16px #36495b;
          box-shadow: inset 0 0 0 16px #36495b;
}

.cioc-textfield__badge {
  height: 24px;
  width: 24px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  fill: #36495b;
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px;
  cursor: help;
  z-index: 1;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}

.cioc-textfield__input:focus ~ .cioc-textfield__badge {
  fill: #e5aa00;
}

.cioc-textfield--error > .cioc-textfield__badge,
.cioc-textfield__input:not(:focus):invalid ~ .cioc-textfield__badge {
  fill: #f44336;
}

.cioc-textfield__badge.cioc-textfield__selectbadge {
  pointer-events: none;
  top: 16px;
  right: 8px;
}

.cioc-textfield--select > .cioc-textfield__input:focus > option:checked {
  background-color: #36495b;
}

.cioc-textfield--select > .cioc-textfield__input:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

.cioc-textfield--select.cioc-textfield--simple > .cioc-textfield__input:-moz-focusring {
  text-shadow: 0 0 0 #424242;
}

.cioc-textfield--select > .cioc-textfield__input:-moz-focusring,
.cioc-textfield--select > .cioc-textfield__input:not(:-moz-focusring) {
  padding-left: 12px;
}

.cioc-textfield--nolabel > .cioc-textfield__label {
  display: none;
}

.cioc-textfield--nolabel > .cioc-textfield__input {
  min-height: 36px;
  padding-top: 2px;
}

/**
 * Block - Creditcard
 */

.cioc-creditcard {
  position: relative;
  color: #2f89e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
  border-radius: 2px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.cioc-creditcard--fullwidth {
  width: 100%;
}

.cioc-creditcard--error {
  color: #d50000;
}

.cioc-creditcard__field {
  caret-color: #e5aa00;
  padding: 27px 8px 3px 16px;
  border-bottom: 2px solid #36495b;
  background-color: rgba(0, 0, 0, 0.06);
  cursor: text;
  border-radius: 2px;
  -webkit-transition: color 0.2s, border-bottom-color 0.2s, background-color 0.2s;
  transition: color 0.2s, border-bottom-color 0.2s, background-color 0.2s;
  height: 24px;
  margin-bottom: 32px;
}

.cioc-creditcard--focus > .cioc-creditcard__field {
  border-bottom-color: #e5aa00;
  background-color: #36495b;
}

.cioc-creditcard--error > .cioc-creditcard__field {
  border-bottom-color: #d50000;
}

.cioc-creditcard__field > * {
  -webkit-transition: -webkit-filter 0.15s;
  transition: -webkit-filter 0.15s;
  transition: filter 0.15s;
  transition: filter 0.15s, -webkit-filter 0.15s;
  -webkit-filter: opacity(0);
          filter: opacity(0);
}

.cioc-creditcard--filled > .cioc-creditcard__field > *,
.cioc-creditcard--focus > .cioc-creditcard__field > * {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: -webkit-filter 0.4s 0.1s;
  transition: -webkit-filter 0.4s 0.1s;
  transition: filter 0.4s 0.1s;
  transition: filter 0.4s 0.1s, -webkit-filter 0.4s 0.1s;
}

.cioc-creditcard__label {
  font: 16px / 24px Roboto, Arial, sans-serif;
  position: absolute;
  top: 1px;
  display: block;
  height: 24px;
  color: rgba(0, 0, 0, 0.38);
  -webkit-transition: color 0.2s, font-size 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, font-size 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, color 0.2s, font-size 0.2s;
  transition: transform 0.2s, color 0.2s, font-size 0.2s, -webkit-transform 0.2s;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  margin: 0 16px;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.cioc-creditcard--filled > .cioc-creditcard__label {
  color: #36495b;
}

.cioc-creditcard--error > .cioc-creditcard__label {
  color: #d50000;
}

.cioc-creditcard--focus > .cioc-creditcard__label {
  color: #e5aa00;
}

.cioc-creditcard--filled > .cioc-creditcard__label,
.cioc-creditcard--focus > .cioc-creditcard__label {
  -webkit-transform: none;
          transform: none;
  font-size: 12px;
}

.cioc-creditcard__error {
  min-height: 32px;
  margin-top: -32px;
  padding: 8px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #d50000;
  font: 700 12px / 16px Roboto, Arial, sans-serif;
  display: none;
  pointer-events: none;
}

.cioc-creditcard--error > .cioc-creditcard__error {
  display: block;
}

/**
 * Block - Markdown
 */

.cioc-markdown {
  white-space: pre-wrap;
}

.cioc-markdown__link {
  color: #00aada;
}

.cioc-markdown__link:hover {
  text-decoration: underline;
}

.cioc-markdown__code {
  font-family: monospace, sans-serif;
}

/**
 * Block - Markdownpreview
 */

.cioc-markdownpreview {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #36495b;
  margin-bottom: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cioc-markdownpreview__title {
  background-color: #36495b;
  color: #fff;
  margin: 0;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 700 16px / 32px "Roboto Mono", Roboto, Arial, sans-serif;
}

.cioc-markdownpreview__content {
  min-height: 56px;
  padding: 16px;
}

/**
 * Block - Horizontalscroll
 */

.cioc-horizontalscroll {
  display: inline-block;
  overflow: auto;
  margin: 0 -16px;
  width: calc(100% + 32px);
}

.cioc-horizontalscroll__content {
  display: inline-block;
  margin: 0 16px;
  min-width: calc(100% - 32px);
}

/**
 * Block - Table
 */

.cioc-table {
  font: 14px Roboto, Arial, sans-serif;
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  border-collapse: collapse;
  background-color: #f5f5f5;
  margin-bottom: 32px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 2px #fff, inset 0 -1px rgba(119, 110, 110, 0.4);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 2px #fff, inset 0 -1px rgba(119, 110, 110, 0.4);
}

.cioc-table--fullwidth {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-table--raised {
  -webkit-box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 3px 7px rgba(27, 43, 106, 0.16);
          box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 3px 7px rgba(27, 43, 106, 0.16);
}

.cioc-table__row {
  height: 48px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cioc-table__row:not(.cioc-table__header):hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.cioc-table__header {
  font: 700 12px Montserrat, Roboto, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.54);
  height: 56px;
}

.cioc-table__cell {
  font: inherit;
  padding: 6px 28px;
  text-align: left;
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  min-width: 70px;
}

.cioc-table__group:last-child > .cioc-table__row:last-child > .cioc-table__cell {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cioc-table__cell--nowrap {
  white-space: nowrap;
}

.cioc-table__cell--prominent {
  font-weight: 700;
}

.cioc-table__cell--right {
  text-align: right;
}

.cioc-table__flatbutton {
  margin: 0 -16px;
}

/**
 * Block - Pagination
 */

.cioc-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8px 0;
}

.cioc-pagination__container {
  max-width: 100%;
}

.cioc-pagination__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 52px;
}

/**
 * Block - Banner
 */

.cioc-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 56px;
  width: 100%;
  background-color: #ebebeb;
}

.cioc-banner--red {
  background-color: #f44336;
}

.cioc-banner--yellow {
  background-color: #e5aa00;
}

.cioc-banner__icon {
  margin: 16px;
}

.cioc-banner__label {
  cursor: default;
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  line-height: 24px;
  margin: 16px 0;
}

.cioc-banner__closebutton {
  margin: 8px;
}

@media screen and (min-width: 1024px) {
  .cioc-banner__icon {
    margin: 16px 21px;
  }
}

/**
 * Block - feature
 */

.cioc-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cioc-feature__illustrationcontainer,
.cioc-feature__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-feature__illustrationcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cioc-feature__illustration {
  height: 160px;
  width: 160px;
}

.cioc-feature__description {
  margin: 0;
  padding: 0;
  padding-bottom: 16px;
}

@media screen and (max-width: 1023px) {
  .cioc-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cioc-feature__illustrationcontainer {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .cioc-feature__details {
    max-width: 400px;
  }
}

/**
 * Block - UI toggle
 * this is used to handle elements like sidenav toggles, and custom radio/checkboxes
 */

.cioc-toggle__input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.cioc-toggle--yellow .cioc-toggle__button > .cioc-toggle__checked {
  color: #e5aa00;
}

.cioc-toggle__input:checked + .cioc-toggle .cioc-toggle__unchecked,
.cioc-toggle__input:not(:checked) + .cioc-toggle .cioc-toggle__checked {
  display: none;
}

.cioc-toggle__button {
  font-size: 0;
}

.cioc-toggle__input:focus + .cioc-toggle .cioc-toggle__button {
  background-color: rgba(0, 0, 0, 0.12);
}

.cioc-toggle__input:focus + .cioc-toggle .cioc-toggle__button.cioc-iconbutton--dark {
  background-color: rgba(255, 255, 255, 0.3);
}

.cioc-toggle__input:focus + .cioc-toggle .cioc-toggle__button::before {
  content: "";
}

/**
 * Block - Checkbox
 */

.cioc-checkbox {
  position: relative;
  display: inline-block;
}

.cioc-checkbox__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
}

/**
 * Block - form
 */

.cioc-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 16px 0;
}

.cioc-form__item--start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.cioc-form__item--end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.cioc-form__item {
  margin-bottom: 32px;
}

.cioc-form__checkbox {
  margin: -12px;
  margin-bottom: 20px;
}

.cioc-form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/**
 * Block - Tabs
 */

.cioc-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  padding: 0;
  margin: 0;
  text-align: center;
  list-style-type: none;
  position: relative;
  font: 600 14px Montserrat, Roboto, Arial, sans-serif;
}

.cioc-tabs--fullwidth {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.cioc-tabs__item {
  position: relative;
  height: 100%;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  outline: none;
  color: rgba(0, 0, 0, 0.54);
}

.cioc-tabs__item:hover {
  color: rgba(0, 0, 0, 0.87);
}

.cioc-tabs__item:focus {
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.05);
}

.cioc-tabs__item--selected {
  color: rgba(0, 0, 0, 0.87);
  pointer-events: none;
  -webkit-box-shadow: inset 0 -2px #e5aa00;
          box-shadow: inset 0 -2px #e5aa00;
}

.cioc-tabs--fullwidth > .cioc-tabs__item {
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.cioc-tabs--dark > .cioc-tabs__item {
  color: rgba(255, 255, 255, 0.7);
}

.cioc-tabs--dark > .cioc-tabs__item:focus,
.cioc-tabs--dark > .cioc-tabs__item:hover,
.cioc-tabs--dark > .cioc-tabs__item--selected {
  color: #fff;
}

/**
 * Block - Progressgraph
 */

@-webkit-keyframes cioc-movieroll {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes cioc-movieroll {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.cioc-progressgraph {
  height: 24px;
  width: 24px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.cioc-progressgraph__icon {
  position: absolute;
  height: 100%;
  width: 100%;
}

.cioc-progressgraph__movieroll {
  -webkit-animation: cioc-movieroll linear 5s infinite;
          animation: cioc-movieroll linear 5s infinite;
  -webkit-transform-origin: 24px;
          transform-origin: 24px;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/**
 * Block - Progress
 */

.cioc-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
}

.cioc-progress__graph {
  height: 48px;
  width: 48px;
  position: relative;
}

.cioc-progress__label {
  padding: 0 8px;
  margin: 0;
  font: italic 300 48px / 48px Roboto, Arial, sans-serif;
}

/**
 * Block - Flexspace
 */

.cioc-flexspace {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/**
 * Block - Mainheader
 */

.cioc-mainheader {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 16px;
  -webkit-box-shadow: inset 0 -1px rgba(0, 0, 0, 0.3), 0 6px 14px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px rgba(0, 0, 0, 0.3), 0 6px 14px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, background-color 0.3s;
  transition: box-shadow 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  background-color: #36495b;
}

.cio--scrolled-to-top .cioc-mainheader {
  -webkit-transition: none;
  transition: none;
}

.cio--scrolled-to-top .cioc-toggle__input:not(:checked) + .cioc-mainheader--transparent {
  -webkit-box-shadow: none;
          box-shadow: none;

  /* used important to override the background style attribute */
  background: none !important;
}

.cioc-mainheader__menubutton {
  display: none;
  margin-left: -8px;
}

.cioc-mainheader__goprobutton,
.cioc-mainheader__signinbutton {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.cioc-mainheader__nav {
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cioc-mainheader__nav > * {
  pointer-events: auto;
}

.cioc-mainheader__flexspace {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 600px) {
  .cioc-mainheader--signed-in .cioc-logo__text {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .cioc-mainheader__nav {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: opacity 0.2s 0.3s;
    transition: opacity 0.2s 0.3s;
    height: 48px;
  }

  .cioc-mainheader__goprobutton {
    margin-left: 16px;
  }
}

.cioc-mainheader__nav,
.cioc-logotext {
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1023px) {
  .cioc-mainheader {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .cioc-mainheader__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 56px;
    margin-top: 72px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    text-align: center;
    width: 100%;
  }

  .cioc-mainheader__menubutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cioc-mainheader__signinbutton {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .cioc-mainheader__goprobutton {
    position: absolute;
    top: 18px;
    right: 16px;
  }

  .cioc-toggle__input:not(:checked) + .cioc-mainheader .cioc-mainheader__signinbutton,
  .cioc-toggle__input:not(:checked) + .cioc-mainheader .cioc-mainheader__nav {
    display: none;
  }
}

/**
 * Block - Footer
 */

.cioc-footer {
  min-height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #d6d6d6;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
          box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
}

.cioc-footer__credits {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-footer__linkcontainer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-footer__primarybutton {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media screen and (max-width: 1023px) {
  .cioc-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .cioc-footer__credits {
    text-align: center;
  }

  .cioc-footer__primarybutton {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .cioc-footer__linkcontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 16px 0;
  }
}

/**
 * Block - richfooter
 */

.cioc-richfooter {
  background-color: #36495b;
  color: #fff;
  position: relative;
  width: 100%;
}

.cioc-richfooter__primarybutton {
  margin: 18px 24px;
}

.cioc-richfooter__paragraph {
  padding: 24px;
  max-width: 600px;
  margin: auto;
}

.cioc-richfooter__textfield {
  display: inline-block;
  margin: 0 24px -16px;
}

@media screen and (max-width: 1023px) {
  .cioc-richfooter {
    text-align: center;
  }

  .cioc-richfooter__credits {
    padding: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .cioc-richfooter__credits {
    height: 72px;
    line-height: 72px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.12);
  }

  .cioc-richfooter__links {
    margin: 12px;
  }

  .cioc-richfooter__textfield {
    margin-left: 0;
  }

  .cioc-richfooter__primarybutton {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .cioc-richfooter__social {
    margin: 12px 24px;
    position: absolute;
    right: 80px;
    bottom: 0;
  }
}

/**
 * Block - Hero
 */

.cioc-hero {
  background-color: #36495b;
  background-size: 100% auto;
  background-size: 100vw auto;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-top: -72px;
  margin-bottom: 72px;
  padding-top: 72px;
}

.cioc-hero__content {
  max-width: 1024px;
  margin: auto;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cioc-hero__tabs {
  margin: -16px;
  margin-top: 0;
}

.cioc-hero__tabs--floatable {
  background-color: #36495b;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  margin-bottom: -56px;
}

.cioc-hero__tabs--floating {
  position: fixed;
  z-index: 40;
  width: 100%;
  top: 72px;
  -webkit-box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 1024px) {
  .cioc-hero__tabs--floatable::before {
    content: "";
    background-color: inherit;
    position: absolute;
    left: -100vw;
    right: -100vw;
    top: 0;
    height: 100%;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: inset 0 0 0 40px transparent;
            box-shadow: inset 0 0 0 40px transparent;
  }

  .cioc-hero__tabs--floating::before {
    -webkit-transition: -webkit-box-shadow 1s;
    transition: -webkit-box-shadow 1s;
    transition: box-shadow 1s;
    transition: box-shadow 1s, -webkit-box-shadow 1s;
    -webkit-box-shadow: inset 0 0 0 40px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 0 40px rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 1023px) {
  .cioc-hero__tabs--floating {
    -webkit-box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.15), inset 0 0 0 40px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.15), inset 0 0 0 40px rgba(0, 0, 0, 0.3);
  }

  .cioc-hero__tabs {
    white-space: nowrap;
    overflow-y: auto;
  }
}

.cioc-hero__title {
  font: 700 54px "Roboto Mono", Roboto, Arial, sans-serif;
  max-width: 1024px;
  margin: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 450px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .cioc-hero__title {
    font-size: 24px;
    padding: 48px;
    min-height: 250px;
  }

  .cioc-hero__button {
    width: 288px;
  }
}

/**
 * Block - Lessoncard
 */

.cioc-lessoncard {
  display: inline-block;
  width: calc(100% - 16px);
}

.cioc-lessoncard__title {
  padding: 16px;
  width: 805px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-wrap: break-word;
}

.cioc-lessoncard__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4px;
  float: right;
}

.cioc-lessoncard__duration {
  margin: 12px;
}

.cioc-lessoncard__progress {
  float: left;
  margin: 16px 0 16px 16px;
}

/**
 * Block - Playlistcard
 */

.cioc-playlistcard {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc(100% - 16px);
}

.cioc-playlistcard__title {
  padding: 16px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-wrap: break-word;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-playlistcard__visibility {
  margin: 16px;
}

/**
 * Block - Upcomingcard
 */

.cioc-upcomingcard {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 448px;
  width: calc(50% - 16px);
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cioc-upcomingcard__description {
  padding-top: 16px;
}

@media screen and (max-width: 1023px) {
  .cioc-upcomingcard {
    width: calc(100% - 16px);
  }
}

/**
 * Block - Coursecard
 */

.cioc-collectioncard {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 448px;
  width: calc(50% - 16px);
}

.cioc-collectioncard--third {
  width: calc(100% / 3 - 16px);
}

.cioc-collectioncard__details {
  padding: 16px;
}

.cioc-collectioncard__illustrationcontainer {
  height: 275px;
  background-color: #36495b;
  background-image: radial-gradient(farthest-corner at 0 0, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  color: #fff;
  font-size: 24px;
}

.cioc-collectioncard--third > .cioc-collectioncard__illustrationcontainer {
  height: 180px;
}

.cioc-collectioncard__illustrationcontainer img {
  max-width: 100%;
  max-height: 100%;
}

.cioc-collectioncard__description {
  position: relative;
  height: 96px;
  overflow: hidden;
  padding: 0;
  margin: 16px 0;
}

.cioc-collectioncard--third .cioc-collectioncard__description {
  height: 72px;
}

@media (min-width: 683px) and (max-width: 1023px) {
  .cioc-collectioncard__description {
    height: 72px;
  }
}

.cioc-collectioncard__description::after {
  width: 40px;
  height: 24px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(75%, #f5f5f5));
  background: linear-gradient(to right, transparent, #f5f5f5 75%);
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
}

.cioc-collectioncard__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cioc-collectioncard__progress {
  height: 48px;
  width: 48px;
  margin-right: 16px;
  margin-left: -4px;
}

.cioc-collectioncard__specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 16px;
}

.cioc-collectioncard--fullwidth {
  width: calc(100% - 16px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cioc-collectioncard--fullwidth .cioc-collectioncard__illustrationcontainer {
  width: 120px;
  height: auto;
}

.cioc-collectioncard--fullwidth .cioc-collectioncard__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-collectioncard--fullwidth .cioc-collectioncard__titlecontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cioc-collectioncard--fullwidth .cioc-collectioncard__specs {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.cioc-collectioncard--fullwidth .cioc-collectioncard__specs .cioc-subtitle {
  height: auto;
}

.cioc-collectioncard--fullwidth .cioc-collectioncard__footer {
  margin-right: -12px;
}

@media screen and (max-width: 1023px) {
  .cioc-collectioncard {
    width: calc(100% - 16px);
  }

  .cioc-collectioncard--fullwidth .cioc-collectioncard__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cioc-collectioncard--fullwidth .cioc-collectioncard__footer {
    margin-top: 16px;
    margin-bottom: -12px;
  }
}

/**
 * Block - Instructorcard
 */

.cioc-instructorcard {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 312px;
  width: 320px;
  width: calc(33.33% - 16px);
  max-width: 100%;
  padding-top: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cioc-instructorcard--detailed {
  padding-top: 48px;
}

.cioc-instructorcard .cioc-link {
  margin-top: 16px;
}

@media screen and (max-width: 1023px) {
  .cioc-instructorcard {
    width: calc(100% - 16px);
  }
}

.cioc-instructorcard__bio {
  padding: 0 24px;
}

/**
 * Block - Pricingcard
 */

.cioc-pricingcard {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  width: 236px;
  width: calc(25% - 16px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: bottom;
  margin-top: 96px;
}

.cioc-pricingcard__illustration {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 160px;
  width: 156px;
  margin-top: -96px;
  z-index: 20;
}

.cioc-pricingcard__features {
  text-align: center;
  padding: 16px 0;
  margin: 0;
  line-height: 38px;
  list-style-type: none;
  font-size: 14px;
}

.cioc-pricingcard__prominentfeature {
  font-weight: 700;
}

.cioc-pricingcard__tiername {
  text-transform: uppercase;
}

.cioc-pricingcard__bestvalue {
  color: rgba(66, 66, 66, 0.6);
  margin-top: 8px;
}

@media screen and (max-width: 1023px) {
  .cioc-pricingcard {
    width: calc(100% - 16px);
  }
}

/**
 * Block - Searchbox
 */

.cioc-searchbox {
  background: rgba(0, 0, 0, 0.16);
  max-width: calc(100% - 200px);
  max-width: calc(100vw - 200px);
  width: 100%;
  width: 100vw;
  z-index: 10;
  height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: max-width 0.4s, background-color 0.4s;
  transition: max-width 0.4s, background-color 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.14);
}

.cioc-searchbox__search {
  -webkit-transition: height 0.4s, width 0.4s, margin 0.4s;
  transition: height 0.4s, width 0.4s, margin 0.4s;
}

.cioc-searchbox__input,
.cioc-searchbox__clear {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.cioc-searchbox__search:hover,
.cioc-searchbox__clear:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cioc-searchbox__input {
  caret-color: #e5aa00;
  color: #fff;
  background: transparent;
  border: none;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-overflow: ellipsis;
  max-width: calc(100% - 72px);
}

.cioc-searchbox__input::-webkit-search-cancel-button,
.cioc-searchbox__input::-webkit-search-decoration,
.cioc-searchbox__input::-webkit-search-results-button,
.cioc-searchbox__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

.cioc-searchbox__input::-ms-clear {
  display: none;
}

.cioc-searchbox__input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.cioc-searchbox__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cioc-searchbox__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cioc-searchbox__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cioc-searchbox__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cioc-searchbox__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 1024px) {
  .cioc-searchbox--open > .cioc-searchbox__search,
  .cioc-searchbox:focus-within > .cioc-searchbox__search,
  .cioc-searchbox__clear {
    height: 32px;
    width: 32px;
    margin: 2px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .cioc-searchbox:not(.cioc-searchbox--open):not(:focus-within) {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-width: 44px;
  }

  .cioc-searchbox:not(.cioc-searchbox--open):not(:focus-within) > .cioc-searchbox__search:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }

  .cioc-searchbox:not(.cioc-searchbox--open):not(:focus-within) > .cioc-searchbox__input,
  .cioc-searchbox:not(.cioc-searchbox--open):not(:focus-within) > .cioc-searchbox__clear {
    opacity: 0;
    pointer-events: none;
  }

  .cioc-searchbox--open + .cioc-mainheader__nav,
  .cioc-searchbox:focus-within + .cioc-mainheader__nav {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}

@media screen and (max-width: 1023px) {
  .cioc-mainheader__searchbox {
    -webkit-transition: none;
    transition: none;
    position: absolute;
    top: 72px;
    left: 0;
    max-width: none;
    width: calc(100% - 32px);
    width: calc(100vw - 32px);
    height: 48px;
  }

  .cioc-toggle__input:not(:checked) + .cioc-mainheader .cioc-mainheader__searchbox {
    display: none;
  }
}

/**
 * Block - Dialog
 */

@-webkit-keyframes cioc-dialog {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes cioc-dialog {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

.cioc-dialog {
  -webkit-animation: cioc-dialog 0.3s;
          animation: cioc-dialog 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 504px;
  max-width: calc(100% - 48px);
  max-height: calc(100% - 48px);
  background: #ebebeb;
  -webkit-box-shadow: 0 10px 18px rgba(27, 43, 106, 0.35), inset 0 -1px 0 rgba(119, 110, 110, 0.4), inset 0 1px 0 #fff;
          box-shadow: 0 10px 18px rgba(27, 43, 106, 0.35), inset 0 -1px 0 rgba(119, 110, 110, 0.4), inset 0 1px 0 #fff;
  padding: 24px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  margin: auto;
}

.cioc-dialog[hidden] {
  display: none;
}

.cioc-dialog__title {
  padding: 0;
}

.cioc-dialog__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 24px;
}

.cioc-dialog__scrollarea {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  margin: 0 -24px;
  padding: 0 24px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.cioc-dialog__textfield {
  margin-top: 24px;
}

/**
 * Block - Editplaylist
 */

.cioc-editplaylist {
  padding-top: 8px;
}

.cioc-editplaylist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: z-index 0.2s 0.2s, -webkit-transform 0.2s;
  transition: z-index 0.2s 0.2s, -webkit-transform 0.2s;
  transition: z-index 0.2s 0.2s, transform 0.2s;
  transition: z-index 0.2s 0.2s, transform 0.2s, -webkit-transform 0.2s;
  z-index: 0;
}

.cioc-editplaylist--editing .cioc-editplaylist__item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.cioc-editplaylist--dragging,
.cioc-editplaylist--dragging .cioc-editplaylist__item {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.cioc-editplaylist__item--dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  pointer-events: none;
  z-index: 10;
  position: relative;
  -webkit-transition: z-index 0.2s;
  transition: z-index 0.2s;
}

.cioc-editplaylist__item--dragging > .cioc-lessoncard {
  -webkit-box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 8px 14px rgba(27, 43, 106, 0.24);
          box-shadow: inset 0 1px #fff, inset 0 -1px rgba(119, 110, 110, 0.4), 0 8px 14px rgba(27, 43, 106, 0.24);
}

.cioc-editplaylist--editing > .cioc-editplaylist__item > *:not(.cioc-editplaylist__delete) {
  pointer-events: none;
}

.cioc-editplaylist__delete,
.cioc-editplaylist__handle {
  -webkit-transition: width 0.2s, margin 0.2s, opacity 0.2s;
  transition: width 0.2s, margin 0.2s, opacity 0.2s;
}

.cioc-editplaylist--editing .cioc-lessoncard__title {
  width: 750px;
}

.cioc-editplaylist:not(.cioc-editplaylist--editing) .cioc-editplaylist__handle,
.cioc-editplaylist:not(.cioc-editplaylist--editing) .cioc-editplaylist__delete {
  margin-left: 0;
  margin-right: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.cioc-editplaylist .cioc-lessoncard__title {
  -webkit-transition: color 0.2s, width 0.2s;
  transition: color 0.2s, width 0.2s;
}

.cioc-editplaylist__itemremoved {
  cursor: default;
  margin: 8px 56px;
  padding: 10px;
  background-color: #36495b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
}

.cioc-editplaylist__itemremoved__message {
  margin: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/**
 * Block - switch
 */

.cioc-switch {
  line-height: 0;
}

.cioc-switch__input {
  display: none;
}

.cioc-switch__label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 20px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 48px;
}

.cioc-switch__label::after,
.cioc-switch__label::before {
  content: "";
  position: absolute;
  color: #e5aa00;
  left: 0;
  border-radius: 50px;
}

.cioc-switch__label::before {
  height: 14px;
  width: 36px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, currentColor), color-stop(50%, rgba(0, 0, 0, 0.76)));
  background-image: linear-gradient(to right, currentColor 50%, rgba(0, 0, 0, 0.76) 50%);
  background-size: 80px 14px;
  background-position: -40px 0;
  opacity: 0.5;
  -webkit-transition: background-position 0.1s;
  transition: background-position 0.1s;
}

.cioc-switch__input:checked + .cioc-switch__label::before {
  background-position: -4px 0;
}

.cioc-switch__label::after {
  height: 20px;
  width: 20px;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-transition: background-color 0.1s, -webkit-transform 0.1s;
  transition: background-color 0.1s, -webkit-transform 0.1s;
  transition: transform 0.1s, background-color 0.1s;
  transition: transform 0.1s, background-color 0.1s, -webkit-transform 0.1s;
}

.cioc-switch__input:checked + .cioc-switch__label::after {
  background-color: currentColor;
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
}

/**
 * Block - Commentsection
 */

.cioc-commentsection {
  width: 100%;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 16px 0;
}

.cioc-commentsection__item {
  margin-bottom: 24px;
}

.cioc-comment--preview {
  font-style: italic;
  background: rgba(229, 170, 0, 0.1);
  padding: 16px 8px;
  margin-left: -8px;
  margin-right: -8px;
}

.cioc-comment__like--liked {
  color: #f65858;
}

.cioc-comment__avatar {
  float: left;
  margin-right: 16px;
}

.cioc-comment__message {
  padding-left: 60px;
  margin: 0;
  margin-bottom: 8px;
}

.cioc-comment__date {
  padding-top: 96px;
  margin-top: -96px;
  display: inline-block;
}

.cioc-comment__date[href]:hover {
  text-decoration: underline;
  cursor: pointer;
}

.cioc-comment__date::before {
  content: "•";
  display: inline-block;
  padding: 0 8px;
}

.cioc-comment__actions {
  padding-left: 60px;
  margin-top: -8px;
}

.cioc-comment__replies {
  padding-left: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.14);
  margin-top: 24px;
}

.cioc-comment__replies .cioc-comment__avatar {
  height: 32px;
  width: 32px;
}

.cioc-comment__replies .cioc-comment__actions,
.cioc-comment__replies .cioc-comment__message {
  padding-left: 52px;
}

@media screen and (min-width: 601px) {
  .cioc-comment__replies {
    margin-left: 24px;
  }

  .cioc-comment__replies .cioc-comment__replies {
    margin-left: 20px;
  }

  .cioc-commentsection__item:not(:last-child) {
    margin-bottom: 48px;
  }
}

/**
 * Block - Sectioncontainer
 */

@media screen and (min-width: 1024px) {
  .cioc-sectioncontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -16px;
  }

  .cioc-sectioncontainer__item {
    margin-right: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .cioc-sectioncontainer__item--double {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }

  .cioc-sectioncontainer__item--triple {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }

  .cioc-sectioncontainer__item--quadruple {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }

  .cioc-sectioncontainer__item--quintuple {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
}

/**
 * Block - Svg Sprite
 */

.cioc-svgsprite {
  all: initial;
  top: -99999px;
  position: absolute;
}
