@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

:root {
    --stet-color: rgb(142, 221, 101);
    --stet-black: #000000;
    --stet-grey-dark: #666666;
    --stet-grey: #c4c4c4;
    --stet-grey-light: #e5e5e5;
    --stet-grey-lighter: #f8f8f8;
    --stet-white: #FFFFFF;
    --stet-white-darker: #FCFCFC;
    --stet-font-base: Roboto, sans-serif;
    --stet-font-titles: Oswald, sans-serif;
}


.row > * {
    padding-right: 8px;
    padding-left: 8px;
}


.font-base {
    font-family: var(--stet-font-base);
}

.font-titles {
    font-family: var(--stet-font-titles);
}

.stet-color {
    color: var(--stet-color);
}


.bg-stet-color {
    background: var(--stet-color);
    color: var(--stet-white);
}

body {
    padding-top: 127px;
}

body * {
    font-family: var(--stet-font-base)
}

a {
    color: var(--stet-color);
    text-decoration: none;
}

a:hover {
    color: var(--stet-color);
    text-decoration: none;
}

#category a h3 {
    color: var(--stet-grey-dark);
}

#category a h3:hover {
    color: var(--stet-color);
}



main {
    padding-bottom: 3rem;
}

h1, h2, h3, h4 {
    font-family: var(--stet-font-titles);
}

img, picture {
    max-width: 100%;
    height: auto;
}

article {
    padding-bottom: 3rem;
}



article h2 {
    font-family: var(--stet-font-base);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

article h2.accordion-header {
    margin: 0;
}

.page-header {
    margin: 3rem 0 2rem 0;
}

.form-control {
    border-radius: 0 !important;
    color: var(--stet-black) !important;
}

.form-control:focus {
    box-shadow: none !important;
    color: var(--stet-black) !important;
}

input[type="text"].calendar,
input[type="text"].form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--stet-grey-dark);
    padding: .5rem 0;
}

input[type="text"].form-control.error {
    border-bottom: 1px solid var(--stet-color);
}

input.form-control:disabled, input.form-control[readonly] {
    color: var(--stet-grey-dark);
    background: none;
}

textarea.form-control, textarea.form-control:focus {
    width: 100%;
    border: 1px solid var(--stet-grey-dark);
    height: 90px
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"/></svg>') 100% 50% no-repeat #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--stet-grey-dark);
    margin-bottom: 1rem;
}


.form-control::placeholder {
    color: var(--stet-grey-dark);
    opacity: .6;
}

.form-control:focus::placeholder {
    color: var(--stet-grey-dark);
    opacity: .3;
}

.form-control.error::placeholder {
    color: var(--stet-color);
}

label.error {
    display: block;
    color: var(--stet-color);
    font-size: 90%;
}

.form-row {
    margin-bottom: 2rem;
}


.h3, h3 {
    font-size: 1.5rem;
}

.h4, h4 {
    font-size: 1.25rem;
}

.btn, .swal2-styled {
    text-transform: uppercase;
    border-radius: 0 !important;
    padding: .25rem 2rem !important;
}

.btn-outline-white {
    color: var(--stet-white);
    border-color: var(--stet-white);
}

.btn-outline-white:hover {
    color: var(--stet-color);
    border-color: var(--stet-color);
    background: var(--stet-white);
}

.btn-stet-color, .swal2-styled.swal2-confirm {
    color: var(--stet-white);
    background: var(--stet-color);
    border: 1px solid var(--stet-white);
}


.btn-stet-color:hover, .swal2-styled.swal2-confirm:hover {
    color: var(--stet-color);
    border: 1px solid var(--stet-color);
    background: var(--stet-white);
    background-image: none !important;
}

.btn-stet-grey {
    color: var(--stet-black);
    background: var(--stet-grey);
    border: 1px solid var(--stet-grey);
}

.btn-search {
    color: var(--stet-black);
    background: var(--stet-grey-light);
    border: 1px solid var(--stet-grey-light);
    height: 30px;
    vertical-align: bottom;
    padding: 0 .5rem !important;
}

.btn-search img {
    height: 1rem;
    width: auto;
}

input.search-query {
    background: var(--stet-grey-lighter);
    color: var(--stet-black);
    font-family: var(--stet-font-base);
    font-weight: normal;
    border: 1px solid var(--stet-grey-lighter);
    height: 30px;
    width: 240px;

}

.form-check-input:checked {
    background-color: var(--stet-grey-dark);
    border-color: var(--stet-grey-dark);
}


header {
    padding: .5rem 0 0 0;
    background: var(--stet-white);
    /* border-bottom: 1px solid var(--stet-grey-light); */
}

