/* =====================================================
WRAPPER – DESKTOP BASIS
===================================================== */
.wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px 50px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);

    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #003366;
}

/* =====================================================
WRAPPER INHOUD / TYPOGRAFIE
===================================================== */
.wrapper * {
    color: inherit;
    text-shadow: 0 0 1px rgba(0, 51, 102, 0.15);
}

.wrapper h1,
.wrapper h2,
.wrapper h3 {
    text-shadow: 0 1px 1px rgba(0, 51, 102, 0.2);
    text-align: center;
}

.wrapper p {
    font-size: 14px;
    line-height: 1.8;
    padding: 10px 15px;
    margin: 0;
    text-align: left;
}

/* =====================================================
TABS
===================================================== */
.tabs {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #d0d7df;
}

.tabs li {
    padding: 10px 18px;
    background: #eef2f5;
    border: 1px solid #c9d3dc;
    border-bottom: none;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
}

.tabs li.active {
    background: #ffffff;
    font-weight: bold;
}

/* =====================================================
TAB CONTENT
===================================================== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =====================================================
INPUTS
===================================================== */
.in {
    width: 100%;
    padding: 10px;
    border: 1px solid #c7d0d9;
    background: #fbfbfb;
    border-radius: 4px;
    margin-bottom: 14px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.12);
    font-size: 14px;
}

/* =====================================================
MOBIEL – WRAPPER FIX (ALTIJD LAATSTE)
===================================================== */
@media (max-width: 768px) {
    .wrapper {
        margin: 0 auto;
        padding: 20px 15px;
        border-radius: 0;
    }
    .wrapper .tabs {
        gap: 4px;
        margin-left:-3px;
        margin-right: -1px;
        margin-bottom: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .wrapper .tabs li {
        padding: 0 !important;
        margin: 0 !important;
    }

    .wrapper .tabs li,
    .wrapper .tabs li a {
        font-size: 12px !important;
        padding: 6px 10px !important;
        white-space: nowrap;
        border-radius: 4px 4px 0 0;
    }
}

.client-form label {
    margin:10px 0 0 5px;
}
.hoofdtitle {
    /* deze is voor Google */
    position:absolute;
    left:-9999px;
    top:auto;
}
.btn-succes-subtle {
    background-color: #d1e7dd !important;
    color: #0f5132 !important;
    border-color: #badbcc !important;
}

.btn-succes-subtle:hover {
    background-color: #c7dfd4 !important;
    border-color: #a8cdbb !important;
    color: #0c4028 !important;
}
.btn-success {min-width: 150px;} 
.btn-success:hover{background-color: #008000; color: #ffffff;}

.live-demo {
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    color: #ffffff;
    box-shadow:
    0 0 3px rgba(46,204,113,0.6),
    0 0 6px rgba(46,204,113,0.4),
    inset 0 0 6px rgba(255,255,255,0.25);

    transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

/* Neon parel gloedlaag */
.live-demo::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05),
    transparent 60%
    );

    opacity: 0.4;
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
}

