/* Reset */

* {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

body {
    color: #606060;
    font-size: 14px;
}


/* Text format */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    cursor: default;
}

h2 {
    font-size: 22px;
    font-weight: 700;
}

h3 {
    font-size: 18px;
    font-weight: 700;
}

h4 {
    font-size: 16px;
    font-weight: 700;
}

b,
strong,
.bold {
    font-weight: 700;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

.pointer {
    cursor: pointer;
}

.white {
    color: #FFF;
}

.grey {
    color: #A9ABAE;
}

.primary {
    color: var(--primary-color);
}

.primary-bg {
    background-color: var(--primary-color);
}

.secondary {
    color: var(--secondary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.green-bg {
    background-color: #67A239;
}

.red {
    color: #ED2337;
}

.big {
    font-size: 40px;
}

.mid {
    font-size: 20px;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

hr {
    background: #D2D3D5;
    border: none;
    margin: 30px 0;
    height: 2px;
}


/* List styles */

ul.no-style {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

ul.inline li,
ul.md-inline li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    ul.md-inline li {
        display: block;
    }
}


/* Responsive images */

img {
    max-width: 100%;
}


/* progress-bar - found in Page5 */

.progress,
.progress-bar {
    border-radius: 50px;
}


/* modal */

.modal-header {
    margin: 10px 20px;
    padding: 15px 0;
    position: relative;
}

.modal-title {
    font-weight: 800;
}


/* line-bottom - shared */

.line-bottom {
    border-bottom: 1px solid #D2D3D5;
    margin-bottom: 35px;
    padding-bottom: 35px;
    position: relative;
}

.line-bottom:after,
.modal-header::after {
    background-color: var(--secondary-color);
    bottom: -2px;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 55px;
    z-index: 1;
}


/* buttons */

.btn {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
    font-weight: 700;
    padding: 15px 25px;
    outline: none;
    transition: all .2s ease-in-out;
    white-space: nowrap;
}

.btn:hover {
    color: #FFF;
    filter: brightness(120%);
    transition: all .2s ease-in-out;
}

.btn a {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    font-weight: 700;
    padding: 15px 0;
    outline: none;
    transition: all .2s ease-in-out;
    white-space: nowrap;
}

.btn:hover {
    color: #FFF;
    filter: brightness(120%);
    transition: all .2s ease-in-out;
}

.btn.primary {
    background-color: var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--secondary-color);
    transition: all .2s ease-in-out;
}

.btn-md {
    height: 50px;
}

.btn-sm {
    border-radius: 4px;
    padding: 10px 20px 10px 20px;
    color: #FFFFFF !important;
}


/* icon round - base for all rounded icons */

.icon-round {
    background: #FFF;
    border-radius: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all .2s ease-in-out;
    width: 30px;
}

.icon-round-red {
    background: #ED2337;
    border-radius: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all .2s ease-in-out;
    width: 30px;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #ED2337;
        -webkit-box-shadow: 0 0 3px #ED2337;
    }
    50% {
        background-color: #be1c2c;
        -webkit-box-shadow: 0 0 3px #be1c2c;
    }
    100% {
        background-color: #ED2337;
        -webkit-box-shadow: 0 0 3px #ED2337;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #ED2337;
        -moz-box-shadow: 0 0 3px #ED2337;
    }
    50% {
        background-color: #be1c2c;
        -moz-box-shadow: 0 0 3px #be1c2c;
    }
    100% {
        background-color: #ED2337;
        -moz-box-shadow: 0 0 3px #ED2337;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #ED2337;
        box-shadow: 0 0 3px #ED2337;
    }
    50% {
        background-color: #be1c2c;
        box-shadow: 0 0 3px #be1c2c;
    }
    100% {
        background-color: #ED2337;
        box-shadow: 0 0 3px #ED2337;
    }
}

@keyframes glowing {
    0% {
        background-color: #ED2337;
        box-shadow: 0 0 3px #ED2337;
    }
    50% {
        background-color: #be1c2c;
        box-shadow: 0 0 3px #be1c2c;
    }
    100% {
        background-color: #ED2337;
        box-shadow: 0 0 3px #ED2337;
    }
}

.icon-round.grey-bg {
    background-color: #f5f5f5;
}


/* icon wifi - rotate wifi icon of font-awesome to use as icon 'ao vivo' */

i.fa-wifi {
    transform: rotate(45deg);
}


/* topbar - shared in all pages */

.topbar {
    background: #f5f5f5;
    font-size: 12px;
    padding: 10px 0;
}

.topbar i {
    font-size: 16px;
    margin-top: 3px;
    transition: all .2s ease-in-out;
}

.topbar i:hover {
    color: var(--secondary-color);
    transition: all .2s ease-in-out;
}

.topbar ul {
    text-align: right;
}

.topbar ul li {
    margin-left: 20px;
}


/* header - shared in all pages */

header {
    padding: 20px 0;
}

header .navbar {
    align-items: flex-end;
    padding: 0;
}

header .navbar .navbar-nav {
    flex: 1;
}

header .navbar .navbar-collapse {
    align-items: flex-end;
}

header .navbar .nav-link {
    color: var(--primary-color);
    font-weight: 700;
    padding-bottom: 5px;
    text-align: center;
    transition: all .2s ease-in-out;
}

header .navbar .nav-link:hover {
    color: var(--secondary-color);
    transition: all .2s ease-in-out;
}


/* Menu on mobile */

.navbar-toggler i {
    display: none;
}

.navbar-toggler[aria-expanded=true] .fa-times,
.navbar-toggler[aria-expanded=false] .fa-filter,
.navbar-toggler[aria-expanded=false] .fa-search,
.navbar-toggler[aria-expanded=false] .fa-bars {
    display: block;
}

@media (max-width: 991px) {
    header .navbar-collapse {
        background: white;
        box-shadow: 2px 2px 5px #ccc;
        display: block;
        height: 100vh;
        left: -100%;
        opacity: 0.8;
        overflow: auto;
        padding: 20px;
        position: fixed;
        top: 0;
        transition: all 0.4s ease-in-out;
        width: 270px;
        z-index: 999;
    }
    header .navbar-collapse.collapsing {
        height: 100vh !important;
        left: -100%;
        margin-left: 1px;
        opacity: 0.9;
        position: fixed;
        transition: all 0.2s ease-in-out;
    }
    header .navbar-collapse.show {
        left: 0;
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }
    header .navbar-collapse.show .nav-link {
        color: var(--primary-color);
        text-align: left;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 0 5px;
    }
    header .navbar-brand img {
        /*max-height: 55px;*/
        max-width: 240px;
        margin-top: 5px;
    }
    header .navbar-collapse.show .nav-link {
        color: var(--primary-color);
        text-align: left;
    }
}


/* Header search  */

.search {
    background: white;
    display: flex;
    justify-content: center;
    height: 0;
    overflow: hidden;
    position: absolute;
    width: 800px;
}

.search.collapse.show {
    height: auto;
}

.search input {
    width: 350px;
}

.search input,
.search select {
    color: #A9ABAE;
    border: 1px solid #E6E7E8;
    height: 40px;
    outline: none;
    padding: 5px 10px;
    margin: 0 10px;
    -webkit-appearance: none;
}

.btn-search {
    border-radius: 40px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    padding: 0px;
}

@media (max-width: 1199px) {
    .search {
        width: 660px;
    }
}


/* content - shared in all sections */

.content {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .content {
        padding: 25px 0 50px 0;
    }
}


/* banner - shared */

.banner {
    background: url(../img/bg.png) repeat center var(--primary-color);
    padding: 40px 0 10px;
    position: relative;
}

.banner .back-btn {
    background: var(--primary-color);
    border: none;
    filter: brightness(80%);
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    text-align: center;
}

.banner .back-btn i {
    font-size: 30px;
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    .banner {
        padding: 15px 0;
    }
}


/* banner slider - found in Home */

#bannerHome .flex-control-nav {
    display: none;
}

.banner .custom-navigation a {
    background: rgba(255, 255, 255, .5);
    border: none;
    color: var(--primary-color);
    font-size: 40px;
    height: 60px;
    line-height: 50px;
    margin-top: -30px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 60px;
    z-index: 1;
}

.banner .custom-navigation.banner-home a {
    top: 50%;
}

.banner .custom-navigation a.flex-next {
    right: 0px;
}

.banner .custom-navigation a.flex-prev {
    left: 0px;
}

@media (max-width: 576px) {
    .banner .custom-navigation a {
        font-size: 20px;
        height: 30px;
        line-height: 30px;
        margin-top: -15px;
        width: 30px;
    }
}


/* 3 banner ajuda - found in Home */

.banners .row .col-12 {
    max-width: 350px;
}

.banner-ajuda {
    background: url(../img/bg.png) repeat center var(--primary-color);
    height: 316px;
    padding: 33px;
    max-width: 350px;
}

.banner-ajuda h2 {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 27px;
    line-height: 33px;
    color: #ffffff;
    text-shadow: 0px 7px 14px rgba(0, 0, 0, 0.4);
}

.banner-ajuda a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-ajuda span {
    align-self: baseline;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}


/* slider-casas-de-leilao - found in homepage */

.slidercasas .slides li {
    border: 3px solid #f5f5f5;
    height: 88px;
    display: flex !important;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.slidercasas .slides li img {
    align-self: center;
}

.slidercasas .flex-direction-nav a {
    opacity: 100%;
    font-size: 49px;
    color: #ff6600;
    line-height: 11px;
    line-height: 33px;
}

.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev {
    text-align: center;
}

@media screen and (max-width: 860px) {
    .flex-direction-nav .flex-prev {
        left: 0;
    }
    .flex-direction-nav .flex-next {
        right: 0;
    }
    .flex-direction-nav .flex-next {
        text-align: right;
    }
    .flex-direction-nav .flex-prev {
        text-align: left;
    }
    .slidercasas.carousel {
        padding: 0 32px;
    }
}


/* slider-leilao - found in Page3 / Page4 / Page 5 */

.slider-leilao .thumbnails {
    margin-top: 5px;
    padding: 0 25px;
}

.slider-leilao .thumbnails.sync .slides li {
    opacity: .8;
}

.slider-leilao .thumbnails.sync .slides .flex-active-slide {
    opacity: 1;
}

.slider-leilao .thumbnails .flex-direction-nav .flex-prev,
.slider-leilao .thumbnails .flex-direction-nav .flex-next {
    align-items: center;
    background: #f5f5f5;
    color: var(--primary-color);
    display: flex;
    font-size: 40px;
    height: 100%;
    justify-content: center;
    margin: 0;
    opacity: 1 !important;
    top: 0;
    width: 20px;
}

.slider-leilao .thumbnails .flex-direction-nav .flex-prev {
    left: -25px;
}

.slider-leilao .thumbnails .flex-direction-nav .flex-next {
    right: -25px;
}


/* flexslider - shared */

.flexslider.loading {
    height: 300px;
    overflow: hidden;
}

.flexslider.loading.small {
    height: 80px;
}

.flexslider.loading::after {
    background: url(../img/loading.gif) no-repeat center white;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}


/* flexslider - specific */

.leilaoListThumbnails .image-wrapper {
    height: 180px;
    border: 10px solid #FFFFFF;
}

@media (max-width: 991px) {
    .leilaoListThumbnails .image-wrapper {
        height: 100px;
    }
}

@media (max-width: 571px) {
    .leilaoListThumbnails .image-wrapper {
        height: 60px;
    }
}

#leilaoThumbnails .image-wrapper {
    background: #f5f5f5;
    height: 80px;
}

@media (max-width: 1199px) {
    #leilaoThumbnails .image-wrapper {
        height: 60px;
    }
}

