
/*--------------------*/
/* BASIC TYPOGRAPHY */
/*--------------------*/

:root {
    --basecolor: #d61318;
    --vermelhoescuto: #330000;
}

body, html {
    overflow-x: hidden;
    background-color: white;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    overflow-x: hidden !important;
    color: #838282;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #2f2f2f;
}

    a:focus {
        outline: none;
        text-decoration: none;
    }


h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    padding-bottom: 10px;
}

img {
    border: none;
}


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* change if the mask should have another color then white */
    z-index: 99999; /* makes sure it stays on top */
}




#avisos {
    margin-top: -40px
}

#marca {
    padding: 15px;
}

    #marca img {
        margin: auto auto auto auto;
        margin-top: 15px;
        margin-bottom: 5px;
        height: 160px;
        width: 240px;
    }

.loader {
    font-size: 10px;
    top: 300px;
    left: 45%;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

    .loader:before {
        width: 50%;
        height: 50%;
        border-radius: 100% 0 0 0;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
    }

    .loader:after {
        background: #fff;
        width: 75%;
        height: 75%;
        border-radius: 50%;
        content: '';
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }


/*scrol to top*/

.scrollToTop {
    background: #f9f9f9 none repeat scroll 0 0;
    border-radius: 50%;
    bottom: 60px;
    display: none;
    font-size: 25px;
    height: 55px;
    line-height: 50px;
    position: fixed;
    right: 50px;
    text-align: center;
    text-decoration: none;
    width: 55px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 999;
}

    .scrollToTop:hover,
    .scrollToTop:focus {
        color: #fff;
        text-decoration: none;
        outline: none;
    }

/*#region Cadastro Cliente*/

#cadastrocliente {
    background-color: #eee;
}


.form-cadastro-cli {
    padding: 25px;
    max-width: 700px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
}


    .form-cadastro-cli .form-cadastro-input {
        width: 75%;
        margin: auto;
    }

    .form-cadastro-cli label {
        font-size: 0.8rem;
        color: #002699;
    }

.form-cadastro-input .form-group .text-danger {
    font-size: 0.9rem;
    color: darkred;
    font-weight: 700;
}

.form-cadastro-cli input {
    font-size: 0.9rem;
    color: #262626;
    font-weight: 700;
}

.form-cadastro-cli h5 {
    display: flex;
    flex-direction: row;
    color: #cc3300;
}

    .form-cadastro-cli h5:before {
        content: "";
        flex: 1 1;
        border-bottom: 2px solid #cc3300;
        margin: 10px;
    }

    .form-cadastro-cli h5:after {
        content: "";
        flex: 1 1;
        border-bottom: 2px solid #cc3300;
        margin: 10px;
    }

/*#endregion*/
/*#region Carrinho Vazio*/
.carrinho-vazio {
}

    .carrinho-vazio hr {
        position: relative;
        top: 20px;
        border: none;
        height: 12px;
        background: black;
    }

/*#endregion*/

/*#region Ficha de Produto*/

.catalogo-card {
    /* height: 500px;*/
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    margin: 5px;
    padding: 0px 0px 15px;
}

.detalhe-card-imgprom {
    position: absolute;
    height: 120px;
    width: 120px;
    right: 0px;
    z-index: 10;
    margin-left: auto;
}

.catalogo-card-verpreco {
    border-color: var(--basecolor);
    border-style: solid;
    background-color: whitesmoke;
    border-radius: 10px;
    border-width: 1px;
    margin: auto;
    width: 90%;
    text-align: center;
}

    .catalogo-card-verpreco p {
        margin: 0px;
        padding: 5px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-radius: 10px;
        color: var(--basecolor);
        font-size: 1rem;
        font-weight: 600;
    }

    .catalogo-card-verpreco a:hover p {
        background-color: var(--basecolor);
        color: white;
    }

    .catalogo-card-verpreco a:hover a {
        text-decoration: none;
    }

.catalogo-card-imgprom {
    position: absolute;
    height: 75px;
    width: 75px;
    right: 0px;
    margin-left: auto;
}

.catalogo-nomepro {
    padding: 0 10px;
    text-align: center;
}

    .catalogo-nomepro a {
        text-decoration: none;
    }

    .catalogo-nomepro h6 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        color: #424242;
        height: 70px;
    }


.catalogo-img img {
    object-fit: scale-down;
    height: 150px;
    width: 50%;
    margin-top: 3px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 200px;
    padding: 0.50rem;
}



.card-preco {
    font-weight: 600;
    color: darkblue;
    margin: 0;
    text-align: start;
    font-size: 1.1rem;
}

.card-avista {
    font-weight: 200;
    color: darkred;
    text-align: start;
    margin: 0;
    font-size: 0.8rem;
}


.card-prazo {
    font-weight: 300;
    color: dimgray;
    margin-top: 0;
    text-align: start;
    font-size: 0.7rem;
}

.card-avista strong {
    font-weight: bold;
    color: darkred;
    text-align: start;
    font-size: 1.2rem;
}

.card-preco-old {
    text-decoration: line-through;
    color: #595959;
}

.catalogo-quant {
    margin: 10px 0px 0px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    height: 38px;
}

    .catalogo-quant input {
        border: 1.0px solid #ddd;
        border-radius: 10px;
        text-align: center;
        padding: 0;
        font-size: 12px;
        outline: 0;
        margin: 0px;
        margin-right: 0.4rem;
    }

    .catalogo-quant .btn {
        border: 1.2px solid #ddd;
        border-radius: 10px;
        padding: 0.15rem 0.9rem;
        outline: 0;
        font-size: 12px;
        margin-right: 0.2rem;
        margin-bottom: 0rem;
        height: 35px;
    }

    .catalogo-quant input {
        width: 55px;
        height: 35px;
    }

    .catalogo-quant .btn {
        cursor: pointer;
        color: #fff;
    }

        .catalogo-quant .btn:first-of-type {
            background: #256eff;
        }

        .catalogo-quant .btn:last-of-type {
            background: rgb(64,205,40);
        }

        .catalogo-quant .btn:hover {
            opacity: 0.9;
        }

