@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-face {
  font-family: 'tvokids_bold';
  src: url("../../../common/fonts/tvokids_bold.woff2") format("woff2"), url("../../../common/fonts/tvokids_bold.woff") format("woff");
  font-weight: 900;
  font-style: normal; }

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

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

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

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

@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-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-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-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-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-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-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-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-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-face {
  font-family: 'tvokids-icons';
  src: url("../../../common/fonts/tvokids-icons.ttf?u7008c23e") format("truetype"), url("../../../common/fonts/tvokids-icons.woff?u1c2b7cb5") format("woff"), url("../../../common/fonts/tvokids-icons.svg?u06b41b5d#tvokids-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

body {
  color: white;
  background: #1E1E1E; }

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: #007298;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: underline; }

/* 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;
  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;
  max-width: 1188px;
  margin: 0 auto;
  padding: 0 1.5625em; }
  .layout-container.section-footer {
    padding: 0; }
  .layout-container:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 38em) and (max-width: 55.9375em) {
    .layout-container {
      padding: 0 6.38298%; } }
  body.node-type-game .layout-container {
    padding: 0; }
  @media (min-width: 56em) {
    .layout-container {
      padding: 0 0.8em; } }

/*  @main layout regions
========================================================================== */
/* layout/_header.scss */
/* @header section */
#skip-link {
  background-color: #000; }
  #skip-link a {
    color: #FFF; }

@media (min-width: 38em) {
  #masthead .layout-container {
    padding: 0.8em 1em; } }

@media (min-width: 48em) {
  #masthead .layout-container {
    padding: 1.25em 1em; } }

@media (min-width: 38em) {
  #masthead .layout-container .region {
    display: inline-block;
    vertical-align: middle;
    margin-left: -4px; } }

@media (min-width: 38em) {
  #masthead .region-masthead-primary {
    width: 23.40426%; } }

@media (min-width: 48em) {
  #masthead .region-masthead-primary {
    width: 31.91489%; } }

#masthead .region-masthead-primary .region-inner {
  padding-top: 0.8em;
  padding-bottom: 0.8em; }
  @media (min-width: 38em) {
    #masthead .region-masthead-primary .region-inner {
      padding-top: 0;
      padding-bottom: 0; } }

#masthead .region-masthead-secondary .region-inner {
  line-height: 0; }

@media (min-width: 38em) {
  #masthead .region-masthead-secondary {
    text-align: right;
    width: 76.59574%; } }

@media (min-width: 48em) {
  #masthead .region-masthead-secondary {
    width: 68.08511%; } }

@media (min-width: 56em) {
  #masthead .region-masthead-secondary {
    position: relative; } }

#header {
  width: 100%;
  z-index: 3;
  background: #1E1E1E;
  position: fixed;
  padding: 0px 10px 0px 10px; }
  @media (min-width: 48em) {
    #header {
      padding: 0px 10px 0px 10px; } }

.region-header-top {
  padding-top: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid white;
  position: relative; }
  @media (min-width: 48em) {
    .region-header-top {
      padding-top: 20px;
      padding-bottom: 15px; } }

/* layout/_content.scss */
/* @content section */
.section-content {
  margin: 0 0 1em 0;
  padding: 0 0 1em 0; }
  .section-content:after {
    content: "";
    display: table;
    clear: both; }
  .section-content .layout-container .region-content h1.content-region-title {
    font-size: 24px;
    font-size: 1.5rem;
    padding-top: 14px;
    margin-bottom: 0;
    text-align: center;
    color: #FFF;
    border: none; }
    @media (min-width: 48em) {
      .section-content .layout-container .region-content h1.content-region-title {
        text-align: left; } }

#main {
  margin-bottom: 1em; }

.node-type-game .section-content, #main {
  margin: 0 auto;
  padding: 0; }

