.shared-layout {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 85px;
}

@media (max-width: 1024px) {
    .shared-layout {
        background-color: var(--color-light);
        margin-bottom: 45px;
    }
}

@media (max-width: 640px) {
    .shared-layout {
        margin-bottom: 25px;
    }
}

.expiredMessage { 
    font-weight: 700;
    color: #fff; 
}

/* Control width of listings container & desktop options */
.contain-width {
    width: 100%;
    margin: 0;
}

@media (max-width: 1024px) {
    .contain-width {
        max-width: none;
    }
}

/* Custom styled checkboxes */

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    z-index: 9999;
    margin: 0;
    width: 15px;
    height: 15px;
}

input[type="checkbox"]:not(:checked):hover,
input[type="checkbox"]:checked:hover {
    cursor: pointer;
}

input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
    background: white;
    border: 0;
    width: 18px;
    height: 18px;
    font-family: FontAwesome;
    content: '\f0c8';
    color: transparent;
    position: absolute;
    top: 0px;
    left: 2px;
}

input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
    width: 16px;
    height: 16px;
    font-family: FontAwesome;
    font-size: 13px;
    font-weight: 100;
    content: '\f00c';
    background-color: white;
    color: var(--secondary-light-blue);
    position: absolute;
    top: 3px;
    left: 2px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

input[type="checkbox"]:not(:checked):hover + label:after {
    opacity: 0.6;
}

/* Required to hide cats with no count */
.filters input.disabled[type="checkbox"] + label,
.filters input.disabled[type="checkbox"] {
    display: none;
}

/**** Filters ****/
.desktop-filters {
    flex: 0 0 270px;
    background-color: var(--secondary-light-blue);
}

.filters {
    position: relative;
    padding: 55px 25px;
}

.filters .scroll-container{
    overflow-y: auto;
    -webkit-overflow-scrolling : touch;
}

.filters .close {
    display: inline-block;
    width: 18px;
    height: 18px;
    content: '';
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
}

.filters .close i {
    display: none;
    color: white;
}
@media (max-width: 1024px) {
    .filters .close i { display: block; }
}
.filters .filter-prompt {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.filters label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.filters .form-group {
    position: relative;
    margin-bottom: 30px;
}

.filters .form-group input::-webkit-input-placeholder {
    font-family: var(--font-secondary);
    opacity: 1;
    color: #a4a4a4;
    font-size: 15px;
}
.filters .form-group input::-moz-placeholder {
    font-family: var(--font-secondary);
    opacity: 1;
    color: #a4a4a4;
    font-size: 15px;
}
.filters .form-group input:-ms-input-placeholder {
    font-family: var(--font-secondary);
    opacity: 1;
    color: #a4a4a4;
    font-size: 15px;
}
.filters .form-group input:-moz-placeholder {
    font-family: var(--font-secondary);
    opacity: 1;
    color: #a4a4a4;
    font-size: 15px;
}

.filters input.shared-input.input-text {
    height: 44px;
    border-radius: 3px;
    border: 0;
    box-shadow: 0px 0px;
    font-family: var(--font-secondary);
    color: #a4a4a4;
    padding-left: 20px;
    margin: 0;
}

.filters button.shared-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2px;
    right: 2px;
    width: 38px;
    height: 40px;
    background-color: white;
    font-family: inherit;
    margin: 0;
    padding: 0;
}

.filters button.shared-submit:focus {
    outline: none;
}

.filters button.shared-submit img {
    width: 20px;
}

.filters button.clear-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin: 15px auto;
    padding: 15px;
    width: 100%;
    max-width: 200px;
    border-radius: 3px;
    background-color: var(--secondary-blue);
    color: white;
}

