#content {
    width: auto;
    float: none; 
    margin-left: 3%;
    margin-right: 3%;
}
.voertuig {
    margin-top: 60px;
}
.voertuig header {
    display: flex;
    gap: 5%;
}
.voertuig header ._foto-gallery {
    width: 41%;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    position: relative;
}
.voertuig header ._foto-gallery .glightbox_button {
    position: absolute;
    z-index: 1;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, .3);
    font-size: 0;
}
.voertuig header ._foto-gallery .glightbox_button:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: awb-icons;
    content: "\f002";
    color: #fff;
    font-size: 18px;
}
.voertuig header ._foto-gallery .main-foto {
    overflow: hidden;
}
.voertuig header ._foto-gallery .main-foto a {
    display: block;
    width: 100%;
    height: auto;
}

.voertuig header ._foto-gallery .main-foto .zoom-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.voertuig header ._foto-gallery .main-foto img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;

    transition: transform 0.2s ease;
    cursor: zoom-in;

    clip-path: inset(0 6.5% 0 6.5%);
    width: calc(100% + 15.5%);
    margin-left: -8%;
    max-width: none;
}
.voertuig header ._foto-gallery .sub-foto {
    padding: 10px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.voertuig header ._foto-gallery .sub-foto .carousel-cell {
    flex: 0 0 calc(20% - 8px);
    box-sizing: border-box;
    aspect-ratio: 1 / 1; 
    background-size: cover;
    background-position: center;
}
.voertuig header ._foto-gallery .sub-foto .carousel-cell img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    display: block;
}
.voertuig header .more_info {
    width: calc(100% - 46%);
}
.voertuig header .more_info .bcrumbs {
    display: flex;
    gap: 10px;

    font-size: 15px;
    color: #a6a6a6;
    margin-bottom: 30px;
}
.voertuig header .more_info h1{
    font-size: 30px;
    color: #cd3738;
    margin-bottom: 25px;
    padding: 0;
}
.voertuig header .more_info h3 {
    color: #cd3738;
}

.voertuig header .more_info .buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 30px;
    margin-top: 30px;
}
.voertuig header .more_info .buttons a,
.voertuig header .more_info .buttons a span {
    text-decoration: none;
    text-decoration-line:none;
}

.detailed_info {
    width: 75%;
    margin: 80px auto 0;
}
.detailed_info h2 {
    display: flex;
    gap: 5px;
    color: #cd3738;
    margin: 0 0 20px;
    font-size: 20px;
}
.detailed_info h2 i {
    color: #cd3738 !important;
    line-height: unset;
}
.detailed_info section {
    margin-bottom: 40px;
}

.detailed_info section table {
    border: 1px solid #dcdcdc;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08), inset 0 0 0 1px rgba(255, 255, 255, .5);
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.detailed_info section table tr:nth-child(odd) {
  background-color: #f6f6f6;
}
.detailed_info section table tr:nth-child(even) {
  background-color: #fff; 
}
.detailed_info section table td {
    border: 1px solid #dcdcdc;
    padding: 10px 20px;
    text-align: left;
}
.detailed_info section table td:first-child {
    width: 300px;
}

@media screen and (max-width: 1025px) {
    .voertuig header {
        flex-direction: column;
    }
    .voertuig header ._foto-gallery {
        width: 100%;
    }
    .voertuig header .more_info {
        width: 100%;
        margin-top: 40px;
    }
    .detailed_info {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .detailed_info section table {
        width: 100%;
        min-width: auto;
    }

    .detailed_info {
        width: 100%;
    }
}
@media screen and (max-width: 590px) {
    .detailed_info section table td {
        display: block;
        width: 100% !important;
    }
    .detailed_info section table td:first-child{
        border-bottom: 0;
        font-weight: bold;
    }
    .detailed_info section table td:last-child{
        border-top: 0;
    }
}