@media (max-width: 991px) {
    #leilaoThumbnails .image-wrapper {
        height: 40px;
    }
}

@media (max-width: 768px) {
    #leilaoThumbnails .image-wrapper {
        height: 60px;
    }
}

@media (max-width: 471px) {
    #leilaoThumbnails .image-wrapper {
        height: 40px;
    }
}

#leilaoCarousel ul {
    display: flex;
    align-items: stretch;
}

#leilaoCarousel li a {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 480px;
    margin: 0;
    padding: 2px;
    width: 100%;
}

@media (max-width: 1199px) {
    #leilaoCarousel li a {
        height: 400px;
    }
}

@media (max-width: 768px) {
    #leilaoCarousel li a {
        height: 300px;
    }
}

@media (max-width: 471px) {
    #leilaoCarousel li a {
        height: 260px;
    }
}


/* pagination - shared */

.breadcrumb {
    background: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.breadcrumb.regular {
    font-weight: 400;
}

.breadcrumb a {
    color: white;
    font-weight: 700;
}


/* pagination - Found in Page4 */

.pagination .page-link {
    color: #A9ABAE;
}

.pagination a:hover {
    color: #FFFFFF;
    background: #DEE2E6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}


/* list - Found in Index */

.list {
    padding-bottom: 80px;
}


/* filter - Found in Index / Page4 */

.filter {
    margin-top: 20px;
    margin-bottom: 20px;
}

.filter .summary {
    display: flex;
}

.filter .summary p {
    font-weight: 700;
    line-height: 24px;
}

.filter .summary p:first-child {
    font-weight: 900;
}

.filter .summary .total {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    text-align: center;
    line-height: 24px;
    background: #f5f5f5;
    color: var(--secondary-color);
}

.filter select {
    color: #A9ABAE;
    border: 1px solid #E6E7E8;
    height: 40px;
    outline: none;
    padding: 5px 10px;
    width: 100%;
    margin: 5px 0;
    -webkit-appearance: none;
}


/* Items - leilao boxes */

.items .item {
    background: #f5f5f5;
    position: relative;
    margin-bottom: 30px;
}

.items .item .info {
    padding: 20px;
}


/* Items horizontal - leilao rows */

.items.horizontal .item {
    align-items: center;
    display: flex;
}

.items.horizontal .item .info {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.items.horizontal .item .options {
    display: flex;
    flex-direction: column;
}

.items.horizontal .right-content {
    flex: 1;
}

@media (max-width: 991px) {
    .items.horizontal .image-holder {
        width: 285px;
    }
}

@media (max-width: 768px) {
    .items.horizontal .item,
    .items.horizontal .item .info {
        flex-direction: column;
        text-align: center;
    }
    .items.horizontal .item .options {
        justify-content: center;
        flex-direction: row;
    }
}


/* Items single - leilao slider */

.items.single .item {
    background: white;
    display: flex;
}

.items.single .item .data {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.items.single .right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.items.single .item a.image-wrapper {
    width: 360px;
    margin: 5px;
}

@media (min-width: 991px) and (max-width: 1199px) {
    .items.single .item .info {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .items.single .item,
    .items.single .item .info {
        flex-direction: column;
        text-align: center;
    }
    .items.single .item .options {
        justify-content: center;
        flex-direction: row;
    }
    .items.single .item a.image-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .items.single h2 {
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .items.single .item .info {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .items.single .item .data {
        flex-direction: column;
    }
}


/* thumbnails */

.images .thumbnail {
    display: flex;
}

.images .thumbnail a.image-wrapper {
    height: 90px;
}


/* Image wrapper - fill whole div */

.image-wrapper {
    align-items: center;
    display: flex;
    flex: 1;
    height: 260px;
    justify-content: center;
    overflow: hidden;
}

.image-wrapper img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}


/* Image holder - keep max fill inside div */

.image-holder {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 5px;
    width: 285px;
    height: 210px;
}

.image-holder.high {
    height: 260px;
}

.image-holder img {
    max-width: 100%;
    max-height: 100%;
}

.youtubePlayer {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .image-holder {
        width: 100%;
    }
}


/* actions - leilao boxes */

.actions {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    background: linear-gradient(#000000, rgba(0, 0, 0, 0.0));
    padding: 10px;
    width: 100%;
}

.actions.absolute {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

.actions i {
    color: var(--primary-color);
}

.actions.absolute i {
    opacity: .7;
}

.actions a:hover i {
    opacity: 1;
    transition: all .2s ease-in-out;
}


/* status - leilao live/ongoing */

.live-now a {
    background-color: #ED2337;
    color: white !important;
    padding: 30px 30px 30px 30px;
    opacity: 0.9 !important;
    text-align: center;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.status a.live {
    color: #ED2337;
    opacity: 0.9;
    font-weight: 600;
}

.status a.live i {
    background-color: #ED2337;
    color: white;
    opacity: 0.9;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.status a.ongoing {
    color: #FF6600;
    opacity: 0.9;
    font-weight: 600;
}

.status a.ongoing i {
    background-color: #FF6600;
    color: white;
    opacity: 0.9;
}


/* register form - shared */

.register {
    background: var(--primary-color);
}

.register form {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.register form input {
    background: #FFF;
    border: none;
    border-radius: 5px;
    flex: 3;
    outline: none;
    height: 50px;
    text-indent: 30px;
    margin-right: 5px;
}

.register form button {
    border-radius: 0 50px 50px 0;
    flex: 2;
    font-size: 12px;
}

.register form button i {
    margin-left: 10px;
}

@media (max-width: 576px) {
    .register form {
        display: block;
    }
    .register form input,
    .register form button {
        border-radius: 50px;
        display: block;
        margin: 5px 0;
        text-align: center;
        width: 100%;
    }
}


/* clientes - shared */

.clients {
    background: #F9F9F9;
}

.clients img {
    margin: 5px;
}


/* leilao - found in Page4 / Page5 */

.leilao .header {
    background: #f5f5f5;
    margin-bottom: 30px;
}

.leilao .header button {
    background: #FFF;
    border: none;
    font-size: 20px;
    height: 30px;
    width: 30px;
}

.leilao .header select {
    background: #FFF;
    border: none;
    padding: 3px 0 3px 10px;
    width: 60px;
    margin-left: 1rem!important;
    font-weight: bold;
    color: #606060;
    border-right: 5px;
    -webkit-appearance: none;
}

.leilao .lance form {
    margin-top: 15px;
    text-align: center;
}

.leilao .lance form label.lance {
    align-items: center;
    background: #f5f5f5;
    display: flex;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
    padding: 20px;
}

.leilao .lance form label.lance input {
    background: #FFFFFF;
    border: none;
    font-size: 30px;
    height: 40px;
    margin: 0 20px;
    width: 150px;
    outline: none;
}

.leilao .lance form .lance-automatico {
    background: #f5f5f5;
    border-radius: 3px;
    display: inline-block;
    height: 40px;
    padding: 10px;
}

.leilao .lance form .lance-automatico label {
    line-height: 12px;
    text-align: left;
}

.leilao .greetings-blue h2 {
    background: rgba(0, 76, 148, 0.9);
    padding: 30px 20px 30px 20px;
    /* text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 3px rgba(0,0,0,0.4); */
    font-size: 22px;
    text-transform: uppercase;
}

.leilao .greetings-green h2 {
    background: rgba(0, 100, 0, 0.9);
    padding: 30px 20px 30px 20px;
    /* text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 3px rgba(0,0,0,0.4); */
    font-size: 22px;
    text-transform: uppercase;
}

.leilao .greetings-orange h2 {
    background: rgba(255, 102, 0, 0.9);
    padding: 30px 20px 30px 20px;
    /* text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 3px rgba(0,0,0,0.4); */
    font-size: 22px;
    text-transform: uppercase;
}

.leilao .greetings-red h2 {
    background: rgba(208, 0, 0, 0.9);
    padding: 30px 20px 30px 20px;
    /* text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 3px rgba(0,0,0,0.4); */
    font-size: 22px;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) and (max-width: 4000px) {
    .leilao .greetings-blue h2 {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 99999;
        font-weight: 500;
    }
    .leilao .greetings-green h2 {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 99999;
        font-weight: 500;
    }
    .leilao .greetings-orange h2 {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 99999;
        font-weight: 500;
    }
    .leilao .greetings-red h2 {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 99999;
        font-weight: 500;
    }
}

@media screen and (min-width: 0px) and (max-width: 768px) {
    .leilao .greetings-green h2 {
        background: linear-gradient(rgba(0, 100, 0, .0), rgba(0, 100, 0, 0.7), rgba(0, 100, 0, 1.0));
        padding: 40px 0 5px 0;
        font-size: 16px;
        font-weight: 600;
    }
    .leilao .greetings-orange h2 {
        background: linear-gradient(rgba(255, 102, 0, .0), rgba(255, 102, 0, 0.7), rgba(255, 102, 0, 1.0));
        padding: 40px 0 5px 0;
        font-size: 16px;
        font-weight: 600;
    }
    .leilao .greetings-red h2 {
        background: linear-gradient(rgba(208, 0, 0, .0), rgba(208, 0, 0, 0.7), rgba(208, 0, 0, 1.0));
        padding: 40px 0 5px 0;
        margin-bottom: -5px;
        font-size: 16px;
        font-weight: 600;
    }
    .leilao .greetings-blue h2 {
        background: linear-gradient(rgba(0, 76, 148, .0), rgba(0, 76, 148, 0.7), rgba(0, 76, 148, 1.0));
        padding: 40px 0 5px 0;
        margin-bottom: -5px;
        font-size: 16px;
        font-weight: 600;
    }
}

.leilao .ofertar {
    padding: 20px;
    margin-bottom: 30px;
}

.leilao .ofertar form label {
    align-items: center;
    color: #FFF;
    display: flex;
    font-weight: bold;
    margin: 0;
    text-align: left;
}

.leilao .ofertar form label input {
    border: none;
    flex: 1;
    font-size: 30px;
    height: 40px;
    margin: 0 10px;
    outline: none;
    width: 100%;
}

@media (max-width: 471px) {
    .leilao .ofertar {
        padding: 10px 5px 5px;
    }
}

.leilao .historico {
    max-height: 200px;
    overflow: auto;
}

.leilao .historico li {
    padding: 5px 10px;
    border-bottom: 1px solid #f5f5f5;
}


/* mobile fixed div - found on Page5 */

@media (max-width: 768px) and (min-height: 400px) {
    .mobile-fixed {
        bottom: 0;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 99;
    }
    .leilao .ofertar {
        margin-bottom: 0;
    }
    .leilao .historico {
        background: white;
        margin-top: -2px;
        max-height: 75px;
        font-size: 14px;
    }
}


/* tabs - found in Page2 / Page4 */

.tabs .tabs-content {
    background: #FFFFFF;
}

.tabs .tabs-content .nav-tabs {
    border-bottom: 1px solid #D2D3D5;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 3px;
}

.tabs .tabs-content .nav-tabs .nav-item {
    margin-bottom: -3px;
}

.tabs .tabs-content .nav-tabs .nav-item .nav-link.active {
    background: none;
    border: none;
    border-bottom: 2px solid var(--secondary-color);
}

.tabs .tabs-content .nav-tabs .nav-link {
    border: none;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}


/* left-menu - found in Page2 */

.left-menu {
    transition: all 0.2s ease;
}

.left-menu.collapse:not(.show) {
    display: block;
}

.left-menu ul {
    margin-bottom: 60px;
}

.left-menu ul li a {
    display: block;
    font-size: 15px;
    padding: 10px 0;
}

.left-menu ul li a:hover {
    color: var(--secondary-color);
}

.left-menu ul li a i {
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
}

@media (max-width: 991px) {
    .left-menu {
        background: white;
        box-shadow: 2px 2px 5px #ccc;
        height: 100vh;
        left: -100%;
        opacity: 0.8;
        overflow: auto;
        padding: 20px;
        position: fixed;
        top: 0;
        transition: all 0.4s ease-in-out;
        width: 270px;
        z-index: 9;
    }
    .left-menu.collapsing {
        height: 100vh !important;
        left: -100%;
        margin-left: 1px;
        opacity: 0.9;
        position: fixed;
        transition: all 0.2s ease-in-out;
    }
    .left-menu.collapse.show {
        left: 0;
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }
}


/* more-items - found in Page4 / Page5 */

.more-items .item {
    background: #F5F5F5;
    margin-bottom: 30px;
}

.more-items .item .info {
    padding: 16px;
}

.more-items .item .data {
    min-width: 0;
}

.more-items .item .options i {
    background: #FFF;
    width: 30px;
    height: 30px;
}

.more-items .image-holder {
    width: calc(100% - 10px);
}


/* footer - shared */

footer {
    background: var(--primary-color);
    padding: 20px 0 40px;
}

footer p {
    margin: 4px 0;
}

footer .seguranca img {
    width: 100px;
    margin: 10px;
}

footer .redes a {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 4px;
    transition: all .2s ease-in-out;
}

footer .redes a:hover {
    color: #FFF;
    transition: all .2s ease-in-out;
}

footer a:hover {
    color: var(--secondary-color);
    transition: all .2s ease-in-out;
}


/* copyright - shared */

.copy {
    background: var(--primary-color);
    filter: brightness(80%);
    font-size: 12px;
    padding: 15px 0;
}

.copy img {
    height: 20px;
}

.copy a:hover {
    text-decoration: none;
}

.line-footer {
    width: 55px;
    height: 3px;
    margin-bottom: 15px;
    background: var(--secondary-color);
}


/* contato */

.contact-form {
    margin-top: 40px;
}

.contact-form #contact_form input {
    border: 1px solid #eeeeee;
    margin-bottom: 25px;
    width: 100%;
    padding-left: 45px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #888888;
    height: 40px;
    outline: none;
}

.contact-form #contact_form input[class='name'] {
    background-image: url(../images/name-icon.png);
    background-position: 10px;
    background-repeat: no-repeat;
}

.contact-form #contact_form input[class='email'] {
    background-image: url(../images/email-icon.png);
    background-position: 10px;
    background-repeat: no-repeat;
}

.contact-form #contact_form input[class='phone'] {
    background-image: url(../images/phone-icon.png);
    background-position: 10px;
    background-repeat: no-repeat;
}

.contact-form #contact_form input[class='whatsapp'] {
    background-image: url(../images/whatsapp.png);
    background-position: 10px;
    background-repeat: no-repeat;
}

.contact-form #contact_form input[class='site'] {
    background-image: url(../images/site-icon.png);
    background-position: 10px;
    background-repeat: no-repeat;
}

.contact-form #contact_form textarea[class='message'] {
    background-image: url(../images/message-icon.png);
    background-position: top left;
    background-position: 10px 15px;
    background-repeat: no-repeat;
}

.contact-form #contact_form textarea {
    border: 1px solid #eeeeee;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
    min-height: 140px;
    max-height: 180px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #888888;
    height: 40px;
    padding: 12px 45px;
    outline: none;
}

.contact-form .advanced-button {
    margin-bottom: 70px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 7px;
}

.contact-info span {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #888888;
}

.contact-info a {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #052d37;
}

.contact-info .fax {
    margin-top: 30px;
}

.contact-info .email {
    margin-top: 30px;
}

.contact-info .address {
    margin-top: 30px;
}

.contact-map {
    margin-top: 25px;
    border: 1px solid #eeeeee;
    padding: 5px;
}


/* new - css */

.fit-mobile {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.home-scroll {
    max-height: 236px;
    overflow-y: auto;
}

.page-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.peca-scroll {
    max-height: 135px;
    overflow-y: auto;
}

.info-footer {
    width: 100%;
    padding: 5px;
    margin: auto;
    font-size: 11px;
    text-align: center;
    background: var(--primary-color);
    color: #ffffff;
    /* width: 180px; */
    /* border-radius: 5px 5px 0 0; */
    /* margin-top: -26px; */
}

.info-footer i {
    margin-left: 5px;
    color: var(--secondary-color);
    font-size: 14px;
}

.primary-menu-footer {
    padding-bottom: 15px;
    text-transform: uppercase;
}

.primary-menu-footer a {
    color: #ffffff;
}

.primary-menu-footer a:hover {
    color: var(--secondary-color);
}

.redes {
    font-size: 20px;
}

.redes a {
    margin: 0 2px 0 2px;
}

.redes a:hover {
    color: var(--secondary-color);
}

.card-header .fa {
    transition: .3s transform ease-in-out;
}

.card-header .collapsed .fa {
    transform: rotate(180deg);
}

.something-else .fa {
    transition: .3s transform ease-in-out;
}

.something-else .collapsed .fa {
    transform: rotate(-180deg);
}

.list .fa {
    transition: .3s transform ease-in-out;
}

.list .collapsed .fa {
    transform: rotate(180deg);
}

.filtro-lateral {
    position: fixed;
    right: 10px;
    z-index: 99;
}

.icon-round.filtro-lateral-bg {
    background-color: var(--secondary-color);
}

.title-cut-1 {
    width: 95%;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.title-cut-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 2rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.line {
    width: 55px;
    height: 3px;
    margin-bottom: 15px;
    background: var(--secondary-color);
}

.uppercase {
    text-transform: uppercase;
}


/* espaços */

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

@media screen and (min-width: 0px) and (max-width: 990px) {
    .block_mobile {
        display: none !important;
    }
    .breadcrumb {
        font-size: 13px;
        font-weight: 600;
        text-align: left;
    }
    .breadcrumb a {
        font-weight: 600;
    }
    .line-footer {
        margin: auto;
    }
    .zoom {
        transition: none;
        /* Animation */
    }
    .zoom:hover {
        transform: none;
        /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }
    .banner_600 {
        width: auto;
    }
}

button:focus {
    outline: none !important;
    /* outline: 5px auto -webkit-focus-ring-color; */
}

@media screen and (min-width: 990px) and (max-width: 4000px) {
    .block_desktop {
        display: none !important;
    }
    .zoom {
        transition: transform .2s;
        /* Animation */
    }
    .zoom:hover {
        transform: scale(1.05);
        /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }
    .banner_600 {
        width: 700px;
    }
}


/* publicidade */

.publicidade {
    width: auto;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
    padding: 4px 0px 2px 0px;
    font-size: 10px;
    color: #333333;
}

.bg-banner {
    background: url(../images/bg-listras.png) repeat;
    width: 100%;
    border-top: 1px #eee solid;
}


/* scrollbar */

::-webkit-scrollbar {
    width: 8px;
    height: 0px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f5f5f5;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    bor
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

.winner {
    color: #FFF;
    background: #090;
    padding: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
}

.pre-formatted {
    white-space: pre;
}


/*LGPD*/

.cookie-consent {
    position: fixed;
    left: 0;
    bottom: 10px;
    display: flex;
    width: 100vw;
    justify-content: center;
    z-index: 29999999;
}

.cookie-consent__banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: calc(100vw - 20px);
    max-width: 1326px;
    height: 70px;
    padding: 27px;
    background-color: rgba(64, 64, 64, .9);
    box-shadow: 0 8px 6px 0 rgb(0 0 0 / 41%);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    animation: show 1s both;
}

.cookie-consent__message {
    padding: 0 54px;
    margin: 0 -30px;
    color: #fff!important;
    font-size: 14px;
    font-weight: 400!important;
    line-height: 16px;
    display: block!important;
}

.cookie-consent__message a {
    color: inherit;
    text-decoration: underline;
}

.cookie-consent__message a:hover {
    color: inherit;
}

.cookie-consent__agree {
    position: relative;
    display: block;
    width: 118px;
    height: 36px;
    line-height: 34px;
    background: var(--secondary-color);
    border-radius: 1px;
    cursor: pointer;
    color: #fff !important;
    border: none;
    box-shadow: inset 0 -2px 0 0 rgb(0 0 0 / 40%);
    transition: all .3s;
}

@media screen and (max-width: 768px) {
    .cookie-consent {
        bottom: 40px;
    }
    .cookie-consent__banner {
        height: auto;
        padding: 34px;
        flex-wrap: wrap;
    }
    .cookie-consent__message {
        width: 100%;
        padding: 0 0 30px;
        margin: 0;
        font-size: 20px;
        line-height: 24px;
    }
    .cookie-consent__agree {
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        line-height: 24px;
    }
}
