﻿.content {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.content_item__book {
    position: relative;
    display: inline-block;
    width: 30%;
    max-width: 10em;
    margin: 0.5em 1% 5px 1%;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    overflow: hidden;
}

.content_item__book_bought,
.content_item__book_processing {
    position: absolute;
    top: 0;
    right: 0.25em;
    display: inline-block;
    padding: 0.5em;
    width: auto;
    color: white;
}

.content_item__book_bought {
    background-color: #00ACEC;
}

.content_item__book_processing {
    background-color: #F7AB59;
}

.content_item__book_image {
    display: block;
    width: 95%;
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.content_item__book_title {
    display: inline-block;
    width: 100%;
    max-height: 4em;
    overflow: hidden;
    text-align: center;
    font-size: 0.8em;
    font-weight: 100;
    line-height: 1;
    margin-top: 5px;
    color: black;
}

@media screen and (max-width: 450px) {
    .content_item__book_bought,
    .content_item__book_processing {
        font-size: 12px;
    }
}