/*
    campsite card styles

    used for www recents and compare tray cards

*/

.campsite-card {
    width: 120px;
    margin: 1% 2% 4% 0;
    height: 208px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    border: 1px solid #bbb;
    position: relative;
    background: #f7f7f7;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.campsite-card a {
    display: block;
    height: 100%;
}

.campsite-card:hover {
    background-color: #dedede;
    border-color: #777;
}

.campsite-card:hover a,
.campsite-card a:hover {
    text-decoration: underline;
    color: #2b2b2b;
}

.campsite-card .csname {
    font-size: 12px;
    padding: 0 4px .3em;
    color: #2b2b2b;
    line-height: 13px;
    margin-top: 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    letter-spacing: -.03em;
}

.campsite-card .cslocation {
    font-size: 10px;
    color: #777;
    line-height: 1;
    padding: 0 4px;
    margin-bottom: .2em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.campsite-card .pu_rating.sml {
    position: absolute;
    bottom: 6px;
    left: 6px;
    line-height: 1.1;
    padding: 2px 6px 2px;
}

.campsite-card .pu_rating:after {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
}

.campsite-card:hover .pu_rating:after {
    background: #dedede;
}

.campsite-card .free-listing {
    background-color: white;
    padding: 10px 20px;
}