.product-mapping-note {
    background: #FFF;
    border: 1px solid #e5e5e5;
    padding: 0 10px;
    border-left: 4px solid #00a0d2;
}
.import-export-area {
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}
.wp-list-table #thumbnail, .wp-list-table #ID {
    width: 70px;
}
.wp-list-table #connection {
    width: 200px;
}
.wp-list-table #connection_shipping {
    width: 200px;
}
tbody#the-list tr:hover, tbody#the-list tr:focus-within {
    background: #e9f8ff;
}
.download-btn {
    background: none;
    border: none;
    font-size: 13px;
    /*font-style: italic;*/
    margin: 2px 0 5px;
    cursor: pointer;
    padding: 0;
    color: #0073aa;
}
.loader {
    border: 10px solid #FFFFFF;
    border-top: 10px solid #0073aa;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}

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