/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on April 21, 2017 */
@font-face {
    font-family: 'Carton';
    src: url('../fonts/carton_six-webfont.woff2') format('woff2'),
         url('../fonts/carton_six-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*General styles*/
html, body {
  margin: 0;
  padding: 0;
  font-weight: 100;
  overflow-x: hidden;
}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td, input
{
  font-family: 'Carton', sans-serif;
      font-weight: 100;
}
a {
  text-decoration: none;
}

.row {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.none {
  display: none;
}
/*colors

#3894b1 - sky top blue
#eaf6bc - sky bottom blue
#2e7787 - sea top blue
#203e41 - sea bottom blue

#085D82 - text blue on yellow
#FFE70F - yellow
FF4B2D - red

*/
/*Header special*/
.header {
  /*height: 40; /*or 650px. muuda*/
  /*height: 100%;*/
  height: 20rem;
  padding: 2%;

  background: #3894b1; /* For browsers that do not support gradients */
   background: -webkit-linear-gradient(#3894b1, #eaf6bc); /* For Safari 5.1 to 6.0 */
   background: -o-linear-gradient(#3894b1, #eaf6bc); /* For Opera 11.1 to 12.0 */
   background: -moz-linear-gradient(#3894b1, #eaf6bc); /* For Firefox 3.6 to 15 */
   background: linear-gradient(#3894b1, #eaf6bc); /* Standard syntax */
}

/*logo area*/
.logoArea {
  width: 25rem;
  z-index: 5;
  position: relative;
}
.logoArea h2 {
  font-size: 2.5rem;
  color: #FFE911;
  margin-bottom: 1.4rem;
  transform: rotate(-3deg);
  margin-top: 0;
}
.logoArea img {
  height: 9rem;
}
.logoArea p {
  color: #FF3A1D;
  font-size: 1.5rem;
  text-align: center;
  left: -22%;
  position: relative;
  margin-top:.3rem;
}
/*supporters logos*/
.supporters {
 z-index: 5;
 position: absolute;
 top: 0rem;
 right: 0;
}
.supporters a {
  display: inline-block;
}
.supporters img {
  margin-left: 1.8rem;
  height: 4.5rem;
}

/*clouds*/
.cloud {
  background-image: url('../img/cloud.svg');
  background-repeat: no-repeat;
  background-size: 7rem 5rem;
  width: 7rem;
  height: 5rem;
  position: absolute;
  z-index: 1;
}
.cloud-1 {
  top: 30%;
  left: -5%;
}
.cloud-2 {
  top: 13%;
  left: 24%;
}
.cloud-3 {
  top: 60%;
  left: 80%;
}
.cloud-4 {
  top: 7rem;
  right: 0rem;
}
/*birds*/
.bird {
  background-image: url('../img/seagull.svg');
  background-repeat: no-repeat;
  background-size: 4rem 1rem;
  height: 1rem;
  width: 4rem;
  position: absolute;
  z-index: 1;
}
.bird-1 {
  top: 60%;
  left: -6%;
}
.bird-2 {
  top: 5%;
  left: 42%;
}
/*Repeated bg images special styles*/
.mirror {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.double-size {
  -moz-transform: scale(2, 2);
  -webkit-transform: scale(2, 2);
  -o-transform: scale(2, 2);
  -ms-transform: scale(2, 2);
  transform: scale(2, 2);
}
.rotate-15 {
  -moz-transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

/*Main Background special*/
.mainBg {
  /*height: 60vh;*/
  height: 100%;
  position: relative;
  background: #2e7787; /* For browsers that do not support gradients */
   background: -webkit-linear-gradient(#2e7787, #203e41); /* For Safari 5.1 to 6.0 */
   background: -o-linear-gradient(#2e7787, #203e41); /* For Opera 11.1 to 12.0 */
   background: -moz-linear-gradient(#2e7787, #203e41); /* For Firefox 3.6 to 15 */
   background: linear-gradient(#2e7787, #203e41); /* Standard syntax */
}
/*Main content special*/
.mainWhiteBox {
  background-image: url(../img/content-bg.svg);
  background-size: 100%;
  height: 45rem;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  top: 1rem;
  border-top: 1px solid transparent;
  /*-webkit-animation: mainWhiteBoxFadeIn 2s forwards;
  animation: mainWhiteBoxFadeIn 2s forwards;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  opacity: 0;*/
}
@-webkit-keyframes mainWhiteBoxFadeIn {
    0% {opacity: 0;}
    50% {opacity: 1;}
}

@keyframes mainWhiteBoxFadeIn {
  0% {opacity: 0;}
  50% {opacity: 1;}
}

/*Main extra stuff (images, counter, etc.)*/
.wave {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  right: 0;
}
.wave img {
  width: 120%;
  margin-left: -1px;
  -webkit-animation: waveMove 6s infinite;
  animation: waveMove 6s infinite;
}
@-webkit-keyframes waveMove {
    0% {margin-left: -1px;}
    50% {margin-left: -100px;}
}

@keyframes waveMove {
  0% {margin-left: -1px;}
  50% {margin-left: -100px;}
}

.fisherMan {
  position: absolute;
  width: 450px;
  top: -180px;
  /*right: 2%;*/
  left:58%;
  z-index: 4;
  -webkit-animation: fishmanMove 6s 1s infinite; /* Safari 4.0 - 8.0 */
  animation: fishmanMove 6s 1s infinite;
}
@-webkit-keyframes fishmanMove {
    0% {top: -180px;}
    50% {top: -190px;}
}

@keyframes fishmanMove {
    0% {top: -180px;}
    50% {top: -190px;}
}

.fish-shadows img{
  position: absolute;
  width: 50%;
  bottom: 11rem; /*-9*/
  -webkit-animation: fishMoves 6s  linear infinite; /* Safari 4.0 - 8.0 */
  animation: fishMoves 6s linear  infinite;
}
@-webkit-keyframes fishMoves {
  0% {
    opacity: 0;
    left: 5rem;
  }

  50% {opacity: 1}

  100% {
    opacity: 0;
    left: 25rem;
  }
}

@keyframes fishMoves {
  0% {
    opacity: 0;
    left: 5rem;
  }

  50% {opacity: 1}

  100% {
    opacity: 0;
    left: 25rem;
  }
}
/*actual content*/
#intro {
  position: relative;
  top: -5rem;
  z-index: 5;
  max-width: 60rem;
  display: block;
  margin: auto;
}
#intro .img {
  width: 100%;
  position: relative;
  left: 0;
  top: 2rem;
  margin-left: 1rem;
}
#intro .select-mode {
  font-size: 4rem;
  display: block;
  width: 15rem;
  margin: auto;
  position: relative;
  height: 12rem;
  text-align: center;
  top: -7rem;
  z-index:2;
}
#intro .select-mode span{
  position: relative;
  z-index: 3;
  color: #ffffff;
  left: 2.5rem;
  top: 11rem;
}
#intro .select-mode .full-button{
  position: relative;
  display: block;
  z-index: 2;
  height: 12rem;
  width: 20rem;
}
#intro .select-mode .full-button .buttonColor{
  fill: #FF3A1D;
  transition:all .2s ease;
}
/*hover select-mode button*/
#intro .select-mode:hover span{
    color: #085D82;
    transition:all .2s ease;
}
#intro .select-mode:hover .full-button .buttonColor{
    fill: #FFE70F;
    transition:all .2s ease;
}
#intro .time-based {
  /*position: relative;
  float: right;
  top: -10rem;*/
  position: absolute;
  bottom: -2rem;
  left: 50%;
  z-index: 10;
  opacity: 0;
  transition: all .4s ease;
  z-index:1;
}
#intro .time-based.visible {
  left: 70%;
  opacity:1;
}
#intro .time-based.visible a {
  transition: all .3s .2s ease;
  margin-left:15px;
}
#intro .time-based.visible a + a {
  transition: all .2s .3s ease;
}

#intro .time-based p{
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: .5rem;
  margin-bottom: 0;
}
#intro .time-based a{
  font-size: 2rem;
  float: left;
}
#intro .time-based a:first-of-type{
  /*margin-right: 1rem;*/
}
#intro .time-based a span{
  position: relative;
  z-index: 3;
  color: #ffffff;
  left: 2rem;
  top: 2rem;
}
#intro .time-based a:last-of-type span{
  left: 3rem;
}
#intro .time-based a .full-button{
  position: relative;
  display: block;
  z-index: 2;
  height: 4rem;
  width: 7rem;
  bottom: 1rem;
}
#intro .time-based a .full-button .buttonColor{
  fill: #FF3A1D /*EDE129*/;
  transition:all .2s ease;
}