/*#endregion*/


/*Trackin*/

.track {
    position: relative;
    background-color: #ddd;
    height: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    margin-top: 50px
}

    .track .step {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 25%;
        margin-top: -18px;
        text-align: center;
        position: relative
    }

        .track .step.active:before {
            background: #FF5722
        }

        .track .step::before {
            height: 7px;
            position: absolute;
            content: "";
            width: 100%;
            left: 0;
            top: 18px
        }

        .track .step.active .icon {
            background: #ee5435;
            color: #fff
        }

    .track .icon {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        position: relative;
        border-radius: 100%;
        background: #ddd
    }

    .track .step.active .text {
        font-weight: 400;
        color: #000
    }

    .track .text {
        display: block;
        margin-top: 7px
    }



/*#region WhatsApp*/

.float-whast {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/*#endregion*/

/*#region Pedido*/


.title-carrinho {
    margin-bottom: 5vh;
    margin-top: 10px;
}

.img-carrinho {
    width: 72px;
    height: 72px;
    object-fit: scale-down;
    object-position: center;
    align-items: center
}


.carrinho-nomeprod {
    text-wrap: normal;
    margin-top: 1px;
    font-size: 1.2rem;
    color: red;
}

@media(max-width:480px ) {
    carrinho-nomeprod {
        font-size: 0.8rem;
    }
}

.btn-finalizar {
    background-color: #13aa52;
    border: 1px solid #13aa52;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .btn-finalizar:hover {
        box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
        transform: translateY(-2px);
    }

@media (min-width: 768px) {
    .btn-finalizar {
        padding: 10px 30px;
    }
}

.btn-pgto-item {
}

    .btn-pgto-item img {
        width: 200px;
        height: 30px;
        object-fit: contain
    }

.pgto-select select {
    font-size: 13px !important;
    text-overflow: ellipsis;
    font-weight: bold
}

    .pgto-select select option {
        font-size: 13px;
    }


.btn-finaliza-pg {
    background-color: initial;
    background-image: linear-gradient(-180deg, #B30000, #E62C03);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
    height: 35px;
    line-height: 35px;
    outline: 0;
    font-size: 13px;
    overflow: hidden;
    padding: 0 15px;
    pointer-events: auto;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: top;
    white-space: nowrap;
    width: 65%;
    z-index: 9;
    border: 0;
    transition: box-shadow .2s;
}

    .btn-finaliza-pg:hover {
        box-shadow: rgba(253, 76, 0, 0.5) 0 3px 8px;
        color: #FFFFFF;
    }

.btn-cancel-pg {
    background-image: linear-gradient(#d9d9d9,#e7e9ec);
    border-color: #adb1b8 #a2a6ac #8d9096;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    box-shadow: rgba(255,255,255,.6) 0 1px 0 inset;
    box-sizing: border-box;
    color: #0f1111;
    cursor: pointer;
    display: inline-block;
    font-family: "Amazon Ember",Arial,sans-serif;
    font-size: 12px;
    height: 30px;
    outline: 0;
    overflow: hidden;
    padding: 0 8px;
    margin: 5px;
    margin-left: auto;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

    .btn-cancel-pg:active {
        border-bottom-color: #a2a6ac;
    }

        .btn-cancel-pg:active:hover {
            border-bottom-color: #a2a6ac;
        }

    .btn-cancel-pg:hover {
        border-color: #a2a6ac #979aa1 #82858a;
    }

    .btn-cancel-pg:focus {
        border-color: #e77600;
        box-shadow: rgba(228, 121, 17, .5) 0 0 3px 2px;
        outline: 0;
    }


.card-finaliza-ped {
    border-radius: 10px;
    border-color: red;
}

.card-finaliza-titulo {
    background-color: #ffe6e6;
    padding: 8px;
    border-radius: 10px 10px 0px 0px;
}

    .card-finaliza-titulo h6 {
        color: #990000;
        font-size: 12px;
    }

    .card-finaliza-titulo i {
        color: #990000;
        font-size: 16px;
        margin-right: 5px;
    }

/*#endregion*/

/*#region Pedido Confirmação*/

.pedido-conf {
    background-color: #fff;
    padding: 2rem;
    width: 75%;
    margin: auto;
}

    .pedido-conf img {
        width: 200px;
    }

.pedido-conf-titulo {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    color: rgba(0,0,0,.7);
}

.pedido-conf-cardinfo {
    background-color: #dce4d8;
    padding: 3rem;
    border-color: #8ab377;
    border-width: 2px;
    border-style: solid;
}

    .pedido-conf-cardinfo span {
        color: #2E501E;
        font-size: large;
    }

.pedido-conf-titulo2 {
    margin-top: 2rem;
    font-size: 1.2rem;
    text-align: left;
    font-weight: 400;
    color: dimgray;
}

.pedido-conf-aprov {
    width: 75%;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    background-color: #54a02c;
    color: white;
}

    .pedido-conf-aprov i {
        margin: 8px;
    }

.pedido-conf-detalhe {
    margin-top: 1rem;
    border-style: solid;
    border-color: gray;
    border-width: 1px;
    text-align: start;
    padding: 10px;
}

    .pedido-conf-detalhe p {
        margin: 1px;
    }

    .pedido-conf-detalhe strong {
        color: black;
    }

/*#endregion*/

/*#region Botão Conta User*/

.conta-user .btn a {
    color: white;
}

.conta-user .dropdown-menu {
    border-radius: 10px;
    padding: 15px;
}

.conta-user-entrar {
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: green;
    text-align: center;
    padding: 2px;
    color: green;
}

    .conta-user-entrar .dropdown-item {
        display: flex;
        align-items: center;
    }

    .conta-user-entrar p {
        margin: auto;
        font-size: 0.9rem;
    }

    .conta-user-entrar i {
        margin-left: 15px;
    }

    .conta-user-entrar a:hover {
        background-color: green;
    }

        .conta-user-entrar a:hover p {
            color: white;
        }

        .conta-user-entrar a:hover i {
            color: white;
        }

.conta-user-naocliente {
    width: 100%;
    text-align: center;
    padding: 10px;
    display: flow;
}

    .conta-user-naocliente hr {
        color: #ff471a;
        width: 75%;
        height: 2px;
    }

    .conta-user-naocliente p {
        color: #ff471a;
        width: 100%;
        font-weight: 600;
        padding: 15px;
        height: 2px;
    }

.conta-user-cadastrar {
    background-color: #e62e00;
    color: whitesmoke;
    font-size: 0.9rem;
    width: 100%;
    padding: 0px;
}

    .conta-user-cadastrar .dropdown-item {
        display: flex;
        align-items: center;
    }

    .conta-user-cadastrar p {
        color: white;
        margin: auto;
        font-size: 0.9rem;
    }

    .conta-user-cadastrar i {
        color: white;
        margin: 10px;
    }

    .conta-user-cadastrar a:hover {
        background-color: #ff3300;
    }



.conta-user-titulo {
    background-color: #ff471a;
    padding: 5px;
    color: white;
    font-weight: 600;
}

.conta-user-msg {
    color: #e62e00;
    font-weight: 700;
    text-align: center;
    margin: 10px;
    padding: 10px;
    font-size: 1.2rem;
}

.conta-user hr {
    width: 75%;
}

.conta-user-nome {
    font-size: 0.9rem;
    margin: 10px;
}

.conta-user-sair {
    text-align: center;
    border-style: solid;
    border-width: 1px;
    margin: 25px;
    width: 180px;
    padding: 10px;
}

    .conta-user-sair i {
        margin-left: 10px;
    }







/*#endregion*/


.title-area {
    display: inline;
    float: left;
    padding: 0 0px;
    position: relative;
    text-align: center;
    width: 100%;
}

.title2-area {
    display: inline;
    float: left;
    padding: 200 180px;
    text-align: center;
    width: 100%;
}

.tittle {
    color: #3a3a3a;
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 0px;
    padding-bottom: 10px;
}

.tittle-line {
    background-color: #898989;
    display: inline-block;
    height: 2px;
    margin-bottom: 12px;
    width: 60px;
}

.header-navbar {
    background: var(--basecolor);
}

#header-menu .header-navbar {
    padding: 0px;
    top: 0;
    padding: 5px;
}

#header-menu .navbar-toggler {
    padding-left: 10px;
    color: white;
}

    #header-menu .navbar-toggler i {
        padding: 10px;
    }


#header-menu .navbar-brand {
    padding-left: 10px;
    color: white;
}