/* Hover: donkerder groen + bewegende gloed */
.live-demo:hover {
    background: linear-gradient(135deg, #27ae60, #1e8449);

    box-shadow:
    0 0 10px rgba(46,204,113,0.9),
    0 0 20px rgba(46,204,113,0.6),
    0 0 35px rgba(46,204,113,0.4),
    inset 0 0 8px rgba(255,255,255,0.35);

    transform: translateY(-1px);
}

/* Beweging van de parel-gloed */
.live-demo:hover::before {
    opacity: 0.8;
    animation: pearlGlow 1.6s linear infinite;
}
.save-domain {
    position: relative;
    background: linear-gradient(180deg, #28a745, #218838);
    border: none;
    color: #ffffff;

    box-shadow:
    0 2px 4px rgba(0,0,0,0.15),
    0 0 0 0 rgba(40,167,69,0);

    transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

/* Hover: iets donkerder + zachte focusgloed */
.save-domain:hover {
    background: linear-gradient(180deg, #218838, #1e7e34);

    box-shadow:
    0 2px 6px rgba(0,0,0,0.18),
    0 0 0 0.2rem rgba(40,167,69,0.25);
}

/* Active: ingedrukt gevoel */
.save-domain:active {
    transform: translateY(1px);
    box-shadow:
    0 1px 3px rgba(0,0,0,0.2),
    0 0 0 0.15rem rgba(40,167,69,0.3);
}

/* Focus (toetsenbord / accessibility) */
.save-domain:focus {
    outline: none;
    box-shadow:
    0 0 0 0.25rem rgba(40,167,69,0.35);
}

/* Animatie */
@keyframes pearlGlow {
    0% {
        transform: translateX(-20%) translateY(-20%) rotate(0deg);
    }
    50% {
        transform: translateX(20%) translateY(20%) rotate(180deg);
    }
    100% {
        transform: translateX(-20%) translateY(-20%) rotate(360deg);
    }
}

.btn-nutral-subtle {
    background-color: #F0F0F0 !important;
    color: #0f5132 !important;
    border-color: #badbcc !important;
}

.btn-nutral-subtle:hover {
    background-color: #C0FFC0 !important;
    border-color: #a8cdbb !important;
    color: #0c4028 !important;
}

.btn-primary-subtle,
.btn.btn-primary {
    background-color: #cfe2ff !important;
    color: #084298 !important;
    border-color: #9ec5fe !important;
}

.btn-primary-subtle:hover,
.btn.btn-primary:hover {
    background-color: #bfd8ff !important;
    border-color: #8bb9fe !important;
    color: #063678 !important;
}

.btn-danger-subtle,
.btn.btn-danger {
    background-color: #f8d7da !important;
    color: #842029 !important;
    border-color: #f5c2c7 !important;
}

.btn-danger-subtle:hover,
.btn.btn-danger:hover {
    background-color: #FF8080 !important;
    border-color: #eaaaaf !important;
    color: #6e1a23 !important;
}


.btn-warning-subtle,
.btn.btn-warning {
    background-color: #fff3cd !important;
    color: #664d03 !important;
    border-color: #ffecb5 !important;
}

.btn-warning-subtle:hover,
.btn.btn-warning:hover {
    background-color: #ffebb0 !important;
    border-color: #ffe39c !important;
    color: #503b02 !important;
}

.btn-info-subtle,
.btn.btn-info {
    background-color: #cff4fc !important;
    color: #055160 !important;
    border-color: #b6effb !important;
}

.btn-info-subtle:hover,
.btn.btn-info:hover {
    background-color: #bcecf7 !important;
    border-color: #a2e6f3 !important;
    color: #04404d !important;
}

.btn-secondary-subtle,
.btn.btn-secondary {
    background-color: #e2e3e5 !important;
    color: #41464b !important;
    border-color: #d3d6d8 !important;
}

.btn-secondary-subtle:hover,
.btn.btn-secondary:hover {
    background-color: #d7d8da !important;
    border-color: #c6c7c9 !important;
    color: #2d3034 !important;
}

@media (min-width: 600px) {
    #front-img {
        height: 600px!important;    
    }
    .post-image, .carousel-item {
        width: 540px; /* gewenste breedte */
        height: 330px; /* gewenste hoogte */
        margin-bottom: -20px;
        overflow: hidden;
    }
    .post-image img, .carousel-item img {
        width: 500px; /* werkelijke breedte van de afbeelding */
        height: auto; /* behoudt de beeldverhouding */
        margin-bottom: -40px;
        /* positioneer de afbeelding indien nodig */
    }
    ]
    @media (max-width: 599px) {
        .post-image, .carousel-item {
        width: auto; /* gewenste breedte */
        height: auto; /* gewenste hoogte */
        overflow: hidden;
    }
    .post-image img, .carousel-item img {
        width: auto; /* werkelijke breedte van de afbeelding */
        height: auto; /* behoudt de beeldverhouding */
        /* positioneer de afbeelding indien nodig */
    }
}
}
/**************************************************
=-*=-*=-*=-*=-*=-*= Single Post =-*=-*=-*=-*=-*=-*=
**************************************************/
.single-post01 .post-image img,
.single-post01 .post-navigation,
.single-post01 .comment-list img,
.sidebar .widget,
.sidebar .widget-tweeter small,
.sidebar .widget-twitter small,
#loader-wrapper,
.post-image img,
.single-post01 .post-item-description .post-meta,
.sidebar .form-inline .input-group,
.sidebar .post-thumbnail-entry,
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed,
#blog .post-item.border > .post-item-wrap > .post-item-description,
#blog img,#blog audio,#blog iframe{
    width: 100%;
}
.single-post01 .post-image img {
    height: auto;
}
.single-post01 .post-item-description {
    font-size: 16px;
    padding: 22px 0;
    line-height: 28px;
}
.single-post01 .post-item-description h2,
.single-post01 .post-item-description h2 > a {
    font-size: 34px;
    margin-top: 8px;
    line-height: 38px;
    margin-bottom: 12px;
}
.single-post01 .post-item-description .post-meta {
    padding: 12px 0;
    margin-bottom: 26px;
}
.single-post01 .post-item-description .post-meta-date,
.single-post01 .post-item-description .post-meta-date a,
.single-post01 .post-item-description .post-meta-category,
.single-post01 .post-item-description .post-meta-comments,
.single-post01 .post-item-description .post-meta-comments a,
.single-post01 .post-navigation .post-next,
.single-post01 .post-navigation .post-prev,
.sidebar .post-thumbnail-list a,
.sidebar .tags a,
.load-more a,
#blog .post-item.border .post-image .post-meta-category a,
#blog .post-item .post-item-description > h2,
#blog .post-item .post-item-description > h2 > a,
.breadcrumb ol li a, .breadcrumb ul li a,
.sidebar .widget-categories ul li a, .post-meta-category a{
    text-decoration: none; 
}
.single-post01 .post-meta-share a,
#blog .post-item.border .post-image .post-meta-category a,
.post-meta-category a
{
    color: #fff;
}
a.item-link{margin-top: 20px; display: inline-block}
.single-post01 .post-item-description .post-meta-date,
.single-post01 .post-item-description .post-meta-date a,
.single-post01 .post-item-description .post-meta-category,
.single-post01 .post-item-description .post-meta-category a,
.single-post01 .post-item-description .post-meta-comments,
.single-post01 .post-item-description .post-meta-comments a,
.single-post01 .post-tags a{
    font-size: 13px;
    margin-right: 16px;
}
.single-post01 .post-item-description .post-meta-category i,
.single-post01 .post-item-description .post-meta-comments i,
.single-post01 .post-item-description .post-meta-date i {
    margin-right: 4px;
}
.single-post01 .post-meta-share a{
    line-height: 16px;
}
.single-post01 .post-meta-share a i{
    font-size: 30px;
}
.single-post01 .post-item-description .blockquote {
    font-size: 16px;
    margin: 0 0 20px;
    padding: 10px 20px;
}
.single-post01 .post-item-description .blockquote .small,
.single-post01 .post-item-description .blockquote small {
    font-size: 80%;
}
.single-post01 .post-tags {
    margin-bottom: 40px;
}
.single-post01 .post-tags a {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.single-post01 .post-navigation,
.sidebar .post-thumbnail-list,
#loader,
#blog .post-item .post-meta-category,
#blog .post-item .post-meta-comments,
#blog .post-item .post-meta-date,
#blog .post-item.border .post-image,
.breadcrumb ol li, .breadcrumb ul li,
.sidebar .widget-categories ul li,
.single-post01 .comments .comment .text {
    position: relative;
}
.single-post01 .post-navigation,
.sidebar .tags a {
    display: inline-block;
}
.single-post01 .post-navigation {
    min-height: 64px;
    padding: 20px 0 0;
    vertical-align: top;
}
.single-post01 .post-navigation .post-next,
.single-post01 .post-navigation .post-prev,
.post-navigation .post-prev:before,
.post-navigation .post-all,
#loader:before,
#loader:after,
.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed,
#blog .post-item.border .post-meta-category,
.sidebar .widget-categories ul li:before,
.player,
.sidebar .widget-tweeter:not([data-avatar="true"]) li::before,
.sidebar .widget-twitter:not([data-avatar="true"]) li::before,
.post-navigation .post-next:after{
    position: absolute;
}
.single-post01 .post-navigation .post-next,
.single-post01 .post-navigation .post-prev {
    height: 44px;
    max-width: 40%;
    font-size: 16px;
}
.post-navigation .post-prev:before,
.post-navigation .post-next:after{
    left: 0;
    top:10px;
    font-size: 20px;
    padding-top: 2px;
    content: "\f104";
    font-family: FontAwesome;
    transition: all .3s ease;
    transform: translate3d(0,-50%,0);
}
.post-navigation .post-next:after {
    right: 0;
    left: inherit;
    content: "\f105";
    font-family: FontAwesome;
}
.post-navigation .post-prev-title {
    padding-left: 25px;
}
.post-navigation .post-next span,
.post-navigation .post-prev span {
    opacity: 0.7;
    font-size: 11px;
    margin-top: 3px;
    margin-bottom: -6px;
    text-transform: uppercase;
}
.post-navigation .post-all {
    top: 32px;
    right: 50%;
    left: auto;
    width: 12px;
    opacity: .7;
    font-size: 24px;
    text-align: center;
}
.single-post01 .post-navigation .post-next {
    right: 0;
    text-align: right;
}
.post-navigation .post-next-title {
    padding-right: 25px;
}
.single-post01 .comments {
    padding: 40px 0;
}
.single-post01 .comments .comment {
    padding: 10px 0;
}
.single-post01 .comments .comment_number {
    font-size: 18px;
    margin: 0 0 30px;
}
.single-post01 .comments .comment .image,
.sidebar .post-thumbnail-entry > img,
.sidebar .post-thumbnail-entry,
.single-post01 .post-item-description .post-meta,
.sidebar .widget{
    float: left;
}
.single-post01 .comments .comment .image {
    width: 64px;
    height: 64px;
}
.single-post01 .comment-list img {
    height: auto;
    border-radius:100%;
}
.single-post01 .comments .comment .text {
    min-height: 80px;
    padding: 0 0 0 86px;
}
.single-post01 .comments .comment .text .name {
    font-size: 16px;
}
.single-post01 .comments .comment .comment_date {
    font-size: 12px;
}
.single-post01 .comments .comment .text .comment-reply-link {
    opacity: 0.7;
    font-size: 9px;
    padding: 0 0 0 5px;
    text-transform: uppercase;
}
.single-post01 .text_holder{
    line-height: 24px;
}
.single-post01 .comment .comment {
    margin-left: 90px;
}
.respond-form {
    padding-top: 40px;
}
.respond-comment {
    font-size: 18px;
    margin: 0 0 30px;
}
.single-post01 .form-group label:not(.error) {
    font-size: 12px;
    margin-bottom: 4px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.single-post01 .form-gray-fields .form-control {
    border-color: transparent;
}
.single-post01 .form-gray-fields .form-control:focus{
    outline: 0;
}
.single-post01 .form-control{
    box-shadow: none;
    line-height: 18px;
    padding:10px 16px;
    border-radius: 5px;
    font-size: 12px;
    transition: all .3s ease;
}
.form-gray-fields .btn{
    font-size: 12px;
    padding:13px 22px 10px;
    text-transform: uppercase;
}
.sidebar {
    font-size: 12px;
}
.sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.widget-newsletter .form-control{
    font-size: 14px;
    box-shadow: none;
    line-height: 18px;
    padding: 10px 16px;
    border-radius: 5px; height: auto;
}
.widget-newsletter .btn {
    font-weight: 600;
    height: 40px;
    padding: 8px 16px;
}
.widget-newsletter .btn{
    border-radius: 0 5px 5px 0;
}
.sidebar .nav-tabs {
    margin-bottom: 30px;
}
.sidebar .nav-tabs .nav-item {
    margin-bottom: -2px;
}
.tabs .nav-tabs .nav-link {
    border: 0;
    padding: 14px 24px;
    transition: .3s ease;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.sidebar .widget .tabs li > a {
    padding: 10px;
    font-size: 14px;
}
.sidebar .post-thumbnail-entry > img {
    height: 60px;
    width: 80px;
    margin-right: 16px;
    border-radius: 2px;
}
.sidebar .post-thumbnail-entry {
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.sidebar .post-thumbnail-entry:last-child,
.sidebar .widget-categories ul li:last-child{
    margin: 0;
    padding-bottom:0;
    border-bottom: none;
}
.sidebar .post-thumbnail-entry > img {
    height: 48px;
    width: 64px;
    margin-right: 10px;
}
.sidebar .post-thumbnail-entry img + .post-thumbnail-content {
    padding-left: 72px;
}
.sidebar .post-thumbnail-list a {
    margin: -4px 0 0;
}
.sidebar .post-thumbnail-entry .post-category i,
.sidebar .post-thumbnail-entry .post-date i {
    margin-right: 2px;
}
.sidebar .post-thumbnail-entry .post-category,
.sidebar .post-thumbnail-entry .post-date {
    font-size: 10px;
}
.sidebar .widget-title,
.sidebar > h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.sidebar .widget-tweeter ul,
.sidebar .widget-twitter ul,
.sidebar .widget-categories ul{
    list-style: none;
}

.sidebar .widget-tweeter ul,
.sidebar .widget-twitter ul {
    margin-bottom: 0;
    padding-left: 14px;
}
.sidebar .widget-tweeter li,
.sidebar .widget-twitter li {
    font-size: 12px;
    margin-bottom: 18px;
    position: relative;
}
.sidebar .widget-tweeter:not([data-avatar="true"]) li::before,
.sidebar .widget-twitter:not([data-avatar="true"]) li::before {
    content: "\f111";
    margin-left: -14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 6px;
    top: 5px;
}
.sidebar .tags a {
    padding: 5px 14px;
    border-radius: 50px;
    margin: 0 2px 5px 0;
}
.sidebar .widget-categories ul{
    padding:0;
}
.sidebar .widget-categories ul li{
    margin-bottom: 10px;
    padding:0 0 10px 28px;
}
.sidebar .widget-categories ul li:before{
    position: absolute ; content: "";
    left:0;
    top: 12px;
    font-size: 20px;
    padding-top: 2px;
    background: url("/assets/image/icon-folder.png"); width: 16px; height: 14px;
    transition: all .3s ease;
    transform: translate3d(0,-50%,0);
}
.sidebar .cat-count-span{
    float: right;
}
/************ PRELOADER CSS ************/
/* ====  Preloader styles ==== */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 9999999999999;
}
#loader {
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    z-index: 1001;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 1.5s linear infinite;
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    z-index: 1000;
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}
/*************************************************
=-*=-*=-*=-*=-*=-*= One Column =-*=-*=-*=-*=-*=-*=
**************************************************/
.breadcrumb,
#loader,
.sidebar .widget-tweeter small,
.sidebar .widget-twitter small,
.post-navigation .post-next span,
.post-navigation .post-prev span,
.sidebar .post-thumbnail-entry .post-category{
    display: block;
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: .5px;
    background-color: transparent;
    padding: 10px 0;
}
.breadcrumb ol, .breadcrumb ul{
    margin:0;
    padding: 0;
}
.breadcrumb ol li, .breadcrumb ul li {
    opacity: .8;
    display: inline;
}
.breadcrumb ol li + li::before,
.breadcrumb ul li + li::before {
    margin: 0 5px;
    content: ">";
    background-color: transparent;
    color: #fff;
}
.breadcrumb ol li.active,
.breadcrumb ol li:hover,
.breadcrumb ol li:last-child,
.breadcrumb ul li.active,
.breadcrumb ul li:hover,
.breadcrumb ul li:last-child {
    opacity: 1;
}
#blog .post-item.border > .post-item-wrap > .post-item-description {
    padding: 24px;
    line-height: 28px;
}
#blog .post-item.border .post-meta-category{
    top: 11px;
    z-index: 2;
    right: 10px;
    font-size: 13px;
    padding:7px 16px 4px;
    border-radius: 50px;
}
#blog .post-item .post-meta-category,
#blog .post-item .post-meta-comments,
#blog .post-item .post-meta-date {
    top: -4px;
    font-size: 12px;
    margin-right: 8px;
}
#blog .post-item .post-item-description > h2{
    font-size:24px !important;
}
.blockquote {
    margin-left: 72px !important;
}
.blockquote p {
    font-style: italic;
}
#blog .post-item .post-item-description > h2,
#blog .post-item .post-item-description > h2 > a {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 16px;
    letter-spacing: -.1px;
}
.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
    top: 0;
    left: 0;
    height: 100%;
}
.fluid-width-video-wrapper{
    padding-top:56.3%;
}
.player{
    top:0;
}
.post-audio audio{
    bottom: 0;
    left: 0;
}
.pagination{
    padding-left:15px;
}
.fluid-width-video-wrapper {
    padding-top: 66.8%;
}
.hide-blog{
    display: none;
}
.load-more a{
    padding: 12px 25px;
    border-radius: 30px;
}
.load-more a:hover{
    background: none;
}
.respond-form .form-group input{
    display: block;
}
.respond-form .form-group label:before{
    display: none;
}
.load-more a{
    color: #fff;
}
.post-meta-share{
    display: none !important;
}
.post-item-description{
    padding-right: 15px !important;
}
/*************************************************************
=-*=-*=-*=-*=-*=-*= Responsive Single Post =-*=-*=-*=-*=-*=-*=
*************************************************************/
@media screen and (max-width: 1199px) {
    .widget-newsletter .form-control {
        font-size: 12px;
        padding: 10px 10px;
    }
    .sidebar .widget .tabs li > a {
        font-size: 13px;
        padding: 10px 8px;
    }
    .sidebar .widget {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .single-post01 .post-item-description,
    .single-post01 .post-item-description .blockquote{
        font-size: 14px;
        line-height: 26px;
    }
    .single-post01 .post-navigation .post-next,
    .single-post01 .post-navigation .post-prev {
        font-size: 14px;
    }
    .single-post01 .post-item-description h2,
    .single-post01 .post-item-description h2 > a {
        margin-top: 0;
        font-size: 28px;
        line-height: 32px;
    }
}
@media screen and (max-width: 991px) {
    .respond-form {
        padding-top: 0;
    }
    .single-post01 .post-item-description .post-meta-date, .single-post01 .post-item-description .post-meta-date a, .single-post01 .post-item-description .post-meta-category, .single-post01 .post-item-description .post-meta-category a, .single-post01 .post-item-description .post-meta-comments, .single-post01 .post-item-description .post-meta-comments a {
        margin-right: 5px;
    }
    .single-post01 .comments .comment .text {
        padding: 0;
    }
    .single-post01 .comments .comment .image {
        width: 48px;
        height: 48px;
        margin-right: 14px;
    }
    .single-post01 .text_holder {
        font-size: 12px;
        margin: 10px 0 0;
    }
    .single-post01 .comment .comment {
        margin-left: 30px;
    }
    .single-post01 .comments{
        padding: 30px 0 0;
    }
    .sidebar {
        margin: 20px 0 0;
    }
    .page-title h1 {
        font-size: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .single-post01 .post-item-description h2,
    .single-post01 .post-item-description h2 > a {
        font-size: 24px;
        line-height: 26px;
    }
    #blog .post-item.border > .post-item-wrap > .post-item-description {
        line-height: 20px;
        font-size: 12px;
    }
}
@media screen and (max-width: 575px) {
    .single-post01 .text_holder p{
        margin: 0 0 8px;
    }
    .single-post01 .comments .comment .comment_date {
        font-size: 11px;
    }
    .single-post01 .post-item-description,
    .single-post01 .post-item-description .blockquote {
        font-size: 13px;
        line-height: 24px;
    }
    .single-post01 .post-item-description h2,
    .single-post01 .post-item-description h2 > a{
        margin:0;
    }
    .single-post01 .post-meta-share ul{
        margin:5px 0 0;
    }
    .single-post01 .post-item-description .post-meta-date, .single-post01 .post-item-description .post-meta-date a, .single-post01 .post-item-description .post-meta-category, .single-post01 .post-item-description .post-meta-category a, .single-post01 .post-item-description .post-meta-comments, .single-post01 .post-item-description .post-meta-comments a {
        font-size: 12px;
    }
    .single-post01 .respond-comment {
        font-size: 16px;
    }
    .page-title h1 {
        font-size: 1.8rem;
        padding: 1rem;
        padding-bottom: 0;
    }
    #blog .post-item .post-item-description > h2,
    #blog .post-item .post-item-description > h2 > a{
        font-size: 17px;
    }
}
.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 400px;
}
@media (max-width: 600px) {
    .recaptcha-container {
        padding: 10px;
        margin: 10px auto;
    }
}
/* ===========================================
Visit Cookie Pro – Login Styling
Unieke prefix: vtp-login-*
=========================================== */

