/* New Survey wide Add-ons */

:root {
    --vv-dk-blue: #3b79a8;
    --vv-white: #ffffff;
    --vv-black: #000000;
    --vv-charcoal: #000033;
    --vv-border-dark: #222222;
    --vv-cyan: #24b6ce;
    --vv-blue: #003366;
    --vv-gray-50a: #b6b6b7bd;
    --vv-deep-space-navy: #234664;
    --vv-font-sansv1: "Barlow", "Trebuchet MS", sans-serif;
    --vv-font-sans: "Roboto", sans-serif;
}

html, body {
  font-family: var(--vv-font-sans) !important;
}

* {
  font-family: inherit;
}

body {
  background-image: url(https://media.researchresults.com/NBC/Background/nebula_lndscp_h_1.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  height: auto;
  background-attachment: fixed;
}

/*
.button {
    text-decoration: none;
    color: var(--vv-blue);
    background: #ffffff;
    border: 2px solid var(--vv-dk-blue);
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
    transition: transform 180ms ease, background 180ms ease;
    font-size: 1em  
}
*/

.button {
  text-decoration: none;
  color: #ffffff;
  background: #3b79a8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 36px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.25);
  transition: background 0.5s ease-out;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  width: 320px;
  font-family: var(--vv-font-sans) !important;
}

.button:hover {
  background: rgba(8, 26, 46, 0.75);
}


.col-legend {
    vertical-align: bottom !important;
}

.vvlogo {
    width: 250px;
    display: block;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

img.vvlogo,
.header-uuid,
.question-uuid,
.footer-uuid {
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome, Edge, Opera and Firefox */
}

/* Hidden UUID */

.exit-message {
  z-index: 9;
  position: inherit;
}

.header-uuid {
    color: hsl(0deg 75% 99%)!important;
    opacity: 0.05!important;
    z-index: 9;
    top: -68px;
    position: relative;
    font-size: 1.5em;
    font-family: sans-serif;
}

.question-uuid {
    color: hsl(0deg 75% 99%)!important;
    opacity: 0.5!important;
    font-size: 1em;
    font-family: sans-serif;
}

.footer-uuid {
  color: hsl(0deg 75% 99%)!important;
  opacity: 0.05!important;
  position: relative;
  top: -95px;
  padding: 1.5em;
  pointer-events: none;
  font-size: 16px!important;
  font-family: sans-serif;
}

form#primary {
    animation: none;
    overflow: hidden;
}



/* Thank you - Points */
.score-container {
    background-color: var(--vv-white);
    font-size: 15px;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    top: -45px;
    max-width: 650px;
    margin: auto;
}

.score-inner {
    height: 150px;
    display: flex;
    margin-bottom: 50px;
}

.score-total, .score-earned {
    margin: auto;
    border: 1px solid var(--vv-blue);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

img.score-graphic {
    width: 60%!important;
    margin: auto;
}


.score-check {
    color: var(--vv-blue);
    margin: auto;
    font-weight:600;
    max-width: 400px;
}

.score-thankyou {
    font-size: 37px;
    color: var(--vv-blue);
    padding: 10px;
    font-weight:600;
}

.score-points {
    font-size: 35px;
    font-weight: 600;
}

.score-button {
    margin-top: 30px;
    text-align: center;
}

.score-button a {
    background: var(--vv-blue);
    padding: 15px;
    border-radius: 10px;
    max-width: 200px;
    font-size: 16px;
    text-decoration: none;
    color: var(--vv-white)!important;
    top: 13px;
}

/* RR PROGRESS BAR */

.rr-progress-container {
  width: 100%;
  background-color: var(--vv-blue);
  height: 10px;
  display: block;
}

.rr-progress-bar {
  color: var(--vv-white);
  text-align: right;
  font-size: x-small;
  display: block;
  height: inherit;
  background: var(--vv-deep-space-navy);
  -webkit-animation-name: pulse;
  -webkit-animation-duration: 3.2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 3.7s;
  animation-iteration-count: infinite;
}

.progress-bar {
  display: none;
}


/* Main Survey */

.survey-page {
  background-color: var(--vv-charcoal);
  padding: 0px;
  padding-top: 25px;
  -webkit-animation: fade-in 0.45s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards;
  animation: fade-in 0.45s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards
}

.question-text {
    color: var(--vv-black)!important;
}

.non-touch {
  margin: 0;
  padding: 0;
}

.survey-body {
  box-shadow: none;
  background-color: transparent;
}

.survey-warning {
  background-color: var(--vv-black);
}

.vv-header {
background-color: var(--vv-charcoal);
}

.footer {
    width: 100%;
    bottom: 0;
    position: relative;
    background-color: transparent;
    left: 0;
    height: 2em;
    color: var(--vv-white);
    margin:0px!important;
    margin-top: 0px !important;
    margin-bottom: 13px!important;
}

.footer a {
    font-weight: bold;
    color: var(--vv-white)!important;
}

.footer a:hover {
    color:var(--vv-white)ad !important;
}

.vv-background-image {
  width: 100%;
  position: fixed;
  top: 55px;
  max-width: 1920px;
  margin: 0 auto;
  opacity: .28;
  -webkit-animation: fade-in .5s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards;
  animation: fade-in .5s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards
}

form#primary {
  background: var(--vv-white)!important;
  padding: 20px;
  -webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards;
  animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards;
  border-radius: 5px;
}


/* Question Styles */

span.sq-atm1d-legend {
  color: var(--vv-white)!important;
}


i.sq-atm1d-icon-unselected.fa.fa-square-o.fa-icon-square-o {
  color: var(--vv-white)!important;
}

i.sq-atm1d-icon-selected.fa.fa-check-square-o.fa-icon-check-square-o {
  color: var(--vv-white)!important;
}

li.sq-atm1d-button.clickable.sq-atm1d-selected {
  background-color: #21a2c28f!important;
}

i.sq-atm1d-icon-unselected.fa.fa-circle-o.fa-icon-circle-o {
  color: var(--vv-white)!important;
}

i.sq-atm1d-icon-selected.fa.fa-dot-circle-o.fa-icon-dot-circle-o {
  color: var(--vv-white)!important;
}

textarea {
  border: none!important;
  color: var(--vv-white)!important;
  background-color: var(--vv-gray-50a)!important;
}

.answers,
.fir-select2-dropdown {
  color: #0b0c0f!important;
}

.legend-level-1 {
  background-color: var(--vv-gray-50a)!important;
  text-transform: uppercase!important;
}

.grid-table-mode .element:hover, .grid-table-mode .element:focus, .grid-table-mode .element:active {
    background-color: var(--vv-dk-blue) !important;
}

.legend {
  background: var(--vv-white)!important;
}

.non-touch .fir-icon:hover .rounded .fir-selected,
.non-touch .fir-icon:hover .square .fir-selected,
.non-touch .grid-table-mode .clickableCell:hover .fir-icon .rounded .fir-selected,
.non-touch .grid-table-mode .clickableCell:hover .fir-icon .square .fir-selected {
  fill: var(--vv-white)!important;
}

h1.survey-error-text {
  color: var(--vv-white)!important;
}

.survey-error {
  background-color: var(--vv-blue)!important;
}

h2.question-error-text {
  color: var(--vv-blue)!important;
  text-transform: uppercase!important;
  font-weight: 600;
  -webkit-animation-name: pulse;
  -webkit-animation-duration: 2.3s;
  -webkit-animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
}

.cell.hasError,
.answers-list .element.hasError,
.element.hasError:hover,
.rowLegendErr .oe,
.colLegendErr .oe {
  background-color: var(--vv-blue)!important;
    -webkit-animation-name: pulse;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: 3;
  color: #fff;
}

.fir-icon.selected .rounded {
    fill: var(--vv-white)!important;
}

.fir-icon .rounded {
    fill: var(--vv-white)!important;
}

.non-touch .fir-icon.selected:hover .rounded .fir-selected,
.non-touch .fir-icon.selected:hover .square .fir-selected,
.non-touch .grid-table-mode .clickableCell:hover .fir-icon.selected .rounded .fir-selected,
.non-touch .grid-table-mode .clickableCell:hover .fir-icon.selected .square .fir-selected {
  fill: var(--vv-blue) !important;
}

.answers img {
  max-width: 100px;
  max-height: 75px;
}


/*
span.cell-text.cell-sub-column {
  color: var(--vv-white);
}
*/

.disclaimer {
    background-color: var(--vv-dk-blue);
    border: none;
    line-height: 1.4;
    padding: 1em;
    font-size: 85%;
    color: var(--vv-white);
}

h2.instruction-text {
    color: var(--vv-black)!important;
}

h1.comment-text {
    color: var(--vv-black)!important;
}


.logo-image {
    margin-top: 50px!important;
}


@media all and (max-width: 1200px) { 
  span.cell-text.cell-sub-column {
      color: var(--vv-black);
  }
}


@media all and (max-width: 768px) { 
    svg#Layer_1 {
        WIDTH: 80VW!important;
    }

    span.cell-text.cell-sub-column {
        color: var(--vv-black);
    }
    .score-thankyou {
        font-size: 20px;
        padding: 10px;
    }

    .score-points {
        font-size: 20px;
    }

    .score-check {
        margin-bottom: 30px;
    }

    .score-inner {
        height: 100px;
    }

    .score-container {
        top: -165px;
        margin-bottom: -135px;
    }
}

