.SearchResults {
        /* background: none repeat scroll 0 0 #FFFFFF; */
        padding: 0;
        margin: 16px 0;
        padding: 0;
        margin-top: 0;
}
.SearchResults .SearchPane {
        margin-bottom: 20px;
        border: 1px solid #9E9E9E;
        padding: 20px;
        border-radius: 5px;
        background: #f2f2f23d;
}
.SearchResults .SearchPane .TextPane {
        float: left;
        margin-right: 15px;
}
.SearchResults .SearchPane .TextPane {
}
.SearchResults .SearchPane .TextBox {
        float: left;
}
.SearchResults .SearchPane .SearchButton {
        background: none repeat scroll 0 0 var(--color-primary);
        display: block;
        margin: 20px auto 0 auto;
        text-decoration: none;
        font-weight: 600;
        color: #ffffff;
        position: relative;
        text-align: center;
        padding: 10px 20px;
        width: fit-content;
}

.SearchResults .SearchPane .DatePane {
        float: left;
        margin-right: 20px;
}
.SearchResults .SearchPane .DatePane .BeginDate {
        float: left;
}
.SearchResults .SearchPane .DatePane .EndDate {
        float: left;
        margin-left: 15px;
}
.SearchResults .ResultList {
        list-style: none outside none;
        margin: 0;
        padding: 0;
}
.SearchResults .ResultList .Item {
        width: 100%;
        display: grid;
        grid-template-rows: repeat(10, 1fr);
        grid-template-columns: repeat(10, 1fr);
        column-gap: 20px;
      padding: 20px 0;
        border-bottom: 1px solid #f2f2f2;
        max-height: 20vh;
}
.SearchResults .ResultList .Item:hover a{
}
.SearchResults .ResultList .Item .Image {
        grid-column: 1/4;
        aspect-ratio: 16/9;
        grid-row: 1/10;
}
.SearchResults .ResultList .Item .Title {
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        font-weight: 600;
        /* or 136% */
        /* Grey 1 */
        text-decoration: none;
        grid-column: 4/10;
        grid-row: 1 / 2;
}
.SearchResults .ResultList .Item .Summary {
        padding: 0;
        margin: 0;
        grid-row: 3/8;
        grid-column: 4/10;
        overflow: hidden;
}
.SearchResults .DataPager {
        /* float: right; */
        margin: 2px;
}

.SearchResults .SearchPane>div>span{
        font-size: 17px;
        font-weight: 700;
        text-align: left;
        padding: 10px 0;
        display: block;
}
.SearchPane input, .SearchPane select {
        height: auto !important;
        padding: 5px 10px !important;
        display: inline-block;
        box-sizing: border-box !important;
        border: 1px solid #ccc!important;
        border-radius: 3px;
        outline: none;
        font-size: 14px !important;
}
.SearchResults .ResultList{
        margin-top: 30px;
}
.SearchResults .DataPager {
        padding: 5px;
        margin-top: 10px;
}
.SearchResults .DataPager>span{
        display: flex;
        align-items: center;
        justify-content: center;
}
.SearchResults .DataPager>span>span, .SearchResults .DataPager>span>a{
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        font-family: "Roboto";
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        /* identical to box height */
        text-align: center;
        background: #EEEEEE;
        color: #666666;
        border: 1px solid #f2f2f2;
}
.SearchResults .DataPager span.CurrentPage {
        background: var(--color-primary);
        color: #fff;
}
.SearchResults .SearchPane * {
        line-height: 1.4 !important;
}
@media only screen and (max-width: 1023px){
        div.SearchResults {
                padding: 5px 10px !important;
                width: 100vw;
        }
        .SearchResults .ResultList .Item img.Image {
                float: none !important;
                width: 100% !important;
                height: 50vw !important;
                margin: 0 !important;
                margin-bottom: 15px !important;
        }
}
