/* 
    Table of content
    1. DASHBOARD
        1.1 Content
            1.1.1 Notification
            1.1.2 Progress
            1.1.3 Title
            1.1.4 Member
        1.2 Tabs
            1.2.1 Header
            1.2.2 Body
                1.2.2.1 Newsletters & Documents
    2. PASSWORD RESET
    3. SEARCH RESULTS
        3.1 Header
        3.2 Body
    4. BIJTELLING / NORMLEASE
        4.1 Bijtelling tool
            4.1.1 Plate
        4.2 Normlease tool
            4.2.1 Form
            4.2.2 Output
            4.2.3 CTA
*/

/* 1. DASHBOARD */
/* 1.1 Content */
.dashboard .content-wrapper {
    padding: 0 var(--grid-padding-inner);
    border-bottom: .1rem solid #E6E6E6;
}

/* 1.1.1 Notification */
.dashboard .notification {
    margin-bottom: var(--grid-padding);
    padding: var(--box-padding);
    border-radius: var(--border-radius);
    background-color: var(--color-lightgrey);
    font-size: 1.6rem;
}

/* 1.1.2 Progress */
.dashboard .progress-wrapper {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dashboard .progress-wrapper .text {
    font-size: 1.6rem;
    white-space: nowrap;
}

.dashboard .progress-bar {
    width: 100%;
    height: 3rem;
    padding: .5rem;
    border: .1rem solid rgba(6, 174, 224, .3);
    border-radius: 5rem;
}

.dashboard .progress {
    position: relative;
    height: 2rem;
    background-color: var(--color-blue);
    border-radius: 5rem;
}

.dashboard .percentage {
    position: absolute;
    top: 0;
    right: 1rem;
    height: 2rem;
    display: flex;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: white;
}

/* 1.1.3 Title */
.dashboard h2 {
    margin-top: 3rem;
}

/* 1.1.4 Member */
.dashboard .member-wrapper {
    margin-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 0;
    font-size: 1.6rem;
}

.dashboard .member-wrapper > div {
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: .1rem solid #E6E6E6;
}

.dashboard .member-wrapper .type {
    color: var(--color-blue);
}

/* 1.2 Tabs */
.dashboard .tabs-wrapper {
    padding: 3rem var(--grid-padding-inner) 0;
}

/* 1.2.1 Header */
.dashboard .tabs-header {
    background-color: var(--color-lightgrey);
    border-radius: var(--border-radius);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.dashboard .tabs-header button {    
    padding: 1.8rem 3rem;
    border: 0;
    background: none;
    font-family: "Manrope", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-darkgrey);
    cursor: pointer;
    transition: .3s;
}

.dashboard .tabs-header button.active {
    color: var(--color-blue);
}

/* 1.2.2 Body */
.dashboard .tabs-body {
    padding-top: var(--box-padding);
    font-size: 1.6rem;
}

.dashboard .tabs-body .item.info {
    column-count: 2;
    column-gap: 2rem;
}

.dashboard table {
    margin-bottom: 4.7rem;    
}

.dashboard th {
    background-color: inherit;
    font-weight: 400;
}

.dashboard th.faux-h4 {
    margin: 0;
    font-weight: 700;
}

.dashboard td {
    border-bottom: .1rem solid #E6E6E6;    
}

.dashboard tr > th:last-child,
.dashboard tr > td:last-child {
    text-align: right;
}

/* 1.2.2.1 Newsletters & Documents */
.dashboard .newsletters-wrapper .item,
.dashboard .documents-wrapper .item {
    padding: 2rem;
    border-bottom: .1rem solid #E6E6E6;
}

.dashboard .newsletters-wrapper .item:first-child,
.dashboard .documents-wrapper .item:first-child {
    padding-top: 1.3rem;
}

.dashboard .newsletters-wrapper .item .inner,
.dashboard .documents-wrapper .item .inner {
    display: flex;
    gap: 3rem;
}

.dashboard .newsletters-wrapper .item.is-locked .icon,
.dashboard .documents-wrapper .item.is-locked .icon,
.dashboard .newsletters-wrapper .item.is-locked .title,
.dashboard .documents-wrapper .item.is-locked .title, 
.dashboard .newsletters-wrapper .item.is-locked .date,
.dashboard .documents-wrapper .item.is-locked .download-disabled,
.dashboard .newsletters-wrapper .item.is-locked .download-disabled { 
    opacity: .4; 
    pointer-events: none; 
}

.dashboard .newsletters-wrapper .item.is-locked .download-disabled,
.dashboard .documents-wrapper .item.is-locked .download-disabled { 
    pointer-events: auto;
}

.dashboard .newsletters-wrapper .icon,
.dashboard .documents-wrapper .icon {
    flex: 0 0 3.2rem;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--color-lightgrey);
}