header * {
    font-family: var(--stet-font-titles);
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

header .nav {
    justify-content: flex-end;
}

header .menu-toggler {
    width: 25px;
    position: absolute;
    top: 22px;
    right: 25px;
    cursor: pointer;
}

header .menu-toggler .lines {
    width: 100%;
    height: 4px;
    border-radius: 1px;
    margin-bottom: 4px;
    background-color: #979ca0;
}


header img.logo, .offcanvas img.logo {
    height: 55px;
    width: auto;
    max-height: 100%;
}

header nav a {
    text-decoration: none;
    text-transform: uppercase;
}

header nav > ul > li:hover > a, header nav .parent:hover > .menu_parent > a {
    color: var(--stet-white) !important;
    background: var(--stet-color) !important;
}

header nav a:hover, header nav .active .menu_parent > a, header nav .active > a {
    color: var(--stet-color) !important;
}

header nav ul.nav {
    width: 100%;
    margin-bottom: 0;
}

header nav ul.nav > li {
    width: auto;
    height: auto;
    text-align: left;
    color: var(--stet-grey-dark);
    font-size: 1.2rem;
    display: inline-block;
    font-weight: 400;
    margin-left: 0;
    border-radius: 0 0 0;
    position: relative;
    text-transform: uppercase;
    margin-right: 1px;
}

header nav ul.nav > li > .menu_parent::before {
    content: url(/images/icons/chevron-down.svg);
    font-weight: 400;
    width: 10px;
    height: 6px;
    position: absolute;
    bottom: 6px;
    transform: translateX(-50%);
    left: 50%;
    opacity: 0.3;
    color: var(--stet-color);
    z-index: 10;
}

header nav ul.nav > li:hover > .menu_parent::before {
    content: url(/images/icons/chevron-down-green.svg);
}


header nav ul.nav > li > * {
    display: inline-block;
    position: relative;
}

header nav ul.nav > li {
    padding: 3px 6px;
    border-left: 1px solid var(--stet-grey-light);
}

header nav ul.nav > li > .menu_parent > a, header nav ul.nav > li > a {
    padding: 3px 12px;
    color: var(--stet-grey-dark);
    display: block;
}

header nav ul.nav > li.parent > a:hover {
    color: var(--stet-color);
    text-decoration: underline;
}


header nav ul.nav > li.parent > a ul.nav-child-level1 {
    width: 100%;
    background-color: #f2f2f2;
    height: auto;
    position: relative;
    outline-offset: 14px;
    border-bottom: 14px solid var(--stet-white);
    box-shadow: -14px 0px 0px 0px white, 14px 0px 0px 0px white;
}

header nav > ul.nav > li.parent .nav-child-level1-container {
    padding: 0 0;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}


header nav > ul.nav > li.parent:nth-last-of-type(1) .nav-child-level1-container,
header nav > ul.nav > li.parent:nth-last-of-type(2) .nav-child-level1-container,
header nav > ul.nav > li.parent:nth-last-of-type(3) .nav-child-level1-container {
    right: 0;
    left: unset;
}

header nav ul.nav > li.parent:hover .nav-child-level1-container {
    display: flex;
}

header nav ul.nav > li.parent:hover .nav-child-level1-container ul.nav-child-level1 {
    width: 100%;
    min-width: 360px;
    background-color: var(--stet-white);
    height: auto;
    position: relative;
    outline-offset: 14px;
    padding: 14px 0 14px 14px;
}

header nav ul.nav > li.parent:hover .nav-child-level1-container ul.nav-child-level1:last-of-type {
    padding-right: 14px;
}

header nav ul.nav > li.parent:hover .nav-child-level1-container ul.nav-child-level1 > li {
    width: 100%;
    height: auto;
    margin-left: 0;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f2f2f2;
    padding: 0;
}

header nav ul.nav > li.parent:hover .nav-child-level1-container ul.nav-child-level1 > li:hover, header nav ul.nav > li.parent:hover .nav-child-level1-container ul.nav-child-level1 > li.active {
    background-color: #e0e0e0;
}

header nav ul.nav > li.parent:hover .nav-child-level1-container ul.nav-child-level1 > li > a {
    font-size: 1rem;
    position: relative;
    color: #333333;
    cursor: pointer;
    font-weight: 700;
    display: block;
    padding: 12px 24px;
}


header nav ul.nav-child-level1 > li > .menu_parent, header nav ul.nav-child-level1 > li {
    padding: 12px 24px;
}

header nav ul.nav-child-level1 > li > .menu_parent > a, header nav ul.nav-child-level1 > li > a {
    color: var(--stet-grey-dark);
}

header nav ul.nav-child-level1 > li.parent {
    padding: 12px 12px;
    width: 100%;
    position: relative;
    color: #333333;
    font-weight: 700;
}

header nav ul.nav-child-level1 > li.parent > a {
    font-size: 1rem;
}

header nav ul.nav-child-level2 {
    padding-bottom: 12px;
}

header nav ul.nav-child-level2 > li {
    margin-left: 12px;
}

header nav ul.nav-child-level2 > li > a {
    color: var(--stet-grey-dark);
    font-size: 1rem;
    display: block;
    padding: 6px;
}

#overnav-menu li {
    margin-right: 1rem;
}

#overnav-menu a {
    font-family: var(--stet-font-base);
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    color: var(--stet-black);
}

#overnav-menu a:hover {
    text-decoration: underline;
}

