.ui.items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.ui.items > .item {
    max-width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 0;
    background: #FFF;
    border: none;
    -webkit-transition: box-shadow .1s ease,-webkit-transform .1s ease;
    transition: box-shadow .1s ease,-webkit-transform .1s ease;
    transition: box-shadow .1s ease,transform .1s ease;
    transition: box-shadow .1s ease,transform .1s ease,-webkit-transform .1s ease;
    padding: 10px;
    z-index: '';
}

.ui.items > .item.bullet:before {
    content: "\2022";
    font-size: 18px;
    position: absolute;
    left: 35px;
    top: calc(50% - 12.5px);
}

.ui.items > .item.bullet {
    padding-left: 50px;
}

.ui.items > .item.transparent {
    background-color: transparent;
}

.ui.items.divided > .item:not(:last-child) > .content {
    border-bottom: 1px solid #E0E0E0;
}

.ui.items > .item.dashed:not(:last-child) > .content {
    border-bottom: 2px dashed #D9DFDF;
}

.ui.items > .item.dashed {
    padding-top: 0;
    padding-bottom: 0;
}

.ui.items.attached > .item:first-child {
    padding-top: 0;
}

.ui.items > .item > .image {
    position: relative;
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0;
    background: #000;
    -webkit-transition: -webkit-filter 300ms ease;
    transition: filter 300ms ease;
    -webkit-filter: contrast(1.25) brightness(0.9) sepia(0.2) saturate(1.2) hue-rotate(-10deg);
    filter: contrast(1.25) brightness(0.9) sepia(0.2) saturate(1.2) hue-rotate(-10deg);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.ui.items > .item:hover > .image {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.ui.items > .item > .content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: none;
    background: 0 0;
    margin: 0;
    padding: 10px;
    box-shadow: none;
    border-radius: 0;
}

.ui.items > .item > .content > .header {
      font-size: 1em;
      color: #000;
      margin: 0;
}

.ui.items > .item > .content.overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.ui.items > .item > .content.overlay:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.ui.items > .item > .content.overlay > .header {
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 0 black;
}

.ui.items > .item > .content > .header.huge {
    font-size: 3.875em;
}

.ui.items > .item > .content > .header.large {
    font-size: 2.375em;
}

.ui.items > .item > .content > .header.medium {
    font-size: 1.750em;
}

.ui.items > .item > .content > .header.small {
    font-size: 1.500em;
}

.ui.items > .item > .content > .header.tiny {
    font-size: 1.125em;
}

.ui.items > .item > .content > .header.mini {
    font-size: 1.000em;
}

.ui.items > .item > .content > .header:hover {
    text-decoration: underline;
}

.ui.items > .item > .content > .header.external:after {
    content: "\e164";
    font-family: 'Glyphicons Halflings';
    font-weight: 400;
    margin: 0 0 0 10px;
    text-decoration: none;
    font-size: 0.8em;
}
