/* CSS Document  --- */
:root {
    --white: #ffffff;
    --black: #000000;
    --iscared: #db0021;
    --iscared_dark: #cf292d;
    --iscared_darker: #e62d31;
    --verylightblue: #e7eaf4;
    --lightblue: #d0d5ea;
    --blue: #0d3094;
    --darkblue: #092165;
    --verylightgrey: #f0f0f0;
    --lightgrey: #dddddd;
    --grey: #999999;
    --darkgrey: #333333;
    --textred: #db0021;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: var(--iscared);
    color: var(--black);
    font-size: 16px;
    line-height: 26px;
    font-family: 'SUSE', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4 {
    font-family: 'SUSE', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700 !important;
}

h1 {
    font-size: 3rem;
    font-feature-settings: "cv02", "cv03", "cv04";
    line-height: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

p a {
    color: var(--blue);
    text-decoration: underline;
}

ul {
    margin-bottom: 25px;
}

ol li {
    margin-left: 50px;
    margin-bottom: 20px;
}

#header {
    width: 100vw;
    max-width: 100%;
    height: auto;
    margin: 0;
}

#top_bar {
    width: 100%;
    height: auto;
    background-color: var(--darkblue);
    margin: 0;
    padding: 10px 2% 10px 2%;
}

.top_message {
    width: 100vw;
    height: 40px;
    background-color: #cfd6ea;
    color: #0d3094;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: "cv02"1, "cv03"1, "cv04"1;
    clear: both;
    padding: 10px 25px 0 25px;
}

.text_bar {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 125px 5% 25px 5%;
    box-sizing: border-box;
    background-color: #ffffff;
}

.text_bar_py25 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 25px 5% 25px 5%;
    box-sizing: border-box;
}

.text_bar_py50 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 50px 5% 50px 5%;
    box-sizing: border-box;
}

address {
    font-style: normal;
}

input[type=text] {
    appearance: none;
    width: 80%;
    height: 33px;
    font-size: 1rem;
    padding: 3px 3px 3px 5px;
    border: 1px solid var(--grey);
    border-radius: 3px;
}

input[type=number] {
    appearance: none;
    width: 80%;
    height: 33px;
    font-size: 1rem;
    padding: 3px 3px 3px 5px;
    border: 1px solid var(--grey);
    border-radius: 3px;
}

input[type=radio] {
    margin-top: 0;
}

select {
    appearance: none;
    width: 80%;
    height: 33px;
    font-size: 1rem;
    padding: 3px 3px 3px 5px;
    border: 1px solid var(--grey);
    border-radius: 3px;
    background-image: url("../layout/caret-down.png");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .8em auto, 100%;
}

textarea {
    appearance: none;
    width: 80%;
    height: 99px;
    font-size: 1rem;
    padding: 3px 3px 3px 5px;
    border: 1px solid var(--grey);
    border-radius: 3px;
}

button {
    appearance: none;
    border: none;
}

.footer_bar {
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 10px 2% 10px 2%;
    background-color: var(--white);
    position: relative;
}

.footer_bar_red {
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 10px 2% 10px 2%;
    background-color: var(--iscared);
    position: relative;
    z-index: 90;
}

.footer_bar_red a {
    color: var(--white);
}

.screen_width {
    width: 1440px;
    height: auto;
    display: block;
    overflow: hidden;
    margin: 0 auto 0 auto;
}

.top_line_red {
    position: relative;
    width: 100vw;
    height: 90px;
    background-color: var(--iscared);
    overflow: hidden;
}

.top_line_red:after {
    position: absolute;
    top: 0;
    left: 65%;
    right: -15px;
    bottom: 0;
    background: var(--iscared_dark);
    transform: skew(-15deg, 0);
    content: "";
}

.top_line {
    position: absolute;
    width: 100%;
    height: 90px;
    z-index: 10;
    top: 0;
}

.top_light_grey {
    width: 100%;
    height: 55px;
    background-color: var(--verylightgrey);
}

.top_white {
    width: 100%;
    height: 54px;
    background-color: transparent;
}

