.flyerCover {
    width: 190px;
    height: 266px;
    margin: 2em;
    background-color: #CCC;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
}

.flyerCover__name {
    height: 45px;
    width: 100%;
    line-height: 45px;
    border-bottom: 1px solid #CCC;
    display: block;
    background-color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.7rem;
}

.flyerCover__image {
    width: 100%;
    height: 185px;
    display: block;
    object-position: top;
    object-fit: cover;
}

.flyerCover__actions {
    width: 100%;
    height: 36px;
    display: block;
}

.flyerCover__action {
    width: 33.33%;
    height: 36px;
    display: inline-block;
    padding: 3px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: top;
    line-height: 30px;
    color: white;
    cursor: pointer;
    border-top: 1px solid #AAA;
}

.flyers a:hover {
    text-decoration: none;
    color: white;
}

.send {
    background-color: #52a552;
}

.send .fa-paper-plane:hover {
    cursor: pointer;
}

.download {
    background-color: red;
}

.edit, .select {
    background-color: #2c80b8;
}

.flyerCover__action:not(:last-child) {
    border-right: 2px solid white;
}

@media (max-width: 991px) {
    .flyerCover__action {
        font-size: 1.9rem;
    }

    .flyerCover {
        margin: 1em;
        width: 150px;
        height: 210px;
    }

    .flyerCover__name {
        height: 29px;
        line-height: 28px;
        font-size: 1.3rem;
    }

    .flyerCover__image {
        height: 145px;
    }
}
