/* --- LAZY ELEMENTS --- */
.lazy-element {
    display: block;
    overflow: hidden;
    position: relative;
    background: #CCC;

    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid-column;
}
.lazy-element--rendered,
.lazy-element[rendered] {
    background: none;
}

.lazy-element img,
.lazy-element video {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.lazy-element img[src$='.svg'] {
    object-fit: contain;
}

/* --- LAZY ANIMATION --- */
.lazy-element {
    opacity: 0;
    transition: opacity .4s ease-in;
}

.lazy-element--rendered,
.lazy-element[rendered] {
    opacity: 1;
}



/* --- EMBEDDED CONTENT --- */
.embed {
    overflow: hidden;
    position: relative;
}

.embed__item,
.embed .lazy-element,
.embed iframe,
.embed embed,
.embed object,
.embed video {
    width: 100%;
    height: 100%;
    border: 0;
}

.ext-min-height {
    min-height: 600px;
}

/* --- ASPECT RATIOS --- */
.ratio-wide,
.ratio-normal,
.ratio-narrow,
.ratio-square,
.ratio-portrait,
.ratio-slim {
    display: block;
    position: relative;
}

.ratio-wide {
    /* 21 : 9 */
    aspect-ratio: 21/9;
}

.ratio-normal {
    /* 16 : 9 */
    aspect-ratio: 16/9;
}

.ratio-narrow {
    /* 4 : 3 */
    aspect-ratio: 4/3;
}

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

.ratio-portrait {
    /* 3 : 4 */
    aspect-ratio: 3/4;
}

.ratio-slim  {
    /* 3 : 1 */
    aspect-ratio: 3/1;
}

/* --- TEXT --- */
.text__content--columns__cols {
    column-count: 2;
    column-gap: 40px;
}

/* --- TABLES --- */

/* responsive table wrapper */
.table-wrap {
    position: relative;
    overflow-x: auto;
    min-height: 0.01%;
}

/* default table */
.table--default, .table--responsive {
    width: 100%;
    border-collapse: collapse;
}

.table--default th,
.table--responsive th,
.table--default td,
.table--responsive td {
    padding: 0.75rem;
}

.table--default th,
.table--responsive th,
.table--default td,
.table--responsive td {
    border-bottom: 1px solid #ededed;
}

.table--default thead th,
.table--responsive thead th {
    font-weight: 500;
    border-bottom: 2px solid #ededed;
    color: #7D7D7D;
}

.table--product__list,
.table--specs__list
{
    list-style: none;
    padding: 15px;
}
.table--product li,
.table--specs li
{
    border: 1px solid #7D7D7D;
    border-top-width: 0;
}
.table--product li:first-child,
.table--specs li:first-child
{
    border-top-width: 1px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.table--product li:last-child,
.table--specs li:last-child
{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.table--product__list-item,
.table--specs__list-item
{
    padding: 10px;
    overflow-wrap: break-word;
}
.border-right {
    border-right: 1px solid #7D7D7D;
}

/* --- TABS --- */

/* Tab navigation */
.tabs__nav {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    padding: 0;
    list-style: none;
}

.tabs__nav::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.tabs__nav-item {
    padding: 4px 15px 6px 15px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
}

.tabs__nav-item--active {
    position: relative;
    font-weight: bold;
    border-color: rgba(0, 0, 0, 0.15);
    background: #FFF;
}

/* Tab content */
.tabs__content {
    display: none;
}

.tabs__content--active {
    display: block;
}


/* --- LINES --- */
.line-before,
.line-after {
    position: relative;
}

.line-before::before,
.line-after::after {
    content: '';
    position: absolute;
    right: 20px;
    left: 20px;
    height: 1px;
    background: #CFC8BF;
}

.line-before::before {
    bottom: calc(100% - 1px);
}

.line-after::after {
    top: calc(100% - 1px);
}

.line-form {
    display: block;
    position: relative;
    padding-bottom: 20px;
}
.line-form:after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 0;
    height: 2px;
    width: 240px;
    max-width: 100%;
    background: #b8b8b8;
}

/* --- BACKGROUNDS --- */
.content__background-1 {
    padding: 40px 0;
    background-color: var(--hy-light-grey);
}


/* --- GRADIENTS --- */
.gradient-1 {
    position: relative;
}

.gradient-1::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}


/* --- BOXES --- */
.box-1,
.box-2,
.box-3,
.box-4 {
    overflow: hidden;
    border-radius: 4px;
    background: #FFF;
}

.box-1 {
    border-bottom: 4px solid #DD042B;
}

.box-2 {
    border: 1px solid #E6DED4;
    /*box-shadow: 0 4px 4px -2px rgba(207,200,191,0.5);*/
}

.box-3 {
    border: 1px solid rgba(89, 76, 58, 0.2);
    border-bottom: 4px solid #DD042B;
    box-shadow: 0 4px 4px -2px rgba(207, 200, 191, 0.5);
}

.box-4 {
    border: 2px solid #EDEDED;
    border-radius: 10px;
}

.box-5 {
    border: 2px solid #EDEDED;
    border-radius: 10px;
    background: #EDEDED;
}

/* --- CARDS --- */
.card {
    margin-top: 1px;
    padding: 20px 12px;
    border-bottom: 1px solid #CFC8BF;
    background: #FFF;
}

.card:first-child {
    margin-top: 0;
}


/* --- PLACEHOLDER --- */
.placeholder {
    position: relative;
}

.placeholder__preview,
.placeholder__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.placeholder__preview .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.placeholder__content,
.placeholder--active .placeholder__preview {
    display: none;
}

.placeholder--active .placeholder__content {
    display: block;
}


/* --- PILLS --- */
.pill {
    display: inline-block;
    padding: 6px 20px;
    border: 2px solid currentColor;
    border-radius: 1.5rem;
    font-weight: bold;
}

.pill + .pill {
    margin-left: 1rem;
}

.pill--small {
    padding: 3px 10px;
    font-size: 12px;
}

.pill--left {
    border-radius: 0 25vw 25vw 0;
    padding-right: 26px;
}

.pill--btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.125;
    min-height: 60px;
}