/* BODY achtergrond */
body{
    background: #f4f6f8;
    font-family: Arial;

}
.grey {
    color:#808080;
}
/* LOGIN KAART */
.vtp-login-card{
    width: 330px;
    margin: 25px auto;
    padding: 25px 25px 8px 25px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(255,255,255,0.55);
}

/* TITEL */
.vtp-login-card h2{
    margin: 0 0 15px 0;
    color: #003366;
    font-size: 20px;
    text-align: center;
}

/* INPUTVELDEN */
.vtp-login-input{
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #cdd5de;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    height: 46px;
}

/* WACHTWOORD WRAP */
.vtp-login-pw-wrap{
    position: relative;
}

/* OOG-KNOP */
.vtp-login-pw-btn{
    position: absolute;
    right: 10px;
    top: -5px;
    height: 100%;
    width: 40px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vtp-login-pw-btn svg{
    width: 20px;
    height: 20px;
    stroke: #333;
}

/* WACHTWOORD VERGETEN LINK */
.vtp-login-forgot{
    text-align: left;
    margin-top: 15px;
    margin-bottom: 0px;
}

.vtp-login-forgot a{
    font-size: 14px;
    color: #beccd9;
    text-decoration: none;
}

.vtp-login-forgot a:hover{
    opacity: 0.7;
}

/* HONEYPOT ANTI-SPAM */
.vtp-hp-wrap{
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

.vtp-hp-wrap input{
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* INLOG BUTTON */
.vtp-login-submit{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(to bottom, #dfe7ee 0%, #c9d4df 50%, #dfe7ee 100%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.about-page-main-banner-con {
    padding: 0px 0 124px 0!important;
}
/* KLEUR BLOKKEN */
.kleurblok {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
    position: relative;
    gap: 10px;
}

.kleur-vak {
    width: 28px;
    height: 28px;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
}

.kleur-paneel {
    position: absolute;
    left: 0;
    top: 34px;
    background: #ffffff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    display: none;
    z-index: 20;
}

.kleur-paneel input[type='color'] {
    width: 150px;
    height: 50px;
    border: none;
}

.kleur-naam {
    margin-left: auto;
    min-width: 70px;
    color: #004466;
    font-size: 14px;
}

/* TRANSPARANTIE SLIDER */
.trans-block {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
}
.switchblok,
.kleurblok,
.textblok,
.trans-block {
    display: flex;
    flex-direction: column;   /* <<< alles onder elkaar */
    align-items: flex-start;  /* <<< label links uitlijnen */
}
.switchblok label,
.trans-block label,
.textblok label,
.kleurblok label {
    font-size: 13px;
    color: #003366;
    display: block;
    margin-bottom: 3px;
    min-width: 120px;
    padding-left:5px;
}
.textblok label,
.kleurblok label {
    margin-bottom: 0px;
    margin-left: -3px;
}

.trans-range {
    width: 80%;
}

/* TAB 2–4 */
.subbox {
    border: 2px solid #4eaaa2;
    padding: 15px;
    border-radius: 8px;
    width: 260px;
    margin: 20px auto;
}
.dt-layout-cell{
    font-size: 80%!important;
}
.details-control {
    cursor:pointer;
    width:16px;
} 
.dt-drop-icon {
    transition: transform 0.2s;
    cursor: pointer;
    font-size: 14px;
}

tr.shown .dt-drop-icon {
    transform: rotate(90deg);
} 
table.dataTable thead th.select-checkbox .dt-select-checkbox,
table.dataTable thead th.select-checkbox .dt-select-checkbox:before,
table.dataTable thead th.select-checkbox .dt-select-checkbox:after {
    display: none !important;
    content: none !important;
}
div.banner-con.about-page-banner-con.text-center {
    text-align: left !important;
}

.domain-row {
    display: grid;
    padding: 14px 18px;
    margin-bottom: 6px;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.domain-row:hover {
    background: #f4f7ff;
    border-color: #3b6ef5;
}
.domain-row-front{
    grid-template-columns: 1fr 40px;
}
.domain-row-second {
    grid-template-columns: 2fr 1fr 1fr 1fr 40px; 
}
.domain-row div {
    display: flex;
    align-items: center;
}
.col-domain {
    font-weight: 600;
    color: #222;
}

.col-pages,
.col-counter,
.col-scan {
    text-align: center;
    color: #444;
}

.col-open {
    text-align: right;
    font-size: 20px;
    color: #555;
}
.domain-body * {
    box-sizing: border-box;
    text-align: left;
}

.domain-row-header {
    background: #f4f6f8;
    border-bottom: 2px solid #d0d7de;
    cursor:none;
}

.domain-row-header > div {
    color: #003366;
}

.domain-body {
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #3b6ef5;
    background: #e5e5e5;
    border-radius: 4px;
}
.domain-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(315deg);
    transition: transform 0.2s ease;
}

.arrow.open {
    transform: rotate(45deg);
}
#loading_overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 99999;

    /* Standard: onzichtbaar tot JS hem toont */
    display: none;

    /* Centraal plaatsen zodra JS activeert */
    justify-content: center;
    align-items: center;
}

.loader_box {
    text-align: center;
}

.loader_box img {
    width: 250px;
    height: 250px;
    display: block;
    margin: 0 auto;
}

.loader_text {
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
}
.about-page-main-banner-con {
    padding: 0px 0 124px 0!important;
}

/* KLEUR BLOKKEN */
.kleurblok {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100px;
    text-align: center;
}

.kleur-input {
    cursor: pointer;
    width: 100%;
    padding: 5px 15px 5px 20px;
    border-radius: 20px;
    margin-top: -3px;
}

.picker {
    opacity: 0;        /* kleurpicker is onzichtbaar */
    width: 1px;        /* minimale afmetingen -> BROWSER ACCEPTEERT KLIK */
    height: 1px;
    position: absolute; /* blijft klikbaar */
    z-index: -1;       /* buiten de way, maar werkt */
}

/* TRANSPARANTIE SLIDER */
.trans-block {
    width: 80%;
    max-width: 250px;
    margin-bottom: 20px;
}
.trans-block label {
    font-size: 13px;
    color: #003366;
}
.trans-range {
    margin-top: 8px;
    width: 100%;
}

/* TAB 2–4 */
.subbox {
    border: 2px solid #4eaaa2;
    padding: 15px;
    border-radius: 8px;
    width: 260px;
    margin: 20px auto;
}
.copy-script-btn {
    position: absolute;
    right: 5px;
    top: -5px;
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 4px 7px;
    border-radius: 4px;
    cursor: pointer;
}

.copy-script-btn:hover {
    background: #e9e9e9;
}
.row-divider {
    width: 100%;
    height: 1px;
    background: #d0d7df;
    margin: 15px 0 20px 0;
}
.script-pre {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    background: #f2f2f2;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.faq-accordion {
    margin-top: 15px;
}

.faq-item {
    border-radius: 6px;
    margin-bottom: 10px;
    background: #f5f5f5;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: #f0f0f0;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.faq-question:focus {
    outline: none;
}

.faq-answer {
    display: none;
    padding: 14px 16px;
    font-size: 14px;
    background: #ffffff;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 12px;
    }
    .faq-answer {
        font-size: 13px;
    }
}
.scan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.scan-table th,
.scan-table td {
    border: 1px solid #ccc;
    padding: 8px;
    vertical-align: top;
}

.scan-table th {
    background: #f4f4f4;
    text-align: left;
}

.scan-table ul {
    margin: 0;
    padding-left: 18px;
}
.form-control {
    background:
    linear-gradient(
    to right,
    #f6f6f6 0%,
    #ffffff 45%,
    #ededed 100%
    );
    background-clip: padding-box; /* gloed blijft binnen de rand */
    border: 1px solid #cfcfcf;

    box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(0, 0, 0, 0.12);

    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.form-control::placeholder,
.form-control {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.vcp-switch {
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
}

.vcp-switch-track {
    position: relative;
    width: 100%;
    height: 36px;
    border-radius: 18px;
    background: #e6e6e6; /* neutraal */
    transition: background 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

/* Subtiele gloed */
.vcp-switch-track {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.06);
}

.vcp-switch[data-value="1"] .vcp-switch-track {
    background: #eaf6ef;
    box-shadow: inset 0 0 0 1px rgba(46,204,113,0.25),
    0 0 8px rgba(46,204,113,0.35);
}

.vcp-switch[data-value="0"] .vcp-switch-track {
    background: #f8eded;
    box-shadow: inset 0 0 0 1px rgba(192,57,43,0.25),
    0 0 8px rgba(192,57,43,0.25);
}

.vcp-switch-no,
.vcp-switch-yes {
    z-index: 2;
    font-size: 12px;
    opacity: 0.85;
}

.vcp-switch-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 6px);
    height: 30px;
    background: #ffffff;
    border-radius: 15px;
    transition: left 0.25s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1;
}

.vcp-switch[data-value="1"] .vcp-switch-knob {
    left: calc(50% + 3px);
}
.internal-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    height: 34px;
    padding: 0 42px 0 18px;

    border-radius: 18px;
    border: 1px solid #e0e0e0;
    

    font-size: 13px;
    line-height: 34px;
    cursor: pointer;

    background: #eaf6ef;
    box-shadow: inset 0 0 0 1px rgba(46, 204, 113, 0.25), 0 0 8px rgba(46, 204, 113, 0.35);

    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14'>\
<path fill='%23999' d='M7 10l5 5 5-5z'/>\
</svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;

    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.internal-select select:focus,
.internal-select select:active {
    outline: none;
    border-color: #7df58a;

    box-shadow:
        0 0 0 2px rgba(125,245,138,0.35),
        0 4px 12px rgba(125,245,138,0.45);
}
.internal-select.blinq {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 18px;
}

.internal-select.blinq::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.35) 45%,
        rgba(255,255,255,0.65) 50%,
        rgba(255,255,255,0.35) 55%,
        rgba(255,255,255,0) 100%
    );

    transform: rotate(0deg);
    animation: blinqMove_selectbox 3.5s linear infinite;
    pointer-events: none;
}
.internal-select.blinq::after {
    opacity: 1;
}
.internal-select.blinq:hover::after {
    opacity: 0;
}