/*.header-menu {
    background: linear-gradient(0deg, rgba(126,67,44,1) 0%, rgba(234,7,36,1) 100%);
}
*/

/*#region Menu Superior*/
#title-top .navbar {
    background-color: var(--basecolor);
}


.logo {
    width: 180px;
    object-fit: scale-down;
    margin-right: 0px;
    margin-top: 0px;
    padding: 0;
}

.logo_phone {
    position: center;
    right: 50%;
    width: 120px;
    transform: translateX(50%);
}
    /*#region Menu Superior*/
    .logo_phone img {
        width: 100%;
        object-fit: scale-down;
        margin-top: 0px;
        padding: 0;
    }

/* .logo_phone img {
     display:none;
 }*/

.logo img {
    height: 100%;
    width: 100%;
}

#h2eader {
    float: left;
    display: inline;
    width: 100%;
}

.h2eader-top {
    background-color: #333;
    display: none;
    float: left;
    width: 100%;
    padding: 20px 0;
}


.icon-carrinho {
    color: white;
    font-size: 1.6rem;
}

    .icon-carrinho i {
        color: white;
    }

    .icon-carrinho span {
        color: darkred;
        background-color: whitesmoke;
        font-size: 0.8rem;
        position: relative;
        top: -20px;
        left: -15px;
    }

    .icon-carrinho .badge {
    }

#search {
    margin: 0 auto;
    width: 70%;
}

    #search input {
        background-color: inherit;
        border: medium none;
        color: #fff;
        float: left;
        height: 100%;
        text-align: center;
        width: 95%;
    }

    #search button[type="submit"] {
        background: inherit;
        border: medium none;
        color: #fff;
        height: 20px;
        width: 30px;
    }

#search-icon {
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    position: absolute;
    right: 8%;
    text-align: center;
    top: 20px;
    width: 35px;
}

.h2eader-bottom {
    background-color: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid #e4e4e4;
    color: #949494;
    font-size: 12px;
    height: 40px;
    display: inline;
    float: left;
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
    transition: all 0.3s ease 0s;
}


.badged {
    padding: 0 5px;
    background-color: darkred;
    color: white;
    font-size: 0.8rem;
    font-weight: normal;
    border-radius: 50px;
    position: relative;
    top: -50px;
    right: -40px;
    width: 1.4rem;
    height: 1.4rem;
}


.h2eader-contact {
    display: inline;
    float: left;
    width: 100%;
}

    .h2eader-contact ul {
    }

        .h2eader-contact ul li {
            border-left: 1px solid #e4e4e4;
            display: inline-block;
            float: left;
            margin-right: 10px;
            padding: 10px 12px;
        }

            .h2eader-contact ul li:last-child {
                border-right: 1px solid #e4e4e4;
            }

