@import "helpers";

.tooltipDisponibilidade {
    display: flex;
    width: 70px;
    padding: 5px;
    margin-left: 2px;
    color: $textoLight;
    font: normal 12px $fontRegular;
    background: $success;
    text-align: center;
    border: none;
    border-radius: 0px;
    align-items: center;
    justify-content: center;

    &.danger {
        background-color: $error;
    }

    .seta {
        background: transparent;
        border: 5px solid $borders;
        border-width: 5px 5px 0px 0px;
        display: inline-block;
        height: 10px;
        left: 23px;
        position: absolute;
        top: -5px;
        transform: rotate(-45deg);
        width: 10px;
        display:none;
    }
}

.prd-guia{
    margin-bottom: 40px;
}

#prd-comp {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;

    button{
        display: block;
        outline: 0px;
        width: 100%;
        padding: 20px 10px;
        margin-right: 15px;
        color: $textoLight;
        font: normal 15px $fontMedium;
        text-align: center;
        border: none;
        border-radius: 0px;
        background-color: $highlight;
        @include transicao(0.4s ease-in-out);

        &:hover,&:focus {
            background-color: $success;
        }
    }
}