.top_usp {
    width: 100%;
    height: auto;
    background-color: var(--white);
    border-bottom: 1px solid var(--verylightgrey);
    padding: 25px 0 25px 0;
}

.usp_list {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.usp_list li {
    display: inline-block;
    margin: 0 25px 0 25px;
}

.top_logo {
    width: 15%;
    height: 70px;
    float: left;
    text-align: left;
    padding-top: 10px;
}

.top_logo img {
    position: absolute;
    filter: drop-shadow(3px 5px 7px rgb(0 0 0 / 0.4));
    z-index: 100;
}

.top_home {
    width: 10%;
    height: 70px;
    float: left;
    text-align: left;
    padding-top: 32px;
}

.top_home a {
    color: var(--white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
}

.top_search {
    width: 50%;
    height: 70px;
    float: left;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 2.2em;
    text-transform: uppercase;
    padding-top: 30px;
    color: var(--white);
}

.top_navigation {
    width: 25%;
    height: 70px;
    float: left;
    text-align: right;
    font-weight: 400;
    padding-top: 30px;
}

.top_menu {
    width: 100%;
    height: auto;
    float: left;
    text-align: right;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1em;
    padding-top: 15px;
}

.nav_item {
    width: auto;
    height: auto;
    padding: 2px 0 2px 40px;
    float: right;
}

.nav_icon {
    font-size: 1.2rem;
    margin-right: 7px;
}

.nav_usp {
    font-size: 1rem;
    margin-right: 7px;
    color: var(--textred);
}

.category_box {
    width: 22%;
    height: 389px;
    margin: 0 4% 50px 0;
    float: left;
    text-align: center;
    background-color: var(--white);
    padding: 35px;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(170deg, white, 70%, var(--lightgrey)) 1;
}

.category_box:nth-child(4n) {
    margin: 0 0 50px 0;
}

.category_title {
    width: 100%;
    height: 75px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5625rem;
}

.category_image {
    width: 100%;
    height: 265px;
}

.category_button {
    width: 100%;
    height: auto;
}

.hero {
    position: relative;
    width: 100vw;
    height: 20px;
    background: var(--iscared_darker);
    overflow: hidden;
}

.hero:after {
    position: absolute;
    top: 0;
    left: 50%;
    right: -15px;
    bottom: 0;
    background: #ad1417;
    transform: skew(-15deg, 0);
    content: "";
}

.footer_logo {
    width: 25%;
    height: auto;
    float: left;
    text-align: left;
    padding-top: 0;
    overflow: visible;
}

.footer_logo img {
    position: absolute;
    top: -25px;
    z-index: 99;
    filter: drop-shadow(3px 5px 7px rgb(0 0 0 / 0.4));
}

.footer_block_left {
    width: 12%;
    height: auto;
    float: left;
    text-align: left;
    padding: 55px 0 55px 0;
    color: var(--white);
    font-weight: 300;
}

.footer_block {
    width: 15%;
    height: auto;
    float: left;
    text-align: left;
    padding: 55px 0 55px 0;
    color: var(--white);
    font-weight: 300;
    margin-right: 2%;
}

.footer_block h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer_block a {
    text-decoration: none;
}

.footer_block_icons {
    width: 150px;
    clear: both;
    margin-bottom: 25px;
}

.footer_block_logos img {
    margin-bottom: 4px;
}

.condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

.background_white {
    background-color: var(--white);
}

.background_verylightgrey {
    background-color: var(--verylightgrey);
}

.background_iscared {
    background-color: var(--iscared);
}

.background_iscareddark {
    background-color: var(--iscareddark);
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.vertical_padding_10 {
    padding: 10px 0 10px 0;
}

.vertical_padding_20 {
    padding: 20px 0 20px 0;
}

.color_white {
    color: var(--white);
}

.color_grey {
    color: var(--grey) !important;
}

.color_grey a {
    color: var(--grey) !important;
}

.color_dark_red {
    color: #800417 !important;
}

.color_dark_red a {
    color: #800417 !important;
}

.color_dark_red a:hover {
    color: #800417 !important;
    text-decoration: underline;
}

.weight_300 {
    font-weight: 300;
}

.weight_400 {
    font-weight: 400;
}

.blue_button {
    width: auto;
    height: auto;
    padding: 12px 28px;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--blue);
    cursor: pointer;
    text-decoration: none;
}

.blue_button:a {
    text-decoration: none;
}

.blue_button:hover {
    background-color: var(--darkblue);
}

.red_button {
    width: auto;
    height: auto;
    padding: 12px 28px;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--iscared_dark);
    cursor: pointer;
    text-decoration: none;
}

.red_button:a {
    text-decoration: none;
}

.red_button:hover {
    background-color: var(--iscared_darker);
}

.grey_button {
    width: auto;
    height: auto;
    padding: 12px 28px;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--grey);
    cursor: pointer;
    text-decoration: none;
}