@media all and (max-width: 480px) { 
      img.vvlogo {
          width: 160px!important;
      }
      .logo-image {
          margin-top: 10px!important;
      }

        h1.exit-message-header {
            font-size: 14px!important;
        }

        p.exit-message-text {
            font-size: 12px!important;
            margin-bottom: 60px!important;
        }

        .score-container {
            font-size: 12px;
        }
        
        .score-inner {
         height: 90px;
        }
}


.devContainer h2.instruction-text {
    color: var(--vv-black)!important;
}

.devContainer span.cell-text.cell-sub-column {
    color: var(--vv-black)!important;
}

.devContainer .question-text {
    color: var(--vv-black)!important;
}

.sq-atmrating.hasRows .sq-atmrating-row-legend {
    color: var(--vv-black)!important;
}

td.atmrating_leftPosition,
td.atmrating_midPosition,
td.atmrating_rightPosition {
    color: var(--vv-black)!important;
}

.pb-container {
    background-color: var(--vv-blue)!important;
    border-color: var(--vv-blue)!important;
}

#question_Programs_Ratings .atmrating-hover, #question_Programs_Ratings .atmrating-selected {
    background-color: #3e75ce!important;
}


.quota-approval p {
    color: var(--vv-black)!important;
}

img.background-item {
    min-width: 100vw!important;
    min-height: 100vh!important;
}