.dashboard .newsletters-wrapper .title,
.dashboard .documents-wrapper .title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

.dashboard .newsletters-wrapper .label,
.dashboard .documents-wrapper .label {
    position: relative;
    top: -.3rem;
    background-color: var(--color-lightblue);
    color: var(--color-blue);
}

.dashboard .newsletters-wrapper .date {
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-grey);
}

/* 2. PASSWORD RESET */
.vzr-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-padding);
}

.vzr-form .btn {
    justify-self: flex-start;
}

.content-text-form .form-wrapper .vzr-message {
    margin-bottom: var(--grid-padding);
    padding: var(--box-padding);
    border-radius: var(--border-radius);
}

.content-text-form .form-wrapper .inner.has-bg .vzr-message {
    padding: 1rem 1.5rem;
}

/* 3. SEARCH RESULTS */
/* 3.1 Header */
.search-results-header .container {
    padding: var(--box-padding) var(--grid-padding-inner);
    border-radius: var(--border-radius);
    background-color: var(--color-lightblue);
}

.search-results-header .text {
    flex: 0 0 6rem;
    font-size: 1.6rem;
}

.search-results-header .filter-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-results-header .search-wrapper {
    margin-top: var(--grid-padding);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-results-header .filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-padding);
}

.search-results-header .btn {
    padding: 1rem 2.5rem;
    border: 0;
    background: white;
    color: var(--color-blue);
    transition: .3s;
}

.search-results-header .btn.active {
    background-color: var(--color-blue);
    color: white;
}

.search-results-header .btn::before {
    display: none;
}

/* 3.2 Body */
.search-results-body .item {
    position: relative;
    padding: var(--box-padding) var(--grid-padding-inner);
    border-top: .1rem solid #E6E6E6;
}

.search-results-body .item:first-child {
    border: 0;
}

.search-results-body .date-wrapper {
    position: absolute;
    top: var(--box-padding);
    right: var(--grid-padding-inner);
    font-size: 1.5rem;
    color: var(--color-grey);
}

.search-results-body .date-wrapper i {
    margin-right: .5rem;
}

.search-results-body .item a {
    display: inline-block;
    text-decoration: none;
}

.search-results-body .item a:hover h3 {
    color: var(--color-blue);
}

.search-results-body h3 {
    margin: 0;
}

.search-results-body .permalink-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem 1rem; 
}

.search-results-body .permalink {
    font-size: 1.6rem;
    color: var(--color-grey);
}

.search-results-body .label {
    background-color: var(--color-lightblue);
    color: var(--color-blue);
}

.search-results-body .text {
    margin-top: 1.5rem;
}

.search-results-body .no-results {
    padding: 0 var(--grid-padding-inner);
}

/* 4. BIJTELLING / NORMLEASE */
.vzr-form .vzr-money{
  position: relative;
}

.vzr-form .vzr-money input:not(:placeholder-shown){
  padding-left: 3rem !important;
}

.vzr-form .vzr-money input:not(:placeholder-shown) + .vzr-money-prefix{
  opacity: 1;
}

.vzr-form .vzr-money-prefix{
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
}

/* 4.1 Bijtelling tool */
.vzr-bijtelling-output {
    margin-top: 2rem;
}

.vzr-bijtelling-output .tips {
    padding: 2rem 2rem 0;
    font-style: italic;
}

.vzr-bijtelling-form .polite span {
    display: block;
    font-style: italic;
}

/* 4.1.1 Plate */
.vzr-plate-form .vzr-plate-wrapper {
    height: 4.8rem;
    padding: 1rem .4rem 1rem 2.5rem;
    border: 0;
    border-radius: 5rem;
    background-color: var(--color-blue);   
    display: inline-flex; 
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 700;
    color: white;
}

.vzr-plate-form .vzr-plate-submit-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vzr-plate-form .vzr-plate-input-wrapper {
    display: flex;
    border-radius: .4rem;    
    overflow: hidden;
}

