.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #444;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}
.no-padding {
    padding: 0 !important;
}
.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.img-responsive {
    width: 100%;
}
.main {
    padding: 20px 0;
}
.bookItem {
    width: 190px;
    height: 310px;
    margin: auto auto 20px auto;
    font-size: 1.2em;
    -webkit-box-shadow: 0 4px 21px -9px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 4px 21px -9px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 21px -9px rgba(0, 0, 0, 0.6);
}
.bookItem a {
    background-color: #f5f5f4;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 5px;
    border: 1px solid #dddddd;
    color: #444444;
    text-decoration: none;
    transition: all 0.2s linear;
    position: relative;
}
.bookItem a:hover {
    color: #333333;
    -webkit-box-shadow: 0 4px 21px -7px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 4px 21px -7px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 21px -7px rgba(0, 0, 0, 0.6);
}
.bookItem img {
    height: 90%;
    margin-bottom: 5px;
    border-radius: 2px;
}
.bookItem a .status {
    position: absolute;
    background-color: rgba(251, 47, 41, 1);
    color: #ffffff;
    height: 22px;
    opacity: 0.9;
    font-size: 0.9em;
    font-weight: bold;
    padding: 0 5px;
    top: 10%;
    right: 5px;
}
.bookItem a .status::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 11px solid rgba(251, 47, 41, 1);
    border-left: 15px solid transparent;
    border-top: 11px solid rgba(251, 47, 41, 1);
}
.bookItem a:hover .status {
    opacity: 1;
}
@media (max-width: 767px) {
    .bookItem {
        width: 110px;
        height: 173px;
        font-size: 1em;
    }
    .bookItem img {
        margin-bottom: 0;
    }
    .bookItem a .status {
        height: 18px;
        font-size: 0.8em;
        padding: 0 3px;
    }
    .bookItem a .status::before {
        left: -7px;
        border-bottom: 9px solid rgba(251, 47, 41, 1);
        border-left: 8px solid transparent;
        border-top: 9px solid rgba(251, 47, 41, 1);
    }
}
.bookItem span {
    display: block;
}