.page-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    padding: 15px;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-family: var(--stet-font-base);
    font-weight: bold;
    font-size: 1.75rem;
    color: var(--stet-white);
    background: rgba(0, 0, 0, .3);
    height: 8rem;
    padding: .5rem 1rem;
}

.page-hero h1 .introtext {
    font-size: 1.25rem;
}

.publish-date {
    color: var(--stet-grey);
}



.breadcrumb {
    font-size: .9rem;
    margin-bottom: 3rem;
}

.breadcrumb a {
    color: var(--stet-grey-dark);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--stet-color);
    text-decoration: underline;
}

#hero .banner {
    text-transform: uppercase;
    font-family: var(--stet-font-base);
    font-size: 2rem;
    line-height: 1;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding-top: 3rem;
}


#hero .banner h1 {
    text-transform: uppercase;
    font-family: var(--stet-font-base);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--stet-white);
}

#hero .banner a {
    font-family: var(--stet-font-base);
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--stet-color);
    background: transparent;
    padding: 12px 24px;
    margin-top: 2rem;
    border: 2px solid var(--stet-color);
}

#hero .banner a:hover {
    background: var(--stet-color);
    color: var(--stet-white);
    border: 2px solid var(--stet-white);
}


#heroCarousel .owl-dots {
    position: relative;
    bottom: 48px;
    left: 0;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

#heroCarousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 2px solid var(--stet-color);
}

#heroCarousel .owl-dots .owl-dot.active span {
    background: var(--stet-color);
    border: 2px solid var(--stet-white);
}

#iconBarMenuCarousel .owl-nav button span {
    color: var(--stet-color);
    font-size: 3rem;
}

#iconBarMenuCarousel .owl-prev, #iconBarMenuCarousel .owl-next {
    position: absolute;
    top: calc(50% - 1.5rem);
}

#iconBarMenuCarousel .owl-prev {
    width: 1.5rem;
    left: -2rem;
}

#iconBarMenuCarousel .owl-next {
    width: 1.5rem;
    right: -2rem;
}

#heroMenu h2 {
    font-size: 1.25rem;
}



#selectorCarousel h3 {
    font-family: var(--stet-font-titles);
    text-transform: uppercase;
    text-align: center;
    color: #000000;
    font-weight: 500;
}

#selectorCarousel a {
    text-decoration: none;
}

#selectorCarousel .owl-nav button span {
    color: var(--stet-color);
    font-size: 3rem;
}

#selectorCarousel .owl-prev {
    width: 30px;
    height: 100px;
    position: absolute;
    top: 30%;
    left: 0;
    display: block !important;
    border: 0 solid black;
}

#selectorCarousel .owl-next {
    width: 30px;
    height: 100px;
    position: absolute;
    top: 30%;
    right: 0;
    display: block !important;
    border: 0 solid black;
}

ul.selector-menu {
    display: flex;
    justify-items: left;
    padding: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--stet-grey-light);
}

ul.selector-menu > li {
    list-style: none;
    border-right: 1px solid var(--stet-grey-light);
    text-align: center;
    padding: .5rem 2rem;
}


.selector-menu .option:hover, .selector-menu .option.current, .selector-menu .option.active {
    text-decoration: none;
    color: #000000;
    border-bottom: 4px solid var(--stet-color);

}

.selector-menu a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: .85rem;
    text-align: center;
    color: #231f20;
    box-sizing: border-box;
    text-transform: uppercase;
    vertical-align: middle;
    text-decoration: none;
}

.selector-menu a:hover {
    text-decoration: none;
}

.selector-menu a b {
    font-weight: 700;
}


#selectorCarousel ul.nav {
    display: flex;
    padding: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--stet-grey-light);
}

#selectorCarousel ul.nav > li.nav-item {
    list-style: none;
    border-right: 1px solid var(--stet-grey-light);
    text-align: center;
}

#selectorCarousel ul.nav > li.nav-item > .nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: .85rem;
    text-align: center;
    color: #231f20;
    box-sizing: border-box;
    text-transform: uppercase;
    vertical-align: middle;
    text-decoration: none;
    border: none;
}

#selectorCarousel ul.nav > li.nav-item > .nav-link:hover, #selectorCarousel ul.nav > li.nav-item > .nav-link.active {
    text-decoration: none;
    color: #000000;
    border-bottom: 4px solid var(--stet-color);
}

#stetGridFilter {
    font-family: var(--stet-font-base);
    padding: 1.5rem;
    font-size: .9rem;
    background: var(--stet-black);
    color: var(--stet-white);
    max-height: calc(100vh - 120px - 4rem);
    overflow-y: scroll;
}

#stetGridFilter .collapse {
    margin-bottom: 1rem;
}

#stetGridFilter h3 {
    color: var(--stet-color);
    margin-top: 2rem;
    text-transform: uppercase;
}


#stetGridFilter button.btn-link {
    padding: 0 !important;
    margin-top: 1rem;
    display: block;
    color: var(--stet-white);
    text-decoration: none;
    overflow: hidden;
    height: 1.5rem;
    text-align: left;
}


