/* General CSS */

*{
    padding: 0;
    margin:0;
}

.wpc-container{
    width: 80%;
    margin: 0 auto;
}

/* Cards CSS */

.wpc-page-header{
    width:100%;
}

.wpc-card {
    border: 1px solid #299656;
    width: 30%;
    margin: 10px;
    float:left;
}

.wpc-card-image{
    height: 300px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}

.wpc-image-helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.wpc-card-image img{
    vertical-align: middle;
}

.wpc-card-container {
    padding: 2px 16px;
    overflow: hidden;
}

.wpc-card-title{
    height: 50px;
    overflow: hidden;
}

.wpc-card-description{
    height: 156px;
}

.wpc-card-button{
    background: #299656;
    padding:10px;
    border: none;
    width: 100%;
    transition: 300ms;
    cursor: pointer;
    color: white;
}

.wpc-card-button:hover{
    background: #29965685;
}

.wpc-card-field{
    height:52px;
    overflow:hidden;
}

.wpc-post-listing{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    min-height: 300px;
    margin-top:30px;
    margin-bottom:30px;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.wpc-listing-body{
    border-top: #27834d solid 2px;
    padding:5px;
    margin-bottom: 70px;
}

.wpc-post-listing img{
    float: left;
    margin-right: 30px;
}

.wpc-post-listing:hover{
    background:rgba(211, 211, 211, 0.507);
    cursor: hand;
    cursor: pointer;
    opacity: .9;
}

.wpc-padding-fix{
    position: relative;
    overflow:auto;
}

.wpc-padding-fix a{
    text-decoration: none;
}

.wpc-listing-button{
    float:right;
    display: block;
    padding:10px;
    background-color: #27834d;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: .3s ease-out;
    cursor: pointer;
    position: absolute;
    right:0;
    bottom: 0;
}

.wpc-show-above-link{
    z-index: 10;
    position: relative;
}

.wpc-listing-button:hover {
    background-color: #27834d77;
  }

  .wpc-listing-fields{
    padding:10px;   
  }

  a.wpc-div-link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 7;
  }

/* Table CSS */

.wpc-table {
    border-collapse: collapse;
    width: 100%;
}

.wpc-table td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.wpc-table tr:nth-child(even) {
    background-color: #dddddd;
}


/* Links */

.wpc-link{
    text-decoration: underline;
}

/* Single table view */

#wpc-single-heading{
    overflow: hidden;
}

.wpc-post-title{
    border-bottom: #009861 2px solid;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.wpc-post-image{
    display: block;
    margin: 0 auto;   
}

.wpc-post-image-left{
    float: left;
    margin-right:30px;  
}

#wpc-post-fields{
    margin-top: 50px;
}

#wpc-post-fields table{
    border-collapse: collapse;
    width: 100%;
}

#wpc-post-fields th, #wpc-post-fields td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

#wpc-post-fields tr:hover {background-color:#f5f5f5;}

#wpc-post-fields tr:nth-child(even) {background-color: #9ac5ac17;}

#wpc-post-map{
    min-height: 300px;
    width: 100%;
    margin-top:50px;
    background: #fafafa;
    border: #ddd solid .5px;
    overflow: hidden;
    margin-bottom: 100px;
}

.wpc-map-details{
    padding: 10px;
    width:40%;
    float:left;
    min-height: 300px;
    box-sizing: border-box;
}

.wpc-map{
    padding: 20px;
    right: 0;
    top: 0;
    width: 60%;
    float:right;
    min-height: 300px;
    box-sizing: border-box;
}

.wpc-map-field{
    padding: 5px;
    margin-top: 10px;
}

/* ACF Map */

.acf-map {
	width: 100%;
	height: 400px;
	border: #ccc solid 1px;
}

/* fixes potential theme css conflict */
.acf-map img {
   max-width: inherit !important;
}

/* Archive Sort select */

#wpc-sort-select{
    margin: 15px 0;
    padding: 10px;
    background: white;
    color: #299656;
    border: none;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    border: 1px solid #299656;
   -webkit-appearance: none;
   -moz-appearance: none;
    appearance: none;
}

/* Media queries */

/* Card */
@media only screen and (max-width: 1024px) {
    .wpc-card {
        margin: 10px auto;
        width:70%;
        float: none;
    }
}

/* List Layout */
@media screen and (max-width: 480px) {
    .wpc-post-listing img{
        float: none;
        display: block;
        margin: auto;
        margin-bottom: 20px;
    }

    .wpc-listing-button{
        float: none;
        width: 100%;
    }

    .wpc-listing-body{
        margin-bottom: 50px;
    }

    .wpc-listing-description{
        text-justify: distribute;
    }
}

/* Single table view */
@media screen and (max-width: 480px) {
    .wpc-post-image{
        float: none;
        display: block;
        margin: auto;
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 786px) {
    .wpc-map, .wpc-map-details{
        float:none;
        width:100%;
    }
}