

.shippingText span {
    display: block;
    margin-bottom: 1em;
}



/* //////// CUERPO \\\\\\\\*/

body {
    background-color: #EEEDE9;
        overflow: clip;
}

.containerModels {
    padding: 2% 10%;
    font-family: 'Montserrat';
}

/*//////// HEAD \\\\\\\\*/

h1.titleGroupCover {
    color: #5D8C88;
    font-size: 2.7em;
    font-weight: 700;
    text-align: center;
}


.buttonsModels {
    display: flex;
    width: 66%;
    justify-content: space-between;
    margin: 4% auto;
}

.buttonBoat {
    color: #5D8C88;
    font-size: 1.5em;
    font-weight: bold;
    font-family: montserrat;
    width: fit-content;
    transition: all 0.25s ease-in-out;
    border: none;
    position: relative;
    background: none;
    cursor: pointer;
}

.buttonBoat.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 25px;
    background-position: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('https://boathouseco.com/wp-content/uploads/2024/04/linea.webp');
    background-repeat: no-repeat;
    background-size: contain;
}

.active {
    transform: none !important;
}

/* ///////// CUADRO PRECIO \\\\\\\\\ */

.priceModelContainer {
    display: flex;
    border: 2px solid #A8D6C3;
    border-radius: 23px;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}

.priceModel {
    text-align: start;
}

.priceModel h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    line-height: 120%;
}
.priceModel h2 span {
    font-weight: 800;
}


.priceModel h3 {
    font-size: 1.3em;
    font-weight: 300;
    margin: 0;

}

.buttons {
    width: auto;
}

.buttons a, .buttons1 a {
    font-family: 'Montserrat';
    text-decoration: none;
    color: #5D8C88;
    border-radius: 25px;
    padding: 12px 30px;
    background-color: #A8D6C3 !important;
    display:block;
    width: fit-content;
    white-space: nowrap;
}

.wave {
    background-clip: border-box;
    background-size: 200% 100%;
    background-position-x: 0;
    background-position-y: 4em;
    transition: background-position-y 0.6s ease, color 0.25s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3E%3Cstop stop-color='%2357BBC1' stop-opacity='.25' offset='0%25'/%3E%3Cstop stop-color='%23015871' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z' transform='matrix(-1 0 0 1 1600 0)'/%3E%3C/svg%3E");
    animation: waveAnimation 4s infinite linear;
    background-repeat: repeat-x;
}

.wave:hover {
    background-color: #A8D6C3;

    background-position-x: 0;
    background-position-y: 0;
    color: white;

}


@keyframes waveAnimation {
    0% {
        background-position-x: 0%;
    }

    100% {
        background-position-x: 200%;
    }
}


@keyframes afterOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

:root {
    --afterAnimation: none;
    --afterContent: "";
}


/* /////////////// DETAILS \\\\\\\\\\\\\\\\ */

.ModelDetails {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6%;
    margin: 2%;
}

ul.firstDetails,
ul.secondDetails {
    flex: 1;
    text-align: start;
    padding: 0;
    justify-items: start;
    list-style-position: inside;
    list-style-type: none;
}

h4.titleDetails {
    font-size: 1.3em;
    font-weight: 700;
    margin: 2% 0;
}

.firstDetails li,
.secondDetails li {
    font-size: 1.3em;
    font-weight: 300;
    line-height: 32px;
}

.dotLi {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 1%;
}
span {
    padding-right: 10px;
    transform: translateY(7px);
}



/* CHANGE BOAT*/

.displayNone {
    display: none;
}

html .modelActive {
    display: flex !important;
    flex-direction: column;
}

.opacity1 {
    animation: opIn ease-in-out 0.6s forwards;
}

