@charset "UTF-8";
@keyframes fadeInAlert {
  0% {
    opacity: 0;
    top: -30px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.fixed-alert-container {
  position: fixed;
  top: 20px;
  z-index: 200;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-alert-container .alert {
  opacity: 0;
  top: -30px;
  position: absolute;
}
.fixed-alert-container .alert.show {
  animation-name: fadeInAlert;
  animation-duration: 0.5s;
  opacity: 1;
  top: 0px;
}

.hpCommentContainer {
  display: none;
}

.table {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.table th {
  font-size: 13px;
}
.table th {
  color: #4e4e4e;
  font-weight: 700;
  text-transform: uppercase;
}
.table > :not(:first-child) {
  border-top: 1px solid #ccc;
}

.empty-placeholder {
  margin-top: 30px;
  text-align: center;
}
.empty-placeholder .fa {
  font-size: 4em;
  color: silver;
  margin-bottom: 10px;
}
.empty-placeholder font {
  margin-top: 15px;
  color: #888;
}

header .navbar-brand {
  font-size: 15px;
  font-weight: bold;
}
header .navbar {
  background: #5e9cff !important;
}
header .main-nav li {
  font-size: 13px;
}
header .main-nav li .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}
header .main-nav li .nav-link:hover {
  color: white !important;
}
header .main-nav .dropdown-menu .dropdown-item {
  color: rgba(83, 145, 245, 0.8);
  font-size: 14px;
}
header .main-nav .dropdown-menu .dropdown-item:hover {
  color: #5391f5;
}
header .main-nav .dropdown-menu .dropdown-item:active {
  background-color: #5391f5;
  color: #fff;
}
header .navbar-collapse {
  flex-grow: unset !important;
}

main > .container {
  padding: 60px 15px 0;
}

a:hover {
  text-decoration: inherit !important;
}

/**
* Components
*/
.nav-tabs {
  margin-top: 15px;
}
.nav-tabs .nav-item i {
  margin-right: 10px;
}
.nav-tabs .nav-item .nav-link {
  color: #888;
  padding: 10px 35px;
  font-size: 14px;
}
.nav-tabs .nav-item .nav-link.active {
  color: #149943;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.dashboard-widget .card-title {
  display: flex;
}
.dashboard-widget .card-title span {
  flex: 1;
}
.dashboard-widget .card-title .icon {
  font-size: 25px;
}
.dashboard-widget .footer {
  display: flex;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -16px;
  margin-top: 25px;
  padding: 0px !important;
}
.dashboard-widget .footer > div {
  flex: 1;
  background: #f1f1f1;
  text-align: center;
  padding: 10px;
}
.dashboard-widget .footer > div:nth-child(2) {
  border-left: 1px solid #CCC;
}
.dashboard-widget .footer .label {
  font-size: 12px;
  color: #888;
}

.user-badge {
  display: flex;
  justify-content: end;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-right: 30px;
}
.user-badge .link {
  color: #0d6efd;
  font-size: 13px;
}
.user-badge .user-avatar-container {
  display: flex;
}
.user-badge .user-avatar-icon {
  display: flex;
  align-items: center;
  font-size: 35px;
  color: #CCC;
  margin-left: 15px;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.datepicker-dropdown {
  margin-top: 7px;
  margin-left: 5px;
}
.datepicker-dropdown .table-condensed {
  width: 230px;
  font-size: 13px;
  height: 250px;
}
.datepicker-dropdown .table-condensed tbody td {
  width: 30px;
  height: 30px;
}
.datepicker-dropdown .table-condensed tbody td.active {
  background: #005ebd;
}
.datepicker-dropdown .table-condensed tbody td.active:hover {
  background: #005ebd;
}

.datepicker-container {
  position: relative;
}
.datepicker-container .icon {
  color: #AAA;
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  top: 0px;
  font-size: 14px;
}

.btn-lg {
  font-size: 15px;
  padding: 13px 20px;
}

.btn-primary {
  background: #5e9cff;
  border-color: #5e9cff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  border-color: #82b2ff;
  background: #82b2ff;
}
.btn-primary:disabled {
  background-color: #bad5ff;
  border-color: #bad5ff;
}

.btn-secondary {
  color: #333;
  background-color: #f1f1f1;
  border-color: #CCC;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  color: #333;
  background-color: #CCC;
  border-color: #aaa;
}
.btn-secondary:disabled {
  color: #888;
  background: #CCC;
}

.error-tooltip .tooltip-inner {
  background-color: #dc3545;
}
.error-tooltip .tooltip-arrow::before {
  border-top-color: #dc3545;
}

.data-input-table .form-control {
  display: table-cell;
  width: unset;
}
.data-input-table .is-invalid {
  border: unset;
  border-bottom: 2px solid #dc3545 !important;
}

.tag {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 3px 12px;
  height: unset !important;
  border-radius: 15px;
  border: 1px solid #b0b0b0;
  color: #505050;
  font-size: 13px;
  min-width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag.progress {
  color: #346beb;
  border: 1px solid #346beb;
  font-size: 13px;
  border-radius: 15px;
  background: #fff;
}
.tag.warning {
  color: #4c4c4c;
  border: 2px solid #f5bc42;
  background-color: #f5bc42;
  font-weight: 600;
}
.tag.success {
  color: #ffffff;
  border: 2px solid #4fc400;
  background-color: #4fc400;
  font-weight: 800;
}
.tag.error {
  color: #ffffff;
  border: 2px solid #eb4034;
  background-color: #eb4034;
  font-weight: 800;
}

.toast-container {
  margin: 25px;
}
.toast-container .toast {
  padding-top: 3px;
  padding-bottom: 3px;
}
.toast-container .btn-close {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.toast-container .toast-body {
  display: flex;
  flex: 1;
}
.toast-container .toast-body .message {
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.toast-container .toast-body .icon {
  font-size: 20px;
}

.state-city-picker-container {
  display: flex;
}
.state-city-picker-container .state-picker-container {
  flex: 0.4;
}
.state-city-picker-container .city-picker-container {
  flex: 0.6;
  margin-left: 8px;
}

.modal-dialog .modal-header {
  padding: 9px 15px;
}
.modal-dialog .modal-header .modal-title {
  font-size: 15px;
}
.modal-dialog .modal-header .btn-close {
  font-size: 12px !important;
}
.modal-dialog .modal-body {
  padding: 5px 16px;
  font-size: 15px;
}
.modal-dialog .modal-footer {
  padding: 5px 9px;
}
.modal-dialog .modal-footer .btn {
  font-size: 13px;
}

.loading {
  display: flex;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #ffffffb3;
}
.loading .spinner-grow {
  background: #5e9cff !important;
}
.loading .text {
  margin-left: 20px;
}

.pjax-container {
  position: relative;
}

.loading-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1030;
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.lds-grid {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: red;
  animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  animation-delay: -1.6s;
}

@keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.filter-form label {
  font-size: 12px;
  color: #555;
}

.information-container .label {
  font-weight: 300;
  color: #555;
  font-size: 13px;
  text-align: left;
  vertical-align: top;
  line-height: 18px;
}
.information-container .content {
  font-size: 13px;
  word-break: break-word;
  line-height: 18px;
  color: #333;
  text-align: left;
  vertical-align: top;
}

.table .btn-table-action {
  border-radius: 5px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}
.table .btn-table-action i {
  font-size: 11px;
  margin-top: -1px;
}
.table .btn-table-action span {
  font-size: 11px;
  margin-left: 5px;
}

.select2-results__group {
  font-size: 13px !important;
  color: #888 !important;
}

.select2-results__option {
  font-size: 13px !important;
}

.select2-selection {
  height: 34px !important;
  border: 1px solid #ced4da !important;
}
.select2-selection .select2-selection__rendered {
  font-size: 14px !important;
  line-height: 14px !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.select2-selection .select2-selection__clear {
  height: 30px !important;
  margin-right: 22px !important;
  color: #ccc !important;
}
.select2-selection .select2-selection__clear:hover {
  color: #888 !important;
}
.select2-selection .select2-selection__arrow {
  height: 32px !important;
  right: 2px !important;
}

/**
* Page Specifics
*/
.login-page {
  background-color: #FFFFFF;
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-page .content-wrapper {
  height: 100%;
  background: #FFFFFF;
}
.login-page .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 80px;
}
.login-page .logo-wrapper .logo {
  width: 75%;
}
.login-page .greeting {
  font-size: 17px;
  text-align: center;
  margin-top: 31px;
  margin-bottom: 15px;
  color: #555;
}
.login-page .login-form {
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  max-width: 450px;
  align-items: center;
  justify-content: center;
  margin-top: 9rem;
  box-shadow: 0px 8px 18px #333;
}
.login-page .login-form form .form-floating {
  margin-bottom: 0px;
}
.login-page .login-form form .btn-primary {
  color: #ffffff;
  background: #00a9e4;
  border-color: #00a9e4;
}
.login-page .invalid-feedback {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 35px;
  margin: 0px;
}
.login-page .submit-wrapper {
  display: flex;
  margin-bottom: 1.2rem;
}
.login-page .submit-wrapper button {
  flex: 1;
  border-radius: 30px;
}
.login-page .header {
  background: #00a9e4;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.login-page .header .contact {
  display: flex;
  color: #fff;
  font-size: 13px;
}
.login-page .header .contact .content .fa {
  margin-right: 0px;
}
.login-page .header .contact .content:last-child {
  margin-left: 20px;
}
.login-page .header .contact .content a {
  font-size: 15px;
}

.login-form-container {
  display: flex;
  justify-content: end;
}

@media (max-width: 992px) {
  .login-form-container {
    justify-content: center;
  }
}
.form-floating > label {
  color: #888;
}

.form-container {
  display: flex;
  justify-content: center;
}
.form-container .form-floating {
  margin-bottom: 10px;
}
.form-container form {
  width: 100%;
  max-width: 500px;
  padding: 15px;
}

.container .form-floating {
  margin-bottom: 10px;
}

.highest-bid {
  padding: 10px 0px;
  margin-bottom: 15px;
  background-color: white;
  text-align: center;
}

.highest-bid .label {
  color: #727171;
  font-size: 15px;
}

.highest-bid .col-lg-6 {
  text-align: center;
}

.highest-bid {
  font-weight: 600;
}
.highest-bid .amount {
  font-size: 2rem;
  color: #00a9e4;
}
.highest-bid .amount-2nd {
  color: blue !important;
  font-size: 1.2rem !important;
}

.tree-root-node .label {
  font-size: 1.1rem;
  color: black;
  font-weight: bold;
}

.tree-child-node:hover {
  border-bottom: 2px solid #58bbe2;
}

/***
* Custom CSS
*/
html,
body {
  height: 100%;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 15px;
  font-family: "Lato", sans-serif;
  color: #727171;
  font-weight: 400;
  line-height: 25px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/
.section-title {
  margin-bottom: 75px;
  text-align: center;
}

.section-title span {
  font-size: 15px;
  color: #00a9e4;
  font-weight: 700;
}

.section-title h2 {
  color: #353535;
  font-size: 40px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 16px;
}

.section-title P {
  margin-bottom: 0;
  font-size: 17px;
  color: #727171;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 50px;
  padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 15px;
  padding: 12px 24px;
  color: #ffffff;
  font-weight: 700;
  background: #00a9e4;
  border-radius: 50px;
}

.site-btn {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  padding: 12px 35px 12px 38px;
  background: #00a9e4;
  border: none;
  border-radius: 22px;
  width: 100%;
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #ffffff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
.spacial-controls {
  position: fixed;
  width: 111px;
  height: 91px;
  top: 0;
  right: 0;
  z-index: 999;
}

.spacial-controls .search-switch {
  display: block;
  height: 100%;
  padding-top: 30px;
  background: #323232;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ffffff;
  z-index: 99999;
}

.search-model-form {
  padding: 0 15px;
}

.search-model-form input {
  width: 470px;
  font-size: 40px;
  border: none;
  border-bottom: 2px solid #ededed;
  background: 0 0;
  color: #999;
}

.search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------------------
  Header
-----------------------*/
.header__top {
  background: #323232;
}

.header__top__widget {
  padding: 12px 0 14px;
  margin-bottom: 0px;
}

.header__top__widget li {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  margin-right: 35px;
  list-style: none;
}

.header__top__widget li:last-child {
  margin-right: 0;
}

.header__top__widget li i {
  font-size: 18px;
  color: #8d8d8d;
  margin-right: 6px;
}

.header__top__right {
  text-align: right;
}

.header__top__phone {
  display: inline-block;
  margin-right: 20px;
  padding: 14px 0 12px;
}

.header__top__phone i {
  color: #8d8d8d;
  margin-right: 6px;
  font-size: 15px;
}

.header__top__phone span {
  font-size: 15px;
  color: #ffffff;
}

.header__top__social {
  display: inline-block;
  padding: 14px 0 12px;
}

.header__top__social a {
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  margin-right: 16px;
}

.header__top__social a:last-child {
  margin-right: 0;
}

.header__nav {
  text-align: center;
  padding: 29px 0 8px;
  padding-right: 5rem;
}

.header__logo {
  padding: 20px 0;
}

.header__logo a {
  display: inline-block;
}

.header__menu {
  display: inline-block;
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
}

.header__menu ul li.active a:after {
  width: 100%;
  opacity: 1;
}

.header__menu ul li:hover a:after {
  width: 100%;
  opacity: 1;
}

.header__menu ul li:hover .dropdown {
  top: 32px;
  opacity: 1;
  visibility: visible;
}

.header__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 56px;
  width: 180px;
  background: #00a9e4;
  text-align: left;
  padding: 2px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all, 0.5s;
}

.header__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.header__menu ul li .dropdown li a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  padding: 8px 20px;
  text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
  display: none;
}

.header__menu ul li a {
  font-size: 1.1rem;
  color: #353535;
  font-weight: 700;
  display: block;
  padding: 5px 0;
  text-transform: uppercase;
  position: relative;
}

.header__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: #00a9e4;
  content: "";
  opacity: 0;
  transition: all, 0.5s;
}

.header__nav__widget {
  display: inline-block;
}

.header__nav__widget .header__nav__widget__btn {
  display: inline-block;
}

.header__nav__widget .header__nav__widget__btn a {
  font-size: 15px;
  color: #353535;
  margin-right: 20px;
  display: inline-block;
}

.offcanvas-menu-wrapper {
  display: none;
}

.canvas__open {
  display: none;
}

/*---------------------
  Hero
-----------------------*/
.hero {
  padding: 140px 0;
}

.hero__text {
  padding-top: 46px;
}

.hero__text .primary-btn {
  margin-right: 16px;
}

.hero__text .primary-btn img {
  position: relative;
  top: -2px;
}

.hero__text .primary-btn.more-btn {
  background: transparent;
  border: 1px solid #ffffff;
}

.hero__text__title {
  margin-bottom: 28px;
}

.hero__text__title span {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__text__title h2 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 10px;
}

.hero__text__price {
  position: relative;
  padding-left: 140px;
  margin-bottom: 55px;
}

.hero__text__price .car-model {
  font-size: 13px;
  color: #323232;
  font-weight: 700;
  display: inline-block;
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
}

.hero__text__price h2 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  line-height: 45px;
}

.hero__text__price h2 span {
  font-size: 40px;
}

.hero__tab .nav-tabs {
  border-bottom: none;
}

.hero__tab .nav-tabs .nav-item {
  margin-bottom: 5px;
  margin-right: 5px;
}

.hero__tab .nav-tabs .nav-item .nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #323232;
  display: inline-block;
  padding: 7px 20px;
  border: none;
  border-radius: 2px;
  background: #ffffff;
}

.hero__tab .nav-tabs .nav-item .nav-link:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  left: 0;
  bottom: -7px;
  opacity: 0;
  background: #ffffff;
  transition: 0.3s;
}

.hero__tab .nav-tabs .nav-item .nav-link.active:after {
  opacity: 1;
  bottom: -7px;
}

.hero__tab__form {
  background: #ffffff;
  padding: 42px 40px 50px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.85);
}

.hero__tab__form h2 {
  color: #323232;
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 20px;
}

.hero__tab__form form .select-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}

.hero__tab__form form .select-list .select-list-item {
  max-width: calc(50% - 20px);
  float: left;
  flex: 0 0 50%;
  margin-right: 20px;
  margin-bottom: 20px;
}

.hero__tab__form form .select-list .select-list-item p {
  color: #323232;
  margin-bottom: 5px;
}

.hero__tab__form form .select-list .select-list-item .nice-select {
  width: 100%;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.hero__tab__form form .select-list .select-list-item .nice-select .list {
  width: 100%;
  border-radius: 0;
  margin-top: 0;
}

.hero__tab__form form .select-list .select-list-item .nice-select.open span {
  display: block !important;
}

.hero__tab__form form .select-list .select-list-item .nice-select:after {
  display: none;
}

.hero__tab__form form .car-price {
  margin-bottom: 45px;
}

.hero__tab__form form .car-price p {
  color: #323232;
  margin-bottom: 5px;
  margin-bottom: 12px;
}

.hero__tab__form form .car-price .price-range-wrap {
  position: relative;
}

.hero__tab__form form .car-price .price-range-wrap .ui-widget-content {
  height: 5px;
  background: rgba(45, 45, 45, 0.1);
  border: none;
  border-radius: 1px;
}

.hero__tab__form form .car-price .price-range-wrap .ui-slider-horizontal .ui-slider-handle {
  top: -5px;
  margin-left: -4px;
}

.hero__tab__form form .car-price .price-range-wrap .ui-slider .ui-slider-handle {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.hero__tab__form form .car-price .price-range-wrap .ui-state-default,
.hero__tab__form form .car-price .price-range-wrap .ui-widget-content .ui-state-default,
.hero__tab__form form .car-price .price-range-wrap .ui-widget-header .ui-state-default,
.hero__tab__form form .car-price .price-range-wrap .ui-button,
.hero__tab__form form .car-price .price-range-wrap html .ui-button.ui-state-disabled:hover,
.hero__tab__form form .car-price .price-range-wrap html .ui-button.ui-state-disabled:active {
  border: 1.5px solid #00a9e4;
}

.hero__tab__form form .car-price .price-range-wrap .ui-slider .ui-slider-range {
  background: #00a9e4;
}

.hero__tab__form form .car-price .price-input {
  position: absolute;
  left: 89px;
  top: -36px;
}

.hero__tab__form form .car-price .price-input input {
  font-size: 15px;
  color: #323232;
  font-weight: 700;
  border: none;
  width: 180px;
}

/*---------------------
  Feature
-----------------------*/
.feature {
  background: #ffffff;
  position: relative;
  z-index: 1;
  padding-bottom: 55px;
}

.feature:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 605px;
  height: 404px;
  content: "";
  transform: translate(-300px, -202px);
  z-index: -1;
}

.feature__text .section-title {
  text-align: left;
  margin-bottom: 34px;
}

.feature__text .section-title h2 {
  margin-bottom: 0;
}

.feature__text__desc {
  margin-bottom: 35px;
}

.feature__text__desc p {
  margin-bottom: 30px;
}

.feature__text__btn .primary-btn {
  margin-right: 16px;
}

.feature__text__btn .partner-btn {
  background: #222;
}

.feature__item {
  text-align: center;
  float: right;
  margin-bottom: 45px;
}

.feature__item .feature__item__icon {
  height: 100px;
  width: 100px;
  background: #f7f7f7;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  margin-bottom: 20px !important;
  margin: 0 auto;
}

.feature__item h6 {
  font-size: 15px;
  color: #353535;
  font-weight: 700;
}

/*---------------------
  Choose Us
-----------------------*/
.chooseus {
  background: #f7f7f7;
  position: relative;
  height: 530px;
  padding-bottom: 85px;
}

.chooseus .row {
  position: relative;
  z-index: 1;
}

.chooseus__text {
  position: relative;
  z-index: 1;
}

.chooseus__text .section-title {
  margin-bottom: 10px;
  text-align: left;
}

.chooseus__text .section-title h2 {
  margin-top: 0;
}

.chooseus__text ul {
  margin-bottom: 28px;
}

.chooseus__text ul li {
  list-style: none;
  font-size: 15px;
  color: #727171;
  line-height: 36px;
}

.chooseus__text ul li i {
  color: #00a9e4;
}

.chooseus__video {
  height: 530px;
  width: calc(100% - 46%);
  position: absolute;
  right: 0;
  top: 0;
}

.chooseus__video img {
  height: 100%;
  width: 100%;
}

.chooseus__video .play-btn {
  height: 60px;
  width: 60px;
  background: #00a9e4;
  border-radius: 50%;
  font-size: 25px;
  color: #ffffff;
  line-height: 64px;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-30px, -30px);
  z-index: 9;
}

.chooseus__video .play-btn i {
  position: relative;
  left: 3px;
  top: -1px;
}

.login-form {
  width: 100%;
  max-width: 330px;
  padding: 15px;
}

.login-form-container {
  display: flex;
  justify-content: end;
}

@media (max-width: 992px) {
  .login-form-container {
    justify-content: center;
  }
}
.form-floating > label {
  color: #888;
}

.form-container {
  display: flex;
  justify-content: center;
}

.form-container .form-floating {
  margin-bottom: 10px;
}

.form-container form {
  width: 100%;
  max-width: 500px;
  padding: 15px;
}

.state-city-picker-container {
  display: flex;
}

.state-city-picker-container .state-picker-container {
  flex: 0;
}

.state-city-picker-container .city-picker-container {
  flex: 0;
  margin-left: 8px;
}

.hpCommentContainer {
  display: none;
}

.otp-input-container {
  align-items: center;
  justify-content: center;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.otp-input-container .otp {
  width: 40px;
  font-size: 20px;
}

.otp-input-container .otp:not(:first-child) {
  margin-left: 10px;
}

/*---------------------
  Cta
-----------------------*/
.cta {
  padding-bottom: 70px;
}

.cta__item {
  position: relative;
  z-index: 1;
  padding: 50px 34px 65px;
  border-radius: 2px;
  margin-bottom: 30px;
}

.cta__item:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: -1;
  border-radius: 2px;
}

.cta__item h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta__item p {
  color: #ffffff;
  margin-bottom: 0;
}

/*---------------------
  Car
-----------------------*/
.car {
  padding-bottom: 120px;
}

.car .section-title {
  margin-bottom: 20px;
}

.car .section-title h2 {
  margin-bottom: 0;
}

.filter__controls {
  text-align: center;
  margin-bottom: 40px;
}

.filter__controls li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  color: #8d8d8d;
  font-weight: 700;
  margin-right: 50px;
  position: relative;
  padding: 4px 0;
  cursor: pointer;
}

.filter__controls li.active {
  color: #323232;
}

.filter__controls li.active:after {
  opacity: 1;
}

.filter__controls li:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #00a9e4;
  content: "";
  opacity: 0;
}