.phone {
    font-size: 14px;
    text-align: center;
}

    .phone i {
        margin-right: 5px;
        color: white;
        font-size: 1.2rem;
    }

    .phone p {
        margin-right: 5px;
        color: white;
        font-size: 1rem;
    }


.conta-user {
}

    .conta-user a {
        color: whitesmoke;
        font-size: 1.2rem;
    }

    .conta-user .dropdown-menu a {
        color: dimgray;
        font-size: 1rem;
    }

.h2eader-login {
    display: inline;
    float: left;
    text-align: right;
    width: 100%;
}

/*#endregion*/

/*#region Tela de Login*/

.login-input {
    margin-top: 0px;
}

    .login-input .card {
        backdrop-filter: blur(50px);
        background: hsla(0, 0%, 100%, 0.55);
    }

.login-row {
    display: block;
    max-width: 450px;
    margin: auto;
    background-color: #eee;
    border-radius: 15px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}


.login-logo {
    margin-top: -130px;
    z-index: 1;
}

    .login-logo img {
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }

.login-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: .50;
    filter: blur(1px)
}

    .login-img img {
        height: 150px;
        object-fit: cover;
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    }

.login-sair {
    border-style: solid;
    border-width: 1px;
    border-color: dimgray;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    padding: 10px 20px;
}



/*#endregion*/
.footer-box {
    text-align: left;
    font-size: 15px;
}

    .footer-box a:hover,
    .footer-box a:focus {
        text-decoration: none;
        outline: none;
    }

#signup-content {
    display: none;
}

#signup-content {
    border-radius: 0;
}

    #signup-content .modal-title {
        font-size: 20px;
    }

        #signup-content .modal-title i {
            margin-right: 5px;
        }

    #signup-content .form-group input {
        height: 35px;
        border-radius: 0;
    }

    #signup-content .form-control:focus {
        box-shadow: none;
    }

.signupbox span {
    display: inline-block;
    font-size: 15px;
    margin-bottom: 10px;
}

    .signupbox span a:hover {
        text-decoration: none;
        outline: none;
    }


/*#endregion*/


#menu-area {
    float: left;
    display: inline;
    width: 100%;
}

.less-padding {
    padding: 30px 20px !important;
}

/*#region Menu Lateral Filtro*/


#sidebar {
    float: left;
    width: 250px;
    padding: 0px 0 0 1px;
    border-right: 1px solid #eee;
}

    #sidebar h3 {
        color: #262626;
        text-transform: uppercase;
        font-size: 8px;
        font-weight: 700;
        padding: 15px 0 5px 5px;
        letter-spacing: 1px;
        clear: both;
    }

    #sidebar .checklist {
        padding: 3px;
    }


.checklist ul li {
    font-size: 11px;
    color: #333333;
    font-weight: 400;
    list-style: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 6px 0px 3px 4px;
}


/*#endregion*/

/*#region Lista Produtos*/
.product-list-filters .checkbox {
    font-size: 0.8rem;
    margin: 0px;
}

    .product-list-filters .checkbox input {
        color: red;
    }



/*.catalogo-itens .box :hover {
    box-shadow: 0px 0px 5px 2px #ff9999;
    border: 1px solid rgba(255, 255, 255, 0.454);
    border-radius: 15px;
}*/

