/* new css */
html {
    font-family: "Montserrat", Georgia, Helvetica, Arial, sans-serif;
    font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", Georgia, Helvetica, Arial, sans-serif;
    font-weight: 700
}
.font-heading {
    font-family: "Montserrat", Georgia, Helvetica, Arial, sans-serif;
}
.prose-headings\:font-heading :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"] *))) {
    font-family: "Montserrat", Georgia, Helvetica, Arial, sans-serif;
}
.prose :where(h2):not(:where([class~="not-prose"] *)) {
    margin-top: 1em !important;
}
.hero-product__inner,
.hero-product__figure {
    min-height: 400px !important;
}
.locations-accordion__content p {
    margin-bottom: 10px;
}
.freeform-row {
    width: 100%;
    align-items: center;
}
label.freeform-label.group-label {
    margin-bottom: 20px !important;
}
div[data-field-type="number"] {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
}
div[data-field-type="number"] label.freeform-label {
    margin: auto 0;
}
div[data-field-type="number"] input {
    width: auto;
    padding: 5px;
    margin-right: 20px;
    float: none;
    max-width: 50px;
}
.my-0 {
    margin-bottom: 0;
    margin-top: 0;
}
.gg-table td {
    vertical-align: middle;
}
.gg-table img.logo {
    height: 50px;
}
.gg-table img.download-icon {
    display: block;
    margin: auto;
    padding: 0;
}

/* GG Table */
.gg-table{}
.gg-table th{text-transform:uppercase; font-size:12px;}
.gg-table tr{border-bottom:1px solid #767676;}
.gg-table tr td{width:20%;}
.gg-table tr td:first-child{width:40%;}

@media only screen and (max-width: 767px) {
    .gg-table{display:block; position:relative; height:100vh;}
    .gg-table thead{position:absolute; top:0; width:100%; background:#fff; z-index:9;}
    .gg-table tbody{height:60vh; position:absolute; top:140px; overflow:auto;}
    .gg-table tr{display:block; float:left; width:100%;}
    .gg-table tr th:first-child{display:none;}
    .gg-table tr th, .gg-table tr td{display:block; float:left; width:33%; padding-bottom:2px; text-align:center;}
    .gg-table tr td:first-child{width:100%;}
    .gg-table tr td img{padding-bottom:10px;}
    .gg-table tr td:first-child img{padding-bottom:0;}
    .gg-table img.logo {
        height: 40px;
        margin-bottom: 10px;
    }
    .gg-table img.download-icon {
        margin-bottom: 10px;
    }
}
.cols-heading {
    max-width: 100%;
    background: rgb(35,31, 34);
    padding: 8px 10px;
    color: white;
}
.prose :where(h2):not(:where([class~="not-prose"] *)),
.prose :where(h3):not(:where([class~="not-prose"] *)),
.prose :where(h4):not(:where([class~="not-prose"] *)){
    line-height: 1.3;
}
.tab-col-2 figure {
    width: 100%;
}
/* flip cards */
.cards-wrap {
    gap: 40px;
}
.card-icon-wrap {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.card-icon {
    width: 100%;
    height: auto;
    /* box-shadow: 0 0 10px #000; */
}


.flip-card {
    background-color: transparent;
    width: 100%;
    aspect-ratio: 5 / 4;
    height: auto;
    perspective: 1000px;
}


.flip-card-inner {
    position: relative;
    aspect-ratio: 5 / 4;

    width: 100%;
    height: auto;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .3);
    aspect-ratio: 5 / 4;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background: transparent;
}

.flip-card-back {
    padding: 30px;
    height: 100%;
    background: #C9343C;
    transform: rotateY(180deg);
}
.flip-card-back p {
    color: #fff;
    font-size: clamp(1rem, 1.1875rem, 1.1875rem);
    text-align: center;
    line-height: 1.3;
}

.grid {
    display: grid;
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .center {
        grid-area: 2 / 2 / 3 / 3;
    }
}
.footnote {
    font-size: 14px;
    color: rgb(156 163 175);
}
@media only screen and (min-width: 1024px) and (max-width: 1199px)  {
    .flip-card-back p {
        font-size: .85rem;
    }
}
// @media (resolution: 120dpi) {
// 	.flip-card-back p {
// 		font-size: 1rem;
// 	}
// }
// move content module up on homepage
@media (min-width: 1024px) {
    div.hero-homepage + div.content-module {
        margin-top: 24px !important;
    }
}
