.banner {
    background-color: rgba(4, 47, 47,0.45);
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center 95%;
    padding-bottom: 6rem;
    position: relative;
}
/*.banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(top, rgba(0, 47, 75, 0.5) 0, rgba(220, 66, 37, 0.5) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(220, 66, 37, 0.5)), color-stop(100%, rgba(0, 47, 75, 0.5)));
    background: -webkit-linear-gradient(top, rgba(0, 47, 75, 0.5) 0, rgba(220, 66, 37, 0.5) 100%);
    background: -o-linear-gradient(top, rgba(0, 47, 75, 0.5) 0, rgba(220, 66, 37, 0.5) 100%);
    background: -ms-linear-gradient(top, rgba(0, 47, 75, 0.5) 0, rgba(220, 66, 37, 0.5) 100%);
    background: linear-gradient(to bottom, rgb(3 65 94 / 82%) 0, rgb(3 65 94 / 82%) 40%, #e1f3fa 100%);
}*/
.banner .banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 0 0 0;
    color: #fff;
    max-width: 594px;
    margin: auto;
    font-size: 15px;
}
.banner .banner-content h1 {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1;
    margin-bottom: 1.1rem;
}
.banner .banner-content h1 em {
    font-weight: 400;
}
.banner .banner-content .buttons .btn {
    padding: 14px 1.5rem;
    margin: 0 6px;
    font-weight: 400;
    font-size: 16px;
    min-width: 234px;
}
@media (max-width: 767px) {
    .banner .banner-content {
        padding: 2rem 0 0 0;
        font-size: 14px;
    }
    .banner .banner-content h1 {
        font-size: 2rem;
    }
    .banner .banner-content .buttons .btn {
        padding: 12px 1rem;
        margin: 5px 0;
    }
}
.content-box {
    background: #fff;
    box-shadow: 0 0 2px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.content-box .image {
    min-width: 706px;
}
.content-box .detail {
    padding: 2rem 4rem;
    font-family: "Roboto Condensed", sans-serif;
}
.content-box .detail h3 {
    color: #025159;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 1200px) {
    .content-box .image {
        min-width: 40%;
    }
    .content-box .image img {
        object-fit: cover;
        height: 100%;
    }
    .content-box {
        align-items: normal;
    }
    .content-box .detail {
        padding: 2rem;
    }
}
@media (max-width: 767px) {
    .content-box .image {
        min-width: 100%;
        order: 0;
        max-height: 300px;
    }
    .content-box .image img {
        width: 100%;
    }
    .content-box {
        flex-wrap: wrap;
    }
    .content-box .detail {
        padding: 1rem;
        order: 1;
    }
    .content-box .detail h3 br {
        display: none;
    }
}
.faq-section {
    background: #fff;
    padding: 4rem 0 3rem;
}
.faq-section h2 {
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: left;
}
.faq-section .faq-item {
    font-size: 13px;
    margin-bottom: 2rem;
}
.faq-section .faq-item h3 {
    font-size: 16px;
    margin-bottom: 0.8rem;
    pointer-events: none;
    position: relative;
}
.faq-section .faq-item h3.collapsed {
    border-bottom: 0;
}
.faq-section .faq-item p {
    margin-bottom: 1rem;
}
.faq-section .faq-item p:last-child {
    margin-bottom: 10px;
}
.faq-section .faq-item ul {
    padding-left: 15px;
}
.faq-section .faq-item .collapse {
    height: 50px;
    display: block;
    overflow: hidden;
}
.faq-section .faq-item .link {
    text-decoration: none;
    position: relative;
}
.faq-section .faq-item .link span {
    display: none;
}
.faq-section .faq-item .link .less,
.faq-section .faq-item .link.collapsed .more {
    display: block;
}
.faq-section .faq-item .link.collapsed .less {
    display: none;
}
@media (max-width: 767px) {
    .faq-section h2 {
        margin-bottom: 2rem;
    }
    .faq-section .faq-item {
        margin-bottom: 1rem;
        border: 1px solid #f6f6f6;
        background: #fff;
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    }
    .faq-section .faq-item h3 {
        margin-bottom: 0;
        border-bottom: 1px solid #f6f6f6;
        pointer-events: auto;
        position: relative;
        padding: 12px 15px;
        cursor: pointer;
    }
    .faq-section .faq-item h3:after {
        content: "";
        position: absolute;
        right: 16px;
        z-index: 11;
        display: block;
        width: 16px;
        height: 16px;
        border-top: 3px solid #a2a0a0;
        border-left: 3px solid #a2a0a0;
        top: 18px;
        transform: rotate(45deg);
    }
    .faq-section .faq-item h3.collapsed:after {
        transform: rotate(225deg);
        top: 10px;
    }
    .faq-section .faq-item .collapse {
        display: none !important;
        padding: 12px 15px 2px;
        height: 0;
        transition: all;
    }
    .faq-section .faq-item .collapse.show {
        display: block !important;
        height: auto;
    }
    .faq-section .faq-item .link {
        display: none;
    }
    .search-flter-box .listing-view-change .btn i {
        width: 13px;
    }
}
.main-content {
    background: #e1f3fa;
    position: relative;
}
@media (max-width: 990px) {
    .sidebar {
        overflow: hidden;
    }
}
@media (max-width: 767px) {
    .sidebar {
        margin-top: 30px;
    }
}
.sidebar .callout-block {
    color: #fff;
    margin-bottom: 20px;
    padding: 30px;
}
@media (min-width: 768px) {
    .sidebar .callout-block {
        border-radius: 4px;
    }
}
.sidebar .callout-block .title {
    font: 400 36px/48px "Roboto Condensed", sans-serif;
    letter-spacing: -1px;
}
.sidebar .callout-block p {
    font: 400 16px/24px "Roboto Condensed", sans-serif;
    letter-spacing: -0.73px;
}
@media (max-width: 767px) {
    .sidebar .callout-block .btn {
        width: 100%;
    }
}
.sidebar .callout-block.white {
    color: #404040;
}
@media (max-width: 767px) {
    .sidebar .callout-block.widget-newsletter .newsletter-form button.btn {
        width: 40px;
        min-width: 40px;
    }
}
.sidebar .callout-block.widget-cta {
    background: #fff;
    padding: 15px;
    color: #8e929c;
    text-align: center;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}
.sidebar .callout-block.widget-cta h2 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    text-align: center;
    color: #017172;
}
.sidebar .callout-block.widget-cta p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    letter-spacing: 0;
}
.sidebar .callout-block.widget-cta .btn {
    padding: 9px 15px;
}
.sidebar .callout-block.widget-imagecta {
    background: url(https://media.rvcrazy.com/Rvcrazy/assets/img/sidebar-ctabg.jpg);
    padding: 13rem 15px 15px;
    background-position: center;
}
.sidebar .callout-block.widget-imagecta .box {
    border: 1px solid #017172;
    position: relative;
    padding: 15px;
    overflow: hidden;
}
.sidebar .callout-block.widget-imagecta .box:before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background-image: linear-gradient(rgba(1, 113, 114,0.5), rgba(1, 113, 114,0.5)), url(https://media.rvcrazy.com/Rvcrazy/assets/img/sidebar-ctabg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    filter: blur(8px);
}
.sidebar .callout-block.widget-imagecta .box .detail {
    position: relative;
    text-align: center;
}
.sidebar .callout-block.widget-imagecta .box .detail h2 {
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
}
.sidebar .callout-block.widget-imagecta .box .detail p {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.33;
}
@media (max-width: 990px) {
    .sidebar .sidebar-block {
        padding: 0 6px;
    }
}
@media (max-width: 619px) {
    .sidebar .sidebar-block {
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .sidebar .sidebar-block {
        width: 100%;
    }
}
@media (min-width: 620px) {
    .sidebar .sidebar-block {
        clear: none;
        float: left;
        margin-bottom: 30px;
        width: 50%;
    }
}
@media (min-width: 992px) {
    .sidebar .sidebar-block {
        margin: 0 auto 80px auto;
        padding-left: 0;
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .sidebar .sidebar-block {
        padding-left: 0;
        width: 100%;
    }
}
.sidebar .sidebar-block [class^="ss-"]:before {
    margin-right: 10px;
}
@media (max-width: 767px) {
    .sidebar .sidebar-block .heading-article,
    .sidebar .sidebar-block .media {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sidebar .sidebar-block.sidebar-header {
        width: 100%;
    }
}
@media (min-width: 620px) {
    .sidebar .favorite-sidebar .sidebar-block {
        width: 10%;
    }
}
@media (max-width: 1200px) and (min-width: 990px) {
    .sidebar .media .media-body .boat-detail {
        width: 100%;
    }
}
@media (max-width: 1200px) and (min-width: 990px) {
    .sidebar .media .media-body .price {
        width: 100%;
        text-align: left;
    }
}
.sidebar .sidebar-trending {
    padding: 1.5rem;
}
.sidebar .sidebar-trending h4 {
    color: #017172;
    font-size: 14px;
    font-family: "Roboto Condensed", sans-serif;
    text-align: right;
    margin-bottom: 1rem;
}
.sidebar .sidebar-trending ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    font-weight: 600;
}
.sidebar .sidebar-trending ul li {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 18px;
    margin: 5px 0;
}
.sidebar .sidebar-trending ul li:before {
    content: "-";
    color: #46b6db;
    position: absolute;
    left: 0;
}
.sidebar .max-200 {
    max-width: 200px;
    width: 100%;
}
.boats-listing {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -10px;
}
.boats-listing .listing-items {
    flex-basis: 33.33%;
    min-width: 33.33%;
    padding: 0 10px;
}
.boats-listing.view-list-fourth .listing-items {
    flex-basis: 25%;
    min-width: 25%;
}
@media (max-width: 767px) {
    .boats-listing .listing-items {
        flex-basis: 50%;
        min-width: 50%;
    }
}
@media (max-width: 567px) {
    .boats-listing .listing-items {
        flex-basis: 100%;
        min-width: 100%;
    }
}
.boats-listing .listing-thead {
    display: none;
}
.boats-listing .table-row {
    display: none;
}
.boats-listing .listing-items .boat-box {
    background: #fff;
    height: calc(100% - 15px);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 1;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
}
.boats-listing .listing-items .boat-box .btn-fav {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 23px;
    opacity: 1 !important;
    padding: 0px;
    background: transparent;
    border: 0px;
    appearance: none;
    -webkit-appearance: none;
}
.boats-listing .listing-items .boat-box .btn-fav i {
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 1px rgb(0 0 0 / 26%);
}
.boats-listing .listing-items .boat-box .btn-fav.ss-hyphen i {
    color: red;
}
.boats-listing .listing-items .boat-box .image {
    display: block;
    width: 100%;
    height: 200px;
}
.hide {
    display: none;
}
.boats-listing .listing-items .boat-box .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.boats-listing .listing-items .boat-box .detail {
    padding: 18px 10px;
}
.boats-listing .listing-items .boat-box .detail h5.title {
    color: #171823;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
    padding-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    line-height: 1;
}
.boats-listing .listing-items .boat-box .detail h5.title a {
    color: #171823;
    text-decoration: none;
}
.boats-listing .listing-items .boat-box .detail .price {
    color: #d94e04;
    margin: 3px 0;
    font-weight: 800;
    font-size: 16px;
}
.boats-listing .listing-items .boat-box .detail .location {
    text-transform: uppercase;
    color: #9a9ea7;
    font-weight: 400;
    margin: 3px 0;
    font-size: 10px;
}
.boats-listing .listing-items .boat-box .detail .location i {
    color: #acabab;
    margin-right: 2px;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom {
    margin: 10px -10px 0;
    border-top: 1px solid #d5d5d5;
    align-items: center;
    padding: 10px 10px 0;
    display: flex;
    display: -webkit-flex;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom ul.sizes {
    display: flex;
}
.boats-listing .listing-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom ul.sizes li {
    padding: 0 10px 0 0;
    text-align: left;
    color: #9a9ea7;
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom ul.sizes li.location {
    display: none;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom ul.sizes li span {
    display: block;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase;
    font-size: 11px;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom .btn-link {
    font-weight: 500;
    font-size: 13px;
    margin-left: auto;
}
.boats-listing .listing-items .boat-box .detail .listing-bottom .btn-view {
    font-size: 12px;
    font-weight: 500;
    padding: 0.25rem 0.55rem;
    margin-left: auto;
}
.boats-listing .listing-items .boat-box .detail .item-info .btn-md,
.boats-listing .listing-items .boat-box .detail .item-info .desc {
    display: none !important;
}
.boats-listing .listing-items .boat-box .detail .item-info .btn-md {
    padding: 7px 1em;
}
.boats-listing.view-detail .listing-items {
    flex-basis: 100%;
    min-width: 100%;
}
.boats-listing.view-detail .listing-items .boat-box {
    display: flex;
    display: -webkit-flex;
}
.boats-listing.view-detail .listing-items .boat-box .btn-fav {
    right: 0;
    left: 15px;
}
.boats-listing.view-detail .listing-items .boat-box .image {
    min-width: 35%;
    flex-basis: 35%;
}
.boats-listing.view-detail .listing-items .boat-box .detail {
    padding: 15px 15px 15px 30px;
    flex-basis: calc(100% - 35%);
    min-width: calc(100% - 35%);
}
.boats-listing.view-detail .listing-items .boat-box .detail h5.title {
    display: inline-block;
    font: 20px/30px Roboto Condensed,sans-serif;
    font-weight: 600;
}
.boats-listing.view-detail .listing-items .boat-box .detail .pricelocation {
    margin-left: auto;
    float: right;
}
.boats-listing.view-detail .listing-items .boat-box .detail .pricelocation .location {
    display: none;
}
.boats-listing.view-detail .listing-items .boat-box .detail .listing-bottom {
    border-top: 0;
    flex-basis: 100%;
    margin-top: 0;
    padding: 8px 0;
    align-items: flex-start;
}
.boats-listing.view-detail .listing-items .boat-box .detail .listing-bottom .btn-view {
    display: none;
}
.boats-listing.view-detail .listing-items .boat-box .detail .listing-bottom ul.sizes li span {
    display: inline-block;
    margin-right: 10px;
    color: #aaa;
    font-size: 12px;
    margin-bottom: 0;
}
.sidebar .callout-block.blue-med {
    color: #017172;
}
.boats-listing.view-detail .listing-items .boat-box .detail .listing-bottom ul.sizes li {
    font-size: 15px;
    color: #404040;
    margin: 0 0 5px;
    display: inline-block;
}
.boats-listing.view-detail .listing-items .boat-box .detail .pricelocation .price {
    display: inline-block;
    font: 20px/30px Roboto Condensed,sans-serif;
    font-weight: 600;
}
.boats-listing.view-detail .listing-items .boat-box .detail .item-info {
    font-size: 14px;
    line-height: 1.7;
    display: block;
}
.boats-listing.view-detail .listing-items .boat-box .detail .item-info .desc {
    display: block !important;
    margin-bottom: 18px;
}
.boats-listing.view-detail .listing-items .boat-box .detail .item-info .btn-md {
    display: inline !important;
}
.boats-listing.view-list {
    background: #fff;
    border-radius: 4px;
    margin: 0 0 15px;
}
.boats-listing.view-list .listing-items .table-row,
.boats-listing.view-list .listing-thead {
    display: flex;
    flex-basis: 100%;
    padding: 0 15px;
}
.boats-listing.view-list .listing-items {
    flex-basis: 100%;
    min-width: 100%;
    padding: 0;
}
.boats-listing.view-list .listing-items:nth-child(odd) {
    background: #CEE6E6;
}
.boats-listing.view-list .listing-items .boat-box {
    display: none;
}
.boats-listing.view-list .listing-items .table-row .td-col,
.boats-listing.view-list .listing-thead .table-head {
    color: #b0b0b0;
    font-size: 16px;
    padding: 8px 5px;
}
.boats-listing.view-list .listing-items .table-row .td-col:first-child,
.boats-listing.view-list .listing-thead .table-head.first {
    flex-basis: 11%;
    min-width: 11%;
    font-size: 16px;
}
.boats-listing.view-list .listing-items .table-row .td-col:nth-child(2),
.boats-listing.view-list .listing-thead .table-head:nth-child(2) {
    flex-basis: 5%;
    min-width: 5%;
    font-size: 16px;
}
.boats-listing.view-list .listing-items .td-col:nth-child(3),
.boats-listing.view-list .listing-thead .table-head:nth-child(3) {
    flex-basis: 33%;
    min-width: 33%;
}
.boats-listing.view-list .listing-items .td-col:nth-child(4),
.boats-listing.view-list .listing-thead .table-head:nth-child(4) {
    flex-basis: 11%;
    min-width: 11%;
}
.boats-listing.view-list .listing-items .td-col:nth-child(5),
.boats-listing.view-list .listing-thead .table-head:nth-child(5) {
    flex-basis: 18%;
    min-width: 18%;
}
.boats-listing.view-list .listing-items .td-col:nth-child(6),
.boats-listing.view-list .listing-thead .table-head:nth-child(6) {
    flex-basis: 16%;
    min-width: 16%;
}
.boats-listing.view-list .listing-items .td-col:nth-child(7),
.boats-listing.view-list .listing-thead .table-head:nth-child(7) {
    flex-basis: 6%;
    min-width: 6%;
}
.boats-listing.view-list .listing-items .table-row .td-col {
    color: #404040;
    font-size: 14px;
}
.boats-listing.view-list .listing-items .table-row .td-col.td-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.boats-listing.view-list .listing-items .table-row .td-col.td-price {
    font-weight: 600;
}
.boats-listing .fourth-results-ad {
    display: none !important;
}
.boats-listing.view-list-fourth .third-results-ad {
    display: none !important;
}
.boats-listing.view-list-fourth .fourth-results-ad {
    display: block !important;
}
@media (max-width: 767px) {
    .boats-listing.view-list .listing-items .table-row,
    .boats-listing.view-list .listing-thead {
        flex-wrap: wrap;
    }
    .boats-listing.view-list .listing-thead {
        display: none;
    }
    .boats-listing.view-list .listing-items .table-row .td-col {
        flex-basis: auto !important;
        min-width: auto !important;
    }
    .boats-listing.view-list .listing-items .table-row .td-col.td-title {
        max-width: 230px !important;
        flex-basis: 230px !important;
    }
}
.search-flter-box {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -40px;
    position: relative;
}
.search-flter-box .listing-grid-change,
.search-flter-box .listing-view-change {
    display: flex;
    flex-basis: auto;
    border-radius: 4px;
    overflow: hidden;
}
.search-flter-box .listing-grid-change .btn,
.search-flter-box .listing-view-change .btn {
    background: #cee6e6;
    border-radius: 0;
    padding: 7px 14px;
    margin: 0;
    color: #017172;
    font-size: 13px;
    font-weight: 400;
}
.search-flter-box .listing-grid-change .btn input,
.search-flter-box .listing-view-change .btn input {
    display: none;
}
.search-flter-box .listing-view-change .btn i {
    margin-right: 7px;
}
.search-flter-box .listing-grid-change .btn.active,
.search-flter-box .listing-view-change .btn.active {
    background: #017172;
    color: #fff;
}
.search-flter-box .btn-sm {
    padding: 7px 14px;
    margin: 0;
    color: #017172;
    font-size: 13px;
    font-weight: 400;
    height: auto;
}
@media (max-width: 1024px) {
    .search-flter-box .listing-grid-change {
        display: none;
    }
}
@media (max-width: 767px) {
    .search-flter-box {
        gap: 4px;
        padding: 10px 10px;
    }
    .search-flter-box .listing-grid-change .btn,
    .search-flter-box .listing-view-change .btn {
        padding: 7px;
    }
    .search-flter-box .btn-sm {
        padding: 7px 6px;
    }
}
.btn-viewmore {
    font-weight: 400;
    border-radius: 50px;
    padding: 11px 18px;
    font-size: 16px;
}
.content-box .detail p a {
    color: #404040;
    text-decoration: underline;
}
.content-box .detail p a:hover {
    color: #41b5d9;
}
.adheight-90 {
    min-height: 90px;
}
.adheight-600 {
    min-height: 600px;
}
.adheight-250 {
    min-height: 250px;
}
.adheight-180 {
    min-height: 180px;
}
.adheight-60 {
    min-height: 60px;
}
@media (max-width: 767px) {
    .adheight-180,
    .adheight-250,
    .adheight-60,
    .adheight-600,
    .adheight-90 {
        min-height: 250px;
    }
}
.advertise,
.advertise div {
    margin-left: auto;
    margin-right: auto;
}
.advertise {
    text-align: center;
    overflow: hidden;
}
.ad-row {
    margin-bottom: 15px;
}
.adheight-90 {
    min-height: 90px;
}
.adheight-600 {
    min-height: 600px;
}
.adheight-250 {
    min-height: 250px;
}
.adheight-180 {
    min-height: 180px;
}
.adheight-60 {
    min-height: 60px;
}
@media (max-width: 767px) {
    .adheight-250,
    .adheight-180,
    .adheight-60,
    .adheight-600,
    .adheight-90 {
        min-height: 250px;
    }
    .banner .banner-content br {
        display: none;
    }
    .banner { 
        padding-bottom: 5rem;
    }
    .search-flter-box {
        margin-top: -31px;
    }
    .faq-section .faq-item h3 {
        font-size: 14px;
        padding-right: 32px;
    }
    .faq-section .faq-item h3:after {
        width: 14px;
        height: 14px;
        right: 10px;
    }
}
.faq-section .faq-item .collapse {
    height: auto;
}
.advertise,
.advertise div {
    margin-left: auto;
    margin-right: auto;
}
.advertise {
    text-align: center;
    overflow: hidden;
}
.ad-row {
    margin-bottom: 15px;
}
.content-box .detail p a {
    color: #404040;
    text-decoration: underline;
}
.content-box .detail p a:hover {
    color: #41b5d9;
}
.advertise-sticky {
    position: sticky;
    top: 85px;
}
 
.banner .banner-content {
    max-width: 100%;
}
.main.Performance .sidebar .sidebar-trending ul li {
    font-size: 14px;
}
