.gridder {
    margin: 0px;
    padding: 0px;
    list-style-type: none
}

.gridder-list {
    display: inline-block;
    vertical-align: top
}

.gridder-show {
    display: block;
    float: left;
    width: 100%;
    position: relative;
    background: #EEE url("../images/loading-spin.svg") no-repeat center
}

.gridder-show.loading {
    background: #EEE url("../images/loading-spin.svg") no-repeat center
}

.gridder-content {
    display: none
}

.gridder-list {
    width: 49.5%;
    position: relative;
}

.gridder-list:nth-child(n) {
    margin-bottom: 1%;
    margin-right: 1%;
}

.gridder-list:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 0;
}

.gridder-show {
    padding: 30px;
    background: #006FB5;
    margin-bottom: 1%;
    color: #FFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;

    

}
.gridder-show h1, .gridder-show h2, .gridder-show h3, .gridder-show h4, .gridder-show h5, .gridder-show h6{
    color: #FFF;
    font-weight: 500;
}

.gridder-navigation .gridder-nav.disabled {
    opacity: .5;
}



.gridder-list:hover {
    
}

.hasSelectedItem .gridder-list {
    opacity: .5
}

.hasSelectedItem .gridder-list.selectedItem {
    opacity: 1
}

.gridder-list:after{
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #006FB5;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    opacity: 0;
    -webkit-transition: all 0.1s linear 0s;
  -moz-transition: all 0.1s linear 0s;
  -ms-transition: all 0.1s linear 0s;
  -o-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
}

.gridder-list.selectedItem:after{
    opacity: 1;
    bottom: -42px;
    

    -webkit-transition: all 0.5s ease-in-out 0.8s;
  -moz-transition: all 0.5s ease-in-out 0.8s;
  -ms-transition: all 0.5s ease-in-out 0.8s;
  -o-transition: all 0.5s ease-in-out 0.8s;
  transition: all 0.5s ease-in-out 0.8s;
}
.gridder-navigation{
    padding-bottom: 30px;
}
.gridder-close{
    color: #FFF !important;
    
    font-size: 18px;
    font-weight: 400;
    padding: 12px 0;
    display: inline-block;
    border: #FFF solid 2px;
    text-align: center;
    width: 50px;
    
    border-radius: 50%;
    text-decoration: none !important;
}

@media screen and (min-width: 700px) {
    .gridder-list {
        width: 32%;
    }
    .gridder-list:nth-child(n) {
        margin-bottom: 2%;
        margin-right: 2%
    }
    .gridder-list:nth-of-type(3n) {
        margin-right: 0;
        margin-bottom: 0
    }
}