.product-list-filters .filter-title a {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.checkbox-list input {
    color: red;
    font-size: 0.4rem;
}


.product-list-filters h3 {
    margin-top: 20px;
}

.product-list-display-options {
    margin-top: 1rem;
}

    .product-list-display-options label {
        font-weight: normal;
    }

    .product-list-display-options .show-option {
        float: right;
        padding-right: 0;
        margin-left: 3px;
    }

        .product-list-display-options .show-option i {
            color: #fff;
            width: 37px;
            height: 37px;
            padding: 6px;
            font-size: 24px;
            line-height: 30px;
            text-align: center;
            background: #18ba9b;
            display: inline-block;
        }

    .product-list-display-options .sort-by {
        float: right;
    }

    .product-list-display-options .pagination-option {
        float: right;
    }

.product-list-filters hr {
    width: 75%;
    color: blue;
}

.filtro-grupo {
    align-items: center;
    display: flex;
    margin: auto;
    justify-content: center;
}

    .filtro-grupo .filtro-input {
        border-style: solid;
        border-width: 1px;
        padding: 0px 0px 0px 0px;
        border-color: var(--basecolor);
        border-radius: 10px;
        width: 80%;
    }

    .filtro-grupo input {
        margin: 0px;
        padding: 0px;
        height: 28px;
        text-align: center;
        border-radius: 5px;
        border: none;
        font-size: 12px;
        width: 65%
    }

    .filtro-grupo .filtro-btn-open {
        border-radius: 10px 0px 0px 10px;
        background-color: var(--basecolor);
        margin: 0px;
        font-size: 0.8rem;
        color: white;
        width: 10%
    }

.filtro-btn-find {
    margin-left: auto;
    padding: 7px 5px;
    width: 20%;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: white;
    border-radius: 0px 10px 10px 0px;
    border: 0px;
    font-weight: 500;
    font-size: 10px;
    background-color: var(--basecolor);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.filtro-grupo input:focus {
    outline: none;
}

.filtro-btn-find:hover {
    background-position: right center;
    /* change the direction of the change here */
    background-color: #b30000;
    text-decoration: none;
}

.filtro-grupo .filtro-btn-open:hover {
    background-color: #b30000;
}

.filtro-btn-closed {
    display: block;
    border-style: solid;
    border-width: 1px;
    color: #404040;
    border-color: #404040;
    margin-left: auto;
    padding: 3px;
    margin-right: 25px;
}

    .filtro-btn-closed :hover {
        background-color: #a6a6a6;
    }




/*#endregion*/
/*#region Banner Novo Cadastro*/
#call-to-action {
    display: inline;
    float: left;
    position: relative;
    width: 100%;
}

.call-to-overlay {
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.call-to-content {
    display: inline;
    float: left;
    padding: 50px 0;
    text-align: center;
    width: 100%;
}

    .call-to-content h2 {
        color: #fff7f7;
        font-size: 45px;
    }

    .call-to-content a {
        display: inline-block;
        float: none;
        padding:15px;
        margin-top: 30px;
    }

    .call-to-content a :hover {
        color:white;
    }

/*#endregion*/

/*#region Rodape*/
#footer {
    background-color: #242424;
    display: inline;
    float: left;
    margin-top: -6px;
    width: 100%;
}

.footer-top {
    display: inline;
    float: left;
    width: 100%;
}

.footer-top-area {
    display: inline;
    float: left;
    text-align: center;
    width: 100%;
}

.footer-logo {
    display: inline-block;
}

.footer-social {
    display: inline;
    float: left;
    margin: 40px 0px;
    width: 100%;
}

    .footer-social a {
        border: 1px solid #505050;
        border-radius: 50%;
        color: #b8b8b8;
        display: inline-block;
        font-size: 18px;
        height: 48px;
        line-height: 48px;
        margin: 0 9px;
        text-align: center;
        width: 48px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

        .footer-social a.facebook:hover {
            background-color: #2abf30;
            border-color: #2abf30;
            color: #fff;
        }

        .footer-social a.twitter:hover {
            color: #fff;
            background-color: #00aced;
            border-color: #00aced;
        }

        .footer-social a.google-plus:hover {
            color: #fff;
            background-color: #dd4b39;
            border-color: #dd4b39;
        }

        .footer-social a.youtube:hover {
            color: #fff;
            background-color: #bb0000;
            border-color: #bb0000;
        }

        .footer-social a.linkedin:hover {
            color: #fff;
            background-color: #007bb5;
            border-color: #007bb5;
        }

        .footer-social a.dribbble:hover {
            color: #fff;
            background-color: #ea4c89;
            border-color: #ea4c89;
        }

.footer-bottom {
    display: inline;
    border-top: 1px solid #434343;
    float: left;
    padding: 40px 0;
    width: 100%;
    text-align: center;
}

    .footer-bottom p {
        color: #fff;
        font-size: 18px;
        margin-bottom: 0px;
    }

/*#endregion*/

/*#region Pagina Erro*/

#error-page {
    background-color: #CEFFFE;
    display: inline;
    float: left;
    padding: 150px 0;
    width: 100%;
}

.error-page-area {
    display: block;
    margin: 0 auto;
    width: 670px;
}

.error-no-area {
    background-color: #fff;
    display: inline;
    float: left;
    padding: 20px;
    width: 100%;
}

.error-no {
    display: inline;
    float: left;
    padding: 50px;
    text-align: center;
    width: 100%;
}

    .error-no h2 {
        color: #727272;
        font-family: "Open Sans",sans-serif;
        font-size: 60px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .error-no p {
        font-family: "Pacifico",cursive;
        font-size: 80px;
        margin-bottom: 0;
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

.error-message {
    display: inline;
    float: left;
    margin-top: 70px;
    text-align: center;
    width: 100%;
}

    .error-message h4 {
        color: #4b8181;
        font-family: "Pacifico",cursive;
        font-size: 65px;
        line-height: 65px;
        margin-bottom: 50px;
    }

    .error-message p {
        color: #4b8181;
        font-size: 30px;
        padding: 0 138px;
    }

        .error-message p a {
            color: #4b8181;
        }


.wc-table {
    display: inline-block;
    text-align: center;
}

    .wc-table li {
        float: left;
        width: 25%;
    }

.single-wc-content {
    float: left;
    display: inline;
    width: 100%;
}

    .single-wc-content span {
        border-radius: 100%;
        display: inline-block;
        font-size: 25px;
        height: 117px;
        line-height: 117px;
        text-align: center;
        width: 117px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .single-wc-content .wc-tittle {
        color: #525252;
        text-transform: uppercase;
        font-size: 18px;
        font-weight:600;
        border-top: 1px solid #bbbbbb;
        margin-top: 5px;
        padding-bottom: 10px;
    }

    .single-wc-content p {
        color: #7d7d7d;
        font-size: 15px;
        padding: 12px;
    }

    .single-wc-content .phone  {       
        font-size: 1rem; 
        margin-top:10px;
    }

    .single-wc-content .phone i {
        color:darkgray
    }

    .single-wc-content .mail {
        font-size: 0.8rem;
    }

    .single-wc-content:hover .wc-icon {
        color: #fff;
    }

    .single-wc-content:hover .wc-tittle {
        padding-bottom: 16px;
    }


/*#endregion*/


@media(width > 767px) {
    .header-content {
        padding: 50px;
    }

        .header-content h2 {
            font-size: 50px;
            line-height: 50px;
        }

    #header-menu .conta-user {
        display: none;
    }

    #header-menu .icon-carrinho {
        display: none;
    }

    .catalogo-card {
        /* height: 480px;*/
    }

    #sidebar {
        display: inline-block;
        margin-right: 5px;
        width: 25%;
    }

    .form-cadastro-cli .form-cadastro-input {
        width: 75%;
        margin: auto;
    }

    .catalogo-area-itens {
        width: 72%;
    }

    .catalogo-nomepro h6 {
        height: 50px;
    }


    .catalogo-itens {
        width: 33%;
    }

    #header-menu .logo_phone {
        display: none;
    }

    .knowmore-btn {
        font-size: 16px;
        padding: 18px 20px;
    }

    .download-btn {
        font-size: 16px;
        padding: 18px 20px;
    }

    .header-btn-area {
        margin-top: 20px;
    }

    .filtro-btn-closed {
        display: none;
    }

    .search-area {
        width: 3%;
    }


    .less-padding {
        padding: 30px 7px !important;
    }

    .search-area input[type="text"]:focus {
        width: 630px;
    }

    .single-wc-content .wc-tittle {
        font-size: 15px;
    }

    .about-left {
        height: 328px;
        width: 100%;
    }

        .about-left img {
            width: 100%;
        }

    .about-right .tittle {
        padding-bottom: 10px;
        font-size: 28px;
    }

    .about-right .tittle-line {
        margin-bottom: 15px;
    }

    .about-right p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .about-btn-area {
        margin-top: 0;
    }

    .call-to-content h2 {
        font-size: 30px;
    }


    #team {
        display: inline;
        padding: 70px 0px;
        float: left;
        width: 100%;
    }


    .team-area {
        display: inline;
        float: left;
        padding-top: 0px;
        width: 100%;
    }

    .team-content {
        display: inline;
        float: left;
        margin-top: 0px;
        width: 100%;
    }

    .team-grid {
        margin: 0px 0 0 0;
        padding: 0;
        list-style: none;
        display: block;
        text-align: center;
        width: 100%;
    }

        .team-grid img {
            display: block;
            margin-left: auto;
            margin-right: auto;                    
            object-fit: cover;           
            height: 110px;
        }

        .team-grid li {
            display: inline-block;
            height: 170px;
            margin: 10px 15px;
            width: 20%;
        }

    /* .team-grid li {
        height: 100px;
        margin: 10px 0px;
        width: 20%;
    }*/

    .team-item {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: relative;
        cursor: default;
        box-shadow: inset 0 0 0 16px rgba(255,255,255,0.6), 0 1px 2px rgba(0,0,0,0.1);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

  

    .team-info p {
        font-size: 10px;
    }

    .team-info a {
        font-size: 15px;
        height: 25px;
        width: 25px;
    }

    .team-address p {
        font-size: 16px;
    }

    .team-address span {
        font-size: 14px;
    }

    .title-area {
        padding: 0 100px;
    }

    .single-portfolio {
        width: 22.5%;
    }

    .portfolio-social-icon {
        padding: 85px 50px;
    }

    .portfolio-title h4 {
        font-size: 13px;
    }

    .counter-area {
        padding: 90px 0;
    }

    .single-counter {
        margin-bottom: 30px;
    }

    .single-price .price-amount {
        font-size: 25px;
    }

    .single-price p {
        font-size: 15px;
    }

    .single-price a span {
        padding: 12px 35px;
    }

    .single-from-blog {
        margin-bottom: 30px;
    }

    .blog-right {
        margin-top: 25px;
    }

    .instagram-feed .slick-prev {
        left: 40%;
    }

    .instagram-feed .slick-next {
        right: 41%;
    }

    .error-message h4 {
        font-size: 50px;
        line-height: 50px;
    }

    .error-message p {
        font-size: 25px;
        padding: 0 50px;
    }
}


