#paperweek-importer form {
    min-width: 900px;
    width: 900px;
    margin: 80px auto 0;
}

#paperweek-importer .form-content {
    background: #fff;
    border: solid #b9b9b9 1px;
}

#paperweek-importer .form-header {
    padding: 0 20px;
}

#paperweek-importer .form-body {
    padding: 20px;
    border-top: solid 1px #b9b9b9;
}

#paperweek-importer .form-footer {
    padding: 10px 20px;
    border-top: solid 1px #b9b9b9;
    /*text-align: right;*/
}

.input-group [type="file"] {
    width: 500px;
}

.paperweek-plugin-wrapper .float-right {
    float: right;
}

.paperweek-plugin-wrapper .float-left {
    float: left;
}

.paperweek-plugin-wrapper .clearfix::after {
    display: block;
    content: "";
    clear: both;
}

.paperweek-plugin-wrapper .cli {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    display: inline;
}
#paperweek-importer .form-body label {
    display: inline-block;
    margin-right: 40px;
}

#paperweek-importer .form-body .input-group {
    display: inline-flex;
    flex-direction: column;
}

#paperweek-importer .stepper {
    display: flex;
    margin: 0;
}

#paperweek-importer .stepper-step {
    flex: 1;
    text-align: center;
    background-color: #9d9d9d;
    margin: 0;
    color: #fff;
    padding: 5px;
    position: relative;
}

#paperweek-importer .stepper-step.active {
    background: #00537c;
}

#paperweek-importer .stepper-step.valid {
    background: #1496d7;
}

#paperweek-importer .stepper-step:not(:last-child)::after {
    content: "";
    border-style: solid;
    border-width: 14px 0 14px 18px;
    border-color: transparent transparent transparent #9d9d9d;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
}

#paperweek-importer .stepper-step:not(:first-child)::before {
    content: "";
    border-style: solid;
    border-width: 14px 0 14px 18px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 0;
    left: 2px;
    z-index: 1;
}

#paperweek-importer .stepper-step.valid:not(:last-child)::after {
    border-color: transparent transparent transparent #1496d7;
}

#paperweek-importer .stepper-step.active:not(:last-child)::after {
    border-color: transparent transparent transparent #00537c;
}

.form-header h2 {
    text-align: center;
}


#paperweek-importer table {
    margin-bottom: 40px;
}
#paperweek-importer table th {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#paperweek-importer .import-result-section + .import-result-section {
    margin-top: 25px;
}

/*------------------scrollable table body------------------*/

table.scrollable-tbody tbody,
table.scrollable-tbody thead,
table.scrollable-tbody tfoot
{ display: block; }

table.scrollable-tbody tr th {
    display: inline-block;
    font-weight: bold;
}

table.scrollable-tbody tbody {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

table.scrollable-tbody tbody td,
table.scrollable-tbody thead th,
table.scrollable-tbody tfoot th
{ min-width: 120px; }

/*-----------------/scrollable table body------------------*/







#paperweek-wc-customers-exporter form {
    max-width: 1000px;
    margin: 80px auto 0;
}

#paperweek-wc-customers-exporter .form-content {
    background: #fff;
    border: solid #b9b9b9 1px;
}

#paperweek-wc-customers-exporter .form-header {
    padding: 0 20px;
}

#paperweek-wc-customers-exporter .form-body {
    padding: 0 20px;
    border-top: solid 1px #b9b9b9;
}

#paperweek-wc-customers-exporter .form-footer {
    padding: 10px 20px;
    border-top: solid 1px #b9b9b9;
    text-align: right;
}

#paperweek-wc-customers-exporter .form-body .field-group-label {
    margin-right: 40px;
}

#paperweek-wc-customers-exporter .form-body small {
    margin-left: 20px;
}

#paperweek-wc-customers-exporter .form-body .field-group {
    display: block;
    margin: 30px 0;
}

#paperweek-wc-customers-exporter .form-body .input-group {
    white-space: nowrap;
}

#paperweek-wc-customers-exporter .form-body .input-group ~ .input-group {
    margin-left: 22px;
}

.pw-icon-calendar {
    position: absolute;
    right: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

.pw-icon-calendar::before {
    content: "\01F4C5";
    font-size: 20px;
    font-style: normal;   
}

.datetime-input {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.datetime-input {
  width: 180px;
}

.datetime-input input {
  width: 100%;
}

.txt-green {
    color: green;
}

.paperweek-icon-clipboard {
    position: relative;
    cursor: pointer;
}
.paperweek-icon-clipboard::before {
    content: "\01F4CB";
    font-style: normal;
    font-size: 20px;
}

.paperweek-icon-clipboard.copied::after {
    margin-bottom: 0;
    opacity: 1;
}
.paperweek-icon-clipboard::after {
    content: "Copied !";
    display:inline-block;
    white-space: nowrap;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    background-color: #0073aa;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0;
    margin-bottom: 40px;
    transition: all .4s ease-in-out;
}

#cron-task-clipboard-wrapper {
    margin-bottom: 50px;
}


.paperweek-pill {
    color: white;
    padding: 5px;
    border-radius: 6px;
    display: inline-block;
    min-width: 50px;
    text-align: center;
}

.paperweek-pill--warning {
    background: #ef8401;
}

.paperweek-pill--success {
    background: #0c901d;
}

.paperweek-pill--danger {
    background: #ae0707;
}

#paperweek-logger h1 {
    margin-bottom: 20px;
}

.paperweek-plugin-wrapper ul.disc-list {
    list-style: disc;
    padding-left: 20px;
}

.paperweek-btn-danger {
    color: #fff!important;
    background-color: #d21010!important;
    border-color: #b00b0b!important;
}

.paperweek-btn-danger:hover {
    background-color: #bc1212!important;
}




