/* navigation button */
/* hoofd kleur: #C22608 puur zwart / wit ? (beetje blauw  / gell weg laten ? ) */

.test12:hover
{
    background-color:#C22608  !important;
}

.image-product
{
    margin: 5%;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

table tr:first-child th {
    border-top: 0;
}
table tr:last-child td {
    border-bottom: 0;
}

table tr td:first-child,
table tr th:first-child {
    border-left: 0;
    border-top: 0;    
}
table tr td:last-child,
table tr th:last-child {
    border-right: 0;
    border-top: 0;
}


/* Left column */
.leftcolumn {   
    float: left;
    width: 30%;
    padding: 20px;
}

/* center column */
.centercolumn {   
    float: left;
    width: 40%;
    /* background-color:#c2270847 ; */
    border-radius: 0px 0px 25px 25px;
    border: 4px solid #c22708;
    padding: 20px;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 30%;
    padding: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) 
{
    .leftcolumn, .centercolumn , .rightcolumn 
    {   
        width: 100%;
        padding: 20px;
    }
}

.draggable {
    width: 300px;
    height: 100px;
    margin: 10px;
    border-radius: 5px 5px 5px 5px;
    border: 2px solid #c22708;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.draggable img {
    width: 80px;
    height: 80px;
    margin: 10px;
}

.draggable p {
    font-size: 20px;
    font-weight: bold;
}
.button_submit {
    background-color: #c22708;
    color: black;
    border: none;
    border-radius: 2px;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
}
.button_submit:hover{
    color: white;
}

.button_order 
{
    background-color: #c22708;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
.button_order::after {
    content: "\2193";
    display: inline-block;
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.button_order:hover::after {
    opacity: 1;
}

#container {
    /*
    width: 500px;
    height: 500px;
    border: 1px solid black;
    */
    display: flex;
    flex-direction: column;
    align-items: center;
}
#bottom-image {
    bottom: 0;
    left: 50%;
    /* transform: translateX(-50%); */
    opacity: 0.5;
    width: 70px;
    height: 70px;
    }
#top-image {
    bottom: 0;
    left: 50%;
    /* transform: translateX(50%); */
    opacity: 0.5;
    width: 70px;
    height: 70px;
}