@media(max-width:767px ) {


    #header-menu .conta-user {
        margin-left: auto;
        margin-right: 10px;
    }

    #header-menu .icon-carrinho {
        margin-right: 10px;
    }


    .form-cadastro-cli .form-cadastro-input {
        width: 100%;
        margin: auto;
    }

    .catalogo-area-itens {
        width: 95%;
        margin: auto;
    }

    .catalogo-itens {
        width: 33%;
    }



    #title-top {
        display: none;
    }

    #h2eader {
        float: left;
        display: inline;
        width: 100%;
    }

    .badged {
        padding: 0 5px;
        background-color: darkred;
        color: white;
        font-size: 0.8rem;
        font-weight: normal;
        border-radius: 50px;
        position: relative;
        top: -50px;
        right: -40px;
        width: 1.4rem;
        height: 1.4rem;
    }

    .h2eader-contact {
        display: inline;
        float: left;
        width: 100%;
    }

        .h2eader-contact ul {
        }

            .h2eader-contact ul li {
                border-left: 1px solid #e4e4e4;
                display: inline-block;
                float: left;
                margin-right: 10px;
                padding: 10px 12px;
            }

                .h2eader-contact ul li:last-child {
                    border-right: 1px solid #e4e4e4;
                }


    .icon-carrinho {
        font-size: 1.2rem;
        padding: 0px;
    }

    .h2eader-login {
        display: inline;
        float: left;
        text-align: right;
        width: 100%;
    }

    .filtro-btn-open {
        display: inline;
    }

    .filtro-btn-closed {
        display: block;
    }

    #sidebar {
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0px;
        left: 0;
        border-style: none;
        background-color: #d61318;
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    }

        #sidebar h3 {
            color: whitesmoke;
            text-transform: uppercase;
            font-size: 8px;
            font-weight: 600;
            padding: 15px 0 5px 5px;
            letter-spacing: 1px;
            clear: both;
        }

        #sidebar .checklist {
            padding: 10px;
        }


    .checklist ul li {
        font-size: 11px;
        font-weight: 300;
        color: whitesmoke;
    }
}

