:root {
    --primary: #0084ff;
    --light: #dedfe3;
    --medium: #757b89;
    --dark: #3a3f50;
    --white: #ffffff;
    --lightblue: #73bbff;
}

* {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background: var(--primary);
}

/*-- Containers --*/

#bg-container {
    width: 100%;
    height: 100%;
    position: relative;
    left: 0%;
    z-index: 999;
    transition: left 1s ease;
}

#bg-image {
    /*background: url(//assets.bettyblocks.com/e04115b3073840a7914408b6d5c61117_assets/files/prijscalculator_bg?_=198668cff21515794d90a596f3dce624);*/
    background-color: var(--primary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /*filter: blur(6px);
    -webkit-filter: blur(6px);*/
    position: absolute;
    width: 100%;
    height: 100%;
}

#bg-container .navbar {
    padding-top: 20px;
}

#bg-container .body {
    width: 70%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15em;
}

#bg-container .title {
    color: var(--white);
    font-weight: 700;
    font-size: 2em;
    text-transform: uppercase;
    text-align: right;
}

#bg-container .info {
    margin-top: 1em;
    /*width: 30em;*/
    color: var(--white);
    text-align: right;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.start-btn {
    text-align: right;
}

.btn-secondary {
	background: var(--primary);
  	border: 1px solid white;
}

.btn-secondary:hover {
	background: var(--white);
  	border: 1px solid var(--primary);
  	color: var(--primary);
}



#start-btn {
    width: 70%;
    border: none;
    background: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px;
    margin-top: 2em;
    border-radius: 5px;
    color: var(--primary);
  transform-origin: right;
    transition: transform 350ms ease;
    /*position: relative;*/
    /*left: 50%;*/
    /*transform: translateX(-50%) scale(1);*/
}

#start-btn:hover {
    /*transform: translateX(-50%) scale(1.05);*/
    transform: scale(1.05);
}

#survey-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
}

#sur-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.no-style-btn {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.footer-link {
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
}

.title {
    color: var(--white);
    font-weight: 700;
    font-size: 2em;
    text-transform: uppercase;
}

#navbarText a {
 transition: transform 350ms ease; 
}

#navbarText a:hover {
	color: white;
  transform: scale(1.05);
}

.show-mobile {
    display: none;
}

/*-- Arrows --*/

.arrow-next {
    position: absolute;
    color: var(--white);
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    cursor: pointer;
  transform-origin: bottom;
  transition: transform 350ms ease;
}

.text-next {
    position: absolute;
    margin-top: 30px;
    color: var(--white);
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    cursor: pointer;
  transform-origin: top;
    transition: all 350ms ease;
}

.arrow-previous {
    position: absolute;
    color: var(--white);
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    cursor: pointer;
  transform-origin: bottom;
  transition: transform 350ms ease;
}

.text-previous {
    position: absolute;
    margin-top: 30px;
    color: var(--white);
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    cursor: pointer;
  transform-origin: top;
    transition: all 350ms ease;
  
}

.arrow-next:hover, .arrow-previous:hover, .arrow-next:hover + p, .arrow-previous:hover + p {
  transform: translateY(-50%) scale(1.2);
}

/*-- Questions --*/

.question-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    padding: 50px;
    transition: left 500ms ease;
}


.question-container:nth-of-type(1) {
    left: 0;
}

