﻿/*#region FontFaces*/
@font-face {
  font-family: Lato-Regular;
  src: url(/fonts/Lato/Lato-Regular.ttf);
}
@font-face {
  font-family: Lato-Italic;
  src: url(/fonts/Lato/Lato-Italic.ttf);
}
@font-face {
  font-family: Lato-Bold;
  src: url(/fonts/Lato/Lato-Bold.ttf);
}
@font-face {
  font-family: 'Lato-Black';
  src: url(/fonts/Lato/Lato-Black.ttf);
}
@font-face {
  font-family: Lato-BlackItalic;
  src: url(/fonts/Lato/Lato-BlackItalic.ttf);
}
@font-face {
  font-family: 'OpenSans-Regular';
  src: url(/fonts/Open_Sans/OpenSans-Regular.ttf);
}
@font-face {
  font-family: OpenSans-Italic;
  src: url(/fonts/Open_Sans/OpenSans-Italic.ttf);
}
@font-face {
  font-family: OpenSans-SemiBold;
  src: url(/fonts/Open_Sans/OpenSans-SemiBold.ttf);
}
@font-face {
  font-family: OpenSans-SemiBoldItalic;
  src: url(/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf);
}
@font-face {
  font-family: OpenSans-Bold;
  src: url(/fonts/Open_Sans/OpenSans-Bold.ttf);
}
@font-face {
  font-family: OpenSans-BoldItalic;
  src: url(/fonts/Open_Sans/OpenSans-BoldItalic.ttf);
}
@font-face {
  font-family: OpenSans-ExtraBold;
  src: url(/fonts/Open_Sans/OpenSans-ExtraBold.ttf);
}
@font-face {
  font-family: OpenSans-ExtraBoldItalic;
  src: url(/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf);
}
@font-face {
  font-family: font-awesome;
  src: url(/fonts/FontAwesome.otf);
}
/*#endregion*/
/*Merriweather*/
@font-face {
  font-family: Merriweather-Black;
  src: url('../fonts/Merriweather/Merriweather-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-BlackItalic';
  src: url('../fonts/Merriweather/Merriweather-BlackItalic.ttf') format('truetype');
}
@font-face {
  font-family: Merriweather-Bold;
  src: url('../fonts/Merriweather/Merriweather-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-BoldItalic';
  src: url('../fonts/Merriweather/Merriweather-BoldItalic.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-Light';
  src: url('../fonts/Merriweather/Merriweather-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-LightItalic';
  src: url('../fonts/Merriweather/Merriweather-LightItalic.ttf') format('truetype');
}
@font-face {
  font-family: Merriweather;
  src: url('../fonts/Merriweather/Merriweather-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-RegularItalic';
  src: url('../fonts/Merriweather/Merriweather-RegularItalic.ttf') format('truetype');
}
/*Roboto*/
@font-face {
  font-family: Roboto-Black;
  src: url('../fonts/Roboto/Roboto-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-BlackItalic';
  src: url('../fonts/Roboto/Roboto-BlackItalic.ttf') format('truetype');
}
@font-face {
  font-family: Roboto-Bold;
  src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-BoldItalic';
  src: url('../fonts/Roboto/Roboto-BoldItalic.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-LightItalic';
  src: url('../fonts/Roboto/Roboto-LightItalic.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-MediumItalic';
  src: url('../fonts/Roboto/Roboto-MediumItalic.ttf') format('truetype');
}
@font-face {
  font-family: Roboto;
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-RegularItalic';
  src: url('../fonts/Roboto/Roboto-RegularItalic.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Thin';
  src: url('../fonts/Roboto/Roboto-Thin.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-ThinItalic';
  src: url('../fonts/Roboto/Roboto-ThinItalic.ttf') format('truetype');
}
.wrapper {
  display: flex;
  align-items: stretch;
}
#sidebar {
  padding: 20px 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  min-width: 250px;
  max-width: 300px;
  width: auto;
  color: #111;
  transition: all 0.3s;
  height: 92vh;
  overflow-y: hidden;
  overflow-x: hidden;
  z-index: 2;
  position: absolute;
}
#sidebar.active {
  margin-left: -300px;
}
#sidebar .sidebar-header h2 {
  font-family: Lato-Bold, sans-serif;
  margin: 0;
}
.shop-items {
  padding: 20px 0 0 300px;
}
@media (max-width: 767px) {
  .shop-items {
    padding: 20px 0 0 0;
  }
}
.shop-page {
  height: 92vh;
}
#content {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 92vh;
  transition: all 0.3s;
  width: 100%;
  background: #f0f0f0;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5) inset;
}
#content .container-fluid {
  padding: 0;
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  #sidebar {
    width: 0;
  }
  #content {
    padding-left: 25px;
    z-index: 0;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #sidebarCollapse span {
    display: none;
  }
}
@media screen and (max-width: 484px) {
  #content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.btn-shop {
  border-radius: 3px;
  font-family: lato-regular;
  font-size: 1.5em;
  letter-spacing: 0.07em;
  padding: 5px;
}
.btn-shop:hover {
  cursor: pointer;
  margin-top: 5px;
}
#full-search-lg {
  border-radius: 24px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
#agencyFilterBox label {
  margin-bottom: 10px;
}
label .agencyCheckbox {
  margin-right: 0;
}
.test-drive-search {
  font-family: Lato-Bold;
  font-weight: bold;
  font-size: 1.1em;
  padding-left: 22px;
}
h3.search-cat {
  font-size: 1.4em;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
h3.search-cat.top {
  margin-top: 0.5em;
  border: none;
  text-align: right;
}
.credits-select {
  padding-left: 0;
}
.search-suggestion-btn {
  width: 100%;
  display: flex;
  flex-basis: 70px;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 300px) and (max-width: 768px) {
  .search-suggestion-btn {
    margin-bottom: 0;
  }
}
.search-suggestion-btn button.btn {
  flex: 1 0 auto;
}
select.sort-order,
.sort-order > option {
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 700;
}
.empty {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    opacity: 0.4;
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    opacity: 1;
  }
}
#filterMenu {
  display: none;
}
@media (max-width: 767px) {
  .left-section #filterMenu {
    display: block;
    position: fixed;
    left: 250px;
    background-color: #fb7806;
    border: 0;
    outline: none;
    width: 52px;
  }
  .left-section {
    width: 250px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    position: fixed;
    z-index: 99;
    left: 0;
  }
  .left-section.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  .left-section #sidebar {
    width: 250px;
    display: block !important;
    overflow-y: auto;
    position: fixed;
    z-index: 99;
  }
  .left-section #filterMenu .fa-close {
    display: none;
  }
  .left-section.open #filterMenu {
    position: fixed;
    left: 250px;
    border: 0;
    background-color: #fb7806;
  }
  .left-section.open #filterMenu .fa-close {
    display: block;
    left: 224px;
    font-size: 32px;
    padding: 5px;
    color: #fff;
    outline: none;
    border: 0;
  }
  .left-section #filterMenu .fa-filter {
    font-size: 32px;
    padding: 5px;
    color: #fff;
    outline: none;
    border: 0;
  }
  .left-section.open #filterMenu .fa-filter {
    display: none;
  }
}