.filter__controls li:last-child {
  margin-right: 0;
}

.car__filter__option {
  background: #f7f7f7;
  padding: 12px 10px;
  margin-bottom: 30px;
}

.car__filter__option .car__filter__option__item.car__filter__option__item--right {
  text-align: right;
}

.car__filter__option .car__filter__option__item h6 {
  font-size: 15px;
  color: #353535;
  font-weight: 700;
  display: inline-block;
  margin-right: 15px;
}

.car__filter__option .car__filter__option__item .nice-select {
  width: auto;
  font-size: 15px;
  color: #353535;
  padding-left: 20px;
  padding-right: 50px;
  border: 1px solid #ebebeb;
  height: 36px;
  background: #ffffff;
  line-height: 36px;
  border-radius: 0;
  float: none;
  display: inline-block;
}

.car__filter__option .car__filter__option__item .nice-select .list {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
}

.car__filter__option .car__filter__option__item .nice-select:after {
  border-bottom: 1.5px solid #aaaab3;
  border-right: 1.5px solid #aaaab3;
  height: 7px;
  right: 22px;
  width: 7px;
}

.car__item {
  margin-bottom: 30px;
}

.car__item__pic__slider img {
  border-radius: 2px 2px 0 0;
}

.car__item__pic__slider.owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 15px;
}