.question-section {
    margin-top: 100px;
    width: 800px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.question-title {
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.question-description {
    color: var(--white);
}

/*-- Answers --*/

.answer-section {
    margin-top: 50px;
    margin-bottom: 50px;
    //justify-content: center;
}

/*-- Radio buttons --*/

.answer-section input[type="radio"] {
    display: none;
}

.answer-section input[type="radio"]:checked+label::before {
    transform: translateX(0);
}

.answer-label.radio-label {
    /*width: 30%;
    height: 225px;*/
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 5px;
    border: 1px solid var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;

}

.answer-label.radio-label>* {
    z-index: 10;
    transition: color 250ms linear;
}

.answer-label.radio-label p {
    width: 100%;
    color: var(--white);
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    margin-top: 35px;
}

.answer-label.radio-label span {
    width: 100%;
    color: var(--white);
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    margin-top: 35px;
}

.answer-label.radio-label i {
    color: var(--white);
  	margin-top: 50px;
}

.answer-label.radio-label:hover p {
    color: var(--dark);
}

.answer-label.radio-label:hover span {
    color: var(--dark);
}

.answer-label.radio-label:hover i {
    color: var(--primary);
}

.answer-section input[type="radio"]:checked+label p {
    color: var(--dark);
}

.answer-section input[type="radio"]:checked+label span {
    color: var(--dark);
}

.answer-section input[type="radio"]:checked+label i {
    color: var(--primary);
}

.answer-label.radio-label::before {
    pointer-events: none;
    content: '';
    z-index: 1;
    position: absolute;
    background: var(--white);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-98%);
    transition: transform 500ms ease-in-out;
}

.answer-label.radio-label:hover::before {
    transform: translateX(0);
}

.info-button-mobile {
    display: none;
    color: var(--white);
}

/*-- Checkboxes --*/

.answer-section input[type="checkbox"] {
    display: none;
}

.answer-section input[type="checkbox"]:checked+label::before {
    transform: scale(1);
}

.answer-label.check-label {
    flex: 1;
    height: 60px;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 5px;
    border: 1px solid var(--white);
    display: flex;
    gap: 25px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    transition: transform 350ms ease;
  	cursor: pointer;
  	margin-bottom: 15px;
}

.answer-label.check-label>* {
    z-index: 10;
    transition: color 350ms linear;
}

.answer-label.check-label p {
    color: var(--white);
    font-size: 1.25em;
    font-weight: 600;
    margin: 0;
}

.answer-label.check-label i {
    color: var(--white);
}

.answer-label.check-label:hover {
    transform: scale(1.05);
}

.answer-section input[type="checkbox"]:checked+label p {
    color: var(--dark);
}

.answer-section input[type="checkbox"]:checked+label i {
    color: var(--primary);
}

.answer-label.check-label::before {
    pointer-events: none;
    content: '';
    z-index: 1;
    position: absolute;
    background: var(--white);
    width: 105%;
    height: 105%;
    border-radius: 5px;
    top: -2%;
    left: -2%;
    transform: scale(0);
    transform-origin: 25px center;
    transition: transform 350ms ease-in-out;
}

/*-- Range--*/

.answer-section input[type=range] {
    -webkit-appearance: none;
    width: 90%;
    background: transparent;
    -webkit-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.03);
}

.answer-section input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.answer-section input[type=range]:focus {
    outline: none;
}

.answer-section input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: var(--dark);
    cursor: pointer;
    margin-top: -9px;
}

input[type=range]::-moz-range-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: var(--dark);
    cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    border-radius: 5px;
    border: 0.2px solid var(--white);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    border-radius: 5px;
    border: 0.2px solid var(--white);
}

.range-section {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-evenly;
    align-items: center;
}

.range-value {
    font-size: 4em;
    font-weight: 700;
    color: var(--white);
}

/*-- Register --*/

#register_form {
    width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.register-row {
    width: 100%;
}

.register-row:not(:nth-of-type(-n+2)) {
    margin-top: 30px;
}

.form-input {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.form-input input {
    background: transparent;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--light);
    outline: none;
    font-size: 1.25em;
    font-weight: 600;
    padding: 5px 0;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.form-input::before {
    content: '';
    height: 2px;
    width: 100%;
    background-color: var(--primary);
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    transform: scale(0);
    transform-origin: left;
    transition: transform 500ms ease;
}

.form-input:focus-within::before {
    transform: scale(1);
}

.form-input input::placeholder {
    color: var(--lightblue);
}

.form-submit input[type="checkbox"] {
    display: inline-block;
    margin-right: 5px;
}

.form-submit {
    width: 100%;
}

#submit_button {
    color: var(--primary);
    background: var(--white);
    border-radius: 5px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.25em;
    font-weight: 600;
    padding: 5px 0;
    text-transform: uppercase;
  transition: transform 350ms ease; 
}

#submit_button:hover {
 	transform: scale(1.05); 
}

.form-submit label {
    color: var(--white);
}

#submit_message {
    margin-top: 5px;
    visibility: hidden;
  display: flex;
  align-items: center;
}

.form-logo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}



/*-- Result page --*/

.result-image {
    height: 75px;
    margin: 15px;
    filter: grayscale(100%);
}

.result-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 3em;
    margin: 0;
}

.result-title:nth-of-type(1) {
    margin-top: 10px;
}

.title-dark {
    color: var(--dark);
}

.title-blue {
    color: var(--white);
}

.result-paragraph {
    margin-top: 50px;
    width: 60%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: justify;
    color: var(--white);
}

.result-subtitle {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 2em;
    margin: 0;
}

.result-price {
    font-weight: 600;
    font-size: 2.5em;
    margin-top: 10px;
    text-align: center;
    transition: filter 350ms ease;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
}

.result-buttons {
    width: 60%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5%;
    justify-content: center;
    align-items: space-between;
    margin-top: 50px;
}

.result-buttons a {
    width: 50%;
}

.edit-button, .download-button {
    border: none;
    width: 100%;
    border-radius: 5px;
    background: var(--white);
    padding: 5px;
    color: var(--primary);
    font-weight: 600;
    transition: transform 350ms ease;
}