#stetGridFilter button.btn-link:focus {
    box-shadow: none !important;
}


#stetGridFilter button.btn-link::after {
    display: inline-block;
    content: url(/images/icons/chevron-down.svg);
    font-weight: 400;
    transform: rotate(180deg);
    color: var(--stet-white);
    margin-left: .5rem;
    transition: transform 500ms;
}

#stetGridFilter button.btn-link.collapsed::after {
    transform: rotate(0deg);

}

#stetGridFilter h4 {
    height: 2rem;
}


#stetGridFilter .filterby-all {
    font-weight: bold;
    font-size: .7rem;
    text-transform: uppercase;
    padding: .25rem .75rem;
}

#stetGrid .product-container {
    margin-bottom: 3rem;
}

#stetGrid .product-container a {
    text-decoration: none;
}

#stetGrid .product-image {
    display: flex;
    align-items: center;
}

#stetGrid .product-image img {
    max-height: 272px;
}


#stetGrid .product-title {
    padding: .5rem;
    background: var(--stet-black);
    height: 3rem;
}

#stetGrid .product-title h3 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--stet-white);
    height: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#stetGrid .product-container a:hover .product-title {
    background: var(--stet-color);
}

#stetGrid .product-specs {
    height: 3rem;
    font-size: .8rem;
    color: var(--stet-grey-dark);
    padding: .5rem 0;
}

#stetGrid .product-spec {
    margin-bottom: 0;
}

#stetGrid .product-compare {
    display: flex;
    justify-content: space-between;
    padding: .5rem 1rem;
    background: var(--stet-grey-lighter);
    color: var(--stet-color);
    text-transform: uppercase;
    font-size: .9rem;
    border-bottom: 1px solid var(--stet-black);
}

#stetGrid .btn-compare {
    padding: 0 .5rem !important;
    font-size: 0.75rem;
    display: none;
}

#stetGrid .form-check-input {
    border-color: var(--stet-grey-dark);
}

#stetGrid .form-check-input:checked {
    background-color: var(--stet-color);
    border-color: var(--stet-color);
}

#stetGrid .form-check-input:focus {
    border-color: var(--stet-color);
    box-shadow: none;
}

#askquote-tab {
    background: var(--stet-color);
    color: var(--stet-white) !important;
    border-bottom: 4px solid var(--stet-color) !important;
}

#stetFullProduct h1.product-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#stetFullProduct ul.nav {
    display: flex;
    padding: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--stet-grey-light);
}

#stetFullProduct ul.nav > li.nav-item {
    list-style: none;
    border-right: 1px solid var(--stet-grey-light);
    text-align: center;
}

#stetFullProduct {
    color: var(--stet-grey-dark);
    padding-bottom: 3rem;
}

#stetFullProduct ul.nav > li.nav-item > .nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: .85rem;
    text-align: center;
    color: #231f20;
    box-sizing: border-box;
    text-transform: uppercase;
    vertical-align: middle;
    text-decoration: none;
    border: none;
    border-radius: 0;
}

#stetFullProduct ul.nav > li.nav-item > .nav-link:hover, #stetFullProduct ul.nav > li.nav-item > .nav-link.active {
    text-decoration: none;
    color: #000000;
    border-bottom: 4px solid var(--stet-color);
}


#stetProductImagesCarousel .owl-item .image {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 10;
}

#stetProductImagesCarousel .owl-item .image:after {
    content: "";
    display: block;
    padding-bottom: 66%;
}


#stetProductImagesCarousel .owl-nav button span {
    color: var(--stet-grey-light);
    font-size: 3rem;
}

#stetProductImagesCarousel .owl-prev, #stetProductImagesCarousel .owl-next {
    position: absolute;
    top: calc(50% - 1.5rem);
}

#stetProductImagesCarousel .owl-prev {
    left: 0;
}

#stetProductImagesCarousel .owl-next {
    right: 0;
}


#stetProductThumbnailsCarousel .owl-item .image {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 10;
    height: 4rem;
}

#stetProductThumbnailsCarousel .owl-item .image:after {
    content: "";
    display: block;
    padding-bottom: 66%;
}

#stetProductThumbnailsCarousel .owl-item {
    border: 2px solid var(--stet-white);
}

#stetProductThumbnailsCarousel .owl-item.current {
    border: 2px solid var(--stet-color);
}


.accordion-item {
    border-radius: 0 !important;
    margin-top: .5rem;
}

.accordion-item .accordion-button, .accordion-item .accordion-button:focus {
    background: var(--stet-color);
    color: var(--stet-white);
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.accordion-button {
    background: var(--stet-grey-lighter);
    color: var(--stet-black);
}

#accordionFeatures .accordion-button {
    background: none;
}

#accordionFeatures .accordion-button, .accordion-button:focus {
    color: var(--stet-black);
}

.accordion-button::after {
    content: url("/images/icons/chevron-down.svg");
    flex-shrink: 0;
    width: .8rem;
    height: .8rem;
    margin-left: auto;
    background: none;
    transition: none;
    transform: unset;
}