.vzr-plate-form .vzr-plate-country {
    position: relative;
    width: 2rem;
    padding: .4rem 0;
    background-color: #003CAA;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-family: 'Kenteken';
    font-size: .8rem;
    font-weight: 400;
    line-height: 1;
    color: white;
}

.vzr-plate-form .vzr-plate-country::before {
    content: '';
    position: absolute;
    top: .35rem;
    left: .25rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/icon-euro-stars-yellow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.vzr-plate-form .vzr-plate-input {
    width: 12rem;
    padding: .8rem 1rem .7rem;
    border: 0;
    background-color: #F3B601;
    font-family: 'Kenteken';
    font-size: 1.7rem;
    line-height: 1;
    color: var(--color-darkblue);
}

.vzr-plate-form .vzr-plate-input::placeholder {
    color: var(--color-darkblue);
}

.vzr-plate-form .vzr-plate-submit {
    width: 4rem;
    height: 4rem;
    border: 0;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-darkblue);
    transform: rotate(-45deg);
    cursor: pointer;
    transition: .3s;
}

.vzr-plate-form .vzr-plate-submit:hover {
    transform: rotate(0);
}

/* 4.2 Normlease tool */
/* 4.2.1 Form */
.vzr-normlease-tool > form {
    padding: var(--box-padding);
    border-radius: var(--border-radius);
    background-color: var(--color-lightgrey);
}

.vzr-normlease-tool > form h3:last-of-type {
    margin-top: 2rem;
}

.vzr-normlease-tool .polite span {
    display: block;
    padding-top: 2rem;
    font-style: italic;
}

/* 4.2.2 Output */
.vzr-normlease-output {
    max-width: 94rem;
    margin: 0 auto;
    padding-top: 4rem;
    font-size: 1.7rem;
    font-weight: 500;
}

.vzr-normlease-output .header {
    text-align: center;
}

.vzr-normlease-output > div {
    padding: var(--grid-padding-inner);
    border-bottom: .1rem solid #E6E6E6;
}

.vzr-normlease-output .info {
    display: flex;
    justify-content: space-between;
    gap: 2rem
}

.vzr-normlease-output .position {
    font-size: 1.6rem;
    font-weight: 600;
}

.vzr-normlease-output .position .inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10rem;   
    text-align: center; 
}

.vzr-normlease-output .position .inner > div {
    position: relative;
}

.vzr-normlease-output .position .inner > div::before {
    content: '';
    position: absolute;
    top: 0;
    right: -4.95rem;
    width: .1rem;
    height: 100%;
    background-color: #E6E6E6;
}

.vzr-normlease-output .position .inner > div:nth-child(3)::before {
    display: none;
}

.vzr-normlease-output .position .inner > div > div:first-child {
    margin-bottom: 1rem;
    font-size: 7rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-darkgrey);
}

.vzr-normlease-output .cars > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.vzr-normlease-output .cars img {
    width: 100%;
    height: 100%;
    max-height: 18rem;
    object-fit: contain;
}

.vzr-normlease-output .normlease {
    color: var(--color-blue);
}

.vzr-normlease-output .difference div:last-child {
    color: red;
}

.vzr-normlease-output--locked {
    position: relative;
}

.vzr-normlease-output--locked::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    background: white;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.content-shortcode:has(.vzr-normlease-output--locked) {
    padding-bottom: 0 !important;
}

.vzr-normlease-tool .actions {
    max-width: 94rem;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--grid-padding) 3rem;
}

.vzr-normlease-tool .actions button {
    margin: 0;
}

.vzr-normlease-tool .actions .link {
    border-color: var(--color-darkgrey);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-darkgrey);
}

.vzr-normlease-tool .actions .link:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

/* 4.2.3 CTA */
.vzr-normlease-cta {
    width: calc(100% + calc(2 * var(--grid-padding-inner)));
    margin: 0 calc(-1 * var(--grid-padding-inner));
}

.vzr-normlease-cta .container {
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--grid-padding);
}

