@charset "UTF-8";
/*======================================
  Color Variables
  ======================================*/
/*======================================
  Font Variables
  ======================================*/
/*======================================
  Our Imports
  ======================================*/
/*======================================
  Navigation Bar
  ======================================*/
nav.navbar {
  background-color: rgb(171, 44, 41);
  padding-bottom: 0;
  padding-top: 0;
  transition: 0.3s all;
}
nav.navbar #logo_background_shape {
  width: 300px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 98;
}
nav.navbar #logo_background_shape .polygon {
  stroke: none;
  fill: rgb(0, 0, 0);
}
nav.navbar .navbar-brand {
  position: absolute;
  top: 0;
  width: 300px;
  padding: 2.5rem 3rem 2rem 3rem;
  margin: 0;
}
nav.navbar .navbar-brand img {
  position: relative;
  z-index: 99;
}
nav.navbar .nav-item a {
  color: #fff;
  font-size: 1.5rem;
}
nav.navbar a {
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
nav.navbar #search_icon_wrapper {
  background-color: transparent;
  border: none;
}
nav.navbar .icono-search {
  color: #fff;
  width: 20px;
  height: 20px;
}
nav.navbar .icono-search:before {
  width: 3px;
  border-radius: 0 0 4px 4px;
  top: 18px;
}
nav.navbar .icon_wrapper {
  width: 25px;
}
nav.navbar .navbar-toggler {
  margin-left: auto;
}
nav.navbar .navbar-toggler .bar {
  background-color: #fff;
  margin-bottom: 4px;
  width: 32px;
  height: 4px;
  display: block;
  border-radius: 2px;
}
nav.navbar .dropdown-menu {
  background-color: rgb(171, 44, 41);
  border-radius: 0;
}
nav.navbar .dropdown-item:focus, nav.navbar .dropdown-item:hover {
  color: rgb(171, 44, 41);
  text-decoration: none;
  background-color: rgb(171, 44, 41);
  transition: 0.3s all;
}

@media (min-width: 1200px) {
  /* ======================================
     Sticky Nav
     ======================================*/
  #main_nav.slide_in {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    animation: slideInTopMenu 0.5s;
  }
  #main_nav.slide_in .navbar-brand {
    padding: 0;
    width: 120px;
  }
  #main_nav.slide_in .navbar-brand img {
    padding: 5px;
  }
  #main_nav.slide_in #logo_background_shape {
    display: none;
  }
  body.has_nav {
    padding-top: 58px;
  }
  nav.navbar .navbar-brand {
    margin-left: 6rem;
  }
  .icon_wrapper {
    margin-right: 6rem;
  }
  .icon_wrapper {
    margin-left: 2rem;
  }
  .dropdown-item {
    line-height: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .dropdown-toggle::after {
    display: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
  }
  .nav-item.dropdown.show a.nav-link {
    background-color: rgb(171, 44, 41);
    transition: 0.3s all;
  }
  .nav-item:hover {
    background-color: rgb(171, 44, 41);
    transition: 0.3s all;
  }
  .dropdown-menu {
    margin-top: 0;
    right: 0;
    left: initial;
    left: auto;
    border: none;
    animation-name: slideInLeftMenu;
    animation-duration: 0.3s;
  }
  .dropdown-menu.show:after {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 999;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid rgb(171, 44, 41);
  }
}
@media (max-width: 991px) {
  nav.navbar {
    padding: 1.8rem 1rem;
  }
  nav.navbar .icon_wrapper {
    position: absolute;
    right: 140px;
    top: 10px;
    width: 30px;
  }
  #logo_background_shape {
    transform: scale(0.6);
    transform-origin: 0 0;
  }
  nav.navbar .navbar-brand {
    width: 176px;
    padding: 1.8rem;
  }
  .navbar-toggler {
    position: absolute;
    top: 0.5rem;
    right: 50px;
  }
  .search_wrapper {
    position: absolute;
    top: 0.5rem;
    right: 0;
    padding-right: 5px;
  }
  #main_nav .collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
  }
  #main_nav .collapse:not(.show) {
    display: block;
  }
  .navbar-collapse.collapse {
    text-align: right;
    z-index: 200;
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
    background-color: rgb(171, 44, 41);
    padding: 15px 15px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
    transform: translateX(100%);
  }
  .navbar-collapse.collapse.active {
    transform: translateX(0);
  }
  nav.navbar .nav-item a {
    padding-left: 15px;
    padding-right: 15px;
    text-align: right;
  }
  nav.navbar #logo_background_shape {
    z-index: 998;
  }
  nav.navbar .navbar-brand img {
    z-index: 999;
  }
  .nav-link.dropdown-toggle.active {
    background-color: rgb(171, 44, 41);
  }
  .nav-link.dropdown-toggle.active:after {
    transform: rotate(-90deg);
  }
  nav.navbar .dropdown-menu {
    background-color: rgb(171, 44, 41);
    border: none;
    margin-top: 0;
    text-align: right;
    position: relative;
  }
  nav.navbar .dropdown-menu:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    z-index: 999;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid rgb(171, 44, 41);
  }
  .dropdown-item {
    white-space: initial;
  }
}
@media (max-width: 768px) {
  nav.navbar .navbar-brand {
    width: 150px;
    padding: 1.6rem;
    left: 10px;
  }
  #logo_background_shape {
    transform: scale(0.55);
    transform-origin: 0 0;
  }
  .navbar-toggler {
    right: 20px;
  }
  nav.navbar .icon_wrapper {
    position: absolute;
    right: 100px;
  }
}
/* ======================================
   Hero Section
   ======================================*/