#accordionFeatures .accordion-button::after {
    content: url("/images/icons/chevron-left.svg");
}

.accordion-button.show::after {
    background: none;
    content: url("/images/icons/chevron-circle-up.svg");
}

#accordionFeatures  .accordion-button.collapsed::after {
    content: url("/images/icons/chevron-down.svg");
}

.accordion-button:not(.collapsed) {
    background: var(--stet-color)!important;
    color: var(--stet-white)!important;
}

.accordion-button:not(.collapsed)::after {
    background-image: inherit;
}

.accordion-body {
    background: var(--stet-white-darker);
}

#stetFullProduct table {
    font-size: .9rem;
    color: var(--stet-grey-dark);
}

#stetFullProduct table th, #stetFullProduct table td {
    font-weight: normal;
    padding: 1rem;
    width: 50%;
}

#stetFullProduct .table-striped > tbody > tr {
    --bs-table-accent-bg: transparent;
    color: inherit;
}

#stetFullProduct .table-striped > tbody > tr:nth-of-type(2n) {
    --bs-table-accent-bg: var(--stet-white);
    color: inherit;
}


a.download-link:before {
    display: inline-block;
    content: url('/images/icons/icon-download.svg');
    width: 4rem;
    padding: .5rem;
    margin-right: 1rem;
    background: var(--stet-grey-light);
}


a.download-link {
    display: flex;
    justify-content: start;
    align-items: center;
    background: var(--stet-grey-lighter);
    font-family: var(--stet-font-base);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--stet-black);
    width: 100%;
    font-size: 95%;
}

article a.download-link {
    width: max-content;
    padding-right: 1rem;
}

a.download-link:hover {
    color: var(--stet-color);
}

#system-message-container {
    display: none;
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}


.swal2-icon.swal2-error, .swal2-success {
    border-color: var(--stet-color) !important;
    color: var(--stet-color) !important;
}

.swal2-icon.swal2-error [class^="swal2-x-mark-line"], .swal2-icon.swal2-success [class^="swal2-success-line"] {
    background-color: var(--stet-color) !important;
}

#category article a {
    display: block;
    position: relative;
}

#category a .veil::before {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 0;
    font-size: 2rem;
}

#category a .veil {
    width: 100%;
    height: 5rem;
    position: absolute;
    bottom: 0;
    padding: 9px 50px 11px 24px;
    background: rgba(51, 51, 51, 0.7);
    color: var(--stet-white);
    z-index: 3;
    overflow: hidden;
    transition: height 500ms;
}

#category a .veil h3 {
    color: var(--stet-white);
    text-transform: uppercase;
    font-size: 1.2rem;
}

#category a .veil .introtext {
    display: none;
}

#category .leaditem a:hover .veil {
    height: 9rem;
}

#category a:hover .veil .introtext {
    display: unset;
}

#category .introitem {
    padding-bottom: 0;
}

#category .introitem a:hover .veil {
    height: 100%;
}

#category.blog-promocoes {
    padding-bottom: 3rem;
}

#category.blog-novidades h3 {
    font-family: var(--stet-font-base);
    font-weight: normal;
    text-transform: uppercase;
    height: 6rem;
}


#category.blog-novidades .publish-date {
    font-size: .9rem;
    color: var(--stet-grey-dark);
    margin-bottom: 2rem;
}

#category.blog-novidades a {
    text-decoration: none;
    color: var(--stet-grey);
}

#category.blog-novidades a:hover {
    color: var(--stet-color);
}

#category.blog-novidades .introtext {
    height: 6rem;
}

#category.blog-novidades .linktext {
    font-family: var(--stet-font-titles);
    text-transform: uppercase;
    vertical-align: text-bottom;
    line-height: 2rem;
    opacity: 0;
    transition: opacity 1s;
}

#category.blog-novidades a:hover .linktext {
    opacity: 1;
}

.container.pagination {
    text-align: center;
}

.container.pagination nav {
    margin: auto;
}

ul.pagination li {
    margin: 0;
}

ul.pagination li a {
    padding: .75rem;
    color: var(--stet-grey-dark) !important;
}


ul.pagination li.active a {
    color: var(--stet-color) !important;
}

ul.pagination li a:hover {
    background: var(--stet-color);
    color: var(--stet-white) !important;
}

article a.video-player, article a.video-player-on-modal {
    display: block;
    position: relative;
}

.button-player {
    position: absolute;
    left: calc(50% - 3rem);
    top: calc(50% - 3rem);
    width: 6rem !important;
}


#navigator {
    position: fixed;
    right: 0;
    top: 80vh;
    display: flex;
    z-index: 9999;
}

#navigator .navigator-item {
    background: var(--stet-black);
    color: var(--stet-white);
    text-align: center;
    text-transform: uppercase;
    margin-left: .5rem;
    padding: .5rem;
    border-radius: 4px;
    line-height: 1;
}

#navigator .navigator-item a {
    font-size: .6rem;
    line-height: 1;
    color: var(--stet-white);
    font-weight: 600;
}

