@import url('https://fonts.cdnfonts.com/css/cronospro');
body {
    font-family: 'Cronospro', sans-serif !important;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cronospro', sans-serif;
    font-weight: 700;
}
img.card-img-top.wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 250px;
    min-height: 250px;
}
.btn-form {
    background: #fff;
    padding: 5px 40px;
    float: right;
}
.btn-form:hover {
    background: #4DB05B;
    color: #fff;
}

#form-success-message h2 {
    font-size: 5rem;
}

#lead-form .form-check-label {
    color: #fff !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 18px !important;
}
#lead-form label {
    padding: 8px 15px;
    border-radius: 0;
    height: 32px;
}

/* #Progress back to top
================================================== */
@-webkit-keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; }
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
    42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; }
    56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; }
    70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; }
    84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; }
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px rgba(139, 29, 26, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    content: '↑';
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: rgba(139, 29, 26, 0.9); /* --- Pijl kleur --- */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
    opacity: 0;
}
.progress-wrap::before {
    position: absolute;
    content: '↑';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: red;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path {
    fill: rgba(255, 255, 255, 0.5);
}
.progress-wrap svg.progress-circle path {
    stroke: rgba(139, 29, 26, 0.9); /* --- Lijn progres kleur --- */
    stroke-width: 2;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


.clred {
	color: #8b1d1a;
}




.smvenda-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.smvenda-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    animation: modalIn 0.35s ease;
	padding: 30px;
}

.closemodal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.closemodal:hover {
    background: #000;
    transform: scale(1.15);
}

.smvenda-modal-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.smvenda-loading {
    text-align: center;
    padding: 70px 20px;
    font-size: 19px;
    color: #555;
    font-weight: 500;
}

.smvenda-loading::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 12px;
    vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes modalIn { from { opacity: 0; transform: scale(0.93); } to { opacity: 1; transform: scale(1); } }

body.smvenda-modal-open { overflow: hidden; }

@media (max-width: 768px) {
    .smvenda-modal-content { width: 96%; max-width: 96%; }
}