﻿
.copy-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: rgba(255,255,255, .75);
}
.copy-overlay__image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.copy-overlay__progress-list {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.copy-overlay__progress-item {
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 4px;
    border: 1px solid black;
    color: white;
    position: relative;
}

.copy-overlay__progress-item--failed {
    color: red;
    background-color: white;
}

.copy-overlay__progress-item--completed {
    color: white;
    background-color: rgba(63, 127, 191, .25);
}

.copy-overlay__progress-message {
    position: relative;
    z-index: 2
}

.copy-overlay__progress-bar {
    width: 0%;
    height: 16px;
    background-color: rgba(63, 127, 191, .75);
    transition: width .15s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.c-card .c-card__action--remove,
.c-card .c-card__action--save {
    display: none;
}
.c-card.in-briefcase .c-card__action--remove {
    display: block;
}

.c-card.not-in-briefcase .c-card__action--save {
    display: block;
}