/*hover time-based button */
#intro .time-based a:hover span{
    color: #085D82;
    transition:all .2s ease;
}
#intro .time-based a:hover .full-button .buttonColor{
    fill: #FFE70F;
    transition:all .2s ease;
}

/*questions part*/
#questions {
  position: relative;
  z-index: 5;
  max-width: 60rem;
  display: block;
  margin: auto;
  top: 4rem;
}
#questions .number{
  position: absolute;
  left: -2rem; /*-4rem;*/
  top: -10rem;
  font-size: 17rem;
  color: #FFE70F;
}
#questions h2{
  position: relative;
  margin: 0;
  margin-left: 9rem; /*left: 5rem*/
  top: -1rem;
  font-size: 2rem; /*2.3*/
  color: #FF3A1D;
}
/*inline style answers*/
#questions .a-style-fish {
  /*answers a-style-fish a-style-list*/
  margin-left: 6rem;
  margin-right: 5rem;
  margin-top: 2rem;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
      flex-wrap: wrap;
}
#questions .a-style-fish .a-checkbox {
  position: relative;
}
#questions .a-style-fish .a-checkbox img{
  height: auto;
  width: 12rem;
  position: absolute;
  top: 1rem;
  z-index: 5;
}
#questions .a-style-fish .radio-button{
  position: relative;
  display: block;
  z-index: 2;
  height: 7rem;
  width: 10rem;
}
#questions .a-style-fish .radio-button .buttonColor{
  fill: #FF3A1D;
  transition:all .2s ease;
}
#questions .a-style-fish .radio-button .circleColor{
  fill: #FF4B2D;
  transition:all .2s ease;
}
#questions .a-style-fish span {
  font-size: 2rem;
  top: 1rem;
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #085D82;
  transition:all .2s ease;
}
/*hover*/
#questions .a-style-fish li a.answer:hover span{
  color: #FF4B2D;
  transition:all .2s ease;
}
/*extra q styles*/
#questions .q8 .a-style-fish {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
#questions .q8 .a-style-fish li .a-checkbox img {
  width: 8rem;
}
#questions .q8 .a-style-fish .radio-button {
  height: 4rem;
}
#questions .q8 .a-style-fish li {
  margin-bottom: 0.5rem; /*1.5*/
}