.car__item__pic__slider.owl-carousel .owl-dots button {
  height: 8px;
  width: 8px;
  background: #8d8d8d;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}

.car__item__pic__slider.owl-carousel .owl-dots button.active {
  background: #ffffff;
}

.car__item__pic__slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.car__item__text {
  border: 1px solid #ebebeb;
}

.car__item__text__inner {
  padding: 1px 10px 14px 10px;
}

.car__item__text__inner .label-date {
  display: inline-block;
  font-size: 13px;
  color: #323232;
  font-weight: 700;
  padding: 2px 15px 1px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.car__item__text__inner h5 {
  margin-top: 10px;
  margin-bottom: 0px;
}

.car__item__text__inner .lot_id {
  margin-bottom: 10px;
}

.car__item__text__inner li i {
  font-size: 20px !important;
}

.car__item__text__inner h5 a {
  color: #00a9e4;
  font-weight: 500;
  font-size: 1.1rem;
}

.car__item__text__inner ul li {
  list-style: none;
  font-size: 15px;
  color: #8d8d8d;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-right: 40px;
}

.car__item__text__inner ul li:after {
  position: absolute;
  right: -23px;
  top: 3px;
  height: 15px;
  width: 2px;
  background: #8d8d8d;
  content: "";
}

.car__item__text__inner ul li span {
  color: #323232;
}

.car__item__text__inner ul li:last-child {
  margin-right: 0;
}

.car__item__text__inner ul li:last-child:after {
  display: none;
}

.car__item__price {
  position: relative;
}

.car__item__price .car-option {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  background: #4971ff;
  display: inline-block;
  padding: 10px 22px 10px;
  border-radius: 2px 0 0 2px;
  position: absolute;
  right: 0;
  top: 3px;
}

.fa-heart-o {
  cursor: pointer;
}

.fa-heart {
  color: red;
  cursor: pointer;
}

.car__item__text__inner ul li a .fa-heart-o:hover {
  color: red;
}

.car__item__price .car-option.sale {
  background: #00a9e4;
}

.car__item__price h6 {
  font-size: 1.2rem;
  color: #00a9e4;
  font-weight: 700;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 11px;
}

.car__item__price h6 span {
  color: #727171;
  font-size: 13px;
  font-weight: 400;
}

.pagination__option {
  padding-top: 20px;
}

.pagination__option a {
  display: inline-block;
  height: 50px;
  width: 50px;
  font-size: 18px;
  color: #727171;
  font-weight: 700;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  line-height: 50px;
  text-align: center;
  margin-right: 6px;
  transition: all, 0.3s;
}

.pagination__option a:hover,
.pagination__option a.active {
  border-color: #00a9e4;
  color: #353535;
}

.pagination__option a:last-child {
  margin-right: 0;
}

.pagination__option a span {
  font-size: 18px;
  position: relative;
  top: 2px;
  font-weight: 700;
}

.car__sidebar {
  background: #f7f7f7;
  padding: 30px;
}

.car__search {
  margin-bottom: 40px;
}

.car__search h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
  margin-bottom: 15px;
}

.car__search .form {
  position: relative;
}

.car__search .form input {
  height: 46px;
  width: 100%;
  font-size: 15px;
  color: #727171;
  padding-left: 20px;
  border: 1px solid #ebebeb;
  background: #ffffff;
}

.car__search .form input::-moz-placeholder {
  color: #727171;
}

.car__search .form input::placeholder {
  color: #727171;
}

.car__search .form button {
  font-size: 14px;
  color: #aaaab3;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  height: 100%;
  padding: 0 15px;
}

.car__filter h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
  margin-bottom: 15px;
}

.car__filter .form .nice-select {
  width: 100%;
  font-size: 15px;
  color: #727171;
  padding-left: 20px;
  border: 1px solid #ebebeb;
  height: 46px;
  background: #ffffff;
  line-height: 46px;
  border-radius: 0;
  margin-bottom: 10px;
  float: none;
}

.car__filter .form .nice-select .list {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
}

.car__filter .form .nice-select:after {
  border-bottom: 1.5px solid #aaaab3;
  border-right: 1.5px solid #aaaab3;
  height: 7px;
  right: 22px;
  width: 7px;
}

.car__filter .form .filter-price {
  margin-bottom: 30px;
  padding-top: 8px;
}

.car__filter .form .filter-price p {
  color: #323232;
  margin-bottom: 5px;
  margin-bottom: 18px;
}

.car__filter .form .filter-price .price-range-wrap {
  position: relative;
}

.car__filter .form .filter-price .price-range-wrap .ui-widget-content {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 1px;
}

.car__filter .form .filter-price .price-range-wrap .ui-slider-horizontal .ui-slider-handle {
  top: -5px;
  margin-left: -4px;
}

.car__filter .form .filter-price .price-range-wrap .ui-slider .ui-slider-handle {
  width: 14px;
  height: 14px;
  background: #00a9e4;
  border-radius: 50%;
  cursor: pointer;
}

.car__filter .form .filter-price .price-range-wrap .ui-state-default,
.car__filter .form .filter-price .price-range-wrap .ui-widget-content .ui-state-default,
.car__filter .form .filter-price .price-range-wrap .ui-widget-header .ui-state-default,
.car__filter .form .filter-price .price-range-wrap .ui-button,
.car__filter .form .filter-price .price-range-wrap html .ui-button.ui-state-disabled:hover,
.car__filter .form .filter-price .price-range-wrap html .ui-button.ui-state-disabled:active {
  border: none;
}

