@charset "UTF-8";
/* _theme-init.scss */
/*------------------------------------*\
    #BOX-SIZING
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* _theme-commons.scss */
@font-face {
  font-family: 'tvokids_bold';
  src: url("../../../common/fonts/tvokids_bold.woff2") format("woff2"), url("../../../common/fonts/tvokids_bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Heinemann-Bold';
  src: url("../../../common/fonts/Heinemann-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Heinemann-BoldItalic';
  src: url("../../../common/fonts/Heinemann-BoldItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Heinemann-Roman';
  src: url("../../../common/fonts/Heinemann-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Heinemann-RomanItalic';
  src: url("../../../common/fonts/Heinemann-RomanItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-Light.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-Light.woff") format("woff"), url("../../../common/fonts/SuisseIntl-Light.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-Light.svg#SuisseIntl") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl.woff") format("woff"), url("../../../common/fonts/SuisseIntl.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl.svg#SuisseIntl") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-Italic.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-Italic.woff") format("woff"), url("../../../common/fonts/SuisseIntl-Italic.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-Italic.svg#SuisseIntl") format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-Medium.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-Medium.woff") format("woff"), url("../../../common/fonts/SuisseIntl-Medium.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-Medium.svg#SuisseIntl") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-MediumItalic.woff") format("woff"), url("../../../common/fonts/SuisseIntl-MediumItalic.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-MediumItalic.svg#SuisseIntl") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-SemiBold.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-SemiBold.woff") format("woff"), url("../../../common/fonts/SuisseIntl-SemiBold.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-SemiBold.svg#SuisseIntl") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-SemiBoldItalic.woff") format("woff"), url("../../../common/fonts/SuisseIntl-SemiBoldItalic.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-SemiBoldItalic.svg#SuisseIntl") format("svg");
  font-weight: 700;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-Bold.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-Bold.woff") format("woff"), url("../../../common/fonts/SuisseIntl-Bold.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-Bold.svg#SuisseIntl") format("svg");
  font-weight: 900;
  font-style: bold;
  font-display: swap; }

@font-face {
  font-family: 'SuisseIntl';
  src: url("../../../common/fonts/SuisseIntl-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../../common/fonts/SuisseIntl-BoldItalic.woff") format("woff"), url("../../../common/fonts/SuisseIntl-BoldItalic.ttf") format("truetype"), url("../../../common/fonts/SuisseIntl-BoldItalic.svg#SuisseIntl") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'tvokids-icons';
  src: url("../../../common/fonts/tvokids-icons.ttf?ub59c24d4") format("truetype"), url("../../../common/fonts/tvokids-icons.woff?u94f70855") format("woff"), url("../../../common/fonts/tvokids-icons.svg?u636439d0#tvokids-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

/* objects//material-design-icons/_material-icons.scss */
/* objects/_box-shadows.scss */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

/* _elements.scss */
html {
  font-size: 100%;
  color: #212121;
  overflow-y: scroll;
  min-height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

body {
  background: #009FD4; }
  body.tvokids-5-and-under {
    background: #E76E3C; }
  body.tvokids-6-and-over {
    background: #009FD4; }

html, button, input, select, textarea {
  font-family: "tvokids_bold", Helvetica, sans-serif; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
pre,
table,
fieldset,
form
details,
blockquote,
object,
iframe,
pre,
address,
code,
dl,
dt,
dd,
embed,
audio,
video {
  font-size: 1em;
  line-height: 1.5625em;
  margin: 0 0 1em 0; }

strong, b {
  font-weight: 900; }

em {
  font-style: italic; }

a {
  color: black;
  transition: color 0.3s ease-out; }
  a:hover, a:focus {
    text-decoration: underline;
    text-decoration-color: #000; }

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: "tvokids_bold", Helvetica, sans-serif; }
  h1 b, h1 strong, h2 b, h2 strong, h3 b, h3 strong, h4 b, h4 strong, h5 b, h5 strong, h6 b, h6 strong {
    font-weight: 400; }

h1 {
  font-size: 1.5625em;
  margin-bottom: 0.32768em;
  line-height: 1.25em; }
  @media (min-width: 38em) {
    h1 {
      font-size: 3.05176em; } }
  h1 a {
    color: black; }

h2 {
  font-size: 1.5625em;
  margin-bottom: 0.512em;
  line-height: 1.25em; }
  @media (min-width: 38em) {
    h2 {
      font-size: 1.95312em; } }
  h2 a {
    color: #212121; }

h3 {
  font-size: 1.25em;
  margin-bottom: 0.64em;
  line-height: 1.25em;
  font-weight: 900; }
  @media (min-width: 38em) {
    h3 {
      font-size: 1.5625em; } }
  h3 a {
    color: #212121; }

h4 {
  font-size: 1em;
  margin-bottom: 0.512em;
  line-height: 1.25em;
  font-weight: 900; }
  @media (min-width: 38em) {
    h4 {
      font-size: 1.25em; } }

h5 {
  font-weight: 900;
  margin-bottom: 0; }

h6 {
  font-size: 0.8em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 900; }

sup {
  vertical-align: super;
  font-size: smaller; }

sub {
  font-size: smaller;
  vertical-align: sub; }

blockquote {
  padding: 0 0.8em 0 1.25em; }
  blockquote p {
    font-size: 1.25em;
    line-height: 1.5625em; }
    @media (min-width: 38em) {
      blockquote p {
        line-height: 1.25em; } }
    blockquote p:last-child {
      margin-bottom: 0; }

label {
  margin-bottom: 0.64em;
  font-weight: 900; }

input,
textarea {
  margin: 0; }

textarea {
  vertical-align: top; }

table {
  width: 100%; }
  table p, table ul {
    margin: 0;
    padding: 0; }
  table tbody {
    border: none; }
  table th, table td {
    padding: 1.25em 0.512em;
    border: none;
    vertical-align: top;
    font-size: 0.8em; }
    @media (min-width: 48em) {
      table th, table td {
        font-size: 1em;
        line-height: 1.25em; } }
  table tr.odd {
    background-color: white; }
  table tr:nth-child(odd) {
    background-color: white; }
  table tr.even {
    background-color: #f7f7f7; }
  table tr:nth-child(even) {
    background-color: #f7f7f7; }
  table th,
  table thead th {
    background-color: white;
    border-bottom: 1px solid #E0E0E0;
    line-height: 1.5625em; }
  table caption {
    caption-side: bottom; }

ul li, ol li {
  margin: 0 0 0.512em 0; }

ul {
  padding-left: 1em; }
  ul li {
    list-style: disc; }

ol {
  padding-left: 1.25em; }
  ol li {
    list-style: decimal; }

a img {
  transform: rotate(0);
  -webkit-backface-visibility: hidden; }

img, video {
  max-width: 100%;
  height: auto; }

/* _drupal.scss */
/* drupal/_forms.scss */
.form-required,
.marker {
  color: #E81D1D; }

/* drupal/_messages.scss */
div.messages {
  margin: 0;
  padding: 0;
  display: block;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  margin-bottom: 1em;
  padding: 3.05176em 0.64em 0.64em 0.64em;
  background-image: none;
  border: none;
  position: relative;
  line-height: 1.95312em;
  border-radius: 2px; }
  @media (min-width: 38em) {
    div.messages {
      font-size: 1em;
      line-height: 1.5625em; } }
  div.messages:before {
    font-size: 18px;
    font-size: 1.125rem;
    position: absolute;
    left: 0.512em;
    top: 0.4096em; }
  div.messages ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 1.25em; }
    div.messages ul li:last-child {
      margin-bottom: 0; }

div.status {
  background-color: #DCEDC8;
  color: #33691E; }
  div.status::before {
    color: rgba(0, 0, 0, 0.54);
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: bottom;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    content: "Success";
    color: #33691E;
    font-family: "SuisseIntl", Helvetica, sans-serif; }

div.warning {
  background-color: #FFF9C4;
  color: #827717; }
  div.warning::before {
    color: rgba(0, 0, 0, 0.54);
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: bottom;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    content: "Warning";
    color: #827717;
    font-family: "SuisseIntl", Helvetica, sans-serif; }

div.error {
  background-color: #FCE4EC;
  color: #B71C1C; }
  div.error::before {
    color: rgba(0, 0, 0, 0.54);
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: bottom;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    content: "Error";
    color: #B71C1C;
    font-family: "SuisseIntl", Helvetica, sans-serif; }

/* drupal/_system-theme.scss */
.item-list ul {
  margin: 0;
  padding: 0; }
  .item-list ul li {
    margin: 0;
    padding: 0;
    list-style-image: none;
    list-style-type: none;
    list-style: none;
    margin-left: 0; }

.links.inline {
  margin: 0;
  padding: 0;
  list-style-image: none;
  list-style-type: none;
  list-style: none;
  margin-left: 0; }

.form-item,
.form-actions {
  margin: 0; }

.form-item {
  margin-bottom: 1em; }

.form-item .description {
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  margin-top: 0.4096em;
  font-size: 0.8em; }

.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0;
  margin-bottom: 0; }

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 1.5625em; }

.clearfix:after {
  content: ''; }

/* drupal/_tabs.scss */
ul.tabs {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  margin-bottom: 1.25em;
  margin-top: 1.25em;
  border-bottom: 5px solid black; }
  ul.tabs > li {
    display: block;
    float: left; }
    ul.tabs > li:last-child {
      margin-right: 0; }
  ul.tabs li {
    margin: 0;
    padding: 0; }
  ul.tabs a {
    background-color: gray;
    color: white;
    text-transform: uppercase;
    transition: background-color 0.3s ease-out;
    display: block;
    float: left;
    font-weight: 900;
    font-size: 0.8em;
    padding-top: 0.26214em;
    padding-left: 0.64em;
    padding-right: 0.64em;
    margin: 0;
    margin-right: 0.26214em;
    text-decoration: none; }
    ul.tabs a.active {
      background-color: black;
      color: white; }
    ul.tabs a:hover {
      background-color: #eee;
      color: black; }
    ul.tabs a:active {
      background-color: black;
      color: white; }
  ul.tabs li:last-child a {
    margin-right: 0; }

/* _layout.scss */
.layout-container {
  position: relative;
  margin: 0 auto;
  padding: 0 1.5625em; }
  .layout-container:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 64em) and (max-height: 74.9375em) {
    .layout-container {
      padding: 0; } }

/*  @main layout regions
========================================================================== */
/* layout/_header.scss */
/* @header section */
#header {
  padding-bottom: 200px; }
  #header #masthead:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 83.375em) and (max-height: 47.9375em) {
    #header #masthead {
      float: left;
      clear: none;
      padding-top: 1em;
      padding-bottom: 1em; } }
  @media (min-width: 48em) {
    #header #masthead .layout-container {
      padding: 0; } }
  @media (min-width: 74.25em) {
    #header #masthead .layout-container {
      max-width: none; } }
  @media (min-width: 48em) {
    #header #masthead .region-masthead-primary {
      width: 206px;
      float: left;
      display: inline-block; } }
  @media (min-width: 48em) {
    #header #masthead .region-masthead-secondary {
      width: calc(100% - 206px);
      float: right;
      display: inline-block; } }
  @media (min-width: 64em) {
    #header #masthead .region-masthead-secondary {
      margin-top: .45em; } }

.section-header {
  position: fixed;
  width: 100%;
  background: white;
  z-index: 5; }

/* @region-user-bar */
@media (min-width: 83.375em) and (max-height: 47.9375em) {
  .region-user-bar {
    display: block;
    float: right;
    padding-top: 20px; } }

/* @character-container */
.character-container {
  position: absolute;
  width: 100%;
  z-index: 2; }

/* layout/_content.scss */
/* @content section */
/* _objects.scss */
/* objects/_button.scss */
.btn {
  border: none;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 0.8em;
  font-weight: 900;
  overflow: hidden;
  padding: 0.26214em 1em;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color .3s ease-out, border-color .3s ease-out;
  margin-right: 1em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none; }
  @media (min-width: 38em) {
    .btn {
      border-radius: 5px;
      padding: 0.8em 1.5625em; } }

.btn-primary {
  background-color: #212121;
  border: 1px solid #212121;
  color: white; }
  .btn-primary:hover, .btn-primary:focus {
    color: #212121;
    background-color: #E0E0E0;
    border: 1px solid #E0E0E0; }

.btn-secondary {
  border: 1px solid #212121; }
  .btn-secondary:hover, .btn-secondary:focus {
    background-color: #E0E0E0;
    border: 1px solid #E0E0E0; }

.btn-flat {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  padding: 0.16777em 0.8em;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 0.8em;
  font-weight: 900;
  vertical-align: bottom;
  font-size: 0.8em;
  background-color: #E0E0E0; }

/* objects/_content-styles.scss */
.headline-type {
  font-size: 1.25em;
  line-height: 1.25em; }
  @media (min-width: 38em) {
    .headline-type {
      font-size: 1.95312em; } }
  .headline-type b, .headline-type strong {
    font-weight: 400; }

.small-type {
  font-weight: 900;
  margin-bottom: 1.5625em;
  font-size: 0.8em; }

.highlight-type {
  font-weight: 900; }

.inline-image-left,
.inline-image-right,
.inline-image-center {
  width: 37.03704%;
  margin-top: 0.4096em;
  margin-bottom: 0.32768em; }

.inline-image-left {
  float: left;
  margin-right: 1em; }

.inline-image-right {
  float: right;
  margin-left: 1em; }

.inline-image-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%; }

.highlight-box {
  margin-bottom: 1.25em;
  position: relative;
  padding: 0.8em;
  background-color: white;
  border-radius: 2px;
  color: #404040;
  line-height: 1.5625em;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
  @media (min-width: 38em) {
    .highlight-box {
      padding: 1.25em; } }
  .highlight-box p:last-child, .highlight-box li:last-child {
    margin-bottom: 0; }

/* objects/_fields.scss */
/* objects/_grid-displays.scss */
@media (min-width: 38em) {
  .grid-display .views-row {
    width: 48.93617%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.12766%; }
    .grid-display .views-row:nth-child(2n+2) {
      width: 48.93617%;
      clear: right;
      float: right;
      margin-right: 0; } }

@media (min-width: 64em) {
  .no-sidebars .grid-display .views-row,
  .grid-display .one-sidebar.sidebar-second .views-row {
    width: 31.91489%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.12766%; }
    .no-sidebars .grid-display .views-row:nth-child(2n+2),
    .grid-display .one-sidebar.sidebar-second .views-row:nth-child(2n+2) {
      width: 31.91489%;
      clear: right;
      float: left;
      margin-left: 0;
      margin-right: 2.12766%; }
    .no-sidebars .grid-display .views-row:nth-child(3n+3),
    .grid-display .one-sidebar.sidebar-second .views-row:nth-child(3n+3) {
      width: 31.91489%;
      clear: right;
      float: right;
      margin-right: 0; } }

/* objects/_list-displays.scss */
/* objects/_media-embed.scss */
.media-embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }

.media-embed iframe,
.media-embed object,
.media-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* objects/_responsive-tables.scss */
.table-responsive {
  overflow-y: hidden;
  cursor: ew-resize; }

.table-controls {
  text-align: right;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 0.26214em; }
  .table-controls .instruction {
    color: #757575;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-right: 0.8em; }
  .table-controls .material-icons {
    vertical-align: middle;
    font-size: 18px;
    margin-right: 0.13422em; }

/* objects/_video-player.scss */
/* objects/_views-ui.scss */
.styleguide-header {
  clear: both;
  margin-top: 3.05176em;
  margin-bottom: 1em;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #212121;
  border-bottom: 1px solid #E0E0E0;
  border-bottom: 1px solid #757575; }
  .styleguide-header:nth-child(1) {
    margin-top: 0; }

/* _components.scss */
/* components/_blocks.scss file */
/* components/blocks/_block-character-banner.scss */
.view-character-banner {
  position: relative;
  overflow: hidden;
  white-space: nowrap; }
  body.tvokids-5-and-under .view-character-banner {
    background: #E76E3C; }
  body.tvokids-6-and-over .view-character-banner {
    background: #009FD4; }
  .view-character-banner:before {
    content: '';
    height: 50%;
    width: 100%;
    position: absolute;
    background: white; }

.character-banner-list {
  padding: 0;
  margin: 0; }

.character-banner-slide {
  display: inline-block;
  list-style-type: none;
  padding-top: 1rem;
  padding-bottom: 1.375em;
  margin-right: 0.625rem; }

.character-banner-button-prev,
.character-banner-button-next {
  display: none;
  position: absolute;
  border: 3px solid #009fd4;
  box-shadow: 4px 7px 20px 1px rgba(0, 0, 0, 0.35);
  background: #fff;
  background-repeat: no-repeat;
  background-size: 1.125rem;
  border-radius: 5rem;
  width: 6.25rem;
  height: 6.25rem;
  top: 1rem; }
  @media (min-width: 64em) {
    .character-banner-button-prev,
    .character-banner-button-next {
      display: block; } }
  @media (min-width: 64em) and (max-height: 47.9375em) {
    .character-banner-button-prev,
    .character-banner-button-next {
      width: 5rem;
      height: 5rem; } }

.character-banner-button-prev {
  left: -3.125rem;
  background-image: url("../../img/general_icons/character-banner-arrow-left.svg");
  background-position: 80% 49%;
  transition: left 0.2s; }
  .character-banner-button-prev:hover {
    left: -2.5rem; }
  @media (min-width: 64em) and (max-height: 47.9375em) {
    .character-banner-button-prev {
      left: -2.5rem; }
      .character-banner-button-prev:hover {
        left: -2rem; } }

.character-banner-button-next {
  right: -3.125rem;
  background-image: url("../../img/general_icons/character-banner-arrow-right.svg");
  background-position: 20% 49%;
  transition: right 0.2s; }
  .character-banner-button-next:hover {
    right: -2.5rem; }
  @media (min-width: 64em) and (max-height: 47.9375em) {
    .character-banner-button-next {
      right: -2.5rem; }
      .character-banner-button-next:hover {
        right: -2rem; } }

.character-banner-wrapper {
  width: 5rem;
  height: 5rem; }
  @media (min-width: 48em) {
    .character-banner-wrapper {
      width: 6.25rem;
      height: 6.25rem; } }
  @media (min-width: 64em) and (max-height: 47.9375em) {
    .character-banner-wrapper {
      width: 5rem;
      height: 5rem; } }
  .character-banner-wrapper a, .character-banner-wrapper img {
    border-radius: 100%;
    display: block; }
  .character-banner-wrapper a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.47, 2.02, 0.31, -0.36);
    box-shadow: 4px 7px 20px 1px rgba(0, 0, 0, 0.35); }
    .character-banner-wrapper a:hover {
      box-shadow: 4px 7px 14px 1px rgba(0, 0, 0, 0.35);
      transform: scale(1.16); }
  .character-banner-wrapper img {
    border: solid 3px white; }

.on-now-text {
  font-family: "tvokids_bold", Helvetica, sans-serif;
  display: block;
  position: absolute;
  bottom: 0;
  padding: 0.2rem 1.2rem;
  white-space: normal;
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: .9;
  text-align: center;
  color: #E01382;
  background: white;
  z-index: 1; }
  @media (min-width: 48em) {
    .on-now-text {
      padding: 0.2rem 1.7rem; } }
  @media (min-width: 64em) {
    .on-now-text {
      padding: 0.2rem 1.2rem;
      font-size: 14px;
      font-size: 0.875rem; } }

/**
 * @file
 * All styling to do with grownup menu stuff.
 */
#block-menu-5-and-under-grownup,
#block-menu-6-and-over-grownup {
  display: none;
  z-index: 1000;
  background: #FFF;
  right: -15em;
  top: 0em;
  position: fixed;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow-y: scroll;
  font-size: 18px;
  font-size: 1.125rem; }
  @media (min-width: 48em) {
    #block-menu-5-and-under-grownup,
    #block-menu-6-and-over-grownup {
      width: auto; } }
  #block-menu-5-and-under-grownup h2,
  #block-menu-6-and-over-grownup h2 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 16px 60px 16px 10px;
    background: #009FD4;
    color: #FFF;
    cursor: pointer; }
    @media (min-width: 48em) {
      #block-menu-5-and-under-grownup h2,
      #block-menu-6-and-over-grownup h2 {
        padding: 15px 60px 15px 20px; } }
  #block-menu-5-and-under-grownup .menu,
  #block-menu-6-and-over-grownup .menu {
    width: 220px; }
    @media (min-width: 48em) {
      #block-menu-5-and-under-grownup .menu,
      #block-menu-6-and-over-grownup .menu {
        width: 282px; } }
    #block-menu-5-and-under-grownup .menu li,
    #block-menu-6-and-over-grownup .menu li {
      margin: 0;
      padding: 0;
      border: 0;
      padding: 11px 0 11px 0;
      border-top: 1px solid #000;
      margin: 0 10px 0 10px; }
      @media (min-width: 48em) {
        #block-menu-5-and-under-grownup .menu li,
        #block-menu-6-and-over-grownup .menu li {
          margin: 0 20px 0 20px; } }
      #block-menu-5-and-under-grownup .menu li:first-child,
      #block-menu-6-and-over-grownup .menu li:first-child {
        border-top: none; }
      #block-menu-5-and-under-grownup .menu li.active-trail,
      #block-menu-6-and-over-grownup .menu li.active-trail {
        background: #009FD4;
        border-top: none; }
        #block-menu-5-and-under-grownup .menu li.active-trail a,
        #block-menu-6-and-over-grownup .menu li.active-trail a {
          color: #FFF; }
      #block-menu-5-and-under-grownup .menu li a,
      #block-menu-6-and-over-grownup .menu li a {
        color: inherit;
        text-decoration: inherit;
        display: block;
        color: #000; }
        #block-menu-5-and-under-grownup .menu li a:active, #block-menu-5-and-under-grownup .menu li a:focus,
        #block-menu-6-and-over-grownup .menu li a:active,
        #block-menu-6-and-over-grownup .menu li a:focus {
          outline: none; }
        #block-menu-5-and-under-grownup .menu li a:hover, #block-menu-5-and-under-grownup .menu li a:focus,
        #block-menu-6-and-over-grownup .menu li a:hover,
        #block-menu-6-and-over-grownup .menu li a:focus {
          text-decoration: underline; }
  #block-menu-5-and-under-grownup #grownup-focus,
  #block-menu-6-and-over-grownup #grownup-focus {
    position: absolute;
    top: -9999px; }

