.theme-picker-item {
    background-color: white;
    height: 95px;
    width: 22%;
    max-width: 137px;
    color: #262341;
    font-family: "pangram-regular";
    font-size: 12px;
    font-weight: bold;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.theme-picker-item:hover {
    background-color: #ead8cc;
}

.theme-picker-item:hover .theme-picker-icon--disabled {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.theme-picker-item--selected {
    background-color: #ead8cc;
    position: relative;
}

.theme-picker-item--selected:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ead8cc;
    position: absolute;
    bottom: -10px;
}

.theme-picker-item--selected:hover {
    opacity: 1;
}

.theme-picker-icon {
    height: 60px;
    width: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    -webkit-transition: all ease 300ms;
    -o-transition: all ease 300ms;
    transition: all ease 300ms;
}

.theme-picker-icon--disabled {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(90%);
    opacity: .7;
}

// WEBPACK FOOTER //
// ./src/styles/ThemePickerItem.css