.car__filter .form .filter-price .price-range-wrap .ui-slider .ui-slider-range {
  background: #00a9e4;
}

.car__filter .form .filter-price .price-input {
  position: absolute;
  left: 42px;
  top: -44px;
}

.car__filter .form .filter-price .price-input input {
  font-size: 15px;
  color: #353535;
  font-weight: 700;
  border: none;
  width: 200px;
  background: transparent;
}

.car__filter .form .car__filter__btn {
  text-align: center;
}

/*---------------------
  Footer
-----------------------*/
.footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer__contact {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 65px;
}

.footer__contact__title h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
}

.footer__contact__option {
  text-align: right;
}

.footer__contact__option .option__item {
  font-size: 15px;
  color: #ffffff;
  background: #00a9e4;
  display: inline-block;
  font-weight: 700;
  padding: 14px 18px 14px 24px;
  margin-right: 16px;
  border-radius: 2px;
}

.footer__contact__option .option__item:last-child {
  margin-right: 0;
}

.footer__contact__option .option__item.email {
  color: #323232;
  background: #ffffff;
}

.footer__contact__option .option__item.email i {
  color: #00a9e4;
}

.footer__contact__option .option__item i {
  margin-right: 5px;
}

.footer__about {
  margin-bottom: 30px;
}

.footer__about p {
  color: #8d8d8d;
  margin-bottom: 25px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo a {
  display: inline-block;
}

.footer__social {
  margin-bottom: 20px;
}

.footer__social a {
  display: inline-block;
  height: 38px;
  width: 38px;
  font-size: 15px;
  color: #ffffff;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  margin-right: 6px;
}

.footer__social a:last-child {
  margin-right: 0;
}

.footer__social a.facebook {
  background: #324975;
}

.footer__social a.twitter {
  background: #2c85ae;
}

.footer__social a.google {
  background: #dc4438;
}

.footer__social a.skype {
  background: #3eaff0;
}

.footer__copyright__text {
  margin-bottom: 0 !important;
  text-align: center;
}

.footer__copyright__text a {
  font-weight: 400;
  color: #727171;
}

.footer__copyright__text i {
  color: #cc1111;
}

.footer__copyright__text p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.footer__widget {
  margin-bottom: 30px;
}

.footer__widget h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer__widget ul li {
  list-style: none;
}

.footer__widget ul li a {
  font-size: 15px;
  color: #8d8d8d;
  line-height: 36px;
}

.footer__widget ul li i {
  margin-right: 2px;
}

.footer__brand {
  overflow: hidden;
  margin-bottom: 30px;
}

.footer__brand h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer__brand ul {
  width: 50%;
  float: left;
}

.footer__brand ul li {
  list-style: none;
}

.footer__brand ul li a {
  font-size: 15px;
  color: #8d8d8d;
  line-height: 36px;
}

.footer__brand ul li i {
  margin-right: 2px;
}

/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-option {
  padding: 60px 0 60px;
}

.breadcrumb-option.contact-breadcrumb {
  padding: 70px 0 260px;
}

.breadcrumb-option.contact-breadcrumb h2 {
  margin-bottom: 0;
}

.breadcrumb__text h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 6px;
}

.breadcrumb__links a {
  font-size: 15px;
  color: #ffffff;
  margin-right: 18px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a:after {
  position: absolute;
  right: -15px;
  top: 0;
  content: "";
  font-family: "FontAwesome";
}

.breadcrumb__links a i {
  color: #00a9e4;
  margin-right: 5px;
}

.breadcrumb__links span {
  font-size: 15px;
  color: #727171;
  display: inline-block;
}

/*---------------------
  About
-----------------------*/
.about {
  padding-bottom: 70px;
}

.section-title.about-title h2 {
  line-height: 55px;
}

.section-title.about-title p {
  font-size: 17px;
  line-height: 30px;
  color: #6a6b7c;
}

.about__feature {
  padding-bottom: 60px;
}

.about__feature__item {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.about__feature__item h5 {
  font-size: 22px;
  color: #00a9e4;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about__feature__item p {
  margin-bottom: 0;
}

.about__pic {
  margin-bottom: 50px;
}

.about__pic img {
  min-width: 100%;
  border-radius: 10px;
}

.about__item {
  margin-bottom: 30px;
}

.about__item h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
  margin-bottom: 15px;
}

.about__item p {
  margin-bottom: 0;
}

/*---------------------
  Call
-----------------------*/
.call__text .section-title {
  text-align: left;
  margin-bottom: 35px;
}

.call__text .section-title h2 {
  color: #ffffff;
  margin-bottom: 12px;
}

.call__text .section-title p {
  color: #ffffff;
}

.call__text a {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}

.call__text a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #00a9e4;
  content: "";
}

.call__form input {
  width: 100%;
  height: 48px;
  color: #727171;
  font-size: 15px;
  padding-left: 20px;
  border: none;
  border-radius: 2px;
  margin-bottom: 25px;
}

.call__form .nice-select {
  float: none;
  width: 100%;
  height: 48px;
  border-radius: 2px;
  line-height: 48px;
  margin-bottom: 25px;
}

.call__form .nice-select span {
  font-size: 15px;
  color: #353535;
}

.call__form .nice-select .list {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
}

.call__form .nice-select:after {
  height: 10px;
  width: 10px;
  border-bottom: 2px solid #323232;
  border-right: 2px solid #323232;
  margin-top: 0;
  right: 22px;
  top: 35%;
}

.call__form button {
  letter-spacing: 1px;
}

/*---------------------
  Team
-----------------------*/
.team {
  padding-bottom: 70px;
}

.section-title.team-title {
  margin-bottom: 50px;
}

.team__item {
  margin-bottom: 30px;
}

.team__item__pic img {
  min-width: 100%;
  border-radius: 2px;
}

.team__item__text {
  padding-top: 20px;
  text-align: center;
}

.team__item__text h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
  margin-bottom: 5px;
}

.team__item__text span {
  font-size: 15px;
  color: #727171;
}

/*---------------------
  Testimonial
-----------------------*/
.testimonial {
  padding-top: 0;
}

.section-title.testimonial-title {
  margin-bottom: 40px;
  padding-top: 90px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial__slider.owl-carousel .col-lg-4 {
  max-width: 100%;
}

.testimonial__slider.owl-carousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 40px;
}

.testimonial__slider.owl-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #f4f6f8;
  line-height: 50px;
  font-size: 30px;
  color: #353535;
  text-align: center;
  position: absolute;
  left: -85px;
  top: 50%;
  transform: translateY(-40px);
}

.testimonial__slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -85px;
}

.testimonial__slider.owl-carousel .owl-dots {
  text-align: center;
}

.testimonial__slider.owl-carousel .owl-dots button {
  height: 10px;
  width: 10px;
  background: #ebebeb;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
  background: #00a9e4;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.testimonial__item {
  /**-webkit-box-shadow: 0px 6px 15px rgba(50, 15, 15, 0.05);
  box-shadow: 0px 6px 15px rgba(50, 15, 15, 0.05);**/
  box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.29);
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
}

.testimonial__item:hover {
  box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.29);
}

.testimonial__item p {
  font-size: 20px;
  color: #353535;
  line-height: 32px;
  margin-bottom: 0;
}

.testimonial__item__author {
  overflow: hidden;
  margin-bottom: 22px;
}

.testimonial__item__author__pic {
  float: left;
  margin-right: 30px;
}

.testimonial__item__author__text {
  overflow: hidden;
  padding-top: 10px;
}

.testimonial__item__author__text .rating {
  margin-bottom: 5px;
}

.testimonial__item__author__text .rating i {
  font-size: 20px;
  color: #f9b944;
}

.testimonial__item__author__text h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
}

.testimonial__item__author__text h5 span {
  font-size: 15px;
  color: #727171;
  font-weight: 400;
}

/*---------------------
  Counter
-----------------------*/
.counter {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  padding-top: 80px;
}

.counter:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: -1;
}

.counter__item {
  text-align: center;
  margin-bottom: 30px;
}

.counter__item h2 {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
}

.counter__item strong {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  line-height: 72px;
}

.counter__item p {
  font-size: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 700;
  color: #ffffff;
}

/*---------------------
  Clients
-----------------------*/
.clients {
  padding-bottom: 70px;
}

.section-title.client-title {
  margin-bottom: 45px;
}

.client__item {
  border: 1px solid #ebebeb;
  margin-bottom: 30px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------------------
  About
-----------------------*/
/*---------------------
  Services
-----------------------*/
.services__item {
  padding-bottom: 60px;
}

.services__item {
  text-align: center;
  padding: 36px 35px 40px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  transition: all, 0.4s;
  margin-bottom: 40px;
}

.services__item:hover {
  box-shadow: 0px 6px 50px rgba(50, 15, 15, 0.05);
  border: 1px solid transparent;
}

.services__item:hover a {
  background: #00a9e4;
  border-color: #00a9e4;
  color: #ffffff;
}

.services__item h5 {
  font-size: 22px;
  color: #00a9e4;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 20px;
}

.services__item p {
  margin-bottom: 20px;
  color: #8d8d8d;
}

.services__item a {
  font-size: 15px;
  color: #00a9e4;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ebebeb;
  display: inline-block;
  transition: all, 0.3s;
}

/*---------------------
  Car Details
-----------------------*/
.car-details {
  padding-bottom: 70px;
}

.car__details__pic {
  margin-bottom: 50px;
}

.car__details__pic__large {
  margin-bottom: 20px;
}

.car__details__pic__large img {
  min-width: 100%;
}

.car-thumbs .ct img {
  cursor: pointer;
}

.car__details__tab .nav-tabs {
  border-bottom: none;
  background: #f7f7f7;
}

.car__details__tab .nav-tabs .nav-item {
  display: inline-block;
  margin-right: 30px;
}

.car__details__tab .nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.car__details__tab .nav-tabs .nav-item .nav-link {
  font-size: 20px;
  color: #707070;
  font-weight: 700;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 20px 30px;
  position: relative;
}

.car__details__tab .nav-tabs .nav-item .nav-link:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #00a9e4;
  content: "";
  opacity: 0;
}