/*list style answers*/
#questions .a-style-list {
  padding-left: 0;
  margin-left: 10rem;
  list-style: none;
  background-size: 25rem;
  background-repeat: no-repeat;
  background-position: right center;
}
#questions .a-style-list li {
margin-bottom: 1rem; /*2rem*/
}
#questions .a-style-list .a-checkbox{
  display: inline;
}
#questions .a-style-list .radio-button{
  position: relative;
  display: inline-block;
  z-index: 2;
  height: 3rem;
  width: 5rem;
}
#questions .a-style-list span {
  font-size: 2rem;
  display: inline-block;
  color: #085D82;
  position: relative;
  bottom: 1rem;
  left: 2rem;
}
/*hover */
#questions .a-style-list li a:hover .radio-button .buttonColor{
  fill: #FF4B2D;
  transition:all .2s ease;
}
#questions .a-style-list li a:hover .radio-button .circleColor{
  fill: #fff;
  transition:all .2s ease;
}
#questions .a-style-list li a:hover span{
  color: #FF4B2D;
  transition:all .2s ease;
}
/*extra q styles*/
#questions .q9 h2 {
  margin-bottom: 0rem;
  top: -1rem;
}
#questions .q9 .a-style-list {
  column-count: 2;
  margin: 0 3rem 0 6rem;
}
#questions .q9 .a-style-list li{
  margin-bottom: 0rem;
}
/*questions colored versions: right or wrogn*/
#questions .answered {
  opacity: .3
}
#questions .right {
  opacity: 1
}
#questions .right .answer .a-checkbox  .buttonColor{
  fill: #00d0a6;
  transition:all .2s ease;
}
#questions .right .answer .a-checkbox  .circleColor{
  fill: #FFFFFF;
  transition:all .2s ease;
}
#questions .right .answer span {
  color: #00d0a6;
  transition:all .2s ease;
}
#questions .right .answer:hover .a-checkbox  .buttonColor{
    fill: #00d0a6;
    transition:all .2s ease;
}
#questions .right .answer:hover .a-checkbox  .circleColor{
    fill: #FFFFFF;
    transition:all .2s ease;
}
#questions .right .answer:hover span{
    color: #085D82;
    transition:all .2s ease;
}

