/* Netfontes - acao discreta para copiar imagem. */
.copy-image-actions {
    margin: 3px 0 10px;
}

.copy-image-button {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #6f7b80;
    opacity: .62;
    cursor: pointer;
    vertical-align: middle;
}

.copy-image-button::before,
.copy-image-button::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 12px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
    box-sizing: border-box;
}

.copy-image-button::before {
    top: 6px;
    left: 7px;
}

.copy-image-button::after {
    top: 9px;
    left: 10px;
    background: #fff;
}

.copy-image-button:hover,
.copy-image-button:focus-visible {
    background: rgba(0, 88, 116, .06);
    color: #005874;
    opacity: 1;
    text-decoration: none;
}

.copy-image-button:focus-visible {
    outline: 1px solid #005874;
    outline-offset: 1px;
}

.copy-image-button:disabled {
    cursor: default;
    opacity: .45;
}

.copy-image-button[data-copy-state="success"] {
    color: #2f7148;
    opacity: 1;
}

.copy-image-button[data-copy-state="error"] {
    color: #9a4c4c;
    opacity: 1;
}

/* Em /view/ e /create-logo/ o botao passa a flutuar sobre o preview. */
.copy-image-overlay {
    position: relative;
}

.copy-image-button-overlay {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 5;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: #4f5b61;
    opacity: .78;
    box-shadow: none;
    transition: background-color .14s ease, box-shadow .14s ease, color .14s ease, opacity .14s ease;
}

.copy-image-button-overlay::before {
    top: 7px;
    left: 8px;
}

.copy-image-button-overlay::after {
    top: 10px;
    left: 11px;
    background: transparent;
}

.copy-image-button-overlay:hover,
.copy-image-button-overlay:focus-visible {
    border-radius: 999px;
    background: rgba(255, 255, 255, .97);
    color: #263238;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    outline: none;
}

.copy-image-button-overlay:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 88, 116, .18), 0 2px 10px rgba(0, 0, 0, .18);
}

.page-create-logo .create-logo-copy-overlay {
    margin: 18px 0 26px;
}

.page-create-logo .create-logo-copy-overlay #create-logo-preview {
    margin: 0;
}

.page-create-logo .copy-image-button-overlay {
    top: 20px;
    left: 20px;
}