#footerSocial {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #2e2a2b;
    border-bottom: 1px solid var(--stet-white);
}

#footerSocial h3 {
    color: var(--stet-white);
    font-size: 1rem;
    margin-bottom: 2rem;
}

#footerSocial .social {
    margin-left: .5rem;
}


#footerSocial ul {
    margin: 0;
}

#footerSocial img.logo {
    height: 55px;
    width: auto;
    max-height: 100%;
}

#footerSocial .phone {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 2rem;
    color: var(--stet-white)
}

#footerSocial .phone a {
    font-family: var(--stet-font-titles);
    text-decoration: none;
}

.social {
    display: inline-block;
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    color: var(--stet-color);
    border-radius: 33%;
    border: 2px solid var(--stet-color);
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.social:hover {
    background: var(--stet-color);
    color: #231f20;
}


.social a {
    color: var(--stet-color);
    font-size: 14px;
    display: block;
    height: 100%;
    width: 100%;
}

.social:hover a {
    color: var(--stet-black);
}

.social a i.fab {
    vertical-align: bottom;
}

footer {
    background: var(--stet-grey-light);
    color: var(--stet-grey-dark);

}

footer h3 {
    font-weight: 700;
}

footer .menu {
    border-left: 1px solid var(--stet-grey);
}

footer .menu:first-of-type, footer .menu:nth-of-type(3) {
    border-left: none;
}

footer .misc {
    margin-top: 2rem;
    font-size: .9rem;
    line-height: 1;
    margin-bottom: 0;
}

footer .menu h3 {
    font-family: var(--stet-font-titles);
    font-size: 1.2rem;
    font-weight: 300;
}

footer .menu li {
    padding: 0;
    margin: 0;
}

footer .menu a {
    color: var(--stet-grey-dark);
    font-family: var(--stet-font-titles);
    font-weight: 300;
    text-decoration: none;
    line-height: 28px;
}

footer .menu a:hover {
    color: var(--stet-black);
}

footer .certificates img {
    max-width: 100px;
}


acym_module h3 {
    font-size: 1rem;
    font-weight: 300;
}

table.acym_form {
    margin: 0;
    width: 100%;
}

div.acym_module_success, div.acym_module_error {
    width: 250px!important;
}

.acym_form input {
    font-family: var(--stet-font-titles);
    font-size: .9rem;
    color: #808285;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 1px solid var(--stet-white);
    padding: .25rem .5rem;

}

.acym_form input.button {
    font-family: var(--stet-font-titles);
    font-size: .8rem;
    text-align: left;
    color: var(--stet-white);
    border: none;
    text-transform: uppercase;
    background-color: var(--stet-color);
    padding: .5rem .75rem;
    font-weight: 300;
    width: auto;
    margin: 0;
}

.acysubbuttons {
    text-align: left;
}

#lowerFooter {
    padding: 1rem 0;
    border-top: 1px solid var(--stet-white);
    line-height: 1;
}

#lowerFooter ul {
    margin: 0;
}

#lowerFooter li:after {
    content: "|";
    margin: 0 .5rem;
}

#lowerFooter li:last-of-type:after {
    content: unset;
    margin: 0;
}

#lowerFooter p, #lowerFooter a {
    color: var(--stet-grey-dark);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--stet-font-titles) !important;
    margin: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    line-height: 1;
}


#lowerFooter a:hover {
    color: var(--stet-black);
}


#newsCarousel .owl-nav button span {
    color: var(--stet-color);
    font-size: 3rem;
}

#newsCarousel .owl-prev {
    width: 30px;
    height: 100px;
    position: absolute;
    top: 30%;
    left: 0;
    display: block !important;
    border: 0 solid black;
}

#newsCarousel .owl-next {
    width: 30px;
    height: 100px;
    position: absolute;
    top: 30%;
    right: 0;
    display: block !important;
    border: 0 solid black;
}

.history {
    text-align: center;
    padding-bottom: 5rem;
}

.history .single {
    position: relative;
    display: flex;
    margin: auto;
    min-height: 130px;
}

.history .single.hidden {
    display: none;
}

.history .single.first {
    height: 180px;
}

.history .single.last {
    height: 0;
    min-height: unset;
}

.history .single .titulo {
    background: var(--stet-color);
    position: absolute;
    width: 170px;
    height: 40px;
    left: 0;
    right: 0;
    top: 30%;
    margin: auto;
    padding: 10px 35px;
    color: #000;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.history .single .left_side {
    display: inline-block;
    width: 50%;
    font-size: 16px;
    text-align: right;
    padding: 0 30px 50px;
}

