/* projektmaster css */

/* colors */
:root {
  --red: #d43049;
  --grey: #717776;
}

#projekt-archiv .head {
    font-weight: bold;
    border: none;
}

.pm-archive-row {
    display: flex;
    padding: 3px 0;
    border-top: 1px solid var(--red);
    cursor: pointer;
}

#projekt-archiv .head:first-child,
.pm-archive-title {
    width: 50%;
    padding-left: 10px;
}

.pm-archive-date {
    
}

.pm_showdetails {
    align-self: flex-end;
    margin-left: auto;
    padding-right: 14px;
}

.pm-archive-detail {
    padding-bottom: 2em;
}

.pm-archive-image {
    width: 50%;
    margin-left: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pm-archive-image img {
    width: 100%;
}

.pm-inner-details {
    display: flex;
    flex-wrap: wrap;
}

.pm-inner-details div {
    width: 25%;
    padding-right: 10px;
}

.pm-inner-details div:first-child {
    padding-left: 10px;
}

@media only screen and (max-width: 680px) {
    
    .pm-inner-details div {
        width: 50%;
        margin-bottom: 10px;
    }
    .pm-inner-details div:nth-child(odd) {
        padding-left: 10px;
    }
    
    
}