/**
* 2007-2023 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2023 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.shttguideList {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 30px;
}

.shttguideList h1 {
    text-align: center;
}

.shttguideList__categories {
    display: inline-flex;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 30px;
    overflow: auto;
    width: calc(100% - 120px);
    margin-left: auto;
    border-bottom: 1px solid #707070;
    position: relative;
}

.shttguideList__category {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7px 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-bottom: 4px solid transparent;
}

.shttguideList__category--active {
    color: var(--primary);
    position: relative;
    border-color: var(--primary);
}

.shttguideList__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}

.shttguideList:not(.shttguideList--filter) .shttguideList__list .shttguideMinia--highlighted,
.shttguideList:not(.shttguideList--filter) .shttguideList__list .shttguideMinia--top {
    display: none;
}

.shttguideMinia,
.elementor-widget .swiper-slide> :not(.swiper-lazy-preloader).shttguideMinia {
    display: block;
    width: 100%;
    max-width: 420px;
    padding-bottom: 5px !important;
}

.shttguideMinia--hidden,
.shttguideHighlighted--hidden,
.shttguideTops--hidden {
    display: none;
}

.shttguideMinia__imgs {
    width: 100%;
    aspect-ratio: 422/384;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.shttguideMinia__imgs::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px solid white;
    border-radius: 8px;
    opacity: 0;
    transition: opacity .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shttguideMinia:hover .shttguideMinia__imgs::before {
    opacity: 1;
}

.shttguideMinia__imgs::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    translate: 0 50%;
    transform: translateX(-50%);
    width: calc(90% + 10px);
    aspect-ratio: 364/125;
    background-color: white;
    border-radius: 60px;
}

.shttguideMinia__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: scale .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shttguideMinia:hover .shttguideMinia__img {
    scale: 1.1;
}

span.shttguideMinia__category {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 12px;
    display: block;
    color: black;
}

.shttguideMinia__title {
    font-family: 'sofia-pro', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: -38px auto 0 auto;
    width: calc(90% - 10px);
    position: relative;
    z-index: 1;
    text-align: center;
    min-height: 42px;
}

.shttguideMinia__description {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: black;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shttguideMinia:hover .shttguideMinia__description {
    color: var(--secondary);
}

.shttguideMinia__link {
    font-size: 15px;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: underline;
    text-align: center;
    color: var(--secondary);
}

.shttguideMinia__link:hover {
    color: var(--primary);
}

.shttguide {
    padding-top: 30px;
    margin-bottom: 30px;
}

.shttguide__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.shttguide__name {
    text-align: center;
    font-size: 40px;
    line-height: 51px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.shttguide__shortDescription {
    text-align: center;
    max-width: 690px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 74px;
}

.shttguide__content {
    width: 100%;
    max-width: 900px;
    margin: 35px auto 0 auto;
}

.shttguide__text {
    grid-column: 3/11;
}

.shttguide__description {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 32px;
}

.shttguide__contact {
    padding: 10px 12px;
    border: 1px solid black;
    color: black;
    font-size: 14px;
    transition: 300ms ease;
    display: inline-block;
}

.shttguide__contact:hover {
    color: white;
    background-color: black;
}

.shttguide__imgs {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.3;
}

.shttguide__imgs::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    translate: -50% 50%;
    width: 100%;
    max-width: 1100px;
    height: 120px;
    background-color: white;
    border-radius: 60px;
}

.shttguide__imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.shttguide__sameCategoryRealTitle {
    font-size: 25px;
    line-height: 30px;
    max-width: 500px;
    text-align: left;

    margin-bottom: 50px;
    text-transform: uppercase;
}

.shttguideList__gmWrapper {
    height: 700px;
    width: 100%;
    transition: 400ms ease;
}

.shttguideList__gmWrapper--hidden {
    height: 0px;
}

.shttguideList__gm {
    height: 100%;
    width: 100%;
}

.shttguideList__stateMap {
    margin-bottom: 85px;
    width: 100%;
    padding-top: 8px;
}

.shttguideList__stateMapShow,
.shttguideList__stateMapHide {
    font-size: 14px;
    line-height: 19px;
    color: black;
    display: inline-block;
    cursor: pointer;
}

.shttguideList__gmWrapper--open+.shttguideList__stateMap .shttguideList__stateMapShow {
    display: none;
}

.shttguideList__gmWrapper--close+.shttguideList__stateMap .shttguideList__stateMapHide {
    display: none;
}

.shttguideList__gmWrapper--close {
    height: 0px !important;
}

p.shttguideMinia__date {
    color: #a2a2a2;
    font-size: 14px;
}

.shttguideTops h3 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 26px;
}

.shttguideTops {
    background: #fafafa;
    box-shadow: 0 0 0 100vmax #fafafa;
    clip-path: inset(0 -100vmax);
    padding: 60px 0;
    margin-bottom: 130px;
}

.shttguideTops__articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shttguideTops h2.shttguideMinia__title {
    font-size: 20px;
    line-height: 25px;
}

.shttguideTops .shttguideMinia__description {
    display: none;
}

.shttguide__articleData {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

h1.shttguide__title {
    position: relative;
    z-index: 2;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    color: var(--secondary);
    margin-top: -38px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    width: 100%;
    max-width: 900px;
    border-bottom: 1px solid var(--lightblue);
}

p.shttguide__excerpt {
    color: var(--secondary);
    margin-bottom: 20px;
}

span.shttguide__date {
    color: #a2a2a2;
    font-size: 16px;
    padding-top: 4px;
}

.shttguide__sameCategoryReals {
    grid-template-columns: repeat(3, 1fr);
}

.shttguide__sameCategoryReals h2.shttguideMinia__title {
    font-size: 20px;
    line-height: 25px;
    width: 85%;
}

.shttguide__sameCategoryReals .shttguideMinia__description {
    display: none;
}

.shttguide__sameCategoryRealWrapper {
    padding: 40px 0 60px 0;
    background: #fafafa;
    box-shadow: 0 0 0 100vmax #fafafa;
    clip-path: inset(0 -100vmax);
}

.shttguide__acticleContent {
    font-size: 16px;
    color: black;
}

.shttguide__acticleContent br+p {
    margin-bottom: 0px;
}

.shttguide__acticleContent a {
    text-decoration: underline !important;
}

.shttguide__acticleContent h3,
.shttguide__acticleContent h3 strong,
.shttguide__acticleContent h4,
.shttguide__acticleContent h4 strong {
    font-family: 'sofia-pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.shttguide__productsList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.shttguideHighlighted {
    width: 100%;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    overflow: hidden;
}

.shttguideHighlighted__imgs {
    width: 100%;
    height: 100%;
}

.shttguideHighlighted__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shttguideHighlighted__text {
    background-color: var(--secondary);
    color: white;
    padding: 60px;
}

.shttguideHighlighted__title {
    font-size: 30px;
    font-weight: 400;
    text-align: left !important;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: "new-spirit", sans-serif;
    color: white;
    line-height: 1.1em;
}

.shttguideHighlighted__separator {
    display: block;
    width: 100%;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.shttguideHighlighted__description {
    color: white;
    max-width: 450px;
    margin-bottom: 30px;
}

.shttguideHighlighted__link {
    text-transform: uppercase;
    text-decoration: underline;
}

.shttguideHighlighted__link:hover {
    color: var(--primary);
}

@media (min-width: 992px) {
    body#shtt-guide-article #wrapper {
        position: relative;
        z-index: 1;
    }

    body#shtt-guide-article #wrapper::before {
        content: "";
        width: 330px;
        height: 330px;
        background-image: url('/themes/sobreal/assets/img/background-corner.png');
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

@media (max-width: 991px) {
    .shttguideList__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .shttguideMinia__title {
        font-size: 15px !important;
        line-height: 17px;
        margin-top: -30px;
        min-height: 34px;
    }

    .shttguideMinia__imgs::before {
        opacity: 1;
    }

    .shttguideMinia__description {
        font-size: 14px;
        line-height: 18px;
    }

    .shttguide__imgs {
        grid-column: 1/13;
    }

    .shttguide__text {
        grid-column: 1/13;
    }

    .shttguide__articleData {
        grid-column: 1/13;
        align-items: flex-start;
    }

    h1.shttguide__title {
        grid-column: 1/13;
    }

    p.shttguide__excerpt {
        grid-column: 1/13;
        grid-row: 3/4;
    }

    .shttguide__shortDescription {
        font-size: 16px;
        line-height: 22px;
    }

    h1.shttguide__name {
        font-size: 30px;
        line-height: 40px;
    }

    .shttguideTops__articles {
        grid-template-columns: 1fr 1fr;
    }

    .shttguideTops__articles .shttguideMinia:nth-child(3),
    .shttguide__sameCategoryReals .shttguideMinia:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    .shttguide__sameCategoryReals {
        grid-template-columns: repeat(1, 1fr);
    }

    .shttguideTops__articles {
        grid-template-columns: 1fr;
    }

    .shttguideTops__articles .shttguideMinia:nth-child(3),
    .shttguide__sameCategoryReals .shttguideMinia:nth-child(3) {
        display: block;
    }

    span.shttguideMinia__highlightIndication {
        color: black;
        margin-bottom: 10px;
        display: block;
        font-size: 16px;
        font-weight: bold;
        padding-top: 0px;
    }

    .shttguideList__list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shttguideList {
        padding-top: 0px;
    }

    .shttguideTops {
        padding: 16px 0px 40px 0px;
        margin-bottom: 40px;
    }

    .shttguide__acticleContent {
        font-size: 15px;
        color: black;
    }

    .shttguideHighlighted {
        grid-template-columns: 1fr;
    }

    .shttguideHighlighted__text {
        padding: 35px 40px;
    }

    .shttguideHighlighted__title {
        font-size: 24px !important;
        margin-bottom: 20px;
    }

    .shttguideHighlighted__separator {
        margin-bottom: 20px;
    }

    .shttguideHighlighted__description {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .shttguide {
        padding-top: 0;
    }

    .shttguide__imgs {
        width: 100vw;
        margin-left: -15px;
    }

    .shttguide__imgs::after {
        height: 60px;
        border-radius: 30px;
    }

    .shttguide__imgs img {
        border-radius: 0px;
    }

    h1.shttguide__title {
        font-size: 24px;
        line-height: 30px;
        margin-top: -15px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .shttguideList__categories {
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .shttguideList__categories::-webkit-scrollbar {
        display: none;
    }
}