.container-fluid {
    position: relative;
    width: 100%;
    padding: 0 0% 0 2%;
    margin: 2% auto;
    box-sizing: border-box;
}

.container-items {
    position: relative;
    width: 100%;
    margin: 2% auto;
    padding: 0;
    /* float: left; */
}

.container_not_items {
    position: relative;
    margin: 4% 0;
    padding: 0;
    text-align: center;
    font-size: 24px;
    line-height: 28px;
}

.container_not_items.hide_content {
    display: none;
}

.mapa_pontos {
    float: none;
}

.mapa_pontos.fixed {
    padding-top: 140px;
    position: relative;
}

#header {
    position: relative;
    z-index: 3;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 999;
    background: #8c0000;
}

#topo {
    position: absolute;
    top: 0;
}

#header.fixed {
    position: fixed;
}

/*.nav-collapse ul { margin: 0; padding: 0; width: 100%; display: block; list-style: none; display: inline-block; text-align: center; }
.nav-collapse li { width: 100%; display: block; }*/
.js .nav-collapse {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: block;
    overflow: hidden;
    zoom: 1;
}

.nav-collapse.opened {
    max-height: 9999px;
}

.disable-pointer-events {
    pointer-events: none !important;
}

.nav-toggle {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

@media screen and (min-width: 1240px) {
    .js .nav-collapse {
        position: relative;
        width: 100%;
    }

        .js .nav-collapse.closed {
            max-height: none;
        }

    .nav-toggle {
        display: none;
    }

    .container-items {
        width: 1240px;
    }
}

/* ------------------------------------------
  NAVIGATION STYLES
--------------------------------------------- */

.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}

.nav-collapse,
.nav-collapse * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .nav-collapse,
    .nav-collapse ul {
        list-style: none;
        width: 100%;
        float: left;
        text-align: center;
        margin: 0;
        padding: 0;
    }

.nav-collapse {
    background: #8c0000;
}

.bg-sub-nav {
    position: relative;
    padding: 30px 0 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #cecece;
}

.sub-nav {
    position: relative;
    padding: 0;
    width: 100%;
    text-align: center;
    float: left;
    display: flex;
    justify-content: space-between;
    max-width: 1210px;
    margin: 0 auto;
}

@media screen and (min-width: 1240px) {
    .nav-collapse {
        float: right;
        width: auto;
    }
}

.nav-collapse li {
    float: left;
    width: 100%;
    float: none;
    display: inline-block;
    text-align: center;
}

@media screen and (min-width: 1240px) {
    .nav-collapse li {
        width: auto;
    }
}

.nav-collapse a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    border-top: 1px solid white;
    text-decoration: none;
    background: #8c0000;
    padding: 0.7em 1em;
    color: #fff;
    width: 100%;
    float: left;
}

    .nav-collapse a:active,
    .nav-collapse .active a {
        background: #790000;
    }

@media screen and (min-width: 1240px) {
    .nav-collapse a {
        /*! border-left: 1px solid white; */
        padding: 15px 15px;
        text-align: center;
        border-top: 0;
        float: none;
        margin: 0;
        display: inline-block;
        font-size: 14px;
        line-height: 14px;
        text-transform: uppercase;
    }
}

.nav-collapse ul ul a {
    background: #ca3716;
    padding-left: 2em;
}

@media screen and (min-width: 1240px) {
    .nav-collapse ul ul a {
        display: none;
    }
}
/* The container */
.container-options {
    position: relative;
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.form-new-candidate {
    position: relative;
    width: auto;
    display: inline-block;
    margin: 20px 0;
}

    .form-new-candidate a {
        background: #8c0000;
        color: #ffffff;
        padding: 10px 20px;
        font-size: 16px;
        line-height: 16px;
        text-transform: uppercase;
    }

        .form-new-candidate a:hover {
            text-decoration: none;
        }

.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
    margin-right: 40px;
}

    /* Hide the browser's default checkbox */
    .check-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: #8c0000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

@font-face {
    font-family: "responsivenav";
    src: url("../icons/responsivenav.eot");
    src: url("../icons/responsivenav.eot?#iefix") format("embedded-opentype"), url("../icons/responsivenav.ttf") format("truetype"), url("../icons/responsivenav.woff") format("woff"), url("../icons/responsivenav.svg#responsivenav") format("svg");
    font-weight: normal;
    font-style: normal;
}

.nav-toggle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    text-indent: -300px;
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 55px;
    float: right;
}

    .nav-toggle:before {
        color: #fff; /* Edit this to change the icon color */
        font: normal 28px/55px "responsivenav"; /* Edit font-size (28px) to change the icon size */
        text-transform: none;
        text-align: center;
        position: absolute;
        content: "\2261"; /* Hamburger icon */
        text-indent: 0;
        speak: none;
        width: 100%;
        left: 0;
        top: 0;
    }

    .nav-toggle.active:before {
        font-size: 24px;
        content: "\78"; /* Close icon */
    }


.nav-collapse a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    border-top: 1px solid white;
    text-decoration: none;
    background: #8c0000;
    padding: 0.7em 1em;
    color: #fff;
    width: 100%;
    float: left;
}

    .nav-collapse a i {
        position: relative;
        color: #8c0000;
        font-size: 14px;
        line-height: 14px;
        margin-right: 5px;
        margin-left: -10px;
    }

    .nav-collapse a:active, .nav-collapse a.current, .nav-collapse a:hover {
        background: #790000;
    }

        .nav-collapse a:active i, .nav-collapse a.current i, .nav-collapse a:hover i {
            color: #ffffff;
        }


