*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: rgb(200, 200, 200);
}
.contentWrapper{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.itemWrapper{
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: solid rgb(100, 100, 100) 1px;
}
.headingWrapper{
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}
.thumbnailWrapper{
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}
.thumbnailOverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(50, 50, 50, 0.8);
    font-size: 1.5em;
    text-align: center;
    color: rgb(200, 200, 200);
    display: none;
}
.thumbnailOverlayText{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.thumbnail{
    width: 100%;
    display: block;
}
.linksWrapper{
    text-align: center;
    display: none;
}
.linksWrapper *{
    display: block;
}
.itemLink{
    color: initial;
}
.itemLink:hover{
    color: rgb(100, 100, 100);
}
.errorWrapper{
    margin-top: 1em;
    font-size: 12px;
}
.globalErrorWrapper{
    margin-bottom: 1em;
}
.errorList{
    display: none;
}
.errorDescription, .errorButton{
    text-align: center;
    font-style: italic;
    color: red;
}
.errorButton{
    text-decoration: underline;
    cursor: pointer;
}
#pannellumContainer{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.closeButton{
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 10;
    cursor: pointer;
    background-color: white;
    border: #ddd 1px solid;
    width: 26px;
    height: 26px;
    border-radius: 3px;
}
.closeButton::before, .closeButton::after{
    position: absolute;
    left: 12px;
    top: 7px;
    content: " ";
    width: 2px;
    height: 12px;
    background-color: black;
    border-radius: 1px;
}
.closeButton::before{
    transform: rotate(-45deg);
}
.closeButton::after{
    transform: rotate(45deg);
}

@media screen and (min-width: 400px){
    .contentWrapper{
        width: 400px;
    }
}
@media screen and (max-width: 400px){
    .descriptionWrapper{
        padding: 0px 10px 0px 10px;
    }
}
@media screen and (min-width: 768px){
    .contentWrapper{
        width: 768px;
    }
}
@media screen and (min-width: 1200px){
    .contentWrapper{
        width: 1200px;
    }
}