@media(max-width:480px ) {
    .header-content {
        padding: 20px;
    }

        .header-content h2 {
            font-size: 25px;
            line-height: 25px;
        }

            .header-content h2 span {
                font-weight: normal;
                line-height: 43px;
            }

    .knowmore-btn {
        font-size: 14px;
        padding: 10px 15px;
    }


    .catalogo-area-itens {
        width: 90%;
        margin: auto;
    }

    .catalogo-itens {
        width: 50%;
    }


    .catalogo-img img {
        height: 150px;
        width: 75%;
    }

    .download-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .title-area {
        padding: 0 15px;
    }

    .search-area input[type="text"] {
        font-size: 15px;
    }

        .search-area input[type="text"]:focus {
            height: 35px;
            top: 32px !important;
            width: 350px;
        }

    .call-to-content h2 {
        font-size: 20px;
    }

    .team-grid {
        padding: 0 75px;
    }

        .team-grid li {
            height: 100px;
            margin: 0px 0 30px;
            width: 100%;
        }

    .team-info {
        padding: 70px 18px;
    }

        .team-info p {
            font-size: 18px;
        }

    .single-portfolio {
        margin-left: 8px;
        width: 100%;
    }

    #counter img {
        height: 354px;
        width: 100%;
    }

    .counter-area {
        padding: 40px 0;
    }



    .single-counter > span {
        font-size: 50px;
        text-align: center;
        width: 100%;
    }

    .single-counter .counter-count {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }

    .single-price .price-header {
        font-size: 20px;
        padding: 10px 0;
    }

        .single-price .price-header::after {
            bottom: -43%;
        }

    .standard-price .price-header {
        padding: 20px 0;
    }

        .standard-price .price-header::after {
            bottom: -32%;
        }

    .single-price .price-amount {
        font-size: 16px;
    }

    .single-price p {
        font-size: 14px;
    }

    .single-price a span {
        padding: 12px 20px;
    }

    .button-default::after, .button-default > span {
        font-size: 10px;
    }

    .single-slide {
        padding: 0 100px;
    }

        .single-slide > p {
            font-size: 14px;
            line-height: 26px;
            margin-top: 20px;
        }

            .single-slide > p::after {
                font-size: 40px;
                top: -10px;
            }

    .testimonial-thumb {
        margin: 20px auto 0;
    }

    .client-table {
        padding-left: 0px;
    }

    .instagram-feed .slick-prev {
        left: 34%;
    }

    .instagram-feed .slick-next {
        right: 35%;
    }

    #error-page {
        padding: 80px 0;
    }

    .error-page-area {
        width: 350px;
    }

    .error-no {
        padding: 20px;
    }

        .error-no h2 {
            font-size: 45px;
        }

        .error-no p {
            font-size: 50px;
        }

    .error-message h4 {
        font-size: 35px;
        line-height: 35px;
    }

    .error-message p {
        font-size: 20px;
        padding: 0 45px;
    }
}

