.delete-cover {
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .delete-cover .fa.fa-play-circle-o {
        position: absolute;
    }

    .delete-hover {
        position: absolute;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        background-color: rgba(0,0,0,0.5);
        align-items: center;
        justify-content: center;
    }

    .delete-cover:hover .delete-hover {
        display: flex;
    }

.compare-added {
    color: #1c7430;
    font-weight: bold;
}

.compare-removed {
    color: #dc3545;
    font-weight: bold;
    text-decoration: line-through;
}

.auth-clients {
    margin: 1.5em 0 1em 0;
    border-top: 1px #dadada solid;
    padding: 1.5em 0 0 0;
}

.issue-info svg.peity {
    float: left;
    margin: 0 10px 0 0;
}

#image-to-crop-cover {
    /*display: flex;
    justify-content: space-between;*/
}

    #image-to-crop-cover-inner {
        max-height: 400px;
        height: 400px;
        width: 100%;
        object-fit: contain;
    }

    #image-to-crop {
        display: block;
        max-width: 100%;
        max-height: 100%;
    }

    .image-to-crop-actions {
        margin-top: 30px;
        max-width: 100%;
    }

select.form-control:not([size]):not([multiple]) {
    height: calc(1.5em + .75rem + 2px);
}

.video-preview {
    position: relative;
}

    .video-preview .fa {
        position: absolute;
        left: -39px;
        top: 5px;
    }
    table.performance-table .video-preview .fa {
        left: 23px;
        top: 21px;
    }


.product-box-original {
    padding: 0;
    border: 1px solid #e7eaec;
    height: 300px;
}

.product-imitation {
    padding: 30px 25px 10px 25px;
    background-color: #ffffff;
}

    .product-imitation img {
        height: 120px;
    }

.product-name {
    font-size: 14px;
}

table.performance-table {
    margin: 0 0 50px 0;
    table-layout: fixed;
}

    table.performance-table thead tr th {
        padding: 0 20px;
        border: 0;
    }
    table.performance-table thead tr th:first-child {
        padding: 0 15px;
    }

    table.performance-table thead tr:first-child th {
        font-weight: 300;
        font-size: 21px;
    }

    table.performance-table thead tr:not(:first-child) th {
        padding-top: 8px;
        padding-bottom: 8px;
        font-weight: 400;
        font-size: 16px;
    }

        table.performance-table thead tr:not(:first-child) th span {
            padding: 10px 0;

            font-size: 12px;
            line-height: 1;
            font-weight: 400;

            color: #acacac;

            display: block;
        }

    table.performance-table tbody tr td:first-child {
        padding: 15px 15px;
        width: 300px;
    }

        table.performance-table tbody tr td:first-child > div {
            gap: 10px;
            display: flex;
        }

            table.performance-table tbody tr td:first-child img {
                width: 67px;
            }

    table.performance-table tbody tr td:not(:first-child) {
        padding: 15px 20px;
        width: auto;
    }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.generate-text {

}

    .generate-text svg {
        margin: -2px 5px 0 0;
        width: 14px;
        height: 14px;
    }
    .generate-text.processing svg {
        width: 18px;
        height: 18px;

        /* add spinning animation */
        animation: spin 3s linear infinite;
    }

        .generate-text svg path {
            fill: #21b9bb;

            transition: all 0.4s ease-in-out;
        }
        .generate-text:hover svg path {
            fill: #ffffff;
        }