.filters .filter-label {
    font-family: var(--font-primary);
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.filters ul.filter-items {
    padding: 0;
    margin: 0 0 45px;
    list-style: none;
}

.filters ul.filter-items:last-of-type {
    margin-bottom: 75px;
}

.filters ul.filter-items > li {
    display: none;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.filters .show-more {
    background-color: transparent;
    padding: 0;
    margin: 10px 0 15px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.filters .show-more > i.fa {
    margin-left: 8px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.filters ul.filter-items > li > label {
    font-family: var(--font-primary);
    margin: 0;
    color: white;
    text-transform: uppercase;
    font-weight: 300;
}

.filters ul.filter-items > li > label > span {
    color: white;
    display: inline-block;
    margin-left: 5px;
}

/* Hide cats passed 5, use show-more to see more */
.filters ul.filter-items.show-more > li,
.filters ul.filter-items > li:nth-child(-n+5) {
    display: block;
}

@media (max-width: 1024px) {
    .desktop-filters {
        display: none;
    }
}

/**** End Filters ****/

/**** Begin Mobile Filters ****/

.mobile-options {
    display: none;
    margin: 0 auto;
    list-style: none;
    background-color: var(--color-light);
    padding: 0 5%;
}

.mobile-options .mobile-control {
    flex: 1 1 33.3333%;
    position: relative;
    padding: 15px;
    text-align: center;
    background-color: white;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
}

.mobile-options .mobile-control:first-child {
    border-left: 1px solid #c5c5c5;
}

.mobile-options .mobile-control:last-child {
    border-right: 1px solid #c5c5c5;
}

.mobile-options .mobile-control:nth-child(2) {
    border-right: 1px solid #c5c5c5;
    border-left: 1px solid #c5c5c5;
}

.mobile-options .mobile-control > a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-dark);
    text-transform: uppercase;
}

.mobile-options .mobile-control.active i {
    transform: rotate(180deg);
}

.mobile-options .mobile-control > a img {
    margin-left: 15px;
    width: 22px;
}

.mobile-options .mobile-control.active > a img {
    transform: rotate(180deg);
}

.mobile-options .mobile-control .options-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    min-width: 320px;
    max-width: 400px;
}

.mobile-options .mobile-control.active .options-dropdown {
    display: block;
    z-index: 100;
}

.mobile-options .mobile-control:first-child .options-dropdown {
    left: 0;
}

.mobile-options .mobile-control:nth-child(2) .options-dropdown {
    left: 50%;
    transform: translateX(-50%);
}

.mobile-options .mobile-control:last-child .options-dropdown {
    right: 0;
}

.mobile-options .mobile-control .options-dropdown .options {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    padding: 15px;
    margin: 0;
    list-style: none;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.15), 0px -1px 5px rgba(0,0,0,0.1);
}

.mobile-options .mobile-control .options li a {
    font-size: 16px;
    color: #c5c5c5;
}

.mobile-options .mobile-control .options li a.active {
    color: var(--secondary-blue);
}

.mobile-options .mobile-control > a i {
    position: relative;
    left: 10px;
    font-size: 18px;
    color: #909090;
}

.mobile-filters-wrapper {
    background-color: var(--secondary-light-blue);
    text-align: left;
}

@media (max-width: 1024px) {
    .mobile-options {
        display: flex;
    }
}

@media (max-width: 640px) {
    .mobile-options {
        position: relative;
    }
    .mobile-options .mobile-control {
        padding: 5px;
        position: static;
    }
    .mobile-options .mobile-control .options li a {
        font-size: 13px;
    }
    .mobile-options .mobile-control .options li [data-sv-viewby="map"] {
        display: none;
    }
    .mobile-options .mobile-control.view .options-dropdown .options {
        justify-content: space-around;
    }
    .mobile-options .mobile-control > a {
        font-size: 12px;
    }
    .mobile-options .mobile-control > a img {
        margin-left: 7px;
        width: 12px;
    }
}

/**** End Mobile Filters ****/

/**** Results, Options, Listings Bottom ****/
.flex-wrapper {
    display: flex;
}

.results-wrapper {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-light);
    padding-top: 23px;
    padding-right: 40px;
}

.results-wrapper .results {
    padding-left: 45px;
}

.flex-wrapper .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    margin: 0;
    font-family: var(--font-primary);
}

.flex-wrapper .options .flex-cont {
    display: flex;
    align-items: center;
    width: 100%;
}

.flex-wrapper .options .flex-cont > div {
    flex: 0 1 auto;
    margin: 0 5px;
    padding: 10px 0;
}

.flex-wrapper .options .flex-cont > div:first-child {
    margin-right: 30px;
}

.flex-wrapper .options ul {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style: none;
}

.flex-wrapper .options .sort-title {
    font-weight: 900;
    margin-right: 25px;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 12px;
}

.flex-wrapper .options li {
    margin-right: 15px;
}