.car__details__tab .nav-tabs .nav-item .nav-link.active {
  background-color: #00a9e4;
  color: white;
}

.car__details__tab .nav-tabs .nav-item .nav-link.active:after {
  opacity: 1;
}

.car__details__tab .tab-content {
  padding: 40px 30px 30px 30px;
  background-color: #e4f6fd;
}

.car__details__tab__info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.car__details__tab__info__item {
  margin-bottom: 30px;
}

.car__details__tab__info__item h5 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 15px;
}

.car__details__tab__info__item ul li {
  list-style: none;
  font-size: 15px;
  color: #707070;
  line-height: 36px;
}

.car__details__tab__info__item ul li i {
  color: #00a9e4;
  margin-right: 8px;
  font-size: 10px;
}

.car__details__tab__feature__item {
  margin-bottom: 30px;
}

.car__details__tab__feature__item h5 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 6px;
}

.car__details__tab__feature__item ul li {
  list-style: none;
  font-size: 15px;
  color: #707070;
  line-height: 36px;
}

.car__details__tab__feature__item ul li i {
  color: #00a9e4;
  margin-right: 8px;
  font-size: 10px;
}

.car__details__sidebar {
  padding: 25px 30px 20px;
  background: #f7f7f7;
}

.car__details__sidebar__model {
  margin-bottom: 5px;
}

.car__details__sidebar__model ul {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.car__details__sidebar__model ul li {
  list-style: none;
  font-size: 15px;
  color: #727171;
  line-height: 36px;
  overflow: hidden;
}

.car__details__sidebar__model ul li span {
  color: #353535;
  font-weight: 700;
  float: right;
}

.car__details__sidebar__model .primary-btn {
  display: block;
  text-align: center;
  border-radius: 0;
  padding: 12px 0 10px;
}

.car__details__sidebar__model .primary-btn i {
  margin-right: 5px;
}

.car__details__sidebar__model p {
  color: #353535;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 0;
}

.car__details__sidebar__payment ul {
  margin-bottom: 30px;
}

.car__details__sidebar__payment ul li {
  list-style: none;
  font-size: 15px;
  color: #727171;
  line-height: 36px;
  overflow: hidden;
}

.car__details__sidebar__payment ul li:last-child span {
  font-size: 20px;
}

.car__details__sidebar__payment ul li span {
  color: #353535;
  font-weight: 700;
  float: right;
}

.car__details__sidebar__payment .primary-btn {
  display: block;
  border-radius: 0;
  text-align: center;
  margin-bottom: 10px;
  padding: 12px 0 10px;
}

.car__details__sidebar__payment .primary-btn i {
  margin-right: 5px;
}

.car__details__sidebar__payment .primary-btn.sidebar-btn {
  background: #ffffff;
  color: #727171;
  border: 1px solid #ebebeb;
}

/*---------------------
  Latest Blog
-----------------------*/
.latest {
  padding-bottom: 70px;
  padding-top: 110px;
}

.latest .section-title {
  margin-bottom: 45px;
}

.latest__blog__item {
  margin-bottom: 30px;
}

.latest__blog__item__pic {
  height: 220px;
  position: relative;
  border-radius: 2px;
}

.latest__blog__item__pic ul {
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0 0 2px 2px;
}

.latest__blog__item__pic ul li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  color: #ffffff;
  margin-right: 22px;
  position: relative;
}

.latest__blog__item__pic ul li:after {
  position: absolute;
  right: -14px;
  top: 1px;
  height: 17px;
  width: 1px;
  background: #ffffff;
  content: "";
}

.latest__blog__item__pic ul li:last-child {
  margin-right: 0;
}

.latest__blog__item__pic ul li:last-child:after {
  display: none;
}

.latest__blog__item__text {
  padding-top: 25px;
}

.latest__blog__item__text h5 {
  font-size: 20px;
  color: #323232;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 14px;
}

.latest__blog__item__text p {
  color: #8d8d8d;
  margin-bottom: 20px;
}

.latest__blog__item__text a {
  font-size: 15px;
  color: #8d8d8d;
  font-weight: 700;
  display: inline-block;
}

.latest__blog__item__text a i {
  color: #00a9e4;
  margin-left: 6px;
}

/*---------------------
  Blog
-----------------------*/
.blog .pagination__option {
  padding-top: 10px;
}

.blog__item {
  margin-bottom: 35px;
}

.blog__item__pic {
  height: 220px;
  position: relative;
  border-radius: 2px;
}

.blog__item__pic ul {
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 22px 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0 0 2px 2px;
}

.blog__item__pic ul li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  color: #ffffff;
  margin-right: 28px;
  position: relative;
}

.blog__item__pic ul li:after {
  position: absolute;
  right: -19px;
  top: 1px;
  height: 17px;
  width: 1px;
  background: #ffffff;
  content: "";
}

.blog__item__pic ul li:last-child {
  margin-right: 0;
}

.blog__item__pic ul li:last-child:after {
  display: none;
}

.blog__item__text {
  padding-top: 28px;
}

.blog__item__text h5 {
  margin-bottom: 40px;
}

.blog__item__text h5 a {
  font-size: 20px;
  color: #323232;
  font-weight: 700;
}

.blog__item__text p {
  color: #8d8d8d;
  margin-bottom: 0;
}

/*---------------------
  Blog Sidebar
-----------------------*/
.blog__sidebar__search {
  position: relative;
  margin-bottom: 50px;
}

.blog__sidebar__search input {
  height: 50px;
  width: 100%;
  font-size: 15px;
  color: #8d8d8d;
  padding-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-radius: 0.5px;
}

.blog__sidebar__search input::-moz-placeholder {
  color: #8d8d8d;
}

.blog__sidebar__search input::placeholder {
  color: #8d8d8d;
}

.blog__sidebar__search button {
  font-size: 16px;
  color: #353535;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  height: 100%;
  padding: 0 15px;
}

.blog__sidebar__feature {
  margin-bottom: 45px;
}

.blog__sidebar__feature h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 36px;
}

.blog__sidebar__feature__item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.blog__sidebar__feature__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.blog__sidebar__feature__item h6 {
  margin-bottom: 28px;
}

.blog__sidebar__feature__item h6 a {
  font-size: 15px;
  color: #353535;
  font-weight: 700;
}

.blog__sidebar__feature__item ul li {
  font-size: 13px;
  color: #8d8d8d;
  display: inline-block;
  list-style: none;
  margin-right: 22px;
  position: relative;
}

.blog__sidebar__feature__item ul li:after {
  position: absolute;
  right: -14px;
  top: 4px;
  height: 13px;
  width: 1px;
  background: #8d8d8d;
  content: "";
}

.blog__sidebar__feature__item ul li:last-child {
  margin-right: 0;
}

.blog__sidebar__feature__item ul li:last-child:after {
  display: none;
}

.blog__sidebar__categories {
  margin-bottom: 30px;
}

.blog__sidebar__categories h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog__sidebar__categories ul li {
  list-style: none;
  position: relative;
  padding-left: 10px;
}

.blog__sidebar__categories ul li:before {
  position: absolute;
  left: 0;
  top: 16px;
  height: 4px;
  width: 4px;
  background: #00a9e4;
  content: "";
  border-radius: 50%;
}

.blog__sidebar__categories ul li a {
  font-size: 15px;
  color: #727171;
  line-height: 36px;
}

.blog__sidebar__tag {
  margin-bottom: 70px;
}

.blog__sidebar__tag h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog__sidebar__tag a {
  display: inline-block;
  font-size: 13px;
  color: #8d8d8d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 12px;
  position: relative;
  transition: all, 0.3s;
}

.blog__sidebar__tag a:hover {
  color: #00a9e4;
}

.blog__sidebar__tag a:after {
  position: absolute;
  right: -10px;
  top: 9px;
  height: 2px;
  width: 4px;
  background: #707070;
  content: "";
}

.blog__sidebar__newslatter h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog__sidebar__newslatter p {
  color: #8d8d8d;
  margin-bottom: 35px;
}

.blog__sidebar__newslatter form {
  position: relative;
}

.blog__sidebar__newslatter form input {
  width: 100%;
  height: 46px;
  font-size: 15px;
  color: #727171;
  padding-left: 20px;
  border-radius: 2px;
  padding-right: 10px;
  border: 1px solid #ebebeb;
}

.blog__sidebar__newslatter form button {
  font-size: 13px;
  color: #ffffff;
  background: #00a9e4;
  font-weight: 700;
  display: inline-block;
  padding: 8px 20px 11px;
  position: absolute;
  right: 0;
  top: 4px;
  border: none;
  border-radius: 2px;
  margin-right: 4px;
}

/*---------------------
  Blog Hero
-----------------------*/
.blog-details-hero {
  padding-top: 80px;
  padding-bottom: 400px;
}

.blog__details__hero__text {
  text-align: center;
}

.blog__details__hero__text .label {
  font-size: 15px;
  color: #00a9e4;
  font-weight: 700;
  text-transform: uppercase;
}

.blog__details__hero__text h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
  line-height: 55px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.blog__details__hero__text ul li {
  list-style: none;
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  margin-right: 90px;
}

.blog__details__hero__text ul li span {
  display: inline-block;
  position: relative;
}

.blog__details__hero__text ul li span::after {
  position: absolute;
  right: -48px;
  top: 3px;
  height: 15px;
  width: 1px;
  background: #ffffff;
  content: "";
}

.blog__details__hero__text ul li:last-child {
  margin-right: 0;
}

.blog__details__hero__text ul li:last-child span::after {
  display: none;
}

.blog__details__hero__text ul li img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  margin-right: 6px;
}

.blog__details__hero__text ul li i {
  color: #00a9e4;
  margin-right: 2px;
}