.grownup-menu-close {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  position: absolute;
  top: 16px;
  right: 20px;
  height: 20px;
  width: 20px;
  color: #FFF;
  background: transparent;
  cursor: pointer; }
  .grownup-menu-close:hover, .grownup-menu-close:focus {
    text-decoration: underline; }
  .grownup-menu-close img {
    height: 16px;
    width: 16px; }

.grownup-overlay {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000;
  opacity: 0.75;
  cursor: pointer; }
  @media (min-width: 48em) {
    .grownup-overlay {
      cursor: auto; } }

/**
 * @file
 *   Styles for the logo block.
 */
#block-tvokids-logo-5-under-logo,
#block-tvokids-logo-6-over-logo {
  overflow: hidden; }
  @media (min-width: 48em) {
    #block-tvokids-logo-5-under-logo,
    #block-tvokids-logo-6-over-logo {
      margin-top: -2em; } }
  @media (min-width: 64em) {
    #block-tvokids-logo-5-under-logo,
    #block-tvokids-logo-6-over-logo {
      margin-top: -2.9em; } }
  @media (min-width: 74.25em) {
    #block-tvokids-logo-5-under-logo,
    #block-tvokids-logo-6-over-logo {
      margin-top: -3em; } }
  @media (max-width: 47.9375em) {
    #block-tvokids-logo-5-under-logo,
    #block-tvokids-logo-6-over-logo {
      display: inline-block;
      position: absolute;
      height: 2em;
      top: .9375em;
      left: 50%;
      margin-left: -4em;
      width: 8em; } }
  #block-tvokids-logo-5-under-logo a,
  #block-tvokids-logo-6-over-logo a {
    display: block; }
  #block-tvokids-logo-5-under-logo img,
  #block-tvokids-logo-6-over-logo img {
    display: inline-block;
    margin: 0 auto; }
  #block-tvokids-logo-5-under-logo .static-fallback-logo,
  #block-tvokids-logo-6-over-logo .static-fallback-logo {
    width: 8em; }
    @media (min-width: 48em) {
      #block-tvokids-logo-5-under-logo .static-fallback-logo,
      #block-tvokids-logo-6-over-logo .static-fallback-logo {
        width: 10.3125em; } }
    @media (min-width: 74.25em) {
      #block-tvokids-logo-5-under-logo .static-fallback-logo,
      #block-tvokids-logo-6-over-logo .static-fallback-logo {
        width: 11.875em; } }
  #block-tvokids-logo-5-under-logo .animated-logo,
  #block-tvokids-logo-5-under-logo .animated-logo-text,
  #block-tvokids-logo-6-over-logo .animated-logo,
  #block-tvokids-logo-6-over-logo .animated-logo-text {
    display: none; }
  @media (min-width: 48em) {
    #block-tvokids-logo-5-under-logo .animated-logo,
    #block-tvokids-logo-6-over-logo .animated-logo {
      display: block; }
    #block-tvokids-logo-5-under-logo .static-fallback-logo,
    #block-tvokids-logo-6-over-logo .static-fallback-logo {
      display: none; }
    #block-tvokids-logo-5-under-logo .animated-logo-text,
    #block-tvokids-logo-6-over-logo .animated-logo-text {
      font: 0/0 serif;
      text-shadow: none;
      color: transparent; } }

