﻿
html, body {
    height: 100%;
}

html {
    min-height: 100%;
  
}


.page-container {
    min-height: 100%;
}


.pod-title-row {
    margin-bottom: 2rem;
}
h2.pod-title {
    margin: 0;
}

.pod-item-count {
    font-size: 1rem !important;
    font-weight: 300 !important;
}

h3.pod-item-title {
    font-size: 1rem;
    padding-top:0.25rem
}

a:hover {
    color: unset;
}

h4.pod-item-subtitle {
    font-size: 0.8rem;
}

.pod-row {
    margin-bottom: 2rem;
}




img.garden-avatar {
    width: 80px;
    height: 80px;
}

.pod-items {
    display: flex;
    justify-content: left;
    flex-flow: row wrap;
    margin: -10px;
}

.pod-item {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 240px;
    width: 100%; /*will be overidden by calc() at various breakpints*/
    margin: 0 10px 20px 10px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 1.25rem;
}

.pod-item-heading {
    margin-left: 1rem;
}
.pod-item-style-minimised .pod-item {
    height: auto;
}

.pod-item.garden-pod-item {
    height: auto;
}

.pod-item-style-minimised img.garden-avatar {
    width: 60px;
    height: 60px;
}

.pod-item-description {
    padding-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}


.pod-item-style-minimised .pod-item-description {
    display: none;
}

a.pod-item:hover {
    text-decoration: none;
}

ul.footer-list {
    padding: 0;
    list-style-type: none;
    text-align: center;
}

#viewport {
    padding-bottom: 640px;
    position: relative;
}

.footer {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px 0 15px;
    position: absolute;
    width: 100%;
    height: 640px;
}



    @media(min-width: 576px) {
       

      

    div.box-shadow-md:before {
        box-shadow: inset -8px 0 8px -8px rgba(80,80,80,1);
        content: " ";
        height: 100%;
        left: -15px;
        position: absolute;
        top: 0;
        width: 15px
    }

    div.box-shadow-md:after {
        box-shadow: inset 8px 0 8px -8px rgba(80,80,80,1);
        content: " ";
        height: 100%;
        position: absolute;
        top: 0;
        right: -15px;
        width: 15px
    }

    div.box-shadow-md {
        position: relative
    }

    
        /*
        We subtract 21 instead of 20 in all these rules, to cope with IE11 calc() rounding issue https://caniuse.com/#search=calc().
        Without this, the final item in each row drops to the next row in IE 11.
    */
    .pod-item-style-minimised .pod-item {
        width: calc((100% / 2) - 21px);
    }
}

@media (min-width: 768px) {

  
    .pod-item-style-wide .pod-item,
    .pod-item-style-normal .pod-item {
        width: calc((100% / 2) - 21px); 
    }
}

@media (min-width: 992px) {

    .garden-title {
        padding-right: 300px;
    }


    #viewport {
        padding-bottom: 200px;
    }


    .footer {
        height: 200px;
    }

    .standalonegarden #viewport {
        padding-bottom: 80px;
    }

    .standalonegarden .footer {
        height: 80px;
    }
  
    .pod-item-style-minimised .pod-item {
        width: calc((100% / 3) - 21px);
    }
}

@media (min-width: 1200px) {

    
    .pod-item-style-wide .pod-item {
        width: calc((100% / 2) - 21px);
    }

    .pod-item-style-normal .pod-item {
        width: calc((100% / 3) - 21px); 
    }

    .pod-item-style-minimised .pod-item {
        width: calc((100% / 4) - 21px);
    }

}

@media (min-width: 1400px) {


    .pod-item-style-wide .pod-item {
        width: calc((100% / 3) - 21px);
    }

    .pod-item-style-normal .pod-item {
        width: calc((100% / 4) - 21px);
    }

    .pod-item-style-minimised .pod-item {
        width: calc((100% / 5) - 21px);
    }
}


@media(max-width: 768px) {

    #viewport {
        background-image: none !important;
    }
}

