.ccrc-pages.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.ccrc-item-queries {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.ccrc-pages.horizontal .ccrc-item-queries {
    flex-direction: row;
    align-items: center;
}
.ccrc-thumbnail {
    margin-right: 16px;
}
.ccrc-pages{
    .ccrc-lineBar {
        display: none;
    }
}
.ccrc-pages.ccrc-vertical-box{
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    justify-content: space-evenly;
    .ccrc-item-queries{
        max-width: 190px;
    }
    .ccrc-content h3{
        font-size: 20px;
        font-weight:400;
        text-align:center;
        min-height: 65px;
    }
    .ccrc-content p {
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        color: #333;
    }
    .ccrc-thumbnail{
        width:100%;
        height:250px;
        background-color: transparent;
        display:flex;
        padding: 20px;
    }
    img{
        margin:auto;
        max-height: 208px;
        max-width: 150px;
    }
    .ccrc-lineBar{
        display:block;
        width: 40%;
        height: 2px;
        background-color: #ccc;
        margin: auto;

        transition: width 0.3s ease;
    }
    :hover{
        .ccrc-lineBar {
            width: 50%;
        }
    }
}
.ccrc-pages.ccrc-horizontal-box {
    cursor: pointer;
    .ccrc-item-queries{
        margin-bottom: 20px;
    }
    .ccrc-box{
        display: flex;
    }
    .ccrc-content h3 {
        margin-top:0;
        font-size: 25px;
        font-weight: 500;
        text-align: left;
    }
    .ccrc-content p {
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        color: #333;
    }
    .ccrc-thumbnail{
        width:200px;
        height:300px;
        min-width: 200px;
        background-color: transparent;
        display:flex;
        margin-right: 20px;
        padding: 20px;
    }
    .ccrc-lineBar{
        display:block;
        width: 5%;
        height: 2px;
        background-color: #ccc;
        margin-bottom:20px;
        margin-left:0;
        transition: width 0.3s ease;
    }
    img{
        margin:auto;
    }
    :hover{
        .ccrc-lineBar {
            width:20%;
        }
    }
}
.ccrc-pages.ccrc-horizontal-list {
    cursor: pointer;
    .ccrc-item-queries{
        margin-bottom: 10px;
    }
    .ccrc-content h3 {
        margin-top:0;
        font-size: 20px;
        font-weight: 400;
        text-align: left;
    }
    .ccrc-content p {
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        color: #333;
    }
    .ccrc-lineBar{
        display:block;
        width: 5%;
        height: 2px;
        background-color: #ccc;
        margin-left:0;
        margin-bottom:10px;
        transition: width 0.3s ease;
    }
    :hover{
        .ccrc-lineBar {
            width:20%;
        }
    }
}