﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.card-lista-produtos {
}

    .card-lista-produtos a:first-child {
        text-decoration: none;
    }

        .card-lista-produtos a:first-child div.card .card-body {
        }

            .card-lista-produtos a:first-child div.card .card-body .card-title {
                color: #000000;
            }

            .card-lista-produtos a:first-child div.card .card-body .card-values {
                color: #000000;
            }

    .card-lista-produtos div.card {
        cursor: pointer;
    }

    .card-lista-produtos div.card-values div:first-child {
        height: 26px;
    }

.carrinho-item-fadeout {
    opacity: 0;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.carrinho-fadein-down {
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.35s ease;
    padding: 8px 12px;
}

    .carrinho-fadein-down.show {
        opacity: 1;
        transform: translateY(0);
    }


/* Cor padrão da timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
}

    /* Linha horizontal */
    .timeline::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 0;
        width: 100%;
        height: 4px;
        background: #003366;
    }

.timeline-item {
    text-align: center;
    width: 16%;
    position: relative;
}

.timeline-point {
    width: 20px;
    height: 20px;
    background: #003366;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* Texto */
.timeline-item p {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #003366;
}


/* -------------------------
   MODO VERTICAL (celular)
--------------------------*/
@media (max-width: 768px) {

    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }

        /* Linha vertical */
        .timeline::before {
            top: 0;
            left: 10px;
            width: 4px;
            height: 100%;
        }

    .timeline-item {
        width: 100%;
        margin-bottom: 40px;
        text-align: left;
    }

    .timeline-point {
        position: absolute;
        left: -20px;
    }
}

.section-title {
    font-size: 1.5rem; /* não parece h4 grande */
    font-weight: 600;
    /*border-left: 4px solid var(--magalu-blue);*/
    /*padding-left: 12px;*/
}

.nav > .nav-item .nav-link {
    padding-left: 0;
}

.nav > .nav-item + .nav-item {
    position: relative;
    padding-left: 1rem;
}

    .nav > .nav-item + .nav-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 14px;
        width: 1px;
        background-color: #dee2e6;
    }

.nav-link {
    font-weight: 500;
    font-size: .95rem;
}

    .nav-link:hover {
        text-decoration: underline;
    }