/* shadowbox */
.shadowbox {
    border: 1px solid black; 
    border-radius: 10px; 
    background: white;
    width: fit-content; 
    padding:10px;
    text-align:center;
}

.shadowbox:not(:hover) {
    box-shadow: 0px 12px 20px 0px rgb(100 100 100 / 32%); 
}

.shadowbox:hover {
    cursor: pointer;
}

/* QR-sticker */

.qrsticker .qrlabel {
    font-size: 150%;
    margin:10px 0px 0px 0px;
}

/* fixed */

.fixedtopright {
    position: fixed; 
    top: 15px; 
    right: 15px;
    z-index: 10;
}

.fixedbottomright {
    position: fixed; 
    bottom: 15px; 
    right: 15px;
    z-index: 10;
}

/* */

.fixedtopright button {
    padding: 5px 15px 5px 15px;
    border-radius: 37px;
}
/*
button {
    padding: 5px 15px 5px 15px;
    border: 1px solid black; 
    border-radius: 40px; 
    background: white;
 }
*/
.fixedtopright button .fa {
    padding-right: 5px;
}

.card {
    border: 1px solid black; 
    border-radius: 10px; 
}

.xcarousel-item img {
    height: 400px;
    width: 500px;
}

.carousel-caption {
    color: #BBDDFF;
}
/*
@media (max-width: 767px) {
    .show_when_small {
        display: block !important;
    }
    .show_when_big {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .show_when_small {
        display: none !important;
    }
    .show_when_big {
        display: block !important;
    }
}
*/