/*---------------------
  Blog Details
-----------------------*/
.blog-details {
  margin-top: -360px;
  padding-top: 0;
  overflow: hidden;
}

.blog__details__pic {
  margin-bottom: 95px;
}

.blog__details__pic img {
  min-width: 100%;
}

.blog__details__text {
  margin-bottom: 30px;
}

.blog__details__text p {
  font-size: 17px;
  line-height: 30px;
}

.blog__details__text p:first-child {
  margin-bottom: 25px;
}

.blog__details__text p:last-child {
  margin-bottom: 0;
}

.blog__details__quote {
  padding: 0 60px;
  margin-bottom: 60px;
}

.blog__details__quote p {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
  line-height: 35px;
  position: relative;
  padding-left: 34px;
  margin-bottom: 0;
}

.blog__details__quote p:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 94px;
  width: 3px;
  background: #00a9e4;
  content: "";
}

.blog__details__desc {
  margin-bottom: 42px;
}

.blog__details__desc p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 0;
}

.blog__details__share {
  margin-right: -34px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog__details__share__item {
  display: inline-block;
  background: #37589c;
  border-radius: 2px;
  padding: 10px 10px 8px 16px;
  width: calc(25% - 34px);
  float: left;
  margin-right: 34px;
  margin-bottom: 20px;
}

.blog__details__share__item.twitter {
  background: #54adf0;
}

.blog__details__share__item.google {
  background: #dc4c39;
}

.blog__details__share__item.linkedin {
  background: #0179b6;
}

.blog__details__share__item i {
  font-size: 18px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 15px;
  display: inline-block;
}

.blog__details__share__item span {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  margin-left: 10px;
}

.blog__details__author {
  overflow: hidden;
  margin-bottom: 60px;
}

.blog__details__author__pic {
  float: left;
  margin-right: 40px;
}

.blog__details__author__pic img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.blog__details__author__text {
  overflow: hidden;
}

.blog__details__author__text h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog__details__author__text p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 0;
}

.blog__details__btns {
  margin-bottom: 35px;
}

.blog__details__btns__item {
  display: block;
  border-radius: 2px;
  padding: 25px 20px 20px;
  margin-bottom: 20px;
}

.blog__details__btns__item h6 {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 26px;
}

.blog__details__btns__item ul li {
  font-size: 13px;
  color: #ffffff;
  display: inline-block;
  list-style: none;
  margin-right: 28px;
  position: relative;
}

.blog__details__btns__item ul li:after {
  position: absolute;
  right: -19px;
  top: 4px;
  height: 13px;
  width: 1px;
  background: #ffffff;
  content: "";
}

.blog__details__btns__item ul li:last-child {
  margin-right: 0;
}

.blog__details__btns__item ul li:last-child:after {
  display: none;
}

.blog__details__comment {
  margin-bottom: 60px;
}

.blog__details__comment h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 35px;
}

.blog__details__comment__item {
  overflow: hidden;
  margin-bottom: 30px;
}

.blog__details__comment__item.reply__comment {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 100px;
}

.blog__details__comment__item:last-child {
  margin-bottom: 0;
}

.blog__details__comment__item__pic {
  float: left;
  margin-right: 30px;
}

.blog__details__comment__item__pic img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.blog__details__comment__item__text {
  overflow: hidden;
}

.blog__details__comment__item__text h6 {
  font-size: 15px;
  color: #353535;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog__details__comment__item__text p {
  margin-bottom: 35px;
}

.blog__details__comment__item__text a {
  font-size: 15px;
  color: #353535;
  font-weight: 700;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 6px 20px 4px;
  margin-right: 6px;
  transition: all, 0.3s;
}

.blog__details__comment__item__text a:hover {
  background: #00a9e4;
  color: #ffffff;
}

.blog__details__comment__form h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 25px;
}

.blog__details__comment__form form .input-list {
  margin-right: -20px;
  overflow: hidden;
}

.blog__details__comment__form form .input-list-item {
  width: calc(33.33% - 20px);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.blog__details__comment__form form .input-list-item p {
  color: #353535;
  margin-bottom: 5px;
}

.blog__details__comment__form form .input-list-item input {
  width: 100%;
  height: 46px;
  font-size: 15px;
  color: #353535;
  border-radius: 2px;
  padding-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog__details__comment__form form .input-desc {
  width: 100%;
  margin-bottom: 24px;
}

.blog__details__comment__form form .input-desc p {
  color: #353535;
  margin-bottom: 5px;
}

.blog__details__comment__form form .input-desc textarea {
  width: 100%;
  height: 140px;
  font-size: 15px;
  color: #353535;
  border-radius: 2px;
  padding-left: 20px;
  padding-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  resize: none;
}

/*---------------------
  Contact
-----------------------*/
.contact__text {
  margin-bottom: 30px;
}

.contact__text .section-title {
  text-align: left;
  margin-bottom: 36px;
}

.contact__text ul li {
  font-size: 15px;
  color: #353535;
  line-height: 36px;
  list-style: none;
}

.contact__text ul li span {
  color: #727171;
  width: 85px;
  display: inline-block;
}

.contact__form form input {
  width: 100%;
  height: 46px;
  font-size: 15px;
  color: #727171;
  border-radius: 2px;
  padding-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact__form form input::-moz-placeholder {
  color: #727171;
}

.contact__form form input::placeholder {
  color: #727171;
}

.contact__form form textarea {
  width: 100%;
  height: 100px;
  font-size: 15px;
  color: #727171;
  border-radius: 2px;
  padding-left: 20px;
  padding-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 34px;
  resize: none;
}

.contact__form form textarea::-moz-placeholder {
  color: #727171;
}

.contact__form form textarea::placeholder {
  color: #727171;
}

/*---------------------
  Contact Address
-----------------------*/
.contact-address {
  padding-bottom: 70px;
}

.contact__address__text {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 100px;
}

.contact__address__item {
  margin-bottom: 30px;
}

.contact__address__item h4 {
  color: #353535;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact__address__item p {
  line-height: 32px;
  margin-bottom: 5px;
}

.contact__address__item span {
  display: block;
  font-size: 18px;
  color: #353535;
  font-weight: 700;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }

  .container-fluid {
    max-width: 90%;
  }
}
/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__menu ul li {
    margin-right: 32px;
  }

  .chooseus {
    height: auto;
  }

  .chooseus__video {
    height: 100%;
  }

  .car__filter .form .filter-price .price-input {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 20px;
  }

  .car__details__tab .nav-tabs .nav-item {
    margin-right: 8px;
  }

  .testimonial__slider.owl-carousel .owl-nav button {
    left: -10px;
  }

  .testimonial__slider.owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }
}
/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__text {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .feature__text {
    margin-bottom: 500px;
  }

  .feature__item {
    float: none;
  }

  .chooseus {
    height: auto;
    padding-bottom: 0;
  }

  .chooseus__video {
    height: 100%;
    width: 100%;
    position: relative;
  }

  .chooseus__text {
    margin-bottom: 40px;
  }

  .car__sidebar {
    margin-bottom: 40px;
  }

  .car__details__tab .nav-tabs .nav-item {
    margin-right: 8px;
  }

  .blog__sidebar {
    padding-top: 45px;
  }

  .testimonial__slider.owl-carousel .owl-nav button {
    left: -10px;
  }

  .testimonial__slider.owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }

  .header__top {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header .container {
    position: relative;
  }

  .canvas__open {
    display: block;
    font-size: 22px;
    color: #323232;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #323232;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 35px;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    transition: all, 0.5s;
    visibility: hidden;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    padding: 50px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    transition: all, 0.5s;
    opacity: 0;
  }

  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }

  .offcanvas__menu {
    display: none;
  }

  .slicknav_btn {
    display: none;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  .slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #353535;
    font-weight: 600;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #353535;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #353535;
  }

  .slicknav_nav {
    display: block !important;
  }

  .offcanvas__logo {
    margin-bottom: 30px;
  }

  .offcanvas__widget {
    margin-bottom: 30px;
  }

  .offcanvas__widget a {
    font-size: 15px;
    color: #353535;
    margin-right: 20px;
    display: inline-block;
  }

  .offcanvas__widget .primary-btn {
    color: #ffffff;
  }

  .offcanvas__widget__add {
    margin-bottom: 20px;
  }

  .offcanvas__widget__add li {
    font-size: 15px;
    color: #353535;
    margin-right: 35px;
    list-style: none;
    line-height: 30px;
  }

  .offcanvas__widget__add li:last-child {
    margin-right: 0;
  }

  .offcanvas__widget__add li i {
    font-size: 18px;
    color: #353535;
    margin-right: 6px;
  }

  .offcanvas__social a {
    display: inline-block;
    font-size: 15px;
    color: #353535;
    margin-right: 16px;
  }

  .offcanvas__social a:last-child {
    margin-right: 0;
  }

  .offcanvas__phone__num {
    margin-bottom: 20px;
  }

  .offcanvas__phone__num i {
    color: #353535;
    margin-right: 6px;
    font-size: 15px;
  }

  .offcanvas__phone__num span {
    font-size: 15px;
    color: #353535;
  }

  .blog-details-hero {
    padding-bottom: 150px;
  }

  .blog-details {
    margin-top: -100px;
  }

  .header__logo img {
    width: 25%;
  }
}
/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
  .hero__text {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .chooseus {
    height: auto;
    padding-bottom: 0;
  }

  .chooseus__video {
    height: 100%;
    width: 100%;
    position: relative;
  }

  .chooseus__text {
    margin-bottom: 40px;
  }

  .footer__contact__option .option__item {
    margin-bottom: 12px;
  }

  .car__sidebar {
    margin-bottom: 40px;
  }

  .blog__sidebar {
    padding-top: 45px;
  }

  .feature:after {
    left: 0%;
    top: 27%;
    width: 100%;
    transform: translate(0px, 0px);
  }

  .feature__text {
    margin-bottom: 500px;
  }

  .feature__item {
    float: none;
  }

  .footer__contact__option {
    text-align: left;
  }

  .footer__contact__title {
    margin-bottom: 20px;
  }

  .car__filter__option .car__filter__option__item.car__filter__option__item--right {
    text-align: left;
    padding-top: 20px;
  }

  .blog__details__share__item {
    width: calc(50% - 34px);
  }

  .blog__details__comment__form form .input-list {
    margin-right: 0;
    overflow: hidden;
  }

  .blog__details__comment__form form .input-list-item {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .call__text {
    margin-bottom: 40px;
  }

  .testimonial__slider.owl-carousel .owl-nav {
    display: none;
  }

  .blog-details-hero {
    padding-bottom: 150px;
  }

  .blog-details {
    margin-top: -100px;
  }

  .header__top {
    display: none;
  }

  .header__logo img {
    width: 60%;
  }

  .header__nav {
    display: none;
  }

  .offcanvas-menu-wrapper {
    display: block;
  }

  .header .container {
    position: relative;
  }

  .canvas__open {
    display: block;
    font-size: 22px;
    color: #323232;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #323232;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 35px;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    transition: all, 0.5s;
    visibility: hidden;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    padding: 50px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    transition: all, 0.5s;
    opacity: 0;
  }

  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }

  .offcanvas__menu {
    display: none;
  }

  .slicknav_btn {
    display: none;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  .slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #353535;
    font-weight: 600;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #353535;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #353535;
  }

  .slicknav_nav {
    display: block !important;
  }

  .offcanvas__logo {
    margin-bottom: 30px;
  }

  .offcanvas__widget {
    margin-bottom: 30px;
  }

  .offcanvas__widget a {
    font-size: 15px;
    color: #353535;
    margin-right: 20px;
    display: inline-block;
  }

  .offcanvas__widget .primary-btn {
    color: #ffffff;
  }

  .offcanvas__widget__add {
    margin-bottom: 20px;
  }

  .offcanvas__widget__add li {
    font-size: 15px;
    color: #353535;
    margin-right: 35px;
    list-style: none;
    line-height: 30px;
  }

  .offcanvas__widget__add li:last-child {
    margin-right: 0;
  }

  .offcanvas__widget__add li i {
    font-size: 18px;
    color: #353535;
    margin-right: 6px;
  }

  .offcanvas__social a {
    display: inline-block;
    font-size: 15px;
    color: #353535;
    margin-right: 16px;
  }

  .offcanvas__social a:last-child {
    margin-right: 0;
  }

  .offcanvas__phone__num {
    margin-bottom: 20px;
  }

  .offcanvas__phone__num i {
    color: #353535;
    margin-right: 6px;
    font-size: 15px;
  }

  .offcanvas__phone__num span {
    font-size: 15px;
    color: #353535;
  }

  .blog__details__hero__text ul li {
    margin-right: 25px;
  }

  .blog__details__hero__text ul li span::after {
    right: -16px;
  }
}
/* Small Device = 320px */
@media only screen and (max-width: 479px) {
  .section-title h2,
.breadcrumb__text h2 {
    font-size: 1.5rem;
  }

  .hero__text__title h2 {
    font-size: 38px;
  }

  .hero__tab__form form .car-price .price-input {
    position: relative;
    left: 0;
    top: 0;
    padding-top: 15px;
  }

  .hero__tab__form {
    padding: 42px 20px 50px;
  }

  .hero__tab__form form .select-list .select-list-item {
    max-width: 100%;
    float: none;
    flex: 100%;
    margin-right: 0;
  }

  .hero__tab__form form .select-list {
    margin-right: 0;
  }

  .hero__text__price {
    padding-left: 0;
  }

  .hero__text__price .car-model {
    position: relative;
  }

  .hero__text__price h2 {
    margin-top: 20px;
    font-size: 34px;
  }

  .feature__text {
    margin-bottom: 40px;
  }

  .feature:after {
    display: none;
  }

  .feature__text__btn .primary-btn {
    margin-bottom: 10px;
  }

  .blog__details__comment__item.reply__comment {
    margin-left: 0;
  }

  .hero__text .primary-btn {
    margin-bottom: 10px;
  }

  .filter__controls li {
    margin-right: 15px;
  }

  .blog__details__hero__text h2 {
    font-size: 35px;
    line-height: normal;
  }

  .blog__details__quote {
    padding: 0;
  }

  .blog__details__comment__item__pic {
    float: none;
    margin-bottom: 15px;
  }

  .blog__details__author__pic {
    float: none;
    margin-right: 0;
  }

  .blog__details__author__text {
    overflow: visible;
    padding-top: 30px;
  }

  .section-title.about-title h2 {
    line-height: normal;
  }

  .search-model-form input {
    font-size: 24px;
    width: 100%;
  }
}
.auto-refresh-text {
  position: absolute;
  top: -17px;
  right: 4px;
  font-size: 10px;
  color: #555;
}

