

.min-header {
    border: 1px solid rgb(231, 231, 231);
    border-inline: none;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid rgb(231, 231, 231);     */
}

.min-header .mintitle{
    display: block;
    font-size: 26px;
    /* width: 100%; */
    margin-bottom: 8px;
}

.add-btn a {
    padding: 5px 10px;
    color: rgb(92, 92, 92);
    text-decoration: none;
    border-radius: 6px;
}

.add-btn a:hover {
    background-color: lightgray;
}

.sortbyblock {
    color:  rgb(89, 89, 89);
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.sortbyblock .sbtn,#sort{
    cursor: pointer;
}



.hiddenopt {
    background-color: white;
    padding: 5px 0;
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 5;
    border: 1px solid rgb(198, 198, 198);
}

.hiddenopt.open {
    display: flex;
}


.sbtn {
    padding: 8px 22px;
    background-color: #ffffff;
    /* border: 0.5px solid #b4b4b4; */
    /* box-shadow: 0px 0px 2px rgba(0,0,0.5); */
    border: none;
}

.sbtn:hover {
    background-color: rgb(238, 238, 238);
}

.activesort {
    background-color: #ff7a0c;
    color: white;
}

.activesort:hover {
    background-color: #ff7300;
}

.sortopt button {
    font-size: 15px;
}

#sort {
    padding: 8px 12px;
    background-color: white;
    border: 0.5px solid #b4b4b4;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    transition: .25s;
    margin-bottom: 5px;
}

#sort:hover {
    transition: .25s;
    background-color: rgb(229, 229, 229);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

#sort>div {
    display: flex;
    align-items: center;
}

.sort-typedir {
    margin-left: 3px;
    width: 17px;
    height: 17px;
}

.sort-typedir img {
    width: 100%;
    height: 100%;
}

.sortdir-1 {
    transform: rotate(180deg);
}

/* .sortbutton:focus {
    background-color: rgb(168, 232, 168);
} */

.content {
    display: flex;
    width: 100%;
}

.catalogue {
    width: 80%;
}

.page-nav {
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 20px;
}


.page-nav a{
    text-decoration: none;
    color: #0645AD;
    margin-right: 5px;
}

.page-nav a:hover{
    transition: .1s;
    color: #0d0050;
}

.p-now {
    font-weight: 400;
    margin-right: 5px;
}

.now-number {
    padding: 1px 4px;
    background-color: rgb(250, 250, 250);
    font-weight: 700;
}

.media-entries {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-content: flex-start;
    justify-content: flex-start;
}

.c-block {
    width: calc(20% - 2em);
    margin: 0 2em 2em 0;
    position: relative;
}

.overflow-block {
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.c-link {
    text-decoration: none;
    color: black;
}

.c-link:hover .c-name{
    color: #e45b00;
    transition: 0.15s ease;
}

.c-link:hover .c-cover{
    opacity: 0.95;   
    transition: 0.2s ease;
}

.c-desc {
    
    white-space: nowrap;  
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-cover {
    width: 100%;
    height: 86%;
    transition: .15s ease;
}

.c-name {
    
    font-size: 15px;
}

.c-foot {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgb(91, 91, 91);
}

.tooltip-content {
    display: none;
    position: absolute;
    left: 110%;
    font-size: 13px;
    z-index: 1;

    padding: 15px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    width: 280px;
    min-height: 20px;
    border: 2px solid black;
}

.tooltip-content * {
    font-family: OpenSans;
}

.c-block:hover .tooltip-content {
    display: block;
}


.tooltip-title {
    color: #0645AD;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.truncated-text {
    display: block;
    display: -webkit-box;
    max-width: 100%; 
    height: 5.2em; 
    line-height: 1.3;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word; 
    margin-bottom: 5px;
}

.line {
    font-size: 13px;
    margin-bottom: 8px;
}

.info-type {
    color: rgb(87, 87, 87);
}

.info-ans {
    color: black;
}

.score {
    text-align: right;
}

.line:last-of-type {
    margin-bottom: 0;
}

.score-text {
    font-weight: 700;
    font-size: 16px;
}

/* @media (max-width: 1150px) {
    .c-block {
        width: calc(25% - 2em);
        margin: 1em;
        position: relative;
    }

    .c-block:hover .tooltip-content {
        display: none;
    }
} */

.open-filter-bar {
    display: none;
}

/* @media (max-width: 950px) {
    .filter-setting {
        display: none;
    }

    .catalogue {
        width: 100%;
    }

    .open-filter-bar {
        display: block;
        position: fixed;
        background-color: rgb(0, 235, 0);
        padding: 5px 10px;
        border-radius: 5px;
        left: 90%;
    }
    

} */

.dropshadow {
    height: 100%;
    left: -19px;
    position: absolute;
    top: 0;
    width: 19px;
    z-index: -1;
}

.filter-setting {
    width: 20%;
}


.f-block {
    margin-bottom: 20px;
}

.f-block .heading {
    margin-bottom: 5px;
}

.f-line {
    box-sizing: border-box;
    color: #484848;
    font-family: OpenSans;
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    padding: 2px 0px 2px 10px;
}

.f-line:hover {
    background-color: #e6e6e6;
}

.f-line input{
    vertical-align: middle;
}


.f-line.f-active {
    background-color: rgb(223, 223, 223);
}

.reset-filters {
    padding: 6px;
    color: #484848;
    margin: auto;
    font-size: 14px;
    cursor: pointer;
    background-color: #fafafa;
    border-radius: 5px;
    transition: 0.15s;
}

.reset-filters:hover {
    transition: 0.15s;
    background-color: #d3d3d3;
}