/*results*/
#results {
  position: relative;
  z-index: 5;
  max-width: 60rem;
  display: block;
  margin: auto;
  top: 4rem;
}
.red {
  color: #FF4B2D;
}
/*#085D82 - text blue on yellow
#FFE70F - yellow
FF4B2D - red*/
#results .timer {
  position: absolute;
  top: -4rem;
  right: -4rem;
}
#results .timer .timer-intro{
  position: relative;
  background-color: #085D82;
  -webkit-clip-path: polygon(2% 17%, 78% 29%, 76% 66%, 4% 63%);
  clip-path: polygon(2% 17%, 78% 29%, 76% 66%, 4% 63%);
  height: 9rem;
  width: 34rem;
  position: relative;
  top: -4rem;
  right: 6rem;
  z-index: 12;
}
#results .timer .timer-intro p{
  margin-left: 3rem;
  position: relative;
  color: #FFE70F;
  top: 3rem;
  font-size: 2rem;
  margin-top: 0;
}
.clock{
  background-color: #FAF5DF;
  background-image: url(../img/clock.png);
  background-size: contain;
  width: 10rem;
  height: 10rem;
  position: absolute;
  border-radius: 50%;
  top: -2rem;
  right: 2rem;
  z-index: 5;
  transform: scale(.8, .75);
  transition:right .2s ease;
}
.results .clock {
  right: 11rem;
}

#results .timer .sek{
  height: 9rem;
  width: 34rem;
  position: relative;
  top: -13rem;
  left: 0rem;
  position: relative;
  background-color: #085D82;
  -webkit-clip-path: polygon(97% 67%, 98% 50%, 99% 34%, 99% 24%, 97% 24%, 93% 26%, 90% 29%, 87% 33%, 72% 40%, 72% 70%, 88% 70%, 92% 71%);
  clip-path: polygon(97% 67%, 98% 50%, 99% 34%, 99% 24%, 97% 24%, 93% 26%, 90% 29%, 87% 33%, 72% 40%, 72% 70%, 88% 70%, 92% 71%);
  z-index: 4;
}
#results .timer .sek p {
  top: 1.5rem;
font-size: 2rem;
position: relative;
float: right;
color: #FFE70F;
margin-right: 2rem;
}
#results .timer .sek p span {
  font-size: 1.3rem;
}

#results h1 {
  position: relative;
margin-left: 10rem;
font-size: 3.4rem;
color: #085D82;
margin-bottom: .5rem;
top: 0rem; /*1*/
}
#results p.slogan {
  font-size: 1.7rem;
  color: #085D82;
  margin-top: 0rem;
  margin-left: 10rem;
  position: relative;
  top: 1rem;
}
#results h3 {
  font-size: 2.2rem;
  color: #085D82;
  width: 35rem;
  position: relative;
  /*left: 7rem;
  top: 3rem;*/
  margin-left: 10rem;
  top: 0rem;
}
#results .bonus-game {
  position: relative;
  display: block;
  bottom: 9rem;
  right: 6rem;
  height: 6rem;
  width: 9rem;
  float: right;
}
#results .bonus-game .next-button{
  position: relative;
  display: block;
  height: 6rem;
  width: 9rem;
}
#results .bonus-game .next-button .buttonColor{
  fill: #FF4B2D;
  transition:all .2s ease;
}
#results .bonus-game:hover .next-button .buttonColor{
 fill: #FFE70F;
 transition:all .2s ease;
}
#results .bonus-game:hover .next-button .nextColor{
 fill: #085D82;
 transition:all .2s ease;
}

/*submit*/
#submit {
  position: relative;
  z-index: 5;
  max-width: 60rem;
  display: block;
  margin: auto;
  top: 2rem; /*4*/
}
#submit p.info {
  font-size: 2rem;
position: relative;
left: 8rem;
width: 46rem;
color: #085D82;
}
#submit form {
  position: relative;
  margin-left: 10rem; /*8*/
}
#submit ul {
  list-style: none;
padding-left: 0;
}
#submit ul li {
  font-size: 1.5rem;
