/* --------------------
 Output
-------------------- */
.output {
    margin: 0 0 100px;
    padding: 60px 0 0;
}

@media (min-width: 768px) {
    .output {
        padding: 70px 0 0;
    }
}

.output-container {
    margin: 0 auto;
    max-width: 1020px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .output-container {
        padding: 0 30px;
    }
}

.output__content {
    margin: 0 0 30px;
}

@media (min-width: 768px) {
    .output__content {
        margin: 0 0 50px;
    }
}

.output__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .output__content p {
        font-size: var(--fs16);
    }
}

.output__item-wrapper {
    margin: 0 0 60px;
}

.output__item {
    margin: 0 0 60px;
}

.output__item:last-child {
    margin-bottom: 0;
}

.output__item__title {
    font-size: var(--fs16);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.4;
    margin: 0 0 12px;
    padding: 0 0 0 1.25em;
    text-indent: -1.25em;
}

@media (min-width: 768px) {
    .output__item__title {
        font-size: var(--fs18);
    }
}

.output__item__table-responsive {
    overflow-x: auto;
    white-space: nowrap;
}

.output__item__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.output__item__table > thead > tr > th, .output__item__table > thead > tr > td {
    background-color: #e6ebf1;
    display: none;
    font-size: var(--fs12);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    padding: 6px 12px;
    text-align: left;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .output__item__table > thead > tr > th, .output__item__table > thead > tr > td {
        font-size: var(--fs16);
    }
}

@media (min-width: 992px) {
    .output__item__table > thead > tr > th, .output__item__table > thead > tr > td {
        font-size: var(--fs18);
    }
}

.output__item__table > thead > tr > th._output, .output__item__table > thead > tr > td._output {
    background-color: var(--color-theme);
    color: #fff;
    min-width: 64px;
    padding-left: 6px;
    padding-right: 6px;
    text-align: center;
    width: 64px;
}

.output__item__table > thead > tr > th._delete, .output__item__table > thead > tr > td._delete {
    background-color: #859dbb;
    border-right: 1px solid rgba(var(--color-theme-rgb), 0.4);
    color: #fff;
    min-width: 64px;
    padding-left: 6px;
    padding-right: 6px;
    text-align: center;
    width: 64px;
}

.output__item__table > tbody > tr > th, .output__item__table > tbody > tr > td {
    border-bottom: 1px solid rgba(var(--color-theme-rgb), 0.4);
    display: none;
    font-size: var(--fs12);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    padding: 8px 12px;
    text-align: left;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .output__item__table > tbody > tr > th, .output__item__table > tbody > tr > td {
        font-size: var(--fs16);
    }
}

@media (min-width: 992px) {
    .output__item__table > tbody > tr > th, .output__item__table > tbody > tr > td {
        font-size: var(--fs18);
    }
}

.output__item__table > tbody > tr > th._output, .output__item__table > tbody > tr > td._output {
    border-left: 1px dashed rgba(var(--color-theme-rgb), 0.4);
    border-right: 1px dashed rgba(var(--color-theme-rgb), 0.4);
    padding-left: 6px;
    padding-right: 6px;
    text-align: center;
}

.output__item__table > tbody > tr > th._output label, .output__item__table > tbody > tr > td._output label {
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    display: block;
    font-size: var(--fs14);
    font-weight: 300;
    height: 20px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 20px;
}

@media (min-width: 1240px) {
    .output__item__table > tbody > tr > th._output label, .output__item__table > tbody > tr > td._output label {
        font-size: var(--fs16);
    }
}

.output__item__table > tbody > tr > th._output label input, .output__item__table > tbody > tr > td._output label input {
    cursor: pointer;
    opacity: 0 !important;
    padding: 0;
    position: absolute;
}

.output__item__table > tbody > tr > th._output label:before, .output__item__table > tbody > tr > td._output label:before {
    background-color: #fff;
    border: 1px solid #909090;
    border-radius: 2px;
    content: "";
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 20px;
}

.output__item__table > tbody > tr > th._output label:after, .output__item__table > tbody > tr > td._output label:after {
    border-bottom: 2px solid var(--color-theme);
    border-left: 2px solid var(--color-theme);
    bottom: auto;
    content: "";
    display: block;
    height: 8px;
    left: 3px;
    margin: auto;
    opacity: 0;
    position: absolute;
    top: 4px;
    transform: rotate(-45deg);
    width: 13px;
}

.output__item__table > tbody > tr > th._output label:has(input:checked):after, .output__item__table > tbody > tr > td._output label:has(input:checked):after {
    opacity: 1;
}

.output__item__table > tbody > tr > th._output label:has(input:disabled):before, .output__item__table > tbody > tr > td._output label:has(input:disabled):before {
    background: rgb(235, 235, 228);
}

.output__item__table > tbody > tr > th._delete, .output__item__table > tbody > tr > td._delete {
    border-right: 1px solid rgba(var(--color-theme-rgb), 0.4);
    padding-left: 6px;
    padding-right: 6px;
    text-align: center;
}

.output__item__table > tbody > tr > th._delete a, .output__item__table > tbody > tr > th._delete button, .output__item__table > tbody > tr > td._delete a, .output__item__table > tbody > tr > td._delete button {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    background-color: #909090;
    border: 1px solid #909090;
    border-radius: 3px;
    color: #fff;
    display: block;
    font-size: var(--fs12);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .output__item__table > tbody > tr > th._delete a, .output__item__table > tbody > tr > th._delete button, .output__item__table > tbody > tr > td._delete a, .output__item__table > tbody > tr > td._delete button {
        font-size: var(--fs14);
    }
}

.output__item__table > tbody > tr > th._delete a:focus, .output__item__table > tbody > tr > th._delete button:focus, .output__item__table > tbody > tr > td._delete a:focus, .output__item__table > tbody > tr > td._delete button:focus {
    background-color: #fff;
    color: #909090;
}

@media (hover: hover) and (pointer: fine) {
    .output__item__table > tbody > tr > th._delete a:hover, .output__item__table > tbody > tr > th._delete button:hover, .output__item__table > tbody > tr > td._delete a:hover, .output__item__table > tbody > tr > td._delete button:hover {
        background-color: #fff;
        color: #909090;
    }
}

.output__item__table > tbody > tr:first-child > th, .output__item__table > tbody > tr:first-child > td {
    border-top: 1px solid rgba(var(--color-theme-rgb), 0.4);
}

.output__action .com-button {
    margin: 0 auto;
}

@media (min-width: 992px) {
    .output__action .com-button {
        font-size: var(--fs18);
        max-width: 400px;
        width: 100%;
    }
}