﻿:root {
    --blue: #1f8a90;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #4fa447;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #004f49;
    --secondary: #008e56;
    --success: #4fa447;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "IBM Plex Sans", sans-serif;
    --font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --hoverText: #a2c038;
    --button: #2eb2b9;
    --hoverAnchor: #0f547a;
    --borderGray: #d6d6d6;
    --backgroundGray: #d5d3d333;
    --backgroundGrayDark: #d5d3d3;
    --backgroundDark: #bbbbbb;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
    border-left: 1px solid #fff;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 3px;
}

html {
    font-size: 10px;
    font-family: sans-serif;
}

body {
    min-height: 100vh;
    font-size: 1.6rem;
    line-height: 1;
}

main {
    margin-top: 7rem;
    margin-bottom: 18rem;
    min-height: calc(100vh - 50rem);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h1 {
    font-family: "Quatro",sans-serif;
    font-size: 6rem;
    font-weight: 700;
}

h2 {
    font-family: "Quatro",sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
}

h3 {
    font-family: "Quatro",sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

p {
    font-family: "IBM Plex Sans",Arial;
    font-size: 1.6rem;
}

.page-title {
    color: var(--primary);
}

img {
    width: 100%;
    height: 100%;
}

.icon {
    display: inline-block;
}


/* Input */
input:not([type="checkbox"]), select, textarea {
    width: 100%;
    height: 35px;
    border: 1px solid var(--button);
    border-radius: 2rem;
    margin: 1rem 0 0 0;
    padding: 0.7rem 1rem;
    font-size: 1.6rem;
    background-color: #fff;
}

textarea {
    height: 30rem;
}

    input:not([type="checkbox"]):focus-visible,
    textarea:focus-visible {
        outline: 0.1rem solid var(--primary);
    }
/* END Input */

/* Buttons */
.aButton {
    display: inline-flex;
    padding: 0.9rem 2rem 1rem 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 4.75rem;
    background-color: var(--button);
    color: #fff;
    height: 4rem;
    white-space: nowrap;
}

.aButtonT {
    display: inline-flex;
    padding: 0.9rem 2rem 1rem 2rem;
    justify-content: center;
    align-items: center;
    border: 0.1rem solid var(--button);
    border-radius: 4.75rem;
    color: var(--button);
    height: 4rem;
    white-space: nowrap;
}

.bButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button);
    border-radius: 4.75rem;
    padding-left: 0;
    height: 4rem;
    width: 14.5rem;
    border: none;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.bButtonT {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid var(--button);
    background-color: transparent;
    border-radius: 4.75rem;
    padding-left: 0;
    height: 4rem;
    width: 14.5rem;
    color: var(--button);
    cursor: pointer;
    white-space: nowrap;
}



.dButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 47.5px;
    padding-left: 0px;
    height: 40px;
    width: 145px;
    cursor: pointer;
    color: var(--button);
    border: solid 1px var(--button);
    font-weight: normal;
    white-space: nowrap;
}

    .aButton svg,
    .aButtonT svg,
    .bButton svg,
    .dButton svg {
        transform: rotate(90deg);
        width: 15px;
        height: 15px;
        margin:0 5px 0 0;
    }

    .aButton svg,
    .aButtonT svg,
    .dButton svg {
        fill: var(--button);
    }
    .aButton svg,
    .bButton svg {
        fill:#fff;
    }



    .aButton:hover, .bButton:hover {
        background-color: var(--primary);
    }
        .aButton:hover svg, .bButton:hover svg, .dButton:hover svg {
            fill: #fff;
        }

        .aButtonT:hover, .bButtonT:hover {
            background-color: var(--button);
            color: #fff;
        }
            .aButtonT:hover svg, .bButtonT:hover svg {
                fill: var(--button);
            }


    .dButton:hover {
        background-color: var(--button);
        color: #fff;
    }



.backButon {
    color: var(--button);
}
    .backButon svg {
        transform: rotate(90deg);
        width: 15px;
        height: 15px;
        margin: 0 5px 0 0;
        fill: var(--button);
    }

.backButon:hover {
    color:var(--primary);
}
    .backButon:hover svg{
        fill: var(--primary);
    }


/* END Buttons */
/* Account Forms*/
.account__container {
    margin: 0 auto 7rem;
    width: 38rem;
    min-height: calc(100vh - 36.5rem);
    color: var(--button);
}

.account__form-title {
    margin: 0 0 3rem 0;
    color: var(--primary);
}

.account__container .signIn-bttn {
    right: -23.4rem;
}

.account__container a {
    color: var(--button);
}

.account__container form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 0 2.5rem 0;
}

.account__links {
    display: flex;
    justify-content: space-between;
}
/*END Account Forms*/

/* SWC */
.swC {
    margin-right: auto;
    margin-left: auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .swC {
        max-width: 540px;
        width: 540px;
        padding: 0 1rem;
    }
}

@media (min-width: 768px) {
    .swC {
        max-width: 720px;
        width: 720px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .swC {
        max-width: 960px;
        width: 960px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .swC {
        max-width: 1140px;
        width: 1140px;
        padding: 0;
    }
}
/* END SWC */


/* Product */
.products-list__item {
    display: flex;
    gap: 2rem;
}

.product {
    border-radius: 1rem;
    border: 0.1rem solid var(--backgroundGrayDark);
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

    .product:hover {
        border: 1px solid var(--button);
    }

.product__container-img {
    width: 100%;
    height: 25.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product__img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

    .product__img.second {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
    }

.product:hover .product__img.second {
    display: block;
}


.product__hasMultiple {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 2.4rem;
    height: 2.4rem;
}


.product__info {
    width: 100%;
    height: 109px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 0 2.4rem;
}

.product:hover .product__info {
    background-color: var(--button);
}

.product__name {
    color: #000;
    margin: 0 0 1.5rem 0;
}

.product__details {
    color: var(--button);
}

.product:hover .product__name,
.product:hover .product__details {
    color: #fff;
}
/* END Product */


/* Custom checks temporal */
.custom-checkbox input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    cursor: pointer;
}
/* _____________________ */



/* PRINT SETTINGS */
@media print {
    header,
    .top__actions,
    .breadcrumbs__list,
    .product__buttons-list,
    .gallery__overlay,
    .product__related-container,
    footer {
        display: none !important;
    }

    .product__gallery,
    .gallery__activeImg {
        margin: 0 !important;
    }

    .gallery__activeImg {
        margin-top: 5% !important;
        width: 70% !important;
        height: auto !important;
    }

    .product-info__title {
        font-size: 4rem;
    }

    .product__content {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 0 !important;
    }
}
/* _____________________ */
