:root {
    --gris-clar: lightgray;
}

@media screen and (min-width: 601px) {
    .h3-responsive {
        font-size: 1.4rem;
    }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
    .h3-responsive {
        font-size: 1.2rem;
    }
}



.underline {
    text-decoration: underline;
}

.menu-salut {
    font-size: 1.5rem;
}

#mainHead .title {
    font-size: 3rem;
    color: var(--os-color-negre)
}

#mainHead {
    height: 200px;
    background-color: var(--os-color-negre);
}


.imatge-numero-seguiment {
    max-height: 400px;
    border-radius: 10px;
    padding: 20px;

}

.pagina {
    border-width: 1px;
    border-style: solid;
    border-color: #959595;
    background-color: white;
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.03);
}

.peu-imatge {
    padding-top: 20px;
    max-width: 400px;
    margin: auto;
    text-align: left;
}

circle {
    stroke: var(--os-color-negre);
    stroke-width: 2px;
    stroke-opacity: 1;
}

.pulse {
    fill: white;
    fill-opacity: 0;
    transform-origin: 50% 50%;
    animation-duration: 2s;
    animation-name: pulse;
    animation-iteration-count: infinite;
}

circle.no-pulse {
    display: none;
}

circle.deactivate {
    stroke: var(--gris-clar);
    fill: var(--gris-clar);
}



.status-dot {
    position: relative;
    text-align: center;
}

.svg-dot {
    z-index: 2;
    position: relative;
    display: block;
    margin: auto;
}

.time-line {
    background: var(--os-color-negre);
    height: 100%;
    z-index: 1;
    width: 3px;
    position: absolute;
    transform: translate(-1.25px, 15px);
    top: 0;
}

.time-line.off {
    background: var(--gris-clar);
}

.imatge-producte {
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 150px;
    background-position: center;
}

.sticky-offset {
    top: 70px;
    z-index: 1;
}

.contenidor-seguiment .lead {
    font-size: 18px;
}



#targeta-encarrec.card {
    overflow: hidden;
    border-color: var(--os-color-negre);
}

@media (max-width: 768px) {
    #targeta-encarrec.card {}
}

@media (max-width: 420px) {
    #targeta-encarrec.card {
        width: 100% !important;
    }

    #targeta-encarrec.card .salasexperience-tag {
        padding-top: 10px;
    }
}

#targeta-encarrec.card .card-img {
    border-radius: 0;
}

#targeta-encarrec.card .card-footer {
    background: none;
    border-top: none;
}

#targeta-encarrec.card .card-footer .media img {
    border: solid 3px rgba(255, 255, 255, 0.3);
}

#targeta-encarrec.card .card-footer .media {
    align-items: center;
}

#targeta-encarrec .align-end {
    align-self: flex-end;
    text-align: right;
}

.background-black {
    background-color: var(--os-color-negre);
}



@keyframes pulse {
    from {
        stroke-width: 3px;
        stroke-opacity: 1;
        transform: scale(0.3);
    }

    to {
        stroke-width: 0;
        stroke-opacity: 0;
        transform: scale(2);
    }
}