.hero_section {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero_section:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
}
.hero_section #hero_text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 3rem;
  z-index: 1;
}
.hero_section #hero_text h3 {
  color: #fff;
  font-weight: bold;
}
.hero_section #hero_text h1 {
  color: #fff;
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.hero_section #hero_text h1.click_able:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s;
}
.hero_section #hero_text .view_more {
  display: block;
  height: 0;
  transform: translateY(-1rem);
  position: relative;
  opacity: 0;
  transition: 0.3s all;
  transition-delay: 0.15s;
}
.hero_section #hero_text a {
  color: #fff;
}
.hero_section #hero_text a:hover {
  text-decoration: none;
}
.hero_section #hero_text a:hover h1.click_able:after {
  width: 100%;
}
.hero_section #hero_text a:hover .view_more {
  transform: translateY(0);
  opacity: 1;
}

/* ======================================
   Hero Section - Mobile
   ======================================*/
@media (min-width: 991px) {
  #hero_text h1 {
    font-size: 4rem;
  }
}
@media (max-width: 991px) {
  .hero_section {
    height: 400px;
  }
  .hero_section.home {
    height: 500px;
  }
}
/* ======================================
   Section - Padded
   ======================================*/
section.padded {
  padding: 2rem 0;
}

/* ======================================
   Section - Body
   ======================================*/
section.body h1, section.body h2, section.body h3 {
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  color: rgb(171, 44, 41);
}
section.body h4, section.body h5, section.body h6 {
  font-family: "aglet-slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: rgb(171, 44, 41);
}

@media (min-width: 991px) {
  section.body h1, section.body h2, section.body h3 {
    font-size: 3rem;
  }
}
/* ======================================
   Form Inputs
   ======================================*/
label {
  font-weight: bold;
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.25rem;
}

.custom-select, .form-control {
  border-radius: 0;
  font-size: 1.5rem;
  font-weight: bold;
  height: auto;
  height: initial;
}

.custom-select:disabled {
  color: #97a2aa;
  background-color: #b8bbbe;
}

.box_shadow {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/*======================================
  Funky Button
  ======================================*/
#load_spin {
  font-size: 3rem;
  margin-right: 2rem;
  display: none;
}
#load_spin.red {
  color: rgb(171, 44, 41);
}
#load_spin.active {
  display: inline-block;
}

.funky_button {
  position: relative;
  font-weight: bold;
  width: 230px;
  height: 80px;
  text-align: center;
  font-size: 1.25rem;
  line-height: 80px;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
}
.funky_button:hover {
  cursor: pointer;
}
.funky_button .triangle {
  position: absolute;
}
.funky_button .triangle_top {
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  right: 0;
  border-left: 240px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 20px solid rgb(171, 44, 41);
  transform: translate(-10px, -20px);
}
.funky_button .triangle_right {
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  border-top: 100px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 10px solid rgb(171, 44, 41);
  transform: translateX(10px);
}
.funky_button .triangle_left {
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-top: 0 solid transparent;
  border-bottom: 80px solid transparent;
  border-right: 10px solid rgb(171, 44, 41);
  transform: translateX(-10px);
}
.funky_button.red {
  background-color: rgb(171, 44, 41);
}
.funky_button.red .triangle_top {
  border-bottom: 20px solid rgb(171, 44, 41);
}
.funky_button.red .triangle_right {
  border-left: 10px solid rgb(171, 44, 41);
}
.funky_button.red .triangle_left {
  border-right: 10px solid rgb(171, 44, 41);
}