.flex-wrapper .options ul li:last-child {
    margin-right: 0;
}

.flex-wrapper .options li > a {
    color: #c5c5c5;
    font-size: 12px;
    text-transform: uppercase;
}

.flex-wrapper .options li > a.active {
    color: var(--secondary-blue);
}

.flex-wrapper .options li .view-by i {
    margin-right: 5px;
}

.results-wrapper .listings-bottom {
    display: flex;
    margin-top: auto;
    padding: 20px 0 80px 45px;
    max-width: 875px;
}

.listings-bottom .contain-width {
    display: flex;
    margin: 0 auto;
}

.listings-bottom .back-to-btn {
    font-size: 13px;
    font-family: var(--font-primary);
    color: var(--color-dark);
}

.listings-bottom .back-to-btn i {
    color: var(--secondary-blue);
    margin-left: 5px;
    font-size: 18px;
}

.listings-bottom .back-btn-cont,
.listings-bottom .pagination-cont {
    width: 50%;
}

.listings-bottom .back-btn-cont {
    text-align: right;
}

.shared-map-container .pagination-cont .pagination {
    height: 100%;
}

.shared-map-container .pagination-cont .pagination li:nth-child(2) {
    padding-top: 3px;
    margin: 0 10px;
}

@media (max-width: 1100px) {
    .results-wrapper .results {
        padding-left: 25px;
    }
    .flex-wrapper .options .flex-cont > div:first-child,
    .flex-wrapper .options .sort-title {
        margin-right: 15px;
    }
    .flex-wrapper .options li {
        margin-right: 10px;
    }
}

@media (max-width: 1024px) {
    .results-wrapper {
        padding-right: 0;
    }
    .results-wrapper .results {
        padding: 0 15px;
    }
    .results-wrapper .options {
        display: none;
    }
    .results-wrapper .listings-bottom {
        padding: 20px 15px 40px;
    }
}

@media (max-width: 640px) {
    .listings-bottom {
        flex-direction: column;
    }
}

/**** End Results, Options, Listings Bottom ****/

/**** Pagination ****/
.options .pagination-cont {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.pagination-cont .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style: none;
}

.listings-bottom .pagination-cont .pagination {
    justify-content: flex-end;
}

.listings-bottom .pagination-cont .pagination li:nth-child(2) {
    margin: 0 15px;
    padding-top: 3px;
}

ul.pagination li {
    margin-left: 0;
    color: var(--color-dark);
}

.pagination-cont .pagination li a {
    display: inline-block;
    padding: 0;
    color: var(--color-dark);
}

.pagination-cont .pagination li:last-child a {
    padding-right: 0;
}

.pagination-cont .pagination li i {
    font-size: 28px;
    color: var(--secondary-blue);
}

.pagination-cont .pagination li:last-child a i:last-child {
    margin-left: -3px;
}

.pagination-cont .pagination li:first-child a i:first-child {
    margin-right: -3px;
}

.pagination-cont .pagination .pagination-prev {
    margin-left: 15px;
}

.pagination-cont .pagination .pagination-next {
    margin-right: 15px;
}

ul.pagination li:hover a,
ul.pagination li a:focus,
ul.pagination li:hover button,
ul.pagination li button:focus {
    background: transparent;
}

@media (max-width: 640px) {
    .listings-bottom .back-btn-cont,
    .listings-bottom .pagination-cont {
        width: 100%;
        text-align: center;
    }
    .listings-bottom .pagination-cont .pagination {
        justify-content: center;
        margin-top: 25px;
    }
}

/**** End Pagination ****/

/**** Begin Map View Container ****/

.shared-map-container {
    display: none;
    position: relative;
}

.layout-map .shared-map-container {
    display: block;
}

.map-list-cont {
    position: absolute;
    z-index: 99;
    top: 35px;
    left: 35px;
    height: 85%;
    width: 400px;
    overflow: hidden;
    background-color: white;
    padding-bottom: 100px;
}

.map-list-cont .map-list-heading {
    background-color: white;
    padding: 20px 25px;
    text-align: center;
}

.map-list-cont .map-list-heading h3 {
    margin: 0;
}

.map-list-cont .map-list {
    height: 100%;
}

