/*
 * Theme Name: Juniper Theme
 * Description: WP Stars
 * Author: WP Stars
*/

@font-face{
    font-family:icons;
    src: url(./assets/fonts/icons.woff2) format("woff2");
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    color: #000;
    /* Desktop/Body */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

section#content {
    flex-grow: 1;
}


.metals-and-accessories, 
.product-categories {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
}

.menu-spacer::before {
    display: flex;
    content: "";
    height: 26px;
    width: 1px;
    background-color: #999;
}

.gform_button.button {
    background: #000;
}

.gform_button.button:hover,
.gform_button.button:active,
.gform_button.button:focus{
    background: #444;
}

div.article-body div.wp-block-group__inner-container h3.wp-block-heading {
    font-weight: 700;
    font-size: 1.953rem;
    line-height: 2.4rem;
}

div.wp-block-ls-slider div.swiper-container div.swiper-wrapper div.wp-block-group div figure.wp-block-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.woocommerce-gzd-legal-checkbox-text a {
    text-decoration: underline;
}

.wp-block-button.is-style-big-primary-button a.wp-block-button__link,
.wp-block-button.is-style-big-secondary-button a.wp-block-button__link {
    border-radius: 4px;
    background-color: #000;
    border: solid 2px #000;
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
}

.wp-block-button.is-style-big-primary-button a.wp-block-button__link:hover,
.wp-block-button.is-style-big-secondary-button a.wp-block-button__link:hover {
    background-color: #4D4D4D;
    border: solid 2px #4D4D4D;
}

.wp-block-button.is-style-big-primary-button a.wp-block-button__link:focus,
.wp-block-button.is-style-big-secondary-button a.wp-block-button__link:focus {
    background-color: #000;
    border: solid 2px #fff;
    outline: 2px solid #000;
}

@media  screen and (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
}

/*  table component */
section.article-content figure.wp-block-table.dashboard-table {
    width: 100%;
    max-height: 800px;
    overflow: auto;
    position: relative;
    /* bbox-shadow: -1px 6px 20px inset rgba(0, 0, 0, 0.5);*/
    /* box-shadow: inset -10px 0px 10px -10px rgba(0, 0, 0, 0.5);*/
    /* box-shadow: inset 10px 0px 10px -10px rgba(0, 0, 0, 0.5);*/

    table {
        position: relative;

        thead {
            position: sticky;
            top: 0;
            width: 100%;
        }

        thead tr th {
            background-color: #FFEB00;
            border: solid 2px #fff;
            border-bottom: solid 4px #fff;

            padding: 1rem 1.125rem;

            color: var(--Primary-IWG-Black, #000);
            font-family: Roboto;
            font-size: 0.75rem;
            font-style: normal;
            font-weight: 700;
            line-height: 0.75rem; /* 100% */
            text-transform: uppercase;
        }

        tbody tr td {
            background-color: #F5F5F5;
            border: solid 2px #fff;
            color: #000;
            font-family: Roboto;
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 400;
            line-height: 1.375rem;
        }

        tbody tr:nth-child(even) td {
            background-color: #E5E5E5;
        }

        .table-cell-plus {
            font-size: 24px;
            text-align: center;
        }
    }
}