/**
 * @file
 *   Styling for the grownup menu trigger blocks.
 */
#block-tvokids-navigation-5-grownup-triggers,
#block-tvokids-navigation-6-grownup-triggers {
  margin: 10px;
  display: inline-block;
  float: right; }
  @media (min-width: 48em) {
    #block-tvokids-navigation-5-grownup-triggers,
    #block-tvokids-navigation-6-grownup-triggers {
      margin: 10px 20px 10px 10px; } }
  #block-tvokids-navigation-5-grownup-triggers .search-link,
  #block-tvokids-navigation-6-grownup-triggers .search-link {
    display: none;
    text-decoration: none; }
    @media (min-width: 48em) {
      #block-tvokids-navigation-5-grownup-triggers .search-link,
      #block-tvokids-navigation-6-grownup-triggers .search-link {
        display: inline; } }
    #block-tvokids-navigation-5-grownup-triggers .search-link .search-icon,
    #block-tvokids-navigation-6-grownup-triggers .search-link .search-icon {
      width: 22px;
      height: 22px;
      display: none; }
      @media (min-width: 48em) {
        #block-tvokids-navigation-5-grownup-triggers .search-link .search-icon,
        #block-tvokids-navigation-6-grownup-triggers .search-link .search-icon {
          display: inline; } }
    #block-tvokids-navigation-5-grownup-triggers .search-link .search-icon-hover,
    #block-tvokids-navigation-6-grownup-triggers .search-link .search-icon-hover {
      display: none; }
    #block-tvokids-navigation-5-grownup-triggers .search-link:hover .search-icon-hover, #block-tvokids-navigation-5-grownup-triggers .search-link:focus .search-icon-hover,
    #block-tvokids-navigation-6-grownup-triggers .search-link:hover .search-icon-hover,
    #block-tvokids-navigation-6-grownup-triggers .search-link:focus .search-icon-hover {
      display: inline; }
    #block-tvokids-navigation-5-grownup-triggers .search-link:hover .search-icon-default, #block-tvokids-navigation-5-grownup-triggers .search-link:focus .search-icon-default,
    #block-tvokids-navigation-6-grownup-triggers .search-link:hover .search-icon-default,
    #block-tvokids-navigation-6-grownup-triggers .search-link:focus .search-icon-default {
      display: none; }
  #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger,
  #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer; }
    #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger .grownup-icon,
    #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger .grownup-icon {
      width: 37px;
      height: 37px; }
      @media (min-width: 48em) {
        #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger .grownup-icon,
        #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger .grownup-icon {
          display: none; } }
    #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger span,
    #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger span {
      display: none;
      position: relative;
      top: -5px;
      margin-left: 3px;
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: bold; }
      @media (min-width: 48em) {
        #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger span,
        #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger span {
          display: inline; }
          #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger span:hover, #block-tvokids-navigation-5-grownup-triggers .grownup-menu-trigger span:focus,
          #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger span:hover,
          #block-tvokids-navigation-6-grownup-triggers .grownup-menu-trigger span:focus {
            text-decoration: underline; } }
  #block-tvokids-navigation-5-grownup-triggers .grownup-accessibility-text,
  #block-tvokids-navigation-6-grownup-triggers .grownup-accessibility-text {
    display: inline-block;
    text-indent: -9999px;
    height: 0px;
    width: 0px; }
  #block-tvokids-navigation-5-grownup-triggers .grownup-divider,
  #block-tvokids-navigation-6-grownup-triggers .grownup-divider {
    display: none;
    border-left: 1px solid black;
    width: 1px;
    height: 20px;
    margin: 0px 3px; }
    @media (min-width: 48em) {
      #block-tvokids-navigation-5-grownup-triggers .grownup-divider,
      #block-tvokids-navigation-6-grownup-triggers .grownup-divider {
        display: inline-block; } }

/**
 * @file
 * Styling for main menu blocks.
 */