@media (min-width: 768px) {
  .funky_button {
    margin-right: 3rem;
    margin-top: 1.5rem;
  }
}
@media (min-width: 300px) {
  .funky_button {
    margin-right: 1rem;
    margin-top: 1.5rem;
  }
}
/*======================================
  Border top/Bottom Red
  ======================================*/
.border_bottom_red {
  border-bottom: 3px solid rgb(171, 44, 41);
}

.border_top_red {
  border-top: 3px solid rgb(171, 44, 41);
}

/* ======================================
   Contact Section
   ======================================*/
section.contact .container {
  padding-top: 1rem;
}

/* ======================================
   Section Title
   ======================================*/
.section_title {
  padding-bottom: 1rem;
}

/* ======================================
   Search Filters
   ======================================*/
#search_filters {
  margin-bottom: 2rem;
}
#search_filters .card-header:first-child {
  border-radius: 0;
}
#search_filters .card:first-of-type {
  border-radius: 0;
}
#search_filters .card:last-of-type {
  border-radius: 0;
}
#search_filters .card .collapse.show {
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  flex: 0 0 auto;
}
#search_filters .card-header {
  background-color: rgb(171, 44, 41);
  border: none;
  position: relative;
  padding: 0.5rem 1.25rem;
}
#search_filters .card-header:after {
  width: 80%;
  margin: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff;
}
#search_filters .card-header .btn {
  color: #fff;
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  width: 100%;
  text-align: left;
  font-weight: bold;
  font-size: 1.5rem;
}
#search_filters .card-header .btn.collapsed .icon_wrapper i.fa-minus-circle {
  opacity: 0;
}
#search_filters .card-header .btn .icon_wrapper {
  float: right;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0;
  font-size: 2rem;
}
#search_filters .card-header .btn .icon_wrapper i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s all;
}
#search_filters .card-header .btn .icon_wrapper i.fa-minus-circle {
  opacity: 1;
}
#search_filters .card-body {
  background-color: #f0f7ff;
}
/* ======================================
   Sort Dropdown
   ======================================*/
#sort {
  border: 2px solid rgb(171, 44, 41);
  color: rgb(171, 44, 41);
  background-color: #f0f7ff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  border-radius: 4px;
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/*======================================
  Vehicles Layout Inventory Page
  ======================================*/
.vehicle_wrapper {
  margin-bottom: 2rem;
  border-bottom: 3px solid #ab2c29;
}
.vehicle_wrapper .image_wrap {
  width: 100%;
  height: 230px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}
.vehicle_wrapper h4 {
  font-weight: bold;
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
.vehicle_wrapper h4 a {
  color: rgb(171, 44, 41);
}
.vehicle_wrapper h5 {
  font-weight: bold;
}

@media (min-width: 991px) {
  .vehicle_wrapper h4 {
    font-size: 2.5rem;
  }
}
/*======================================
  Loading Inventory Gif
  ======================================*/
#loading_inventory {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 0.5);
}
#loading_inventory.inactive {
  display: none;
}
#loading_inventory #load_spin {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*======================================
  Bubble Wrapper
  ======================================*/
#bubble_wrapper {
  margin-bottom: 0.5rem;
}
#bubble_wrapper .bubble {
  margin: 0.15rem;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 14px;
  background-color: rgb(171, 44, 41);
  color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
#bubble_wrapper .bubble:hover {
  cursor: pointer;
}
#bubble_wrapper .bubble:after {
  content: "×";
  color: #fff;
  font-size: 1rem;
  margin-left: 13px;
  position: relative;
  top: -1px;
}

/*======================================
  POPUP Fancybox
  ======================================*/
