:root{
    --border-radius: 8px;
	--box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),0 0.125rem 0.25rem rgba(0, 0, 0, 0.14);
    --white-shadow: 0 10px 20px 64px rgb(255 255 255);
    --color-0: #ffffff;
    --color-1: #00D150;
    --color-2: #00C74C;
    --color-3: #00BD48;
    --color-4: #00B344;
    --color-5: #00A841;
    --color-6: #1A1A1A;
    --color-7: #EBEBEB;
    --color-8: #f5f9fc;
    --color-9: cornflowerblue;
}

@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../font/Rubik/Rubik-VariableFont_wght.ttf') format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body{
    font-family: Rubik;
    color:var(--color-6);
    font-size: 1.2rem;
    line-height: 2.4rem;
}

h1{
    font-size:2.5rem;
    font-weight:700;
    line-height: 3.2rem;
        font-weight: 600;

}

h2{
    font-size: 2.1rem;
    line-height: 3.2rem;
    font-weight: 600;
}

h3{
    font-size: 1.3rem;
}

p{
    font-size: 1.2rem;
    line-height: 2.4rem;
}

#top_menu{
    min-height: 10vh;
    background: var(--color-8);
}

#mobile_menu_button{
    background: none;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    cursor:pointer;
    color:var(--color-6);
}

#top_menu_link_container a{
    font-weight: 400;
    font-size: 1.1rem;
    text-decoration: none;
    display:flex;
    align-items: center;
    transition:color 0.3s ease;
}

@media (min-width:320px) and (max-width:767px) {
    #top_menu_link_container {
        display:none;
        position: absolute;
        background: var(--color-0);
        width: 100vw;
        left: 0;
        top: 10vh;
        padding: 20px;
        z-index:9999999999;
    }
}
#header{
    background: linear-gradient(45deg, #000000cc, #1a1a1a61), url(../img/header-qrdocs-7.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top, right top;
}

/* mobiel */
@media (max-width: 767px) {
    #header {
        background-position: left top,calc(100% + 450px) top; /* 50px naar links vanaf de rechterkant */
    }
}

#footer{
    background-color: var(--color-6);
    color: var(--color-0);
    padding: 50px 0;
    margin-top:5vh;
}

#footer h1,
#footer h2,
#footer h3,
#footer p,
#footer a {
  font-size: 90%;
}

#copyright_footer{
    background-color: black;
}

a{
    text-decoration: underline;
}

input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	outline: none;
	padding: 6px 10px;
	display: inline-block;
	background-color: var(--form-background-color);
	color: var(--form-text-color);
	transition: background-color 1s, color 1s;
	margin: 0;
	border: 1px solid #ccc;
	border-radius: var(--border-radius);
	-webkit-appearance: none;
	appearance: none;
}

textarea.CKEditor {
	height: 298px;
}

input.invalid {
	border: 1px solid var(--red-color) !important;
}

input[type=file] {
	padding: 0;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email] {
	width: 100%;
	box-sizing: border-box;
}

input[type=date],
input[type=time] {
	width: 200px;
	box-sizing: border-box;
	padding: 5px 10px;
}

input[type=submit] {
	font-family: 'Catamaran', sans-serif;
	font-size: inherit;
}

.text_color_0{
    color:var(--color-0) !important;
}

.text_color_1{
    color:var(--color-1) !important;
}

.text_color_2{
    color:var(--color-2) !important;
}

.text_color_3{
    color:var(--color-3) !important;
}

.text_color_4{
    color:var(--color-4) !important;
}

.text_color_5{
    color:var(--color-5) !important;
}

.text_color_6{
    color:var(--color-6) !important;
}

.text_color_7{
    color:var(--color-7) !important;
}

.text_color_8{
    color:var(--color-8) !important;
}

.text_color_9{
    color:var(--color-9) !important;
}

.text_size_small{
    font-size: 0.8rem;
}
.background_color_0{
    background-color:var(--color-0);
}

.background_color_1{
    background-color:var(--color-1);
}

.background_color_2{
    background-color:var(--color-2);
}

.background_color_3{
    background-color:var(--color-3);
}

.background_color_4{
    background-color:var(--color-4);
}

.background_color_5{
    background-color:var(--color-5);
}

.background_color_6{
    background-color:var(--color-6);
}

.background_color_7{
    background-color:var(--color-7);
}

.background_color_8{
    background-color:var(--color-8);
}

.background_color_9{
    background-color:var(--color-9);
}