#block-menu-5-and-under,
#block-menu-6-and-over {
  display: inline-block;
  float: left; }
  @media (min-width: 48em) {
    #block-menu-5-and-under,
    #block-menu-6-and-over {
      display: block;
      text-align: left;
      float: none; } }
  #block-menu-5-and-under button.mobile-menu-button,
  #block-menu-6-and-over button.mobile-menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    margin: 10px;
    background-color: #FFF; }
    @media (min-width: 48em) {
      #block-menu-5-and-under button.mobile-menu-button,
      #block-menu-6-and-over button.mobile-menu-button {
        display: none; } }
    #block-menu-5-and-under button.mobile-menu-button .menu-icon-open,
    #block-menu-5-and-under button.mobile-menu-button .menu-icon-close,
    #block-menu-6-and-over button.mobile-menu-button .menu-icon-open,
    #block-menu-6-and-over button.mobile-menu-button .menu-icon-close {
      height: 37px;
      width: 37px;
      display: inline-block; }
    #block-menu-5-and-under button.mobile-menu-button .menu-icon-close,
    #block-menu-6-and-over button.mobile-menu-button .menu-icon-close {
      display: none; }
  #block-menu-5-and-under button.opened .menu-icon-open,
  #block-menu-6-and-over button.opened .menu-icon-open {
    display: none; }
  #block-menu-5-and-under button.opened .menu-icon-close,
  #block-menu-6-and-over button.opened .menu-icon-close {
    display: inline-block; }
  @media (max-width: 47.9375em) {
    #block-menu-5-and-under ul.menu,
    #block-menu-6-and-over ul.menu {
      display: none;
      width: 100%;
      height: 100%;
      position: fixed;
      overflow-y: scroll;
      z-index: 1;
      background: #FFF;
      border-bottom: 1px solid #E0E0E0; } }
  #block-menu-5-and-under ul.menu.expanded,
  #block-menu-6-and-over ul.menu.expanded {
    display: block; }
  #block-menu-5-and-under ul.menu li,
  #block-menu-6-and-over ul.menu li {
    margin: 0;
    padding: 0; }
    #block-menu-5-and-under ul.menu li.active-trail a,
    #block-menu-6-and-over ul.menu li.active-trail a {
      color: #FFF;
      background-color: #009FD4; }
    @media (min-width: 48em) {
      #block-menu-5-and-under ul.menu li,
      #block-menu-6-and-over ul.menu li {
        display: inline-block; }
        #block-menu-5-and-under ul.menu li.active-trail a,
        #block-menu-6-and-over ul.menu li.active-trail a {
          border: 2px solid #009FD4;
          border-radius: 8px; }
          #block-menu-5-and-under ul.menu li.active-trail a:hover, #block-menu-5-and-under ul.menu li.active-trail a:focus,
          #block-menu-6-and-over ul.menu li.active-trail a:hover,
          #block-menu-6-and-over ul.menu li.active-trail a:focus {
            background-color: #009FD4;
            color: #FFF; } }
    @media (max-width: 47.9375em) {
      #block-menu-5-and-under ul.menu li.first,
      #block-menu-6-and-over ul.menu li.first {
        border-top: 1px solid #E0E0E0; } }
    #block-menu-5-and-under ul.menu li a,
    #block-menu-6-and-over ul.menu li a {
      font-size: 28px;
      font-size: 1.75rem;
      text-decoration: none;
      padding: 18px 0px 18px 30%;
      display: block;
      color: #009FD4; }
      @media (min-width: 29em) and (max-width: 37.9375em) {
        #block-menu-5-and-under ul.menu li a,
        #block-menu-6-and-over ul.menu li a {
          padding-left: 34%; } }
      @media (min-width: 38em) {
        #block-menu-5-and-under ul.menu li a,
        #block-menu-6-and-over ul.menu li a {
          padding-left: 37%; } }
      @media (min-width: 48em) {
        #block-menu-5-and-under ul.menu li a,
        #block-menu-6-and-over ul.menu li a {
          font-size: 18px;
          font-size: 1.125rem;
          padding: 0 7px;
          border: 2px solid transparent; } }
      @media (min-width: 64em) {
        #block-menu-5-and-under ul.menu li a,
        #block-menu-6-and-over ul.menu li a {
          padding: 7px; } }
      @media (min-width: 74.25em) {
        #block-menu-5-and-under ul.menu li a,
        #block-menu-6-and-over ul.menu li a {
          font-size: 24px;
          font-size: 1.5rem; } }
      #block-menu-5-and-under ul.menu li a:hover, #block-menu-5-and-under ul.menu li a:focus,
      #block-menu-6-and-over ul.menu li a:hover,
      #block-menu-6-and-over ul.menu li a:focus {
        outline: none;
        background-color: #009FD4;
        color: #FFF; }
        @media (min-width: 48em) {
          #block-menu-5-and-under ul.menu li a:hover, #block-menu-5-and-under ul.menu li a:focus,
          #block-menu-6-and-over ul.menu li a:hover,
          #block-menu-6-and-over ul.menu li a:focus {
            background-color: #FFF;
            color: #009FD4;
            border: 2px solid #009FD4;
            border-radius: 8px; } }
      #block-menu-5-and-under ul.menu li a:before,
      #block-menu-6-and-over ul.menu li a:before {
        font-family: 'tvokids-icons';
        display: inline-block;
        vertical-align: middle;
        line-height: initial;
        text-align: right; }
        @media (max-width: 47.9375em) {
          #block-menu-5-and-under ul.menu li a:before,
          #block-menu-6-and-over ul.menu li a:before {
            line-height: inherit;
            height: 28px;
            width: 28px;
            margin-right: 10px;
            font-size: 30px;
            font-size: 1.875rem; } }
        @media (min-width: 48em) and (max-width: 63.9375em) {
          #block-menu-5-and-under ul.menu li a:before,
          #block-menu-6-and-over ul.menu li a:before {
            display: block;
            margin: 0 auto;
            text-align: center;
            font-size: 32px;
            font-size: 2rem;
            height: 30px; } }
        @media (min-width: 64em) {
          #block-menu-5-and-under ul.menu li a:before,
          #block-menu-6-and-over ul.menu li a:before {
            line-height: inherit;
            margin-right: 5px;
            font-size: 36px;
            font-size: 2.25rem; } }
  #block-menu-5-and-under ul.menu a.search:before,
  #block-menu-6-and-over ul.menu a.search:before {
    content: "\e90c"; }
  #block-menu-5-and-under ul.menu a.videos:before,
  #block-menu-6-and-over ul.menu a.videos:before {
    content: "\e90e"; }
  #block-menu-5-and-under ul.menu a.games:before,
  #block-menu-6-and-over ul.menu a.games:before {
    content: "\e90a"; }
  #block-menu-5-and-under ul.menu a.apps:before,
  #block-menu-6-and-over ul.menu a.apps:before {
    content: "\e904"; }
  #block-menu-5-and-under ul.menu a.school-age:before,
  #block-menu-6-and-over ul.menu a.school-age:before {
    content: "\e902"; }
  #block-menu-5-and-under ul.menu a.preschool:before,
  #block-menu-6-and-over ul.menu a.preschool:before {
    content: "\e900"; }
  #block-menu-5-and-under ul.menu a.contact-us:before,
  #block-menu-6-and-over ul.menu a.contact-us:before {
    content: "\e906"; }
  #block-menu-5-and-under ul.menu a.contests:before,
  #block-menu-6-and-over ul.menu a.contests:before {
    content: "\e908"; }
  @media (min-width: 48em) {
    #block-menu-5-and-under ul.menu li.search,
    #block-menu-6-and-over ul.menu li.search {
      display: none !important; } }

html.menu-visible {
  overflow: hidden; }

.landing-title {
  display: none;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 5px 0 0 10px; }
  @media (min-width: 48em) {
    .landing-title {
      font-size: 24px;
      font-size: 1.5rem; } }
  @media (min-width: 48em) {
    .landing-title {
      margin: 0 0 0 20px; } }

@media (min-width: 48em) {
  .region-landing-title,
  .region-filter-bar {
    display: table-cell;
    vertical-align: middle; } }

@media (min-width: 48em) {
  .region-landing-title {
    width: 25%; } }

/**
 * @file
 * All styling to do with footer menu.
 */
#block-menu-5-and-under-footer,
#block-menu-6-and-over-footer {
  padding: 20px;
  text-align: right; }
  .node-type-page #block-menu-5-and-under-footer, .node-type-page
  #block-menu-6-and-over-footer {
    text-align: center; }
  #block-menu-5-and-under-footer .menu,
  #block-menu-6-and-over-footer .menu {
    font-size: 14px;
    font-size: 0.875rem; }
    #block-menu-5-and-under-footer .menu li,
    #block-menu-6-and-over-footer .menu li {
      display: inline-block;
      margin-left: 20px;
      margin-bottom: 0; }
      #block-menu-5-and-under-footer .menu li.first,
      #block-menu-6-and-over-footer .menu li.first {
        margin-left: 0; }
      #block-menu-5-and-under-footer .menu li a,
      #block-menu-6-and-over-footer .menu li a {
        text-decoration: none; }
        #block-menu-5-and-under-footer .menu li a:hover,
        #block-menu-6-and-over-footer .menu li a:hover {
          border-bottom: 1px solid #000; }
  @media (max-width: 37.9375em) {
    #block-menu-5-and-under-footer,
    #block-menu-6-and-over-footer {
      text-align: center; } }

/* components/_brand.scss */
#logo {
  display: block; }
  #logo a {
    display: block;
    line-height: 0; }

/* components/_funnel-page.scss */
/* components/_search.scss */
/* components/search/_search-form.scss */
body.page-search .section-content {
  min-height: 76vh; }
  @media (min-width: 48em) {
    body.page-search .section-content {
      min-height: 0; } }

body.page-search h1.title {
  margin: 0;
  padding: 0; }

body.page-search .search-form {
  margin-top: 30px; }
  @media (min-width: 48em) {
    body.page-search .search-form {
      margin-top: 10px; } }
  body.page-search .search-form input {
    max-width: 100%; }
  body.page-search .search-form input[name="search_keys"] {
    text-align: center;
    font-family: "SuisseIntl", Helvetica, sans-serif;
    width: 100%;
    padding: 0 27px 0 10px;
    background-position: right 5px center; }
    @media (min-width: 48em) {
      body.page-search .search-form input[name="search_keys"] {
        text-align: left;
        width: 79%;
        display: inline-block; } }
    @media (min-width: 64em) {
      body.page-search .search-form input[name="search_keys"] {
        width: 81%; } }
  body.page-search .search-form input[type="submit"] {
    margin-top: 20px;
    width: 100%;
    border: 2px solid #E01382;
    background-color: #E01382;
    color: #FFF;
    text-align: center;
    padding: 7.5px 0;
    border-radius: 5px;
    font-size: 18px;
    font-size: 1.125rem;
    transition-duration: 0.3s; }
    body.page-search .search-form input[type="submit"]:hover, body.page-search .search-form input[type="submit"]:focus {
      color: #E01382;
      background-color: #FFF; }
    @media (min-width: 48em) {
      body.page-search .search-form input[type="submit"] {
        display: inline-block;
        width: 15%;
        margin-left: 25px;
        padding: 4px 10px; } }
  body.page-search .search-form #autocomplete {
    z-index: 1;
    background-color: #FFF; }
    body.page-search .search-form #autocomplete ul {
      background-color: #FFF; }
      body.page-search .search-form #autocomplete ul li {
        padding: 5px;
        margin: 0; }
        body.page-search .search-form #autocomplete ul li:first-child {
          padding-top: 0 !important; }
        body.page-search .search-form #autocomplete ul li:last-child {
          padding-bottom: 0 !important; }

/* components/search/_search-results.scss */
body.page-search .search-spelling-suggestion {
  font-family: "tvokids_bold", Helvetica, sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  float: none;
  display: block; }
  body.page-search .search-spelling-suggestion a {
    display: inline !important; }