.full-page-body {
  display: flex;
  flex-direction: column;
}
.full-page-body main {
  flex: 1;
}

.bidding_figure {
  text-align: center;
}
.bidding_figure button {
  color: #ffffff;
  border-radius: 50px;
  background-color: #00a9e4;
  padding: 10px 10px;
  border: none;
  width: 80%;
}

.accordion-button.expanded::after {
  transform: rotate(0deg) !important;
}

.max_bid input:disabled,
.max_bid_form input:disabled {
  background: #eee !important;
}

.btn-add-bid {
  color: #ffffff;
  border-radius: 50px;
  background-color: #00a9e4;
  width: 26%;
  border: none;
  margin-right: 4%;
}
.btn-add-bid:disabled {
  background: #cadee6;
  color: #00a9e4;
}

#highestBid,
.car__item__text {
  position: relative;
}
#highestBid .spinner-grow,
.car__item__text .spinner-grow {
  background: #00a9e4 !important;
}

.inspection-tree {
  padding: 15px;
}
.inspection-tree .tree-children {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 8px;
}
.inspection-tree .tree-child-node {
  display: flex;
  margin-bottom: 15px;
}
.inspection-tree .tree-child-node .content-wrapper {
  flex: 1;
}
.inspection-tree .tree-child-node .content-wrapper .label {
  color: #555;
}
.inspection-tree .tree-child-node .content-wrapper .note {
  font-style: italic;
  color: #888;
}
.inspection-tree .tree-child-node .icon-wrapper .fa {
  color: green;
  font-size: 23px;
}
.inspection-tree .tree-child-node .icon-wrapper .fa.damage {
  color: red;
}

.richtext-output {
  margin-top: 15px;
}
.richtext-output p {
  margin-top: 0;
  margin-bottom: 0px;
}

.input_row2 {
  flex-wrap: wrap;
  margin-right: -20px;
}

.input_index {
  max-width: calc(50% - 20px);
  float: left;
  flex: 0 0 50%;
  margin-right: 20px;
  margin-bottom: 20px;
}

.input_index p {
  color: #323232;
  margin-bottom: 5px;
}

.input_index input[type=text] {
  width: 100% !important;
  height: 40px !important;
  border: 1px solid #ebebeb !important;
  border-radius: 2px !important;
}

.car-details-infomation-model {
  margin-bottom: 5px;
}