@keyframes opIn {
    0% {
        display: flex;
        opacity: 0.01;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opOut {
    from {
        opacity: 1;
        display: flex;
        /* o cualquier otro valor necesario */
    }

    to {
        opacity: 0;
        display: none;
    }
}


/* /////// Gallery \\\\\\\\\ */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
    align-items: center;
    height: 90%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    background: #eeede9;
}

.swiper-slide img {
    aspect-ratio: 2/1;
    object-fit: cover;
    width: 100%;
}

.imagesBot {
    width: 100%;
    margin: auto;
}

.thumbnails {
    display: flex;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    gap: 13px;
    margin: 1% 0;
}

/* /Scroll */
/* width */
.thumbnails::-webkit-scrollbar {
    width: 12px;
    height: 15px;
    cursor: pointer;

}

/* Track */
.thumbnails::-webkit-scrollbar-track {
    background: #8897c31f;
    border-radius: 10px;
}

/* Handle */
.thumbnails::-webkit-scrollbar-thumb {
    background: #a8d6c3;
    border-radius: 10px;
}

/* Handle on hover */
.thumbnails::-webkit-scrollbar-thumb:hover {
    background: #618f8b;
    box-shadow: inset 0 0 5px #5d8c88;
}


.activeThumbnail {
    opacity: 1 !important;
}


.thumbnails>div:hover {
    opacity: 1;
}

.thumbnails>div {
    cursor: pointer;
    opacity: 0.6;
}

.thumbnails>div img {
    object-fit: cover;
}

.swiper-slide img {
    aspect-ratio: 2/1;
    object-fit: cover;
    width: 100%;
}


html body .swiper-button-prev,
html body .swiper-button-next {

    font-size: 1.2em;
    font-weight: 700;
    background: #1112128c;
    padding: 2%;
    border-radius: 8px;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease-in-out;
}


html body .swiper-button-prev:hover,
html body .swiper-button-next:hover {
    transform: scale(0.8);
}

.buttons1 {
    margin: 2% auto;
}




/*/////////////RESPONSIVE \\\\\\\\\\\*/

@media screen and (max-width:1100px) and (min-width:880px){
.dotLi{
margin-bottom:0!important;	
    }
}

@media screen and (max-width: 1100px) and (min-width: 800px) {
    .buttonBoat {
        font-size: 1.9em;
        margin: 2% 0;
    }
    .containerModels {
        font-size: 1.2vw;
    }

    .thumbnails>div img {
        width: 110px;
        height: 110px;
    }
    .buttons1 {
        margin: 4% auto;
    }

    span {
        transform: translateY(8px);
    }
}

@media screen and (max-width: 800px) and (min-width: 500px) {
    
    
    .containerModels {
        font-size: 2vw;
        padding: 2% 5%;
    }

    .thumbnails>div img {
        width: 90px;
        height: 90px;
    }

    .priceModelContainer {
        border-radius: 23px;
        padding: 6% 4%;
        gap: 26px;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        margin: 2%;
    }

    .priceModel {
        text-align: center;
        display: flex;
        gap: 7px;
        flex-direction: column;
    }

    .priceModel h2 {
        font-size: 2.1em;
    }

    .ModelDetails {
        flex-direction: column;
        align-items: flex-end;
        text-align: center;
    }

    ul.firstDetails, ul.secondDetails {
        flex: none;
        text-align: start;
        padding: 0;
        justify-items: center;
        list-style-position: inside;
        width: 100%;
    }

    h4.titleDetails {
        font-size: 1.7em;
    }

    .firstDetails li,
    .secondDetails li {
        font-size: 1.6em;
    }

    .thumbnails::-webkit-scrollbar {
        height: 10px;
    }

    .swiper-slide img {
        aspect-ratio: 1/1;
    }

    .buttons1 {
        margin: 6% auto;
    }

    .buttonsModels {
        display: flex;
        width: 90%;
        justify-content: space-between;
        margin: 7% auto;
    }
}

@media screen and (max-width: 500px) {
    .containerModels {
        font-size: 3vw;
        padding: 2% 0%;
    }

    .buttons a {
        padding: 9px 14px;

    }

    .thumbnails>div img {
        width: 90px;
        height: 90px;
    }

    .priceModelContainer {
        border-radius: 23px;
        padding: 6% 4%;
        gap: 17px;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        margin: 2%;
    }

    .priceModel {
        text-align: center;
        display: flex;
        gap: 7px;
        flex-direction: column;
    }

    .priceModel h2 {
       font-size: 1.8em;
       white-space: nowrap;
    }
    html body .shippingText span {
        margin-bottom: 1.5em;
    }

    .buttonsModels {
        width: 100%;

    }

    .buttonBoat {
        font-size: 1.9em;
        margin: 8% auto;
    }

    .ModelDetails {
        flex-direction: column;
        align-items: flex-end;
        text-align: start;
        margin: 6%;
    }

    ul.firstDetails,
    ul.secondDetails {
        flex: none;
        text-align: start;
        padding: 0;
        justify-items: center;
        list-style-position: inside;
        width: 100%;
    }

    h4.titleDetails {
        font-size: 1.7em;
    }

    .firstDetails li, .secondDetails li {
        font-size: 1.6em;
    }

    .swiper-slide img {
        aspect-ratio: 1/1;
    }


    .thumbnails::-webkit-scrollbar {
        height: 10px;
    }

    .buttons1 {
        margin: 9% auto;
    }

    span {
        transform: translateY(10px);
    }
}