body.page-search .search-results-control-bar {
  background-color: transparent;
  border: none;
  padding: 0; }
  @media (min-width: 48em) {
    body.page-search .search-results-control-bar {
      margin-top: 35px;
      margin-bottom: 35px; } }
  body.page-search .search-results-control-bar .search-stats {
    font-family: "tvokids_bold", Helvetica, sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    float: none;
    display: block; }
  body.page-search .search-results-control-bar .search-filter-bar {
    margin-top: 10px; }
    @media (min-width: 48em) {
      body.page-search .search-results-control-bar .search-filter-bar {
        margin-top: 15px; } }
    body.page-search .search-results-control-bar .search-filter-bar ul li:first-child {
      margin-left: 0; }
      body.page-search .search-results-control-bar .search-filter-bar ul li:first-child a {
        margin-left: 0; }
    body.page-search .search-results-control-bar .search-filter-bar ul li.active a {
      color: #FFF;
      background-color: #007298; }
    body.page-search .search-results-control-bar .search-filter-bar ul li a {
      border: #007298 2px solid;
      font-family: "tvokids_bold", Helvetica, sans-serif;
      background-color: #FFF;
      color: #007298;
      font-size: 18px;
      font-size: 1.125rem; }
      body.page-search .search-results-control-bar .search-filter-bar ul li a:hover, body.page-search .search-results-control-bar .search-filter-bar ul li a:focus {
        color: #FFF;
        background-color: #007298;
        text-decoration: none; }

@media (min-width: 48em) {
  body.page-search .search-results-control-bar-bottom {
    margin-bottom: 20px; } }

body.page-search .search-results {
  padding-left: 0; }
  body.page-search .search-results li.search-result {
    list-style: none;
    margin-bottom: 30px; }
    body.page-search .search-results li.search-result .tvokids-tile {
      opacity: 1;
      padding-left: 0;
      padding-right: 0; }
      @media (min-width: 48em) {
        body.page-search .search-results li.search-result .tvokids-tile {
          max-width: 768px;
          width: 48%;
          display: inline-block;
          padding: 0; } }
      body.page-search .search-results li.search-result .tvokids-tile a.node {
        overflow: visible; }
      body.page-search .search-results li.search-result .tvokids-tile .tile-title {
        font-family: "tvokids_bold", Helvetica, sans-serif;
        color: #000;
        font-size: 18px;
        font-size: 1.125rem; }
    body.page-search .search-results li.search-result .small-video-tile .content {
      height: auto;
      padding: 0; }
      body.page-search .search-results li.search-result .small-video-tile .content img {
        margin: auto; }
    body.page-search .search-results li.search-result .small-video-tile.yt-video-tile .content img {
      height: auto;
      margin-top: -10%;
      margin-bottom: -10%;
      transform: scale(1.03); }
      @media (min-width: 38em) {
        body.page-search .search-results li.search-result .small-video-tile.yt-video-tile .content img {
          transform: scale(1.07); } }
      @media (min-width: 48em) {
        body.page-search .search-results li.search-result .small-video-tile.yt-video-tile .content img {
          transform: scale(1.05);
          margin-top: -37px;
          margin-bottom: -37px; } }
      @media (min-width: 64em) {
        body.page-search .search-results li.search-result .small-video-tile.yt-video-tile .content img {
          margin-top: -32px;
          margin-bottom: -32px; } }
    @media (min-width: 48em) {
      body.page-search .search-results li.search-result .search-snippet-info {
        width: 48%;
        margin-left: 20px;
        display: inline-block;
        vertical-align: top; } }
    body.page-search .search-results li.search-result .search-snippet-info h3.title {
      display: inline; }
      body.page-search .search-results li.search-result .search-snippet-info h3.title a {
        color: #E01382; }
    body.page-search .search-results li.search-result .search-snippet-info .search-age-group {
      font-family: "SuisseIntl", Helvetica, sans-serif;
      font-weight: bold; }
      body.page-search .search-results li.search-result .search-snippet-info .search-age-group .preschool {
        color: #B04416; }
      body.page-search .search-results li.search-result .search-snippet-info .search-age-group .school-age {
        color: #007298; }
    body.page-search .search-results li.search-result .search-snippet-info .search-snippet em {
      font-weight: 900;
      font-style: normal; }
  @media (min-width: 48em) {
    body.page-search .search-results li.search-result-no-tile .search-snippet-info {
      width: auto;
      margin-left: 0; } }

/* components/search/_block-search.scss */
.block-search {
  display: inline-block;
  text-align: center; }
  @media (min-width: 38em) {
    .block-search {
      width: 48.93617%;
      clear: right;
      float: right;
      margin-right: 0;
      text-align: right; } }
  @media (min-width: 56em) {
    .block-search {
      width: 31.91489%;
      clear: right;
      float: right;
      margin-right: 0; } }
  .block-search h2 {
    font: 0/0 serif;
    text-shadow: none;
    color: transparent; }

/* components/_webform.scss */
.node-webform label {
  font-size: 0.8em;
  text-transform: uppercase;
  margin-bottom: 0.4096em; }

.node-webform .form-text,
.node-webform .form-textarea {
  appearance: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background: #E0E0E0;
  padding: 0.512em; }
  .node-webform .form-text:focus,
  .node-webform .form-textarea:focus {
    outline: 0; }

.node-webform .form-text,
.node-webform .form-textarea-wrapper,
.node-webform .form-select {
  width: 100%; }
  @media (min-width: 56em) {
    .node-webform .form-text,
    .node-webform .form-textarea-wrapper,
    .node-webform .form-select {
      width: 50%; } }

.node-webform .form-select {
  appearance: none;
  border: none;
  border-radius: 0;
  width: 100%; }
  .node-webform .form-select:focus {
    outline: 0; }

.node-webform .button-primary {
  border: none;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 0.8em;
  font-weight: 900;
  overflow: hidden;
  padding: 0.26214em 1em;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color .3s ease-out, border-color .3s ease-out;
  margin-right: 1em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  background-color: #212121;
  border: 1px solid #212121;
  color: white; }
  @media (min-width: 38em) {
    .node-webform .button-primary {
      border-radius: 5px;
      padding: 0.8em 1.5625em; } }
  .node-webform .button-primary:hover, .node-webform .button-primary:focus {
    color: #212121;
    background-color: #E0E0E0;
    border: 1px solid #E0E0E0; }

form input[type="text"],
form textarea {
  border-style: solid;
  border-width: 1px;
  border-color: #666666;
  border-radius: 2px;
  background-color: #FFF; }

form input[type="text"] {
  height: 35px;
  box-shadow: inset 0px 2px 7px 0px rgba(0, 0, 0, 0.38); }

form textarea {
  box-shadow: inset 0px 2px 10px 0px rgba(0, 0, 0, 0.57); }

form .label-element-invisible label {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px; }

/* components/_content-well.scss */
/**
 * Height in pixels for the header.
 *
 * This includes the character banner and filter bar (if present).
 */
.tvokids-content-well {
  min-height: 100%;
  position: relative;
  display: block;
  min-height: 385px; }
  @media (max-width: 63.9375em) {
    .tvokids-content-well {
      margin: 1em 0; }
      .tvokids-content-well:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) and (max-height: 74.9375em) {
    .tvokids-content-well {
      overflow: hidden;
      z-index: 3; }
      body.has-overlay .tvokids-content-well {
        position: static; } }
  .tvokids-content-well .flickity-prev-next-button svg {
    display: none; }
  .tvokids-content-well .flickity-prev-next-button,
  .tvokids-content-well .flickity-prev-next-button {
    display: none;
    position: absolute;
    border: 3px solid #009FD4;
    box-shadow: 4px 7px 20px 1px rgba(0, 0, 0, 0.35);
    background: #fff;
    background-repeat: no-repeat;
    background-size: 1.125rem;
    border-radius: 5rem;
    width: 6.25rem;
    height: 6.25rem; }
    .tvokids-content-well .flickity-prev-next-button:disabled,
    .tvokids-content-well .flickity-prev-next-button:disabled {
      display: none; }
    .tvokids-content-well .flickity-prev-next-button:active,
    .tvokids-content-well .flickity-prev-next-button:active {
      opacity: 1; }
    @media (min-width: 64em) {
      .tvokids-content-well .flickity-prev-next-button,
      .tvokids-content-well .flickity-prev-next-button {
        display: block; } }
    @media (min-width: 64em) and (max-height: 47.9375em) {
      .tvokids-content-well .flickity-prev-next-button,
      .tvokids-content-well .flickity-prev-next-button {
        width: 5rem;
        height: 5rem; } }
  .tvokids-content-well .flickity-prev-next-button.previous {
    left: -3.125rem;
    background-image: url("../../img/general_icons/character-banner-arrow-left.svg");
    background-position: 80% 49%;
    transition: left 0.2s; }
    .tvokids-content-well .flickity-prev-next-button.previous:hover {
      left: -2.5rem; }
    @media (min-width: 64em) and (max-height: 47.9375em) {
      .tvokids-content-well .flickity-prev-next-button.previous {
        left: -2.5rem; }
        .tvokids-content-well .flickity-prev-next-button.previous:hover {
          left: -2rem; } }
  .tvokids-content-well .flickity-prev-next-button.next {
    right: -3.125rem;
    background-image: url("../../img/general_icons/character-banner-arrow-right.svg");
    background-position: 20% 49%;
    transition: right 0.2s; }
    .tvokids-content-well .flickity-prev-next-button.next:hover {
      right: -2.5rem; }
    @media (min-width: 64em) and (max-height: 47.9375em) {
      .tvokids-content-well .flickity-prev-next-button.next {
        right: -2.5rem; }
        .tvokids-content-well .flickity-prev-next-button.next:hover {
          right: -2rem; } }

@media (min-width: 48em) {
  .tile-group .tile-small:nth-of-type(1) {
    top: 0;
    position: absolute; }
  .tile-group .tile-small:nth-of-type(2) {
    bottom: 0;
    position: absolute; }
  .tile-group-inner {
    position: relative; } }

@media (min-width: 64em) {
  body.no-brand-hero-box .tvokids-content-well .flickity-slider {
    margin-left: 20px; } }

@media (min-width: 64em) and (max-height: 74.9375em) {
  .tile-group, .fake-tile {
    padding-top: 1.3em; } }

@media (max-width: 47.9375em) {
  .tile-group, .fake-tile {
    width: 100%; } }

@media (min-width: 48em) and (max-width: 63.9375em) {
  .tile-group, .fake-tile {
    width: 50%;
    float: left; }
    .tile-group:after, .fake-tile:after {
      content: "";
      display: table;
      clear: both; } }

@media (min-width: 64em) and (min-height: 75em) {
  .tvokids-content-well {
    max-width: 1400px;
    margin: 0 auto; } }

@media (min-width: 88em) and (min-height: 75em) {
  .tvokids-content-well {
    max-width: 2100px; } }

@media (min-width: 125em) and (min-height: 75em) {
  .tvokids-content-well {
    max-width: 2800px; } }

@media (min-width: 64em) and (min-height: 75em) {
  .tile-group, .fake-tile {
    width: 50%;
    float: left; }
    .tile-group:after, .fake-tile:after {
      content: "";
      display: table;
      clear: both; } }

@media (min-width: 88em) and (min-height: 75em) {
  .tile-group, .fake-tile {
    width: 33%; } }

@media (min-width: 125em) and (min-height: 75em) {
  .tile-group, .fake-tile {
    width: 25%; } }

/* components/_content-tiles.scss */
.tvokids-tile .node {
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: transform .15s ease; }
  .tvokids-tile .node:not(.no-link):hover, .tvokids-tile .node:not(.no-link):focus {
    transform: scale(1.05); }

.tile-hero {
  height: 100%; }

.fake-tile .tvokids-tile img {
  height: auto;
  position: static; }

.tvokids-tile .node, .tile-hero {
  position: relative;
  border-radius: 8px;
  background: white;
  z-index: 1; }

.tvokids-tile, .tile-hero-wrapper {
  padding: 2%; }
  html.js .tvokids-tile, html.js .tile-hero-wrapper {
    opacity: 0;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease; }
    html.js .tvokids-tile.tile-visible, html.js .tile-hero-wrapper.tile-visible {
      opacity: 1; }

.tvokids-tile {
  width: 100%;
  transform: translateZ(0); }
  .tvokids-tile a, .tvokids-tile img {
    display: block; }
  .tvokids-tile .content {
    border-radius: 8px; }
  .tvokids-tile img {
    border-radius: 8px; }
  .tvokids-tile .field-name-field-promo-badge {
    position: absolute;
    z-index: 1;
    top: -14px;
    left: -14px; }
    @media (min-width: 48em) {
      .tvokids-tile .field-name-field-promo-badge {
        top: -22px;
        left: -11px; } }
  @media (min-width: 48em) and (max-height: 47.9375em) {
    .tvokids-tile .field-name-field-promo-badge {
      top: -22px;
      left: -8px; } }
    .tvokids-tile .field-name-field-promo-badge img {
      width: 80px;
      height: 80px; }
      @media (min-width: 48em) {
        .tvokids-tile .field-name-field-promo-badge img {
          width: 90px;
          height: 90px; } }
  @media (min-width: 48em) and (max-height: 47.9375em) {
    .tvokids-tile .field-name-field-promo-badge img {
      width: 70px;
      height: 70px; } }
  .tvokids-tile [data-contest-status="closed"] .content {
    background: black; }
  .tvokids-tile [data-contest-status="closed"] img {
    border-radius: 8px;
    opacity: 0.25; }
  .tvokids-tile [data-contest-status="closed"] .content:after {
    content: url("../../img/general_icons/closed-contest-badge.svg");
    position: absolute;
    z-index: 1;
    top: 0px;
    width: 50%; }

.small-video-tile img.carousel-cell-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: auto; }

.small-video-tile .content {
  background-color: #000000;
  height: 0;
  overflow: hidden;
  padding: 56.21% 0 0; }

.small-video-tile.yt-video-tile .content {
  position: relative; }
  .small-video-tile.yt-video-tile .content img {
    max-height: none;
    height: 135%;
    outline: 2px solid transparent; }

.tile-bubble {
  display: table-cell;
  width: 90px; }
  .tile-bubble img {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border: 2px solid white;
    border-radius: 100%;
    box-shadow: 4px 7px 14px 1px rgba(0, 0, 0, 0.35);
    z-index: 1; }
    @media (min-width: 48em) {
      .tile-bubble img {
        width: 100px;
        height: 100px; } }
  @media (min-width: 64em) and (max-height: 47.9375em) {
    .tile-bubble {
      width: 70px; }
      .tile-bubble img {
        width: 80px;
        height: 80px; } }

.tile-on-now {
  display: block;
  color: #E01382;
  white-space: normal; }
  @media (max-height: 47.9375em) {
    .tile-on-now {
      font-size: 14px;
      font-size: 0.875rem; } }

.tile-overlay {
  position: absolute;
  bottom: -1px;
  padding: 13px 10px;
  width: 100.25%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  border-radius: 0 0 8px 8px;
  -webkit-backface-visibility: hidden; }

.tile-title {
  display: block;
  max-width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-size: 1.125rem; }
  @media (max-height: 47.9375em) {
    .tile-title {
      font-size: 16px;
      font-size: 1rem; } }

.tile-description {
  display: inline;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 125%; }
  @media (max-height: 47.9375em) {
    .tile-description {
      font-size: 14px;
      font-size: 0.875rem; } }

.tvokids-tile .tile-icon:after {
  font-family: 'tvokids-icons';
  display: inline-block;
  color: #009FD4;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 30px;
  font-size: 1.875rem; }

.tvokids-tile[data-tile-type=video] .tile-icon:after,
.tvokids-tile[data-cta-type=video] .tile-icon:after {
  content: "\e90e"; }

.tvokids-tile[data-tile-type=manual_playlist] .tile-icon:after,
.tvokids-tile[data-cta-type=playlist] .tile-icon:after {
  content: "\e905"; }

.tvokids-tile[data-tile-type=game] .tile-icon:after,
.tvokids-tile[data-cta-type=game] .tile-icon:after {
  content: "\e90a"; }

.tvokids-tile[data-tile-type=app] .tile-icon:after,
.tvokids-tile[data-cta-type=app] .tile-icon:after {
  content: "\e904"; }

.tvokids-tile[data-cta-type=contact] .tile-icon:after {
  content: "\e906"; }

.tvokids-tile[data-cta-type=blog] .tile-icon:after,
.tvokids-tile[data-tile-type=blog] .tile-icon:after {
  content: "\e907"; }

.tvokids-tile[data-tile-type=contest_one_question] .tile-icon:after,
.tvokids-tile[data-tile-type=contest_push_two_button] .tile-icon:after,
.tvokids-tile[data-tile-type=contest_tell_us] .tile-icon:after,
.tvokids-tile[data-tile-type=contest_personality_quiz] .tile-icon:after,
.tvokids-tile[data-tile-type=contest_upload_image] .tile-icon:after,
.tvokids-tile[data-tile-type=contest_campaign] .tile-icon:after,
.tvokids-tile[data-cta-type=contest] .tile-icon:after {
  content: "\e908"; }

.tvokids-tile[data-tile-type=event] .tile-icon:after {
  content: "\e910"; }

.tvokids-tile[data-tile-type=gallery] .tile-icon:after {
  content: "\e913"; }

/* components/_hero-box.scss */
@media (max-width: 63.9375em) {
  .tile-hero-wrapper {
    height: 100%; } }

@media (min-width: 64em) {
  .tile-hero-wrapper {
    height: 100%; } }

@media (min-width: 64em) and (max-height: 74.9375em) {
  .tile-hero-wrapper {
    padding-left: 2em; } }

.tile-hero-wrapper .tile-title {
  position: relative;
  display: table-cell;
  padding: 13px 10px;
  height: 100px;
  width: initial;
  z-index: 0;
  vertical-align: top;
  border-radius: 8px;
  white-space: normal; }
  .tile-hero-wrapper .tile-title h1 {
    margin-bottom: 0;
    font-size: 18px;
    font-size: 1.125rem; }
    @media (min-width: 64em) and (max-height: 47.9375em) {
      .tile-hero-wrapper .tile-title h1 {
        font-size: 16px;
        font-size: 1rem; } }
    @media (min-width: 64em) and (max-height: 47.9375em) {
      .tile-hero-wrapper .tile-title h1 {
        font-size: 14px;
        font-size: 0.875rem; } }

.tile-hero-wrapper .field-name-field-brand-page-description {
  padding: 13px 10px;
  min-height: 119px;
  font-family: 'SuisseIntl';
  line-height: 125%;
  border-radius: 0 0 8px 8px; }
  @media (min-width: 64em) and (max-height: 47.9375em) {
    .tile-hero-wrapper .field-name-field-brand-page-description {
      font-size: 14px;
      font-size: 0.875rem; } }

.tile-hero-wrapper .field-name-field-link a {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 10px 13px 10px;
  color: #E01382;
  text-decoration: none; }
  .tile-hero-wrapper .field-name-field-link a:hover, .tile-hero-wrapper .field-name-field-link a:focus {
    text-decoration: underline; }

@media (min-width: 48em) {
  .region-filter-bar {
    width: 100%; } }

.filter-bar ul {
  margin: 0;
  white-space: nowrap;
  padding: 10px 0; }
  @media (min-width: 48em) {
    .filter-bar ul {
      padding: 0 10px 0 0; } }

.filter-bar li {
  display: inline-block; }
  .filter-bar li:first-child {
    margin-left: 10px; }
  .filter-bar li:last-child {
    margin-right: 10px; }
  .filter-bar li.active button {
    color: #007298;
    background: white; }

.filter-bar button, .filter-bar a {
  margin: 0 5px;
  display: inline-block;
  padding: 5px 10px;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 8px;
  background: #007298;
  transition: color .15s ease, background .15s ease;
  font-size: 16px;
  font-size: 1rem; }
  @media (min-width: 48em) {
    .filter-bar button, .filter-bar a {
      font-size: 18px;
      font-size: 1.125rem; } }
  .filter-bar button:hover, .filter-bar button:focus, .filter-bar a:hover, .filter-bar a:focus {
    color: #007298;
    background: white; }
  .filter-bar button:disabled, .filter-bar a:disabled {
    color: #3D3D3D;
    border-color: #3D3D3D;
    background-color: transparent; }

.filter-container {
  display: table;
  width: 100%;
  color: white; }
  .filter-container:after {
    content: "";
    display: table;
    clear: both; }
  body.tvokids-5-and-under .filter-container {
    background: #E76E3C; }
  body.tvokids-6-and-over .filter-container {
    background: #009FD4; }

body.tvokids-5-and-under .filter-bar ul li.active button {
  color: #B04416;
  background-color: white; }

body.tvokids-5-and-under .filter-bar ul li button {
  background-color: #B04416; }
  body.tvokids-5-and-under .filter-bar ul li button:hover, body.tvokids-5-and-under .filter-bar ul li button:focus {
    color: #B04416;
    background-color: white; }
  body.tvokids-5-and-under .filter-bar ul li button:disabled {
    background-color: transparent;
    color: #3D3D3D; }

/**
 * @file
 *   Styling for the external link modal window.
 */
.elp-modal-window {
  top: 5%;
  left: 10%;
  width: 80%;
  height: auto;
  padding: 20px 20px 40px 20px; }
  @media (min-height: 29em) {
    .elp-modal-window {
      top: 25%; } }
  @media (min-width: 48em) {
    .elp-modal-window {
      width: 500px;
      left: 50%;
      margin-left: -250px; } }
  .elp-modal-window #elp-close {
    margin: 0;
    padding: 0;
    width: 18px;
    height: 20px;
    border: none;
    background-color: transparent;
    float: right;
    transition: color 0.3s ease-out;
    color: #000; }
    .elp-modal-window #elp-close:before {
      font-family: 'tvokids-icons';
      content: "\e90f"; }
    .elp-modal-window #elp-close:hover, .elp-modal-window #elp-close:focus {
      color: #009FD4; }
    .elp-modal-window #elp-close span {
      display: block;
      text-indent: -9999px;
      height: 0;
      width: 0; }
  .elp-modal-window #elp-title {
    font-size: 24px;
    font-size: 1.5rem;
    color: #000;
    line-height: normal;
    text-align: center;
    margin-top: 20px;
    border-bottom: 1px solid #E01382;
    padding-bottom: 13px;
    font-family: "tvokids_bold", Helvetica, sans-serif; }
    @media (min-height: 29em) {
      .elp-modal-window #elp-title {
        margin-top: 40px; } }
  .elp-modal-window .elp-body {
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
    font-family: "SuisseIntl", Helvetica, sans-serif;
    color: #000;
    font-size: 16px;
    font-size: 1rem; }
    @media (min-height: 29em) {
      .elp-modal-window .elp-body {
        margin-bottom: 35px; } }
  .elp-modal-window .elp-button-container {
    width: 155px;
    margin: auto; }
  .elp-modal-window .elp-button {
    text-decoration: none;
    border: none;
    background: transparent;
    font-size: 22px;
    font-size: 1.375rem;
    padding: 5px 17px;
    border-radius: 5px;
    color: #FFF;
    transition: background-color 0.3s ease-out; }
  .elp-modal-window .elp-yes {
    background-color: #00793D;
    margin-right: 15px; }
    .elp-modal-window .elp-yes:hover, .elp-modal-window .elp-yes:focus {
      background-color: #026835; }
  .elp-modal-window .elp-no {
    background-color: #E7133D; }
    .elp-modal-window .elp-no:hover, .elp-modal-window .elp-no:focus {
      background-color: #B21333; }

.page-page-not-found {
  background: #FFF !important; }
  .page-page-not-found .block-system-main .content {
    height: 100vh;
    max-height: 846px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column; }
  .page-page-not-found .not-found-header-wrapper {
    flex: 1 1 0%;
    text-align: center; }
    .page-page-not-found .not-found-header-wrapper .not-found-logo-wrapper {
      width: 70%;
      max-width: 70%;
      margin: 50px auto 20px; }
      @media (min-width: 48em) {
        .page-page-not-found .not-found-header-wrapper .not-found-logo-wrapper {
          max-width: 201px; } }
      @media (max-height: 44.375em) {
        .page-page-not-found .not-found-header-wrapper .not-found-logo-wrapper {
          margin-top: 20px; } }
    .page-page-not-found .not-found-header-wrapper h1 {
      font-family: "tvokids_bold", Helvetica, sans-serif;
      text-align: center;
      font-size: 24px;
      font-size: 1.5rem; }
  .page-page-not-found .not-found-img-wrapper {
    flex: 2 1 0%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center; }
  .page-page-not-found .not-found-button-container {
    flex: 1 1 0%;
    text-align: center;
    margin-top: 30px; }
    @media (min-width: 48em) {
      .page-page-not-found .not-found-button-container {
        width: 510px;
        margin-left: auto;
        margin-right: auto; } }
    @media (max-height: 44.375em) {
      .page-page-not-found .not-found-button-container {
        margin-top: 0; } }
    .page-page-not-found .not-found-button-container a {
      font-size: 24px;
      font-size: 1.5rem;
      display: block;
      text-decoration: none;
      text-align: center;
      color: #FFF;
      padding: 9px;
      border: 3px solid;
      margin: 0 auto 15px auto;
      border-radius: 5px;
      width: 65%;
      transition: color 300ms ease; }
      @media (min-width: 48em) {
        .page-page-not-found .not-found-button-container a {
          font-size: 20px;
          font-size: 1.25rem;
          width: 195px;
          display: inline-block;
          padding: 12px 0; } }
    .page-page-not-found .not-found-button-container a.not-found-5-and-under {
      background-color: #E76E3C;
      border: 3px solid #E76E3C;
      transition: background-color 300ms ease; }
      .page-page-not-found .not-found-button-container a.not-found-5-and-under:hover, .page-page-not-found .not-found-button-container a.not-found-5-and-under:focus {
        background-color: #FFF;
        color: #E76E3C; }
      @media (min-width: 48em) {
        .page-page-not-found .not-found-button-container a.not-found-5-and-under {
          margin-right: 115px; } }
    .page-page-not-found .not-found-button-container a.not-found-6-and-over {
      background-color: #009FD4;
      border: 3px solid #009FD4;
      transition: background-color 300ms ease; }
      .page-page-not-found .not-found-button-container a.not-found-6-and-over:hover, .page-page-not-found .not-found-button-container a.not-found-6-and-over:focus {
        background-color: #FFF;
        color: #009FD4; }

/**
 * @file
 *   Styling for the browser update warning box.
 */
.browser-warning {
  background-color: #C1D42F;
  color: #212121;
  padding: 0.5em 1em 0;
  text-align: center;
  width: 100%;
  position: fixed;
  z-index: 6; }
  .page-splash-homepage .browser-warning {
    position: relative; }
  .browser-warning .browser-warning-msg {
    display: inline-block;
    position: relative;
    margin-left: 67px;
    margin-right: 18px; }
    .browser-warning .browser-warning-msg:before {
      font-family: "tvokids-icons";
      content: "\e90b";
      position: absolute;
      left: -1.4em;
      top: 50%;
      margin-top: -28px;
      width: 37px;
      height: 37px;
      font-size: 37px; }
  .browser-warning.browser-warning-closed {
    padding: 0;
    height: 2px;
    margin-bottom: 35px; }
    .browser-warning.browser-warning-closed * {
      display: none; }
    .browser-warning.browser-warning-closed .browser-warning-tab {
      display: block;
      visibility: visible; }
    .browser-warning.browser-warning-closed:after {
      content: '';
      position: absolute;
      bottom: -35px;
      width: 100%;
      height: 35px;
      display: block;
      background-color: #FFF;
      z-index: 1; }
  .browser-warning .browser-warning-tab {
    visibility: hidden;
    position: absolute;
    bottom: -35px;
    left: 50%;
    margin-left: -35px;
    background-color: #C1D42F;
    border: none;
    z-index: 2;
    height: 35px;
    width: 70px;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px; }
    .browser-warning .browser-warning-tab:before {
      font-family: "tvokids-icons";
      content: "\e90b"; }
    .browser-warning .browser-warning-tab span {
      display: block;
      text-indent: -9999px;
      height: 0;
      width: 0; }
  .browser-warning .browser-warning-close {
    margin: 0;
    padding: 0;
    width: 18px;
    height: 20px;
    border: none;
    background-color: transparent;
    position: absolute;
    right: 1em; }
    .browser-warning .browser-warning-close span {
      display: block;
      text-indent: -9999px;
      height: 0;
      width: 0; }
    .browser-warning .browser-warning-close:before {
      font-family: 'tvokids-icons';
      content: "\e90f"; }

body.page-schedule h1.title {
  margin: 0;
  padding: 0 0 10px 0; }

.block-tvokids-schedule-blocks-on-right-now {
  margin-bottom: 20px; }

.tvokids-on-right-now {
  margin-top: 40px;
  border: 2px solid #7b2881;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px; }
  @media (min-width: 48em) {
    .tvokids-on-right-now {
      display: flex; } }
  .tvokids-on-right-now .time-on-rigt-now {
    border: 1px solid #7b2881;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 20px;
    background-color: #7b2881;
    color: #FFF; }
    .tvokids-on-right-now .time-on-rigt-now h2, .tvokids-on-right-now .time-on-rigt-now p {
      display: inline;
      vertical-align: top;
      line-height: 28px; }
    .tvokids-on-right-now .time-on-rigt-now p {
      font-family: "tvokids_bold", Helvetica, sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: 1.125rem; }
      @media (min-width: 48em) {
        .tvokids-on-right-now .time-on-rigt-now p {
          font-size: 22px;
          font-size: 1.375rem; } }
    .tvokids-on-right-now .time-on-rigt-now p.p-on-right-now {
      float: left; }
      @media (min-width: 48em) {
        .tvokids-on-right-now .time-on-rigt-now p.p-on-right-now {
          float: none; } }
    .tvokids-on-right-now .time-on-rigt-now .p-airing-time {
      float: right; }
      @media (min-width: 48em) {
        .tvokids-on-right-now .time-on-rigt-now .p-airing-time {
          float: none; } }
    @media (min-width: 48em) {
      .tvokids-on-right-now .time-on-rigt-now {
        width: 33.33%; }
        .tvokids-on-right-now .time-on-rigt-now p {
          float: none;
          display: block; } }

.show-info-on-rigt-now {
  display: inline-block;
  padding: 20px; }
  .show-info-on-rigt-now .title {
    font-family: "tvokids_bold", Helvetica, sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 900;
    color: #7b2881;
    margin-bottom: 10px; }
  .show-info-on-rigt-now .short_desc {
    font-size: 18px;
    font-size: 1.125rem; }
  @media (min-width: 48em) {
    .show-info-on-rigt-now {
      width: 66.67%; } }

#block-tvokids-schedule-blocks-day-picker .content ul {
  padding: 0;
  background-color: #fff;
  width: 100%;
  z-index: 1; }

#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li {
  width: 90px;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  float: left;
  list-style-type: none;
  border-bottom: 2px solid #7b2881;
  text-align: center; }
  @media (min-width: 48em) {
    #block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li {
      width: 14.28%; } }

#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker a {
  text-decoration: none; }

#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active {
  border: 2px solid #7b2881;
  border-bottom: 0;
  width: 90px;
  bottom: 10px;
  position: relative;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0; }
  @media (min-width: 48em) {
    #block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active {
      width: 14.28%; } }
  #block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active a {
    position: relative;
    top: 8px; }

#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active:before,
#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active:after {
  content: '';
  height: 10px;
  width: 5px;
  border: 2px solid #7b2881;
  position: absolute;
  bottom: -10px;
  border-top: 0; }

#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active:after {
  border-right: 0;
  -moz-border-radius: 0 0 0 10px;
  -webkit-border-radius: 0 0 0 10px;
  border-radius: 0 0 0 10px;
  right: -5px; }

#block-tvokids-schedule-blocks-day-picker .content .schedule-day-picker li.schedule-day-picker__day--active:before {
  border-left: 0;
  -moz-border-radius: 0 0 10px 0;
  -webkit-border-radius: 0 0 10px 0;
  border-radius: 0 0 10px 0;
  left: -5px; }

.schedule-day-picker__day__abbr {
  display: block; }

.view-tvokids-schedule {
  font-family: "tvokids_bold", Helvetica, sans-serif; }
  .view-tvokids-schedule .views-row {
    margin-bottom: 35px;
    display: flex; }
    .view-tvokids-schedule .views-row .views-field-field-airing-time {
      display: inline-block;
      width: 23%;
      vertical-align: top;
      border-right: 1px solid #007298;
      padding-right: 15px;
      margin-right: 15px; }
      .view-tvokids-schedule .views-row .views-field-field-airing-time .date-display-single, .view-tvokids-schedule .views-row .views-field-field-airing-time img {
        display: block; }
      .view-tvokids-schedule .views-row .views-field-field-airing-time .date-display-single {
        margin-top: 5px;
        text-align: center;
        margin-bottom: 15px;
        font-size: 22px;
        font-size: 1.375rem; }
      .view-tvokids-schedule .views-row .views-field-field-airing-time img {
        border-radius: 50px;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        margin: 25px auto 0 auto;
        overflow: hidden;
        max-height: 0;
        width: 80px;
        -webkit-transition: max-height 0.2s ease-in-out;
        -moz-transition: max-height 0.2s ease-in-out;
        transition: max-height 0.2s ease-in-out; }
      .view-tvokids-schedule .views-row .views-field-field-airing-time img.hide {
        max-height: 0; }
      .view-tvokids-schedule .views-row .views-field-field-airing-time img.show {
        max-height: 80px; }
    .view-tvokids-schedule .views-row .views-field-title {
      display: inline-block;
      width: 70%;
      vertical-align: top; }
      @media (min-width: 48em) {
        .view-tvokids-schedule .views-row .views-field-title {
          width: 74%; } }
      .view-tvokids-schedule .views-row .views-field-title .sched-series-title {
        font-size: 22px;
        font-size: 1.375rem; }
      .view-tvokids-schedule .views-row .views-field-title .sched-toggle-button {
        font-size: 18px;
        font-size: 1.125rem; }
        .view-tvokids-schedule .views-row .views-field-title .sched-toggle-button a {
          display: block;
          white-space: initial; }
          .view-tvokids-schedule .views-row .views-field-title .sched-toggle-button a:hover, .view-tvokids-schedule .views-row .views-field-title .sched-toggle-button a:focus {
            text-decoration: none;
            color: #009FD4; }
      .view-tvokids-schedule .views-row .views-field-title .sched-desc-wrapper {
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.2s ease-in-out;
        -moz-transition: max-height 0.2s ease-in-out;
        transition: max-height 0.2s ease-in-out; }
        .view-tvokids-schedule .views-row .views-field-title .sched-desc-wrapper.hide {
          max-height: 0; }
        .view-tvokids-schedule .views-row .views-field-title .sched-desc-wrapper.show {
          max-height: 300px; }
      .view-tvokids-schedule .views-row .views-field-title .sched-desc {
        font-family: "SuisseIntl", Helvetica, sans-serif;
        font-size: 16px;
        font-size: 1rem;
        padding-top: 5px;
        margin-top: 5px;
        border-top: solid 1px #DADADA; }
      .view-tvokids-schedule .views-row .views-field-title .sched-desc-toggle-icon:before {
        font-family: "tvokids-icons";
        content: "\e912";
        position: relative;
        top: 2px; }
      .view-tvokids-schedule .views-row .views-field-title .sched-desc-toggle-icon.closed:before {
        content: "\e912"; }
      .view-tvokids-schedule .views-row .views-field-title .sched-desc-toggle-icon.opened:before {
        content: "\e90d"; }

.sticky-schedule-day-picker {
  position: fixed;
  z-index: 1; }

/* sections.scss */
/* sections/_page.scss */
/* sections/page/_basic-page.scss */
.node-type-page .section-content {
  background-color: #FFF; }
  @media (min-width: 64em) {
    .node-type-page .section-content {
      width: 57.5em;
      margin-left: auto;
      margin-right: auto; } }
  .node-type-page .section-content .layout-container {
    padding: 0em 1.7em 2.1em 1.7em; }
    @media (min-width: 48em) {
      .node-type-page .section-content .layout-container {
        padding: 0em 2.4em 2.1em 2.4em; } }
    @media (min-width: 64em) {
      .node-type-page .section-content .layout-container {
        padding: 0 6.25em 2.1em 6.25em; } }
    .node-type-page .section-content .layout-container .content {
      font-size: 16px;
      font-size: 1rem;
      color: #000;
      font-family: "SuisseIntl", Helvetica, sans-serif; }
  .node-type-page .section-content #main {
    padding-top: 2.15em; }
  .node-type-page .section-content .block-system-main a {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    max-width: 100%;
    color: #007298;
    text-decoration: none; }
    .node-type-page .section-content .block-system-main a:hover, .node-type-page .section-content .block-system-main a:focus {
      text-decoration: underline; }

.node-type-page .basic-page-title-wrapper {
  background-color: #FFF; }
  @media (min-width: 64em) {
    .node-type-page .basic-page-title-wrapper {
      width: 57.5em;
      margin-left: auto;
      margin-right: auto; } }

.node-type-page h1.title {
  border-bottom: 1px solid #E01382;
  padding-bottom: 0.5em;
  background-color: #FFF;
  color: #000;
  padding: 1.48em 0 0.49em 0;
  margin: 0 1.3em -1px 1.3em;
  margin-bottom: -1px; }
  @media (min-width: 48em) {
    .node-type-page h1.title {
      padding: 1.46em 0 0.5em 0;
      margin: 0 1.7em -1px 1.7em; } }
  @media (min-width: 64em) {
    .node-type-page h1.title {
      margin: 0 4.05em -1px 4.05em; } }
  .node-type-page h1.title a {
    text-decoration: none;
    color: #009FD4; }
    .node-type-page h1.title a:hover, .node-type-page h1.title a:focus {
      text-decoration: underline; }

.node-type-page h1, .node-type-page h2, .node-type-page h3 {
  font-family: "tvokids_bold", Helvetica, sans-serif; }

.node-type-page h1 {
  font-size: 24px;
  font-size: 1.5rem; }

.node-type-page h2 {
  font-size: 22px;
  font-size: 1.375rem; }

.node-type-page h3 {
  font-size: 18px;
  font-size: 1.125rem; }

body.page-splash-homepage {
  background: #FFF; }

.page-splash-homepage .section-content {
  margin: 0;
  padding: 0; }
  .page-splash-homepage .section-content .layout-container #main {
    margin-bottom: 0; }

.splash-text-number {
  font-size: 4em; }

.splash-text-and-ext {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  padding: 5% 10%;
  border-radius: 8px;
  white-space: nowrap;
  margin: 5px 0; }
  @media (min-width: 48em) {
    .splash-text-and-ext {
      font-size: 1.6em; } }
  @media (min-width: 64em) {
    .splash-text-and-ext {
      position: absolute;
      top: 30vh; } }

.splash-logo {
  display: table-cell;
  width: 100vw;
  height: 10vh;
  vertical-align: middle;
  text-align: center;
  background-color: #FFF; }
  @media (min-width: 48em) {
    .splash-logo {
      height: 20vh; } }
  .splash-logo img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 100px;
    min-height: 50px;
    padding: 1em; }
    @media (min-width: 48em) {
      .splash-logo img {
        max-width: 475px; } }

.splash-wrapper {
  position: relative;
  height: 80vh; }

.splash-under-5,
.splash-over-6 {
  display: block;
  position: relative;
  color: #FFF;
  transition: all .3s ease; }
  @media (min-width: 29em) {
    .splash-under-5,
    .splash-over-6 {
      display: inline-block;
      width: 50%;
      float: left; } }
  @media (max-width: 47.9375em) {
    .splash-under-5,
    .splash-over-6 {
      height: 40vh; } }
  .splash-under-5 img,
  .splash-over-6 img {
    display: block;
    max-height: 100%;
    margin: 0 auto; }

.splash-under-5 {
  left: 0; }
  @media (min-width: 64em) {
    .splash-under-5 .splash-picture {
      float: left;
      right: 0; } }
  @media (min-width: 64em) {
    .splash-under-5 .splash-text {
      float: left; } }
  .splash-under-5 .splash-text-and-ext {
    background: #E76E3C; }
    @media (min-width: 64em) {
      .splash-under-5 .splash-text-and-ext {
        left: 30px;
        background: none;
        color: #E76E3C; } }
  .splash-under-5:hover .splash-text-and-ext {
    color: #FFF;
    background: #E76E3C; }

.splash-over-6 {
  right: 0; }
  @media (min-width: 64em) {
    .splash-over-6 .splash-picture {
      float: left;
      left: 0; } }
  @media (min-width: 64em) {
    .splash-over-6 .splash-text {
      float: right; } }
  .splash-over-6 .splash-text-and-ext {
    background: #009FD4; }
    @media (min-width: 64em) {
      .splash-over-6 .splash-text-and-ext {
        right: 30px;
        background: none;
        color: #009FD4; } }
  .splash-over-6:hover .splash-text-and-ext {
    color: #FFF;
    background: #009FD4; }

.splash-picture {
  margin: 0 auto;
  width: 100%; }

@media (max-width: 29.1875em) and (max-height: 47.9375em) {
  .splash-picture {
    width: 40vh; } }
  @media (min-width: 38em) {
    .splash-picture {
      width: 30vh; } }
  @media (min-min-height: 29em) and (max-min-height: 38em) {
    .splash-picture {
      width: 40vh; } }
  @media (min-width: 64em) {
    .splash-picture {
      height: 100%;
      width: 50%;
      position: absolute; } }

.splash-text {
  width: 100%;
  text-align: center;
  font-family: "tvokids_bold", Helvetica, sans-serif; }
  @media (max-width: 47.9375em) {
    .splash-text {
      left: 0;
      right: 0;
      margin: 0 auto; } }
  @media (min-min-height: 38em) and (max-min-height: 48em) {
    .splash-text {
      font-size: 140%; } }
  @media (min-width: 64em) {
    .splash-text {
      position: relative;
      width: 50%;
      height: 80vh; } }
  @media (min-width: 83.375em) {
    .splash-text {
      font-size: 180%; } }
  @media (min-width: 112.5em) {
    .splash-text {
      font-size: 200%; } }

/* _navigation.scss */
.menu {
  margin: 0;
  padding: 0; }
  .menu li {
    list-style-image: none;
    list-style-type: none;
    list-style: none;
    margin-left: 0; }

/* navigation/_block-main-nav.scss */
/* navigation/_block-secondary-nav.scss */
.block-secondary-nav {
  display: inline-block; }
  .block-secondary-nav .menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden; }
    .block-secondary-nav .menu:after {
      content: "";
      display: table;
      clear: both; }
    .block-secondary-nav .menu > li {
      display: block;
      float: left; }
      .block-secondary-nav .menu > li:last-child {
        margin-right: 0; }
  .block-secondary-nav .menu li {
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline; }
  .block-secondary-nav .menu a {
    margin-right: 1em;
    color: white; }
  .block-secondary-nav .menu .last a {
    margin-right: 0; }

/* navigation/_block-sub-nav.scss */
.block-sub-nav .menu li {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

.block-sub-nav .menu .expanded {
  margin-bottom: 0; }
  .block-sub-nav .menu .expanded .menu {
    padding: 0.64em; }
    .block-sub-nav .menu .expanded .menu li a {
      font-size: 0.8em;
      line-height: 1.5625em; }

.block-sub-nav .menu .last {
  margin-bottom: 0; }

/* navigation/_breadcrumb.scss */
.breadcrumb {
  margin: 0;
  padding: 0; }

/* navigation/_pager.scss */
.pager {
  margin: 0;
  padding: 0;
  margin-top: 1.25em; }
  .pager:after {
    content: "";
    display: table;
    clear: both; }
  .pager li {
    list-style-image: none;
    list-style-type: none;
    list-style: none;
    margin-left: 0; }
  .pager li {
    min-height: 30px;
    min-width: 30px;
    text-align: center;
    float: left;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    font-family: "SuisseIntl", Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;
    font-size: 1.125rem;
    margin-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px; }
    .pager li a {
      color: #E01382 !important;
      text-align: center; }
  .pager .pager-current {
    background-color: #E01382;
    color: #FFF;
    padding: 2px 10px;
    border-radius: 20px; }
  .pager .pager-ellipsis {
    margin-right: 1em;
    color: #E01382; }

/* _revisions.scss */
/* _print.scss */
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
    font-family: "Times"; }
  a,
  a:visited {
    text-decoration: underline; }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  html, body {
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    font-family: Georgia, ‘Times New Roman’, serif;
    font-size: 12pt; }
  body {
    padding: 1em; }
  .container,
  .region,
  .block {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important; }
  .container {
    max-width: none; }
  h1, h2, h3, h4, h5, h6 {
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    text-indent: 0 !important;
    margin-bottom: 1em;
    margin-top: 1em; }
  ul li, ol li {
    list-style-type: decimal;
    display: block; }
  img,
  .fa,
  #footer,
  .block-main-nav {
    display: none !important; } }

/*# sourceMappingURL=../maps/tvokids.css.map */