.vzr-normlease-cta .content-wrapper {
    min-height: 35.6rem;
    padding: var(--box-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.vzr-normlease-cta .image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    background-color: var(--color-lightgrey);
    overflow: hidden;
}

.vzr-normlease-cta .image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* RESIZE */
@media (max-width: 1099px) {
    /* 1. DASHBOARD */
    /* 1.2 Tabs */
    /* 1.2.2 Body */
    .dashboard .tabs-body .item.info {
        column-count: 1;
        column-gap: inherit;
    }
}

@media (max-width: 1024px) {
    /* 1. DASHBOARD */
    /* 1.2 Tabs */
    /* 1.2.1 Header */
    .dashboard .tabs-header {
        padding: var(--box-padding);
        flex-direction: column;
    }

    .dashboard .tabs-header button {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .dashboard .tabs-header button:not(:first-child) {
        margin-top: 1rem;
    }

    /* 1.2.2 Body */
    .dashboard table {
        margin-bottom: var(--box-padding);
    }

    .dashboard th {
        padding: 1rem 0;
    }

    .dashboard td {
        padding: 1rem 0;  
    }

    /* 1.2.2.1 Newsletters & Documents */
    .dashboard .newsletters-wrapper .item,
    .dashboard .documents-wrapper .item {
        padding: 2rem 0;
        gap: 1rem;
    }

    .dashboard .newsletters-wrapper .title,
    .dashboard .documents-wrapper .title {
        font-size: 1.7rem;
        line-height: 1.5;
    }

    .dashboard .newsletters-wrapper .label,
    .dashboard .documents-wrapper .label {
        top: -.2rem;
    }

    /* 4. BIJTELLING / NORMLEASE */
    /* 4.2 Normlease tool */
    /* 4.2.2 Output */
    .vzr-normlease-output {
        font-size: 1.6rem;
    }

    .vzr-normlease-output > div {
        padding: var(--grid-padding-inner) 0;
    }

    .vzr-normlease-output .position {
        padding: 3rem 0;
        font-weight: 500;
    }

    .vzr-normlease-output .cars {
        padding: 3rem 0;
    }

    .vzr-normlease-output .cars > div {
        font-weight: 500;
    }
}

@media (max-width: 899px) {
    /* 1. DASHBOARD */
    .dashboard .items-wrapper {
        grid-template-columns: 1fr;
    }

    .dashboard .item.alert,
    .dashboard .item:nth-child(6) {
        grid-column: inherit;
    }

    /* 4. BIJTELLING / NORMLEASE */
    /* 4.2 Normlease tool */
    /* 4.2.2 Output */
    .vzr-normlease-output .position .inner > div > div:first-child {
        font-size: 5.4rem;
    }

    .vzr-normlease-output .cars img {
        max-height: 12rem;
    }
}

@media (max-width: 767px) {
    /* 3. SEARCH RESULTS */
    /* 3.2 Body */
    .search-results-body .date-wrapper {
        position: relative;
        top: inherit;
        right: inherit;
        margin-bottom: .3rem;
    }

    .search-results-body .permalink-wrapper {
        display: none;
    }

    /* 3. SEARCH RESULTS */
    /* 3.1 Header */
    .search-results-header .btn {
        height: inherit;
    }

    /* 4. BIJTELLING / NORMLEASE */
    /* 4.2 Normlease tool */
    /* 4.2.2 Output */
    .vzr-normlease-output .position .inner {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }

    .vzr-normlease-output .cars > div {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
}

@media (max-width: 599px) {
    /* 1. DASHBOARD */
    /* 1.2 Tabs */
    /* 1.2.2 Body */
    .dashboard th,
    .dashboard td {
        display: block;
        width: 100%;
    }

    .dashboard tr > th:first-child,
    .dashboard tr > td:first-child {
        padding-bottom: 0;
        border: 0;
    }

    .dashboard tr > th:last-child,
    .dashboard tr > td:last-child {
        padding-top: 0;
    }

    .dashboard tr > th:last-child,
    .dashboard tr > td:last-child {
        text-align: left;
    }

    /* 4. BIJTELLING / NORMLEASE */
    /* 4.2 Normlease tool */
    /* 4.2.3 CTA */
    .vzr-normlease-cta .container {
        grid-template-columns: 1fr;
    }

    .vzr-normlease-cta .content-wrapper {
        min-height: inherit;
    }

    .vzr-normlease-cta .image-wrapper {
        padding-top: 67%;
    }
}

@media (max-width: 499px) {
    /* 4. BIJTELLING / NORMLEASE */
    /* 4.1 Bijtelling tool */
    /* 4.1.1 Plate */
    .vzr-plate-form .vzr-plate-wrapper {
        width: 100%;
    }
}