.shared-map .gMapContainer,
.shared-map .gMapHolder {
    width: 100%;
    height: 100%;
    min-height: 900px;
}

.shared-map-container .map-list .shared-items {
    height: calc(100% - 80px);
    overflow-y: auto;
    background-color: white;
    padding: 5px 0;
    margin: 0;
    list-style: none;
}

.shared-map-container .map-list-pager {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 15px;
}

@media (max-width: 640px) {
    .layout-map .shared-map-container {
        display: none;
    }
}

/**** End Map View Container ****/

/**** Begin Shared Items ****/

/* Begin Items Container */

.shared-items-container {
    padding: 20px 0;
}

[data-sv-items-wrapper] {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    list-style: none;
}

.layout-map [data-sv-items-wrapper] {
    display: none;
}

.layout-list [data-sv-items-wrapper] {
    display: flex;
    flex-direction: column;
}

[data-sv-items-wrapper] > li {
    flex: 0 0 33.3333%;
}

@media (max-width: 1024px) {
    .shared-items-container {
        padding: 20px 0;
    }
    [data-sv-items-wrapper] > li {
        flex: 0 0 50%;
    }
}

@media (max-width: 640px) {
    .shared-items-container {
        padding: 20px 0;
    }
    [data-sv-items-wrapper] > li {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

@supports (display: grid) {
    [data-sv-items-wrapper] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    }
    [data-sv-items-wrapper] .no-results {
    	grid-column:span 4;
    }
}

/* End Items Container */

.shared-items .shared-item {
    display: flex;
    margin: 0 8px 20px;
}

.layout-grid .shared-items .shared-item {
    flex-direction: column;
    height: 95%;
}

.shared-items .shared-item .img-cont {
    position: relative;
}

.shared-items .shared-item.featured .img-cont .featured-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    height: 35px;
    padding: 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-primary);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 1;
}

.shared-items .shared-item.featured .img-cont .featured-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-light-blue);
    opacity: 0.9;
}

.shared-items .shared-item.featured .img-cont .featured-badge span {
    z-index: 1;
}

.shared-item .thumb {
    display: block;
    width: 100%;
}

.shared-items .shared-item .content {
    position: relative;
    padding: 20px 25px 12px 0;
    background-color: var(--color-light);
    width: 85%;
    transform: translateY(-35px);
    margin-bottom: -35px;
}

.shared-items .shared-item .content .title,
.infoWindow .content h2.title {
    font-size: 23px;
    line-height: 28px;
    text-transform: none;
    margin-bottom: 10px;
}
.layout-list.events-only .shared-items .shared-item .content .title { margin-bottom: 0px; }
.infoWindow .content h2.title { width: 100%; }

.shared-items .shared-item .content .title a {
    color: var(--color-dark);
}

.shared-items .shared-item .content .date-range,
.shared-items .shared-item .content .address {
    position: relative;
    padding-left: 0px;
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    width: 100%;
    padding-left: 15px;
}
.shared-items .shared-item .content .distance {
    color: var(--secondary-blue);
    font-weight: 700;
    margin: -5px 0 10px;
}
.shared-items .shared-item .content .date-range {
    display: inline-block;
    font-weight: 700;
    padding-left: 0;
    margin-bottom: 0px;
}

.layout-list .shared-items .bookingButton {
    max-width: 250px;
}