.background_img_1{
    background:url('../img/backgrounds/background-1.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.button{
    color: var(--color-0);
    text-decoration: none;
    padding: 10px 45px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    border:none;
    cursor:pointer;
    box-shadow:var(--box-shadow);
        padding: 20px 50px;
}

.button_pulse{
          animation: pulse 2s infinite;
}

.img_container{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: var(--box-shadow);
}

.img_container img{
    width:100%;
}

.white_shadow{
    background-color:var(--color-0);
    box-shadow:var(--white-shadow);
}

.extra_large_text{
    font-size: 3.6rem;
}

@media (min-width:320px) and (max-width:767px) {
    .extra_large_text{
        font-size: 2rem;
    }
}

.carrousel_icon{
    font-size: 3rem;
    margin-right: 30px;
    float:left;
    cursor:pointer;
}

.carrousel_text{
    float:left;
    white-space: nowrap;
    overflow: hidden;
}

.carrousel_text h2{
    margin-top:0;
}

.carrousel_button{
    height:15px;
    aspect-ratio: 1;
    border-radius:100%;
    margin:15px;
    background-color: var(--color-7);
    cursor:pointer;
}

.carrousel_button_active{
    background-color: var(--color-1);
}

.partner_container{
    border: 2px solid var(--color-7);
    border-radius: var(--border-radius);
    height: 200px;
    margin-right: 60px;
    aspect-ratio: 1.7;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner_container img{
    filter: grayscale(1);
    width:80%;
    transition:0.8s;
}

.partner_container:hover{
    box-shadow:var(--box-shadow);
}

.partner_container:hover img{
    filter:grayscale(0);
}

    .img_compare_container {
        position: relative;
        width: 100%;
    display:flex;
    }

    .img_compare_container img {
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .img_before {
        z-index: 1;
    }

    .img_resize {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 50%;
        overflow: hidden;
        z-index: 2;
    }

    .img_resize img {
        width: auto;
        height: 100%;
    }

    .img_slider {
        position: absolute;
        top: -20px;
        left: 50%;
        width: 10px;
        height: calc(100% + 40px);
        background-color: var(--color-7);
        cursor: ew-resize;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--box-shadow);
        border-radius:var(--border-radius);
    }

    .img_slider_handle {
        background: var(--color-1);
        height: 50px;
        aspect-ratio: 1;
        color: white;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--box-shadow);
        font-size: 1.6rem;
      animation: pulse 2s infinite;
      transition:background 0.5s ease, height 0.5s ease;
}
.img_slider_handle:hover {
    height: 60px;
    background: var(--color-2);
    animation:none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 189, 72, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 189, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 189, 72, 0);
  }
}

.notification{
    background: var(--color-9);
    border-radius: var(--border-radius);
    padding: 5px 30px;
    box-shadow: var(--box-shadow);
}

    .price_card {
        border: 1px solid #ccc;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        overflow: hidden;
    }

    .price_card h3:not(.price_card_info h3) {
        margin: 0;
        color: var(--color-1);
    }

    .price_card_header {
        text-align: center;
        background: var(--color-8);
        width: 100%;
        padding: 40px 20px 40px 20px;
        height: 250px;
    }

    .price_card_content {
        padding: 20px;
    }

    .price_block_price {
        width: 100%;
        display: flex;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 25px;
            flex-wrap: wrap;
    }

    .price_block_currency {
        margin-right: 0.375rem;
        margin-top: 0.3rem;
        font-size: 1.3rem;
    }

    .price_block_value {
        font-weight: 700;
        line-height: 4rem;
        font-size: 2.6rem;
    }

    .price_block_decimals {
        font-size: 1.4rem;
        margin-top: 0.7rem;
    }

    .price_block_frequency {
        margin-top: 1rem;
        font-size: 0.9rem;
        font-weight: 400;
        margin-left: 0.5rem;
    }

    .price_card:nth-of-type(1) h3:not(.price_card_info h3){
        color: var(--color-1);
    }

    .price_card:nth-of-type(2) h3:not(.price_card_info h3) {
        color: var(--color-2);
    }

    .price_card:nth-of-type(3) h3:not(.price_card_info h3) {
        color: var(--color-3);
    }

    .price_card:nth-of-type(4) h3:not(.price_card_info h3) {
        color: var(--color-4);
    }

    .price_card:nth-of-type(5) h3:not(.price_card_info h3){
        color: var(--color-5);
    }

    .price_card_info {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 40px;
        color: white;
        margin-top: 35px;
        margin-bottom: -20px;
        text-align: center;
    }


.line_anchor_container {
    position: relative;
}

.line_anchor,
.line_anchor_visible {
    position: absolute;
    height: 0;
    width: 0;
}

.leader-line {
    z-index: 0;
}

.above_line {
    display: flex;
    position: relative;
    z-index: 9;
}

@media (max-width: 768px) {
    .leader-line {
        display: none !important;
    }
}