/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font */
    --fira-sans: 'Fira Sans', sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #d2408a;
    --primary-light: #c4307a;
    --primary-dark: #9a3367;
    --dark: #222;
    --dark-light: #333;
    --grey: #898989;
    --yellow-light: #f6d774;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--dark-light);
    font-size: 16px;
    font-family: var(--fira-sans);
    font-weight: 400;
    line-height: 1.89;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    text-transform: uppercase;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}
::selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

/* ===== Custom CSS Start ===== */

/* ----- Typography Start ----- */
.fs-1 {
    font-size: 28px !important;
    line-height: 1.52;
}
/* ----- Typography End ----- */

/* ----- Colors Start ----- */
.text-primary {
    color: var(--primary) !important;
}
.text-grey {
    color: var(--grey) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-dark-light {
    color: var(--dark-light) !important;
}
.bg-primary {
    background-color: var(--primary-dark) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}
/* ----- Colors End----- */

/* ----- Buttons Start ----- */
.btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}
.btn--sm,
.btn--common {
    padding: 10px 24px;
    height: 44px;
    border-radius: 0 12px 12px 12px;
}
.btn:hover {
    color: var(--primary);
    background-color: var(--yellow-light);
}
/* ----- Buttons End----- */

/* ----- Animations Start ----- */
/* Button Animation */
.btn__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.btn:hover .btnShakeAnim {
    animation: shakeAnim 1s infinite ease-in-out;
}
@keyframes shakeAnim {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(8deg);
    }
    60% {
        transform: rotate(-6deg);
    }
    80% {
        transform: rotate(6deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Hover Transition */
.transition-common {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* ----- Animations End----- */

/* ----- Random Classes & Components ----- */
.section__tag {
    font-size: 14px;
    padding: 11px 20px;
}
.body__ellipse {
    width: 36.8%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: block;
    background-color: var(--primary-light);
    filter: blur(170px);
    opacity: 0.75;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* ===== Custom CSS End ===== */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header--area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.logo--header {
    max-width: 112px;
}
.mobile-menu-open,
.mobile-menu-close {
    font-size: 20px;
    color: var(--white);
}
.mobile-menu .offcanvas {
    background-color: var(--primary-dark);
}
.mobile-menu__nav__link,
.nav__link {
    color: var(--white);
    font-size: 15px;
    line-height: normal;
}
.mobile-menu__nav__link {
    padding: 14px 0;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.mobile-menu__nav__link:hover,
.nav__link:hover {
    color: var(--yellow-light);
}
/* ----- Desktop Navigation Start */
.nav--header {
    gap: 28px;
}
.nav__ul {
    gap: 24px;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--yellow-light);
    transition: all 0.3s ease-in-out;
}
.nav__link:hover::after {
    left: 0;
    width: 100%;
}
.header__tel__btn {
    font-size: 17px;
    color: var(--white);
    gap: 10px;
}
.header__tel__btn:hover {
    color: var(--primary);
}
.header__tel__btn .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--white);
}
.header__tel__btn:hover .icon {
    background-color: var(--white);
}
.header__tel__btn .icon svg {
    width: 24px;
    height: 24px;
}
.header__tel__btn:hover .icon svg {
    animation: shakeAnim 1s infinite ease;
}
@keyframes shakeAnim {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(8deg);
    }
    60% {
        transform: rotate(-8deg);
    }
    80% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.header__tel__btn:hover .text {
    color: var(--white);
}
.btn--headerMail {
    padding: 12px 18px;
    font-size: 14px !important;
}
/* ----- Desktop Navigation End */

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__inner {
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__thumb {
    max-width: 476px;
    width: 100%;
}
.hero__thumb__image {
    border-radius: 0 24px 24px 24px;
}
.hero__thumb__top__object {
    position: absolute;
    top: -10%;
    right: -13%;
    max-width: 28.21%;
    width: 100%;
    z-index: -1;
}
.hero__thumb__bottom__object {
    position: absolute;
    bottom: -12%;
    left: -16%;
    max-width: 38.31%;
    width: 100%;
    z-index: -1;
}
.hoer__lines__object {
    position: absolute;
    left: 0;
    bottom: 44px;
    max-width: 65%;
    width: 100%;
    z-index: -1;
}
.hero__ellipse {
    width: 31.52%;
    aspect-ratio: 1 / 1.035;
    border-radius: 50%;
    display: block;
    background-color: var(--primary-light);
    filter: blur(170px);
    opacity: 0.75;
    position: absolute;
    right: -10%;
    bottom: 48px;
    z-index: -1;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Training Section CSS Start */
/* =============================== */
.training--section {
    padding: 48px 0;
}

/* ----- Card CSS ----- */
.card {
    height: 100%;
    padding: 10px;
    border-radius: 0 24px 24px 24px;
}
.card__thumb {
    width: 100%;
    height: 230px;
    border-radius: 0 14px 24px 24px;
}
.card__thumb__image {
    transition: all 0.4s linear;
}
.card:hover .card__thumb__image {
    transform: scale(1.05);
}
.card__title {
    font-size: 20px;
}
.card__meta__fs-base {
    font-size: 16px;
}
.ratings {
    font-size: 16px;
    gap: 6px;
}
.card__price__monthly {
    font-size: 10px;
}
.card__object {
    max-width: 61.5%;
}
/* ----- Card CSS ----- */

.card--training {
    background-color: var(--white);
}
.card--training .card__thumb {
    margin-bottom: 20px;
}
.card--training .card__content {
    padding-left: 10px;
}
.ratings__wrap {
    gap: 5px;
    margin-top: -2px;
}
.ratings__wrap .star {
    width: 13px;
    max-width: 13px;
    height: 12px;
    max-height: 12px;
}
.card--training__button {
    width: 56px;
    height: 56px;
    color: var(--white);
    padding: 10px;
    font-size: 13px;
    line-height: 1.38;
    background-color: var(--primary);
}
.card--training__button:hover {
    color: var(--primary);
    background-color: var(--yellow-light);
}
/* =============================== */
/* :: 6.0 Training Section CSS End */
/* =============================== */

/* =============================================== */
/* :: 7.0 ContentBlock (Balance) Section CSS Start */
/* =============================================== */
.contentBlock--section {
    padding: 48px 0;
}
.section__para__link {
    color: var(--dark-light);
}
.section__para__link:hover {
    color: var(--primary);
}
.contentBlock__content {
    height: 100%;
}
.contentBlock__thumb__inner {
    width: 100%;
    height: 300px;
    padding: 12px;
    border-radius: 0 40px 40px 40px;
    background-color: #f1e2db;
    transform: rotate(6.2deg);
    margin-bottom: 80px;
}
.contentBlock__thumb__image {
    border-radius: 0 28px 28px 28px;
}
/* List Card CSS */
.list-card {
    min-width: 248px;
    padding: 16px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(1px);
    box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}
.list-card__item {
    white-space: nowrap;
}
.list-card__icon {
    width: 27px;
}
.list-card__text {
    font-size: 16px;
}
/* List Card CSS */
.contentBlock--section .list-card--one {
    position: absolute;
    bottom: -13%;
    left: 50%;
    transform: translateX(-50%);
}
.contentBlock__thumb__object {
    max-width: 31%;
    width: 100%;
    position: absolute;
    right: -10%;
    top: -10%;
    z-index: -1;
}
/* ===================================ContentBlock (Practice) ========== */
/* :: 7.0 ContentBlock (Balance) Section CSS End */
/* =====================================ContentBlock (Practice) ======== */

/* =================================== */
/* :: 8.0 Newsletter Section CSS Start */
/* =================================== */
.newsletter--section {
    padding: 48px 0;
}
.form--newsletter {
    max-width: 956px;
}
.newsletter__item {
    gap: 12px;
}
.newsletter__input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px 0 10px 10px;
    padding: 16px;
    color: var(--white);
    font-size: 16px;
    background-color: transparent;
    transition: all 0.3s ease-in;
}
.newsletter__input:focus,
.newsletter__input:not(:placeholder-shown) {
    border-color: var(--white);
}
.newsletter__input::placeholder {
    color: var(--white);
    font-size: 16px;
    opacity: 0.75;
}
.newsletter__submit {
    width: 100%;
    height: 48px;

    border-radius: 0 10px 10px 10px;
}
.newsletter__logo__icon__obj {
    width: clamp(80px, 11.6%, 168px);
    position: absolute;
    right: -12px;
    bottom: -8px;
    opacity: 0.2;
    z-index: -1;
}
.newsletter__lines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.75;
}
.newsletter__ellipse {
    display: block;
    background-color: var(--primary-light);
    filter: blur(170px);
}
/* ================================= */
/* :: 8.0 Newsletter Section CSS End */
/* ================================= */

/* =============================== */
/* :: 9.0 Blog Section CSS Start */
/* =============================== */
.blog--section {
    padding: 48px 0;
}
.blog--section .section__head {
    max-width: 972px;
}
.blog__item {
    padding: 24px 0;
    border-bottom: 1px solid #d9d9d9;
}
.blog__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.blog__content {
    gap: 20px;
}
.blog__thumb {
    max-width: 316px;
    padding: 10px;
    border-radius: 0 20px 20px 20px;
    background-color: #dcd7ef;
}
.blog__thumb__image {
    border-radius: 0 20px 20px 20px;
}
.blog__title {
    font-size: 20px;
}
.blog__date {
    font-size: 15px;
}
/* =============================== */
/* :: 9.0 Blog Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Review Section CSS Start */
/* =============================== */
.review--section {
    padding: 48px 0;
    background-color: #fbf3f8;
}
.review--section .section__head {
    max-width: 972px;
}
.review__content {
    max-width: 826px;
    width: 100%;
}
.review__inner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 36px);
    border-radius: 0 34px 34px 34px;
    background-color: var(--primary-dark);
}
.review__item {
    padding: 0 16px 20px;
}
.review__thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
    margin-bottom: 16px;
}
.review__para {
    max-width: 680px;
}
.reviewerName {
    font-size: 16px;
}
.review__quote {
    color: var(--white);
    font-size: 100px;
    opacity: 0.2;
    position: absolute;
    top: 48px;
    left: 8px;
    line-height: 1;
}
.review--section .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: static;
    line-height: 1;
}
.review--section
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}
.review--section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-dark);
    background-color: var(--primary-dark);
    opacity: 1;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.review--section .swiper-pagination-bullet::after {
    content: '';
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: var(--primary-dark);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.review--section .swiper-pagination-bullet-active {
    background-color: transparent;
}
.review__lines__object {
    position: absolute;
    width: clamp(64px, 7%, 100px);
}
.review__lines__object--one {
    top: 0;
    right: 0;
}
.review__lines__object--two {
    left: 0;
    bottom: 0;
}
/* =============================== */
/* :: 10.0 Review Section CSS End */
/* =============================== */

/* ================================================= */
/* :: 11.0 ContentBlock (Practice) Section CSS Start */
/* ================================================= */
.contentBlock--even .contentBlock__thumb__inner {
    transform: rotate(-6.2deg);
}
.contentBlock--even .contentBlock__thumb__object {
    right: auto;
    top: -8%;
    left: -20%;
}
.contentBlock--even .list-card--two {
    min-width: 270px;
    position: absolute;
    top: -10%;
    right: 50%;
    transform: translateX(50%);
}
/* =============================================== */
/* :: 11.0 ContentBlock (Practice) Section CSS End */
/* =============================================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    padding: 48px 0 32px;
}
.footer__wrapper__inner {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.logo--footer {
    max-width: 200px;
}
.widget__title {
    font-size: 20px;
}
.footer__nav__link,
.footer__contact__item,
.footer__contact__link,
.footer__copyright,
.footer__link {
    color: var(--white);
    font-size: 15px;
    line-height: 2.267;
}

.footer__nav__link:hover,
.footer__contact__link:hover {
    color: var(--yellow-light);
}
.footer__social__item {
    color: var(--white);
    gap: 8px;
    transition: all 0.3s ease-in-out;
}
.footer__social__item:hover {
    color: var(--yellow-light);
}
.footer__social__item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 6px;
    font-size: 15px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}
.footer__social__item:hover .icon {
    background-color: var(--yellow-light);
}
.footer__social__item .icon img {
    max-width: 16px;
}
.footer__ellipse {
    width: clamp(40px, 6%, 76px);
    position: absolute;
    left: 0;
    bottom: -48px;
    z-index: -1;
}
.footer__circle__object {
    width: clamp(64px, 10%, 134px);
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */


.section__para a {
    color: var(--primary-light);
}

.section__para a:hover {
    color: var(--dark-light);
}

/* ============================= */
/* Dropdown (desktop)            */
/* ============================= */
.nav__item--hasDropdown { position: relative; }

.nav__caret{
    margin-left: 6px;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    transform: translateY(1px);
}

/* dropdown container */
.nav__dropdown{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    margin: 0;
    border-radius: 0 16px 16px 16px;
    background: var(--primary-dark);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease-in-out;
    z-index: 999;
}

/* hover open (desktop) */
@media (min-width: 992px){
    .nav__item--hasDropdown:hover > .nav__dropdown{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav__item--hasDropdown:hover .nav__caret{
        transform: translateY(1px) rotate(180deg);
        transition: transform 0.2s ease-in-out;
    }
}

.nav__dropdownLink{
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.2;
}
.nav__dropdownLink:hover{
    color: var(--primary);
    background: var(--yellow-light);
}
.nav__dropdownLink.active{
    background: rgba(255,255,255,0.12);
}

/* ============================= */
/* Mobile submenu (offcanvas)    */
/* ============================= */
.mobile-menu__nav__row{
    gap: 10px;
}

.mobile-menu__subToggle{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}
.mobile-menu__subToggle:hover{
    background: rgba(255,255,255,0.12);
}

.mobile-menu__subUl{
    padding: 6px 0 10px 12px;
}
.mobile-menu__subLink{
    display: block;
    padding: 10px 0;
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
.mobile-menu__subLink:hover{
    color: var(--yellow-light);
}
.mobile-menu__subLink.active{
    color: var(--yellow-light);
}

/* Footer sub styling */
.footer__nav__item--sub .footer__nav__link--sub{
    opacity: 0.9;
}

/* Header: alles op 1 regel houden */
@media (min-width: 992px) {
  .header__wrapper {
    flex-wrap: nowrap;          /* voorkom wrappen */
    gap: 20px;
  }

  .header__content {
    flex: 1;                    /* laat rechterdeel ruimte pakken */
    min-width: 0;               /* nodig om overflow correct te laten werken */
    justify-content: flex-end;  /* menu + buttons naar rechts */
  }

  .nav--header {
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;          /* ook hier: niet naar nieuwe regel */
    gap: 20px;                  /* iets compacter dan 28 */
  }

  .nav__ul {
    flex-wrap: nowrap;
    gap: 18px;                  /* iets compacter dan 24 */
  }

  .nav__buttons {
    flex: 0 0 auto;             /* nooit kleiner/wrappen */
    white-space: nowrap;        /* tel/mail altijd in 1 regel */
  }
}

@media (min-width: 992px){
  .nav__dropdown{
    top: calc(100% + 0px); /* was +10px */
  }
}

/* Dropdown mag nooit afgeknipt worden door header wrappers */
@media (min-width: 992px){
  .header--area,
  .header__inner,
  .header__wrapper,
  .header__content,
  .nav--header {
    overflow: visible !important;
  }

  /* Dropdown altijd boven alles in de header */
  .nav__item--hasDropdown { position: relative; }
  .nav__item--hasDropdown:hover { z-index: 9999; }

  .nav__dropdown {
    z-index: 10000;
  }
}

@media (min-width: 992px){
  .nav__buttons { position: relative; z-index: 1; }
  .nav__item--hasDropdown:hover .nav__dropdown { z-index: 99999; }
}

/* Dropdown wordt anders afgekapt door de hero */
@media (min-width: 992px){
  .hero__inner{
    overflow: visible !important; /* was overflow-hidden */
  }
}

@media (min-width: 992px){
  .hero__inner.overflow-hidden{
    overflow: visible !important;
  }
}

.nav__dropdown{
  top: 100%;
}
@media (min-width: 992px){
  .nav__item--hasDropdown{
    padding-bottom: 0px; /* hover-bridge */
  }
}

@media (min-width: 992px){
  .header__inner{ z-index: 99999 !important; }
}

a.purple { text-decoration: underline; color: #c4307a; }
a.purple:hover { color: #000; }

/* =========================================
   Legacy -> Bootstrap-ish helpers
   (drop-in, veilig naast Bootstrap)
   ========================================= */

/* Oude container "box" */
.box{
  background: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .75rem;           /* Bootstrap-ish rounded */
  padding: 1.25rem;               /* ~p-4 */
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.04);
}

/* Fieldset netjes (als je nog ergens oude fieldsets hebt) */
fieldset{
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .75rem;
  padding: 1rem;
  margin: 0;
}
fieldset > table{ margin-bottom: 0; } /* legacy */

/* Oude tabel-layout labels */
td.descr{
  font-weight: 600;
  color: rgba(0,0,0,.65);
  vertical-align: top;
  padding: .5rem .75rem;
  white-space: nowrap;
}
table td{
  padding: .5rem .75rem;
}

/* Buttons: laat <input class="button"> eruitzien als btn btn-primary */
.button{
  display: inline-block;
  font-weight: 600;
  line-height: 1.2;
  padding: .625rem 1rem;
  border-radius: .5rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/* Primary look (lijkt op .btn-primary) */
.button{
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.button:hover{
  filter: brightness(.95);
}

/* Inputs / selects / textarea (als je oude form velden hebt zonder .form-control) */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea{
  display: block;
  width: 100%;
  padding: .5rem .75rem;
  border: 1px solid #ced4da;
  border-radius: .5rem;
  background: #fff;
}

/* Oude "no-border" (gebruikte je bij radios/checkbox) */
.no-border{
  border: 0 !important;
  box-shadow: none !important;
}

/* Oude waarschuwing/important */
.important{
  display: block;
  padding: .5rem .75rem;
  margin-top: .5rem;
  border-radius: .5rem;
  border: 1px solid rgba(220,53,69,.35);   /* danger-ish */
  background: rgba(220,53,69,.06);
  color: #842029;                          /* bootstrap danger text */
}

/* Legacy order table cell widths (alleen als je ze nog gebruikt) */
td.order2{ width: 110px; }
td.order3{ width: auto; }
td.order4{ width: 30px; text-align: right; }
td.order5{ width: 160px; text-align: right; }

/* Mobile polish: box padding iets kleiner */
@media (max-width: 575.98px){
  .box{ padding: 1rem; }
  fieldset{ padding: .875rem; }
  td.descr{ white-space: normal; }
}