@media screen and (min-width: 1240px) {
    .nav-collapse a {
        /*! border-left: 1px solid white; */
        padding: 15px 30px;
        text-align: center;
        border-top: 0;
        float: none;
        margin: 0;
        display: inline-block;
        font-size: 16px;
        line-height: 22px;
        text-transform: uppercase;
    }
}

.isotopeWrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

    .isotopeWrapper li {
        width: 31.25%;
        margin: 0 1% 2% 1%;
        padding: 0;
        background: 0;
        text-align: left;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        list-style: none;
        overflow: hidden;
        display: inline-block;
        overflow: hidden;
    }

.item-list {
    background: #efefef;
    padding: 5% 5% 5%;
    margin: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    float: left;
}

    .item-list h3 {
        font-size: 18px;
        line-height: 22px;
        padding: 1% 34px 3% 2%;
        color: #8c0000;
        border-bottom: 1px solid #cecece;
        margin: 0 0 2%;
        position: relative;
        text-transform: uppercase;
    }

        .item-list h3 .market_estabelecimento {
            position: absolute;
            height: 32px;
            top: -4px;
            right: 0;
            cursor: pointer;
        }

            .item-list h3 .market_estabelecimento img {
                display: block;
                height: 100%;
            }

    .item-list .tags, .item-description {
        position: relative; /* width: 100%; */
        margin: 0 0 10px;
        padding: 0;
    }

.item-description {
    display: inline-block;
    width: 100%;
    margin: 0 0 5px;
    float: left;
}

    .item-description.item-desc-img {
        display: flex;
    }

    .item-description.item-d-l, .item-description.item-d-r {
        width: 48%;
        margin: 0 2% 5px 0;
    }

    .item-description.item-d-r {
        margin: 0 0 5px 2%;
    }

.item-list .tags {
    position: absolute;
    text-align: right;
    right: 5%;
    margin: 0;
}

    .item-list .tags span {
        padding: 5px 10px;
        background: #8c0000;
        color: #FFFFFF;
        font-size: 13px;
        line-height: 15px;
    }

.item-description .item-title {
    position: relative;
    width: 100%;
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: block;
}

.item-list > .item-description .item-title {
    margin: 10px 0 0;
    min-height: 16px;
}

.item-list > .item-description ~ .item-description .item-title {
    margin: 0;
}

.item-description p {
    margin: 0 0 4px;
    padding-top: 0;
}

.item-description.item-desc-img img {
    max-height: 22px;
    float: left;
    margin: 0px 8px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.item-description.item-desc-img span {
    position: relative;
    padding: 0 0 0 28px;
    font-size: 16px;
    line-height: 20px;
}

@media screen and (max-width: 1240px) {
    .isotopeWrapper li {
        width: 47.90%;
    }

    .sub-nav {
        display: flex;
        padding: 0 1%
    }
}

@media screen and (max-width: 768px) {
    .isotopeWrapper li {
        width: 97.90%;
    }

    .sub-nav {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .container-options {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .check-container {
        margin: 0 30px 20px;
    }

    .form-new-candidate {
        width: 100%;
        margin: 20px auto;
    }
}
@media screen and (max-width: 520px) {
         .container-options {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}
/*.isotopeWrapper li .view {	width: 100%; height: 100%; margin: 0px; padding: 0; float: left; overflow: hidden; position: relative; text-align: center; cursor: pointer; }
.isotopeWrapper li .view .mask, .isotopeWrapper li .view .content { width: 100%; height: 100%; position: absolute; overflow: hidden; top: 0; left: 0; }
.isotopeWrapper li .view .mask { opacity: 0; overflow:visible; border:0px solid rgba(0,0,0,0.7); -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; -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; }
.isotopeWrapper li .view .img { width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0; margin: 0; padding: 0; }
.isotopeWrapper li .view .img .zoom { -moz-transition: all .5s; -webkit-transition: all .5s; transition: all .5s; -moz-transform: scale(1,1); -webkit-transform: scale(1,1); transform: scale(1,1); }
.isotopeWrapper li .view:hover .img .zoom { -moz-transform: scale(1.2,1.2); -webkit-transform: scale(1.2,1.2); transform: scale(1.2,1.2); }
.isotopeWrapper li .view a span.info { background: url(../img/link.png) center no-repeat; display: inline-block; text-decoration: none; padding: 0; width: 20px; height: 20px; background: url(../img/lupa.png) no-repeat center center; position:relative; top:-10px; opacity:0; -moz-transform:scale(0,0); -webkit-transform:scale(0,0); -o-transform:scale(0,0); -ms-transform:scale(0,0); transform:scale(0,0); -webkit-transition: -webkit-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out; -moz-transition: -moz-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out; -o-transition: -o-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out; -ms-transition: -ms-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out; transition: transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out; position: absolute;
*/
/* ANIMAÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ES PORTOFÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“LIO */
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

    .isotope .isotope-item {
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        -ms-transition-property: -ms-transform, opacity;
        -o-transition-property: top, left, opacity;
        transition-property: transform, opacity;
    }

        /**** disabling Isotope CSS3 transitions ****/

        .isotope.no-transition,
        .isotope.no-transition .isotope-item,
        .isotope .isotope-item.no-transition {
            -webkit-transition-duration: 0s;
            -moz-transition-duration: 0s;
            -ms-transition-duration: 0s;
            -o-transition-duration: 0s;
            transition-duration: 0s;
        }

    /* End: Recommended Isotope styles */



    /* disable CSS transitions for containers with infinite scrolling*/
    .isotope.infinite-scrolling {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }
