/**
 * Frontend style
 */

/**
 * Button
 */

.woocommerce table.variations .label .cpsc-chart-btn {
	float: right;
}

.cpsc-chart-btn {
    display: inline-flex;
    align-items: center;
	color: inherit;
    font-size: 0.875rem;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0;
    margin: 0;
    border: 0;
    border-bottom: 1px solid;
    background: transparent;
	text-decoration: none;
}

.cpsc-chart-btn:hover {
    border-bottom: none;
}

.cpsc-chart-btn::before {
    content: "";
    display: inline-block;
    background-color: currentcolor;
    width: 27px;
    height: 11px;
    -webkit-mask-image: url('../svg/ruler.svg');
    mask-image: url('../svg/ruler.svg');
    -webkit-mask-position: left center;
    mask-position: left center;
    -webkit-mask-size: 27px 11px;
    mask-size: 27px 11px;
    margin-right: 0.35rem;
}

/**
 * Table
 */

#cpsc-product-table-caption {
	margin-top: 0;
}

.cpsc-product-table-wrapper {
	position: relative;
	margin-bottom: 1rem;
}

.cpsc-product-table-overflow {
	position: relative;
	overflow-x: auto;
    overflow-y: visible;
	width: 100%;
	border: 1px solid var(--wp--custom--border-color);
	border-top: 0;
	background-color: #f0f0f0;
}

.cpsc-has-overflow .cpsc-product-table-overlay {
	opacity: 1;
}

.cpsc-product-table-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(to left,rgba(17,17,17,0.12) 0%,rgba(255,255,255,0) 100%);
    opacity: 0;
    width: 20px;
    z-index: 1;
    pointer-events: none;
}

.cpsc-product-table {
	position: relative;
	border-collapse: collapse;
	text-align: center;
	width: 100%;
}

.cpsc-product-table tr:nth-child(odd) th,
.cpsc-product-table tr:nth-child(odd) td {
	background-color: #f0f0f0;
}

.cpsc-product-table tr:nth-child(even) th,
.cpsc-product-table tr:nth-child(even) td {
	background-color: #FFF;
}

.cpsc-product-table th {
	font-weight: bold;
}

.cpsc-product-table th,
.cpsc-product-table td {
	position: relative;
	border: 1px solid var(--wp--preset--color--base-2);
    padding: 0.5em;
	vertical-align: middle;
	font-size: var(--wp--preset--font-size--small);
	text-align: center;
	background-color: #FFF;
}

.cpsc-product-table--one-heading-vert th,
.cpsc-product-table--two-headings th[scope="row"],
.cpsc-product-table--two-headings tr:first-child th[scope="col"]:first-child {
	position: sticky;
	left: 0;
	z-index: 1;
}

/**
 * Popup
 */

.cpsc-popup {
    background: #FFF;
    border: 0;
    border-radius: 5px;
    padding: 1rem;
    width: calc(95% - 2rem);
    max-width: calc(var(--wp--style--global--wide-size) - 2rem);

    &:not([open]) {
        pointer-events: none;
        opacity: 0;
    }
}

.cpsc-popup:-internal-dialog-in-top-layer::backdrop {
    background: rgba(0,0,0,0.7)
}

.cpsc-popup h2 {
    margin-top : 0;
}

.cpsc-popup__close-btn {
    position: relative;
    z-index: 999;
    padding: 0.5em;
    border: 0;
    border-radius: 4px;
    background: none;
    color: var(--wp--preset--color--contrast-3);
    font-size: 1rem;
    float: right;
}
