html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    /* 20241209 WE : added rose gradient backgroundcolor */
    background-image: linear-gradient(to bottom right, #FFFFFF, #FFE8FC);
    margin-bottom: 60px;
    color: #2D519B
}
/*20241111 WE background homepage*/
.xpress_purple {
    color: #D602DA;
}
.xpress_rose {
    color: #FF1DC0;
}
.card_prod_bg {
    background-color: #F8B5F0;
}
.card_button_bg {
    background-color: #D602DA;
}
.img_prod {
    border-radius: 20%;
}
.backgr {
    /* The image used */
    background-image: url(/images/hp2_home.png);
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto; /*cover*/
}
/* Container holding the image and the text */
.container2 {
    float: left;
    position: relative;
    text-align: center;
    color: midnightblue;

    /*zorg dat er geen margin op staat*/
    margin: 0;
    padding-left: 0;

}

/* 20241109 WE added for footer */
.border-top {
    border-top: 1px solid #e5e5e5;
}
.bg-primary {
    background-color: #192E2F !important;
}
/* Centered text */
.centered {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer_custom {
    /*padding-left: 15px;*/
    font-size: xx-small;
    color: #32BAF6;
}

.footer_c {
    float: right;
    /*padding-left: 15px;*/
    font-size: xx-small;
    /*color: #32BAF6;*/
}
/*.footer_c {
    float: right;
    padding-left: 15px;
    font-size: xx-small;
    color: #32BAF6;
}*/
.logo_pink {
    color: #EF1E99;
}
td {
    color: #2D519B !important;
}

/* 20250223 WE : responsive pictures https://web.dev/learn/design/responsive-images */
/*img {
    max-inline-size: 100%;
    block-size: auto;*/
    /*aspect-ratio: 2/1;*/
    /*object-fit: cover;
}*/
/* 20200213 WE : cart page some rows no top border*/
.table > tbody > tr.no-border-top > td,
.table > tbody > tr.no-border-top > th {
    border-top: none;
}
.table > tbody > tr.no-border-bottom > td,
.table > tbody > tr.no-border-bottom > th {
    border-bottom: none;
}

div.dt-container {
    margin: 0 auto;
    width: 100%;
}

/*20250426 WE Customer popup screen (ShopOrder) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

.popup-container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}
/*20250726 x-ms-webview : for anonieme form*/
.cform_red {
    color: red;
}

