.crm-attachment {
    margin: 0 0 2.5rem;
    font-family: Montserrat, sans-serif;
}

.crm-attachment-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 1rem 1.25rem;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-left: 4px solid #56bbd9;
}

.crm-attachment-name {
    flex: 1 1 auto;
    font-weight: 600;
    color: #2c2c2c;
    word-break: break-all;
}

.crm-attachment-view,
.crm-attachment-download {
    display: inline-block;
    border-radius: 0;
    line-height: 36px;
    padding: 0 20px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.crm-attachment-view {
    background: none;
    border: 1px solid #414141;
    line-height: 34px;
    color: #414141;
}

.crm-attachment-view:hover,
.crm-attachment-view:focus {
    background: #414141;
    color: #fff;
    text-decoration: none;
}

.crm-attachment-download {
    background: #414141;
    border: 1px solid #414141;
    color: #fff;
}

.crm-attachment-download:hover,
.crm-attachment-download:focus {
    background: #2ea9ce;
    border-color: #2ea9ce;
    color: #fff;
    text-decoration: none;
}

.crm-attachment-viewer {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    border: 1px solid #ececec;
}

.crm-attachment-fallback {
    margin: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #414141;
}

.crm-attachment-fallback a {
    color: #0076dc;
}

@media (max-width: 575px) {
    .crm-attachment-bar {
        gap: .75rem;
    }

    .crm-attachment-name {
        flex: 1 1 100%;
    }

    .crm-attachment-view,
    .crm-attachment-download {
        flex: 1 1 auto;
        text-align: center;
    }

    .crm-attachment-viewer {
        height: 600px;
    }
}
