/* Sitewide Variables */
:root {
    /* Generic */
    --radius-tight: .5rem;
    --radius-medium: 1rem;
    --radius-wide: 2rem;

    --duration-slow: 600ms;
    --duration-normal: 200ms;

    --spacing-large: 3rem;

    --component-max-h: 600px;
    --component-max-h-mobile: 200px;

    --max-width: 1300px;
    --max-width-lg: 1700px;
    --global-padding-mobile: 1.5rem;
    --global-padding-desktop: 2.5rem;

    --max-width: 1300px;
    --max-width-lg: 1700px;
    --global-padding-mobile: 1.5rem;
    --global-padding-desktop: 2.5rem;

    /* Font & Text */

    --text-size-xsmall: 11px;
    --text-size-small: 14px;
    --text-size-body: 16px;
    --text-size-header-small: 18px;
    --text-size-header-medium: 24px;
    --text-size-header-large: 48px;
    --text-size-header-xlarge: 52px;

    /* Specific Uses */
    --button-border-radius: var(--radius-wide);
    --button-text-size: var(--text-size-small);

    --component-vertical-padding: var(--spacing-large);

    /* 
    --component-header-size-small: var(--text-size-header-small);
    --component-header-size-medium: var(--text-size-header-medium);
    --component-header-size-large: var(--text-size-header-large); 
    */

}

html {
    scroll-behavior: smooth !important;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.bg-pos-h-center {
    background-position-x: 50%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
}

.unselectable-element {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari, Chrome */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by all modern browsers */
}

h1,
h2,
h3,
h4 {
    font-weight: 400;
}

h1,
h2 {
    font-family: var(--site-serif-font) !important;
    font-size: 4rem;
    letter-spacing: -.02em;
    font-weight: 400;
    font-style: normal;
}

/*            */
/* FONTS & SIZES */
/*            */

.font-site-serif {
    font-family: var(--site-serif-font) !important;
}

.font-site-sans {
    font-family: var(--site-sans-font) !important;
}

.text-size-xsmall {
    font-size: var(--text-size-xsmall);
    line-height: normal;
}

.text-size-small {
    font-size: var(--text-size-small);
    line-height: normal;
}

.text-size-body {
    font-size: var(--text-size-body);
    line-height: normal;
}

.text-size-header-small {
    font-size: var(--text-size-header-small);
    line-height: normal;
}

.text-size-header-medium {
    font-size: var(--text-size-header-medium);
    line-height: normal;
}

.text-size-header-large {
    font-size: var(--text-size-header-large);
    line-height: normal;
}

.text-size-header-xlarge {
    font-size: var(--text-size-header-xlarge);
    line-height: normal;
}

/*            */
/* COMPONENTS */
/*            */

.ep_button {
    /* background-color: rgba(0, 0, 0, 0); */
    padding: .6rem 1rem;
    border: 1px solid;
    /* display: inline-block; */
    text-align: center;
    border-radius: var(--button-border-radius);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .8rem;
    color: #fff;
    transition-duration: var(--duration-normal);
    cursor: pointer;
}

/*        */
/* TABLES */
/*        */
.table-auto {
    border-collapse: collapse;
}

.table-auto thead td {
    background-color: #666;
    color: #fff;
    font-weight: bold;
    border: 1px solid #000;
    text-align: center;
    padding: .5em;
}

.table-auto tbody td {
    font-weight: normal;
    border: 1px solid;
    padding: .5em;
}

.table-auto tbody tr:nth-child(even) {
    background-color: #eee;
}

.table-auto tbody tr:nth-child(odd) {
    background-color: #ddd;
}

/*                  */
/* CAROUSEL OPTIONS */
/*                  */
/* .reviewTiles {
    --f-carousel-gap: 10px;
    --f-carousel-slide-width: 33%;
    --f-carousel-slide-padding: 10px;
} */

.f-progressbar {
    display: none !important
}

.dynamic_slider .f-carousel__slide {
    padding: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

/* OVERRIDE  DEFAULTS */
* {
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    line-height: 1.1;
}

p {
    margin: .5em 0 !important;
}

/* ANIMATIONS */

@keyframes HeroScaleUp {
    0% {
        transform: scale(1);
        opacity: 0
    }

    to {
        transform: scale(1.1);
        opacity: 1
    }
}