.edit-button:hover, .download-button:hover {
    transform: scale(1.05);
}

/* Navbar */
.navbar_brand_logo {
    height: 40px;
}

.navbar-collapse {
    background: var(--primary);


}

.nav-link {
    border-radius: 0rem;
    margin-right: 20px;
    text-decoration: none;
    padding: 0.875rem 1.4rem;
    color: var(--white);
}

/* Start Hamburger */
.hamburger {
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: var(--white);
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.collapsed:hover {
    opacity: 0.7;
}

.hamburger.collapsed .hamburger-inner,
.hamburger.collapsed .hamburger-inner::before,
.hamburger.collapsed .hamburger-inner::after {
    background-color: var(--white);
}

.hamburger-box {
    width: 30px;
    height: 20px;
    display: inline-block;
    position: relative;
    color: var(--white);
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    color: var(--white);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    color: var(--white);
}

.hamburger-inner::before {
    top: -8px;
    color: var(--white);
}

.hamburger-inner::after {
    bottom: -8px;
}



.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
    transition-property: none;
    color: var(--white);
}

.hamburger--boring:not(.collapsed) .hamburger-inner {
    transform: rotate(45deg);
    color: var(--white);
}

.hamburger--boring:not(.collapsed) .hamburger-inner::before {
    top: 0;
    opacity: 0;
    color: var(--white);
}

.hamburger--boring:not(.collapsed) .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    color: var(--white);
}

/* End hamburger */

/* Footer */
.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #333333;
    text-align: center;
    padding-bottom: 5px;
    height: 30px;
}

.footer_logo {
    width: 2em;
}

/* Font awesome */
.fa-icon {
    font-size: 4em;
}

.socials-icon {
    color: white;
}

/* Media queries */
@media screen and (max-width: 600px) {

    #landing-page .title {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.5em;
        text-transform: uppercase;
    }

    #landing-page .info {
        font-size: 0.75em;
    }

    #bg-container .info {
        width: 100%;
    }


    #footer {
        display: none;
    }

    .result-subtitle {
        font-size: 1.5em;
    }

    .result-paragraph {
        width: 100%;
    }

    .result-buttons {
        width: 100%;
    }

    .edit-button {
        border: none;
        width: 100%;
        border-radius: 5px;
        background: var(--white);
        padding: 5px;
        color: var(--primary);
        font-weight: 600;
        transition: transform 350ms ease;
    }

    .navbar_brand_logo {
        height: 30px;
    }
}

@media only screen and (max-width: 1200px) {
    .question-section {
        width: 90%;
    }

    .text-previous {
        display: none;
        color: var(--white);
    }

    .text-next {
        display: none !important;
        color: var(--white);
    }

    .arrow-next {
        right: 30px;
    }

    .arrow-previous {
        left: 30px;
    }

    .answer-label.check-label p {
        font-size: 1.1em;
    }


}

@media only screen and (max-width: 991px) {
    #bg-container .title {
        text-align: center;
        font-size: 1.6em;
    }

    #bg-container .info {
        text-align: center;
    }

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

@media only screen and (max-width: 768px) {
    .register-row:not(:nth-of-type(1)) {
        margin-top: 30px;
    }

    .info-button-mobile {
        display: inline;
    }
}

@media only screen and (max-width: 576px) {
    #bg-container .body {
        padding-top: 7em;
    }

    .show-mobile {
        display: none;
    }

    .show-desktop {
        display: block;
    }

    .question-container {
        padding-top: 0;
    }

    .arrow-next {
        top: 100px;
        margin-top: 20px;
    }

    .arrow-previous {
        top: 100px;
        margin-top: 20px;
    }

    .fa-icon {
        font-size: 2.5em;
    }
  
  	.answer-label.radio-label {
    /*width: 30%;
    height: 225px;*/
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: 5px;
    border: 1px solid var(--white);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    cursor: pointer;
}
  
  .answer-label.radio-label p {
  	width: auto;
    margin-left: 20px;
    margin-top: 25px;
  }
  
  .answer-label.radio-label i {
  	margin-top: 0px;
  }
  
  .answer-label.check-label {
  	height: 85px;
  }

    .answer-label.check-label p {
        font-size: 1em;
    }

    #contact_message, #newsletter_message {
        font-size: 0.8rem;
        display: inline;
    }

    .building-blocks-logo {
        margin-top: 30px;
    }

    h2 {
        font-size: 1.25em;
    }

    .question-title {
        margin-bottom: 1em;
    }

    .question-description p {
        margin-bottom: 0em;
    }

    .fa-icon-mobile {
        font-size: 1.5em;
    }
  
  

}

/* IMAGES */
.building-blocks-logo {
    width: 100%;
}