body.player-page-text-content.tvokids-5-and-under {
  background-color: #FFF; }
  @media (min-width: 56em) {
    body.player-page-text-content.tvokids-5-and-under {
      background-color: #E76E3C; } }

body.player-page-text-content.tvokids-6-and-over {
  background-color: #FFF; }
  @media (min-width: 56em) {
    body.player-page-text-content.tvokids-6-and-over {
      background-color: #009FD4; } }

body.player-page-text-content.tvokids-6-and-over #header {
  background-color: #009FD4; }

body.player-page-text-content.tvokids-5-and-under #header {
  background-color: #E76E3C; }

@media (max-width: 55.9375em) {
  body.player-page-text-content .layout-container {
    padding: 0 20px 0 20px; } }

@media (max-width: 55.9375em) {
  body.player-page-text-content .layout-container.section-footer {
    padding: 0; } }

@media (max-width: 55.9375em) {
  body.player-page-text-content .region-header-top {
    border-bottom: none; } }

body.player-page-text-content .region-content {
  color: #000;
  padding-top: 40px;
  max-width: 920px;
  margin: 0 auto; }
  body.player-page-text-content .region-content h1, body.player-page-text-content .region-content h2 {
    padding-bottom: 20px;
    border-bottom: 1px solid #E01382; }
  body.player-page-text-content .region-content h1 {
    font-size: 18px;
    font-size: 1.125rem;
    font-family: "tvokids_bold", Helvetica, sans-serif;
    color: #000;
    padding-bottom: 2px;
    margin-bottom: 26px; }
    @media (min-width: 48em) {
      body.player-page-text-content .region-content h1 {
        font-size: 24px;
        font-size: 1.5rem;
        padding-bottom: 12px;
        margin-bottom: 38px; } }

body.player-page-text-content .region-content .block-system-main {
  background: #FFF; }
  body.player-page-text-content .region-content .block-system-main:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 48em) {
    body.player-page-text-content .region-content .block-system-main {
      padding: 0; } }
  @media (min-width: 56em) {
    body.player-page-text-content .region-content .block-system-main {
      padding: 40px 100px;
      border-radius: 8px; } }

form input,
form select,
form textarea {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "SuisseIntl", Helvetica, sans-serif; }

form .form-submit {
  font-size: 20px;
  font-size: 1.25rem;
  background: #E01382;
  color: #FFF;
  border: 2px solid #FFF;
  border-radius: 6px;
  display: block;
  margin: 0;
  height: 50px;
  padding: 0 30px;
  font-family: "tvokids_bold", Helvetica, sans-serif; }
  form .form-submit.alt-submit {
    background: none;
    color: #E01382;
    border-bottom: 1px dotted #E01382;
    padding: 0 15px; }

form input[type="reset"] {
  border: none;
  background: none;
  color: #E01382;
  padding: 0;
  margin: 0;
  border-bottom: 1px dotted #E01382;
  font-family: "tvokids_bold", Helvetica, sans-serif; }

form label {
  margin-bottom: 0.25em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal; }

form label.option {
  padding-left: 4px; }

form select,
form input[type="text"],
form input[type="email"],
form input[type="search"],
form input[type="tel"],
form input[type="url"],
form textarea {
  width: 100%; }

.bubbled-container {
  border-radius: 10px;
  padding: 15px; }

/* layout/_footer.scss */
footer.layout-container {
  text-align: center; }
  @media (min-width: 64em) {
    footer.layout-container {
      max-width: none;
      padding: 0; } }

@media (min-width: 64em) {
  .page-videos .section-footer {
    width: 100%;
    padding-bottom: 12px;
    background-color: #1E1E1E; } }

/* _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/_contest-table.scss */
.contest-table {
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem; }
  @media (min-width: 48em) {
    .contest-table {
      font-size: 16px;
      font-size: 1rem; } }
  .contest-table thead {
    color: #007298; }
    .contest-table thead th {
      font-family: "tvokids_bold", Helvetica, sans-serif;
      font-weight: 400; }
      @media (min-width: 48em) {
        .contest-table thead th {
          padding-bottom: 5px;
          padding-top: 10px;
          border-bottom: 1px #009FD4 dotted;
          text-align: center;
          font-size: 24px;
          font-size: 1.5rem; } }
  .contest-table tbody tr {
    background-color: transparent;
    border-bottom: 1px #009FD4 dotted; }
    @media (min-width: 48em) {
      .contest-table tbody tr {
        text-align: center; } }
    .contest-table tbody tr:last-child {
      border-bottom: none; }
      .contest-table tbody tr:last-child td {
        padding-bottom: 0; }
  .contest-table tbody td {
    padding-top: 0.25em;
    padding-bottom: 0.25em; }
    .contest-table tbody td::before {
      font-family: "tvokids_bold", Helvetica, sans-serif;
      color: #007298;
      font-size: 24px;
      font-size: 1.5rem; }
    @media (min-width: 48em) {
      .contest-table tbody td {
        border-left: 1px dotted #009FD4;
        padding-top: 0.512em;
        padding-bottom: 0.512em; }
        .contest-table tbody td:first-child {
          border-left: none; } }

/* 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; }

.node-type-game iframe {
  display: block;
  margin: 0 auto;
  border: none; }

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

/* objects/_responsive-tables.scss */
@media (max-width: 47.9375em) {
  .responsive-table {
    table-layout: fixed; } }

.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 */
.video-player .vjs-control {
  flex-shrink: 2; }

/* objects/_views-ui.scss */
/* objects/_blog.scss */
body.page-space-blog,
body.page-space-blog #header {
  background: #00793D; }

@media (max-width: 29em) {
  body.page-space-blog .layout-container {
    padding: 0 10px; }
    body.page-space-blog .layout-container.section-footer {
      padding: 0; } }

@media (min-width: 38em) {
  body.page-space-blog .layout-container {
    padding: 0 10px; }
    body.page-space-blog .layout-container.section-footer {
      padding: 0; } }

.block-tvokids-blog-blog-title,
.view-blog .view-content,
.block-views-exp-blog-page .views-exposed-form {
  max-width: 720px;
  margin: 0 auto; }

.blog-title {
  font-size: 24px;
  font-size: 1.5rem;
  border-bottom: 1px solid #FFF;
  padding: 22px 0 12px 0; }

.block-views-exp-blog-page .views-exposed-form {
  padding-bottom: 12px; }
  .block-views-exp-blog-page .views-exposed-form .views-exposed-widget {
    padding: 0;
    margin: 0;
    float: none; }
  .block-views-exp-blog-page .views-exposed-form .views-exposed-widgets {
    margin-bottom: 0; }
  .block-views-exp-blog-page .views-exposed-form ul {
    white-space: nowrap;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 10px; }
  .block-views-exp-blog-page .views-exposed-form ul li {
    list-style: none;
    display: inline;
    float: left; }
  .block-views-exp-blog-page .views-exposed-form .pop-filter-label {
    height: 44px;
    margin: 0;
    position: relative; }
    .block-views-exp-blog-page .views-exposed-form .pop-filter-label img {
      height: 42px;
      width: 42px;
      border-radius: 100%;
      border: 2px solid #00793D;
      position: absolute;
      top: -8px;
      left: -15px; }
    .block-views-exp-blog-page .views-exposed-form .pop-filter-label button {
      border: 2px solid #FFF;
      border-radius: 4px;
      background: #00793D;
      height: 30px;
      position: relative;
      right: -14px;
      font-size: 18px;
      font-size: 1.125rem;
      margin-right: 20px;
      padding-right: 10px;
      padding-left: 34px; }
    .block-views-exp-blog-page .views-exposed-form .pop-filter-label button.active, .block-views-exp-blog-page .views-exposed-form .pop-filter-label button:hover, .block-views-exp-blog-page .views-exposed-form .pop-filter-label button:focus {
      background: #FFF;
      color: #00793D; }
    .block-views-exp-blog-page .views-exposed-form .pop-filter-label.last {
      padding-right: 0; }

.block-views-exp-blog-page .ajax-progress-throbber {
  display: none; }

.view-blog .view-content {
  padding-top: 5px; }

.view-blog .views-row {
  clear: both; }

.view-blog .blog-author {
  float: left;
  width: 16%;
  max-width: 123px; }
  .view-blog .blog-author img {
    width: 50px;
    height: 50px;
    border-radius: 100%; }
    @media (min-width: 38em) {
      .view-blog .blog-author img {
        height: 93px;
        width: 93px; } }
  .view-blog .blog-author .author-email {
    color: #FFF;
    font-size: 14px;
    font-size: 0.875rem; }
    @media (min-width: 38em) {
      .view-blog .blog-author .author-email {
        position: relative;
        left: 11px; } }

.view-blog .blog-post {
  background: #FFF;
  position: relative;
  border-radius: 8px;
  padding: 10px 10px 4px 10px;
  margin-left: 6px;
  float: left;
  width: 82%;
  max-width: 597px;
  margin-bottom: 20px; }
  @media (min-width: 38em) {
    .view-blog .blog-post {
      padding: 20px 20px 10px 20px;
      margin-left: 23px;
      width: 80%; } }
  @media (min-width: 64em) {
    .view-blog .blog-post {
      margin-left: 18px;
      width: 81%; } }
  .view-blog .blog-post .blog-post-body .field-content {
    font-family: "SuisseIntl", Helvetica, sans-serif;
    font-size: 16px;
    font-size: 1rem;
    color: #000;
    margin-bottom: 6px; }
    @media (min-width: 38em) {
      .view-blog .blog-post .blog-post-body .field-content {
        margin-bottom: 12px; } }
    .view-blog .blog-post .blog-post-body .field-content a {
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: bottom;
      max-width: 100%;
      text-decoration: dotted;
      color: #E01382;
      font-weight: 900; }
  .view-blog .blog-post .blog-post-image {
    margin-bottom: 6px; }
    @media (min-width: 38em) {
      .view-blog .blog-post .blog-post-image {
        margin-bottom: 8px; } }
    .view-blog .blog-post .blog-post-image img {
      width: 100%;
      border: 1px solid #999999; }
  .view-blog .blog-post .blog-post-created {
    font-family: "SuisseIntl", Helvetica, sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    color: #00793D;
    border-top: 1px solid #999999;
    padding-top: 4px; }
  .view-blog .blog-post::before {
    position: absolute;
    top: 14px;
    left: -10px;
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #FFF; }
    @media (min-width: 38em) {
      .view-blog .blog-post::before {
        top: 24px;
        left: -20px;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right: 20px solid #FFF; } }

.view-blog .is-featured-post-1 .blog-author {
  margin-top: 10px; }

.view-blog .is-featured-post-1 .blog-post {
  margin-top: 10px; }
  .view-blog .is-featured-post-1 .blog-post::after {
    content: url("../../img/general_icons/stiky-post-icon.svg");
    position: absolute;
    top: -15px;
    right: -10px;
    width: 60px;
    height: 60px; }
    @media (min-width: 38em) {
      .view-blog .is-featured-post-1 .blog-post::after {
        width: 80px;
        height: 80px; } }
  .view-blog .is-featured-post-1 .blog-post .blog-post-featured-title {
    font-size: 14px;
    font-size: 0.875rem;
    color: #009FD4;
    margin-right: 70px; }

.view-blog .views_infinite_scroll-ajax-loader {
  display: none; }

.flickity-viewport .pop-filter-label {
  top: 15%; }

.view-contest-winners-submissions .view-contest-data-list > li {
  padding: 30px 10px 30px 10px;
  background-color: #FFEC96;
  border: 1px solid #b6a96f; }
  @media (min-width: 48em) {
    .view-contest-winners-submissions .view-contest-data-list > li {
      padding: 50px; } }
  .view-contest-winners-submissions .view-contest-data-list > li::before {
    background-color: #b6a96f; }
  .view-contest-winners-submissions .view-contest-data-list > li::after {
    background-color: #E5D691; }
  .view-contest-winners-submissions .view-contest-data-list > li:nth-child(odd)::before, .view-contest-winners-submissions .view-contest-data-list > li:nth-child(odd)::after {
    border-color: #E5D691 #FFF transparent transparent; }
  .view-contest-winners-submissions .view-contest-data-list > li:nth-child(even)::before, .view-contest-winners-submissions .view-contest-data-list > li:nth-child(even)::after {
    border-color: #E5D691 transparent transparent #FFF; }

.view-contest-winners-submissions .views-field-field-contest-entry {
  border-bottom: 1px solid #979797;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  padding-bottom: 20px; }

.view-contest-winners-submissions .views-field-nothing {
  font-family: "tvokids_bold", Helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 10px; }
  @media (min-width: 48em) {
    .view-contest-winners-submissions .views-field-nothing .field-content {
      float: right; } }

.view-contest-data-list > li {
  padding: 30px 10px 30px 10px;
  border-radius: 8px;
  position: relative; }
  @media (min-width: 48em) {
    .view-contest-data-list > li {
      padding: 40px 60px 56px 60px; } }
  .view-contest-data-list > li:first-child {
    margin-top: 10px; }
  .view-contest-data-list > li:last-child {
    margin-bottom: 20px; }
  .view-contest-data-list > li::before, .view-contest-data-list > li::after {
    content: "";
    position: absolute;
    top: -1px;
    border-style: solid;
    display: block;
    width: 0; }
  .view-contest-data-list > li:nth-child(odd)::before, .view-contest-data-list > li:nth-child(odd)::after {
    right: -1px;
    border-radius: 0 0 0 8px; }
  .view-contest-data-list > li:nth-child(even)::before, .view-contest-data-list > li:nth-child(even)::after {
    left: -1px;
    border-radius: 0 0 8px 0; }
  .view-contest-data-list > li:nth-child(odd)::before {
    border-width: 0 20px 20px 0; }
    @media (min-width: 48em) {
      .view-contest-data-list > li:nth-child(odd)::before {
        border-width: 0 40px 40px 0; } }
  .view-contest-data-list > li:nth-child(even)::before {
    border-width: 0 0 20px 20px; }
    @media (min-width: 48em) {
      .view-contest-data-list > li:nth-child(even)::before {
        border-width: 0 0 40px 40px; } }
  .view-contest-data-list > li:nth-child(odd)::after {
    border-width: 0 19px 19px 0; }
    @media (min-width: 48em) {
      .view-contest-data-list > li:nth-child(odd)::after {
        border-width: 0 39px 39px 0; } }
  .view-contest-data-list > li:nth-child(even)::after {
    border-width: 0 0 19px 19px; }
    @media (min-width: 48em) {
      .view-contest-data-list > li:nth-child(even)::after {
        border-width: 0 0 39px 39px; } }

.item-list .view-contest-data-list li {
  margin-top: 20px; }

.view-contest-submissions-list .view-contest-data-list > li {
  padding: 10px 30px 10px 30px;
  background-color: #DADADA;
  border: 1px solid #B8B8B8; }
  @media (min-width: 48em) {
    .view-contest-submissions-list .view-contest-data-list > li {
      padding-left: 60px;
      padding-right: 60px; } }
  .view-contest-submissions-list .view-contest-data-list > li::before {
    background-color: #878787; }
  .view-contest-submissions-list .view-contest-data-list > li::after {
    background-color: #B8B8B8; }
  .view-contest-submissions-list .view-contest-data-list > li:nth-child(odd)::before, .view-contest-submissions-list .view-contest-data-list > li:nth-child(odd)::after {
    border-color: #878787 #FFF transparent transparent; }
  .view-contest-submissions-list .view-contest-data-list > li:nth-child(even)::before, .view-contest-submissions-list .view-contest-data-list > li:nth-child(even)::after {
    border-color: #878787 transparent transparent #FFF; }

.view-contest-submissions-list .views-field-field-multivalue-description {
  text-align: center;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-size: 20px;
  font-size: 1.25rem; }
  .view-contest-submissions-list .views-field-field-multivalue-description p {
    margin-top: 1em; }
  .view-contest-submissions-list .views-field-field-multivalue-description ol, .view-contest-submissions-list .views-field-field-multivalue-description ul {
    text-align: left; }
    .view-contest-submissions-list .views-field-field-multivalue-description ol li, .view-contest-submissions-list .views-field-field-multivalue-description ul li {
      list-style-type: inherit;
      list-style: inherit; }
  .view-contest-submissions-list .views-field-field-multivalue-description ul {
    padding-left: 1.25em; }

.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 */
/**
 * @file
 *   Styles for the logo block.
 */
.block-tvokids-logo-player-logo {
  overflow: hidden;
  width: 8em;
  margin: 0 auto; }
  .block-tvokids-logo-player-logo .logo {
    height: 29px; }
  @media (min-width: 48em) {
    .block-tvokids-logo-player-logo {
      width: 10.3125em; }
      .block-tvokids-logo-player-logo .logo {
        height: 37px; } }
  @media (min-width: 74.25em) {
    .block-tvokids-logo-player-logo {
      width: 11.875em; }
      .block-tvokids-logo-player-logo .logo {
        height: 42px; } }

/**
 * @file
 * All styling to do with footer menu.
 */
#block-menu-5-and-under-footer,
#block-menu-6-and-over-footer {
  display: inline-block;
  padding: 20px;
  text-align: center;
  background-color: #1E1E1E; }
  #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 {
        color: white;
        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 white; }

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

/* components/_search.scss */
/* components/search/_search-form.scss */
.search-form {
  margin-bottom: 1.25em;
  padding-bottom: 1.25em;
  border-bottom: 1px solid #E0E0E0; }

.search-form .form-wrapper label {
  font-size: 0.8em;
  text-transform: uppercase;
  margin-bottom: 0.4096em; }

.search-form .form-wrapper .form-item-keys {
  margin-top: 0;
  margin-bottom: 1em;
  display: block; }

.search-form .form-wrapper #edit-keys {
  appearance: none;
  border: none;
  border-radius: 0;
  width: 100%; }
  .search-form .form-wrapper #edit-keys:focus {
    outline: 0; }
  @media (min-width: 56em) {
    .search-form .form-wrapper #edit-keys {
      width: 50%; } }

.search-form .form-wrapper .form-submit {
  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) {
    .search-form .form-wrapper .form-submit {
      border-radius: 5px;
      padding: 0.8em 1.5625em; } }
  .search-form .form-wrapper .form-submit:hover, .search-form .form-wrapper .form-submit:focus {
    color: #212121;
    background-color: #E0E0E0;
    border: 1px solid #E0E0E0; }

/* components/search/_search-results.scss */
.spelling-suggestions {
  margin-bottom: 1.25em; }
  .spelling-suggestions dl, .spelling-suggestions dt, .spelling-suggestions dd {
    margin: 0; }

.search-results {
  margin: 0;
  padding: 0; }
  .search-results li {
    list-style-image: none;
    list-style-type: none;
    list-style: none;
    margin-left: 0; }
  .search-results .search-snippet-info {
    margin: 0;
    padding: 0; }
  .search-results .search-info {
    display: none; }
  .search-results .search-snippet {
    margin-bottom: 0; }
  .search-results .search-result {
    margin-bottom: 1.95312em;
    padding-bottom: 1.95312em;
    border-bottom: 1px solid #E0E0E0; }

/* 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; }

.video-player-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; }
  .video-player-container .video-js {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0; }

.vjs-big-play-button {
  left: 50% !important;
  top: 50% !important;
  margin-left: -77px;
  margin-top: -53px; }

.video-accessibility-container {
  float: left; }
  .video-accessibility-container .dv-toggle__container {
    display: block;
    margin-top: 10px; }

.dv-toggle__container {
  font-family: "SuisseIntl", Helvetica, sans-serif;
  margin-top: 15px;
  display: inline-block; }

.dv-toggle__text {
  display: inline-block;
  float: left;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 30px;
  margin-right: 0.8em; }

.dv-toggle {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  overflow: hidden;
  width: 70px;
  float: left;
  position: relative; }

.dv-toggle-switch {
  position: absolute;
  left: -999px;
  z-index: -999; }
  .dv-toggle-switch:focus + .dv-toggle-switch__label {
    background-color: #FFF; }
    .dv-toggle-switch:focus + .dv-toggle-switch__label .dv-toggle-switch__button {
      background-color: #FFF; }

.dv-toggle-switch__label {
  display: block;
  background-color: #DBDBDB;
  overflow: hidden;
  cursor: pointer;
  float: left;
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8) inset;
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8) inset;
  -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8) inset;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8) inset; }
  .dv-toggle-switch__label:active {
    background-color: #FFF; }
    .dv-toggle-switch__label:active .dv-toggle-switch__button {
      background-color: #FFF; }

.dv-toggle-switch__inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.1s ease-in-out;
  -webkit-transition: margin 0.1s ease-in-out;
  -o-transition: margin 0.1s ease-in-out;
  transition: margin 0.1s ease-in-out; }

.dv-toggle-switch__inner:before,
.dv-toggle-switch__inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-weight: 900;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.dv-toggle-switch__inner:before {
  content: "ON";
  padding-left: 10px;
  color: green; }

.dv-toggle-switch__inner:after {
  content: "OFF";
  padding-right: 10px;
  color: red;
  text-align: right; }

.dv-toggle-switch__button {
  display: block;
  width: 16px;
  height: 16px;
  margin: 7px;
  background: #DBDBDB;
  border: 2px solid #212121;
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  -moz-transition: right 0.1s ease-in-out;
  -webkit-transition: right 0.1s ease-in-out;
  -o-transition: right 0.1s ease-in-out;
  transition: right 0.1s ease-in-out; }

.dv-toggle-switch:checked + .dv-toggle-switch__label .dv-toggle-switch__inner {
  margin-left: 0; }

.dv-toggle-switch:checked + .dv-toggle-switch__label .dv-toggle-switch__button {
  right: 0px; }

.back-button button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  left: 0;
  bottom: 8px;
  font-size: 18px;
  font-size: 1.125rem; }
  @media (min-width: 48em) {
    .back-button button {
      bottom: 15px; } }
  .back-button button:before {
    font-family: 'tvokids-icons';
    content: "\e901";
    display: inline-block;
    vertical-align: middle;
    line-height: inherit;
    font-size: 14px;
    font-size: 0.875rem;
    margin-right: 6px;
    padding-bottom: 2px; }

.block-tvokids-back-button.contextual-links-region {
  position: static; }

/* components/_content-well.scss */
.tvokids-video-content-list {
  position: relative;
  display: block; }
  .section-footer .tvokids-video-content-list {
    text-align: left; }
  @media (min-width: 48em) {
    .tvokids-video-content-list {
      margin: 1em 0.5em; }
      .tvokids-video-content-list:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) {
    .tvokids-video-content-list {
      overflow: hidden;
      margin: 0em; }
      body.has-overlay .tvokids-video-content-list {
        position: static; } }
  .tvokids-video-content-list .flickity-slider {
    border: 1px solid transparent; }
  .tvokids-video-content-list .flickity-prev-next-button svg {
    display: none; }
  .tvokids-video-content-list .flickity-prev-next-button,
  .tvokids-video-content-list .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-video-content-list .flickity-prev-next-button:disabled,
    .tvokids-video-content-list .flickity-prev-next-button:disabled {
      display: none; }
    .tvokids-video-content-list .flickity-prev-next-button:active,
    .tvokids-video-content-list .flickity-prev-next-button:active {
      opacity: 1; }
    @media (min-width: 64em) {
      .tvokids-video-content-list .flickity-prev-next-button,
      .tvokids-video-content-list .flickity-prev-next-button {
        display: block; } }
  .tvokids-video-content-list .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-video-content-list .flickity-prev-next-button.previous:hover {
      left: -2.5rem; }
  .tvokids-video-content-list .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-video-content-list .flickity-prev-next-button.next:hover {
      right: -2.5rem; }

/* 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); }

.tvokids-tile.highlight a {
  border: 2px solid #009FD4; }

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

.tvokids-tile {
  width: 100%;
  padding: 20px 8px; }
  @media (min-width: 48em) {
    .tvokids-tile {
      width: 48%;
      float: left;
      padding: 12px; } }
  @media (min-width: 64em) {
    .tvokids-tile {
      width: 280px;
      float: left;
      padding: 20px 8px 8px; }
      .tvokids-tile:nth-of-type(1) {
        padding-left: 20px;
        width: 292px; } }
  .tvokids-tile a, .tvokids-tile img {
    display: block;
    color: black; }
  .tvokids-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;
    border-radius: 6px; }
  .tvokids-tile .content {
    background-color: #000000;
    height: 0;
    border-radius: 6px;
    padding: 56.21% 0 0;
    overflow: hidden; }
  .tvokids-tile .field-name-field-promo-badge {
    position: absolute;
    z-index: 1;
    top: -18px;
    left: -13px; }
    @media (min-width: 64em) {
      .tvokids-tile .field-name-field-promo-badge {
        top: -14px;
        left: -10px; } }
    .tvokids-tile .field-name-field-promo-badge img {
      width: 90px;
      height: 90px; }
      @media (min-width: 64em) {
        .tvokids-tile .field-name-field-promo-badge img {
          width: 70px;
          height: 70px; } }
  .tvokids-tile.yt-video-tile .content {
    position: relative; }
    .tvokids-tile.yt-video-tile .content img {
      max-height: none;
      height: 135%;
      outline: 2px solid transparent; }

.tile-overlay {
  position: absolute;
  bottom: -1px;
  padding: 6px 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  border-radius: 0 0 6px 6px;
  -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 (min-width: 64em) {
    .tile-title {
      font-size: 14px;
      font-size: 0.875rem; } }

.tile-description {
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 125%; }

.tvokids-tile .tile-title:after {
  font-family: 'tvokids-icons';
  display: inline-block;
  color: #009FD4;
  position: absolute;
  right: 5px;
  bottom: 4px;
  font-size: 24px;
  font-size: 1.5rem; }

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

.tvokids-tile[data-tile-type=manual_playlist] .tile-title:after {
  content: "\e905"; }

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

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

/**
 * @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; }

body.page-book-club-book-of-the-month {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  body.page-book-club-book-of-the-month .region-header-top {
    border-bottom: none; }
  body.page-book-club-book-of-the-month .region-content {
    padding-top: 0; }
    @media (min-width: 38em) {
      body.page-book-club-book-of-the-month .region-content {
        padding-top: 40px; } }
    @media (min-width: 64em) {
      body.page-book-club-book-of-the-month .region-content {
        padding-top: 10px; } }
    body.page-book-club-book-of-the-month .region-content .block-system-main {
      padding-top: 0; }
      @media (min-width: 38em) {
        body.page-book-club-book-of-the-month .region-content .block-system-main {
          clear: both; } }
      body.page-book-club-book-of-the-month .region-content .block-system-main .content {
        margin-bottom: 30px; }
        @media (min-width: 38em) {
          body.page-book-club-book-of-the-month .region-content .block-system-main .content {
            margin-bottom: 0; } }
        body.page-book-club-book-of-the-month .region-content .block-system-main .content > * {
          padding-left: 20px;
          padding-right: 20px; }
          @media (min-width: 38em) {
            body.page-book-club-book-of-the-month .region-content .block-system-main .content > * {
              padding-left: 0;
              padding-right: 0; } }
        body.page-book-club-book-of-the-month .region-content .block-system-main .content .book-of-the-month-filter {
          padding-left: 0;
          padding-right: 0; }
    body.page-book-club-book-of-the-month .region-content .book-club-logo-wrapper {
      padding: 10px 20px;
      background-color: #009FD4; }
      @media (min-width: 38em) {
        body.page-book-club-book-of-the-month .region-content .book-club-logo-wrapper {
          background-color: transparent !important;
          width: 50%;
          max-width: 920px;
          display: inline-block; } }
      body.page-book-club-book-of-the-month .region-content .book-club-logo-wrapper .book-club-logo-image {
        width: 460px;
        margin: auto;
        display: inherit; }
    @media (min-width: 38em) {
      body.page-book-club-book-of-the-month .region-content .bom-header-container {
        position: relative;
        height: 100%;
        width: 100%;
        min-height: 95px; } }
    @media (min-width: 64em) {
      body.page-book-club-book-of-the-month .region-content .bom-header-container {
        min-height: 125px; } }
    body.page-book-club-book-of-the-month .region-content .book-of-the-month-info {
      outline: none; }
    @media (min-width: 38em) {
      body.page-book-club-book-of-the-month .region-content .book-club-title-wrapper {
        display: inline-block;
        position: absolute;
        bottom: 0;
        right: 30px; } }
    body.page-book-club-book-of-the-month .region-content .book-club-title-wrapper h1.book-club-title {
      font-size: 24px;
      font-size: 1.5rem;
      margin: 0;
      color: #FFF;
      padding: 10px 20px;
      background-color: #009FD4;
      border-bottom: none;
      text-align: center; }
      @media (min-width: 38em) {
        body.page-book-club-book-of-the-month .region-content .book-club-title-wrapper h1.book-club-title {
          width: 265px;
          margin-left: auto; } }
      @media (min-width: 64em) {
        body.page-book-club-book-of-the-month .region-content .book-club-title-wrapper h1.book-club-title {
          width: 260px; } }
  body.page-book-club-book-of-the-month .section-content {
    padding-bottom: 0;
    margin-bottom: 0; }
    @media (min-width: 38em) {
      body.page-book-club-book-of-the-month .section-content {
        padding-bottom: 1em;
        margin-bottom: 1em; } }
  body.page-book-club-book-of-the-month .layout-container {
    padding-left: 0;
    padding-right: 0; }
    @media (min-width: 56em) {
      body.page-book-club-book-of-the-month .layout-container {
        padding-left: 20px;
        padding-right: 20px; } }
    @media (min-width: 56em) {
      body.page-book-club-book-of-the-month .layout-container.section-footer {
        padding-left: 0px;
        padding-right: 0px; } }

strong.book-club-title {
  color: #E01382;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "tvokids_bold", Helvetica, sans-serif;
  margin: 20px 0;
  display: block; }
  @media (min-width: 38em) {
    strong.book-club-title {
      margin-top: 0;
      margin-bottom: 5px; } }
  @media (min-width: 64em) {
    strong.book-club-title {
      font-size: 28px;
      font-size: 1.75rem; } }

@media (min-width: 38em) {
  .book-club-cover {
    width: 44%;
    display: inline-block;
    margin-right: 20px;
    margin-left: 20px;
    vertical-align: top; } }

@media (min-width: 48em) {
  .book-club-cover {
    width: 46%;
    margin-bottom: 20px; } }

@media (min-width: 56em) {
  .book-club-cover {
    margin-left: 0; } }

@media (min-width: 64em) {
  .book-club-cover {
    width: 306px; } }

@media (min-width: 38em) {
  .book-club-text-info {
    width: 48%;
    display: inline-block; } }

@media (min-width: 64em) {
  .book-club-text-info {
    width: 385px; } }

.book-club-author,
.book-club-illustrator {
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 0; }

.book-club-description {
  margin: 20px 0 40px 0;
  font-family: "SuisseIntl", Helvetica, sans-serif; }
  @media (min-width: 38em) {
    .book-club-description {
      margin-top: 5px; } }

#tvokids-book-club-book-rating-form {
  text-align: center; }
  #tvokids-book-club-book-rating-form .ratings-label {
    color: #007298;
    font-size: 24px;
    font-size: 1.5rem; }
    @media (min-width: 38em) {
      #tvokids-book-club-book-rating-form .ratings-label {
        font-size: 18px;
        font-size: 1.125rem; } }
  #tvokids-book-club-book-rating-form #bom-ratings-button-container {
    width: 100%;
    height: 75px;
    line-height: 5; }
    #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button {
      height: 45px;
      width: 45px;
      text-indent: -9999px;
      display: inline-block;
      margin-right: 20px;
      padding: 0;
      transition-duration: 0.3s; }
      @media (min-width: 38em) {
        #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button {
          height: 40px;
          width: 40px;
          margin-right: 10px; } }
      @media (min-width: 48em) {
        #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button {
          height: 45px;
          width: 45px;
          margin-right: 20px; } }
      #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button:last-child {
        margin-right: 0; }
      #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button:hover, #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button:focus, #tvokids-book-club-book-rating-form #bom-ratings-button-container .rating-button.selected {
        height: 60px;
        width: 60px; }
  #tvokids-book-club-book-rating-form #edit-submit {
    margin: auto; }
    #tvokids-book-club-book-rating-form #edit-submit[disabled="disabled"] {
      background-color: #FFF;
      color: #E0E0E0;
      border-color: #E0E0E0; }

#edit-disappointed-button,
.bom-feeling-disappointed {
  background: url(../../img/book-club/disappointed.svg) no-repeat; }

#edit-sad-button,
.bom-feeling-sad {
  background: url(../../img/book-club/sad.svg) no-repeat; }

#edit-neutral-button,
.bom-feeling-neutral {
  background: url(../../img/book-club/neutral.svg) no-repeat; }

#edit-funny-button,
.bom-feeling-funny {
  background: url(../../img/book-club/funny.svg) no-repeat; }

#edit-happy-button,
.bom-feeling-happy {
  background: url(../../img/book-club/happy.svg) no-repeat; }

.bom-rating-display {
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
  margin-top: 20px; }
  .bom-rating-display p {
    font-size: 24px;
    font-size: 1.5rem;
    height: 60px;
    line-height: 60px;
    vertical-align: middle; }
    @media (min-width: 38em) {
      .bom-rating-display p {
        font-size: 18px;
        font-size: 1.125rem; } }
    .bom-rating-display p .felt-this-text {
      color: #007298; }
    .bom-rating-display p .bom-feeling {
      height: 60px;
      width: 60px;
      display: inline-block;
      text-indent: -9999px; }

@media (min-width: 38em) {
  .bom-ribbon-wrapper {
    float: right;
    margin-right: 28px; } }

.bom-ribbon-wrapper .bom-ribbon {
  display: none; }
  @media (min-width: 38em) {
    .bom-ribbon-wrapper .bom-ribbon {
      display: block;
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box;
      width: 0;
      height: 30px;
      border: 132.5px solid #009FD4;
      border-top: 0 solid;
      border-bottom: 35px solid rgba(0, 0, 0, 0);
      color: black;
      -o-text-overflow: clip;
      text-overflow: clip; } }
  @media (min-width: 64em) {
    .bom-ribbon-wrapper .bom-ribbon {
      border-width: 130px;
      border-top-width: 0;
      border-bottom-width: 35px; } }

@media (min-width: 48em) {
  .same-page-nav {
    width: 100%; } }

.same-page-nav ul {
  margin: 0;
  white-space: nowrap;
  padding: 20px 0 10px 0; }

.same-page-nav li {
  display: inline-block; }
  .same-page-nav li:first-child {
    margin-left: 10px; }
  .same-page-nav li:last-child {
    margin-right: 10px; }
  .same-page-nav li.active a {
    color: #FFF;
    background: #007298; }

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

/**
 * @file
 *   Styling for The Space winners pages.
 */
body.tvokids-5-and-under.page-contests-daily-space-winners {
  background-color: #FFEB92;
  background-size: cover; }

body.tvokids-6-and-over.page-contests-daily-space-winners {
  background-color: #FFEB92;
  background-size: cover; }

body.page-contests-daily-space-winners {
  background-attachment: fixed; }
  @media (min-width: 48em) {
    body.page-contests-daily-space-winners {
      background: url("../../img/the-space-contest/daily-winners-bg.jpg") no-repeat; } }
  body.page-contests-daily-space-winners .region-header-top {
    border-bottom: none; }
  @media (min-width: 48em) {
    body.page-contests-daily-space-winners .region-content .space-contest-header {
      position: relative; } }
  body.page-contests-daily-space-winners .region-content .space-contest-img {
    border-bottom: 1px solid #FFF;
    margin-bottom: 10px; }
    @media (min-width: 48em) {
      body.page-contests-daily-space-winners .region-content .space-contest-img {
        width: 48%;
        display: inline-block;
        vertical-align: bottom;
        margin-bottom: 0px;
        border-bottom: none; } }
  @media (min-width: 48em) {
    body.page-contests-daily-space-winners .region-content .space-contest-text-container {
      margin-left: 25px;
      width: 47%;
      display: inline-block;
      position: absolute;
      top: 50%;
      transform: translate(0, -50%); } }
  body.page-contests-daily-space-winners .region-content .space-contest-title {
    color: #E01382;
    border-bottom: none;
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 10px; }
    @media (min-width: 48em) {
      body.page-contests-daily-space-winners .region-content .space-contest-title {
        margin-bottom: 0;
        font-size: 26px;
        font-size: 1.625rem; } }
  body.page-contests-daily-space-winners .region-content .space-contest-description {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: normal; }
    @media (min-width: 48em) {
      body.page-contests-daily-space-winners .region-content .space-contest-description {
        font-size: 22px;
        font-size: 1.375rem; } }
  body.page-contests-daily-space-winners .block-system-main {
    border-radius: 10px; }
    @media (min-width: 64em) {
      body.page-contests-daily-space-winners .block-system-main {
        border: 1px solid #009FD4; } }
  @media (min-width: 48em) {
    body.page-contests-daily-space-winners .space-contest-nav {
      width: auto;
      margin-right: 5px; } }
  @media (min-width: 48em) and (min-width: 56em) {
    body.page-contests-daily-space-winners .space-contest-nav {
      margin-top: -25px; } }
  @media (min-width: 48em) {
    body.page-contests-daily-space-winners .space-contest-nav #space-winner-nav-list {
      padding-top: 10px; } }
  @media (min-width: 56em) {
    body.page-contests-daily-space-winners .space-contest-nav #space-winner-nav-list {
      padding-top: 0px; } }
  body.page-contests-daily-space-winners .winner-wrapper {
    margin: 0 10px; }
    @media (min-width: 48em) {
      body.page-contests-daily-space-winners .winner-wrapper {
        margin: 0 15px; } }
    body.page-contests-daily-space-winners .winner-wrapper .contest-table.no-winners td.empty .bt-content {
      width: 100%;
      text-align: center; }
    body.page-contests-daily-space-winners .winner-wrapper .contest-table.no-winners td:before {
      display: none; }

/* components/_paragraphs.scss */
.entity-paragraphs-item {
  color: #000;
  background-color: #FFF;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #FFF; }

.paragraphs-item-tvokids-additional-block {
  position: relative; }
  .paragraphs-item-tvokids-additional-block .content {
    overflow: hidden;
    border-radius: 8px;
    display: flex; }
    .paragraphs-item-tvokids-additional-block .content:after {
      content: "";
      display: table;
      clear: both; }
    @media (max-width: 47.9375em) {
      .paragraphs-item-tvokids-additional-block .content {
        flex-direction: column;
        flex-wrap: nowrap; } }
  .paragraphs-item-tvokids-additional-block .field-name-field-image img {
    display: block;
    margin: 0 auto; }
  @media (min-width: 48em) {
    .paragraphs-item-tvokids-additional-block .field-name-field-image {
      width: 50%; } }
  .paragraphs-item-tvokids-additional-block .description-fields {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-left: 10px;
    padding-right: 10px; }
    @media (min-width: 48em) {
      .paragraphs-item-tvokids-additional-block .description-fields {
        width: 50%;
        justify-content: flex-end; } }
  .paragraphs-item-tvokids-additional-block .field-name-field-paragraph-title {
    padding-top: 20px; }
    .paragraphs-item-tvokids-additional-block .field-name-field-paragraph-title h2 {
      font-size: 24px;
      font-size: 1.5rem;
      margin: 0; }
  .paragraphs-item-tvokids-additional-block .field-name-field-description {
    font-size: 20px;
    font-size: 1.25rem; }
  @media (min-width: 48em) {
    .paragraphs-item-tvokids-additional-block.paragraph-image-position-right .content {
      flex-direction: row-reverse; } }

.paragraphs-item-tvokids-prize-block {
  position: relative; }
  .paragraphs-item-tvokids-prize-block .content {
    overflow: hidden;
    border-radius: 8px; }
    .paragraphs-item-tvokids-prize-block .content:after {
      content: "";
      display: table;
      clear: both; }
  .paragraphs-item-tvokids-prize-block .field-name-field-image img {
    display: block;
    margin: 0 auto; }
  @media (min-width: 48em) {
    .paragraphs-item-tvokids-prize-block .field-name-field-image {
      width: 50%;
      float: left; } }
  .paragraphs-item-tvokids-prize-block .field-name-field-description {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 10px 20px 12px 20px;
    text-align: center;
    width: 85%;
    margin: 0 auto; }
    .paragraphs-item-tvokids-prize-block .field-name-field-description p {
      margin: 0; }
    .paragraphs-item-tvokids-prize-block .field-name-field-description ol, .paragraphs-item-tvokids-prize-block .field-name-field-description ul {
      text-align: left; }
  @media (min-width: 48em) {
    .paragraphs-item-tvokids-prize-block.has-image .field-name-field-description {
      width: 50%;
      text-align: left;
      float: right; } }
  .paragraphs-item-tvokids-prize-block .field-name-field-promo-badge {
    position: absolute;
    z-index: 1;
    top: -20px;
    left: -35px; }
    @media (min-width: 48em) {
      .paragraphs-item-tvokids-prize-block .field-name-field-promo-badge {
        top: -20px;
        left: -20px; } }
    .paragraphs-item-tvokids-prize-block .field-name-field-promo-badge img {
      width: 80px;
      height: 80px; }

.paragraphs-item-tvokids-winners-list {
  position: relative;
  padding: 12px 20px 0 20px; }
  .paragraphs-item-tvokids-winners-list .content {
    border-radius: 8px; }
  .paragraphs-item-tvokids-winners-list .field-name-field-paragraph-title {
    padding-bottom: 12px; }
    .paragraphs-item-tvokids-winners-list .field-name-field-paragraph-title h2 {
      font-size: 24px;
      font-size: 1.5rem;
      font-family: "tvokids_bold", Helvetica, sans-serif;
      margin: 0; }
      .paragraphs-item-tvokids-winners-list .field-name-field-paragraph-title h2:before {
        font-family: 'tvokids-icons';
        content: "\e908";
        font-size: 34px;
        font-size: 2.125rem;
        padding-right: 20px;
        vertical-align: middle; }

.paragraphs-item-tvokids-winners-submissions {
  position: relative;
  padding: 12px 20px 0 20px; }
  .paragraphs-item-tvokids-winners-submissions .content {
    border-radius: 8px; }
  .paragraphs-item-tvokids-winners-submissions .field-name-field-paragraph-title {
    padding-bottom: 12px;
    margin-bottom: 10px; }
    .paragraphs-item-tvokids-winners-submissions .field-name-field-paragraph-title h2 {
      font-size: 24px;
      font-size: 1.5rem;
      font-family: "tvokids_bold", Helvetica, sans-serif;
      margin: 0; }
      .paragraphs-item-tvokids-winners-submissions .field-name-field-paragraph-title h2:before {
        font-family: 'tvokids-icons';
        content: "\e908";
        font-size: 34px;
        font-size: 2.125rem;
        padding-right: 20px;
        vertical-align: middle; }
  .paragraphs-item-tvokids-winners-submissions .field-story-description {
    font-family: "tvokids_bold", Helvetica, sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0; }

.paragraphs-item-tvokids-submissions-list {
  padding: 12px 20px 0 20px; }
  .paragraphs-item-tvokids-submissions-list .content {
    border-radius: 8px; }
  .paragraphs-item-tvokids-submissions-list .field-name-field-paragraph-title {
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #009FD4; }
    .paragraphs-item-tvokids-submissions-list .field-name-field-paragraph-title h2 {
      font-size: 24px;
      font-size: 1.5rem;
      color: #007298;
      font-family: "tvokids_bold", Helvetica, sans-serif;
      margin: 0; }

@media (min-width: 48em) {
  .paragraphs-item-video .content {
    display: flex;
    overflow: hidden; } }

.paragraphs-item-video .transcript-link {
  margin: 5px 0 0 10px;
  display: inline-block; }

.paragraphs-item-video .dv-toggle__container {
  position: absolute;
  bottom: -50px;
  margin-left: 10px; }
  .paragraphs-item-video .dv-toggle__container.dv-yt-toggle__container {
    position: static;
    margin-bottom: -20px;
    margin-top: 10px; }
    @media (min-width: 48em) {
      .paragraphs-item-video .dv-toggle__container.dv-yt-toggle__container {
        margin-bottom: -5px; } }

.paragraphs-item-video .bc-video-container-dv {
  margin-bottom: 30px; }
  @media (min-width: 48em) {
    .paragraphs-item-video .bc-video-container-dv {
      margin-bottom: 13%; } }
  @media (min-width: 56em) {
    .paragraphs-item-video .bc-video-container-dv {
      margin-bottom: 50px; } }

.paragraphs-item-video .field-name-field-description {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px 10px 0 10px; }
  @media (min-width: 48em) {
    .paragraphs-item-video .field-name-field-description {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: flex-end;
      width: 48.5%; } }

.paragraphs-item-video .vjs-poster,
.paragraphs-item-video .video-js,
.paragraphs-item-video video.vjs-tech,
.paragraphs-item-video .youtube-field-player {
  border-radius: 8px 8px 0 0; }
  @media (min-width: 48em) {
    .paragraphs-item-video .vjs-poster,
    .paragraphs-item-video .video-js,
    .paragraphs-item-video video.vjs-tech,
    .paragraphs-item-video .youtube-field-player {
      border-radius: 8px 0 0 0; } }

@media (min-width: 48em) {
  .paragraphs-item-video .field-name-field-embedded-video {
    display: inline-block;
    width: 50%; } }

.progress-indicator {
  clear: both;
  margin-left: 5px; }
  @media (min-width: 48em) {
    .progress-indicator {
      padding-top: 15px;
      margin-bottom: 60px; } }
  .progress-indicator .progress-indicator__step {
    display: inline-block;
    margin-left: 24px; }
    .progress-indicator .progress-indicator__step:nth-of-type(1) {
      margin-left: 0; }

.progress-indicator__step::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #007298; }

.progress-indicator__step.active::after {
  background-color: #007298; }

/* components/_contests.scss */
.tvokids-contest {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  @media (max-width: 47.9375em) {
    .tvokids-contest {
      background-image: none; } }
  .tvokids-contest .section-content {
    margin-bottom: 0; }
  .tvokids-contest .region-content {
    max-width: 920px;
    margin: 0 auto; }
  .tvokids-contest .contest-closed-message {
    width: 100%;
    background: #E01382;
    color: #FFF;
    padding: 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 28px;
    font-size: 1.75rem;
    text-align: center; }
    .tvokids-contest .contest-closed-message p {
      margin: 0; }
  .tvokids-contest .ajax-progress-throbber {
    display: none; }
  .tvokids-contest #header {
    background-color: #000; }
    .tvokids-contest #header .region-header-top {
      border-bottom: none; }
  .tvokids-contest .contest-title {
    font-size: 24px;
    font-size: 1.5rem;
    padding-top: 14px;
    margin-bottom: 0;
    text-align: center; }
    @media (min-width: 48em) {
      .tvokids-contest .contest-title {
        padding-left: 100px;
        text-align: left; } }
  .tvokids-contest .contest-section,
  .tvokids-contest .contest-intro,
  .tvokids-contest .contest-personal-info,
  .tvokids-contest .contest-thank-you {
    margin: 20px 0;
    background-color: #FFF;
    border-radius: 8px;
    font-size: 24px;
    font-size: 1.5rem;
    font-family: "tvokids_bold", Helvetica, sans-serif;
    display: inline-block;
    width: 100%;
    position: relative; }
  .tvokids-contest .contest-intro .yt-player-wrapper .dv-toggle__container {
    margin-top: 7px; }
  .tvokids-contest .contest-intro .contest-thumbnail-wrapper {
    width: 5rem;
    height: 5rem;
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -20px; }
    @media (min-width: 48em) {
      .tvokids-contest .contest-intro .contest-thumbnail-wrapper {
        width: 6.25rem;
        height: 6.25rem; } }
    .tvokids-contest .contest-intro .contest-thumbnail-wrapper img {
      box-shadow: 4px 7px 20px 1px rgba(0, 0, 0, 0.35);
      border-radius: 100%;
      display: block;
      border: solid 3px #FFF; }
  .tvokids-contest .contest-intro .field-name-field-contest-description {
    background-color: #000;
    padding: 10px 10px 10px 70px;
    margin-top: 10px;
    min-height: 100% !important;
    height: auto; }
    @media (min-width: 48em) {
      .tvokids-contest .contest-intro .field-name-field-contest-description {
        padding: 15px 10px 15px 100px; } }
  .tvokids-contest .contest-intro .field-name-field-contest-image img {
    display: block; }
  @media (min-width: 48em) {
    .tvokids-contest .contest-intro .field-name-field-contest-image {
      width: 50%;
      float: left; } }
  .tvokids-contest .contest-intro .contest-description-wrapper {
    border-radius: 0 0 8px 8px;
    overflow: hidden; }
    .tvokids-contest .contest-intro .contest-description-wrapper:after {
      content: "";
      display: table;
      clear: both; }
  .tvokids-contest .contest-personal-info {
    color: #000;
    padding: 14px; }
    .tvokids-contest .contest-personal-info .form-select {
      background-color: #FFF; }
    .tvokids-contest .contest-personal-info .prefix-thank-you {
      color: #E01382;
      font-size: 24px;
      font-size: 1.5rem;
      padding-bottom: 10px; }
      @media (min-width: 64em) {
        .tvokids-contest .contest-personal-info .prefix-thank-you {
          padding: 16px 0 20px 8px; } }
    .tvokids-contest .contest-personal-info label {
      line-height: 1;
      font-size: 20px;
      font-size: 1.25rem;
      margin: 0; }
      @media (min-width: 64em) {
        .tvokids-contest .contest-personal-info label {
          font-size: 24px;
          font-size: 1.5rem; } }
    .tvokids-contest .contest-personal-info .form-item .description {
      font-family: "SuisseIntl", Helvetica, sans-serif;
      margin-top: 0;
      font-size: 14px;
      font-size: 0.875rem; }
    .tvokids-contest .contest-personal-info .form-submit {
      float: none; }
    @media (max-width: 47.9375em) {
      .tvokids-contest .contest-personal-info .form-actions {
        text-align: center; }
      .tvokids-contest .contest-personal-info .form-submit {
        margin: 0 auto; } }
    @media (min-width: 48em) {
      .tvokids-contest .contest-personal-info fieldset {
        padding-right: 0.35em;
        padding-left: 0.35em;
        margin-bottom: 0; }
      .tvokids-contest .contest-personal-info .field-name-field-parent-phone-num .form-item,
      .tvokids-contest .contest-personal-info .field-name-field-parental-permission .form-item {
        margin-bottom: 0; }
      .tvokids-contest .contest-personal-info .form-submit {
        position: relative; } }
  @media (min-width: 48em) and (min-width: 56em) {
    .tvokids-contest .contest-personal-info .form-submit {
      left: 1rem; } }
    @media (min-width: 48em) {
      .tvokids-contest .contest-personal-info .group-left-column {
        width: 50%;
        float: left; }
      .tvokids-contest .contest-personal-info .group-right-column {
        width: 50%;
        float: right; } }
    .tvokids-contest .contest-personal-info .field-group-fieldset {
      border: 0; }
      @media (max-width: 47.9375em) {
        .tvokids-contest .contest-personal-info .field-group-fieldset {
          padding: 0;
          margin: 0; } }
  .tvokids-contest .contest-thank-you {
    color: #000;
    text-align: center;
    padding: 30px 10px; }
    .tvokids-contest .contest-thank-you li {
      text-align: left; }
    @media (min-width: 48em) {
      .tvokids-contest .contest-thank-you {
        padding: 30px 100px; } }
    .tvokids-contest .contest-thank-you:before {
      font-family: 'tvokids-icons';
      display: inline;
      content: "\e909";
      color: #00793D;
      position: relative;
      top: 2px;
      right: 10px;
      font-size: 55px;
      font-size: 3.4375rem; }
    .tvokids-contest .contest-thank-you .results-thank-you-message {
      position: relative;
      top: -16px;
      font-size: 20px;
      font-size: 1.25rem; }
  .tvokids-contest .contest-theme-message a {
    text-decoration: underline; }
  .tvokids-contest .form-textarea {
    border: 2px solid #009FD4;
    -webkit-box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.25); }

.node-type-contest-tell-us .contest-intro .field-name-field-description-2 {
  color: #000;
  padding: 12px 20px; }
  @media (min-width: 48em) {
    .node-type-contest-tell-us .contest-intro .field-name-field-description-2 {
      width: 50%;
      float: right; } }

.node-type-contest-tell-us .contest-intro .contest-description-wrapper {
  background-color: #FFEC96; }

.node-type-contest-tell-us .tvokids-contest-tell-us-form {
  padding: 0 10px 40px 10px; }
  @media (min-width: 48em) {
    .node-type-contest-tell-us .tvokids-contest-tell-us-form {
      padding: 22px 100px 40px 100px; } }
  .node-type-contest-tell-us .tvokids-contest-tell-us-form label {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 10px 0;
    text-align: center; }
  .node-type-contest-tell-us .tvokids-contest-tell-us-form .form-type-textarea {
    margin-bottom: 20px;
    color: #000; }
  .node-type-contest-tell-us .tvokids-contest-tell-us-form .form-submit {
    float: right; }
  .node-type-contest-tell-us .tvokids-contest-tell-us-form a {
    border-bottom: 1px dotted #009FD4;
    font-size: 20px;
    font-size: 1.25rem; }

.node-type-contest-tell-us .contest-thank-you .results-thank-you-message {
  top: 0; }

.node-type-contest-personality-quiz .contest-intro .contest-description-wrapper {
  background-color: #FFF;
  color: #007298; }
  @media (min-width: 48em) {
    .node-type-contest-personality-quiz .contest-intro .contest-description-wrapper {
      display: flex;
      align-items: stretch; } }

.node-type-contest-personality-quiz .contest-intro .field-name-field-contest-image {
  float: none; }

@media (min-width: 48em) {
  .node-type-contest-personality-quiz .contest-intro.quiz-result-processed .contest-description-wrapper {
    display: block; } }

@media (min-width: 48em) {
  .node-type-contest-personality-quiz .contest-intro.quiz-result-processed .field-name-field-contest-image {
    float: left; } }

.node-type-contest-personality-quiz .contest-intro .contest-rules-link {
  float: left;
  padding-top: 10px;
  border-bottom: 1px dotted #009FD4;
  bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem; }

.node-type-contest-personality-quiz .contest-intro .personality-quiz-result .contest-rules-link {
  margin-left: 2%;
  padding-top: 0px;
  margin-bottom: 20px; }

.node-type-contest-personality-quiz .contest-intro .contest-try-again {
  float: right;
  margin-right: 2%;
  margin-bottom: 12px;
  border-bottom: 1px dotted #009FD4;
  font-size: 20px;
  font-size: 1.25rem; }

.node-type-contest-personality-quiz .contest-intro a {
  text-decoration: none; }

.node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form {
  padding: 20px 10px 20px 10px; }
  @media (min-width: 48em) {
    .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form {
      width: 50%;
      position: relative; } }
  .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form label:first-child {
    font-size: 24px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-left: 0.25em; }
  .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form input:checked + label {
    background: #007298;
    color: #FFF;
    border-radius: 8px; }
  .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form .form-radios .form-item {
    border-bottom: 1px solid;
    border-bottom-color: #E0E0E0;
    position: relative;
    margin: 0 16px; }
    .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form .form-radios .form-item input[type=radio] {
      position: absolute;
      top: 40%;
      left: 8px;
      z-index: 2; }
    .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form .form-radios .form-item label {
      padding: 20px 15px 20px 40px;
      margin-bottom: -1px;
      width: 104%;
      position: relative;
      left: -10px;
      display: inline-block;
      z-index: 1; }
  .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form input.form-submit {
    float: right; }
    @media (min-width: 48em) {
      .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form input.form-submit {
        float: none;
        position: absolute;
        bottom: 1em;
        right: 1em;
        z-index: 1; } }
  .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form .contest-rules-link {
    margin-bottom: 20px; }
    @media (min-width: 48em) {
      .node-type-contest-personality-quiz .tvokids-contest-personality-quiz-form .contest-rules-link {
        margin-bottom: 0;
        position: absolute;
        bottom: 1em;
        left: 1.33em; } }

@media (min-width: 48em) {
  .node-type-contest-personality-quiz .personality-quiz-result {
    width: 50%;
    float: right;
    margin: 0;
    padding: 10px 10px 0 10px; } }

.node-type-contest-personality-quiz .personality-quiz-result-text {
  color: #000;
  margin: 1em 0.512em;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #009FD4; }
  .node-type-contest-personality-quiz .personality-quiz-result-text p {
    padding-top: 8px;
    font-family: "SuisseIntl", Helvetica, sans-serif;
    font-size: 18px;
    font-size: 1.125rem; }

.node-type-contest-upload-image .contest-title-container-primary {
  display: block; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-title-container-primary {
      display: none; } }

.node-type-contest-upload-image .contest-title-container-secondary {
  display: none; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-title-container-secondary {
      display: block; } }

.node-type-contest-upload-image .contest-title {
  padding: 15px 20px;
  display: block;
  border: 2px solid #FFF; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-title {
      margin-top: 38px;
      width: 105%;
      position: relative;
      right: 2px; } }

.node-type-contest-upload-image .contest-image-upload-next {
  float: right;
  margin: 20px 10px 10px 0; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-image-upload-next {
      margin-right: 20px;
      margin-bottom: 20px; } }
  @media (min-width: 64em) {
    .node-type-contest-upload-image .contest-image-upload-next {
      margin-right: 40px; } }

.node-type-contest-upload-image .contest-image-upload-preview-container {
  display: none;
  margin: 1em 10px 0;
  padding: 10px 20px 20px;
  background: #d6d7d8;
  position: relative;
  border: 1px dotted #E01382; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-image-upload-preview-container {
      margin: 1em 20px 0 0px; } }
  @media (min-width: 64em) {
    .node-type-contest-upload-image .contest-image-upload-preview-container {
      margin: 1em 40px 0 20px;
      padding-left: 60px;
      padding-right: 60px; } }
  .node-type-contest-upload-image .contest-image-upload-preview-container.processed {
    display: block; }

.node-type-contest-upload-image .contest-image-upload-preview-text {
  color: #000;
  margin: 5px 0 10px;
  display: block; }

.node-type-contest-upload-image .form-item-contest-upload-image {
  margin-bottom: 0; }

.node-type-contest-upload-image label[for="edit-contest-upload-image-upload"] {
  font-size: 19px;
  font-size: 1.1875rem;
  background: #E01382;
  color: #FFF;
  border-radius: 4px;
  border: 0;
  display: inline-block;
  height: 48px;
  margin: 40px auto 0;
  padding: 11px 20px 0 75px;
  font-family: "tvokids_bold", Helvetica, sans-serif;
  position: relative;
  cursor: pointer; }
  @media (min-width: 29em) {
    .node-type-contest-upload-image label[for="edit-contest-upload-image-upload"] {
      padding: 8px 20px 0 65px;
      font-size: 24px;
      font-size: 1.5rem; } }
  @media (min-width: 48em) {
    .node-type-contest-upload-image label[for="edit-contest-upload-image-upload"] {
      margin: 40px auto 0;
      display: inline-block; } }
  .node-type-contest-upload-image label[for="edit-contest-upload-image-upload"]:before {
    content: "\e911";
    font-size: 36px;
    font-size: 2.25rem;
    position: absolute;
    left: 20px;
    top: 10%;
    font-family: 'tvokids-icons'; }

.node-type-contest-upload-image input[name="files[contest_upload_image]"],
.node-type-contest-upload-image input[name="contest_upload_image_upload_button"],
.node-type-contest-upload-image #contest-image-upload-file-wrapper span.file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.node-type-contest-upload-image .contest-upload-image-cancel {
  border: 0;
  position: absolute;
  top: 5px;
  right: 5px;
  background: none; }
  .node-type-contest-upload-image .contest-upload-image-cancel:after {
    content: "\e90f";
    font-size: 22px;
    font-size: 1.375rem;
    font-family: 'tvokids-icons';
    display: block;
    color: #E01382; }

.node-type-contest-upload-image .contest-upload-image-cancel__text {
  height: 0;
  width: 0;
  display: block;
  text-indent: -9999px; }

.node-type-contest-upload-image .contest-closed-message {
  border-radius: 0; }

.node-type-contest-upload-image .messages {
  font-size: 16px;
  font-size: 1rem;
  text-align: left; }

@media (min-width: 48em) {
  .node-type-contest-upload-image .contest-intro .field-name-field-contest-image {
    position: relative;
    padding: 20px 0 20px 20px;
    z-index: 2;
    width: 47.5%; } }

.node-type-contest-upload-image .contest-intro .field-name-field-contest-image img {
  margin: 0 auto; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-intro .field-name-field-contest-image img {
      margin: 0;
      width: 100%; } }

@media (min-width: 48em) {
  .node-type-contest-upload-image .contest-intro .contest-description-wrapper {
    overflow: visible;
    float: right;
    width: 52.5%; } }

.node-type-contest-upload-image .contest-intro .contest-rules-link {
  margin: 40px auto 20px;
  border-bottom: 1px dotted #009FD4;
  font-size: 16px;
  font-size: 1rem;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-weight: 700;
  display: inline-block; }

.node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="2"] .contest-rules-link,
.node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="3"] .contest-rules-link {
  float: left;
  margin-left: 10px;
  margin-top: 10px; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="2"] .contest-rules-link,
    .node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="3"] .contest-rules-link {
      margin-left: 0; } }
  @media (min-width: 64em) {
    .node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="2"] .contest-rules-link,
    .node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="3"] .contest-rules-link {
      margin-left: 20px; } }

.node-type-contest-upload-image .contest-intro a {
  text-decoration: none; }

.node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="2"] label[for="edit-contest-upload-image-upload"],
.node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form[data-step="3"] label[for="edit-contest-upload-image-upload"] {
  display: none; }

.node-type-contest-upload-image .contest-intro .field-name-field-subtitle,
.node-type-contest-upload-image .contest-intro .field-name-field-description {
  padding-right: 20px;
  margin-left: 20px; }
  @media (max-width: 47.9375em) {
    .node-type-contest-upload-image .contest-intro .field-name-field-subtitle,
    .node-type-contest-upload-image .contest-intro .field-name-field-description {
      padding: 0 10px; } }

.node-type-contest-upload-image .contest-intro .field-name-field-subtitle {
  color: #E01382;
  margin-top: 15px; }

.node-type-contest-upload-image .contest-intro .field-name-field-description {
  color: #000;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.125rem; }

.node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form {
  text-align: center; }
  .node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form .throbber {
    display: none; }
  @media (min-width: 48em) {
    .node-type-contest-upload-image .contest-intro .tvokids-contest-upload-image-form {
      margin-left: 20px;
      margin-right: 20px; } }

.node-type-contest-upload-image .contest-thank-you .results-thank-you-message {
  top: 0; }

.node-type-contest-campaign .contest-title {
  padding-left: 0; }

@media (min-width: 48em) {
  .node-type-contest-campaign .contest-intro {
    border: 2px solid #FFF;
    margin-top: 110px; } }

.node-type-contest-campaign .contest-intro .field-name-field-description {
  background-color: #E01382;
  color: #FFF;
  padding: 10px 20px 0 20px;
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem; }
  @media (min-width: 48em) {
    .node-type-contest-campaign .contest-intro .field-name-field-description {
      font-size: 24px;
      font-size: 1.5rem;
      padding: 30px 40px 0 40px;
      border: 2px solid #FFF; } }
  .node-type-contest-campaign .contest-intro .field-name-field-description p {
    line-height: 1.33; }
  .node-type-contest-campaign .contest-intro .field-name-field-description h2 {
    font-size: 32px;
    font-size: 2rem; }
    @media (min-width: 48em) {
      .node-type-contest-campaign .contest-intro .field-name-field-description h2 {
        font-size: 38px;
        font-size: 2.375rem; } }
  .node-type-contest-campaign .contest-intro .field-name-field-description a {
    color: #FFF;
    text-decoration: underline; }
    .node-type-contest-campaign .contest-intro .field-name-field-description a:hover {
      text-decoration: none; }

.node-type-contest-campaign .contest-intro__inner {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover; }
  @media (max-width: 47.9375em) {
    .node-type-contest-campaign .contest-intro__inner {
      background-image: none; } }
  @media (min-width: 48em) {
    .node-type-contest-campaign .contest-intro__inner {
      height: 280px;
      width: auto; } }

.node-type-contest-campaign .video-player {
  width: 100%;
  margin-right: 0; }
  @media (min-width: 48em) and (max-width: 63.9375em) {
    .node-type-contest-campaign .video-player {
      padding-right: 2px; } }
  .node-type-contest-campaign .video-player .field-name-field-link {
    float: right;
    max-width: 50%;
    text-align: right; }
    @media (min-width: 48em) and (max-width: 63.9375em) {
      .node-type-contest-campaign .video-player .field-name-field-link {
        padding-right: 4px; } }

.node-type-contest-campaign a.transcript-link,
.node-type-contest-campaign .dv-toggle__container {
  float: left;
  max-width: 50%; }

.node-type-contest-campaign .dv-toggle__text {
  color: #000; }

.node-type-contest-campaign .thermo-container {
  float: left; }
  @media (max-width: 47.9375em) {
    .node-type-contest-campaign .thermo-container {
      margin-top: 20px; } }
  @media (min-width: 48em) {
    .node-type-contest-campaign .thermo-container {
      margin-left: 28px;
      top: -80px; } }

.node-type-contest-campaign .thermometer-container-primary {
  display: none; }
  @media (min-width: 48em) {
    .node-type-contest-campaign .thermometer-container-primary {
      display: inline-block; } }

.node-type-contest-campaign .thermometer-container-secondary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding-left: 30px; }
  @media (min-width: 48em) {
    .node-type-contest-campaign .thermometer-container-secondary {
      display: none; } }

.node-type-contest-campaign .contest-intro__details {
  float: left;
  clear: both; }
  @media (min-width: 48em) {
    .node-type-contest-campaign .contest-intro__details {
      position: relative;
      top: -40px;
      right: -2px;
      float: right;
      width: 50%;
      margin-bottom: -40px; } }
  @media (min-width: 64em) {
    .node-type-contest-campaign .contest-intro__details {
      right: 40px; } }

@media (max-width: 47.9375em) {
  .node-type-contest-campaign .tvokids-contest-campaign-form,
  .node-type-contest-campaign .video-player {
    padding: 0 8px; } }

.node-type-contest-campaign .tvokids-contest-campaign-form a,
.node-type-contest-campaign .video-player a {
  font-size: 16px;
  font-size: 1rem;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 1px dotted #009FD4; }
  .node-type-contest-campaign .tvokids-contest-campaign-form a:hover,
  .node-type-contest-campaign .video-player a:hover {
    text-decoration: none; }

.node-type-contest-campaign .tvokids-contest-campaign-form {
  float: left;
  clear: both;
  width: 100%;
  margin-top: 30px; }
  @media (min-width: 48em) and (max-width: 63.9375em) {
    .node-type-contest-campaign .tvokids-contest-campaign-form {
      padding-right: 20px; } }
  .node-type-contest-campaign .tvokids-contest-campaign-form input[type=submit] {
    float: right;
    margin-top: 6px; }
  .node-type-contest-campaign .tvokids-contest-campaign-form label {
    color: #E01382;
    font-size: 28px;
    font-size: 1.75rem;
    text-align: center; }
  .node-type-contest-campaign .tvokids-contest-campaign-form .form-required {
    display: none; }
  .node-type-contest-campaign .tvokids-contest-campaign-form .contest-rules-link {
    float: left; }
  .node-type-contest-campaign .tvokids-contest-campaign-form .form-item {
    margin-bottom: 10px; }
  .node-type-contest-campaign .tvokids-contest-campaign-form textarea,
  .node-type-contest-campaign .tvokids-contest-campaign-form input[type=text],
  .node-type-contest-campaign .tvokids-contest-campaign-form select {
    color: #000; }

.node-type-contest-campaign .progress-indicator {
  margin-top: 20px;
  margin-bottom: 5px;
  text-align: center; }

.node-type-contest-campaign .contest-personal-info {
  float: left;
  clear: both;
  padding: 0 8px;
  margin: 20px 0 20px; }
  @media (min-width: 48em) and (max-width: 63.9375em) {
    .node-type-contest-campaign .contest-personal-info {
      padding-right: 20px; } }
  .node-type-contest-campaign .contest-personal-info label {
    font-size: 20px;
    font-size: 1.25rem; }
  .node-type-contest-campaign .contest-personal-info .form-submit {
    margin: 0 auto;
    position: static;
    font-size: 24px;
    font-size: 1.5rem; }
  .node-type-contest-campaign .contest-personal-info .prefix-thank-you {
    padding: 0;
    margin-bottom: 0.5em; }
  .node-type-contest-campaign .contest-personal-info .field-name-field-parental-permission {
    margin: 10px 0 10px; }

.node-type-contest-campaign .messages {
  font-size: 16px;
  font-size: 1rem;
  float: left;
  clear: both;
  width: 100%;
  margin-top: 20px; }
  @media (min-width: 48em) and (max-width: 63.9375em) {
    .node-type-contest-campaign .messages {
      width: 94%; } }

.node-type-contest-campaign .contest-thank-you {
  padding: 30px 30px 30px 80px;
  background: transparent;
  border-radius: 0;
  text-align: left;
  position: relative;
  line-height: 1;
  outline: 0; }
  @media (max-width: 47.9375em) {
    .node-type-contest-campaign .contest-thank-you {
      margin-left: 8px; } }
  .node-type-contest-campaign .contest-thank-you:before {
    position: absolute;
    left: 0; }
  @media (max-width: 47.9375em) {
    .node-type-contest-campaign .contest-thank-you {
      padding-bottom: 0;
      margin-bottom: 20px; } }

@media (max-width: 47.9375em) {
  .node-type-contest-push-two-button .layout-container {
    padding: 0; } }

@media (min-width: 47.9375em) {
  .node-type-contest-push-two-button .contest-title {
    text-align: center; } }

@media (min-width: 47.9375em) {
  .node-type-contest-push-two-button .contest-title {
    text-align: left; } }

.node-type-contest-push-two-button .contest-intro {
  margin: 20px 10px;
  border-radius: 8px;
  padding: 0 14px 20px 14px;
  width: auto; }
  @media (min-width: 47.9375em) {
    .node-type-contest-push-two-button .contest-intro {
      margin: 107px 0 20px 0;
      padding: 0;
      width: 100%; } }
  .node-type-contest-push-two-button .contest-intro .contest-subtitle-description {
    -webkit-transition: margin 1s;
    transition: margin 1s;
    background-color: #E01382;
    border: 2px solid #FFF;
    margin-bottom: 20px;
    padding: 10px 18px;
    margin: 0 -24px 20px -24px; }
    @media (min-width: 47.9375em) {
      .node-type-contest-push-two-button .contest-intro .contest-subtitle-description {
        margin: 0 16px 26px 16px; } }
    @media (min-width: 64em) {
      .node-type-contest-push-two-button .contest-intro .contest-subtitle-description {
        margin-bottom: 40px;
        padding: 8px 44px 15px 18px; } }
    .node-type-contest-push-two-button .contest-intro .contest-subtitle-description .field-name-field-subtitle h2 {
      font-size: 34px;
      font-size: 2.125rem;
      margin-bottom: 15px; }
      @media (min-width: 64em) {
        .node-type-contest-push-two-button .contest-intro .contest-subtitle-description .field-name-field-subtitle h2 {
          font-size: 38px;
          font-size: 2.375rem; } }
    .node-type-contest-push-two-button .contest-intro .contest-subtitle-description .field-name-field-description {
      padding: 0;
      margin-bottom: 0px;
      background-color: transparent;
      font-size: 24px;
      font-size: 1.5rem; }
      @media (min-width: 47.9375em) {
        .node-type-contest-push-two-button .contest-intro .contest-subtitle-description .field-name-field-description {
          padding: 0;
          border: 0; } }
      @media (min-width: 64em) {
        .node-type-contest-push-two-button .contest-intro .contest-subtitle-description .field-name-field-description {
          font-size: 22px;
          font-size: 1.375rem; } }
      .node-type-contest-push-two-button .contest-intro .contest-subtitle-description .field-name-field-description p {
        margin: 0;
        line-height: 1em; }
  @media (min-width: 47.9375em) {
    .node-type-contest-push-two-button .contest-intro .thermo-container {
      top: auto; } }
  .node-type-contest-push-two-button .contest-intro .contest-intro__details {
    position: relative; }
    @media (min-width: 47.9375em) {
      .node-type-contest-push-two-button .contest-intro .contest-intro__details {
        padding: 0px 16px 20px 0;
        top: auto;
        right: auto;
        margin-bottom: 0px; } }
    @media (min-width: 64em) {
      .node-type-contest-push-two-button .contest-intro .contest-intro__details {
        padding: 0 40px 20px 0;
        right: auto; } }
    .node-type-contest-push-two-button .contest-intro .contest-intro__details .field-name-field-contest-image {
      width: auto;
      float: none;
      margin-bottom: 20px; }
      .node-type-contest-push-two-button .contest-intro .contest-intro__details .field-name-field-contest-image img {
        width: 100%; }
    .node-type-contest-push-two-button .contest-intro .contest-intro__details .video-player {
      margin-right: 0; }
      @media (min-width: 48em) and (max-width: 63.9375em) {
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .video-player .field-name-field-link {
          padding-right: 0px; } }
      @media (min-width: 48em) and (max-width: 49.75em) {
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .video-player .vjs-progress-control {
          display: none; }
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .video-player .vjs-fullscreen .vjs-progress-control {
          display: block; } }
    @media (max-width: 47.9375em) {
      .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form,
      .node-type-contest-push-two-button .contest-intro .contest-intro__details .video-player {
        padding: 0; } }
    .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form {
      margin-top: 10px;
      padding: 0 8px; }
      @media (min-width: 48em) and (max-width: 63.9375em) {
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form {
          padding-right: 0px; } }
      @media (min-width: 47.9375em) {
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form {
          margin-top: 20px; } }
      @media (min-width: 64em) {
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form .question-group .fieldset-wrapper {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          flex: 1 0 auto;
          padding: 0;
          margin: 0;
          border: 0; }
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form .form-type-textfield {
          display: flex;
          flex-direction: column;
          align-content: stretch;
          width: 50%; }
          .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form .form-type-textfield label {
            display: flex;
            flex-grow: 1; }
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form .form-item-question-1 {
          padding-right: 10px; }
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form .form-item-question-2 {
          padding-left: 10px; } }
      @media (min-width: 47.9375em) {
        .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form label {
          font-size: 24px;
          font-size: 1.5rem; } }
      .node-type-contest-push-two-button .contest-intro .contest-intro__details .tvokids-contest-push-two-button-form fieldset {
        border: 0;
        margin: 0;
        padding: 0;
        line-height: 1em; }

.node-type-contest-push-two-button .paragraphs-items {
  margin: 0 25px; }
  @media (min-width: 47.9375em) {
    .node-type-contest-push-two-button .paragraphs-items {
      margin: 0; } }

.node-type-contest-one-question .contest-title {
  margin: 0 0 15px 10px;
  text-align: left; }
  @media (min-width: 47.9375em) {
    .node-type-contest-one-question .contest-title {
      margin-left: 85px;
      margin-bottom: 0; } }

.node-type-contest-one-question .contest-intro__inner {
  height: auto; }
  @media (min-width: 47.9375em) {
    .node-type-contest-one-question .contest-intro__inner {
      margin: 0 18px 18px 18px;
      display: flex; } }

.node-type-contest-one-question .field-name-field-contest-bubble-image {
  position: absolute;
  top: -10px;
  left: -10px;
  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: 47.9375em) {
    .node-type-contest-one-question .field-name-field-contest-bubble-image {
      top: -15px;
      left: -15px;
      width: 100px;
      height: 100px; } }
  .node-type-contest-one-question .field-name-field-contest-bubble-image img {
    border-radius: 50px; }

@media (min-width: 48em) {
  .node-type-contest-one-question .thermometer-container-primary {
    width: 360px;
    display: block;
    flex-shrink: 0; } }

.node-type-contest-one-question .thermometer-container-secondary {
  width: 300px; }
  @media (min-width: 48em) {
    .node-type-contest-one-question .thermometer-container-secondary {
      display: none; } }

.node-type-contest-one-question .thermo-container {
  padding-left: 100px; }
  @media (min-width: 48em) {
    .node-type-contest-one-question .thermo-container {
      padding-left: 0;
      margin-left: 0; } }
  .node-type-contest-one-question .thermo-container .field-name-field-thermo-creature-image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    margin-left: 100px; }
    @media (min-width: 48em) {
      .node-type-contest-one-question .thermo-container .field-name-field-thermo-creature-image {
        margin-left: 0px; } }
    .node-type-contest-one-question .thermo-container .field-name-field-thermo-creature-image img {
      display: block; }
      .node-type-contest-one-question .thermo-container .field-name-field-thermo-creature-image img.thermo-creature {
        height: 378px;
        width: 170px; }
        @media (min-width: 48em) {
          .node-type-contest-one-question .thermo-container .field-name-field-thermo-creature-image img.thermo-creature {
            height: 800px;
            width: 360px; } }
  .node-type-contest-one-question .thermo-container svg {
    max-width: 100%;
    display: block;
    height: auto; }
  .node-type-contest-one-question .thermo-container .monster-meter-wrapper svg {
    height: 378px;
    width: 170px; }
    @media (min-width: 48em) {
      .node-type-contest-one-question .thermo-container .monster-meter-wrapper svg {
        height: 800px;
        width: 360px; } }

.node-type-contest-one-question .thermo-indicator-container {
  z-index: 2;
  margin: 0 0 0 -30px; }

.node-type-contest-one-question .thermo-indicator {
  background-image: none;
  display: table;
  box-sizing: content-box;
  width: 172px;
  height: 43px; }
  .node-type-contest-one-question .thermo-indicator .thermo-indicator-text {
    display: table-cell;
    vertical-align: middle; }
  .node-type-contest-one-question .thermo-indicator svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; }
  @media (min-width: 48em) {
    .node-type-contest-one-question .thermo-indicator {
      left: 0px; } }

.node-type-contest-one-question .contest-intro {
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 20px; }
  @media (min-width: 48em) {
    .node-type-contest-one-question .contest-intro {
      padding: 0; } }
  .node-type-contest-one-question .contest-intro .contest-intro__details {
    padding: 0; }
    @media (min-width: 47.9375em) {
      .node-type-contest-one-question .contest-intro .contest-intro__details {
        padding: 0px;
        flex-grow: 1;
        margin-left: 18px; } }
    .node-type-contest-one-question .contest-intro .contest-intro__details .video-player {
      margin-top: 20px;
      padding: 0 8px; }
      @media (min-width: 47.9375em) {
        .node-type-contest-one-question .contest-intro .contest-intro__details .video-player {
          padding: 0; } }
  .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap {
    position: relative;
    margin-bottom: 20px;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5); }
    .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap::after {
      content: url(../../img/thermometer/arrow-down-icon.svg);
      width: 50px;
      height: 50px;
      position: absolute;
      left: 50%;
      bottom: -25px;
      margin-left: -25px;
      border-radius: 100%; }
    .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-subtitle {
      padding: 10px 18px; }
      .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-subtitle h2 {
        padding: 0;
        margin: 0;
        font-size: 34px;
        font-size: 2.125rem; }
        @media (min-width: 64em) {
          .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-subtitle h2 {
            font-size: 38px;
            font-size: 2.375rem; } }
    .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-description {
      padding: 10px 18px;
      color: #E01382;
      background-color: #FFF; }
      @media (min-width: 47.9375em) {
        .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-description {
          padding: 10px 18px; } }
      .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-description a {
        color: #007298; }
      .node-type-contest-one-question .contest-intro .contest-subtitle-description-wrap .field-name-field-description p {
        margin: 0;
        line-height: 1em; }

.node-type-contest-one-question .tvokids-contest-one-question-form {
  float: none; }
  .node-type-contest-one-question .tvokids-contest-one-question-form label {
    text-align: left; }
    .node-type-contest-one-question .tvokids-contest-one-question-form label p {
      line-height: inherit; }
  .node-type-contest-one-question .tvokids-contest-one-question-form #edit-buttons--2 {
    text-align: center;
    margin-bottom: 1em; }
    .node-type-contest-one-question .tvokids-contest-one-question-form #edit-buttons--2 input[type=submit] {
      float: none;
      display: inline-block;
      margin: 6px 6px 0 6px; }

.node-type-contest-one-question .contest-thank-you {
  padding: 30px; }
  .node-type-contest-one-question .contest-thank-you::before {
    bottom: -27px;
    left: 50%;
    top: auto;
    margin-left: -27px; }

.node-type-contest-one-question .view-contest-submissions-list .view-contest-data-list > li {
  color: white; }
  .node-type-contest-one-question .view-contest-submissions-list .view-contest-data-list > li:nth-child(3n+1) {
    background: #7B2881; }
  .node-type-contest-one-question .view-contest-submissions-list .view-contest-data-list > li:nth-child(3n+2) {
    background: #E01382; }
  .node-type-contest-one-question .view-contest-submissions-list .view-contest-data-list > li:nth-child(3n+3) {
    background: #007298; }
  .node-type-contest-one-question .view-contest-submissions-list .view-contest-data-list > li::before, .node-type-contest-one-question .view-contest-submissions-list .view-contest-data-list > li::after {
    display: none; }

.node-type-contest-one-question .paragraphs-items {
  margin: 0 8px; }

.thermo-container {
  position: relative;
  padding-left: 100px; }
  @media (min-width: 48em) {
    .thermo-container {
      padding-left: 120px; } }
  @media (min-width: 64em) {
    .thermo-container {
      padding-left: 145px; } }
  @media (max-width: 47.9375em) {
    .thermo-container svg {
      height: 300px; } }

.thermo-indicator {
  background-image: url(../../img/thermometer/indicator.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 10px 20px 10px 8px;
  width: 180px;
  height: 59px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem; }
  @media (min-width: 48em) {
    .thermo-indicator {
      padding: 12px 25px 12px 8px;
      width: 205px;
      height: 67px;
      font-size: 18px;
      font-size: 1.125rem;
      left: -10px; } }
  @media (min-width: 64em) {
    .thermo-indicator {
      left: 10px; } }

.thermo-indicator-container {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -28px;
  margin-bottom: 43px;
  height: 285px; }
  @media (min-width: 48em) {
    .thermo-indicator-container {
      margin-top: 10px;
      margin-bottom: 111px;
      height: 477px; } }

/**
 * @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;
  /* Message style */
  /* Hidden position */
  /* Tab that shows when message is hidden */
  /* X Close button */ }
  .browser-warning .browser-warning-msg {
    display: inline-block;
    position: relative;
    margin-left: 67px;
    /* This is to keep alert icon on the screen */
    margin-right: 18px;
    /* Alert icon left of message */ }
    .browser-warning .browser-warning-msg a {
      color: #000;
      text-decoration: underline; }
    .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;
    /* Create room for the tab*/ }
    .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;
    /* Semi circle */
    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"; }
  .node-type-game .browser-warning {
    display: none !important; }

/**
 * @file
 * General colorbox styling.
 */
/*
 * Colorbox Core Style:
 * @see http://www.jacklmoore.com/colorbox/example3/
 */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

#cboxWrapper {
  max-width: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/*
*  Custom Styling
*/
#cboxOverlay {
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90); }

#colorbox {
  outline: 0;
  padding-bottom: 38px; }
  #colorbox #cboxWrapper {
    padding-bottom: 38px; }
  #colorbox #cboxContent {
    background-color: #FFF;
    border-radius: 8px; }
    #colorbox #cboxContent #cboxLoadedContent {
      padding: 60px 20px 0px 20px;
      background: #fff;
      border-radius: 8px; }
    #colorbox #cboxContent #cboxCurrent {
      position: absolute;
      bottom: -38px;
      color: #FFF;
      width: 100%;
      text-align: center;
      font-size: 18px;
      font-size: 1.125rem; }
  #colorbox #cboxLoadingGraphic {
    background: url(../../img/colorbox/loading.gif) no-repeat center center; }
  #colorbox #cboxPrevious,
  #colorbox #cboxNext {
    position: absolute;
    top: 50%;
    text-indent: -9999px;
    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;
    margin-top: -3.125rem; }
    #colorbox #cboxPrevious:disabled,
    #colorbox #cboxNext:disabled {
      display: none; }
    #colorbox #cboxPrevious:active,
    #colorbox #cboxNext:active {
      opacity: 1; }
    #colorbox #cboxPrevious:focus,
    #colorbox #cboxNext:focus {
      outline: none; }
  #colorbox #cboxPrevious {
    margin-left: -20px;
    left: -3.125rem;
    background-image: url("../../img/general_icons/character-banner-arrow-left.svg");
    background-position: 80% 49%;
    transition: left 0.2s; }
    #colorbox #cboxPrevious:hover {
      left: -2.5rem; }
  #colorbox #cboxNext {
    margin-right: -20px;
    right: -3.125rem;
    background-image: url("../../img/general_icons/character-banner-arrow-right.svg");
    background-position: 20% 49%;
    transition: right 0.2s; }
    #colorbox #cboxNext:hover {
      right: -2.5rem; }
  #colorbox #cboxClose {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    background: url("../../img/colorbox/X-Icon.svg") no-repeat top center;
    border: 0px;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    transition: transform 0.2s; }
  #colorbox .gallery-image-item-caption {
    margin: 0;
    padding: 0;
    color: black;
    min-height: 20px; }
    #colorbox .gallery-image-item-caption p:last-child {
      margin-bottom: 0; }

/**
 * @file
 * Colorbox styling for videos.
 */
#colorbox .yt-player-wrapper,
#colorbox .video-player-container,
[data-shownby="colorbox"] .yt-player-wrapper,
[data-shownby="colorbox"] .video-player-container {
  height: auto;
  width: 100%;
  margin-bottom: 5px; }
  #colorbox .yt-player-wrapper .dv-toggle__container,
  #colorbox .video-player-container .dv-toggle__container,
  [data-shownby="colorbox"] .yt-player-wrapper .dv-toggle__container,
  [data-shownby="colorbox"] .video-player-container .dv-toggle__container {
    color: #000; }
    #colorbox .yt-player-wrapper .dv-toggle__container .dv-toggle-switch__button,
    #colorbox .video-player-container .dv-toggle__container .dv-toggle-switch__button,
    [data-shownby="colorbox"] .yt-player-wrapper .dv-toggle__container .dv-toggle-switch__button,
    [data-shownby="colorbox"] .video-player-container .dv-toggle__container .dv-toggle-switch__button {
      margin: 5px; }

#colorbox .video-player-container.bc-video-container-dv,
[data-shownby="colorbox"] .video-player-container.bc-video-container-dv {
  margin-bottom: 55px; }

#colorbox .video-player-container .dv-toggle__container,
[data-shownby="colorbox"] .video-player-container .dv-toggle__container {
  position: absolute;
  bottom: -55px; }

#colorbox .transcript-link,
[data-shownby="colorbox"] .transcript-link {
  margin-bottom: 5px;
  display: block; }

.node-type-gallery {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .node-type-gallery article.node-gallery header {
    padding: 21px 0 9px; }
    .node-type-gallery article.node-gallery header .gallery-title {
      font-size: 24px;
      font-size: 1.5rem;
      margin: -7px 0 -7px 1%; }
  .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .tvokids-gallery-colorbox-item {
    display: none; }
  .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item {
    width: 100%;
    margin-bottom: 1em; }
    @media (min-width: 48em) {
      .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item {
        width: 31%;
        float: left;
        margin: 1%; } }
    .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link {
      cursor: default;
      max-width: 100%; }
      @media (min-width: 48em) {
        .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link {
          cursor: pointer; } }
      .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link img {
        width: 100%;
        display: block;
        border-radius: 8px;
        visibility: hidden; }
      .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link .gallery-image-item-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.8);
        margin: 0;
        padding: 10px 20px;
        color: black;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        max-height: 100%;
        overflow: hidden;
        visibility: hidden; }
        .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link .gallery-image-item-caption p:last-child {
          margin-bottom: 0; }
      .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link.lazy-processed img {
        border: 2px solid white;
        visibility: visible; }
      .node-type-gallery article.node-gallery .field-name-field-gallery-item-image .field-item .tvokids-gallery-colorbox-link.lazy-processed .gallery-image-item-caption {
        visibility: visible; }
  .node-type-gallery #colorbox .tvokids-gallery-colorbox-item img {
    display: inherit;
    margin: auto; }

.node-type-game .region-header-top {
  padding: 8px 0; }

.node-type-game .back-button button {
  bottom: 8px; }

.node-type-game .block-tvokids-logo-player-logo .logo {
  height: 24px;
  display: block; }

.node-type-game .block-tvokids-recommended-games-game-menu {
  position: absolute;
  right: 0;
  bottom: 0; }
  .node-type-game .block-tvokids-recommended-games-game-menu a {
    color: white;
    position: relative; }
    .node-type-game .block-tvokids-recommended-games-game-menu a span {
      display: inline-block;
      text-indent: -9999px; }
    .node-type-game .block-tvokids-recommended-games-game-menu a::after {
      font-family: 'tvokids-icons';
      content: "\e90a";
      font-size: 36px; }
    .node-type-game .block-tvokids-recommended-games-game-menu a.expanded::after {
      content: "\e90f";
      font-size: 24px;
      position: relative;
      top: -4px; }
    .node-type-game .block-tvokids-recommended-games-game-menu a:hover, .node-type-game .block-tvokids-recommended-games-game-menu a:focus {
      text-decoration: none; }

.node-type-game .block-tvokids-recommended-games-recommended-games {
  position: absolute;
  display: none;
  right: 0;
  padding-bottom: 8px;
  background-color: #1E1E1E;
  width: 100%; }
  @media (min-width: 29em) {
    .node-type-game .block-tvokids-recommended-games-recommended-games {
      width: 280px; } }
  @media (min-width: 37.9375em) {
    .node-type-game .block-tvokids-recommended-games-recommended-games {
      width: 560px; } }
  .node-type-game .block-tvokids-recommended-games-recommended-games .tvokids-tile {
    margin: 0 auto;
    width: 280px;
    padding: 14px 20px 8px; }
    @media (min-width: 37.9375em) {
      .node-type-game .block-tvokids-recommended-games-recommended-games .tvokids-tile {
        float: left; }
        .node-type-game .block-tvokids-recommended-games-recommended-games .tvokids-tile:nth-child(odd) {
          padding-right: 10px; }
        .node-type-game .block-tvokids-recommended-games-recommended-games .tvokids-tile:nth-child(even) {
          padding-left: 10px; } }
    .node-type-game .block-tvokids-recommended-games-recommended-games .tvokids-tile .content {
      height: auto;
      padding: 0; }
  .node-type-game .block-tvokids-recommended-games-recommended-games .all-games {
    display: block;
    text-align: center;
    clear: both;
    font-size: 24px;
    font-size: 1.5rem;
    color: #FFF; }
    .node-type-game .block-tvokids-recommended-games-recommended-games .all-games span {
      border-bottom: 2px solid transparent; }
      .node-type-game .block-tvokids-recommended-games-recommended-games .all-games span::before {
        font-family: 'tvokids-icons';
        content: "\e90a";
        margin-right: 5px;
        font-size: 36px;
        position: relative;
        top: 6px; }
    .node-type-game .block-tvokids-recommended-games-recommended-games .all-games:hover, .node-type-game .block-tvokids-recommended-games-recommended-games .all-games:focus {
      text-decoration: none; }
      .node-type-game .block-tvokids-recommended-games-recommended-games .all-games:hover span, .node-type-game .block-tvokids-recommended-games-recommended-games .all-games:focus span {
        border-bottom-color: #FFF; }

.node-type-game .screen-overlay {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000;
  opacity: 0.75; }

.node-type-game.has-overlay #header {
  z-index: 1000; }

.node-type-game.has-overlay .block-tvokids-recommended-games-recommended-games {
  z-index: 1001; }

.node-type-game .layout-container {
  position: initial; }

/* sections.scss */
/* sections/_blog.scss */
/* sections/blog/_node-blog.scss */
body.node-type-blog.player-page-text-content {
  background-color: #00793D; }
  body.node-type-blog.player-page-text-content #header {
    background-color: #00793D; }
    body.node-type-blog.player-page-text-content #header .region-header-top {
      border-bottom: 1px solid #FFF; }
  body.node-type-blog.player-page-text-content .region-content {
    max-width: 630px; }
    body.node-type-blog.player-page-text-content .region-content .block-system-main {
      padding: 15px; }

body.node-type-blog .blog-rounded-image {
  width: 80px;
  border-radius: 60px;
  display: inline-block; }

@media (min-width: 48em) {
  body.node-type-blog .blog-read-more-container {
    margin-top: 35px; } }

body.node-type-blog .blog-read-more-container .blog-read-more-all-image {
  margin-top: 32px; }
  @media (min-width: 48em) {
    body.node-type-blog .blog-read-more-container .blog-read-more-all-image {
      margin-top: 0; } }
  @media (min-width: 48em) {
    body.node-type-blog .blog-read-more-container .blog-read-more-all-image {
      width: 100px; } }

body.node-type-blog .blog-read-more-container .blog-more-bubble-container {
  display: inline-block;
  vertical-align: top;
  margin-top: 32px;
  width: 60%; }
  @media (min-width: 38em) {
    body.node-type-blog .blog-read-more-container .blog-more-bubble-container {
      margin-top: 40px; } }
  @media (min-width: 48em) {
    body.node-type-blog .blog-read-more-container .blog-more-bubble-container {
      margin-top: 10px;
      width: auto; } }
  body.node-type-blog .blog-read-more-container .blog-more-bubble-container::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #FFF;
    position: absolute;
    margin-left: 20px;
    margin-top: 30px; }
    @media (min-width: 38em) {
      body.node-type-blog .blog-read-more-container .blog-more-bubble-container::before {
        margin-top: 20px; } }

body.node-type-blog .blog-read-more-container .blog-read-more-link {
  padding: 20px;
  background-color: #FFF;
  position: relative;
  left: 30px;
  border-radius: 10px;
  color: #00793D;
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  max-width: 200px; }
  @media (min-width: 38em) {
    body.node-type-blog .blog-read-more-container .blog-read-more-link {
      max-width: none; } }
  @media (min-width: 48em) {
    body.node-type-blog .blog-read-more-container .blog-read-more-link {
      padding: 20px 12px;
      font-size: 22px;
      font-size: 1.375rem; } }

article.node-blog {
  font-family: "SuisseIntl", Helvetica, sans-serif; }
  article.node-blog .field-name-field-host {
    font-weight: 700; }
    @media (min-width: 38em) {
      article.node-blog .field-name-field-host {
        margin-bottom: -20px; } }
  article.node-blog .blog-author-link:hover {
    text-decoration: none; }
    article.node-blog .blog-author-link:hover .blog-email-link {
      text-decoration: underline; }
  article.node-blog .blog-author-info-container {
    height: 80px; }
  article.node-blog .blog-author-image {
    float: left;
    margin-right: 15px; }
  article.node-blog .blog-author-name {
    font-size: 22px;
    font-size: 1.375rem;
    color: #00793D; }
  article.node-blog .blog-email-link {
    vertical-align: top;
    display: inline-block;
    color: #000; }
  article.node-blog .blog-post-date {
    color: #00793D;
    font-family: "SuisseIntl", Helvetica, sans-serif;
    font-weight: 700; }
    @media (min-width: 38em) {
      article.node-blog .blog-post-date {
        text-align: right; } }
  article.node-blog .field-name-field-blog-image {
    clear: both;
    margin: 10px 0 10px 0; }
    article.node-blog .field-name-field-blog-image img {
      border: 1px solid #999999; }
      @media (min-width: 38em) {
        article.node-blog .field-name-field-blog-image img {
          max-width: 100%;
          display: block;
          margin: auto; } }
  article.node-blog .field-name-body {
    clear: both; }
    article.node-blog .field-name-body p {
      line-height: normal; }
      article.node-blog .field-name-body p:last-child {
        margin-bottom: 0; }

/* sections/_events.scss */
/* sections/events/_node-events.scss */
body.node-type-event.player-page-text-content.tvokids-5-and-under {
  background-color: #E76E3C; }

body.node-type-event.player-page-text-content.tvokids-6-and-over {
  background-color: #009FD4; }

body.node-type-event .region-header-top {
  border-bottom: 1px solid #FFF; }

body.node-type-event .region-content {
  padding-top: 20px;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  line-height: normal; }
  body.node-type-event .region-content h1.event-title {
    text-align: left;
    padding-top: 0;
    padding-bottom: 10px;
    padding-left: 10px; }
  body.node-type-event .region-content .block-system-main {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px; }
  body.node-type-event .region-content .block-system {
    padding: 0;
    background-color: transparent; }
    body.node-type-event .region-content .block-system article .content {
      padding: 10px;
      border-radius: 8px;
      background-color: #FFF; }
  @media (min-width: 38em) {
    body.node-type-event .region-content .field-name-field-event-image {
      display: inline-block;
      width: auto;
      max-width: 48%;
      vertical-align: top; } }
  body.node-type-event .region-content .field-name-field-event-description {
    padding-top: 10px; }
    @media (min-width: 38em) {
      body.node-type-event .region-content .field-name-field-event-description {
        display: inline-block;
        padding-top: 0;
        width: 49%;
        margin-left: 10px; } }
  @media (min-width: 38em) {
    body.node-type-event .region-content .event-no-image .field-name-field-event-description {
      display: block;
      width: auto; } }
  body.node-type-event .region-content h2.event-list-title {
    padding-top: 10px;
    padding-bottom: 15px;
    font-size: 24px;
    font-size: 1.5rem; }
  body.node-type-event .region-content .future-event-container h2.event-list-title {
    color: #007298;
    border-bottom: 1px solid #009FD4; }
  body.node-type-event .region-content .future-event-container table.event-table tr td {
    background-color: #FFF; }
  body.node-type-event .region-content .past-event-container {
    background-color: #CCCCCC; }
    body.node-type-event .region-content .past-event-container h2.event-list-title {
      color: #000;
      border-bottom: 1px solid #000; }
    body.node-type-event .region-content .past-event-container table.event-table th {
      background-color: #CCCCCC; }
    body.node-type-event .region-content .past-event-container table.event-table tr {
      background-color: #CCCCCC; }

table.event-table {
  table-layout: fixed;
  margin-bottom: 5px; }
  table.event-table th {
    font-size: 22px;
    font-size: 1.375rem;
    font-family: "tvokids_bold", Helvetica, sans-serif;
    text-align: center;
    border-color: #666666;
    padding-top: 10px;
    padding-bottom: 10px; }
  table.event-table tr {
    border-color: #666666; }
    table.event-table tr:last-child {
      border-bottom: none; }
    table.event-table tr td {
      line-height: 1.5625em;
      border-color: #666666; }
      @media (min-width: 48em) {
        table.event-table tr td {
          border-right: 1px dotted;
          padding-left: 15px;
          padding-right: 15px; }
          table.event-table tr td:last-child {
            border-right: none; } }
      table.event-table tr td::before {
        font-size: 22px;
        font-size: 1.375rem;
        font-family: "tvokids_bold", Helvetica, sans-serif;
        width: 110px; }
      table.event-table tr td .bt-content {
        font-size: 16px;
        font-size: 1rem; }

/* sections/_page.scss */
/* sections/page/_basic-page.scss */
.node-video .program-title {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 12px;
  margin-bottom: 6px; }

@media (min-width: 64em) and (max-height: 45em) {
  article.node-video {
    margin: auto;
    width: 880px; } }

.video-player {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  margin-bottom: 20px; }
  @media (min-width: 48em) {
    .video-player {
      width: 65.95745%;
      float: left;
      margin-right: -100%;
      margin-left: 0;
      clear: none;
      margin-bottom: 0px; } }
  @media (min-width: 64em) {
    .video-player {
      width: 65.95745%;
      float: left;
      margin-right: -100%;
      margin-left: 0;
      clear: none; } }
  .video-player .transcript-link {
    font-family: "SuisseIntl", Helvetica, sans-serif;
    display: inline-block;
    font-size: 16px;
    font-size: 1rem;
    margin-top: 8px;
    font-weight: 700;
    max-width: 35%; }
    @media (min-width: 56em) {
      .video-player .transcript-link {
        max-width: 30%; } }
  .video-player .sponsor-container {
    max-width: 60%;
    float: right;
    margin-top: 7px; }
    @media (min-width: 56em) {
      .video-player .sponsor-container {
        max-width: 65%; } }
    .video-player .sponsor-container .sponsor-preamble {
      font-family: "SuisseIntl", Helvetica, sans-serif;
      font-weight: 300;
      color: #DBDBDB;
      font-size: 14px;
      font-size: 0.875rem;
      text-align: right;
      margin-bottom: 5px; }
      @media (min-width: 64em) {
        .video-player .sponsor-container .sponsor-preamble {
          margin-bottom: 0; } }
    .video-player .sponsor-container img {
      width: auto;
      float: right;
      max-height: 33px; }
      @media (min-width: 48em) {
        .video-player .sponsor-container img {
          max-height: 45px; } }
      @media (min-width: 64em) and (min-height: 45em) {
        .video-player .sponsor-container img {
          max-height: 50px; } }
      @media (min-width: 64em) and (min-height: 56.3125em) {
        .video-player .sponsor-container img {
          max-height: 85px; } }
  .video-player .dv-toggle__container {
    clear: both;
    float: left; }

.video-description {
  font-family: "SuisseIntl", Helvetica, sans-serif;
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none; }
  @media (min-width: 48em) {
    .video-description {
      width: 31.91489%;
      float: right;
      margin-left: 0;
      margin-right: 0;
      clear: none; } }
  @media (min-width: 64em) {
    .video-description {
      width: 31.91489%;
      float: right;
      margin-left: 0;
      margin-right: 0;
      clear: none; } }
  .video-description .field-name-field-short-description {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 1em; }
  .video-description h1 {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 15px; }
    .video-description h1.dv-extra-padding {
      margin-top: 45px; }

.page-videos .section-content {
  padding-bottom: 0px;
  margin-bottom: 0px; }

.page-videos .block-tvokids-video-playlist-content-list {
  margin-top: -15px; }
  @media (min-width: 48em) {
    .page-videos .block-tvokids-video-playlist-content-list {
      margin-top: 0; } }

/* sections/page/_node-game.scss */
.node-type-game .game-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  font-weight: 900;
  padding: 15px 10px 10px 10px; }
  @media (min-width: 48em) {
    .node-type-game .game-title {
      padding: 10px; } }

.node-type-game .field-name-field-sponsorship-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1E1E1E;
  text-align: center; }
  .node-type-game .field-name-field-sponsorship-image::before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
    /* Adjusts for spacing */ }
  .node-type-game .field-name-field-sponsorship-image .field-items {
    display: inline-block;
    vertical-align: middle; }
    .node-type-game .field-name-field-sponsorship-image .field-items .field-item {
      position: relative; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }
      .node-type-game .field-name-field-sponsorship-image .field-items .field-item .progress {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 1rem;
        overflow: hidden;
        background-color: #DADADA; }
        .node-type-game .field-name-field-sponsorship-image .field-items .field-item .progress .progress-bar {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          color: #FFF;
          text-align: center;
          background-color: #009FD4;
          transition: width .6s ease;
          background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
          background-size: 1rem 1rem;
          -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite; }

body.poll-node-page {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  body.poll-node-page.player-page-text-content {
    background-color: #E76E3C; }
    body.poll-node-page.player-page-text-content.tvokids-6-and-over {
      background-color: #009FD4; }
  body.poll-node-page .region-content .block-system-main {
    padding: 0;
    background: transparent; }
    body.poll-node-page .region-content .block-system-main article.node .content {
      background-color: #FFF;
      border-radius: 8px; }
    body.poll-node-page .region-content .block-system-main article.node .poll-content {
      padding: 40px 20px; }

.node-poll-left-col {
  padding-bottom: 12px;
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none; }
  @media (min-width: 48em) {
    .node-poll-left-col {
      width: 48.93617%;
      float: left;
      margin-right: -100%;
      margin-left: 0;
      clear: none;
      padding-bottom: 0; } }
  .node-poll-left-col .field-name-field-embedded-video a.transcript-link {
    margin-top: 5px;
    display: inline-block; }
  .node-poll-left-col .field-name-field-embedded-video .bc-video-container-dv {
    margin-bottom: 40px; }
    .node-poll-left-col .field-name-field-embedded-video .bc-video-container-dv .dv-toggle__container {
      position: absolute;
      bottom: -50px;
      margin-left: 0; }

.node-poll-right-col {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000; }
  @media (min-width: 48em) {
    .node-poll-right-col {
      width: 48.93617%;
      float: right;
      margin-left: 0;
      margin-right: 0;
      clear: none; } }
  @media (min-width: 48em) {
    .node-poll-right-col {
      padding: 0 0 0 20px; } }
  .node-poll-right-col .messages {
    margin-top: 20px; }

.field-name-field-question {
  color: #007298; }

.field-name-field-thank-you-message {
  padding-top: 20px;
  padding-bottom: 20px; }

.field-name-field-thank-you-message .field-item:before {
  font-family: 'tvokids-icons';
  display: inline;
  content: "\e909";
  color: #00793D;
  font-size: 45px;
  font-size: 2.8125rem;
  float: left;
  margin-right: 5px;
  position: relative;
  left: -5px; }

.poll {
  overflow: visible; }
  .poll .vote-form {
    margin-top: 18px; }
    .poll .vote-form .choices {
      margin: 0 0 1em 0; }
      .poll .vote-form .choices input.form-radio-image {
        position: absolute;
        left: -9999px; }
        .poll .vote-form .choices input.form-radio-image + label {
          padding: 9px;
          display: block; }
          .poll .vote-form .choices input.form-radio-image + label img {
            display: inline-block;
            vertical-align: middle;
            margin-right: 8px;
            pointer-events: none; }
          .poll .vote-form .choices input.form-radio-image + label span.label-wrap {
            display: inline-block;
            vertical-align: middle;
            max-width: 55%; }
            @media (min-width: 29em) {
              .poll .vote-form .choices input.form-radio-image + label span.label-wrap {
                max-width: 70%; } }
            @media (min-width: 48em) {
              .poll .vote-form .choices input.form-radio-image + label span.label-wrap {
                max-width: 60%; } }
        .poll .vote-form .choices input.form-radio-image:checked + label {
          background-color: #FFEB92;
          border-radius: 8px;
          border: 1px solid #000;
          padding: 8px; }
        .poll .vote-form .choices input.form-radio-image:focus + label > img {
          outline: #3b99fc auto 5px; }
    .poll .vote-form .form-item-choice {
      margin-top: 8px; }

.results-title {
  padding: 0px 0 12px 0; }

.poll-results {
  clear: both;
  padding-top: 8px; }
  @media (min-width: 48em) {
    .poll-results {
      padding-top: 15px; } }
  .poll-results .text {
    color: #000;
    font-size: 18px;
    font-size: 1.125rem; }
  .poll-results .poll-bar {
    margin-bottom: 22px;
    display: flex;
    align-items: stretch; }
    .poll-results .poll-bar.poll-bar-selected {
      background-color: #FFEB92;
      border-radius: 8px;
      border: 1px solid #000;
      padding: 8px; }
    .poll-results .poll-bar .poll-bar-image,
    .poll-results .poll-bar .poll-bar-info-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center; }
    .poll-results .poll-bar .poll-bar-image {
      max-width: 100px;
      width: 26%;
      margin-right: 8px; }
    .poll-results .poll-bar .poll-bar-info-wrap {
      flex-grow: 1; }
  .poll-results .poll-result-bar {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none; }
    .poll-results .poll-result-bar .percent {
      color: #007298;
      width: 40px;
      font-size: 18px;
      font-size: 1.125rem;
      padding-top: 2px;
      float: right;
      text-align: right; }
    .poll-results .poll-result-bar .bar {
      border: 1px solid #007298;
      background: #FFF;
      height: 25px;
      float: left;
      width: calc(100% - 50px); }
    .poll-results .poll-result-bar .bar .foreground {
      background: #007298;
      height: 24px; }

.play-poll-video:hover, .play-poll-video:focus {
  text-decoration: none; }

.play-poll-video:after {
  font-family: 'tvokids-icons';
  font-size: 24px;
  font-size: 1.5rem;
  content: "\ea15";
  position: relative;
  top: 4px;
  left: 6px;
  margin-right: 5px; }

.node-type-open-poll .field-name-field-question {
  padding-bottom: 12px; }

.field-name-field-open-poll-response textarea {
  height: 135px;
  border-style: solid;
  border-width: 1px;
  border-color: #666666;
  border-radius: 2px;
  background-color: #FFF;
  box-shadow: inset 0px 2px 10px 0px rgba(0, 0, 0, 0.57); }

.open-poll-thank-you-msg:before {
  font-family: 'tvokids-icons';
  display: inline;
  content: "\e909";
  color: #00793D;
  font-size: 45px;
  font-size: 2.8125rem;
  float: left;
  margin-right: 5px;
  position: relative;
  left: -5px; }

/**
 * @file
 * Anything related to the contact page.
 */
/**
 * @file
 * Styling for the contact page.
 */
body.page-contact form.contact-form .form-actions {
  padding-bottom: 40px;
  border-bottom: 1px solid #E01382;
  margin-bottom: 40px;
  text-align: right; }
  body.page-contact form.contact-form .form-actions * {
    display: inline-block; }
  body.page-contact form.contact-form .form-actions .form-submit {
    margin-left: 35px; }

@media (min-width: 48em) {
  body.page-contact form.contact-form .form-type-select {
    margin-right: 20px; }
  body.page-contact form.contact-form .form-type-select,
  body.page-contact form.contact-form .form-type-textfield {
    display: inline-block;
    width: 48%; }
  body.page-contact form.contact-form .form-item {
    margin-bottom: 40px; }
  body.page-contact form.contact-form .form-item-message {
    margin-bottom: 10px; }
  body.page-contact form.contact-form .form-item-yes-parents-permission {
    margin-bottom: 5px; }
  body.page-contact form.contact-form .form-actions {
    font-size: 20px;
    font-size: 1.25rem; } }

body.page-contact .contact-info .contact-item {
  font-size: 16px;
  font-size: 1rem; }
  body.page-contact .contact-info .contact-item h2 {
    font-size: 18px;
    font-size: 1.125rem;
    padding-bottom: 5px; }
  body.page-contact .contact-info .contact-item a {
    color: #E01382; }
  @media (min-width: 48em) {
    body.page-contact .contact-info .contact-item {
      font-size: 18px;
      font-size: 1.125rem;
      display: inline-block;
      width: 48%;
      vertical-align: top; }
      body.page-contact .contact-info .contact-item:first-child {
        margin-right: 3%; }
      body.page-contact .contact-info .contact-item h2 {
        font-size: 20px;
        font-size: 1.25rem; } }

body.page-contact .contact-thank-you-img {
  height: 100px;
  width: 100px;
  margin: auto;
  display: block;
  margin-bottom: 30px; }

body.page-contact .url-textfield {
  display: none; }

/* sections/_apps.scss */
/* sections/apps/_node-app.scss */
body.node-type-app .layout-container {
  padding: 0; }
  @media (min-width: 48em) {
    body.node-type-app .layout-container {
      padding: 0 20px 0 20px; } }

body.node-type-app.player-page-text-content.tvokids-5-and-under {
  background-color: #E76E3C; }

body.node-type-app.player-page-text-content.tvokids-6-and-over {
  background-color: #009FD4; }

body.node-type-app .region-header-top {
  border-bottom: 1px solid #FFF; }

body.node-type-app .region-content {
  padding-top: 22px;
  font-family: "SuisseIntl", Helvetica, sans-serif;
  line-height: normal; }
  body.node-type-app .region-content .block-system-main {
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 0;
    background-color: transparent; }
    body.node-type-app .region-content .block-system-main .app-title {
      text-align: left;
      padding-top: 0;
      padding-bottom: 12px;
      padding-left: 10px; }
    body.node-type-app .region-content .block-system-main article .content {
      padding: 12px;
      background-color: #FFF; }
      @media (min-width: 48em) {
        body.node-type-app .region-content .block-system-main article .content {
          padding: 18px;
          border-radius: 8px; } }

@media (min-width: 48em) {
  body.node-type-app .node-app-left-col,
  body.node-type-app .node-app-right-col,
  body.node-type-app .field-name-field-app-screenshots .field-items .field-item {
    float: left;
    width: 49%; } }

body.node-type-app .node-app-left-col {
  margin-right: 1%; }
  body.node-type-app .node-app-left-col .field-name-field-app-image .field-item img {
    display: block; }

body.node-type-app .node-app-right-col {
  padding: 0;
  margin-left: 1%; }
  body.node-type-app .node-app-right-col .app-age-group,
  body.node-type-app .node-app-right-col .app-devices {
    font-weight: bold; }
  body.node-type-app .node-app-right-col .app-devices {
    margin: 0; }
  body.node-type-app .node-app-right-col .preschool {
    color: #B04416; }
  body.node-type-app .node-app-right-col .school-age {
    color: #007298; }
  body.node-type-app .node-app-right-col .app-devices-list {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-size: 0.75rem; }
    body.node-type-app .node-app-right-col .app-devices-list li {
      list-style: none;
      border: 1px solid;
      padding: 5px 8px;
      float: left;
      margin-right: 10px; }

body.node-type-app .apple-download-url {
  margin-right: 6px; }

body.node-type-app .node-app-screenshots:after {
  content: "";
  display: table;
  clear: both; }

body.node-type-app .node-app-screenshots h3 {
  color: #007298;
  border-bottom: 1px solid #007298;
  padding-bottom: 10px;
  margin-bottom: 20px; }
  @media (min-width: 48em) {
    body.node-type-app .node-app-screenshots h3 {
      margin-bottom: 0; } }

body.node-type-app .field-name-field-app-screenshots img {
  display: block; }

body.node-type-app .field-name-field-app-screenshots .field-items .field-item {
  margin-top: 2%; }
  @media (min-width: 48em) {
    body.node-type-app .field-name-field-app-screenshots .field-items .field-item.even {
      margin-right: 1%; }
    body.node-type-app .field-name-field-app-screenshots .field-items .field-item.odd {
      margin-left: 1%; } }

body.node-type-app .app-message-wrapper {
  text-align: center;
  margin-bottom: 30px; }
  body.node-type-app .app-message-wrapper .app-message h2 {
    color: #E01382;
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-top: 30px; }

/* _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 {
    float: left;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline; }
  .pager .pager-current {
    padding: 0.4096em 0.8em; }
  .pager .pager-ellipsis {
    margin-right: 1em; }
  .pager a {
    margin-right: 0.8em; }
  .pager .pager-next {
    clear: left; }
    @media (min-width: 29em) {
      .pager .pager-next {
        clear: none; } }
  .pager .pager-next, .pager .pager-last {
    margin-top: 0.8em; }
    @media (min-width: 29em) {
      .pager .pager-next, .pager .pager-last {
        margin-top: 0; } }

/* _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 */