.grey_button:a {
    text-decoration: none;
}

.grey_button:hover {
    background-color: var(--grey);
}

.upload_button {
    width: auto;
    height: auto;
    padding: 5px 28px;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    color: var(--white);
    border-radius: 6px;
    background-color: var(--blue);
    cursor: pointer;
}

.order_box {
    width: 65%;
    min-height: 450px;
    height: auto;
    float: left;
    overflow: hidden;
    margin-top: 20px;
}

.order_box h4 {
    margin-top: 0;
}

.price_box {
    width: 33%;
    min-height: 450px;
    float: left;
    overflow: hidden;
    padding-left: 2%;
    margin-top: 20px;
}

.side_box23 {
    width: 90%;
    height: auto;
    margin: 0 auto 40px auto;
    padding: 0;
    border: 1px solid var(--white);
    background-color: var(--white);
    overflow: hidden;
    border-radius: 6px;
    box-sizing: border-box;
    z-index: 100;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 40px 0px;
}

.side_box {
    width: 100%;
    height: auto;
    padding: 3px 2% 3px 2%;
    border: 3px solid var(--iscared);
    background-color: #ff00ff;
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
}

.side_box_head {
    width: 100%;
    height: auto;
    background-color: var(--iscared);
    padding: 9px 0 9px 4%;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: normal;
    border-radius: 6px 6px 0 0 !important;
    box-sizing: border-box;
    margin-bottom: 7px;
}

.side_box_item {
    width: 100%;
    height: auto;
    padding: 3px 2% 3px 2%;
    font-size: 0.95rem;
    font-weight: normal;
    border-radius: 0;
    clear: both;
    overflow: hidden;
}