@keyframes blinqMove_selectbox {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(260%);
    }
}
/* =====================================================
MOBIEL – VERWIJDER OVERBODIGE KOLOMMEN (DOMAINS)
===================================================== */
/* =====================================================
MOBIEL – ALLEEN DOMEIN + OPEN-PIJL
===================================================== */
@media (max-width: 768px) {

    /* HEADER: alleen titel + pijl */
    .domain-row-header {
        grid-template-columns: 1fr 40px !important;
    }

    .domain-row-header .col-pages,
    .domain-row-header .col-scope,
    .domain-row-header .col-gtm {
        display: none !important;
    }

    /* DATA RIJEN: alleen domein + pijl */
    .domain-row-second {
        grid-template-columns: 1fr 40px !important;
    }

    .domain-row-second .col-pages,
    .domain-row-second .col-scope,
    .domain-row-second .col-gtm {
        display: none !important;
    }

    /* Domeinnaam leesbaar */
    .domain-row-second .col-domain {
        font-size: 14px;
        font-weight: 600;
    }

    /* Pijl netjes uitlijnen */
    .domain-row-second .col-open,
    .domain-row-header .col-open {
        text-align: right;
    }
    /* Algemene tekst en labels links */
    .wrapper,
    .wrapper * {
        text-align: left !important;
    }
    /* Meer ruimte onder tekstblokken */
    .wrapper p {
        margin-bottom: 16px !important;
    }

    /* Labels + toelichtende teksten iets luchtiger */
    .wrapper label {
        margin-bottom: 6px;
        display: block;
    }

    /* Standaard Waarden knop netjes laten ademen */
    .reset-fields {
        display: inline-block;
        margin-bottom: 20px !important;
    }
    /* Formblokken niet centreren */
    .kleurblok,
    .trans-block,
    .textblok,
    .switchblok {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Inputs volle breedte */
    .in,
    .kleur-input,
    .trans-range,
    select,
    input[type="text"],
    input[type="url"] {
        width: 100% !important;
        margin-left: 0 !important;
    }

    /* Knoppen links */
    .live-demo,
    .reset-fields,
    .save-domain {
        display: inline-block;
        margin-left: 0 !important;
    }

    /* Kleurblok layout herstellen */
    .kleurblok {
        width: 100%;
    }
    /* Verwijderen blijft verborgen */
    .wrapper .delete-domain {
        display: none !important;
    }
    .wrapper .vcp-switch {
        zoom: 90%;
    }
    .action-row {
        display: flex;
        gap: 20px;                 /* exact jouw wens */
        width: 100%;
        margin-bottom: 16px;
    }

    .action-row .live-demo,
    .action-row .reset-fields {
        flex: 1;                   /* even breed */
        width:90px;
        min-width: 90px;           /* jouw eis */
        height: 44px;

        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;

        font-size: 13px;
        padding: 0 10px !important;
        white-space: nowrap;
    }

    /* Opslaan blijft aparte rij */
    .wrapper .save-domain {
        width: 100%;
        margin-top: 14px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* =====================================================
MOBIEL – SCAN TABLE LEESBAAR MAKEN
===================================================== */
@media (max-width: 768px) {

    .scan-table,
    .scan-table thead,
    .scan-table tbody,
    .scan-table th,
    .scan-table td,
    .scan-table tr {
        display: block;
        width: 100%;
    }

    /* Header verbergen (labels gebruiken we impliciet) */
    .scan-table thead {
        display: none;
    }

    /* Elke rij als kaart */
    .scan-table tr {
        border: 1px solid #ccc;
        border-radius: 6px;
        margin-bottom: 12px;
        padding: 10px;
        background: #ffffff;
    }

    /* Categorie bovenaan */
    .scan-table td:first-child {
        font-weight: 600;
        margin-bottom: 6px;
        color: #003366;
    }

    /* Gevonden items eronder */
    .scan-table td:last-child {
        font-size: 13px;
    }

    /* URLs netjes laten afbreken */
    .scan-table a,
    .scan-table li {
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    /* Lijsten compacter */
    .scan-table ul {
        padding-left: 16px;
        margin: 0;
    }

    .scan-table li {
        margin-bottom: 4px;
    }
}