.teaser-content--pills .pill--small {
    margin: 0 1rem 0.5rem 0
}

.pill--white {
    border-color: #fff;
    background-color: #fff;
}


/* --- LISTS --- */
ol {
    padding-left: 0;
    list-style: none;
    counter-reset: list-level-1
}

ol li {
    position: relative;
    padding-left: 25px;
    margin-top: .75rem;
    text-align: left;
}

ol li::before {
    position: absolute;
    left: 0;
    counter-increment: list-level-1;
    content: counter(list-level-1);
    color: #E2001A;
    font-family: "Arial Black", arial, sans-serif;
}

ol ol {
    counter-reset: list-level-2
}

ol ol li {
    padding-left: calc(25px + 1em);
}

ol ol li::before {
    counter-increment: list-level-2;
    content: counter(list-level-1) '.' counter(list-level-2);
}

ol ol ol {
    counter-reset: list-level-3
}

ol ol ol li {
    padding-left: calc(25px + 2em);
}

ol ol ol li::before {
    counter-increment: list-level-3;
    content: counter(list-level-1) '.' counter(list-level-2) '.' counter(list-level-3);
}

.list-bullets,
.list-checkmarks,
.list-dots,
.list-pipes,
.list-boxes,
.list-no-style {
    padding-left: 0;
    list-style: none;
}

li > .list-bullets,
li > .list-checkmarks {
    margin-top: 1rem;
}

.list-bullets > li,
.list-checkmarks > li {
    position: relative;
    margin-top: .75rem;
    padding-left: 25px;
    text-align: left;
}

.list-bullets > li:first-child,
.list-checkmarks > li:first-child {
    margin-top: 0;
}

/* bullets */
.list-bullets > li::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background: #E2001A;
    border: unset;
    border-radius: 50%;
    left: 0;
    top: 7px;
}

.list-bullets .list-bullets > li::before {
    background: unset;
    border: #E2001A 2px solid;
}

.list-bullets .list-bullets .list-bullets > li::before {
    background: #E2001A;
    border: unset;
    width: 6px;
    height: 6px;
}

/* dots */
.list-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.list-dots > li {
    position: relative;
    padding: 2px 0 2px 20px;
    left: -20px;
}

.list-dots > li::before {
    content: '•';
    position: absolute;
    left: 10px;
    font-size: 1em;
    transform: translateX(-50%);
    color: #E2001A;
}

/* checkmarks */
.list-checkmarks > li::before {
    content: '\e806';
    position: absolute;
    top: 2px;
    left: 0;
    font-family: fontello, sans-serif;
    font-size: 0.8em;
}

/* pipes */
/* --- PIPES --- */
.list-pipes {
    display: inline-block;
    margin-top: 0;
}
.page__header .list-pipes {
    display: inline;
}

.list-pipes > li {
    display: inline-block;
    margin: 0;
}

.list-pipes > li + li::before {
    content: '|';
    margin: 0 0.5em;
}

/* boxes */
.list-boxes li {
    /* style same as box-4 */
    border: 2px solid #EDEDED;
    border-top-width: 0;
}
.list-boxes li:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-width: 2px;
}
.list-boxes li:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* no-style */
.list-no-style > li {
    margin-top: 0.75rem;
}



/* --- TOOLTIPS --- */
.tooltip {
    position: absolute;
    z-index: 9;
    display: block;
    width: 240px;
    padding: 20px;
    border-radius: 10px;
    color: #7D7D7D;
    background: #FFF;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
}
.tooltip--active {

}