.history .single .line {
    background: var(--stet-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 3px;
}

.history .single:not(.last) .line:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    left: -8.5px;
    right: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 3px solid var(--stet-color);

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.history .single.last .line:after {
    content: "";
    background: var(--stet-color);
    position: absolute;
    bottom: 0;
    left: -13.5px;
    right: 0;
    width: 30px;
    height: 3px;
    margin: auto;
}

.history .single.scrolled:not(.last) .line:after {
    border: 3px solid var(--stet-color);
}

.history .single .line:before {
    content: "";
    background: var(--stet-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: unset;
    height: 0;
    margin: auto;
    width: 3px;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.history .single.scrolled .line:before {
    height: 100%;
}

#openHistory {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -32px;
    font-size: 32px;
    width: 32px;
    margin: auto;
    color: var(--stet-color);
    cursor: pointer;
}

.history .single .right_side {
    display: inline-block;
    width: 50%;
    font-size: 16px;
    text-align: left;
    padding: 0 30px;
}

#contact-us {
    max-width: 760px;
}

#contact-us .accordion h2 {
    margin-bottom: 2rem;
}

#contact-us form {
    margin-bottom: 3rem;
}

#contact-us select {
    font-size: 1rem;
    width: 100%;
}


#contact-us #btnStep1, #contact-us #btnStep2 {
    background: none;
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    padding: .5rem 3rem;
}

#contact-us button[data-bs-toggle="collapse"] .number {
    background: #e4032f;
    padding: 2px 0;
    border: 4px solid #fde8a4;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    margin: 0 5px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

#contact-us button[data-bs-toggle="collapse"].collapsed .number {
    background: #a5a5a4;
    border: 4px solid #c3c3c2;

}

#contact-us button[data-bs-toggle="collapse"] .text {
    display: block;
    margin-top: 5px;
    color: #a5a5a4;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

#tabFiliais, #tabConcessionarios, #tabAgentesMaritimos {
    min-width: 280px;
}

.search-results a {
    text-decoration: none;
}

.search-results a:hover {
    color: var(--stet-color);
    text-decoration: underline;

}

.search-results h2 {
    color: var(--stet-grey-dark);
}

.search-results span.highlight {
    font-weight: bold;
}

.search-results h2 span.highlight {
    font-family: inherit;
    font-weight: inherit;
}


#sidebar {
    position: fixed;
    right: 0;
    top: 33vh;
    z-index: 99;
}

#sidebar ul {
    background: transparent;
    list-style: none;
    margin: 0;
}

#sidebar ul li {
    background: var(--stet-color);
    font-weight: 400;
    padding: 1rem .5rem;
    width: auto;
    margin-bottom: .25rem;
    margin-right: -9.5rem;
    transition: transform 0.5s ease 0s;
    transform: translateX(0);
}

#sidebar ul li:hover {
    transform: translateX(-9.5rem);
}

#sidebar ul li a {
    text-decoration: none;
    display: block;
    font-weight: 700;
    color: #FFFFFF;
}

#sidebar ul li .img-container {
    display: inline-block;
    float: left;
    width: 2rem;
    margin-right: 1rem;
    text-align: center;
}

#sidebar ul li img {
    max-height: 2rem;
}

#sites-stet {
    position: absolute;
    right: 2rem;
    top: 200px;
    z-index: 1000;
}

#sites-stet ul {
    display: none;
}

#sites-stet.visible {
    border: 2px solid var(--stet-color);
    border-radius: 12px;
    background: var(--stet-white);
}

#sites-stet.visible .header {
    height: 98px;
    padding: .5rem;
    background: var(--stet-grey-lighter);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    text-align: center;
    box-shadow: 0 8px 8px var(--stet-grey);
}

#sites-stet .header a.list-toggle {
    font-family: var(--stet-font-base);
    font-size: 1.25rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 2px var(--stet-grey-dark);
    text-decoration: none;
    color: var(--stet-white);
    display: flex;
    justify-content: center;
}

#sites-stet .header a.list-toggle img {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(1px 2px var(--stet-grey-dark));
    margin-right: .5rem;
}

#sites-stet .header h3 {
    display: inline-block;
    font-family: var(--stet-font-base);
    font-size: 1.25rem;
    text-align: left;
    text-transform: uppercase;
    text-shadow: 1px 2px var(--stet-grey-dark);
}

#sites-stet.visible .header h3 {
    text-align: center;
}

#sites-stet .footer {
    color: var(--stet-white);
    padding: .5rem;
    background: var(--stet-grey-lighter);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    text-align: center;
    display: none;
}

#sites-stet.visible .footer {
    display: block;
}


#sites-stet .scroller {
    display: none;
}

#sites-stet.visible .scroller {
    display: block;
}


#sites-stet .scroller img {
    width: 1.5rem;
    height: auto;
}


#sites-stet ul {
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 240px;
}

#sites-stet ul li {
    padding: .25rem .5rem;
    margin-top: 1rem;
    box-shadow: 0 8px 8px var(--stet-grey);
}

#sites-stet ul li img.website {
    width: 100px;
}

#sites-stet ul li img.chevron {
    height: 1rem;
    margin-left: 1rem;
    margin-right: .5rem;
}

#sites-stet ul li a {
    color: var(--stet-grey-dark);
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8rem;

}

#sites-stet ul li .text {
    width: 160px;
    text-align: right;
    display: inline-block;
}


#iconBar {
    background: var(--stet-color);
}