.side_box_item_high {
    width: 100%;
    height: auto;
    padding: 20px 2% 10px 2%;
    text-align: center;
    border-radius: 0;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.side_box_item_left {
    width: 48%;
    height: auto;
    padding: 3px 1% 3px 1%;
    float: left;
}

.side_box_item_right {
    width: 48%;
    height: auto;
    padding: 3px 1% 3px 1%;
    float: left;
}

.side_box_price {
    width: 100%;
    height: auto;
    padding: 5px 2% 5px 3%;
    font-size: 17px;
    font-weight: normal;
    border-radius: 0;
    margin-top: 30px;
    text-align: center;
}

.clear_50 {
    width: 100%;
    height: 50px;
    clear: both;
}

.tr {
    width: 100%;
    height: auto;
    overflow: hidden;
    clear: both;
}

.td_05 {
    width: 5%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_05_auto {
    width: 5%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_10 {
    width: 10%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_10_auto {
    width: 10%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_15_auto {
    width: 15%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_15 {
    width: 15%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_20 {
    width: 20%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_20_auto {
    width: 20%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_25 {
    width: 25%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_25_auto {
    width: 25%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_30 {
    width: 30%;
    height: 40px;
    margin-bottom: 7px;
    float: left;
    overflow: visible;
}

.td_30_auto {
    width: 30%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_35 {
    width: 35%;
    height: 40px;
    margin-bottom: 7px;
    float: left;
    overflow: visible;
}

.td_35_auto {
    width: 35%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_40 {
    width: 40%;
    min-height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_40_auto {
    width: 40%;
    min-height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_45 {
    width: 45%;
    min-height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_45_auto {
    width: 45%;
    min-height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_50 {
    width: 50%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_50_auto {
    width: 50%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_55 {
    width: 55%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_55_auto {
    width: 55%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_60 {
    width: 60%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_60_auto {
    width: 60%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_65 {
    width: 65%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_65_auto {
    width: 65%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_70 {
    width: 70%;
    min-height: 40px;
    height: auto;
    margin-bottom: 7px;
    float: left;
    overflow: hidden;
}

.td_70_auto {
    width: 70%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_75 {
    width: 75%;
    min-height: 40px;
    height: auto;
    margin-bottom: 7px;
    float: left;
    overflow: hidden;
}

.td_75_auto {
    width: 75%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_80 {
    width: 80%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_80_auto {
    width: 80%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_85 {
    width: 85%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_80_auto {
    width: 85%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_90 {
    width: 90%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_90_auto {
    width: 90%;
    height: auto;
    margin-bottom: 7px;
    float: left;
}

.td_95 {
    width: 95%;
    height: 27px;
    margin-bottom: 7px;
    float: left;
}

.td_100 {
    width: 100%;
    height: 40px;
    margin-bottom: 7px;
}

.td_100_auto {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.social_button {
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin: 0 10px 10px 0;
    width: 36px;
    height: 36px;
    font-size: 18px;
    transition: color .2s ease;
    float: left;
    color: var(--white);
    margin-left: 5px;
}

.social_button:hover {
    color: var(--iscared);
    text-decoration: none;
}

.social_button:hover:before {
    background: #fff;
}

.social_button:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
    border-bottom-left-radius: 6px;
    transform: skew(-15deg, 0);
    transition: background-color .2s ease;
    content: "";
}

.social_button i {
    position: relative;
    z-index: 1;
}

.categoryBox1 {
    width: 18%;
    height: auto;
    padding: 30px 1% 30px 1%;
    margin: 0 2% 25px 0;
    float: left;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    background-color: white;
    font-family: 'Varela Round', sans-serif;
    font-size: 1.05rem;
    line-height: 1.35rem;
    font-weight: 700;
    color: #313131;
    transition: all .2s ease-in-out;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(170deg, white, 70%, var(--lightgrey)) 1;
}

.categoryBox1:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    border: 1px solid var(--blue);
    box-sizing: border-box;
}

.categoryBox1 img {
    width: auto;
    height: auto;
    max-height: 150px;
    margin: 0 auto 0 auto;
}

.categoryBox1 a {
    color: #313131;
    text-decoration: none;
}

.uitsnede_box {
    width: 22%;
    height: 155px;
    margin: 10px 1.5% 10px 1.5%;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    vertical-align: top;
    padding-top: 25px;
}

.uitsnede_box img {
    width: auto;
    max-height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.uitsnede_box_active {
    border: 2px solid #436bb6;
    border-radius: 3px;
    color: #335699;
    background-image: url("../maatwerk/afbeeldingen/check-blue.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.uitsnede_box_inactive {
    width: 22%;
    height: 150px;
    margin: 10px 1.5% 10px 1.5%;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    vertical-align: top;
    opacity: 70%;
}

.uitsnede_box_low {
    width: 22%;
    height: 55px;
    margin: 10px 1.5% 10px 1.5%;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    padding-top: 5px;
    vertical-align: top;
}

.uitsnede_box_low_active {
    width: 22%;
    height: 55px;
    margin: 10px 1.5% 10px 1.5%;
    float: left;
    border: 2px solid #436bb6;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    background-color: #ffffff;
    padding-top: 5px;
    vertical-align: top;
    color: #335699;
    background-image: url("../maatwerk/afbeeldingen/check-blue.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.uitsnede_box_low_inactive {
    width: 22%;
    height: 55px;
    margin: 10px 1.5% 10px 1.5%;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    background-color: #ffffff;
    padding-top: 5px;
    vertical-align: top;
    opacity: 70%;
}

.margin_bottom_extra {
    margin-bottom: 15px;
}

.tr_third {
    width: 25%;
    height: auto;
    float: left;
    margin-right: 3%;
}

.tr_third input[type=text] {
    margin-top: 7px;
}

.sticker {
    width: 300px;
    background-color: aliceblue;
}

.panel-default {
    margin-bottom: 15px;
    border-radius: 3px;
    overflow: hidden;
    background-color: var(--white);
    width: 97%;
    box-shadow: inset 0px 0px 0px 1px var(--lightgrey);
    box-sizing: border-box;
    padding-bottom: 10px;
}

.panel-default:empty {
    display: none;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: var(--lightgrey);
    box-shadow: inset 0px 0px 0px 1px var(--lightgrey);
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #000000 !important;
    padding: 7px 7px 7px 12px;
}

.btn-gradient-1 {
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(175deg, white, 80%, var(--lightgrey)) 1;
}

.text_small {
    font-size: 0.7rem;
}

.modal {
    display: none;
    position: fixed;
    width: 50vw;
    height: 275px;
    top: 30vh;
    left: calc((100vw - 50vw) / 2);
    background: white;
    border-radius: 6px;
    z-index: 1001;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 40px 0px;
    text-align: center;
}

.modal_header {
    width: 100%;
    height: auto;
    background-color: var(--iscared);
    padding: 11px 3% 9px 3%;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: normal;
    border-radius: 6px 6px 0 0 !important;
    box-sizing: border-box;
    margin-bottom: 7px;
}

.modal_content {
    padding: 9px 0 9px 4%;
}

#modal_toggle {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    padding: inherit;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
}

.modal_background {
    display: none;
    background: black;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.7;
    z-index: 1000;
}

input[type=submit] {
    border: 0;
}

.fixed {
    position: fixed;
    top: 30px;
    left: calc(50vw + 185px);
    width: 455px;
    z-index: 200;
}

.uitsnede_box {
    width: 23%;
    height: 150px;
    margin: 0 2% 10px 0;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    vertical-align: top;
}

.uitsnede_box img {
    width: auto;
    max-height: 90px;
    margin-top: -10px;
}

.uitsnede_box_active {
    border: 2px solid #436bb6;
    border-radius: 3px;
    color: #335699;
    background-image: url("../afbeeldingen/check-blue.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.uitsnede_box_inactive {
    width: 23%;
    height: 150px;
    margin: 0 2% 10px 0;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    vertical-align: top;
    opacity: 70%;
}

.uitsnede_box_low {
    width: 23%;
    height: 55px;
    margin: 0 2% 10px 0;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    padding-top: 5px;
    vertical-align: top;
}

.uitsnede_box_low_active {
    width: 23%;
    height: 55px;
    margin: 0 2% 10px 0;
    float: left;
    border: 2px solid #436bb6;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    padding-top: 5px;
    vertical-align: top;
    color: #335699;
    background-image: url("../afbeeldingen/check-blue.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.uitsnede_box_low_inactive {
    width: 23%;
    height: 55px;
    margin: 0 2% 10px 0;
    float: left;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    background-color: #ffffff;
    padding-top: 5px;
    vertical-align: top;
    opacity: 70%;
}

.margin_bottom_extra {
    margin-bottom: 15px;
}

.tr_third {
    width: 25%;
    height: auto;
    float: left;
    margin-right: 3%;
}

.tr_third input[type=text] {
    margin-top: 7px;
}

.sticker {
    width: 300px;
    background-color: aliceblue;
}

.cookie_alert {
    position: fixed;
    left: 20px;
    z-index: 1000;
    background: white;
    bottom: 20px;
    width: 500px;
    min-height: 150px;
    padding: 60px 20px 20px 20px;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 18%) 0px 8px 40px 0px;
    animation-name: cookie_alert;
    animation-duration: 1s;
}

.cookie_alert_header {
    background: var(--iscared);
    color: white;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 5px 20px;
    box-sizing: border-box;
}

.cookie_alert_header h4 {
    margin: 0;
}

.cookie_alert button {
    float: right;
}

@keyframes cookie_alert {
    from {
        bottom: -200px
    }

    to {
        bottom: 20px
    }
}

.example_container {
    width: 100%;
    height: auto;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 30px;
    row-gap: 0.1rem;
}

.example_box {
    width: auto;
    max-width: 100%;
    height: 300px;
    text-align: center;
}

.example_image {
    width: auto;
    height: 300px;
    vertical-align: middle;
}

.example_image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.example_text {
    width: auto;
    height: 10px;
}

/* ipad styles */
@media only screen and (max-width: 1480px) {
    .screen_width {
        width: 98%;
        margin: 0 auto 0 auto;
    }

    h4 {
        font-size: 1.25rem !important;
    }

    .blue_button {
        font-size: 0.8rem;
        padding: 11px 20px;
        display: block;
        margin-top: -10px;
    }

    .red_button {
        font-size: 0.8rem;
        padding: 11px 20px;
        display: block;
        margin-top: -10px;
    }

    .grey_button {
        font-size: 0.8rem;
        padding: 11px 20px;
        display: block;
        margin-top: -10px;
    }

    .nav_item {
        padding: 2px 0 2px 0;
    }

    .tr {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .text_bar {
        width: 100%;
        height: auto;
        padding: 125px 1% 25px 1%;
    }

    .top_logo {
        width: 13%;
        padding-left: 2%;
    }

    .top_home {
        width: 5%;
        padding-left: 2%;
    }

    .top_search {
        width: 50%;
        font-size: 2em;
    }

    .top_navigation {
        width: 25%;
    }
}

/* smartphone styles */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
        ;
    }

    .screen_width {
        width: 100%;
        height: auto;
        padding: 0 10px 0 10px;
    }

    .tr {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .text_bar {
        width: 100%;
        height: auto;
    }

    .top_logo {
        width: 38%;
        padding-left: 2%;
    }

    .top_home {
        display: none;
    }

    .top_search {
        display: none;
    }

    .top_navigation {
        width: 60%;
    }

    .category_box {
        width: 94%;
        height: 389px;
        margin: 0 3% 50px 3%;
    }

    .category_box:nth-child(4n) {
        margin: 0 3% 50px 3%;
    }

    .footer_block, .footer_block_icons {
        width: 100%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0;
        padding: 10px 0 10px 0;
    }

    .footer_block h4 {
        margin-top: 0;
    }

    .td_05 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_05_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_30 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_30_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_35 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_35_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_60 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_60_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_65 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_65_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }


    .td_70 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_70_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_75 {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .td_75_auto {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 0 auto;
    }

    .order_box {
        width: 90%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 20px auto 0 auto;
    }

    .price_box {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 20px auto 0 auto;
    }

    .categoryBox1 {
        width: 48%;
    }

    .uitsnede_box {
        width: 30%;
    }

    .panel-default {
        width: 94%;
        height: auto;
        overflow: hidden;
        clear: both;
        margin: 0 auto 20px auto;
    }

    .cookie_alert {
        width: calc(100vw - 40px);
    }

    .example_container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 0.65rem;
    }

    .example_box {
        width: auto;
        height: auto;
        display: block;
    }

    .example_image {
        width: auto;
        height: auto;
        display: block;
    }

}

#uitsnede_4,
#uitsnede_5 {
    display: none;
}

/* iPad-ish widths: portrait & landscape */
@media (min-width: 768px) and (max-width: 1024px) {
    .card-header {
        height: 80px;
        line-height: 1rem;
    }

    .card-header-low {
        height: auto;
        line-height: 1rem;
    }
}

.card-header {
    height: 80px;
    line-height: 1.1rem;
}

.card-header-low {
    height: auto;
    line-height: 1.1rem;
}

.card {
    height: 220px;
}

.card-low {
    height: auto;
    padding: 10px;
    background-color: whitesmoke;
    border-bottom: 1px solid lightgray !important;
    border-radius: 7px;
    text-align: center;
}

.map-wrap {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    float: left;
}

.map-iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 576px) {
    .map-iframe {
        height: 320px;
    }
}