/* 
    Sielunveljesi-test stylesheet

    Written by
        Microwebtec Solutions
        Sebastian Sotavalta
        2020
*/
/* Variables */
/* STYLESHEET*/
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-weight: 400;
  color: #10232F;
  font-size: large;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Utility classes */
.default-padding {
  padding: 60px 0;
}

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

/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 0;
  outline: none;
}
.home-banner img {
  width: 100%;
}
.footer-main img {
  width: 100%;
}

/* Typography */
p {
  margin: 0 0 25px;
}
p.prompt {
  text-align: center;
}
.quiz-row-group p.prompt {
  margin-top: 20px;
}
.container-inner-index p {
  color: #3D7B47;
  font-size: 100%;
  text-align: center;
}
p.small-text {
  font-size: 90%;
  line-height: 150%;
}

.data-footer .veljessuosio {
  font-size: 1em;
  text-align: center;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}

sup {
  line-height: initial;
}

::selection, ::-webkit-selection, ::-moz-selection {
  background: #10232F;
  color: #ffffff;
}

b,
strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  line-height: normal;
  color: #3D7B47;
  font-weight: 700;
}

h3.veljessuosio-heading {
  color: #fff;
  font-size: 100%;
}

h1 {
  font-size: 150%;
  line-height: 110%;
  padding-top: 2%;
  padding-bottom: 2%;
  text-align: center;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 120%;
}

.quiz-block h2 {
  max-width: 100%;
  margin: 0 0 23px;
}

h3 {
  font-size: 110%;
}

.result-list-in h3 {
  font-size: 100%;
  text-align: center;
  color: #ffffff;
  margin: 0 0 30px;
}

h4 {
  font-size: 100%;
}

h5 {
  font-size: 100%;
}

h6 {
  font-size: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0 0 30px 30px;
}

li {
  margin: 0;
}

ul,
li {
  list-style: none;
}

/* Links */
a {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  text-decoration: none;
}

.quiz-row-group a {
  -webkit-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 15px 30px;
  color: #ffffff;
  font-size: 1em;
  user-select: none;
}