margin-bottom: 1rem;
color: #085D82;
}
#submit ul li a{
color: #085D82;
text-decoration: underline;
}
#submit ul li label {}
#submit ul li label[for=f4] {
  font-size: 1rem;
}
#submit ul li input[type=text]{
  border: none;
  border-bottom: 2px dotted #075d81;
  width: 69%;
  margin-left: 1rem;
  font-size: 1.5rem;
  color: #ff4b2d;
}
#submit ul li input[type=checkbox]{
      position: relative;
      left: 1.5rem;
      top: 0.3rem;
      height: 1.6rem;
      width: 2.5rem;
      cursor: pointer;
      opacity: 0;
}
#submit ul li .checkbox-button {
  height: 1.6rem;
  width: 3rem;
  position: relative;
  top: .3rem;
  left: -2rem;
  pointer-events: none;
}
#submit ul li .checkbox-button .strokeColor{
  stroke: #085D82;
  /*#FF4B2D;*/
  transition:all .2s ease;
}
#submit ul li .checkbox-button .buttonColor{
  fill: #ffffff;
  /*#FF4B2D;*/
  transition:all .2s ease;
}
#submit ul li input[type=checkbox]:checked + .checkbox-button .buttonColor{
  fill: #ff4b2d;
  transition:all .2s ease;
}
#submit ul li input[type=checkbox]:checked + .checkbox-button .strokeColor{
  stroke: #ff4b2d;
  transition:all .2s ease;
}
/*#submit ul li input[type=checkbox]:checked + .checkbox-button .checkboxColor{
  fill: #085D82;
}*/
#submit .s1 {
  float: right;
  position: relative;
  right: 12rem;
  top: 0.2rem;
  cursor: pointer;
}
#submit .s1 input[type=submit] {
  position: relative;
  left: 8rem;
  top: -2rem;
  font-size: 2rem;
  background-color: transparent;
  border: none;
  color: #085D82;
  cursor: pointer;
}
#submit .s1 .full-button {
  height: 7rem;
  width: 10rem;
}
#submit .s1 .full-button .buttonColor{
  fill: #FFE70F;
  transition:all .2s ease;
}
#submit .s1:hover input[type=submit] {
  color: #ffffff;
  transition:all .2s ease;
}
#submit .s1:hover .full-button .buttonColor {
  fill: #FF4B2D;
  transition:all .2s ease;
}
#submit .submiterror{
  visibility: hidden;
  text-align: right;
}
#submit .visible{
  visibility: visible;
  transition: opacity 2s ease-in-out 2s;
}
/*end*/
#end {
  position: relative;
  z-index: 5;
  max-width: 60rem;
  display: block;
  margin: auto;
  top: 4rem;
}
#end p {
  font-size: 3rem;
  color: #075d81;
  text-align: center;
  position: relative;
  top: 1rem;
}
#end a {
  width: 16rem;
  margin: auto;
  display: block;
}
#end a .buttonColor{
  fill: #FF4B2D;
  transition:all .2s ease;
}
#end a span{
  font-size: 2.5rem;
  position: relative;
  top: -8rem;
  left: 1rem;
  color: #fff;
  text-align: center;
  display: block;
  word-wrap: break-word;
  transition:all .2s ease;
}
#end a:hover .buttonColor{
  fill: #FFE70F
  transition:all .2s ease;
}
#end a:hover span{
  color: #085D82;
  transition:all .2s ease;
}
/*#085D82 - text blue on yellow
#FFE70F - yellow
FF4B2D - red*/
/*Fish Counter*/
.fish-counter {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -15rem;
  z-index: 5;
}
.smells-fishy {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.fish, .bonus-fish {
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  display: block;

  background-repeat: no-repeat;
  background-size: 8rem;
  width: 8rem;
}
.fish {
  background-image: url('../img/fish1.svg');
  height: 2rem;
}
.bonus-fish {
  background-image: url('../img/fish2.svg');
  height: 4rem;
}
.current-fish {
  background-image: url('../img/fish3.svg');
  background-repeat: no-repeat;
  background-size: 14rem;
  height: 6rem;
  width: 14rem;
  color: #FFE711;
}
.current-fish span {
  position: relative;
  top: .7rem;
  font-size: 4rem;
}
.fish span, .bonus-fish span {
  margin-left: 2rem;
}
.bonus-fish span {
  position: relative;
  top: 0.7rem;
}
/*Footer special*/

.footer {
  position: relative;
}
.footer-links {
  top: -7rem;
  /*margin-top: 7rem;
  margin-bottom: 2rem;*/
}
.footer-links ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
   flex-direction: row;
   align-items: flex-start;
  flex-wrap: wrap;
}
.footer-links ul li {
  /*max-width: 15%;*/
  margin-left: auto;
  margin-right: auto;
}
.footer-links ul li a {
  color: #ffffff;
  display: block;
  text-align: center;
  z-index: 5;
  font-size: 1.5rem;
  line-height: 2rem;
  position: relative;
  top: -6rem;
  width: 15rem;
}
.footer-links ul li a span{
  color: yellow;
  font-family: Arial, serif;
  font-size: 1rem;
  line-height: 1rem;
  display: block;
  margin-top: 1rem;

}
.footer-links ul li:hover a span{
  text-decoration: none !important;
}
.footer-links ul li .full-button{
  position: relative;
  display: block;
  margin: auto;
  z-index: 2;
  /*changeable:*/
  top: 0rem;
  height: 8rem;
  width: 15rem;
}
/*hover footer links*/
.footer-links ul li:hover  a {
  text-decoration: underline;
}
.footer-links ul li:hover .full-button .buttonColor{
  fill: #FF3A1D;
  transition:all .2s ease;
}