@media(max-width:360px ) {
    .header-inner > img {
        height: 250px;
        width: 100%;
    }

    .header-content {
        padding: 30px;
    }

        .header-content h2 {
            font-size: 20px;
            line-height: 18px;
        }

            .header-content h2 span {
                font-weight: normal;
                line-height: 35px;
            }

    .header-btn-area {
        margin-top: 00px;
    }

        .header-btn-area a {
            display: block;
            margin: 10px 15px;
        }

    .conta-user .dropdown-menu {
        width: 300px;
    }

    .knowmore-btn {
        font-size: 14px;
        padding: 7px 8px;
    }

    .catalogo-itens {
        width: 90%;
    }


    .download-btn {
        font-size: 14px;
        padding: 7px 8px;
    }

    .catalogo-nomepro h6 {
        height: 40px;
    }

    .catalogo-card {
        height: 420px;
    }


    .title-area {
        padding: 0 10px;
    }

    .tittle {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .title-area p {
        font-size: 14px;
    }

    .search-area input[type="text"] {
        font-size: 14px;
    }

        .search-area input[type="text"]:focus {
            height: 35px;
            top: 32px !important;
            width: 250px;
        }

    .filtro-grupo {
        width: 100%;
    }

        .filtro-grupo .filtro-input {
            width: 85%;
        }

        .filtro-grupo input {
            width: 70%;
        }

    .filtro-btn-find {
        width: 30%;
    }

    .filtro-grupo .filtro-btn-open {
        border-radius: 10px;
        display: block;
        margin: 0px;
    }


    .wc-table li {
        margin-bottom: 20px;
        width: 100%;
    }

    .about-right {
        margin-top: 45px;
    }

        .about-right .tittle {
            font-size: 20px;
            padding-bottom: 5px;
        }

        .about-right .tittle-line {
            width: 60px;
        }

    .call-to-content h2 {
        font-size: 20px;
    }

    .team-grid {
        padding: 0 55px;
    }

        .team-grid li {
            height: 220px;
        }

    .team-info {
        padding: 20px 10px;
    }

        .team-info p {
            font-size: 14px;
        }

    .portfolio-container {
        margin-left: 0;
    }

    .portfolio-menu ul li {
        font-size: 12px;
        margin: 0 7px 5px;
        padding: 8px;
    }

    .single-portfolio {
        width: 100%;
        margin-left: 0px;
    }

    .portfolio-social-icon {
        padding: 105px 50px;
    }

    #counter img {
        height: 354px;
        width: 100%;
    }

    .counter-area {
        padding: 40px 0;
    }

    .single-counter > span {
        font-size: 40px;
    }

    .single-counter .counter-count > span {
        font-size: 30px;
    }

    .single-counter .counter-count > p {
        font-size: 12px;
    }

    .price-table li {
        margin-bottom: 20px;
        width: 100%;
        border: 1px solid #e4e4e4;
    }

    .single-price a span {
        font-size: 14px;
    }

    .single-price .price-amount {
        font-size: 16px;
    }

    .single-price p {
        font-size: 14px;
    }

    .button-default::after, .button-default > span {
        font-size: 14px;
    }

    .standard-price {
        margin-top: 0;
    }

    .single-slide {
        padding: 0 50px;
    }

    .introduction-btn {
        font-size: 20px;
    }

    .header-content h2 {
        margin-bottom: 10px;
    }

    .contact-left h2, .contact-right h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .single-address h4 {
        font-size: 18px;
    }

    .single-address p {
        font-size: 13px;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .contact-form .form-group input {
        font-size: 16px;
        height: 40px;
    }

    .footer-social a {
        font-size: 15px;
        height: 40px;
        line-height: 40px;
        margin: 0 5px;
        width: 40px;
    }

    .blog-archive .single-from-blog figure img {
        height: 250px;
    }

    .instagram-feed .slick-prev {
        left: 26%;
    }

    .instagram-feed .slick-next {
        right: 27%;
    }

    .single-widget h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .blog-pagination > li > a,
    .blog-pagination > li > span {
        padding: 6px 15px;
    }

    .follow-us a {
        font-size: 15px;
        height: 32px;
        line-height: 32px;
        margin: 0 2px;
        width: 32px;
    }

    .blog-details-content {
        padding: 25px;
    }

    .blog-comment {
        padding: 0 25px 40px;
    }

    .blog-details-content blockquote {
        font-size: 18px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    #error-page {
        padding: 60px 0;
    }

    .error-page-area {
        width: 250px;
    }

    .error-no {
        padding: 20px;
    }

        .error-no h2 {
            font-size: 35px;
        }

        .error-no p {
            font-size: 40px;
        }

    .error-message h4 {
        font-size: 25px;
        line-height: 20px;
    }

    .error-message p {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media(max-width:320px ) {

    .search-area input[type="text"]:focus {
        width: 210px;
    }

    .search-area input[type="text"] {
        font-size: 12px;
    }

    .catalogo-itens {
        width: 100%;
    }


    .logo_phone {
        position: center;
        right: 20%;
        width: 100px;
        transform: translateX(20%);
    }

    /*#region Menu Superior*/
    .conta-user .dropdown-menu {
        width: 250px;
        left: -170px;
    }

    .conta-user-msg {
        font-size: 0.9rem;
    }

    .conta-user-naocliente {
        font-size: 0.9rem;
    }

    .conta-user-cadastrar {
        margin-top: 20px;
    }

        .conta-user-cadastrar a {
            padding: 0px;
        }

        .conta-user-cadastrar i {
            margin: 8px 10px;
        }

        .conta-user-cadastrar p {
            font-size: 0.8rem;
        }


    .filtro-grupo .filtro-input {
        width: 100%;
    }

    .filtro-btn-open {
        padding: 2px;
        border-radius: 10px 0px 0px 10px;
    }

    .filtro-grupo input {
        width: 65%;
    }

    .filtro-grupo .filtro-btn-find {
        width: 20%;
    }

    .team-grid {
        padding: 0 35px;
    }

    .team-info {
        padding: 25px 10px;
    }

    .footer-social a {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
        margin: 0 2px;
        width: 35px;
    }

    .footer-bottom p {
        font-size: 15px;
    }

    .blog-archive .single-from-blog figure img {
        height: 200px;
    }

    .instagram-feed .slick-prev {
        left: 23%;
    }

    .instagram-feed .slick-next {
        right: 24%;
    }

    .blog-pagination > li > a,
    .blog-pagination > li > span {
        padding: 4px 13px;
    }

    .follow-us a {
        font-size: 14px;
        height: 30px;
        line-height: 30px;
        margin: 0 2px;
        width: 30px;
    }

    .popular-post-widget .media-left {
        margin-right: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 15px;
    }

        .popular-post-widget .media-left a {
            display: inline-block;
        }

    .popular-post-widget .media-body {
        text-align: center;
    }


    /*Fotos*/

    .container_foto {
        background-color: rgba(57, 62, 93, 0.7);
        padding: 0;
        overflow: hidden;
        max-width: 350px;
        margin: 5px;
    }

        .container_foto article {
            padding: 10%;
            position: absolute;
            bottom: 0;
            z-index: 1;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            -ms-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }

        .container_foto h2 {
            color: #fff;
            font-weight: 800;
            font-size: 25px;
            border-bottom: #fff solid 1px;
        }

        .container_foto h4 {
            font-weight: 300;
            color: #fff;
            font-size: 16px;
        }

        .container_foto img {
            width: 100%;
            top: 0;
            left: 0;
            opacity: 0.4;
            -webkit-transition: all 4s ease;
            -moz-transition: all 4s ease;
            -o-transition: all 4s ease;
            -ms-transition: all 4s ease;
            transition: all 4s ease;
        }

    .ver_mas {
        background-color: #FEB66C;
        position: absolute;
        width: 100%;
        height: 70px;
        bottom: 0;
        z-index: 1;
        opacity: 0;
        transform: translate(0px, 70px);
        -webkit-transform: translate(0px, 70px);
        -moz-transform: translate(0px, 70px);
        -o-transform: translate(0px, 70px);
        -ms-transform: translate(0px, 70px);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

        .ver_mas span {
            font-size: 40px;
            color: #fff;
            position: relative;
            margin: 0 auto;
            width: 100%;
            top: 13px;
        }


    /*hovers*/

    .container_foto:hover {
        cursor: pointer;
    }

        .container_foto:hover img {
            opacity: 0.1;
            transform: scale(1.5);
        }

        .container_foto:hover article {
            transform: translate(2px, -69px);
            -webkit-transform: translate(2px, -69px);
            -moz-transform: translate(2px, -69px);
            -o-transform: translate(2px, -69px);
            -ms-transform: translate(2px, -69px);
        }

        .container_foto:hover .ver_mas {
            transform: translate(0px, 0px);
            -webkit-transform: translate(0px, 0px);
            -moz-transform: translate(0px, 0px);
            -o-transform: translate(0px, 0px);
            -ms-transform: translate(0px, 0px);
            opacity: 1;
        }



    .form-rounded {
        border-radius: 1rem;
    }
}
