/* CSS Document */

ul[class] {
    margin: 0;
    padding: 0;
}

ul[class] li {
    list-style: none;
}

ul[class] li > * {
  /* margin: 1rem;*/
}

:focus {
    box-shadow: 0 0 0 1px #750404;
    outline: 0;
}

/* [1] 'auto-fit' grid columns, so no media queries required. */
/* [2] 'dense' packing fills in holes earlier in the grid. */
.gridexp {
    display: grid;
    gap: 2rem;
    grid-auto-flow: dense; /* [2] */
    grid-template-columns: repeat(auto-fit, 32%); /* [1] */
    justify-content: flex-start;
	    margin: 30px 0px !important;
}


.gridexp > * {
   align-items: flex-start;
    background: #eee0;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #549c53;
    border-radius: 4px;
    padding: 4%;
}

.gridexp h2{
width: 100%;
    position: relative;
    color: #0c4195;
    font-size: 20px!important;
    font-weight: 500!important;
    line-height: 30px;
    font-family: 'Lato', sans-serif!important;
    letter-spacing: 0px;
    display: block;
    text-align: left;
    padding: 2% 0% 0% 0%;
    margin: 0px;
    margin-bottom: 10px !important;}

.gridexp-data ul li {
    color: #164797 !important;
    font-size: 18px;
    font-weight: 300;
    line-height: 31px;
    margin-left: 30px;
	text-align: left;
	position:relative;
}
.gridexp-data ul li:before {
    content: '\2713';
    position: absolute;
    margin-left: -20px;
    color: #0c4195;
}

.gridexp button {
      background: none;
    border: none;
    color: #317031 !important;
    text-transform: uppercase;
    font-size: 12px;
}

.fullwidth button {
	position: absolute;
    TOP: 20px;
    RIGHT: 20px;
    border-radius: 20px;
    border: 1px solid;
}

/* [3] Make fullwidth card span all grid columns. */
.fullwidth {
    grid-column: 1 / -1;
}

.is-hidden {
    display: none;
}

.fullwidth,
.is-selected {
    background: #fff;
	position:relative;
}


.gridexp button:focus {
    box-shadow: 0 0 0 0.25rem #ffffff00 !important;
    outline: 0;
}


@media only screen and (min-width: 320px) and (max-width: 480px) {

.gridexp { grid-template-columns: repeat(auto-fit, 32rem);}

.gridexp-data {    padding-top: 40px;}
}