.fancybox h2 {
  color: rgb(171, 44, 41);
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  font-size: 1.75rem;
}
.fancybox h2 a {
  color: rgb(171, 44, 41);
}
.fancybox h3 {
  font-weight: bold;
  color: rgb(171, 44, 41);
}
.fancybox .funky_button {
  position: absolute;
  right: 0;
  bottom: -44px;
}

@media (min-width: 991px) {
  .fancybox h2 {
    font-size: 2.5rem;
  }
  .fancybox h3 {
    font-size: 1.5rem;
  }
  .fancybox-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*======================================
  Options List
  ======================================*/
ul.options_list {
  padding-left: 0;
  list-style-type: none;
  font-size: 1.15rem;
  margin-bottom: 5rem;
}
ul.options_list.med_marg {
  margin-bottom: 2rem;
}
ul.options_list.no_marg {
  margin-bottom: 0.5rem;
}
ul.options_list.no_bord li {
  border-bottom: none;
}
ul.options_list li {
  border-bottom: 1px solid rgb(70, 70, 70);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
ul.options_list li a {
  color: rgb(70, 70, 70);
}
ul.options_list li.vin {
  text-transform: uppercase;
}
ul.options_list li .title {
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  color: rgb(171, 44, 41);
}
ul.options_list li img {
  width: 25px;
  margin-right: 0.5rem;
}

/*======================================
  Vehicle Slider Inside POPUP Fancybox
  ======================================*/
.vehicle_slider {
  margin-bottom: 1rem;
}

.slider_nav {
  text-align: center;
}
.slider_nav .thumbnail {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: 50%;
  display: inline-block;
  margin: 0 5px;
}

/*======================================
  Fancy Box Fix
  ======================================*/
@media (min-width: 576px) {
  .fancybox .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .fancybox .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .fancybox .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .fancybox .container {
    width: 1140px;
  }
}
/*======================================
  Horizontal Rule <hr>
  ======================================*/
hr.red {
  border-top-color: rgb(171, 44, 41);
}
hr.thick {
  border-top-width: 3px;
}

/*======================================
  Call Button
  ======================================*/
.call_button {
  background-color: rgb(171, 44, 41);
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}
.call_button a {
  color: #fff;
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.5rem;
  font-weight: bold;
}
.call_button img {
  width: 30px;
  margin-right: 4px;
}
.call_button .divider {
  border-right: 1px solid #fff;
  margin-right: 8px;
}

/*======================================
  Email Friend Popup
  ======================================*/
#email_friend h4 {
  color: rgb(70, 70, 70);
}
#email_friend a {
  color: rgb(70, 70, 70);
}

/*======================================
  Search On Hero
  ======================================*/
#search_wrapper {
  text-align: left;
}

/*======================================
  Search Form
  ======================================*/
#search_form {
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
#search_form #submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#search_form .custom-select {
  height: auto;
  height: initial;
  font-size: 1.5rem;
  font-weight: bold;
}
#search_form #clear {
  text-align: right;
  font-family: "aglet-slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-top: 0.25rem;
  opacity: 0;
}
#search_form #clear.visible {
  opacity: 1;
}

/*======================================
  Our Imports
  ======================================*/
#footer .red_section {
  padding: 2rem 0;
  background-color: rgb(171, 44, 41);
}
#footer .icon_section {
  padding: 2rem 0;
}
#footer .icon_section .footer_icon_blocks {
  text-align: center;
  color: rgb(171, 44, 41);
  font-weight: bold;
}
#footer .icon_section .footer_icon_blocks a {
  color: rgb(171, 44, 41);
}
#footer .icon_section .footer_icon_blocks img {
  max-width: 150px;
}
#footer .icon_section .footer_icon_blocks p {
  font-family: "rift", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.25rem;
  line-height: 1.4rem;
}

@media (max-width: 991px) {
  #footer .icon_section .footer_icon_blocks p {
    font-size: 0.85rem;
  }
}
.radbody.inventory table th, .radbody.single_inventory table th {
  min-width: 25ch;
}

/*======================================
  General Styles
  ======================================*/
body {
  background-color: #f0f7ff;
  font-family: "aglet-slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.1rem;
  color: rgb(70, 70, 70);
}

/*======================================
  Buttons
  ======================================*/
.btn-red {
  background-color: rgb(171, 44, 41);
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: rgb(171, 44, 41);
}

/*# sourceMappingURL=auto-styles.css.map */
