 :root {
    --forklift-color: #FF8A26;
 }
 
 html,body {
    font-family: "Roboto", sans-serif;
 }

 h1 {
    margin-bottom: 30px;
}

 @media only screen and (max-width: 768px) { 
    .hide-for-tab { 
        display:none
        
    };
    #data-table .d-none {
        display:block !important
        
    };
}

.main { background: #fff }
.sidebar, .sidebar-content {
    background: #F78F1E !important;
}

.sidebar-brand img {
    width: 80%;
}

.sidebar-link, a.sidebar-link { background:#F78F1E; color:#000 }
.sidebar-link i, .sidebar-link svg, a.sidebar-link i, a.sidebar-link svg {
    color: #000;
}

ul.sidebar-nav { padding-top: 20px }
ul.sidebar-nav li { 
    font-size:1.5rem;
}
ul.sidebar-nav li a:hover { 
    background:#fff;
    text-decoration:none;
    color:#000;
}

h5.green { color: green }
h5.red { color: red }


table.view-part td img {
    object-fit: cover;
}

table.view-part tr td:nth-child(odd) {
    background: #e7e7e7;
    padding: 0 0 0 10px;
    border: #fff 1px solid;
    vertical-align: middle;
}

table.view-part tr td:nth-child(even) {
    padding: 10px 20px 10px 20px;
    vertical-align: middle;
    border: #e7e7e7 1px solid;
}

ul.sidebar-nav { display:none }

.navbar-light { background: #fff }
.navbar-light .navbar-nav .nav-link {
    color: #000 !important
}

.gray-bg {
    background:#F7F7FB;
    padding-top:150px;
}

ul.filter-list { list-style: none; padding:0}
ul.filter-list li {
    font-size:16px;
    line-height: 24px;
    cursor: pointer;
    border-left: transparent 4px solid;
    padding-left:10px;
}

ul.filter-list li:hover {
    border-left:var(--forklift-color) 4px solid;
    color:#000;
}


*:focus {
    outline: none !important;
    -webkit-box-shadow: none;
}

#accordionFilter h2 {
    border-bottom: #ccc 1px solid;
}
#accordionFilter .accordion-item:last-of-type .accordion-collapse {
    background-color: transparent;
}
#accordionFilter .accordion-item { background-color: transparent !important; border:0 }
#accordionFilter .accordion-button {
    width: 100%;
    display: flex;
    margin: 0;
    border: 0;
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #000;
    background-color:transparent !important;
}
#accordionFilter .accordion-button:hover,
#accordionFilter .accordion-button:focus { 
    background-color:transparent !important;
    border:none;
    outline:none;
    -webkit-box-shadow: none;
}
/*
#accordionFilter .accordion-button:after {
  background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" xmlns="http://www.w3.org/2000/svg"><path d="M6 7.5 12 0H0z" fill="currentColor" fill-rule="evenodd"></path></svg>') !important;
}
  */

#accordionFilter .accordion-button::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1rem;
    transition: transform .2s ease-in-out;
}

.accordion-item select {
    width: 100%;
    border: #e7e7e7 1px solid;
    border-radius: 4px;
    padding: 6px;
}

#search-box {
    background: var(--forklift-color);
    padding: 50px;
    border-radius: 15px;
}

#result-container .row {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* #results {
    width: 100%;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:20px 0;
} */

#results {
    width: 100%;
    display: grid;
    gap: 2rem;
    margin: 20px 0;
    grid-template-columns: repeat(4,1fr);
}


.list-item {
    width: 100%;
    height: 350px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.list-item .picture img {
    width: 100%;
}
.list-item .details {
    padding: 10px;
}
.details h6 {
    font-size: 15px;
}
.details p {
    font-size: 13px;
    margin: 0;
    color: gray;
}

@media screen and (min-width:400px) and (max-width:768px) {
    #results {
        grid-template-columns: repeat(2,1fr);
    }
    .gray-bg {
        padding-top:30px;
    }
}
@media screen and (min-width:320px) and (max-width:399px) {
    #results {
        grid-template-columns: repeat(1,1fr);
    }
    .gray-bg {
        padding-top:30px;
    }
}

img.sidebar-pic {
    width: 100% !important;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

a.clear-filters {
    text-decoration: none;
    width: 150px;
    height: 45px;
    background: #000;
    color: var(--forklift-color);
    padding: 10px;
    text-align: center;
    display: inline-block;
    margin: 20px 0;
    float: right;
    font-weight: 500;
}

a.clear-filters::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/filters.svg);
    display: block;
    background-repeat: no-repeat;
    background-size: 24px;
    position: absolute;
}

div#footer-contact {
    padding: 50px;
}
span.footer-button {
    display: inline;
    border: var(--forklift-color) 2px solid;
    color:var(--forklift-color);
    padding: 10px;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 20px;
}

@media screen and (max-width:768px) {
    span.footer-button {
        display:block;
        margin-bottom:20px;
    }
}

div#footer-contact p {
    font-size: 1.3rem;
    margin: 40px auto 0 auto;
    font-weight: 500;
}

#single-slider .item {
    background:#fff;
    width:100%;
    height:480px;
    margin:auto;
    display:flex;
    text-align: center;
}

#single-slider .item img {
    object-fit: contain;
}

.owl-theme .custom-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}
.owl-theme .custom-nav .owl-prev,
.owl-theme .custom-nav .owl-next {
    position: absolute;
    width:100px;
    height: 100px;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.owl-theme .custom-nav .owl-next i,
.owl-theme .custom-nav .owl-prev i {
    font-size: 2.5rem;
    color: #cecece;
}

.owl-theme .custom-nav .owl-prev {
    left:0 !important;
}
.owl-theme .custom-nav .owl-prev {
    right:0 !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #000;
    text-decoration: none;
}

.owl-theme .custom-nav svg {
    width:30px;
    height:30px;
}

button.owl-next {
    right: 0;
}

.btn.interested {
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 2px;
    width: 100%;
    background-color: var(--forklift-color);
    color: #FFFFFF;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    margin:20px 0;
}
.btn.interested svg {
    margin-right:10px;
}

ul.questions { list-style: none; padding:0 }
ul.questions li a{
    color:#000;
    text-decoration: none;
}

ul.questions li a:hover{
    color: var(--forklift-color);
}

ul.questions li a {
    font-size: 18px;
    margin-left: 10px;
}

div#form-part {
    background: var(--forklift-color);
    padding: 50px;
}

#form-part .form-image {
    background-image: url(../img/photos/forklift.png) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div#form-part {
    background: var(--forklift-color);
    padding: 50px;
}

div#form-part .form-group { 
    margin-bottom:30px;
}

textarea#comments {
    height: 200px;
}

.list-item .picture img {
    width: 100%;
    height: 163px;
    object-fit: cover;
}

table.specs { margin: 0 0 20px 0}
table.specs td {
    padding: 3px 10px;
}

table.specs td:nth-child(odd) {
    background: #e7e7e7;
    border-bottom: #fff 1px solid;
    font-size: 0.9rem;
}

.item-single {
    width: 84%;
    overflow: hidden;
    margin: auto;
}

.item-single img {
    width:100%;
    object-fit: cover;
}

div#pagination {
    display: flex;
    justify-content: center;
    margin:20px auto;
}

div#pagination a {
    text-decoration: none;
    color: #000;
    border: #000 1px solid;
    padding: 10px 15px;
    text-align: center;
    margin-right: 10px;
}