.car-details-infomation-model ul {
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.car-details-infomation-model table .label {
  list-style: none;
  font-size: 15px;
  color: #727171;
  line-height: 36px;
  overflow: hidden;
}
.car-details-infomation-model table .content {
  color: #353535;
  font-weight: 700;
  float: right;
}

.car-details-infomation-model ul li {
  list-style: none;
  font-size: 15px;
  color: #727171;
  line-height: 36px;
  overflow: hidden;
}

.car-details-infomation-model ul li span {
  color: #353535;
  font-weight: 700;
  float: right;
}

.car-details-info i {
  color: #00a9e4;
  margin-right: 8px;
  font-size: 10px;
  text-align: left;
}

.padding-off {
  padding: 0px !important;
}

.btn-corp {
  background-color: #0087bb !important;
  border-color: #0087bb !important;
  color: #ffffff !important;
}

.forgot_password button {
  border-radius: 30px;
  width: 100%;
}

.forgot_header {
  text-align: center;
  margin-top: 4rem;
}

.forgot_header img {
  width: 30% !important;
}

/**Marketplace & Bidding List & Garage**/
.car_status .bidding-details {
  position: absolute;
  top: 0.3rem;
  color: black;
  background: #ededed;
  display: block;
  z-index: 99;
  text-align: center;
  width: 30%;
  padding-left: 0.5rem;
}

.car_status .legal {
  float: left;
  padding-right: 5px;
}

.car_status .bidding-details {
  float: left;
}

.car_status .accident {
  position: absolute;
  top: 0.2rem;
  right: 20px;
  background: red;
  display: block;
  z-index: 10;
  height: 35px;
  width: 35px;
  text-align: center;
  border-radius: 50px;
}

.accident i {
  font-size: 20px;
  color: white;
  padding: 6px;
}

.bidding_price_place {
  width: 100%;
  padding: 10px 0px 10px 0px;
  margin-bottom: 10px;
  text-align: center;
  margin: 0px;
}

.bidding_price_place p {
  padding: 0px;
  margin: 0px;
}

.none_bid_record {
  text-align: center;
  width: 100%;
}

.none_bid_record p {
  color: #2f6d9b;
}

.bid_first_place {
  width: 45%;
  float: left;
  font-size: 1.2rem;
  color: #979797;
  border-right: 1px solid;
}

.bid_second_place {
  width: 25%;
  float: left;
  color: #979797;
  border-right: 1px solid;
}

.bid_third_place {
  width: 25%;
  float: left;
}

.bid_first_place p {
  font-size: 1.4rem;
  color: #d68b00;
  font-weight: 700;
}

.bid_first_place span {
  font-size: 1.2rem;
  color: #ffa600;
  font-weight: 700;
}

.bid_second_place p,
.bid_third_place p {
  font-size: 14px;
  color: black;
}

.mygarage_listing {
  margin-bottom: 50px !important;
  border: 1px solid #ebebeb;
}

.mygarage_listing_bid_start {
  margin-bottom: 50px !important;
  border: 3px solid #50cf11;
  border-top: 6px solid #41b309;
}

.mygarage_listing_bid_start:hover {
  box-shadow: 0px 0px 26px -8px #89cff5;
}

.mygarage_listing:hover {
  box-shadow: 0px 0px 26px -8px #89cff5;
}

.mygarage .accident {
  position: absolute;
  top: 6rem;
  right: 28px;
  background: red;
  display: block;
  z-index: 10;
  height: 35px;
  width: 35px;
  text-align: center;
  border-radius: 50px;
}

.mygarage .bidding-details {
  position: absolute;
  top: 6rem;
  color: black;
  background: #ededed;
  display: block;
  z-index: 99;
  text-align: center;
  width: 30%;
  padding-left: 0.5rem;
}

.mygarage .legal {
  float: left;
  padding-right: 5px;
}

.mygarage .bidding-details {
  float: left;
}

.mygarage_items {
  padding: 0 10px 0px 10px !important;
  background-color: white;
  height: 80px;
}

.mygarage_car_subjects {
  float: left;
}

.mygarage_heart {
  text-align: center;
}

.mygarage_heart i {
  text-align: center;
  margin-top: 1rem;
  font-size: 28px;
}

.bidding-action {
  padding-top: 10px;
  border-top: 1px solid #ebebeb;
  background-color: white;
}

.bidding-action .row {
  padding-right: 15px;
  padding-left: 15px;
}

.bidding_f_button {
  background-color: #00a9e4;
  padding: 10px 0px;
  border-radius: 50px;
  text-align: center;
  margin: 0px 10px 0px 5px;
}

.max_bid input {
  width: 68%;
  height: 48px;
  color: #00a9e4;
  font-size: 1rem;
  padding-left: 20px;
  border: 1px solid #cdcdcd;
  border-radius: 12px;
  margin-bottom: 25px;
  margin-top: 18px;
  margin-left: 7px;
  margin-right: 1%;
}

.max_bid button {
  font-size: 1rem;
  color: #00a9e4;
  font-weight: 500;
  border: 1px solid #00a9e4;
  border-radius: 12px;
  width: 27%;
  height: 48px;
  margin-right: 0px;
  padding-right: 0px;
  background-color: #ecfaff;
}

.bidding_countdown_bg {
  background-color: #ebebeb;
}

.bidding_countdown_bg_closed {
  background-color: #088333;
}

.countdown_mygarage {
  width: 80%;
  text-align: center;
  margin: auto;
  padding: 10px 0px;
}

.countdown_mygarage span {
  font-size: 1.5rem;
  color: #00a9e4;
  font-weight: 700;
}

.countdown_closed span {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
}

.mygarage_subject h5 {
  margin-top: 10px;
  margin-bottom: 0px;
  overflow: hidden !important;
  white-space: normal !important;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.car_status .success_bidded {
  position: absolute;
  top: 0.8rem;
  color: black;
  background: #2f9100;
  display: block;
  z-index: 10;
  text-align: center;
  width: 33%;
}

.car_status .success_bidded p {
  color: white;
  font-size: 1.6rem;
  padding: 5px 5px 6px 5px;
  margin: 0px;
}

.success_bidded_details {
  padding: 0px 10px !important;
}

.success_bidded_price p {
  color: #d68b00;
  font-size: 1.6rem;
  font-weight: 700;
}

.max_bid_car_details_input {
  border-radius: 20px;
  box-shadow: -1px 0px 20px -6px rgba(0, 0, 0, 0.54);
  margin-bottom: 2rem;
  border: none;
}

.car-details-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/**Marketplace & Bidding List & Garage**/
.history_tbl_mbv_none {
  display: table;
}

.history_tbl_mbv_yes {
  display: none;
}

.history_tbl_one {
  width: 10% !important;
  float: left;
}

.history_tbl_two {
  width: 90% !important;
  float: left;
}

.history_winner_status {
  color: #ffffff;
  padding: 2px 10px;
  background-color: #4fc400;
  border-radius: 50px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}

.history_loss_status {
  color: #ffffff;
  background-color: #828282;
  border-radius: 50px;
  padding: 2px 10px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}

.profile_title {
  color: #00a9e4;
  font-weight: 600;
}

.profile_subject {
  font-weight: 600;
  margin-bottom: 0px !important;
}

.profile_active {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2f9100;
}

.profile_deactive {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ae0000;
}

/**upload invoice page**/
.upload_inv_hone p {
  margin: 5px 0px 0px 0px;
}

.upload_column_input {
  display: flex;
}

/**end upload invoice page**/
/**responsive here**/
@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .bid_first_place span {
    display: block;
    width: 100%;
  }

  .bid_second_place span {
    display: block;
    width: 100%;
  }

  .bid_third_place span {
    display: block;
    width: 100%;
  }

  .mygarage_subject h5 {
    -webkit-line-clamp: 2;
  }

  .car__item__price .car-option {
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
    text-align: center;
  }

  .car__item {
    margin-bottom: 5rem;
  }

  .bidding-action .row {
    padding-right: 15px;
    padding-left: 15px;
  }

  .car__details__tab .nav-tabs .nav-item .nav-link {
    padding: 10px 10px;
    font-size: 1rem;
  }
  .car__details__tab .nav-tabs .nav-item .nav-link .active {
    padding: 10px 10px;
  }

  .car__details__tab .nav-tabs .nav-item {
    margin-right: 28px;
  }

  .history_tbl_mbv_none {
    display: inline-table;
  }

  .history_tbl_mbv_yes {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .countdown_days,
.countdown_hrs,
.countdown_min,
.countdown_sec {
    width: 25%;
  }

  .mygarage_items {
    height: 5rem;
  }

  .mygarage_subject h5 {
    margin-top: 10px;
    margin-bottom: 0px;
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .bid_first_place span {
    display: block;
    width: 100%;
  }

  .bid_second_place span {
    display: block;
    width: 100%;
  }

  .bid_third_place span {
    display: block;
    width: 100%;
  }

  .forgot_header img {
    width: 80% !important;
  }

  .car_status .bidding-details {
    position: absolute;
    top: 0.3rem;
    color: black;
    background: #ededed;
    display: block;
    z-index: 10;
    text-align: center;
    width: 35%;
    padding-left: 0.5rem;
  }

  .car_status .accident {
    position: absolute;
    top: 0.2rem;
    right: 20px;
    background: red;
    display: block;
    z-index: 10;
    height: 35px;
    width: 35px;
    text-align: center;
    border-radius: 50px;
  }

  .mygarage .bidding-details {
    z-index: 10;
  }

  .car__item__price .car-option {
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
    text-align: center;
  }

  .car__item {
    margin-bottom: 6rem;
  }

  .bidding-action row {
    padding-right: 15px;
    padding-left: 15px;
  }

  .car__details__tab .nav-tabs .nav-item .nav-link {
    padding: 10px 10px;
  }
  .car__details__tab .nav-tabs .nav-item .nav-link .active {
    padding: 10px 10px;
  }

  .car__details__tab .nav-tabs .nav-item {
    margin-right: 28px;
  }

  .history_tbl_mbv_none {
    display: none;
  }

  .history_tbl_mbv_yes {
    display: block;
  }

  .upload_column_input {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .car__details__tab .nav-tabs .nav-item {
    width: 100%;
    display: block !important;
    margin-right: 0px !important;
    text-align: center;
  }

  /**Marketplace & Garage**/
  .car_status .bidding-details {
    position: absolute;
    top: 0.3rem;
    color: black;
    background: #ededed;
    display: block;
    z-index: 10;
    text-align: center;
    width: 35%;
    padding-left: 0.5rem;
  }

  .car_status .accident {
    position: absolute;
    top: 0.2rem;
    right: 20px;
    background: red;
    display: block;
    z-index: 10;
    height: 35px;
    width: 35px;
    text-align: center;
    border-radius: 50px;
  }

  .mygarage .bidding-details {
    position: absolute;
    top: 5.8rem;
    color: black;
    background: #ededed;
    display: block;
    z-index: 10;
    text-align: center;
    width: 35%;
    padding-left: 0.5rem;
  }

  .mygarage_subject {
    width: 80%;
    padding-right: 0px;
  }

  .mygarage_subject h5 {
    -webkit-line-clamp: 2;
  }

  .mygarage_heart {
    width: 20%;
  }

  .bidding-action .bidding_figure {
    width: 25% !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin: 5px 0px 5px 22px;
  }

  .bidding_figure .bidding_f_button {
    margin: auto;
  }

  .max_bid input {
    width: 60%;
    margin-right: 6px;
  }

  .max_bid button {
    width: 33%;
  }

  .countdown_days,
.countdown_hrs,
.countdown_min,
.countdown_sec {
    width: 25%;
  }

  .bid_first_place span {
    display: block;
    width: 100%;
  }

  .bid_second_place span {
    display: block;
    width: 100%;
  }

  .bid_third_place span {
    display: block;
    width: 100%;
  }

  /**Marketplace & Garage**/
  .forgot_header img {
    width: 70% !important;
  }

  .car__item__price .car-option {
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
    text-align: center;
  }

  .car__item {
    margin-bottom: 6rem;
  }

  .bidding-action .row {
    padding-right: 15px;
    padding-left: 15px;
  }

  .car__details__tab .nav-tabs .nav-item .nav-link {
    padding: 10px 10px;
  }
  .car__details__tab .nav-tabs .nav-item .nav-link .active {
    padding: 10px 10px;
  }

  .btn-add-bid {
    width: 29%;
    margin-right: 3%;
  }

  .history_tbl_mbv_none {
    display: none;
  }

  .history_tbl_mbv_yes {
    display: block;
  }

  .upload_column_input {
    display: block;
  }
}
/***
* Unsed
*/
