﻿body {
    overflow-x: hidden;
    margin-top: 25px;
}
#carrosselFornecedores .item{
  margin: 3px;
}
#carrosselFornecedores .item img{
  display: block;
  width: 100%;
  height: auto;
}
.bannerLateral {
    border: solid #e9e9e9 1px;
    margin-bottom: 10px;
}
.bannerPromocoesSemanaLista {
    padding:10px; 
    display: block; 
    clear: both; 
    max-width: 70%; 
    margin-left: auto; 
    margin-right: auto;
}

.topoPedidoMinimo{
    width: 100%;
    height: 30px;
    background-image: url('/Content/images/fundoTopoAtacado.png');
    background-repeat: repeat-x;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    z-index: 15000;
}

.topoPedidoMinimo .aviso{
    width: 400px;
    max-width: 100%;
}

[wa-tooltip] {
    position: relative;
    cursor: default;
    &:hover

{
    &::before

{
    content: attr(wa-tooltip);
    font-size: 16px;
    text-align: center;
    position: absolute;
    display: block;
    right: calc(0% - 100px);
    left: null;
    min-width: 200px;
    max-width: 200px;
    bottom: calc(100% + 40px);
    transform: translate(-50%);
    animation: fade-in 500ms ease;
    background: #00E785;
    border-radius: 4px;
    padding: 10px;
    color: #ffffff;
    z-index: 1;
}

}
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

[wa-tooltip] {
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}