.shared-items .bookingButton {
    position: relative;
    margin: auto 0px 22px;
    max-width: 85%;
    background-color: var(--secondary-light-blue);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.shared-items .get-your-offer {
    margin: auto 0px 22px;
    max-width: 85%;
    text-align: center;
}

.shared-items .get-your-offer a {
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    background-color: var(--color-button-secondary);
    border-radius: 3px;
    white-space: nowrap;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
}

.shared-items .bookingButton .rateInfo {
    padding: 10px 10px 25px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.layout-list .shared-items .bookingButton .rateInfo {
    padding-left: 20px;
    padding-right: 20px;
}

.shared-items .bookingButton .rateInfo > span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

.shared-items .bookingButton .bookUrl {
    position: absolute;
    top: calc(100% - 20px);
    left: 50%;
    display: inline-block;
    transform: translateX(-50%);
}

.shared-items .bookingButton .bookUrl a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    background-color: var(--color-button-secondary);
    border-radius: 3px;
    white-space: nowrap;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.shared-items .shared-item .img-cont .date {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 50px;
    background-color: var(--secondary-blue);
    color: white;
}
.shared-items .shared-item .img-cont .date.bottom {
    top: auto;
    bottom: 0;
}
.shared-items .shared-item .img-cont .date span:first-of-type {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
}
.shared-items .shared-item .img-cont .date span:last-of-type {
    font-family: var(--font-primary);
    font-size: 28px;
    text-transform: uppercase;
}
.shared-items .shared-item .content .address.hasloc {
    display: inline-block;
    padding-left: 20px;
    height: auto;
    min-height: 25px;
}
.shared-items .shared-item .content .address.hasloc a {
    width: 15px;
    height: 25px;
}

.shared-items .shared-item .content .address i {
    position: absolute;
    top: -1px;
    left: 0;
    color: var(--secondary-blue);
    font-size: 20px;
}
.shared-items .shared-item .content .address > div {
    display: inline-block;
}

@media (max-width: 1024px) {
    .shared-items .shared-item .content {
        padding: 15px 20px 15px 0;
    }
}

/* Begin Map View */

.layout-map .shared-map-container .shared-items .shared-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin: 0 0 15px;
}

.layout-map .shared-items .shared-item .content {
    transform: translateY(0);
    padding: 10px 10px 10px 15px;
    width: 100%;
    height: 100%;
    min-height: 134px;
}

.layout-map .shared-items .shared-item .content .title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
}

.layout-map .shared-map-container .shared-items li {
    background-color: var(--color-light);
}

/* End Map View */

/* Begin List View */

.layout-list [data-sv-items-wrapper] > li {
    flex: 1 1 auto;
    margin-bottom: 20px;
    height: 100%;
    width: 100%;
}

.layout-list .shared-items .shared-item {
    display: flex;
    margin: 0;
    width: 100%;
}

.layout-list .shared-items .shared-item .img-cont {
    flex: 0 1 auto;
}

.layout-list .shared-items .shared-item .content {
    flex: 0 1 auto;
    transform: translateY(0);
    padding: 20px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.map-list.layout-list .shared-items .shared-item .content {
    padding: 0 10px 10px;
}

.layout-list .shared-item .thumb {
    max-width: 200px;
    height: auto;
}

@media (max-width: 640px) {
    .layout-list [data-sv-items-wrapper] > li {
        width: 90%;
        margin: 0 auto;
    }
}

.options .distanceSort,
ul.mobile-options .distanceSort {
    opacity: 0;
    pointer-events : none;
    vertical-align: top !important;
    overflow: hidden;
}
.desktop.options > ul[data-sv-distanceSort],
.desktop.options > ul [data-sv-distanceSort] {
    height: 0;
    width: 0;
    opacity: 0;
    pointer-events:none;
}

.events-only ul li[data-sv-distancesort],
.events-only ul[data-sv-distanceSort],
ul.mobile-options .distanceSort {
    opacity: 0.5;
    height: auto;
    pointer-events: none;
}

/* End List View */

@media (max-width: 640px) {
    .shared-items .shared-item {
        width: 80%;
        height: 100%;
        margin: 0 auto;
    }
    .layout-list .shared-items .shared-item { margin-bottom: 20px; }
    .shared-items .shared-item .content .title {
        font-size: 19px;
        line-height: 23px;
    }
    .shared-items .shared-item .content .address {
        width: 100%;
        font-size: 11px;
    }
    .layout-list .shared-items .shared-item .content {
        flex: 1 1 auto;
        width: calc(100% - 90px);
        padding: 0 10px 20px;
    }
    .layout-list .shared-items .shared-item .img-cont {
        width: 90px;
        overflow: hidden;
        flex: 0 1 auto;
        max-width: 260px;
    }
    .layout-list .shared-items .shared-item .date { display: none; }
    .layout-list .shared-item .thumb { height: auto; }
    .shared-items .shared-item.featured .img-cont .featured-badge {
        padding: 0 15px;
        font-size: 11px;
    }
    .layout-list .shared-items .shared-item .content .title {
        font-size: 16px;
        line-height: 20px;
    }
    .layout-list .shared-items .shared-item .content .address > div {
        height: auto;
        margin-bottom: 25px;
    }
}

/**** End Shared Items ****/