.green-theme a {
  background: transparent linear-gradient(100deg, #3D7B47 0%, #3D7B47 100%) 0% 0% no-repeat padding-box;
}

.green-theme a:hover {
  background: transparent linear-gradient(100deg, #3D7B47 0%, #79a844 100%) 0% 0% no-repeat padding-box;
}

.red-theme a {
  background: transparent linear-gradient(100deg, #C44A2C 0%, #C44A2C 100%) 0% 0% no-repeat padding-box;
}

.red-theme a:hover {
  background: transparent linear-gradient(100deg, #C44A2C 0%, #D99876 100%) 0% 0% no-repeat padding-box;
}

.blue-theme a {
  background: transparent linear-gradient(100deg, #314586 0%, #314586 100%) 0% 0% no-repeat padding-box;
}

.blue-theme a:hover {
  background: transparent linear-gradient(100deg, #314586 0%, #54A6EA 100%) 0% 0% no-repeat padding-box;
}

a.next-button {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: inline;
  text-transform: uppercase;
  font-size: 80%;
  font-weight: 900;
  background: #5B7789;
  color: rgba(255, 255, 255, 0.5);
}

.quiz-selected a.next-button {
  background: #3D7B47;
  color: #ffffff;
}

a.back-button {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
  padding: 15px 30px;
  display: inline;
  text-transform: none;
  font-size: 100%;
  font-weight: normal;
  background: transparent;
  color: #ffffff;
}

a:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

a:hover.next-button {
  color: rgba(255, 255, 255, 0.5);
}

.quiz-selected a:hover.next-button {
  color: #ffffff;
}

a.opselected {
  -webkit-box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  text-decoration: none;
  outline: none;
  position: relative;
}

.green-theme a.opselected {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  background: transparent linear-gradient(100deg, #3D7B47 0%, #79A844 100%) 0% 0% no-repeat padding-box;
}

.red-theme a.opselected {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  background: transparent linear-gradient(100deg, #C44A2C 0%, #D99876 100%) 0% 0% no-repeat padding-box;
}

.blue-theme a.opselected {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  box-shadow: 0 0rem 1.2rem rgba(16, 35, 47, 0.5);
  background: transparent linear-gradient(100deg, #5B7789 0%, #99A2B1 100%) 0% 0% no-repeat padding-box;
}

a.opselected:after {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 99%;
  height: 94%;
  display: block;
  border: 3px solid white;
  border-radius: 20px;
}

a:active {
  -webkit-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

.green-theme a:active,
.green-theme a:focus-visible {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  background: transparent linear-gradient(100deg, #79A844 0%, #3D7B47 100%) 0% 0% no-repeat padding-box;
}

.red-theme a:active,
.red-theme a:focus-visible {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  background: transparent linear-gradient(100deg, #C44A2C 0%, #D99876 100%) 0% 0% no-repeat padding-box;
}

.blue-theme a:active,
.blue-theme a:focus-visible {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  background: transparent linear-gradient(100deg, #5B7789 0%, #99A2B1 100%) 0% 0% no-repeat padding-box;
}

a:focus {
  text-decoration: none;
  outline: none;
}

/* Buttons */
.btn {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  display: inline-block;
  background: linear-gradient(132deg, #3d7b47, #3d7b47);
  border-radius: 25px;
  padding: 17px 23px;
  margin-bottom: 7px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  font-size: 70%;
  letter-spacing: 0.84px;
  line-height: normal;
}

.btn:hover,
.btn:focus-visible {
  background: linear-gradient(132deg, #79a844, #3d7b47);
  color: #ffffff;
}

.btn .btn-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 36px;
  margin-bottom: 10px;
}

.btn .btn-sec:last-child {
  margin-bottom: 0px;
}

.dark-green-btn {
  font-weight: 900;
  background: #3D7B47;
}

.dark-green-btn:hover {
  background: #79A844;
}

/* Structure */
.container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 100%;
  width: 586px;
  position: relative;
  flex-grow: 1;
}

.container-main {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 100%;
  height: auto;
  background: #ffffff;
  flex-grow: 1;
}

.container-inner {
  margin: 0 auto;
  width: 85%;
  max-width: 560px;
  padding-top: 10%;
}

.container-inner-result {
  margin: 0 auto;
  padding: 5% 2%;
  width: 85%;
  max-width: 560px;
}

.container-main .container-inner-index {
  height: auto;
  margin: 0 auto;
  padding-top: 5%;
  padding-bottom: 5%;
  width: 80%;
  max-width: 560px;
  z-index: 9999;
}

.small-container {
  max-width: 100%;
  width: 529px;
  margin: 0 auto;
  padding: 0 15px;
}

.banner-main {
  height: 646px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

footer {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: transparent linear-gradient(132deg, #3D7B47 0%, #79A844 100%) 0% 0% no-repeat padding-box;
}

footer .shape {
  -webkit-appearance: none !important;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(16, 35, 47, 0.15);
  position: relative;
  top: -1px;
  width: 100.5%;
}

footer .shape svg {
  position: absolute;
  top: -1px;
  left: 0;
}

footer .shape path {
  fill: white;
}

.footer-main {
  padding: 0;
  margin: 0;
  height: 300px;
  width: 100%;
  z-index: 9;
}

.data-footer {
  position: relative;
}

.data-footer.data-footer-result {
  background: transparent;
  position: relative;
  width: 100%;
  background: no-repeat;
  background-size: cover;
  min-height: 100px;
  padding: 250px 0 100px 0;
}

.data-footer.data-footer-quiz {
  height: 200px;
}

/* Quiz elements */
.quiz-block {
  display: none;
  padding-bottom: 73px;
}

.quiz-block-active {
  display: block;
}

.quiz-block:last-child {
  padding-bottom: 0;
}

/* Result list */
.result-list-m {
  padding: 60px 0;
}

.result-list-in {
  color: #ffffff;
}

.progress-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  line-height: normal;
}

.progress-row label {
  width: 30%;
  text-transform: uppercase;
}

.progress {
  width: 70%;
  background: #ffffff;
  height: 20px;
}

.progressbar {
  background: #a1d8b8;
  height: 100%;
}

/* Social media */
.contact-link {
  text-align: center;
  padding: 30px 0 0 0;
}

.contact-link label {
  font-weight: 900;
  font-size: 100%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.contact-link ul {
  padding: 0 0 47px;
  list-style: none;
  display: flex;
  justify-content: center;
}

.contact-link ul li {
  margin: 0 7px;
}

.contact-link ul li a {
  width: 60px;
  height: 60px;
  display: inline-flex !important;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.contact-link ul li a.wa_btn.wa_btn_l {
  display: none !important;
}

.whatsapp-mibile {
  display: none;
}

.whatsapp-mibile iframe {
  display: none;
}

.contact-link ul li.facebook a {
  background: #3C5A99;
}

.contact-link ul li.facebook a:hover {
  background: #304777;
}

.contact-link ul li.twitter a {
  background: #1DA1F2;
}

.contact-link ul li.twitter a:hover {
  background: #1888cd;
}

.contact-link ul li.whatsapp a {
  background: #25D366;
}

.contact-link ul li.whatsapp a:hover {
  background: #1DA14D;
}

ul {
  margin: 0px;
  padding: 0px 0 30px 30px;
}

ol {
  margin: 0px;
  padding: 0px 0 30px 30px;
}

li {
  margin: 0px;
}

ol li {
  list-style: decimal;
}

@media only screen and (max-width: 524px) {
  .contact-link ul li a.wa_btn.wa_btn_l {
    display: inline-flex !important;
  }

  .whatsapp-mibile {
    display: none;
  }

  .contact-link ul li {
    display: flex;
  }

  a.whatsapp-pc {
    display: none;
  }

  .whatsapp iframe {
    border: 0px;
    overflow: hidden;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    padding-left: 20%;
    background: #25D366;
    border-radius: 50%;
  }

  .whatsapp-mibile iframe .wa_btn_l {
    font-size: 28px;
    padding: 0;
    height: 60px;
    width: 60px;
    background-position: center;
    background-size: 38px;
  }

  .whatsapp-mibile iframe {
    display: block;
  }

  .contact-link ul li.whatsapp a.whatsapp-pc {
    display: none !important;
  }

  .data-footer.data-footer-result {
    padding: 100px 0 0px 0;
  }
}
/* Veljessuosio */
.veljessuosio {
  -webkit-font-smoothing: antialiased;
  padding: 20px 0;
}

.veljessuosio-heading {
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 80px;
}

@media (max-width: 599px) {
  .veljessuosio-heading {
    margin-top: 0;
  }
}
.veljessuosio-category {
  display: flex;
  height: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.veljessuosio-category-label {
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
  width: 70px;
  display: flex;
  align-items: center;
}

.veljessuosio-category-bar {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(16, 35, 47, 0.085);
  flex-grow: 1;
}

.veljessuosio-category-bar-value {
  border-radius: 5px 0px 0px 5px;
  background-color: #E3CA66;
  box-shadow: inherit;
  height: 100%;
}