/* --- MISC --- */
.img-mask img {
    border-radius: 50%;
}

.media-col {
    margin-right: -20px;
    margin-left: -20px;
}

blockquote {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.2rem;
    color: #7D7D7D;
    border-left: 8px solid #E2001A;
}

a.icon-angle-left,
a.icon-angle-right {
    display: inline-flex;
    align-items: center;
}

a.icon-angle-right {
    flex-direction: row-reverse;
}

a.icon-angle-left::before,
a.icon-angle-right::before {
    font-size: 1.35rem;
}

a.icon-angle-left::before {
    margin: 0 0.5em 0 0;
}

a.icon-angle-right::before {
    margin: 0 0 0 0.5em;
}

.hidden-for-mobile {
    display: none;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* --- PHONE (SM) --- */
@media ( min-width: 576px ) {

    /* --- MISC --- */
    .media-col {
        margin-right: 0;
        margin-left: 0;
    }

}


/* --- TABLET (MD) --- */
@media ( min-width: 768px ) {

    /* --- ASPECT RATIOS --- */
    .ratio-md-wide {
        /* 21 : 9 */
        aspect-ratio: 21/9;
    }

    .ratio-md-normal {
        /* 16 : 9 */
        aspect-ratio: 16/9;
    }

    .ratio-md-narrow {
        /* 4 : 3 */
        aspect-ratio: 4/3;
    }

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

    .ratio-md-portrait {
        /* 3 : 4 */
        aspect-ratio: 3/4;
    }

    .ratio-md-slim  {
        /* 3 : 1 */
        aspect-ratio: 3/1;
    }


    /* --- LINES --- */
    .line-sm::before,
    .line-sm::after {
        display: none;
    }
    .line-form:after {
        width: 90%;
    }


    /* --- DROPDOWN --- */
    .dropdown__toggle {
        cursor: pointer;
        transition: color .4s;
    }

    .dropdown__toggle:hover {
        color: #00C2D3;
    }

    .dropdown__toggle--icon[class*=icon-]:not(.icon-phone):not(.icon-globe):after {
        display: inline-block;
    }

    .dropdown__toggle--icon[class*=icon-]:not(.icon-phone):not(.icon-globe):before {
        display: none;
    }

    /* --- HIDDEN --- */
    .hidden-for-mobile {
        display: block;
    }
    .hidden-for-tablet {
        display: none;
    }

}


/* --- DESKTOP (LG) --- */
@media ( min-width: 992px ) {

    /* --- ASPECT RATIOS --- */
    .ratio-lg-wide {
        /* 21 : 9 */
        aspect-ratio: 21/9;
    }

    .ratio-lg-normal {
        /* 16 : 9 */
        aspect-ratio: 16/9;
    }

    .ratio-lg-narrow {
        /* 4 : 3 */
        aspect-ratio: 4/3;
    }

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

    .ratio-lg-portrait {
        /* 3 : 4 */
        aspect-ratio: 3/4;
    }

    .ratio-lg-slim  {
        /* 3 : 1 */
        aspect-ratio: 3/1;
    }


    /* --- TABLES --- */
    /* default table */
    .table--default thead th {
        font-size: 12px;
    }


    /* --- LINES --- */
    .line-md::before,
    .line-md::after {
        display: none;
    }

    /* --- BACKGROUNDS --- */
    .content__background-1 {
        padding: 60px 0;
    }

    /* --- CARDS --- */
    .card {
        padding: 24px 20px;
    }

    /* --- PILLS --- */
    .pill-lg--white {
        border-color: #fff;
    }

    /* --- HIDDEN --- */
    .hidden-for-desktop {
        display: none;
    }
    .hidden-for-tablet {
        display: block;
    }

}


/* --- DESKTOP (XL) --- */
@media ( min-width: 1200px ) {

    /* --- ASPECT RATIOS --- */
    .ratio-xl-wide {
        /* 21 : 9 */
        aspect-ratio: 21/9;
    }

    .ratio-xl-normal {
        /* 16 : 9 */
        aspect-ratio: 16/9;
    }

    .ratio-xl-narrow {
        /* 4 : 3 */
        aspect-ratio: 4/3;
    }

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

    .ratio-xl-portrait {
        /* 11 : 16 */
        aspect-ratio: 11/16;
    }

    .ratio-xl-slim  {
        /* 3 : 1 */
        aspect-ratio: 3/1;
    }

}


/* --- DESKTOP (XXL) --- */
@media ( min-width: 1440px ) {

    /* --- TABLES --- */
    /* default table */
    .table--default thead th {
        font-size: 15px;
    }


    /* --- LISTS --- */
    /* dots */
    .list-dots > li {
        left: -40px;
        padding-left: 40px;
    }

    .list-dots > li::before {
        left: 20px;
    }

}
