
/* VITRINA PYME */
body, html {
    overflow-x: hidden;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vitrinapyme {
    display: block !important;
    position: fixed;
    bottom: 0;
    right: 10px;
    width: 360px;
    height: 40px;
    z-index: 200;
    overflow: hidden;
    justify-content: center;
    border-radius: 6px 6px 0 0;
    background: rgb(255,0,0);
    background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(255,0,153,1) 100%);
}

.wrap-vitrina {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 5px 4%;
    width: 92%;
}

    .wrap-vitrina span {
        display: inline-block;
        float: left;
        border: 2px solid #fff;
        border-radius: 50%;
        padding: 1%;
        margin-right: 1%;
        font-size: 20px !important;
        color: #fff;
    }

.vitrina_text {
    float: left;
    width: 115px;
    margin: auto;
    font-size: 18px;
    font-style: oblique;
    line-height: 30px;
    color: #fff;
}

.vitrinapyme_list {
    display: inline-block;
    float: left;
    overflow: hidden;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    margin-top: 0;
    text-align: left;
    list-style: none;
    -webkit-animation: moveit 6s infinite; /* Safari 4+ */
    -moz-animation: moveit 6s infinite; /* Fx 5+ */
    -o-animation: moveit 6s infinite; /* Opera 12+ */
    animation: moveit 6s infinite;
}

.vitrinapyme_list_item {
    line-height: 33px;
    margin: 0;
}

@-webkit-keyframes moveit {
}

@keyframes moveit {
    0%, 12%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    16.66%, 30% {
        -webkit-transform: translate3d(0, -33%, 0);
        transform: translate3d(0, -33%, 0);
    }

    40%,60% {
        -webkit-transform: translate3d(0, -69%, 0);
        transform: translate3d(0, -69%, 0);
    }

    70%,80% {
        -webkit-transform: translate3d(0, -33%, 0);
        transform: translate3d(0, -33%, 0);
    }

    90%,100% {
        -webkit-transform: translate3d(0, 0%, 0);
        transform: translate3d(0, 0%, 0);
    }
}

.btnpyme {


    position: fixed;
    bottom: 0;
    right: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffff;
    padding: 5px 14px !important;
    border-radius: 4px 4px 0 0;
    -webkit-animation: colors 3s infinite; /* Safari 4+ */
    -moz-animation: colors 3s infinite; /* Fx 5+ */
    -o-animation: colors 3s infinite; /* Opera 12+ */
    animation: colors 3s infinite;
}

@-webkit-keyframes colors {
    0% {
        background-color: #ffcc00;
    }

    40%, 60% {
        background-color: #6600ff;
    }

    100% {
        background-color: #ffcc00;
    }
}

@keyframes colors {
    0% {
        background-color: #ffcc00;
    }

    40%, 60% {
        background-color: #6600ff;
    }

    100% {
        background-color: #ffcc00;
    }
}


@media only screen and (max-width: 580px) {
    .vitrinapyme {
        right: 0;
        width: 100%;
        height: 40px;
    }

    .btnpyme {
        right: 8px;
    }
}


@media only screen and (max-width: 320px) {
    .vitrina_text {
        width: 102px;
        margin: 0 !important;
        font-size: 16px;
    }

    .vitrinapyme_list {
        font-size: 16px;
    }
}