.logo {
    display: none!important;
}

svg#Layer_1 {
    WIDTH: 50VW;
    DISPLAY: BLOCK;
    MARGIN: AUTO;
}



h1.exit-message-header {
    display: none;
}


th.cell.nonempty.legend.row-legend.row-legend-left.row-legend-basic.legend-level-1.mobile.border-collapse {
    background-color: var(--vv-dk-blue) !important;
    color: #fcfbfb!important;
    text-transform: inherit!important;
    line-height: 22px;
    font-size: 18px;
}

.survey-info {
    display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

th.cell.nonempty.legend.row-legend.row-legend-left.row-legend-basic.legend-level-1.mobile.border-collapse {
    background-color: #68539e!important;
}
}

p.exit-message-text {
    background: var(--vv-white);
    color: var(--vv-dk-blue);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 0px;
    font-weight: bold;
}

.col-legend {vertical-align: bottom !important;}

img.vvlogo {
  pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.header-uuid {
    color: hsl(259deg 75% 29%);
    z-index: 99;
    top: 9px;
    position: fixed;
    font-size: 1.5em;
    font-family: sans-serif;
     pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.question-uuid {
    color: hsl(0deg 75% 99%);
    opacity: 0.5!important;
	font-size: 1em;
	 font-family: sans-serif;
	 pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.footer-uuid {
	color: hsl(0deg 75% 99%);
	opacity: 0.5!important;
	position: relative;
	top: -95px;
	padding: 1.5em;
	pointer-events: none;
	font-size: 16px!important;
	font-family: sans-serif;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