#iconBar a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-family: var(--stet-font-titles);
    color: var(--stet-white);
    text-transform: uppercase;
    font-size: 1.25rem;
}

#iconBar img {
    max-width: 80%;
    margin: .5rem auto;
}



#selector iframe {
    width: 100%;

}

#redBar {
    background: var(--stet-color);
    color: var(--stet-white);
    padding: 1rem 0;
}

#redBar h2 {
    font-family: var(--stet-font-base);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#redBar a {
    color: var(--stet-white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--stet-font-titles);
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1;
}

#redBar a span {
    font-family: inherit;
}



.offcanvas-body input.search-query {
    width: calc(100% - 34px);
}

.offcanvas-body * {
    font-family: var(--stet-font-titles);
}

.offcanvas-body nav ul.nav > li {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 0;
    border-radius: 0 0 0;
    position: relative;
    margin-right: 1px;
    padding: 3px 6px;
    border-bottom: 1px solid var(--stet-grey-light);
}

.offcanvas-body nav a {
    text-decoration: none;
    color: var(--stet-grey-dark);
}

.offcanvas .nav-child-level1-container {
    display: none;
}

.offcanvas-body nav ul.nav > li > .menu_parent > a, .offcanvas-body nav ul.nav > li > a {
    padding: 3px 12px;
    text-decoration: none;
    color: var(--stet-grey-dark);
    text-transform: uppercase;
    display: block;
}

.offcanvas-body nav > ul > li:hover > a, .offcanvas-body nav > ul > .parent:hover > .menu_parent > a {
    color: var(--stet-white) !important;
    background: var(--stet-color) !important;
}

.offcanvas-body nav a:hover, header nav .active .menu_parent > a, .offcanvas-body nav .active > a {
    color: var(--stet-color) !important;
}

.offcanvas-body nav ul.nav > li.parent > a:hover {
    color: var(--stet-color);
    text-decoration: underline;
}

.offcanvas-body nav ul.nav > li.parent > a ul.nav-child-level1 {
    width: 100%;
    background-color: #f2f2f2;
    height: auto;
    position: relative;
    outline-offset: 14px;
    border-bottom: 14px solid var(--stet-white);
    box-shadow: -14px 0px 0px 0px white, 14px 0px 0px 0px white;
}

.offcanvas-body ul.nav-child-level1 {
    list-style: none;
}


.offcanvas-body .overnav-menu li {
    margin-bottom: 1.5rem;
}

.offcanvas-end {
    width: auto;
    border-left: none;
}

.offcanvas-body ul.sidebar {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    padding: 0;
}


.offcanvas-body ul.sidebar li {
    flex: 0 0 auto;
    width: 50%;
    padding: 4px;
}

.offcanvas-body ul.sidebar li a {
    display: inline-flex;
    align-items: center;
    justify-items: start;
    width: 100%;
    height: 4rem;
    color: var(--stet-white);
    background: var(--stet-color);
    border: 1px solid var(--stet-white);
    text-decoration: none;
    padding: .5rem;
    line-height: 1;
    font-weight: bold;
}

.offcanvas-body ul.sidebar li a .img-container {
    width: 25%;
    margin-right: 8px;
}


#stet-sites-links img.website {
    width: 100%;
}

#stet-sites-links h3 {
    font-family: var(--stet-font-base);
    font-weight: normal;
    font-size: 1.25rem;
    text-transform: uppercase;
}

#stet-sites-links p {
    font-size: .9rem;
}

#stet-sites-links .btn {
    font-size: .9rem;
    padding: .75rem 1.9rem !important;
}

#stet-sites-links > div {
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

#links-user-support {
    min-height: 350px;
    background: var(--stet-grey-lighter);
    display: flex;
    flex-direction: column;
}

#links-user-support .btn {
    font-family: var(--stet-font-titles);
}

#stet-sites-links > div p:last-of-type,
#links-user-support > p:last-of-type {
    margin-top: auto;
    margin-bottom: 0;
}

#links-user-support .icon {
    height: 1rem;
    margin-right: 1rem;
    margin-top: 4px;
}

#links-user-support h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 2rem;
}

#links-user-support .icon.h3 {
    height: 2rem;
    margin-right: .5rem;
    margin-bottom: 0;
}

#internal-links-container .btn img {
    max-height: 2rem;
}

div.mod-languages {
    margin-left: 1rem;
}

div.mod-languages li::after {
    content: "|";
    margin-left: 2px;
    color: var(--stet-grey);
}

div.mod-languages li:last-of-type::after {
    content: none;
}

div.mod-languages a {
    color: var(--stet-grey);
}

div.mod-languages .lang-active a {
    color: var(--stet-color);
}

#modalCompare .modal-dialog-scrollable .modal-body {
    overflow-y: visible;
}

#modalCompare .modal-dialog-scrollable .modal-body table img {
    height: 128px;
}

#modalCompare .modal-dialog-scrollable .modal-body .scrollable {
    height: calc(100% - 176px);
    overflow-y: auto;
}


.js-calendar .js-btn {
    font-size: .85rem;
    padding: .25rem 1rem !important;
}