@charset "UTF-8";

@font-face {
  font-family: "Suzuki";
  src: url("/fonts/Suzuki-Bold.woff2") format("woff2"),
    url("/fonts/Suzuki-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suzuki";
  src: url("/fonts/Suzuki-Regular.woff2") format("woff2"),
    url("/fonts/Suzuki-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suzuki-Headline";
  src: url("/fonts/Suzuki-Headline.woff2") format("woff2"),
    url("/fonts/Suzuki-Headline.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SuzukiPRO";
  src: url("/fonts/SuzukiPROBold.woff2") format("woff2"),
    url("/fonts/SuzukiPROBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SuzukiPRO";
  src: url("/fonts/SuzukiPRORegular.woff2") format("woff2"),
    url("/fonts/SuzukiPRORegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/**
 *	Base imports
 */
/**
 *	Reset Html5Doctor v1.6.1
 *	Author: Richard Clark
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style-type: none;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 600;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/**
 *  Mixins
 */
/**
 *  Helpers
 */
.hide {
  display: none;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

.fake-invisible {
  opacity: 0;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  line-height: 0;
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

.centered {
  margin: 0 auto;
}

.centered-abs-v {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.centered-abs-h,
.m-model__presentation__go-down,
.m-checkpoint__next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.centered-abs-vh,
.m-featured-gallery__album__content,
.m-textblock__image__picture,
.m-model_accessories__picture {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.all-space-abs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.auto-relative {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
}

.no-appearance,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
.m-home-slider__slick .slick-dots li button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  appearance: none !important;
}

@media only screen and (min-width: 1px) {
  .init-hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 35.5em) {
  .small-hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 48em) {
  .medium-hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 64em) {
  .large-hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 80em) {
  .extra-large-hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 1px) {
  .init-visible {
    display: block !important;
  }
}

@media only screen and (min-width: 35.5em) {
  .small-visible {
    display: block !important;
  }
}

@media only screen and (min-width: 48em) {
  .medium-visible {
    display: block !important;
  }
}

@media only screen and (min-width: 64em) {
  .large-visible {
    display: block !important;
  }
}

@media only screen and (min-width: 80em) {
  .extra-large-visible {
    display: block !important;
  }
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

@media only screen and (min-width: 48em) {
  .align-left-medium {
    text-align: left !important;
  }
}

.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

.drop-shadow {
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.05);
}

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.bold {
  font-weight: bold !important;
}

.weight-200 {
  font-weight: 200 !important;
}

.weight-300 {
  font-weight: 300 !important;
}

.underline {
  text-decoration: underline;
}

.no-scroll-y {
  overflow-y: hidden;
}

.mobile-padding-sides {
  padding: 0 15px;
}

@media only screen and (min-width: 48em) {
  .mobile-padding-sides {
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .air-sides {
    padding: 0 20px;
  }
}

.margin-v {
  margin: 15px 0;
}

.padding-l {
  padding-left: 15px;
}

.padding-r {
  padding-right: 15px;
}

.padding-sides {
  padding: 0 15px;
}

@media only screen and (min-width: 48em) {
  .padding-sides {
    padding: 0 20px;
  }
}

.pos-absolute-left {
  position: absolute;
  top: 0;
  left: 0;
}

.pos-absolute-right {
  position: absolute;
  top: 0;
  right: 0;
}

.fade {
  transition: opacity 0.35s;
}

.fade-out {
  opacity: 0;
  -moz-opacity: 0;
}

.fade-in {
  opacity: 1;
  -moz-opacity: 1;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**
 *  Fonts
 */
/**
 *  Colors
 */
/**
 *	Element defaults
 */
html {
  overflow-x: hidden;
}

body {
  font-weight: normal;
  font-size: 16px;
  font-family: "Suzuki", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

body.menu-is-fixed {
  padding-top: 95px;
}

html,
button,
input,
select,
textarea,
.pure-g [class*="pure-u"] {
  font-family: "SuzukiPRO", sans-serif;
}

.pure-form input[type="text"][disabled],
.pure-form input[type="password"][disabled],
.pure-form input[type="email"][disabled],
.pure-form input[type="url"][disabled],
.pure-form input[type="date"][disabled],
.pure-form input[type="month"][disabled],
.pure-form input[type="time"][disabled],
.pure-form input[type="datetime"][disabled],
.pure-form input[type="datetime-local"][disabled],
.pure-form input[type="week"][disabled],
.pure-form input[type="number"][disabled],
.pure-form input[type="search"][disabled],
.pure-form input[type="tel"][disabled],
.pure-form input[type="color"][disabled],
.pure-form select[disabled],
.pure-form textarea[disabled] {
  color: #3f3f3f !important;
  border-color: #ccc !important;
  background-color: #fff !important;
  opacity: 0.4;
  -moz-opacity: 0.4;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0 0;
  font-family: "SuzukiPRO", sans-serif;
}

ul {
  list-style-type: none;
}

/* Here you can add default styles to forms elements, text elements and such */
/**
 *	Config
 */
/* layout */
/**
 *	Big menu
 */
.l-big-menu {
  display: none;
  padding: 20px 15px;
  position: relative;
  background-color: #fff;
  z-index: 49;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
}

@media only screen and (min-width: 48em) {
  .l-big-menu {
    padding: 25px 0;
  }
}

body.menu-is-fixed .l-big-menu {
  position: fixed;
  top: 95px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}

body.body-landing .l-big-menu {
  top: 0;
}

body.menu-is-fixed.body-landing .l-big-menu {
  top: 50px;
  padding: 50px 0 25px;
}

.l-big-menu__content {
  opacity: 0;
  -moz-opacity: 0;
}

.l-big-menu__title {
  color: #005580;
  font-weight: 200;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 100px 15px 0;
  border-bottom: 1px solid #cdcdcd;
  margin: 0 0 15px;
}

@media only screen and (min-width: 48em) {
  .l-big-menu__title {
    text-transform: none;
    font-weight: 400;
    margin-bottom: 18px;
    padding-bottom: 20px;
  }
}

.l-big-menu__close {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #0050ad;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  text-indent: -999px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-position: center;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAPCAYAAADUFP50AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0QUE5MzNBQTA4QjkxMUUzODI4MTk2OEUyODUzMzFBOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0QUE5MzNBQjA4QjkxMUUzODI4MTk2OEUyODUzMzFBOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk2M0NEQ0ZGMDg5NDExRTM4MjgxOTY4RTI4NTMzMUE5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjk2M0NERDAwMDg5NDExRTM4MjgxOTY4RTI4NTMzMUE5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Nw0lWQAAAKlJREFUeNpi+P//PwMpmMG+XQBEM4IYDAwM64G48P+BigsMeACjQwdI7X4gPsAEJASgeD9QwoAITQpAvJARbC2qoCO6zdjkQTYyABkfQAJA/ADdZlyGgm3EpQhmEDaXoGjEovkBTueja4RqBim+D+UmAjUtwFBDro1M+EIPV4ChaMQWevhCmwlfkOOLKliSwxn5uFwEsrGAkCY0mw+AbYemeAVScwlAgAEAG0DBoTVLyuwAAAAASUVORK5CYII=") center no-repeat;
}

@media only screen and (min-width: 48em) {
  .l-big-menu__close {
    top: 0;
    right: 0;
    text-indent: 0;
    width: auto;
    height: auto;
    padding-right: 25px;
    background-position: right center;
  }
}

/**
 *	Desktop header
 */
.l-desktop-header {
  position: relative;
  z-index: 50;
  display: none;
  height: 95px;
  background-color: #fff;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
}

@media only screen and (min-width: 48em) {
  .l-desktop-header {
    top: 0;
    display: block;
    transition: top ease 0.5s;
  }
}

.l-desktop-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .l-desktop-header.is-off-top {
    top: -95px;
  }
}

.l-desktop-header__logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  top: 11px;
}

@media only screen and (min-width: 64em) {
  .l-desktop-header__logo {
    top: 26px;
  }
}

.l-desktop-header__logo>img {
  margin-right: 16px;
}

.l-desktop-header__logo__image {
  height: 76px;
  object-fit: contain;
}

.l-desktop-header__logo__secondaryimage {
  padding-top: 8px;
  height: 46px;
  object-fit: contain;
}

/**
 *	Mobile header
 */
.l-mobile-header {
  position: relative;
  height: 77px;
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  text-align: right;
  -o-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1), 0 0 0 transparent;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1), 0 0 0 transparent;
}

@media only screen and (min-width: 48em) {
  .l-mobile-header {
    display: none;
  }
}

.l-mobile-header__logo {
  width: 150px;
  height: 77px;
  display: inline-block;
}

.l-mobile-header__logo__image {
  width: 100%;
  height: 100%;
}

.l-mobile-header__menu-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 30px;
  height: 21px;
  margin-top: -10px;
  cursor: pointer;
  transition: background-color linear 0.2s;
}

.l-mobile-header__menu-icon--active .l-mobile-header__menu-icon__bar {
  background-color: #e1261c;
}

.l-mobile-header__menu-icon__bar {
  width: 100%;
  height: 4px;
  background-color: #ccc;
  margin-bottom: 4px;
  border-radius: 5px;
}

/**
 *	Nav layout
 */
.l-nav {
  position: absolute;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  z-index: 51;
  background-color: #002838;
  -o-box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5), 0 0 0 transparent;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5), 0 0 0 transparent;
}

@media only screen and (min-width: 48em) {
  .l-nav {
    display: none;
  }
}

.mobile-menu--open .l-nav {
  left: -240px;
}

/**
 *	Offcanvas
 */
.l-offcanvas {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  left: 0;
  transition: left ease 0.5s;
}

.l-offcanvas.mobile-menu--open {
  overflow-x: visible;
  left: 240px;
}

/**
 *  Tab group
 */
.l-tab-group {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}

.l-tab-group div:first-of-type {
  border-left: 0;
}

/**
 *	Whole section
 */
.l-whole-section {
  margin-bottom: 25px;
}

@media only screen and (min-width: 35.5em) {
  .l-whole-section {
    margin-bottom: 0;
  }
}

/**
 *  Wrapper
 */
.l-wrapper,
.l-wrapper--padded,
.l-wrapper--air_m {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

@media only screen and (min-width: 64em) {

  .l-wrapper,
  .l-wrapper--padded,
  .l-wrapper--air_m {
    max-width: 60%;
  }
}

.l-wrapper--top {
  z-index: 1;
}

@media only screen and (min-width: 64em) {
  .l-wrapper--max {
    max-width: 1440px;
  }
}

.l-wrapper--slider {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
}

@media only screen and (min-width: 48em) {
  .l-wrapper--slider {
    max-width: 1440px;
  }
}

@media only screen and (min-width: 64em) {
  .l-wrapper--gallery {
    max-width: 1240px;
  }
}

@media only screen and (min-width: 64em) {
  .l-wrapper--in-concessionaires {
    max-width: 100%;
    width: 100%;
  }
}

.l-wrapper--in-showcase {
  height: 100%;
}

@media only screen and (min-width: 48em) {
  .l-wrapper--in-landing-features {
    height: 500px;
  }
}

.l-wrapper--padded {
  padding: 60px 0;
}

.l-wrapper--padded_mobile {
  padding: 0 20px;
}

@media only screen and (min-width: 64em) {
  .l-wrapper--padded_mobile {
    padding: 0;
  }
}

.l-wrapper--air_m {
  padding: 0 30px;
}

@media only screen and (min-width: 48em) {
  .l-wrapper--air_m {
    padding: 0 10px;
  }
}

.l-wrapper--paddedTop {
  padding: 30px 0 0;
}

.l-wrapper--paddedBottom {
  padding-bottom: 32px;
}

.l-wrapper--paddedBottom-extra {
  padding-bottom: 48px;
}

@media only screen and (min-width: 64em) {
  .l-wrapper--max--in-catalog {
    margin: 0 auto;
  }
}

/**
 *	Footer
 */
.l-footer {
  background-color: #000;
  min-height: 180px;
}

@media only screen and (min-width: 48em) {
  .l-footer {
    padding: 0;
  }
}

.l-footer__list {
  margin-bottom: 20px;
}

@media only screen and (min-width: 48em) {
  .l-footer__list {
    padding: 30px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #363636;
  }
}

.l-footer__column {
  border-bottom: 1px solid #363636;
}

@media only screen and (min-width: 48em) {
  .l-footer__column {
    padding: 0 10px;
    border-bottom: 0;
  }
}

.l-footer__legals {
  text-align: center;
  display: block;
}

@media only screen and (min-width: 48em) {
  .l-footer__legals {
    text-align: left;
  }
}

.l-footer__legals__year {
  color: #666666;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  padding-bottom: 25px;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .l-footer__legals__year {
    font-size: 12px;
    margin: 0;
  }
}

/* modules */
/**
 *	Back-link
 */
.m-back-link {
  color: #999999;
  line-height: 100%;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
}

.m-back-link:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 48em) {
  .m-back-link--in-financing-summary {
    text-align: center;
    margin-left: 20px;
  }
}

.m-back-link--in-financing-table {
  text-align: center;
  display: block;
  margin: 0 auto;
}

@media only screen and (min-width: 35.5em) {
  .m-back-link--in-financing-table {
    text-align: right;
  }
}

/**
 *  Banner
 */
.m-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

@media only screen and (min-width: 48em) {
  .m-banner--in-home {
    margin-bottom: 100px;
  }
}

.m-banner__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.m-banner__image {
  width: 100%;
  height: auto;
}

/**
 *	Bnp logo
 */
.m-bnp-logo {
  width: 50%;
  display: block;
  margin: 0 auto 25px;
}

@media only screen and (min-width: 35.5em) {
  .m-bnp-logo {
    width: 145px;
    margin: 0;
    display: inline-block;
  }
}

.m-bnp-logo--in-financing-summary {
  margin: 0 0 25px;
}

@media only screen and (min-width: 35.5em) {
  .m-bnp-logo--in-financing-summary {
    display: block;
    margin: 0 0 25px 20px;
  }
}

/**
 *  Button
 */
.m-button {
  width: 100%;
  display: block;
  padding: 15px 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color linear 0.2s;
}

@media only screen and (min-width: 48em) {
  .m-button {
    padding: 10px 0;
  }
}

.m-button--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -moz-opacity: 0.5;
}

.m-button---closed {
  display: inline-block;
  position: absolute;
  z-index: 5;
  top: 0;
  width: 30px;
  right: 15px;
}

.m-button--red {
  background-color: #e23136;
}

.m-button--red:hover {
  background-color: #db1f24;
}

.m-button--red.m-button--disabled:hover {
  background-color: #e23136;
  background-image: none;
}

.m-button--blue {
  background-color: #003f87;
}

.m-button--blue:hover {
  background-color: #00336e;
}

.m-button--blue.m-button--disabled:hover {
  background-color: #003f87;
  background-image: none;
}

.m-button--gray {
  color: #3f3f3f;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
}

.m-button--gray:hover {
  background-color: #e5e5e5;
}

.m-button--gray.m-button--disabled:hover {
  background-color: #f2f2f2;
  background-image: none;
}

.m-button--icon__icon {
  margin-left: 5px;
}

.m-button--white {
  display: block;
  width: 161px;
  height: 45px;
  margin: 0 auto;
  padding: 13px 0;
  background-color: #fff;
  border: solid 1px #fff;
  color: #004eb0;
  font-family: "Suzuki-Headline", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-button--white {
    width: 180px;
    height: 50px;
    margin: 0;
    padding: 16px 0;
    font-size: 16px;
  }
}

.m-button--wblue {
  display: block;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  padding: 16px 0;
  background-color: #004eb0;
  border: solid 1px #004eb0;
  color: white;
  font-family: "SuzukiPRO", sans-serif;
  font-size: 16px;
  font-weight: 200;
  text-align: center;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-button--wblue {
    width: 220px;
    height: 50px;
    margin: 0;
    padding: 16px 0;
    font-size: 16px;
  }
}

.m-button--center {
  margin: 0 auto;
}

.m-button--padded {
  padding-left: 16px;
  padding-right: 16px;
}

/**
 *	Car image
 */
.m-car-image {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}

.m-car-image__picture {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.m-car-image--in-testdrive-step-1 {
  margin-top: 25px;
  max-width: 50%;
}

@media only screen and (min-width: 48em) {
  .m-car-image--in-testdrive-step-1 {
    max-width: 90%;
    margin: 0 0 0 10%;
  }
}

.m-car-image--in-testdrive-step-2 {
  margin-bottom: 20px;
  max-width: 50%;
}

@media only screen and (min-width: 48em) {
  .m-car-image--in-testdrive-step-2 {
    max-width: 100%;
  }
}

.m-category-menu__container .pure-u-1:last-child .m-category-menu {
  border-bottom: none;
}

@media only screen and (min-width: 64em) {
  .m-category-menu__container .pure-u-1:last-child .m-category-menu {
    margin-left: 60px;
  }
}

.m-category-menu {
  position: relative;
  border-bottom: solid 1px #c9c9c9;
  margin-top: 15px;
  height: auto;
}

.lt-ie10 .m-category-menu {
  overflow: hidden;
}

@media only screen and (min-width: 48em) {
  .m-category-menu {
    border-bottom: none;
    margin-top: 0;
  }
}

.m-category-menu .m-category-menu__content {
  margin-left: 40%;
}

@media only screen and (min-width: 48em) {
  .m-category-menu .m-category-menu__content {
    margin-left: 150px;
  }
}

.m-category-menu .m-category-menu__image-container {
  position: relative;
  left: 0;
  text-align: center;
  width: 30%;
  float: left;
}

@media only screen and (min-width: 48em) {
  .m-category-menu .m-category-menu__image-container {
    width: 115px;
  }
}

.m-category-menu .m-category-menu__image {
  max-width: 100%;
}

.m-category-menu .m-category-menu__title-container {
  margin-bottom: 18px;
}

@media only screen and (min-width: 48em) {
  .m-category-menu .m-category-menu__title-container {
    border-bottom: 2px #cdcdcd solid;
  }
}

.m-category-menu .m-category-menu__title {
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.m-category-menu .m-category-menu__subtitle {
  color: #4a4a4a;
  display: none;
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 16px;
}

@media only screen and (min-width: 48em) {
  .m-category-menu .m-category-menu__subtitle {
    display: block;
  }
}

.m-category-menu .m-category-menu__list.m-category-menu__list--first-menu {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
  margin-bottom: 30px;
}

.no-csscolumns .m-category-menu .m-category-menu__list.m-category-menu__list--first-menu li {
  float: left;
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (min-width: 48em) {
  .m-category-menu .m-category-menu__list.m-category-menu__list--first-menu {
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-count: 3;
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
    margin-bottom: 0;
  }

  .no-csscolumns .m-category-menu .m-category-menu__list.m-category-menu__list--first-menu li {
    float: left;
    width: 33.33333%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 64em) {
  .m-category-menu .m-category-menu__list.m-category-menu__list--first-menu {
    -moz-column-count: 4;
    -moz-column-gap: 20px;
    -webkit-column-count: 4;
    -webkit-column-gap: 20px;
    column-count: 4;
    column-gap: 20px;
  }

  .no-csscolumns .m-category-menu .m-category-menu__list.m-category-menu__list--first-menu li {
    float: left;
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.m-category-menu .m-category-menu__list .m-category-menu__list-link {
  color: #9b9b9b;
  display: block;
  font-size: 12px;
  line-height: 2.5;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-category-menu .m-category-menu__list .m-category-menu__list-link {
    font-size: 16px;
    padding: 0;
  }
}

.m-category-menu .m-category-menu__list .m-category-menu__list-link:hover {
  color: #ee2028;
}

.m-category-menu .m-category-menu__list .m-category-menu__list-link img {
  width: 60px;
  margin-top: -8px;
  display: block;
}

/**
 *	Checkbox
 */
.m-checkbox {
  position: relative;
  padding-left: 35px;
}

.m-checkbox input[type="checkbox"]:checked+div {
  background-color: #003f87;
  border: 0;
}

.m-checkbox__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  z-index: 2;
  opacity: 0;
  -moz-opacity: 0;
}

.m-checkbox__square {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 1px solid #999999;
  z-index: 1;
}

.m-checkbox__label {
  color: #3f3f3f;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  padding: 5px 0 0;
  margin: 5px 0 0 0 !important;
  display: inline-block;
}

@media only screen and (min-width: 48em) {
  .m-checkbox__label {
    padding: 0;
  }
}

.m-checkbox__icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}

/**
 *	Error message
 */
.m-error {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px;
  margin: 10px 0 0;
  background-color: #e23136;
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-error {
    font-size: 13px;
  }
}

.m-error:before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 20%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #e23136;
}

.parsley-errors-list {
  display: none !important;
}

/**
 *	Fake alert
 */
.m-fake-alert {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 300px;
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid #3f3f3f;
  z-index: 50;
  border-radius: 2px;
  transition: left linear 0.5s;
}

.m-fake-alert__link {
  padding: 15px 60px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 1;
  background: url(https://motoresmarinos.suzuki.com.mx//img/general/s.png) 15px center no-repeat;
}

.m-fake-alert__text {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}

.m-fake-alert__close {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 18px;
  margin-top: -9px;
  z-index: 2;
  background: url(https://motoresmarinos.suzuki.com.mx//img/general/x.png) center no-repeat;
}

/**
 *	Fieldset
 */
.m-fieldset {
  padding: 0 !important;
  margin: 0 0 25px !important;
  position: relative;
  border: 0;
}

@media only screen and (min-width: 48em) {
  .m-fieldset--in-footer {
    margin: 0 15px 0 0 !important;
  }
}

@media only screen and (min-width: 48em) {
  .m-fieldset--in-financing {
    padding: 0 10px !important;
    margin: 0 0 15px 0 !important;
  }
}

@media only screen and (min-width: 48em) {
  .m-fieldset--header-financing-date {
    width: 63%;
  }
}

@media only screen and (min-width: 48em) {
  .m-fieldset--in-landing-testdrive {
    margin-right: 20px !important;
  }
}

/**
 *  Image
 */
.m-image {
  display: block;
  width: 100%;
}

.m-image--in-catalog {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.m-image--in-catalog-side-navigation {
  display: block;
  height: auto;
  max-width: 50px;
}

.pure-g--center-vh {
  display: inline-block;
  width: 100%;
}

.pure-g--center-vh-child {
  vertical-align: middle;
}

.m-image--in-warranty-center-vh {
  display: table;
  margin: 0 auto;
  vertical-align: middle;
  text-align: center;
  max-width: 100%;
}

/**
 *	Input
 */
.m-input {
  color: #3f3f3f;
  font-size: 16px;
  font-family: "SuzukiPRO", sans-serif;
  line-height: 100%;
  width: 100%;
  border: 1px solid #ccc !important;
  margin: 0 !important;
  background-color: #fff;
  box-shadow: 0 0 0 transparent !important;
  -webkit-font-smoothing: antialiased !important;
  border-radius: 0 !important;
  transition: border linear 0.2s;
}

.m-input:focus {
  color: #003f87 !important;
  border: 1px solid #3787df !important;
  box-shadow: 0 0 4px rgba(56, 135, 224, 0.4) !important;
}

.m-input--in-footer {
  border: 1px solid transparent !important;
}

/**
 *	Label
 */
.m-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  display: block;
  margin: 0 0 10px !important;
}

@media only screen and (min-width: 48em) {
  .m-label {
    font-size: 14px;
  }
}

.m-label--in-footer {
  color: #666666;
}

/**
 *	Link
 */
.m-link {
  color: #0088ff;
  text-decoration: underline;
  transition: color linear 0.2s;
}

@media only screen and (min-width: 48em) {
  .m-link {
    text-decoration: none;
  }

  .m-link:hover {
    color: #005580;
    text-decoration: underline;
  }
}

.m-link--in-catalog {
  border-left: 7px solid transparent;
  color: #003f87;
  display: block;
  padding: 5px 5px 5px 0;
  text-decoration: none;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.m-link--in-catalog-mobile {
  border: 0;
}

.m-link--in-catalog.active {
  background: #e2dedd;
  border-left-color: #003f87;
}

.m-link--in-catalog.active .m-side-navigation__item-title {
  color: #003f87;
  text-decoration: underline;
}

.m-link--in-side-navigation__icon {
  color: #fff;
  margin-right: 15px;
}

.m-link--in-catalog__icon-mobile {
  color: #003f87;
  margin-left: 10px;
}

.m-link--in-testdrive {
  text-align: center;
  display: block;
  margin-bottom: 25px;
}

.m-link--in-landing-prices {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 25px;
}

@media only screen and (min-width: 48em) {
  .m-link--in-landing-prices {
    margin-bottom: 50px;
  }
}

.m-link--in-special-offers-footer {
  font-size: 14px;
  color: #d9d9d9;
  text-decoration: none;
}

.m-link--in-special-offers-footer:hover,
.m-link--in-special-offers-footer:active,
.m-link--in-special-offers-footer:focus {
  color: #d9d9d9;
  text-decoration: none;
}

.m-link--in-special-offers-agency {
  color: #005bab;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
}

.m-link--in-special-offers-agency:hover,
.m-link--in-special-offers-agency:active,
.m-link--in-special-offers-agency:focus {
  color: #005bab;
  text-decoration: none;
}

/**
 *  Paragraph
 */
.m-paragraph {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 20px;
}

.m-paragraph--big {
  font-size: 18px;
}

.m-paragraph--disclaimer {
  color: #999999;
  text-align: center;
  padding: 25px 5%;
}

@media only screen and (min-width: 48em) {
  .m-paragraph--disclaimer {
    padding: 25px 5%;
  }
}

.m-paragraph--in-testdrive-step-3 {
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-paragraph--in-testdrive-step-3 {
    text-align: left;
  }
}

.m-paragraph--justify {
  text-align: justify;
  padding-bottom: 10px;
  line-height: 1.3rem;
}

.m-paragraph--as-landing-subtitle {
  padding: 0 15px;
  margin: 0 auto 25px;
}

@media only screen and (min-width: 48em) {
  .m-paragraph--as-landing-subtitle {
    font-size: 18px;
    padding: 0;
    margin: 0 auto 50px;
  }
}

.m-paragraph--in-special-offers-header {
  color: #fff;
  margin-bottom: 0;
}

@media only screen and (min-width: 48em) {
  .m-paragraph--in-special-offers-header {
    font-size: 16px;
  }
}

.m-paragraph--in-accesories-gallery {
  margin-top: 25px;
}

.m-paragraph__list {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.3;
  list-style: disc outside none;
}

.m-paragraph__list li {
  margin-bottom: 8px;
}

.m-paragraph__title {
  font-weight: 600;
}

/**
 *	Scroll down
 */
.m-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 24px;
  height: 32px;
  margin-left: -12px;
  z-index: 2;
}

@media only screen and (min-width: 48em) {
  .m-scroll-down {
    width: 82px;
    height: 82px;
    margin-left: -41px;
    bottom: 40px;
  }
}

.m-scroll-down__link {
  text-decoration: none;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 48em) {
  .m-scroll-down__link {
    background: url(https://motoresmarinos.suzuki.com.mx//img/landing/next-step.png) center no-repeat;
  }
}

.m-scroll-down__link--real {
  z-index: 1;
}

.m-scroll-down__link--fake {
  display: none;
  z-index: 1;
}

@media only screen and (min-width: 48em) {
  .m-scroll-down__link--fake {
    display: block;
    animation: shadowFrame ease 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: shadowFrame ease 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: shadowFrame ease 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: shadowFrame ease 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: shadowFrame ease 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
  }
}

.m-scroll-down__link__icon {
  color: #979797;
  font-size: 32px;
}

@media only screen and (min-width: 48em) {
  .m-scroll-down__link__icon {
    display: none;
  }
}

@keyframes shadowFrame {
  0% {
    opacity: 1;
    transform: translate(0%, 0%);
  }

  100% {
    opacity: 0;
    transform: translate(0%, 75%);
  }
}

/**
 *	Select
 */
/**
 *	Small note
 */
.m-small-note {
  color: #999999;
  font-size: 9px;
  line-height: 1.3;
  margin: 0;
}

.m-small-note--in-warranty {
  margin-bottom: 25px;
}

.m-small-note--in-warranty-margin-bottom {
  margin-bottom: 25px;
}

@media only screen and (min-width: 48em) {
  .m-small-note--in-warranty-margin-bottom {
    margin-bottom: 0;
  }
}

/**
 *	Summary info
 */
.m-summary-info--in-financing-header {
  margin-bottom: 50px;
}

@media only screen and (min-width: 48em) {
  .m-summary-info--in-financing-header {
    padding-left: 20px;
    margin-bottom: 100px;
  }
}

.m-summary-info__item {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.m-summary-info__item__label {
  font-weight: 600;
}

/**
 *  Tab
 */
.m-tab {
  color: #003f87;
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
  cursor: pointer;
  float: left;
  background-color: #f2f2f2;
  border-left: 1px solid #fff;
}

@media only screen and (min-width: 48em) {
  .m-tab {
    font-size: 14px;
    padding: 15px 0;
  }
}

.m-tab--in-testdrive {
  width: 15%;
}

@media only screen and (min-width: 48em) {
  .m-tab--in-testdrive {
    width: 33.333% !important;
  }

  .m-tab--in-testdrive .m-tab__number {
    margin-right: 10px;
  }
}

.m-tab--in-landing-testdrive {
  width: 15%;
}

@media only screen and (min-width: 48em) {
  .m-tab--in-landing-testdrive {
    width: 50% !important;
  }

  .m-tab--in-landing-testdrive .m-tab__number {
    margin-right: 10px;
  }
}

.m-tab.active {
  color: #fff;
  background-color: #003f87;
}

.m-tab--in-testdrive.active {
  width: 70%;
}

.m-tab--in-testdrive.active .m-tab__label {
  display: inline;
}

.m-tab--in-testdrive.active .m-tab__number {
  margin-right: 10px;
}

.m-tab--in-landing-testdrive.active {
  width: 85%;
}

.m-tab--in-landing-testdrive.active .m-tab__label {
  display: inline;
}

.m-tab--in-landing-testdrive.active .m-tab__number {
  margin-right: 10px;
}

.m-tab.disabled {
  cursor: not-allowed;
  color: #999999;
  background-color: #f2f2f2;
}

.m-tab__number {
  margin-right: 0;
}

.m-tab__label {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-tab__label {
    display: inline;
  }
}

/**
 *  Table
 */
.m-table {
  width: 100%;
  color: #3f3f3f;
  border: 1px solid #e0e7f1;
  margin-bottom: 25px;
  display: block;
}

@media only screen and (min-width: 48em) {
  .m-table {
    display: table;
  }
}

.m-table td,
.m-table th {
  border-bottom: 0;
  border-left: 0;
  font-size: 14px;
}

@media only screen and (min-width: 48em) {

  .m-table td,
  .m-table th {
    border-bottom: 1px solid #e0e7f1;
    border-left: 1px solid #e0e7f1;
  }
}

.m-table thead {
  background-color: #fff;
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-table thead {
    display: table-header-group;
  }
}

.m-table thead tr th {
  text-align: center;
  font-weight: 600;
}

.m-table tbody {
  display: block;
  background-color: #fff;
}

@media only screen and (min-width: 48em) {
  .m-table tbody {
    display: table-row-group;
  }
}

.m-table tbody tr {
  display: block;
}

@media only screen and (min-width: 48em) {
  .m-table tbody tr {
    display: table-row;
  }
}

.m-table tbody tr td {
  text-align: center;
  font-weight: normal;
  line-height: 100%;
  position: relative;
  display: block;
  padding-left: 50%;
}

@media only screen and (min-width: 48em) {
  .m-table tbody tr td {
    display: table-cell;
    padding-left: 1em;
  }
}

.m-table tbody tr td:before {
  content: attr(data-column);
  position: absolute;
  left: 0;
  width: 50%;
  padding: 0 1em;
  box-sizing: border-box;
}

@media only screen and (min-width: 48em) {
  .m-table tbody tr td:before {
    display: none;
  }
}

.m-table__label {
  color: #3f3f3f;
  text-align: center !important;
  background-color: #e0e7f1 !important;
  padding-left: 0 !important;
}

@media only screen and (min-width: 48em) {
  .m-table__label {
    background-color: #fff !important;
    padding-left: 1em !important;
  }
}

@media only screen and (min-width: 48em) {
  .m-table--in-financing {
    margin-bottom: 60px;
  }
}

.m-table--zebra {
  border: 0;
}

.m-table--zebra thead {
  background-color: #003f87;
}

.m-table--zebra thead tr td {
  color: #fff;
  text-align: center;
  border: 0;
  background-color: #003f87;
}

.m-table--zebra tbody tr td {
  border: 0;
}

.m-table--zebra tbody tr:nth-child(even) {
  background-color: #e6e6e6;
}

.m-table--zebra tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

.m-table--stripped {
  border: 0;
}

.m-table--stripped thead {
  background-color: #003f87;
  color: #fff;
  border: 0;
  display: block;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-table--stripped thead {
    display: table-header-group;
  }
}

.m-table--stripped thead tr {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-table--stripped thead tr {
    display: table-row;
  }
}

.m-table--stripped thead tr th {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-weight: lighter;
  font-size: 16px;
  text-align: center;
  border: 0;
}

@media only screen and (min-width: 48em) {
  .m-table--stripped thead tr th {
    display: table-cell;
  }
}

.m-table--stripped tbody tr.pure-table-odd td {
  border: 0;
  background: #f7f7f7;
}

.m-table--stripped tbody tr td {
  border: 0;
  padding: 36px 20px;
  text-align: left;
  line-height: 1.4;
}

@media only screen and (min-width: 48em) {
  .m-table--stripped tbody tr td {
    padding: 40px 30px;
  }
}

.m-table--in-warranty {
  margin: 0 auto;
}

.m-table--in-warranty thead {
  background: #003f87 !important;
}

.m-table--in-warranty thead tr {
  color: #fff;
}

.m-table--in-warranty tbody tr td {
  text-align: left;
  line-height: 1.3;
}

.m-table--recall {
  border: 0;
}

.m-table--recall thead {
  display: none;
  width: auto;
  background-color: #003f87;
  color: #fff;
  border: 0;
}

@media only screen and (min-width: 48em) {
  .m-table--recall thead {
    display: table-header-group;
  }
}

.m-table--recall thead tr {
  display: block;
  width: auto;
}

@media only screen and (min-width: 48em) {
  .m-table--recall thead tr {
    display: table-row;
  }
}

.m-table--recall thead tr th {
  display: block;
  width: auto;
  padding: 20px 0;
  font-weight: lighter;
  font-size: 16px;
  text-align: center;
  border: 0;
  min-width: 120px;
  vertical-align: middle;
  line-height: 1.2;
}

@media only screen and (min-width: 48em) {
  .m-table--recall thead tr th {
    display: table-cell;
  }
}

.m-table--recall tbody tr {
  margin-bottom: 20px;
  border-bottom: solid 1px #003f87;
}

@media only screen and (min-width: 48em) {
  .m-table--recall tbody tr {
    margin-bottom: 0px;
    border: 0;
  }
}

.m-table--recall tbody tr:nth-child(odd) td {
  border: 0;
  background: #f7f7f7;
}

@media only screen and (min-width: 48em) {
  .m-table--recall tbody tr:nth-child(odd) td {
    border: 0;
  }
}

.m-table--recall tbody tr td {
  display: block;
  border: 0;
  padding: 20px 10px;
  text-align: left;
  line-height: 1.4;
}

@media only screen and (min-width: 48em) {
  .m-table--recall tbody tr td {
    padding: 36px 20px;
  }
}

.m-table--recall tbody tr td.center {
  text-align: center;
}

.m-table--recall tbody tr td:before {
  position: relative;
  display: block;
  content: attr(data-label);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
  color: #003f87;
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (min-width: 48em) {
  .m-table--recall tbody tr td {
    padding: 20px 10px;
    display: table-cell;
  }

  .m-table--recall tbody tr td:before {
    display: none;
  }
}

/**
 *  Textarea
 */
.m-textarea {
  color: #3f3f3f;
  font-size: 16px;
  font-family: "SuzukiPRO", sans-serif;
  line-height: 100%;
  width: 100%;
  border: 1px solid #ccc !important;
  margin: 0 !important;
  background-color: #fff;
  box-shadow: 0 0 0 transparent !important;
  -webkit-font-smoothing: antialiased !important;
  border-radius: 0 !important;
  transition: border linear 0.2s;
  resize: none;
  max-height: 100px;
}

.m-textarea:focus {
  color: #003f87 !important;
  border: 1px solid #3787df !important;
  box-shadow: 0 0 4px rgba(56, 135, 224, 0.4) !important;
}

@media only screen and (min-width: 48em) {
  .m-textarea {
    max-height: 180px;
  }
}

/**
 *	Footer logos
 */
.m-footer-logos {
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-footer-logos {
    text-align: right;
    padding-left: 30px;
    margin-top: 10px;
  }
}

.m-footer-logos__item {
  display: inline-block;
  width: 45%;
  margin-left: 2%;
}

.m-footer-logos__link {
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-footer-logos__link {
    display: block;
  }
}

.m-footer-logos__logo {
  display: block;
  margin: 0 auto;
  max-width: 50%;
}

@media only screen and (min-width: 48em) {
  .m-footer-logos__logo {
    display: inline-block;
    margin: 0;
    max-width: 100%;
  }
}

/**
 *	Footer news message
 */
.m-footer-news-message {
  text-align: center;
  padding: 110px 15px 0 15px;
  margin: 20px 0 20px;
  background: url(https://motoresmarinos.suzuki.com.mx//img/footer/mail.svg) center top no-repeat;
  background-size: 85px 70px;
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-footer-news-message {
    text-align: left;
    padding: 0 0 0 130px;
    margin: 23px 0 0;
    background-position: left center;
  }
}

.m-footer-news-message__title {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Suzuki", sans-serif;
  line-height: 1.4;
  margin: 0 0 20px;
}

.m-footer-news-message__text {
  color: #666666;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

/**
 *	Footer news
 */
.m-footer-news {
  padding: 20px 15px;
}

@media only screen and (min-width: 48em) {
  .m-footer-news {
    padding: 0;
  }
}

.m-footer-news__title {
  color: #fff;
  font-size: 16px;
  font-family: "Suzuki", sans-serif;
  font-weight: 600;
  line-height: 100%;
  margin: 0 0 15px;
}

@media only screen and (min-width: 48em) {
  .m-footer-news__title {
    margin: 0 0 10px;
  }
}

.m-footer-news__subtitle {
  color: #666666;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 25px;
}

@media only screen and (min-width: 48em) {
  .m-footer-news__subtitle {
    font-size: 14px;
    margin: 0 0 15px;
  }
}

/**
 *	Footer privacy
 */
.m-footer-privacy {
  max-width: 259px;
  margin: 0 auto;
  padding: 82px 0;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-footer-privacy {
    max-width: none;
    margin: 0;
    /*float: right;*/
  }

  .m-footer-privacy li:first-of-type:after {
    display: none;
  }

  .m-footer-privacy li:last-of-type:after {
    display: block !important;
  }
}

.m-footer-privacy li:last-of-type:after {
  display: none;
}

.m-footer-privacy__item {
  display: inline-block;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .m-footer-privacy__item {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.m-footer-privacy__item:after {
  content: "|";
  position: absolute;
  right: -13px;
  top: 50%;
  height: 15px;
  width: 2px;
  margin-top: -7px;
  background-color: white;
}

@media only screen and (min-width: 48em) {
  .m-footer-privacy__item:after {
    width: 1px;
    right: auto;
    left: -10px;
  }
}

.m-footer-privacy__item:nth-child(2):after {
  display: none;
  content: "";
}

@media only screen and (min-width: 48em) {
  .m-footer-privacy__item:nth-child(2):after {
    display: block;
    content: "|";
  }
}

.m-footer-privacy__link {
  color: white;
  font-weight: 500;
  font-size: 10px;
  line-height: 2.1;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-footer-privacy__link {
    font-size: 11px;
    line-height: 1;
  }
}

.m-footer-privacy__link:hover {
  text-decoration: underline;
}

/**
 *	Footer toggle
 */
.m-footer-toggle {
  position: relative;
}

.m-footer-toggle__title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Suzuki", sans-serif;
  line-height: 100%;
  padding: 15px 45px 15px 15px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .m-footer-toggle__title {
    line-height: 1.4;
    font-size: 14px;
    padding: 0;
    cursor: default;
    margin-bottom: 10px;
  }
}

.m-footer-toggle__title:after {
  content: "+";
  color: #fff;
  line-height: 100%;
  font-size: 32px;
  font-weight: 600;
  font-family: "Suzuki", sans-serif;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -16px;
}

@media only screen and (min-width: 48em) {
  .m-footer-toggle__title:after {
    display: none !important;
  }
}

.m-footer-toggle__title.active:after {
  content: "-";
  right: 18px;
}

.m-footer-toggle__list {
  background-color: #242224;
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-footer-toggle__list {
    display: block;
    background-color: transparent;
    border-top: 0;
  }
}

@media only screen and (min-width: 48em) {
  .m-footer-toggle__item {
    margin-bottom: 10px;
  }
}

.m-footer-toggle__link {
  color: #999999;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  padding: 15px;
}

@media only screen and (min-width: 48em) {
  .m-footer-toggle__link {
    display: inline-block;
    padding: 0;
    font-size: 14px;
  }
}

.m-footer-toggle__link:hover {
  text-decoration: underline;
}

/**
 *	Model link
 */
.m-model-link {
  position: relative;
  text-decoration: none;
  display: block;
  padding-left: 125px;
  padding-right: 50px;
  margin-bottom: 35px;
}

@media only screen and (min-width: 48em) {
  .m-model-link {
    padding-right: 0;
  }
}

.m-model-link:hover .m-model-link__title {
  text-decoration: underline;
}

.m-model-link__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 115px;
  height: auto;
}

.m-model-link__title {
  color: #003f87;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.m-model-link__subtitle {
  color: #000;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 5px;
}

.m-model-link__description {
  color: #999999;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 300;
  margin: 0;
}

.m-model-link__icon {
  position: absolute;
  right: 0;
  top: 50%;
  color: #ccc;
  font-size: 32px;
  margin-top: -16px;
}

@media only screen and (min-width: 35.5em) {
  .m-model-link__icon {
    display: none;
  }
}

/**
 *	Nav module
 */
.m-nav {
  position: absolute;
  top: 77px;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #002838;
  background-color: #003145;
}

.m-nav__item__link {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
  display: block;
  padding: 15px;
  border-bottom: 1px solid #002838;
  background-color: #003145;
}

.m-nav__item__link:active {
  border-color: #264856;
  background-color: #001f2b;
}

/**
 *  Primary menu
 */
.m-primary-menu {
  display: none;
  background-color: #fff;
}

@media only screen and (min-width: 48em) {
  .m-primary-menu {
    display: block;
  }
}

.m-primary-menu__link {
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  position: relative;
  display: block;
  padding: 22px 0;
  text-align: center;
  text-decoration: none;
  color: #003145;
}

@media only screen and (min-width: 64em) {
  .m-primary-menu__link {
    font-size: 19px;
    padding: 20px 0;
  }
}

.m-primary-menu__link:hover .m-primary-menu__link__icon {
  color: #0089be;
}

.m-primary-menu__link.active {
  color: #0089be;
}

.m-primary-menu__link.active:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #0089be;
}

.m-primary-menu__link.active:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #fff;
}

.m-primary-menu__link.active .m-primary-menu__link__icon {
  color: #0089be;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.m-primary-menu__link__icon {
  color: inherit;
  transition: color linear 0.2s;
}

/**
 *  Secondary menu
 */
.m-secondary-menu {
  display: none;
  background-color: #171617;
}

@media only screen and (min-width: 48em) {
  .m-secondary-menu {
    display: block;
  }
}

.m-secondary-menu__link {
  font-size: 13px;
  line-height: 100%;
  display: block;
  padding: 11px 0;
  text-align: center;
  text-decoration: none;
  color: #e5e5e5;
  background-color: #171617;
  -webkit-font-smoothing: antialiased;
  transition: background-color linear 0.2s;
}

.m-secondary-menu__link:hover {
  background-color: #000;
}

/**
 *	Submenu group
 */
.m-submenu-group {
  cursor: pointer;
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}

@media only screen and (min-width: 48em) {
  .m-submenu-group {
    cursor: default;
    border-bottom: 0;
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .m-submenu-group.m-submenu-group--left-align {
    text-align: left;
  }
}

@media only screen and (min-width: 48em) {
  .m-submenu-group.m-submenu-group--center-align {
    text-align: center;
  }
}

@media only screen and (min-width: 48em) {
  .m-submenu-group.m-submenu-group--right-align {
    text-align: right;
  }
}

.m-submenu-group.active {
  border-bottom: 0;
}

.m-submenu-group.active .m-submenu-group__title {
  padding-left: 20px;
}

.m-submenu-group.active .m-submenu-group__back-icon {
  display: block;
}

.m-submenu-group.active .m-submenu-group__description {
  display: none;
}

.m-submenu-group.active .m-simple-list {
  display: block;
}

.m-submenu-group.active .m-submenu-group__icon {
  display: none;
}

.m-submenu-group__back-icon {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
}

.m-submenu-group__title {
  display: block;
  color: #404040;
  line-height: 1.2;
  font-size: 16px;
  margin: 0 0 5px;
  position: relative;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-submenu-group__title {
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 10px;
  }
}

.m-submenu-group__title .fa-angle-right {
  position: absolute;
  right: 0;
  top: 50%;
  color: #ccc;
  font-size: 32px;
  line-height: 100%;
  margin-top: -16px;
}

@media only screen and (min-width: 48em) {
  .m-submenu-group__title .fa-angle-right {
    color: #404040;
    position: relative;
    font-size: 18px;
    margin-left: 10px;
  }
}

.m-submenu-group__description {
  color: #3f3f3f;
  font-size: 12px;
  line-height: 1.3;
  padding-right: 50px;
  margin: 0;
}

@media only screen and (min-width: 48em) {
  .m-submenu-group__description {
    padding-right: 0;
    min-height: 45px;
  }
}

.m-submenu-group__icon {
  position: absolute;
  right: 0;
  top: 50%;
  color: #ccc;
  font-size: 32px;
  line-height: 100%;
  margin-top: -16px;
}

@media only screen and (min-width: 48em) {
  .m-submenu-group__icon {
    display: none;
  }
}

/**
 *	Border list
 */
.m-border-list {
  margin-top: 15px;
  border-top: 1px solid #e5e5e5;
}

@media only screen and (min-width: 48em) {
  .m-border-list {
    border-top: 0;
  }
}

.m-border-list--in-header {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-border-list--in-header {
    display: block;
  }
}

.m-border-list__item {
  border-bottom: 1px solid #e5e5e5;
  transition: border-color linear 0.2s;
}

.m-border-list__item:hover {
  border-color: #0050ad;
}

.m-border-list__item:hover .m-border-list__link {
  color: #0050ad;
}

.m-border-list__item--in-catalog {
  padding: 15px 0;
}

.m-border-list__item--in-catalog:last-child {
  border-bottom: 0;
}

.m-border-list__item--in-catalog-child-content {
  margin-left: 120px;
  padding: 0 10px;
}

.m-border-list__link {
  display: block;
  color: #003145;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
  position: relative;
  padding: 15px 15px 15px 0;
  transition: color linear 0.2s;
}

@media only screen and (min-width: 48em) {
  .m-border-list__link {
    font-size: 12px;
    padding: 10px 10px 10px 0;
  }
}

.m-border-list__link--social {
  padding-left: 25px;
}

@media only screen and (min-width: 48em) {
  .m-border-list__link--social {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 48em) {
  .m-border-list__link--social .m-border-list__icon {
    display: none;
  }
}

.m-border-list__link--social__icon {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
}

.m-border-list__icon {
  position: absolute;
  right: 0;
  top: 50%;
  color: inherit;
  line-height: 100%;
  font-size: 14px;
  margin-top: -7px;
}

/**
 *  Dealers list
 */
.m-dealers-list {
  margin-bottom: 20px;
}

.m-dealers-list.m-dealers-list--in-special-offers {
  -webkit-overflow-scrolling: touch;
}

.m-dealers-list__item {
  margin-bottom: 5px;
}

.m-dealers-list__item__link {
  color: #3f3f3f;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 10px;
  background-color: #f2f2f2;
  transition: background-color linear 0.2s;
}

.m-dealers-list__item__link:hover {
  color: #fff;
  background-color: #0050ad;
}

.m-dealers-list__item__title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 10px;
}

.m-dealers-list__item__address {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

/**
 *  Dealers list
 */
.m-dot-list {
  margin-bottom: 20px;
  margin-left: 15px;
  list-style: initial;
  color: #003f87;
  padding: 0;
}

@media only screen and (min-width: 48em) {
  .m-dot-list__item__medium {
    margin-left: 15px;
    list-style: disc outside;
  }
}

.m-dot-list__item__small {
  line-height: 20px;
  font-size: 14px;
  font-weight: 300;
}

.m-dot-list__left {
  padding: 0;
}

@media only screen and (min-width: 48em) {
  .m-dot-list__left {
    padding: 0 30px 0 0;
  }
}

.m-dot-list__right {
  padding: 0;
}

@media only screen and (min-width: 48em) {
  .m-dot-list__right {
    padding: 0 0 0 30px;
  }
}

@media only screen and (min-width: 1px) {
  .m-not-dot-list {
    color: #003f87;
    margin-left: 0;
    list-style: none;
  }
}

.m-not-dot-list__right {
  padding: 0 30px 0 0;
}

@media only screen and (min-width: 48em) {
  .m-not-dot-list__right {
    padding: 0 0 0 30px;
  }
}

@media only screen and (min-width: 48em) {
  .m-not-dot-list__medium {
    margin-left: 15px;
    list-style: disc outside;
  }
}

/**
 *  Dealers list
 */
.m-num-list {
  margin-left: 30px;
}

@media only screen and (min-width: 48em) {
  .m-num-list {
    margin-left: 15px;
    padding: 0 30px 0 0;
  }
}

@media only screen and (min-width: 48em) {
  .m-num-list__item {
    list-style: decimal outside;
    font-weight: 200;
    line-height: 20px;
  }
}

/**
 *  Dealers list
 */
.m-ok-list__item {
  background: url("https://motoresmarinos.suzuki.com.mx//img/warranty/ok-list.jpg ") no-repeat;
  padding: 0 0 0 27px;
  margin: 0 0 20px;
}

.m-side-navigation {
  background-color: #fff;
}

.m-side-navigation__item--image-container {
  border-right: 1px solid #ccc;
  padding-right: 6px;
  text-align: center;
  width: 64px;
}

.m-side-navigation__item--image-container-image {
  width: 70%;
  display: inline;
}

.m-side-navigation__item-title {
  display: block;
  margin: 0 !important;
  padding-left: 70;
  padding-right: 5px;
}

/**
 *	Big title
 */
.m-big-title {
  color: #3f3f3f;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.2;
  margin: 0 0 20px;
}

@media only screen and (min-width: 48em) {
  .m-big-title {
    font-size: 36px;
    margin: 0 0 40px;
  }
}

.m-big-title--as-landing-prices-title {
  margin-bottom: 25px !important;
}

@media only screen and (min-width: 48em) {
  .m-big-title--as-landing-prices-title {
    margin-bottom: 50px !important;
  }
}

.m-big-subtitle {
  display: block;
  text-transform: capitalize;
  font-size: 18px;
}

.m-big-title--in-landing {
  padding: 0 15px;
  margin: 0 0 5px;
}

@media only screen and (min-width: 48em) {
  .m-big-title--in-landing {
    padding: 0;
    margin: 0 0 10px;
  }
}

.m-big-title--in-catalog {
  margin: 0 0 15px;
}

/**
 *	Form section title
 */
.m-form-section-title {
  color: #3f3f3f;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 20px;
}

/**
 *  Medieum title
 */
.m-medium-title {
  color: #3f3f3f;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 20px 0;
}

.m-medium-title--in-warranty-display-inlineblock {
  display: inline-block;
}

@media only screen and (min-width: 48em) {
  .m-medium-title--in-warranty-padding-left {
    padding-left: 30px;
  }
}

/**
 *  Medieum title
 */
.m-medium-title {
  color: #3f3f3f;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 20px 0;
}

.m-medium-title--in-warranty-display-inlineblock {
  display: inline-block;
}

@media only screen and (min-width: 48em) {
  .m-medium-title--in-warranty-padding-left {
    padding-left: 30px;
  }
}

/**
 *  Small title
 */
.m-small-title {
  color: #005580;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 20px;
}

.m-small-title--in-testdrive {
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-small-title--in-testdrive {
    text-align: left;
  }
}

.m-small-title--in-testdrive-step-4-right-side {
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

/**
 *  Home banner 10 reasons
 */
.m-banner-reasons {
  position: relative;
  z-index: 0;
}

.m-banner-reasons__background {
  min-height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 135px 0 125px;
  margin-top: 42px;
}

@media only screen and (min-width: 48em) {
  .m-banner-reasons__background {
    padding: 135px 0 125px;
    margin-top: 45px;
  }
}

.m-banner-reasons__title {
  width: 100%;
  font-size: 26px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  padding-bottom: 15px;
  font-weight: 100;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-banner-reasons__title {
    width: 604px;
    font-size: 60px;
  }
}

.m-banner-reasons__text {
  font-size: 18px;
  color: #fff;
  text-align: center;
  font-weight: 100;
  line-height: 1.2;
  padding: 0 16px 41px;
}

@media only screen and (min-width: 48em) {
  .m-banner-reasons__text {
    padding: 0 24px 26px;
  }
}

/**
 *  Home products gallery
 */
.m-featured-gallery {
  position: relative;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 50px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 48em) {
  .m-featured-gallery {
    margin-bottom: 14px;
    margin-top: 68px;
  }
}

.m-featured-gallery__album {
  margin: 47px 0 0;
}

@media only screen and (min-width: 48em) {
  .m-featured-gallery__album {
    margin: 68px 0 0;
    padding-bottom: 50px;
  }
}

.m-featured-gallery__album .slick-list {
  overflow: visible;
}

.m-featured-gallery__album * {
  outline: none;
}

.m-featured-gallery__album__container {
  width: 220px;
  display: inline-block;
  transform: translateZ(0);
  position: relative;
  z-index: 0;
  transition: z-index 0.2s ease-in-out 0.1s;
}

@media only screen and (min-width: 64em) {
  .m-featured-gallery__album__container:hover {
    position: relative;
    z-index: 10;
    transition: z-index 0.2s ease-in-out;
  }

  .m-featured-gallery__album__container:hover .m-featured-gallery__album__picture {
    box-shadow: 0 10px 20px 0 rgba(50, 50, 50, 0.5);
    transform: scale(1.1);
    position: relative;
    z-index: 10;
    transition: transform 0.2s ease-in-out 0.1s,
      box-shadow 0.2s ease-in-out 0.1s;
    background-color: black;
  }

  .m-featured-gallery__album__container:hover .m-featured-gallery__album__picture__image {
    opacity: 0.6;
  }

  .m-featured-gallery__album__container:hover .m-featured-gallery__album__content {
    opacity: 1;
  }

  .m-featured-gallery__album__container:hover .slick-current.slick-active .m-featured-gallery__album__picture {
    box-shadow: 0 10px 20px 0 rgba(50, 50, 50, 0.5);
    transform: scale(1.1);
    position: relative;
    z-index: 10;
  }
}

@media only screen and (min-width: 64em) {
  .m-featured-gallery__album__container--hover {
    position: relative;
    z-index: 10;
  }

  .m-featured-gallery__album__container--hover .m-featured-gallery__album__picture {
    box-shadow: 0 10px 20px 0 rgba(50, 50, 50, 0.5);
    transform: scale(1.1);
    position: relative;
    z-index: 10;
  }

  .m-featured-gallery__album__container--hover .slick-current.slick-active .m-featured-gallery__album__picture {
    box-shadow: 0 10px 20px 0 rgba(50, 50, 50, 0.5);
    transform: scale(1.1);
    position: relative;
    z-index: 10;
  }

  .m-featured-gallery__album__container--hover .m-featured-gallery__album__picture__image {
    opacity: 0.6;
  }

  .m-featured-gallery__album__container--hover .m-featured-gallery__album__content {
    opacity: 1;
  }
}

.m-featured-gallery__album__content {
  position: absolute;
  z-index: 10;
  transition: all linear 0.2s;
  width: 200px;
  opacity: 0;
}

.m-featured-gallery__album__title {
  font-size: 30px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.m-featured-gallery__album__subtitle {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding: 3px 0 12px;
}

.m-featured-gallery__album__link {
  text-align: center;
  display: block;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
  font-weight: 200;
  font-style: italic;
  padding-top: 4px;
  letter-spacing: 1px;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}

.m-featured-gallery__album__link--arrow {
  display: inline-block !important;
}

.m-featured-gallery__album__picture {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 190px;
  height: 190px;
  overflow: hidden;
  background-color: black;
}

@media only screen and (min-width: 64em) {
  .m-featured-gallery__album__picture {
    width: 100%;
    height: auto;
    max-width: 288px;
    max-height: 288px;
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
    position: relative;
  }
}

.slick-current.slick-active .m-featured-gallery__album__picture {
  position: relative;
  width: 220px;
  height: 220px;
  top: -15px;
  box-shadow: 0 10px 20px 0 rgba(50, 50, 50, 0.5);
}

.slick-current.slick-active .m-featured-gallery__album__picture .m-featured-gallery__album__picture__image {
  opacity: 0.6;
}

.slick-current.slick-active .m-featured-gallery__album__picture .m-featured-gallery__album__title {
  opacity: 1;
}

@media only screen and (min-width: 64em) {
  .slick-current.slick-active .m-featured-gallery__album__picture {
    position: static;
    width: auto;
    height: auto;
    top: 0;
    box-shadow: none;
  }

  .slick-current.slick-active .m-featured-gallery__album__picture .m-featured-gallery__album__picture__image {
    opacity: 1;
  }

  .slick-current.slick-active .m-featured-gallery__album__picture .m-featured-gallery__album__content {
    opacity: 0;
  }

  .slick-current.slick-active .m-featured-gallery__album__picture:hover {
    box-shadow: 0 10px 20px 0 rgba(50, 50, 50, 0.5);
    transform: scale(1.1);
    position: relative;
    z-index: 10;
  }

  .slick-current.slick-active .m-featured-gallery__album__picture:hover .m-featured-gallery__album__picture__image {
    opacity: 0.6;
  }

  .slick-current.slick-active .m-featured-gallery__album__picture:hover .m-featured-gallery__album__content {
    opacity: 1;
  }
}

.m-featured-gallery__album__picture__image {
  max-width: 100%;
  width: 100%;
  transition: opacity 0.3s ease;
  opacity: 1;
}

/**
 *  Home slider
 */
.m-home-slider {
  position: relative;
  z-index: 0;
  background-color: black;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

@media only screen and (min-width: 48em) {
  .m-home-slider {
    height: 500px;
  }
}

.m-home-slider__slick {
  position: relative;
}

.m-home-slider__slick .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slick .slick-dots {
    bottom: 20px;
  }
}

.m-home-slider__slick .slick-dots li {
  display: inline-block;
  margin: 0 11px;
  width: 11px;
  height: 11px;
  position: relative;
}

.m-home-slider__slick .slick-dots li button {
  display: block;
  cursor: pointer;
  width: 11px !important;
  height: 11px !important;
  box-sizing: border-box;
  padding: 0;
  outline: 0;
  text-indent: -999px;
  overflow: hidden;
  line-height: 100%;
  background: transparent;
  border: 2px solid white;
  border-radius: 50% !important;
}

.m-home-slider__slick .slick-dots .slick-active button {
  border-color: white;
  background: white;
}

.m-home-slider__slide {
  display: block;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  min-height: 550px !important;
  text-align: center;
  outline: none !important;
  overflow: hidden;
}


/**

    DF90 CARGO MODS

*/

.m-home-slider__slide.df90cargo {
  background-position: center center;
}

.m-home-slider__slide.df90cargo .lateral-image {
  display: none;
}

.m-home-slider__slide.df90cargo .m-home-slider__slide__title .m-home-slider__slide__suzuki-badge__image {
  display: block !important;
  margin: 0 auto;
  width: 200px;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide.df90cargo {
    background-position: center 0;
  }

  .m-home-slider__slide.df90cargo .m-home-slider__slide__container--image {
    position: absolute;
    right: 25%;
    top: 60px;
  }

  .m-home-slider__slide.df90cargo .m-home-slider__slide__container--image img {
    height: 380px;
  }

  .m-home-slider__slide.df90cargo .m-home-slider__slide__title {
    color: #000;
  }


  .m-home-slider__slide.df90cargo .m-home-slider__slide__container--text {
    top: 40%;
  }

  .m-home-slider__slide.df90cargo .m-home-slider__slide__text {
    color: #000;
    text-transform: none;
    font-size: 24px;
    margin-bottom: 5px;
  }

  .m-home-slider__slide.df90cargo .m-home-slider__slide__title .m-home-slider__slide__suzuki-badge__image {
    display: block !important;
    margin: 0 auto;
    width: 200px;
  }

  .m-home-slider__slide.df90cargo .m-home-slider__slide__container {
    position: absolute;
    left: 0;
    width: 33%;
  }
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide {
    min-height: 500px !important;
  }

  .m-home-slider__slide.df90cargo .lateral-image {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 500px;
    width: 300px;
  }

  .m-home-slider__slide.df90cargo .lateral-image img {
    height: 500px;
  }
}

@media only screen and (max-width: 1130px) {

  .m-home-slider__slide.df90cargo .lateral-image {
    display: none;

  }

}


/**

    FREE CHECK MODS

*/


@media only screen and (max-width: 700px) {

  .m-home-slider__slide.free-check {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-position-y: -10px;
  }
}

@media only screen and (min-width: 700px) {

  .m-home-slider__slide.free-check {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    background-color: #fff;
    overflow: hidden;
  }
}




/**

    DF115B MODS


.m-home-slider__slide.df115b{
  background-position: center center;
}

.m-home-slider__slide.df115b .lateral-image{
  display:none;
}

.m-home-slider__slide.df115b .m-home-slider__slide__title .m-home-slider__slide__suzuki-badge__image{
  display: block !important;
  margin:0 auto;
  width:200px;
}

@media only screen and (min-width: 48em) {
.m-home-slider__slide.df115b{
  background-position: center 0;
}

.m-home-slider__slide.df115b .m-home-slider__slide__container--image{
  position: absolute;
  right: 25%;
  top: 60px;
}

.m-home-slider__slide.df115b .m-home-slider__slide__container--image img{
  height: 380px;
}

.m-home-slider__slide.df115b .m-home-slider__slide__title{
  color: #000;
}


.m-home-slider__slide.df115b .m-home-slider__slide__text{
  color: #000;
  text-transform: none;
  font-size: 24px;
  margin-bottom: 5px;
}

.m-home-slider__slide.df115b .m-home-slider__slide__title .m-home-slider__slide__suzuki-badge__image{
  display: block !important;
  margin:0 auto;
  width:200px;
}

.m-home-slider__slide.df115b .m-home-slider__slide__container{
  position:absolute;
  left: 0;
  width:33%;
}
}
*/


.m-home-slider__slide--cover {
  background-repeat: no-repeat;
  background-position: right 20% center;
  background-size: auto 65%;
  background-clip: padding-box;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide--cover {
    background-position: center center;
    background-size: contain;
    background-clip: padding-box;
  }
}

.m-home-slider__slide__container {
  position: relative;
  width: 100%;
  min-height: 550px !important;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__container {
    min-height: 500px !important;
  }
}

.m-home-slider__slide__container--image {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 250px;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__container--image {
    position: relative;
    bottom: auto;
    height: 500px;
  }
}

.m-home-slider__slide__container--image__image {
  display: block;
  margin: 0 auto;
  min-height: 270px;
  max-height: 270px;
  max-width: 90%;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__container--image__image {
    max-width: none;
    min-height: none;
    max-height: 430px;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.m-home-slider__slide__container--text {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__container--text {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}

.m-home-slider__slide__suzuki-badge {
  display: block;
  width: 289px;
  height: 36px;
  margin: 30px auto 24px;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__suzuki-badge {
    margin: 30px auto 32px;
  }
}

.m-home-slider__slide__title {
  margin-bottom: 23.7px;
  color: #fff;
  font-family: "SuzukiPRO", sans-serif;
  font-size: 31.3px;
  font-weight: 600;
  text-shadow: 0 0 55px #000;
  text-align: center;
}

.m-home-slider__slide__title img {
  display: inline !important;
  max-width: 220px;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__title {
    margin-bottom: 10px;
    font-size: 50px;
  }

  .m-home-slider__slide__title img {
    display: inline !important;
    max-width: 160px;
  }
}

.m-home-slider__slide__text {
  min-height: 50px;
  margin-bottom: 26.8px;
  padding: 0 70px;
  color: #fff;
  font-family: "SuzukiPRO", sans-serif;
  font-size: 20.2px;
  font-weight: 100;
  line-height: 1.2;
  text-shadow: 0 0 55px #000;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

@media only screen and (min-width: 48em) {
  .m-home-slider__slide__text {
    margin-bottom: 36px;
    padding: 0 10px;
    font-size: 34px;
  }
}

.home-cargo {
  padding: 80px 0;
  color: #414141;
}

.home-cargo .img-container {
  margin: 0px auto;
  text-align: center;
  padding: 40px;
}


.home-cargo .img-container img {
  width: 60%;
}

.home-cargo .list-container ul {
  display: block;
  padding-bottom: 20px;
  margin-left: 40px;
}

.home-cargo .list-container ul li {
  font-size: 18px;
  margin-top: 7px;
}

.home-cargo h3 {
  text-align: left;
}

.home-cargo ul {
  list-style: disc;
  padding-left: 20px;
}

.home-cargo ul li {
  font-size: 27px;
  font-family: "Suzuki";
  font-weight: normal;
}


@media only screen and (min-width: 48em) {
  .home-cargo .img-container {
    height: 100%;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-cargo .list-container ul li {
    font-size: 24px;
    margin-top: 7px;
  }
}



.home-series {
  position: relative;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 50px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 48em) {
  .home-series {
    margin-bottom: 14px;
    margin-top: 68px;
  }
}

.home-series__container {
  margin: 47px 0 10px;
}

@media only screen and (min-width: 48em) {
  .home-series__container {
    margin: 68px 0 10px;
  }

  .home-series__container .pure-g div:nth-child(odd) .home-series__serie {
    border-right: solid 5px white;
  }

  .home-series__container .pure-g div:nth-child(even) .home-series__serie {
    border-left: solid 5px white;
  }
}

.home-series__serie {
  position: relative;
  min-height: 350px;
  padding: 48px 15px 0;
  background-color: gray;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 10px;
}

@media only screen and (min-width: 48em) {
  .home-series__serie {
    min-height: 500px;
    padding: 198px 5% 0;
  }

  .home-series__serie:hover .home-series__serie__overlay {
    opacity: 0.85;
  }

  .home-series__serie:hover .home-series__serie_title,
  .home-series__serie:hover .home-series__serie_description {
    opacity: 0;
  }
}

.home-series__serie_title,
.home-series__serie_description {
  transition: all linear 0.2s;
}

.home-series__serie_title {
  font-size: 30px;
  letter-spacing: 2.9px;
  color: #ffffff;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding-bottom: 18px;
}

.home-series__serie_description {
  display: block;
  max-width: 290px;
  margin: 0 auto;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  padding-bottom: 20px;
}

@media only screen and (min-width: 48em) {
  .home-series__serie_description {
    display: block;
    max-width: 423px;
  }
}

.home-series__serie__overlay {
  position: relative;
  display: block;
  height: 75px;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .home-series__serie__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    background-color: black;
    opacity: 0;
    transition: all linear 0.2s;
  }
}

.home-series__serie__button {
  display: block;
  width: 180px;
  height: 50px;
  margin: 0 auto;
  padding-top: 13px;
  border: solid 1px #ffffff;
  color: #ffffff;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
}

.home-series__serie__button img {
  position: relative;
  transition: all linear 0.2s;
  padding-left: 8px;
  left: 0;
}

@media only screen and (min-width: 48em) {
  .home-series__serie__button {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}

/**
 *  Home News
 */
.m-news {
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
}

@media only screen and (min-width: 48em) {
  .m-news {
    margin-bottom: 70px;
  }
}

.m-news__image {
  display: block;
  padding: 0;
  outline: 0;
  margin: 47px 0 10px;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-news__image {
    margin: 68px 0 10px;
  }
}

/**
 *  Home subtitles
 */
.m-home__subtitle {
  font-size: 17px;
  color: #3f3f3f;
  font-weight: 100;
  text-align: center;
  padding: 0 40px;
  line-height: 1.2;
}

@media only screen and (min-width: 48em) {
  .m-home__subtitle {
    line-height: 1.4;
    padding: 0;
    font-size: 24px;
    text-align: center;
    max-width: 570px;
    display: block;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 48em) {
  .m-home__subtitle--lg-left {
    text-align: left;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 64em) {
  .m-home__subtitle--lg-left {
    padding-left: 0;
  }
}

/**
 *  Texblocks
 */
.m-textblock {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 350px;
  background-color: #fafafa;
  padding: 40px 0 60px;
}

@media only screen and (min-width: 48em) {
  .m-textblock {
    padding: 76px 0;
    min-height: 320px;
  }
}

.m-textblock__title {
  margin-bottom: 15px;
  color: #808080;
  font-size: 26px;
  line-height: 1.4;
  text-transform: uppercase;
}

@media only screen and (min-width: 48em) {
  .m-textblock__title {
    margin-bottom: 18px;
    font-size: 34px;
  }
}

.m-textblock__text {
  color: #999999;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.4;
}

@media only screen and (min-width: 48em) {
  .m-textblock__text {
    font-size: 18px;
  }
}

.m-textblock__image {
  display: block;
  position: relative;
  width: 90%;
  min-height: 100px;
  margin: 0 auto 30px;
}

@media only screen and (min-width: 48em) {
  .m-textblock__image {
    position: relative;
    width: 90%;
    min-height: 150px;
    margin: 0;
  }
}

.m-textblock__image__picture {
  max-width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-textblock__image__picture {
    max-width: 90%;
  }
}

/**
 *  Home titles
 */
.m-home__title {
  margin-bottom: 10px;
  padding: 0 40px;
  color: #414141;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
}

@media only screen and (min-width: 48em) {
  .m-home__title {
    padding: 0;
    font-size: 48px;
    max-width: 960px;
    margin: 0 auto;
    line-height: 1;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 48em) {
  .m-home__title--lg-left {
    text-align: left;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 64em) {
  .m-home__title--lg-left {
    padding-left: 0;
  }
}

.m-banner_contact {
  min-height: 395px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 135px 0 125px;
  margin-top: 65px;
}

@media only screen and (min-width: 48em) {
  .m-banner_contact {
    padding: 135px 0 125px;
    margin-top: 45px;
    min-height: 326px;
  }
}

.m-banner_contact__title {
  width: 100%;
  font-size: 26px;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  padding-bottom: 15px;
  font-weight: 100;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-banner_contact__title {
    width: 604px;
    font-size: 36px;
  }
}

.m-banner_contact__text {
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-weight: 100;
  line-height: 1.4;
  padding: 0 20px 41px;
}

@media only screen and (min-width: 48em) {
  .m-banner_contact__text {
    padding: 0 24px 26px;
    line-height: 1.2;
  }
}

/**
 *	Landing menu
 */
.m-landing-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid #dadada;
  display: none;
  transition: top ease 0.5s;
}

@media only screen and (min-width: 48em) {
  .m-landing-menu {
    display: block;
    top: -100px;
  }
}

@media only screen and (min-width: 48em) {
  .m-landing-menu.is-visible {
    top: 0;
  }

  .m-landing-menu.is-visible .m-landing-menu__testdrive {
    top: -5px;
    transition: top ease 0.75s;
  }
}

.m-landing-menu__link {
  color: #003145;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  padding: 18px 0 17px;
  background-color: #fff;
  border-left: 1px solid #dadada;
  display: block;
  position: relative;
  transition: background-color linear 0.2s;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.m-landing-menu__link:hover {
  background-color: #004eb0;
  color: #fff;
}

.m-landing-menu__link.active {
  background-color: #004eb0;
  color: #fff;
  font-size: 15px;
}

.m-landing-menu__link--home {
  font-size: 32px;
  padding: 8px 0;
}

.m-landing-menu__link--logo {
  padding: 0;
  height: 49px;
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  padding-top: 13px;
}

.m-landing-menu__link--logo__image {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 75%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.m-landing-menu__testdrive {
  position: absolute;
  top: -105px;
  right: 0;
}

.m-landing-menu__testdrive:hover {
  top: 0 !important;
  transition: top ease 0.2s !important;
}

.m-landing-menu__indicator {
  position: absolute;
  top: 100%;
  width: 20px;
  height: 20px;
  border-top: 10px solid #004eb0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  margin-left: -10px;
  opacity: 0;
  -moz-opacity: 0;
  transition: left ease 0.75s;
}

.m-model_accessories {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 48em) {
  .m-model_accessories {
    margin-top: 50px;
  }
}

.m-model_accessories__image {
  position: relative;
  width: 100%;
  height: 90px;
  overflow: hidden;
  border: solid 1px white;
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .m-model_accessories__image {
    max-width: none;
    height: 204px;
  }
}

.m-model_accessories__picture {
  width: 100%;
  display: block;
  margin: 0 auto;
  transition: all linear 0.2s;
  cursor: pointer;
}

@media only screen and (min-width: 48em) {
  .m-model_accessories__picture {
    width: auto;
    min-width: 100%;
  }
}

.m-model_accessories__buton {
  margin-top: 40px;
}

@media only screen and (min-width: 48em) {
  .m-model_accessories__buton {
    margin-top: 10px;
  }
}

.m-model_features {
  position: relative;
  z-index: 0;
  width: 100%;
  padding-top: 0;
}

@media only screen and (min-width: 48em) {
  .m-model_features {
    padding-top: 22px;
    margin-top: 38px;
  }
}

.m-model_features__buttons {
  position: absolute;
  z-index: 3;
  bottom: -25px;
  width: 100%;
}

.m-model_features__buttons_left {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 32px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__buttons_left {
    left: 20px;
  }
}

.m-model_features__buttons_right {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 32px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__buttons_right {
    right: 20px;
  }
}

.m-model_features__slider {
  margin-top: 54px;
}

.m-model_features__slider.slick-slider {
  margin-bottom: 50px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slider {
    margin-top: 77px;
    max-height: 680px;
    overflow: hidden;
  }
}

.m-model_features__slide {
  overflow: hidden;
  position: relative;
  min-height: 448px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide {
    min-height: 448px;
  }
}

.m-model_features__slide_background {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_background {
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
  }
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_left {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 64em) {
  .m-model_features__slide_left {
    padding-right: 180px;
  }
}

.m-model_features__slide_content {
  padding: 32px 20px 30px;
  min-height: 400px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_content {
    padding: 110px 0px 90px 0;
    min-height: 501px;
  }
}

@media only screen and (min-width: 64em) {
  .m-model_features__slide_content {
    padding: 110px 0px 90px 0;
  }
}

.m-model_features__slide_content_title {
  margin-bottom: 23px;
  color: white;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_content_title {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 18px;
  }
}

@media only screen and (min-width: 64em) {
  .m-model_features__slide_content_title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 23px;
  }
}

.m-model_features__slide_content_text {
  color: white;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_content_text {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 64em) {
  .m-model_features__slide_content_text {
    font-size: 18px;
    line-height: 1.5;
  }
}

.m-model_features__slide_content_badge {
  margin: 24px 0;
}

.m-model_features__slide_content_image {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100px;
  margin: 0 0 60px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_content_image {
    margin: 60px 0;
  }
}

.m-model_features__slide_content_image_picture {
  display: block;
  padding: 0;
  margin: 0 auto;
  max-width: 75%;
}

@media only screen and (min-width: 48em) {
  .m-model_features__slide_content_image_picture {
    width: auto;
    max-width: none;
    max-width: 100%;
    position: relative;
    top: 35px;
    left: -84px;
  }
}

@media only screen and (min-width: 64em) {
  .m-model_features__slide_content_image_picture {
    width: 598px;
    max-width: none;
    position: relative;
    top: 0;
    left: -120px;
    margin: 0;
  }
}


.m-model_features__multiple {
  background-color: #000;
  padding: 80px 40px;
  margin-top: 40px;
}

.m-model_features__multiple .column {
  width: 90%;
}

.m-model_features__multiple .column h3 {
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 20px;
}

@media only screen and (min-width: 48em) {
  .m-model_features__multiple {
    background-color: #000;
    display: flex;
    justify-content: space-evenly;
    padding: 80px 0;
    margin-top: 40px;
  }

  .m-model_features__multiple .column {
    width: 40%;
  }
}


.m-model_features__full_banner {
  height: 300px;
  width: 100%;
  background-image: url('https://cdn.marciano.space/suzuki-motores-marinos/motors/backgrounds/df90cargo-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media only screen and (min-width: 48em) {
  .m-model_features__full_banner {
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}


.m-model_gallery {
  margin-top: 93px;
}

@media only screen and (min-width: 48em) {
  .m-model_gallery {
    margin-top: 93px;
    padding-top: 22px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.m-model_gallery_album {
  margin-top: 42px;
}

@media only screen and (min-width: 48em) {
  .m-model_gallery_album {
    margin-top: 60px;
  }
}

.m-model_gallery_album_image {
  width: 100%;
  max-height: 189px;
  height: auto;
  overflow: hidden;
  border: solid 2px white;
  border-right: 0;
  border-left: 0;
  max-width: 281px;
  margin: 0 auto;
  background-color: white;
}

@media only screen and (min-width: 48em) {
  .m-model_gallery_album_image {
    border: solid 3px white;
    max-width: none;
    height: 300px;
    max-height: 298px;
  }
}

.m-model_gallery__picture {
  min-width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  transition: all linear 0.2s;
  cursor: pointer;
}

.m-model_gallery__picture:hover {
  opacity: 0.9;
}

.m-model__presentation {
  position: relative;
  z-index: 0;
  min-height: 600px;
  width: 100%;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation {
    min-height: 600px;
  }
}

.m-model__presentation_picture {
  display: block;
  width: 100%;
  margin: 20px auto 0;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_picture {
    width: auto;
    max-width: 90%;
    max-height: 550px;
    margin: 68px auto 0;
  }
}

.m-model__presentation__picture_image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 250px;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation__picture_image {
    width: auto;
    max-width: 90%;
    max-height: 550px;
    margin: 68px auto 0;
  }
}

.m-model__presentation_content {
  width: 100%;
  margin: 10px 0 50px;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content {
    margin: 120px 0 140px;
  }
}

.m-model__presentation_content_series {
  padding: 0 20px 8px;
  color: #4a4a4a;
  font-size: 27px;
  font-weight: 100;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_series {
    padding: 0 0 14px;
    font-size: 56px;
    text-align: right;
  }
}

.m-model__presentation_content_name {
  padding: 0 10px 10px;
  color: #4a4a4a;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.m-model__presentation_content_name img {
  display: block;
  width: 180px;
  margin: 0 auto;
  float: right;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_name {
    padding: 0 0 21px;
    font-size: 56px;
    text-align: right;
  }

  .m-model__presentation_content_name img {
    width: 280px;
  }
}

.m-model__presentation_content_description {
  padding: 0 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  clear: both;
  -webkit-font-smoothing: antialiased;
}

.price-paragraph {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}

.price-legals {
  margin: auto;
  padding: 40px 0px 10px 0px;
  margin-bottom: -5px;
  font-size: 12px;
  text-align: left;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_description {
    max-width: 390px;
    margin: 0 0 0 auto;
    font-size: 20px;
    font-weight: 100;
    line-height: 1.5;
    padding: 0;
    text-align: right;
    clear: both;
  }

  .price-paragraph {
    text-align: right;
  }

  .price-legals {
    width: 80%;
    margin: auto;
    padding: 40px 0px 15px 0px;
    margin-bottom: -25px;
  }
}

.m-model__presentation__go-down {
  bottom: 20px;
  cursor: pointer;
}

.m-model__presentation_content_badges-list {
  width: auto;
  display: block;
  margin: 30px 30px 0;
  padding: 0;
  border: 0;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_badges-list {
    margin: 55px 0 0;
  }
}

.m-model__presentation_content_badges-list--right {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_badges-list--right {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.m-model__presentation_content_badge {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  float: left;
  width: 50%;
  margin-bottom: 10px;
  padding: 0 5%;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_badge {
    width: auto;
    text-align: right;
    float: right;
    padding-right: 0;
    max-width: 160px;
    text-align: center;
  }
}

.m-model__presentation_content_badge--left {
  width: 80%;
  padding-bottom: 20px;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_badge--left {
    position: relative;
    top: 20px;
    max-width: 260px;
    width: 100%;
  }
}

.m-model__presentation_content_badge--mobile {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_badge--mobile {
    display: none;
  }
}

.m-model__presentation_content_badge_case {
  display: inline-block;
  max-width: 180px;
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .m-model__presentation_content_badge_case {
    max-width: none;
  }
}

.m-model__presentation_content_badge_image {
  width: 100%;
}

.m-model_spares_accessories {
  margin-top: 56px;
  padding: 0;
}

@media only screen and (min-width: 48em) {
  .m-model_spares_accessories {
    margin-top: 60px;
    padding-top: 22px;
  }
}

.m-model_spares {
  margin-top: 14px;
}

@media only screen and (min-width: 48em) {
  .m-model_spares {
    margin-top: 50px;
  }
}

.m-model_spares__banner {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: 188px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(https://motoresmarinos.suzuki.com.mx//img/motor/spare_img.jpg);
}

@media only screen and (min-width: 48em) {
  .m-model_spares__banner {
    height: 408px;
    border: solid 1px white;
  }
}

.m-model_spares__banner--full {
  margin-top: 50px;
}

@media only screen and (min-width: 48em) {
  .m-model_spares__banner--full {
    background-image: url(https://motoresmarinos.suzuki.com.mx//img/motor/spare_img_full.jpg);
  }
}

.m-model_spares__buton {
  margin-top: 40px;
}

@media only screen and (min-width: 48em) {
  .m-model_spares__buton {
    margin-top: 10px;
  }
}

/**
 *  Landing versions
 */
.m-model_specs {
  margin-top: 70px;
}

@media only screen and (min-width: 48em) {
  .m-model_specs {
    margin-top: 78px;
    padding-top: 22px;
  }
}

.m-model_specs {
  margin-bottom: 25px;
}

.m-model_specs li:last-of-type:after {
  display: none;
}

.m-model_specs .slick-arrow {
  left: auto;
  bottom: auto;
  top: 250px;
  margin-bottom: 0;
  width: 26px;
  height: 26px;
  background-color: #004bb3;
  color: white;
  border-radius: 50%;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 7px 12px !important;
  z-index: 2;
}

.m-model_specs .slick-prev {
  left: 4px;
}

.m-model_specs .slick-next {
  right: 5px;
}

.m-model_specs__item {
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.m-model_specs__item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.m-model_specs__item__picture {
  display: block;
  margin: 0 auto 15px;
  max-width: 200px;
  height: 200px;
}

.m-model_specs__item__image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.m-model_specs-versions {
  margin-top: 50px;
}

.m-model_specs__item__picture {
  display: block;
  max-width: 100%;
  margin: 0 auto 24px;
}

.m-model_specs__item__table {
  border: 0;
  font-size: 14px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.m-model_specs__item__table thead {
  background-color: #004bb3;
}

.m-model_specs__item__table thead tr {
  height: 50px;
}

.m-model_specs__item__table thead tr td {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border: 0;
  padding: 16px 10px;
  background-color: #004bb3;
  font-size: 19px;
  height: 50px;
}

.m-model_specs__item__table tbody tr td {
  vertical-align: middle;
  color: #3f3f3f;
  padding: 10px;
  line-height: 1.4;
  text-align: center;
  font-size: 13px;
}

@media only screen and (min-width: 48em) {
  .m-model_specs__item__table tbody tr td {
    font-size: 16px;
    line-height: 1.3;
  }
}

.m-model_specs__item__table tbody tr td p {
  margin: 10px 0;
}

.m-model_specs__item__table tbody tr:nth-child(odd) {
  background-color: #e6e6e6;
}

.m-model_specs__item__table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.m-model_specs__load-more {
  display: block;
  margin: 0 auto;
  height: 35px;
  width: 100%;
  background-color: #4a4a4a;
  color: #fff;
  padding: 6px 0 0 0;
  text-align: center;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  vertical-align: bottom;
  cursor: pointer;
}

@media only screen and (min-width: 48em) {
  .m-model_specs__load-more {
    padding: 6px 0 0 0;
    font-size: 14px;
    transition: background-color 0.2s ease;
  }

  .m-model_specs__load-more:hover {
    background-color: #383838;
  }
}

.m-model_specs__load-more--one {
  max-width: 500px;
  margin: 0 auto;
}

.m-model_specs__load-more__icon {
  position: relative;
  top: 0;
  display: inline-block;
  padding-top: 4px;
  margin: 0 0 0 8px;
  vertical-align: bottom;
  max-width: 25px;
}

@media only screen and (min-width: 48em) {
  .m-model_specs__load-more__icon {
    margin: 0 16px;
  }
}

.m-model_specs__download {
  display: block;
  margin: 30px 0 0;
  text-decoration: none;
  text-align: center;
}

.m-model_specs__download_text {
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  color: #303030;
}

.m-model_specs__download_icon {
  display: block;
  margin: 10px auto 0;
  width: 25px;
}

@media only screen and (min-width: 48em) {
  .m-model_specs__download_icon {
    width: auto;
  }
}

.m-model_subtitle {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-model_subtitle {
    font-size: 18px;
    font-weight: 300;
  }
}

.m-model_title {
  color: #4a4a4a;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-model_title {
    font-size: 36px;
    font-weight: 400;
  }
}

/**
 *  Checkpoint container
 */
.m-checkpoint {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 830px;
  padding-top: 43px;
  background-image: url(https://motoresmarinos.suzuki.com.mx//img/checkpoint/bg_pattern.png);
  background-position: center center;
  background-size: 700px;
  background-color: black;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint {
    padding-top: 100px;
    padding-bottom: 113px;
    min-height: 829px;
  }
}

.m-checkpoint__gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom,
      rgba(64, 64, 64, 0) 0%,
      rgba(51, 51, 51, 0) 21%,
      rgba(0, 0, 0, 0.59) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00404040', endColorstr='#96000000', GradientType=0);
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__gradient {
    background: linear-gradient(to bottom,
        rgba(64, 64, 64, 0) 0%,
        rgba(64, 64, 64, 0.08) 10%,
        rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00404040', endColorstr='#c7000000', GradientType=0);
  }
}

.m-checkpoint__title {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "SuzukiPRO", sans-serif;
  font-size: 30px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  padding: 0 20px;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__title {
    margin-bottom: 15px;
    font-size: 56px;
  }
}

.m-checkpoint__subtitle {
  display: block;
  color: #fff;
  font-family: "SuzukiPRO", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__subtitle {
    font-size: 22px;
  }
}

.m-checkpoint__next {
  position: absolute;
  bottom: 40px;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__next {
    bottom: 10px;
    cursor: pointer;
  }
}

.m-checkpoint__next__button,
.m-checkpoint__prev__button {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #004eb0;
  border-radius: 100%;
  color: white;
  text-align: center;
  padding-top: 3px;
  padding-left: 1px;
  font-size: 30px;
  vertical-align: middle;
}

.m-checkpoint__prev__button {
  padding-top: 0;
  margin-left: 20px;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__prev__button {
    display: none;
  }
}

.m-checkpoint__next__text {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__next__text {
    display: inline-block;
    margin-left: 14px;
    font-size: 14px;
    color: #4a4a4a;
    font-style: italic;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
  }
}

/**
 *  Checkpoint navigation
 */
.m-checkpoint__nav {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__nav {
    display: block;
    width: 36px;
    height: 340px;
    position: absolute;
    top: 50px;
    left: 34px;
  }
}

@media only screen and (min-width: 64em) {
  .m-checkpoint__nav {
    left: 4px;
  }
}

.m-checkpoint__nav__buttons {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin-bottom: 25px;
  background-color: #4a4a4a;
  border-radius: 100%;
  color: white;
  text-align: center;
  padding-top: 9px;
  -webkit-font-smoothing: antialiased;
  transition: all linear 0.2s;
  cursor: pointer;
}

.m-checkpoint__nav__buttons:nth-last-child(2) {
  margin-bottom: 0;
}

.m-checkpoint__nav__buttons span {
  position: relative;
  z-index: 1;
}

.m-checkpoint__nav__buttons:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  width: 36px;
  height: 36px;
  background-color: #004eb0;
  transition: all linear 0.2s;
}

.m-checkpoint__nav__buttons:hover,
.m-checkpoint__nav__buttons--active {
  background-color: #004eb0;
}

.m-checkpoint__nav__line {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  height: 335px;
  width: 3px;
  background-color: #4a4a4a;
  top: 5px;
  left: 17px;
}

.m-checkpoint__nav__line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #004eb0;
  transition: all linear 0.2s;
}

.m-checkpoint__nav__line--0:before {
  height: 0%;
}

.m-checkpoint__nav__line--20:before {
  height: 20%;
}

.m-checkpoint__nav__line--40:before {
  height: 40%;
}

.m-checkpoint__nav__line--60:before {
  height: 60%;
}

.m-checkpoint__nav__line--80:before {
  height: 80%;
}

.m-checkpoint__nav__line--100:before {
  height: 100%;
}

/**
 *  Checkpoint slider content
 */
.m-checkpoint__slide__image-container {
  display: block;
  margin: 0 auto;
  padding-top: 36px;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slide__image-container {
    padding-top: 60px;
  }
}

.m-checkpoint__slide__image-container__image {
  display: block;
  max-width: 200px;
  max-height: 255px;
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slide__image-container__image {
    max-width: 85%;
    max-height: none;
  }
}

@media only screen and (min-width: 64em) {
  .m-checkpoint__slide__image-container__image {
    max-width: 100%;
    max-height: none;
  }
}

.m-checkpoint__slide__content {
  display: inline-block;
  padding: 35px 20px 0;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slide__content {
    padding: 80px 0 0;
  }
}

.m-checkpoint__slide__content__number {
  display: block;
  position: relative;
  max-width: 30px;
  margin: 0 auto 14px;
  padding-bottom: 10px;
  border-bottom: solid 2px white;
  color: #fff;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slide__content__number {
    display: inline-block;
    margin: 0 0 25px;
    text-align: left;
  }
}

.m-checkpoint__slide__content__title {
  margin-bottom: 17px;
  font-family: Times-BoldItalic;
  font-size: 35px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slide__content__title {
    font-size: 60px;
    text-align: left;
  }
}

.m-checkpoint__slide__content__text {
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slide__content__text {
    font-size: 16px;
    text-align: left;
  }
}

.m-checkpoint__slide__content__text_paragraph {
  margin-bottom: 30px;
}

/**
 *  Checkpoint slider
 */
.m-checkpoint__slider--container {
  position: relative;
}

.m-checkpoint__slider {
  position: relative;
  min-height: 500px;
  width: 100%;
  margin-bottom: 0 !important;
  padding-bottom: 100px;
}

.m-checkpoint__slider .slick-list {
  overflow: visible !important;
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slider {
    min-height: 450px;
    padding-bottom: 66px;
    margin: 20px auto 0;
  }
}

@media only screen and (min-width: 48em) {
  .m-checkpoint__slider__slide-container {
    height: 450px;
    padding-left: 80px;
  }
}

@media only screen and (min-width: 64em) {
  .m-checkpoint__slider__slide-container {
    padding-left: 134px;
  }
}

/**
 *  Concessionarie columns
 */
.m-concessionaires {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires {
    padding-left: 340px;
  }
}

.m-concessionaires address {
  font-style: normal;
  line-height: 14px;
}

.m-concessionaires.m-concessionaires--full-map {
  padding-left: 0;
}

.m-concessionaires.m-concessionaires--full-map .m-concessionaires-column,
.m-concessionaires.m-concessionaires--full-map .m-concessionaires-info {
  display: none;
}

.m-concessionaires.m-concessionaires--full-map .m-concessionaires-message {
  display: block;
}

.m-concessionaires-message {
  background: transparent;
  display: none;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 2;
}

.m-concessionaires-message .m-concessionaires-message__content {
  color: #3f3f3f;
  margin: 0;
  padding: 15px;
  text-align: center;
}

.m-concessionaires__map {
  height: 250px;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires__map {
    height: 555px;
  }
}

.m-concessionaires-column {
  background-color: #fff;
  position: relative;
  z-index: 10;
  height: auto;
  overflow-y: auto;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires-column {
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
    margin-left: -340px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 340px;
  }

  .m-concessionaires__list {
    height: 100%;
  }
}

.m-concessionaires-column p {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 4px;
}

.m-concessionaires__searchbox {
  background-color: #f4f4f4;
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 30px 30px 35px;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires__searchbox {
    display: block;
  }
}

.m-concessionaires__searchbox .m-concessionaires__searchbox-title {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/concessionaires-icon-marker.png) top left no-repeat;
  color: #333;
  height: 36px;
  line-height: 36px;
  margin: 0 auto;
  padding-left: 45px;
  width: 280px;
  font-size: 16px;
}

.m-concessionaires__searchbox select {
  font-size: 11px;
  width: 100%;
}

.m-concessionaires__searchbox .select2-container {
  width: 100% !important;
  padding: 0;
}

.m-concessionaires__options {
  width: 100%;
  min-height: 30px;
}

.m-concessionaires__options__option {
  width: 50%;
  max-width: 50%;
  float: left;
  margin: 0;
  padding: 7px 0 0;
  outline: 0;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
}

.m-concessionaires__options__option button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

.m-concessionaires__options__option i,
.m-concessionaires__options__option span {
  vertical-align: top;
}

.m-concessionaires__options__option__icon {
  display: inline-block;
  width: 14px;
  height: 15px;
  margin: 0 3px 0 0;
}

.m-concessionaires__options__option__icon--dist {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/concessionaire-data-distribuidora.png) center center no-repeat;
}

.m-concessionaires__options__option__icon--work {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/concessionaire-data-taller.png) center center no-repeat;
}

.m-column__wrapper {
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .m-column__wrapper.m-column__wrapper--show-info {
    width: 260px;
  }
}

/**
 *  Concessionarie header
 */
.m-column-title {
  font-size: 13px;
  line-height: 14px;
  padding: 0 0 10px 0;
  text-transform: capitalize;
}

@media only screen and (min-width: 48em) {
  .m-column-title {
    border-bottom: 1px solid #dfdfdf;
    margin: 20px 0;
    text-transform: uppercase;
  }
}

.m-column-title .m-column-title__text {
  font-size: 16px;
  font-weight: 900;
  min-height: 20px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.m-column-title .m-column-title__text span {
  display: block;
}

.m-column-title .fa {
  font-size: 1.2em;
  position: absolute;
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-column-title .fa {
    display: block;
  }

  .m-column-title .fa+span {
    margin-left: 30px;
  }
}

.m-column__subsection {
  font-size: 13px;
  line-height: 14px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 48em) {
  .m-column__subsection.m-column__subsection--with-fa-icon {
    padding: 0 0 0 30px;
  }
}

.m-column__subsection.m-comlumn__subsection--footer-subsection {
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-column__subsection.m-comlumn__subsection--footer-subsection {
    display: none;
  }
}

.m-column__subsection.m-comlumn__subsection--footer-subsection .waze-icon {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/waze-footer-logo.png) center center no-repeat;
  background-size: 55px 15px;
  display: block;
  margin: auto;
  height: 15px;
}

.m-column__subsection-name {
  display: none;
  font-weight: 900;
  line-height: 16px;
  margin-bottom: 5px;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .m-column__subsection-name {
    display: block;
  }
}

.m-column__subsection-name.m-column__subsection-name--as-td-button {
  color: #fff;
  border-bottom: 0;
  background: #d72f33;
  display: block;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
}

@media only screen and (min-width: 48em) {
  .m-column__subsection-name.m-column__subsection-name--as-td-button {
    color: #d72f33;
    background: none;
    display: block;
    text-align: left;
  }
}

.m-column__subsection-name.m-column__subsection-name--as-td-button .fa {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-column__subsection-name.m-column__subsection-name--as-td-button .fa {
    display: block;
  }
}

.m-column__subsection--with-fa-icon .m-column__subsection-name .fa {
  font-size: 1.2em;
  position: absolute;
  left: -30px;
}

/**
 *  Concessionarie lists
 */
.m-concessionaires__list {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires__list {
    overflow-y: scroll;
    height: calc(100% - 180px) !important;
  }
}


.m-concessionaires__list .m-concessionaires__list-separtor {
  background-color: #e1e1e1;
  color: #333;
  display: none;
  font-size: 13px;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  padding: 0 20px;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires__list .m-concessionaires__list-separtor {
    display: block;
  }
}

.m-concessionaires__list .m-concessionaires__list-item {
  clear: both;
  cursor: pointer;
  border-bottom: 1px solid #e1e1e1;
  margin: 0;
  padding: 15px 10px;
  position: relative;
}

.m-concessionaires__list .m-concessionaires__list-item .m-concessionaires__list-item-arrow {
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 2em;
  height: 32px;
  margin: auto;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires__list .m-concessionaires__list-item.m-concessionaires__list-item--active {
    background: #c7effe;
  }

  .m-concessionaires__list .m-concessionaires__list-item.m-concessionaires__list-item--active .m-concessionaires__list-item-arrow {
    display: block;
  }
}

.m-concessionaires__list .m-concessionaires__list-item--0 .m-concessionaires__list-item-icon {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/concessionaire-data-distribuidora.png) center center no-repeat;
  background-color: white;
  border-radius: 100px;
}

.m-concessionaires__list .m-concessionaires__list-item--1 .m-concessionaires__list-item-icon {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/concessionaire-data-taller.png) center center no-repeat;
  background-color: white;
  border-radius: 100px;
}

.m-concessionaires__list .m-concessionaires__list-item-image {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires__list .m-concessionaires__list-item-image {
    position: relative;
    display: block;
  }
}

.m-concessionaires__list .m-concessionaires__list-item-image img {
  border: 3px solid #ededed;
  height: auto;
  max-height: 100%;
  width: 100%;
}

.m-concessionaires__list .m-concessionaires__list-item-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 7px;
  right: 5px;
}

.m-concessionaires__list .m-concessionaires__list-item-address {
  font-size: 11px;
  padding: 0 18px;
}

.m-concessionaires__list .m-concessionaires__list-item-address .m-concessionaires__list-item-address__title {
  font-size: 1.17em;
  font-weight: 900;
  margin: 0 0 5px;
}

/**
 *  Column info
 */
.m-concessionaires-info {
  background-color: #fff;
  display: none;
  padding: 10px 15px;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires-info {
    bottom: 0;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 340px;
    overflow-y: auto;
    width: 340px;
    z-index: 9;
  }
}

.m-concessionaires-info__content-data {
  margin-bottom: 20px;
  padding-left: 90px;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires-info__content-data {
    padding-left: 0;
  }
}

.m-concessionaires-info__content-data .m-column__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
}

.m-concessionaires-info__content-data .m-column__img img {
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires-info__content-data .m-column__img {
    position: relative;
    width: 100%;
  }
}

.m-concessionaires--info-opened .m-concessionaires-column {
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires--info-opened .m-concessionaires-column {
    display: block;
  }
}

.m-concessionaires--info-opened .m-concessionaires-info {
  display: block;
}

/**
 *  Concessionarie close button
 */
.m-close-button .m-close-button__button {
  background: #005aab;
  display: inline-block;
  font-size: 24px;
  font-weight: lighter;
  height: 30px;
  text-align: center;
  text-decoration: none;
  width: 30px;
}

.m-close-button .m-close-button__button span {
  color: #fff;
  line-height: 30px;
  vertical-align: middle;
}

.m-close-button .m-close-button__button:hover {
  color: #fff;
  text-decoration: none;
}

.m-close-button.m-close-button--in-info {
  text-align: right;
  display: none;
}

@media only screen and (min-width: 48em) {
  .m-close-button.m-close-button--in-info {
    display: block;
  }
}

/**
 *  Marker infobox
 */
.m-marker-infobox {
  margin: 0 0 0 53px;
  width: 250px;
}

.m-marker-infobox span {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/marker-active-text-bg.png) right top no-repeat;
  color: #fff;
  display: inline-table;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  padding: 13px 20px 6px 0;
}

/**
 *  Concessionarie geolocation message
 */
@media only screen and (min-width: 48em) {
  .m-concessionaires--geolocation-message-fixed.m-concessionaires--geolocation-is-allowed {
    margin-top: 0;
  }
}

.m-concessionaires-geolocation-button {
  background: #003d89;
  color: #fff;
  display: none;
  font-weight: lighter;
  font-size: 14px;
  padding: 12px 20px;
  position: absolute;
  text-decoration: none;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.m-concessionaires--geolocation-message-closed .m-concessionaires-geolocation-button {
  display: block;
}

.m-concessionaires-geolocation-message {
  background: #003d89;
  color: #fff;
  font-size: 14px;
  padding: 15px 0 15px 30px;
  position: relative;
  left: 0;
  right: 0;
  margin-top: 0;
  z-index: 49;
}

@media only screen and (min-width: 48em) {
  .m-concessionaires-geolocation-message.m-concessionaires-geolocation-message--fixed {
    position: fixed;
  }
}

.m-concessionaires-geolocation-message__mesage {
  font-weight: lighter;
  letter-spacing: 0.5px;
  line-height: 1.3;
  width: 80%;
}

.m-concessionaires-geolocation-message__pin {
  background: url(https://motoresmarinos.suzuki.com.mx//img/concessionaires/icon-pin.png) center center no-repeat;
  display: inline-block;
  height: 12px;
  width: 12px;
}

.m-concessionaires-geolocation-message__link {
  color: #fff;
}

.m-concessionaires-geolocation-message__close {
  color: #fff;
  position: absolute;
  right: 15px;
  font-size: 28px;
  text-decoration: none;
  top: 50%;
  font-weight: lighter;
  transform: translateY(-50%);
}

@media only screen and (min-width: 48em) {
  .m-concessionaires-geolocation-message__close {
    font-size: 32px;
  }
}

.m-other {
  background: #fff;
  /*background: linear-gradient(to bottom, #d3d3d3 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d3d3', endColorstr='#ffffff', GradientType=0);*/
}

.m-other__separator {
  margin-top: 0;
  margin-bottom: 50px;
  border-color: #979797;
  border-width: 2px;
  opacity: 0.6;
}

@media only screen and (min-width: 48em) {
  .m-other__separator {
    margin-top: 95px;
    margin-bottom: 87px;
  }
}

.m-other__separator--small {
  margin-bottom: 36px;
}

@media only screen and (min-width: 48em) {
  .m-other__separator--small {
    margin-bottom: 50px;
  }
}

.m-other__advice {
  font-size: 12px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 56px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}

@media only screen and (min-width: 48em) {
  .m-other__advice {
    line-height: 1.1;
    margin-bottom: 108px;
    padding: 0 60px;
    line-height: 1.6;
  }
}

.m-other-banner {
  width: 100%;
  min-height: 460px;
  background-color: black;
  background-image: url(https://motoresmarinos.suzuki.com.mx//img//other_products/bg_other_banner.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 130px 20px 130px;
}

@media only screen and (min-width: 48em) {
  .m-other-banner {
    min-height: 400px;
    padding: 130px 0 140px;
    margin-bottom: 90px;
    background-position: center center;
  }
}

.m-other-banner__title {
  padding: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
  margin-bottom: 22px;
}

@media only screen and (min-width: 48em) {
  .m-other-banner__title {
    padding: 0;
    margin-bottom: 4px;
    font-size: 60px;
  }
}

.m-other-banner__subtitle {
  display: block;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-other-banner__subtitle {
    line-height: 1.3;
    max-width: 470px;
    padding: 0;
  }
}

.m-other-product {
  max-width: 252px;
  margin: 0 auto 40px;
}

@media only screen and (min-width: 48em) {
  .m-other-product {
    margin: 0;
    max-width: none;
  }
}

.m-other-product__title {
  font-size: 18px;
  color: #000;
  padding-bottom: 20px;
  padding-right: 50px;
  line-height: 1.2;
}

@media only screen and (min-width: 48em) {
  .m-other-product__title {
    font-size: 23px;
    min-height: 101px;
  }
}

@media only screen and (min-width: 64em) {
  .m-other-product__title {
    min-height: 85px;
  }
}

.m-other-product__title--big {
  font-size: 24px;
}

@media only screen and (min-width: 48em) {
  .m-other-product__title--big {
    font-size: 23px;
    min-height: 85px;
  }
}

.m-other-product__button {
  position: relative;
  display: block;
  width: 175px;
  height: 49px;
  padding-top: 17px;
  background-color: #004eb0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
}

.m-other-product__button i {
  top: 1px;
  margin-left: 11px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

@media only screen and (min-width: 48em) {
  .m-other-product__button {
    max-width: 130px;
  }

  .m-other-product__button i {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 64em) {
  .m-other-product__button {
    max-width: 180px;
  }

  .m-other-product__button i {
    margin-left: 11px;
  }
}

ul.m-other-product__description {
  margin-bottom: 20px;
}

@media only screen and (min-width: 48em) {
  ul.m-other-product__description {
    min-height: 180px;
  }
}

li.m-other-product__description__element {
  font-size: 14px;
  color: #000;
  padding-right: 20px;
  margin-bottom: 6px;
  line-height: 1.2;
}

@media only screen and (min-width: 48em) {
  li.m-other-product__description__element {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.m-other-product__picture-container {
  text-align: center;
  position: relative;
  max-width: 112px;
  margin: 20px 0 31px;
}

@media only screen and (min-width: 48em) {
  .m-other-product__picture-container {
    max-width: 140px;
    margin: 20px 0 52px 50px;
  }
}

@media only screen and (min-width: 64em) {
  .m-other-product__picture-container {
    max-width: 160px;
  }
}

.m-other-product__picture-container--small {
  width: 100%;
  max-width: 180px;
  display: block;
  margin: 0;
  margin-bottom: 30px;
}

@media only screen and (min-width: 48em) {
  .m-other-product__picture-container--small {
    max-width: 150px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 64em) {
  .m-other-product__picture-container--small {
    max-width: 180px;
    margin: 0;
  }
}

img.m-other-product__picture-container__image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}

.m-other-title {
  margin-top: 40px;
  text-align: center;
}

.m-other-title__name {
  margin-bottom: 20px;
  font-size: 45px;
  color: #4a4a4a;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-other-title__name {
    font-size: 60px;
  }
}

.m-other-title__separator {
  display: block;
  margin: 0 auto 23px;
  width: 55px;
  height: 2px;
  border-color: #004eb0;
  border-width: 2px;
  opacity: 0.4;
}

.m-other-title__description {
  padding: 0 0 44px;
  font-size: 18px;
  line-height: 1.4;
  color: #4a4a4a;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .m-other-title__description {
    max-width: 750px;
    margin: 0 auto;
  }
}

/**
 *  Page not found
 */
.m-page-not-found {
  margin: 40px 15px 50px;
  height: 194px;
}

@media only screen and (min-width: 48em) {
  .m-page-not-found {
    margin: 75px 25px 125px;
  }
}

.m-page-not-found__404 {
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .m-page-not-found__404 {
    text-align: left;
  }
}

.m-page-not-found__paragraph {
  line-height: 20px;
  margin: 0 0 30px;
  color: #3f3f3f;
}

/* non-modular */
/**
 *  Contact Header
 */
.contact-header {
  position: relative;
  width: 100%;
  z-index: 1;
  min-height: 100px;
}

@media only screen and (min-width: 48em) {

  .contact-header,
  .join-distributor-header {
    min-height: 200px;
    background-image: url(https://motoresmarinos.suzuki.com.mx//img/contacto/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .join-distributor-header {
    background-image: url(https://cdn.marciano.space/suzuki-motores-marinos/home/contact/smm-joinasdistributor-header.webp);
  }
}

.contact-header__text {
  display: block;
  min-height: auto;
  z-index: 10;
  margin-top: 20px;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .contact-header__text {
    margin-top: 130px;
    text-align: left;
    color: white;
  }
}

.contact-header__title {
  font-size: 24px;
  font-weight: 300;
  line-height: 0.8;
  margin: 0.67em 0;
}

.contact-header__subtitle {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-weight: 200;
}

/**
 *  Contact Social Info
 */
.contact_social {
  position: relative;
  background-color: #f7f7f7;
  padding: 1rem;
}

@media only screen and (min-width: 48em) {
  .contact_social {
    top: -30px;
    padding-top: 30px;
  }
}

.contact_social__title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 10px;
}

.contact_social__text {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 10px;
}

.contact_social__social-list li {
  margin-bottom: 10px;
}

.contact_social__social-list__link {
  text-decoration: none;
  color: #003f87;
}

.contact_social__social-list__link:visited {
  color: #003f87;
}

.contact_social__social-list__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: #003f87;
  font-size: 22px;
  text-align: center;
  padding-right: 2px;
}

.contact_social__social-list__label {
  display: inline-block;
  color: #003f87;
  font-size: 14px;
  cursor: pointer;
}

/**
 *  Contact Callback
 */
.contact-callback {
  margin-bottom: 60px;
  width: 100%;
  display: none;
  min-height: 400px;
}

.contact-callback__title {
  font-size: 25px;
  font-weight: 400;
  color: #003f87;
  text-align: center;
  margin: 10px 0;
  display: block;
}

.contact-callback__paragraph {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
  display: block;
}

.contact-callback__paragraph--italic {
  font-style: italic;
}

.contact-callback__divider {
  text-align: center;
  border-color: #dfdfdf;
  width: 90%;
}

.contact-callback__arrow {
  position: relative;
  top: 2px;
  right: -11px;
  float: right;
  z-index: 4;
  display: none;
}

@media only screen and (min-width: 48em) {
  .contact-callback__arrow {
    display: block;
  }
}

.decline-statement {
  margin: 20px 0;
  padding: 20px;
  border: solid 1px #ccc;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.3;
  text-align: justify;
}

.decline-statement__label-group {
  display: block;
  min-height: 40px;
  margin: 20px 0;
  text-align: left;
  clear: both;
}

@media only screen and (min-width: 48em) {
  .decline-statement__label-group {
    min-height: 20px;
    margin: 10px 0;
  }
}

.decline-statement__label-group_label {
  display: block;
  padding-right: 10px;
}

@media only screen and (min-width: 48em) {
  .decline-statement__label-group_label {
    text-align: right;
    width: 16%;
    display: inline-block;
    float: left;
  }
}

.decline-statement__label-group_underline {
  display: block;
  width: 90%;
  min-height: 30px;
  border-bottom: 1px solid #000;
}

@media only screen and (min-width: 48em) {
  .decline-statement__label-group_underline {
    min-height: 20px;
    width: 80%;
    display: inline-block;
    float: left;
  }
}

.n-reasons {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

.n-reasons .n-reasons__container {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons__container {
    margin: 0 auto;
    max-width: 1440px;
  }
}

.n-reasons .n-reasons__link {
  border: 2px solid #fff;
  border-radius: 100%;
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 24px;
  height: 24px;
  bottom: 30px;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons__link {
    width: 48px;
    height: 48px;
    bottom: 40px;
  }
}

.n-reasons .n-reasons__link::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  z-index: 1;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: rotate(45deg) translate(-85%, -20%);
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons__link::after {
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translate(-90%, -25%);
  }
}

.n-reasons .n-reasons__dots {
  position: fixed;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: none;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons__dots {
    right: 10px;
    display: block;
  }
}

@media (min-width: 1440px) {
  .n-reasons .n-reasons__dots {
    right: 50%;
    transform: translate(700px, -50%);
  }
}

.n-reasons .n-reasons__dots li {
  border: 2px solid #fff;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  height: 15px;
  margin-bottom: 5px;
  width: 15px;
}

.n-reasons .n-reasons__dots li:hover,
.n-reasons .n-reasons__dots li.active {
  background: #fff;
}

.n-reasons .n-reasons-slide__content-number {
  border-bottom: 1px solid #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 7px;
  margin-bottom: 14px;
  width: 28px;
}

.n-reasons .n-reasons-slide__content-number.n-reasons-slide__content-number--gray {
  border-color: #4a4a4a;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons-slide__content-number {
    border-width: 2px;
    font-size: 20px;
    margin-bottom: 54px;
    padding-bottom: 10px;
  }
}

.n-reasons .n-reasons-slide__title {
  color: inherit;
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons-slide__title {
    font-size: 60px;
    letter-spacing: 1.8px;
    margin-bottom: 34px;
  }
}

.n-reasons .n-reasons-slide__title.n-reasons-slide__title--in-title {
  color: inherit;
  font-family: "SuzukiPRO", sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin: 0 auto 20px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons-slide__title.n-reasons-slide__title--in-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 95%;
  }
}

.n-reasons .n-reasons-slide__title .n-reasons-slide__title-variant {
  display: block;
  font-family: "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-bottom: 7px;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons-slide__title .n-reasons-slide__title-variant {
    font-size: 40px;
    margin-bottom: 12px;
  }
}

.n-reasons .n-reasons-slide__paragraph {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.n-reasons .n-reasons-slide__paragraph.n-reasons-slide__paragraph--in-title {
  font-family: "SuzukiPRO", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
  max-width: 97%;
  text-align: center;
}

.n-reasons .n-reasons-slide__paragraph.n-reasons-slide__paragraph--bold {
  font-weight: 600;
}

@media only screen and (min-width: 48em) {
  .n-reasons .n-reasons-slide__paragraph {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
  }
}

.n-reasons__slide {
  padding: 0 20px;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide {
    padding: 0;
  }
}

.n-reasons__slide.n-reasons__slide--overlay::before {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.n-reasons__slide .l-wrapper,
.n-reasons__slide .l-wrapper--padded,
.n-reasons__slide .l-wrapper--air_m {
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 48em) {

  .n-reasons__slide .l-wrapper,
  .n-reasons__slide .l-wrapper--padded,
  .n-reasons__slide .l-wrapper--air_m {
    padding: 0 40px;
  }
}

@media only screen and (min-width: 64em) {

  .n-reasons__slide .l-wrapper,
  .n-reasons__slide .l-wrapper--padded,
  .n-reasons__slide .l-wrapper--air_m {
    padding: 0 10px;
  }
}

@media only screen and (min-width: 80em) {

  .n-reasons__slide .l-wrapper,
  .n-reasons__slide .l-wrapper--padded,
  .n-reasons__slide .l-wrapper--air_m {
    padding: 0;
  }
}

.n-reasons__slide .n-reasons-slide__content {
  position: relative;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide .n-reasons-slide__content {
    height: 680px;
  }
}

.n-reasons__slide .n-reasons-slide__text {
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide .n-reasons-slide__text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.n-reasons__slide .n-reasons__slide-img-container {
  position: relative;
}

.n-reasons__slide .n-reasons__slide-img-container img {
  display: block;
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide .n-reasons__slide-img-container {
    height: 680px;
  }
}

.n-reasons__slide.n-reasons__slide--title {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/mobile/title-bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding-bottom: 197px;
  padding-top: 133px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--title {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/title-bg.png") no-repeat center center;
    padding: 0;
  }
}

.n-reasons__slide.n-reasons__slide--01 {
  background: #dbdadf;
  background-image: linear-gradient(to bottom, #dbdadf, #bebbc2);
  color: #4a4a4a;
  padding-bottom: 37px;
  padding-top: 24px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--01 {
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--01 .n-reasons-slide__text {
    text-align: right;
  }
}

.n-reasons__slide.n-reasons__slide--01 .n-reasons-slide__title--indented {
  display: block;
  text-indent: 15px;
  letter-spacing: 0.5px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--01 .n-reasons-slide__title--indented {
    letter-spacing: 1px;
    text-indent: 0;
  }
}

.n-reasons__slide.n-reasons__slide--01 .n-reasons-slide__paragraph {
  max-width: 90%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--01 .n-reasons-slide__paragraph {
    float: right;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--01 .n-reasons__slide-img-container {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 680px;
    width: 100%;
  }

  .n-reasons__slide.n-reasons__slide--01 .n-reasons__slide-img-container img {
    height: auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

.n-reasons__slide.n-reasons__slide--02 {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/mobile/02-bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding-bottom: 31px;
  padding-top: 212px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--02 {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/02-bg.png") no-repeat center center;
    background-size: cover;
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--02 .n-reasons-slide__title {
    font-weight: 300;
  }
}

.n-reasons__slide.n-reasons__slide--02 .n-reasons-slide__paragraph {
  font-weight: 600;
  max-width: 85%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--02 .n-reasons-slide__paragraph {
    max-width: 100%;
  }
}

.n-reasons__slide.n-reasons__slide--03 {
  background: #9f041b;
  background-image: linear-gradient(to bottom, #f5515f, #9f041b);
  color: #fff;
  padding-bottom: 0px;
  padding-top: 40px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--03 {
    padding: 0;
  }
}

.n-reasons__slide.n-reasons__slide--03 .n-reasons-slide__text {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/mobile/japan.png") no-repeat center center;
  text-align: center;
  margin-bottom: 36px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--03 .n-reasons-slide__text {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/japan.png") no-repeat right center;
    text-align: right;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--03 .n-reasons-slide__title {
    font-weight: 300;
  }
}

.n-reasons__slide.n-reasons__slide--03 .n-reasons-slide__paragraph {
  max-width: 80%;
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--03 .n-reasons-slide__paragraph {
    max-width: 95%;
    float: right;
  }
}

@media only screen and (min-width: 64em) {
  .n-reasons__slide.n-reasons__slide--03 .n-reasons-slide__paragraph {
    max-width: 85%;
  }
}

.n-reasons__slide.n-reasons__slide--03 .n-reasons__slide-img-container {
  height: 248px;
}

.n-reasons__slide.n-reasons__slide--03 .n-reasons__slide-img-container img {
  height: 100%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--03 .n-reasons__slide-img-container {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 680px;
    width: 100%;
  }

  .n-reasons__slide.n-reasons__slide--03 .n-reasons__slide-img-container img {
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.n-reasons__slide.n-reasons__slide--04 {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/mobile/04-bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding-bottom: 31px;
  padding-top: 220px;
  text-align: right;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--04 {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/04-bg.png") no-repeat center center;
    background-size: cover;
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--04 .n-reasons-slide__paragraph {
    max-width: 50%;
    float: right;
  }
}

.n-reasons__slide.n-reasons__slide--05 {
  background: #004a99;
  background-image: linear-gradient(to top, #004a99, #004a99 44%, #008bcb);
  color: #fff;
  padding-bottom: 31px;
  padding-top: 0;
  text-align: left;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--05 {
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--05 .n-reasons-slide__title {
    font-weight: 300;
  }
}

.n-reasons__slide.n-reasons__slide--05 .n-reasons-slide__paragraph {
  max-width: 85%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--05 .n-reasons-slide__paragraph {
    max-width: 100%;
  }
}

.n-reasons__slide.n-reasons__slide--05 .n-reasons__slide-img-container {
  height: 246px;
  margin-bottom: 10px;
}

.n-reasons__slide.n-reasons__slide--05 .n-reasons__slide-img-container img {
  height: 100%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--05 .n-reasons__slide-img-container {
    height: auto;
    margin-bottom: 0;
  }
}

.n-reasons__slide.n-reasons__slide--06 {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/06-bg.png") no-repeat left center;
  background-size: cover;
  color: #fff;
  padding-bottom: 34px;
  padding-top: 216px;
  text-align: right;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--06 {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/06-bg.png") no-repeat center center;
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--06 .n-reasons-slide__title {
    font-weight: 300;
  }
}

.n-reasons__slide.n-reasons__slide--06 .n-reasons-slide__paragraph {
  float: right;
  max-width: 95%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--06 .n-reasons-slide__paragraph {
    max-width: 80%;
  }
}

.n-reasons__slide.n-reasons__slide--07 {
  background: #404040;
  background-image: linear-gradient(to top, #404040, #000000);
  color: #fff;
  padding-bottom: 0;
  padding-top: 43px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--07 {
    padding: 0;
  }
}

.n-reasons__slide.n-reasons__slide--07 .n-reasons-slide__text {
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--07 .n-reasons-slide__text {
    margin-bottom: 0;
    text-align: right;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--07 .n-reasons-slide__title {
    font-weight: 300;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--07 .n-reasons-slide__title-variant {
    font-size: 60px;
  }
}

.n-reasons__slide.n-reasons__slide--07 .n-reasons-slide__paragraph {
  margin: 0 auto;
  max-width: 74%;
  margin-bottom: 26px;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--07 .n-reasons-slide__paragraph {
    float: right;
    margin-bottom: 33px;
    max-width: 80%;
  }
}

.n-reasons__slide.n-reasons__slide--07 .n-reasons__slide-img-container {
  height: 240px;
}

.n-reasons__slide.n-reasons__slide--07 .n-reasons__slide-img-container img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--07 .n-reasons__slide-img-container {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 680px;
    width: 100%;
  }

  .n-reasons__slide.n-reasons__slide--07 .n-reasons__slide-img-container img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
}

.n-reasons__slide.n-reasons__slide--08 {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/mobile/08-bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding-bottom: 31px;
  padding-top: 256px;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--08 {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/08-bg.png") no-repeat center center;
    background-size: cover;
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--08 .n-reasons-slide__paragraph {
    margin: 0 auto;
    max-width: 405px;
  }
}

.n-reasons__slide.n-reasons__slide--09 {
  background-color: #b6b6b8;
  background-image: linear-gradient(to right,
      rgba(182, 182, 184, 0.1),
      #b6b6b8);
  color: #4a4a4a;
  padding-bottom: 32px;
  padding-top: 49px;
  text-align: right;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--09 {
    padding: 0;
  }
}

.n-reasons__slide.n-reasons__slide--09 .n-reasons-slide__paragraph {
  float: right;
  max-width: 80%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--09 .n-reasons-slide__paragraph {
    margin: 0 auto;
    max-width: 530px;
  }
}

.n-reasons__slide.n-reasons__slide--09 .n-reasons__slide-img-container {
  height: 240px;
  margin-bottom: 51px;
}

.n-reasons__slide.n-reasons__slide--09 .n-reasons__slide-img-container img {
  display: block;
  margin: 0 auto;
  width: auto;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--09 .n-reasons__slide-img-container {
    position: absolute;
    margin-bottom: 0;
    bottom: 0;
    top: 0;
    height: 680px;
    width: 100%;
  }

  .n-reasons__slide.n-reasons__slide--09 .n-reasons__slide-img-container img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
}

.n-reasons__slide.n-reasons__slide--10 {
  background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/mobile/10-bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding-bottom: 34px;
  padding-top: 118px;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--10 {
    background: url("https://motoresmarinos.suzuki.com.mx//img//10reasons/desktop/10-bg.png") no-repeat center center;
    background-size: cover;
    padding: 0;
  }
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--10 .n-reasons-slide__title {
    font-weight: 400;
  }
}

.n-reasons__slide.n-reasons__slide--10 .n-reasons-slide__paragraph {
  letter-spacing: 0.5px;
  margin: 0 auto;
  max-width: 85%;
}

@media only screen and (min-width: 48em) {
  .n-reasons__slide.n-reasons__slide--10 .n-reasons-slide__paragraph {
    max-width: 570px;
  }
}

@media only screen and (min-width: 48em) {
  .n-dealers {
    margin: 0 auto;
    max-width: 1440px;
  }
}

.n-dealers .m-other-banner {
  background-image: url("https://motoresmarinos.suzuki.com.mx//img//dealers/bg-mobile.png");
  margin-bottom: 0;
}

@media only screen and (min-width: 48em) {
  .n-dealers .m-other-banner {
    background-image: url("https://motoresmarinos.suzuki.com.mx//img//dealers/bg-desktop.png");
  }
}

/**
 * This is a hack to hide an annoying border
 * that only appears on Firefox
 */
@media only screen and (min-width: 48em) {
  body:not(:-moz-handler-blocked) .n-dealers .m-other-banner {
    height: 450px;
    position: relative;
    z-index: 2;
  }

  body:not(:-moz-handler-blocked) .n-dealers-container {
    margin-top: -4px;
    position: relative;
    z-index: 1;
  }
}

.n-dealers__item {
  color: #4a4a4a;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .n-dealers__item {
    min-height: 480px;
  }

  .n-dealers__item.n-dealers__item--left .n-dealers__item-image-container {
    position: absolute;
  }

  .n-dealers__item.n-dealers__item--left .n-dealers__item-content {
    left: 50%;
  }

  .n-dealers__item.n-dealers__item--right .n-dealers__item-image-container {
    position: absolute;
    left: 50%;
  }
}

.n-dealers__item .n-dealers__item-image-container {
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-color: #fff;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 48em) {
  .n-dealers__item .n-dealers__item-image-container {
    min-height: 480px;
    height: 100%;
    display: inline-block;
    width: 50%;
  }
}

.n-dealers__item .n-dealers__item-image-container .n-dealers__item-image {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 105px;
}

@media only screen and (min-width: 48em) {
  .n-dealers__item .n-dealers__item-image-container .n-dealers__item-image {
    width: auto;
  }
}

.n-dealers__item .n-dealers__item-content {
  padding: 30px 38px;
}

@media only screen and (min-width: 48em) {
  .n-dealers__item .n-dealers__item-content {
    position: relative;
    display: inline-block;
    height: 100%;
    min-height: 480px;
    width: 50%;
  }

  .n-dealers__item .n-dealers__item-content .n-dealers__item-content-center {
    margin: 66px auto 72px;
    position: relative;
    width: 100%;
  }
}

@media only screen and (min-width: 64em) {
  .n-dealers__item .n-dealers__item-content .n-dealers__item-content-center {
    width: 90%;
  }
}

@media only screen and (min-width: 80em) {
  .n-dealers__item .n-dealers__item-content .n-dealers__item-content-center {
    width: 80%;
  }
}

.n-dealers__item .n-dealers__item-title {
  color: #4a4a4a;
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

@media only screen and (min-width: 48em) {
  .n-dealers__item .n-dealers__item-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 64em) {
  .n-dealers__item .n-dealers__item-title {
    font-size: 36px;
  }
}

.n-dealers__item .n-dealers__item-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 116px;
}

@media only screen and (min-width: 48em) {
  .n-dealers__item .n-dealers__item-text {
    font-size: 16px;
    margin-bottom: 33px;
  }
}

@media only screen and (min-width: 64em) {
  .n-dealers__item .n-dealers__item-text {
    font-size: 18px;
  }
}

.n-dealers__item .n-dealers__item-text p {
  margin-bottom: 20px;
}

.n-dealers__item .n-dealers__item-text p:last-child {
  margin-bottom: 0;
}

.n-dealers__item .n-dealers__item-button {
  background: #004eb0;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  width: 175px;
  margin-bottom: 60px;
}

.n-dealers__item .n-dealers__item-button .fa-angle-right {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
  margin-bottom: 0;
}

.n-spare-parts {
  padding-bottom: 20px;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts {
    padding-bottom: 0;
  }
}

.n-spare-parts .n-spare-parts__container {
  min-height: 260px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__container {
    min-height: 600px;
    height: 100%;
  }
}

.n-spare-parts .n-spare-parts__background {
  background: url("https://motoresmarinos.suzuki.com.mx//img//refreshment.png") no-repeat center center;
  background-size: cover;
  height: 100%;
  min-height: 260px;
  position: relative;
  width: 100%;
}

.n-spare-parts .n-spare-parts__background .n-spare-parts__title {
  display: block;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__background {
    min-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

  .n-spare-parts .n-spare-parts__background .n-spare-parts__title {
    display: none;
  }
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__content {
    height: 100%;
    left: 50%;
    position: absolute;
    width: 50%;
  }
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__content .n-spare-parts__content-center {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.n-spare-parts .n-spare-parts__title {
  color: #ffffff;
  display: none;
  font-size: 23px;
  font-weight: 400;
  margin: 0 auto 50px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__title {
    display: block;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
    top: 0;
    right: 0;
    transform: none;
  }
}

.n-spare-parts .n-spare-parts__model-selected {
  color: #3f3f3c;
  font-size: 14px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__model-selected {
    color: #fff;
    font-size: 16px;
  }
}

.n-spare-parts .n-spare-parts__select-container {
  margin: 20px auto 0;
  width: 90%;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__select-container {
    width: 300px;
  }
}

.n-spare-parts .n-spare-parts__select {
  margin: 0 auto 30px;
  width: 100%;
}

.n-spare-parts .n-spare-parts__select+.select2-container {
  display: block;
  margin: 0 auto 30px;
  width: 100% !important;
}

.n-spare-parts .n-spare-parts__button {
  background: #004eaa;
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__button {
    padding: 20px 0;
  }
}

.n-spare-parts .n-spare-parts__footer {
  width: 90%;
  font-size: 11px;
  margin: 0 auto;
  line-height: 20px;
  padding: 20px 0 0;
  max-width: 1440px;
}

@media only screen and (min-width: 48em) {
  .n-spare-parts .n-spare-parts__footer {
    background: #fff;
    bottom: 0;
    padding: 15px 20px;
    position: absolute;
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .n-spare-parts .n-spare-parts__footer {
    padding: 15px 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.m-ajax-fade {
  position: relative;
  z-index: -1;
  max-height: 0;
  overflow: hidden;
  transition: all ease 0.6s;
  opacity: 0;
}

.m-ajax-fade.isVisible {
  opacity: 1;
  z-index: 1;
  max-height: 1000px;
  transition: max-height ease 0.5s 0s, opacity ease 0.35s 0.25s;
}

.m-ajax-message {
  display: none;
  width: 100%;
  background-color: #2196f3;
  text-align: center;
  padding: 16px 0;
  color: #fff;
  margin-bottom: 20px;
  transition: all linear 0.2s;
}

.m-ajax-message--success {
  background-color: #388e3c;
}

.m-ajax-message--error {
  background-color: #e23136;
}

.m-ajax-message.isVisible {
  display: block;
}

em.m-recall--emphasis {
  color: #9f9f9f;
}

.m-recall-dealers td {
  background-color: #f2f2f2;
  padding: 17px 15px;
  border-bottom: solid 5px white;
}

.m-recall-dealers .container {
  max-width: 500px;
}

.m-recall-dealers p.title {
  display: block;
  font-weight: 600;
  padding-bottom: 5px;
  font-size: 14px;
  color: #3f3f3f;
  letter-spacing: 0.2px;
}

.m-recall-dealers p.info {
  display: block;
  font-size: 14px;
  color: #3f3f3f;
  letter-spacing: 0px;
  line-height: 21px;
}

.m-recall-dealers span.phone {
  color: #0050ad;
  font-style: italic;
  font-weight: 600;
}

/* libs */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick", sans-serif;
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-top: -10px\9;
  /*lte IE 8*/
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url(https://motoresmarinos.suzuki.com.mx//img/general/fancybox_sprite.png);
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url(https://motoresmarinos.suzuki.com.mx//img/general/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 17px;
  height: 18px;
  cursor: pointer;
  z-index: 8040;
  background: url(https://motoresmarinos.suzuki.com.mx//img/general/fancybox-close.png) center center no-repeat;
}

@media only screen and (min-width: 48em) {
  .fancybox-close {
    width: 27px;
    height: 28px;
  }
}

.fancybox-nav {
  position: fixed;
  top: 50%;
  width: 26px;
  height: 40px;
  margin-top: -20px;
  cursor: pointer;
  text-decoration: none;
  background: transparent url(https://motoresmarinos.suzuki.com.mx//img/general/blank.gif);
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 5%;
}

.fancybox-next {
  right: 5%;
}

.fancybox-nav span {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 40px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-prev span {
  background: url(https://motoresmarinos.suzuki.com.mx//img/general/fancybox-prev.png) center center no-repeat;
}

.fancybox-next span {
  background: url(https://motoresmarinos.suzuki.com.mx//img/general/fancybox-next.png) center center no-repeat;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background-color: rgba(0, 0, 0, 0.9);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 100%;
  z-index: 8050;
  margin-bottom: 10px;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
}

@media only screen and (min-width: 48em) {
  .fancybox-title-float-wrap .child {
    font-size: 15px;
  }
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Thumbs!*/
#fancybox-thumbs {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 8050;
}

#fancybox-thumbs.bottom {
  bottom: 2px;
}

#fancybox-thumbs.top {
  top: 2px;
}

#fancybox-thumbs ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#fancybox-thumbs ul li {
  float: left;
  padding: 1px;
  opacity: 0.5;
}

#fancybox-thumbs ul li.active {
  opacity: 0.75;
  padding: 0;
  border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
  opacity: 1;
}

#fancybox-thumbs ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
  background: #111;
  outline: none;
}

#fancybox-thumbs ul li img {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  max-width: none;
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 50 !important;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single {
  *zoom: 1;
}

.pika-single:before,
.pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both;
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background-color: #fff;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  *position: absolute;
  *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.pika-select {
  display: inline-block;
  *display: inline;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: 600;
  text-align: center;
}

.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.is-today .pika-button {
  color: #33aaff;
  font-weight: 600;
}

.is-selected .pika-button {
  color: #fff;
  font-weight: 600;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: 0.3;
}

.pika-button:hover {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-inrange .pika-button {
  background: #d5e9f7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6cb31d;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

.pika-single {
  border: 0;
  z-index: 9;
}

.pika-single.is-bound {
  -o-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25), 0 0 0 transparent;
}

.pika-lendar {
  float: none;
  width: 100%;
  margin: 0;
}

.pika-title {
  background-color: #e23136;
}

.pika-label {
  color: #fff;
  background-color: transparent;
}

.pika-prev,
.pika-next {
  background-size: 7px auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  -moz-opacity: 1;
}

.pika-prev {
  background-image: url(https://motoresmarinos.suzuki.com.mx//img/general/generic-prev.svg);
}

.pika-next {
  background-image: url(https://motoresmarinos.suzuki.com.mx//img/general/generic-next.svg);
}

.pika-table thead {
  background-color: #fff;
}

.pika-table thead th {
  color: #000;
  text-transform: uppercase;
}

abbr[title],
dfn[title] {
  color: #999999;
  font-size: 10px !important;
  font-weight: 300;
  border-bottom: 0 !important;
}

.pika-button {
  text-align: center;
  font-weight: 500;
  background-color: #fff;
  padding: 10px;
}

.pika-button:hover {
  color: #000;
  background-color: #fff;
}

.is-today .pika-button {
  color: #e23136;
}

.is-today .pika-button:hover {
  color: #e23136;
  background-color: #fff;
}

.is-selected .pika-button {
  background: #e23136;
  -o-box-shadow: 0 0 0 0, 0 0 0 transparent;
  box-shadow: 0 0 0 0, 0 0 0 transparent;
}

.is-selected .pika-button:hover {
  color: #fff;
}

.is-today.is-selected .pika-button {
  color: #fff;
}

.is-today.is-selected .pika-button:hover {
  color: #fff;
  background-color: #e23136;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  outline: 0;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: auto;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 0.5em 0.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  outline: 0;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #ccc;
  padding-bottom: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 transparent;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  color: #3f3f3f;
  padding: 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px 20px 4px 4px;
  width: 100%;
  outline: 0;
  border-radius: 0 !important;
  box-shadow: 0 0 0 transparent !important;
  -webkit-font-smoothing: antialiased !important;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ccc;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  -webkit-font-smoothing: antialiased;
  color: #3f3f3f;
  line-height: 100%;
  min-height: 33px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 50%;
  right: 0.6em;
  margin-top: -13px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #ccc;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 600;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #ccc;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ccc;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  padding: 0 4px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role="group"] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled="true"] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #0050ad;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #0050ad;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #3f3f3f;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 600;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #ccc;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #ccc;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #0050ad;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #ccc;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #0050ad;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #ccc;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #0050ad;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #ccc;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role="group"] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled="true"] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #0050ad;
}

.slider {
  width: 100%;
  margin: 8px 0 !important;
}

.slider__value {
  position: absolute;
  top: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 100%;
  min-width: 30px;
}

.slider__value--left {
  left: 0;
  text-align: left;
}

@media only screen and (min-width: 48em) {
  .slider__value--left {
    left: 10px;
  }
}

.slider__value--right {
  right: 0;
  text-align: right;
}

@media only screen and (min-width: 48em) {
  .slider__value--right {
    right: 10px;
  }
}

.slider>.dragger {
  width: 10px;
  height: 20px;
  cursor: pointer;
  background-color: #0050ad;
  margin-top: -2px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transition: background-color linear 0.2s;
}

@media only screen and (min-width: 48em) {
  .slider>.dragger {
    margin-left: -5px !important;
  }
}

.slider>.dragger:hover {
  background-color: #004494;
}

.slider>.track,
.slider>.highlight-track {
  height: 18px;
  top: auto !important;
  bottom: -8px;
  margin-top: 0 !important;
}

.slider>.track:after,
.slider>.highlight-track:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 1px;
  border: 1px solid #3f3f3f;
  background-color: rgba(42, 42, 42, 0.9);
  color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: "SuzukiPRO", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  padding: 15px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.tooltipster-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */
}

/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px;
}

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible;
}

.tooltipster-base .tooltipster-content {
  overflow: hidden;
}

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.tooltipster-arrow span,
.tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}

.tooltipster-arrow-top span,
.tooltipster-arrow-top-right span,
.tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px;
}

.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px;
}

.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom-right span,
.tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px;
}

.tooltipster-arrow-bottom .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px;
}

.tooltipster-arrow-top span,
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tooltipster-arrow-top-left span,
.tooltipster-arrow-bottom-left span {
  left: 6px;
}

.tooltipster-arrow-top-left .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px;
}

.tooltipster-arrow-top-right span,
.tooltipster-arrow-bottom-right span {
  right: 6px;
}

.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px;
}

.tooltipster-arrow-left span,
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px;
}

.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px;
}

.tooltipster-arrow-right span,
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px;
}

.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px;
}

/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  transition-property: opacity;
}

.tooltipster-fade-show {
  opacity: 1;
}

.tooltipster-grow {
  transform: scale(0, 0);
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow-show {
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
  opacity: 0;
  transform: rotateZ(4deg);
  transition-property: transform;
}

.tooltipster-swing-show {
  opacity: 1;
  transform: rotateZ(0deg);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
  top: 0;
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0px !important;
  opacity: 0;
}

.tooltipster-slide {
  left: -40px;
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0px !important;
  opacity: 0;
}

/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  transform: scale(1.1, 1.1);
}

.legals-justify {
  text-align: justify;
  text-justify: inter-word;
}

.want-it-btn-gnrl {
  font-family: "SuzukiPRO", sans-serif;
  font-size: 15px;
  background-color: #004eb0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  width: auto;
  height: 100%;
  padding: 22px 0;
  transition: all;
}

.want-it-btn-gnrl:hover {
  background-color: #fff;
  color: #003145;
  transition-duration: .7s;
  font-weight: bold;
  border: 1px solid #000;
}

.want-it-btn {
  font-family: "SuzukiPRO", sans-serif;
  font-size: 15px;
  background-color: #004eb0;
  border-left: 1px solid #dadada;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  width: auto;
  height: 100%;
  padding: 17px 0;
  transition: all;
}

.want-it-btn:hover {
  background-color: #fff;
  color: #003145;
  transition-duration: .7s;
  font-weight: bold;
}

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

@media only screen and (min-width: 48em) {
  .footer-img-container img {
    max-width: 75%;
  }
}

.customer-support-logo-main {
  position: fixed;
  top: 75%;
  right: 15px;
  z-index: 1;
  width: 200px;
}

.img-join-distributor-lat {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 48em) {
  .customer-support-img img {

    width: 100%;
    padding: 5px;
  }

  .m-footer-privacy__item:after {
    display: none;
  }

  .sixtieth-logo {
    margin: 27px 0;
    height: 75%;
  }
}

@media (max-width: 767px) {
  .img-join-distributor-lat {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .img-join-distributor-lat {
    max-width: 80%;
    right: -50px;
    top: 50px;
  }

  .img-join-distributor-lat img {
    width: 80%;
  }
}


@media (min-width: 961px) and (max-width: 1023px) {
  .img-join-distributor-lat {
    max-width: 80%;
    right: 25px;
    top: 50px;
  }
}
@media (min-width: 1024px) {
  .img-join-distributor-lat {
    max-width: 80%;
    right: -150px;
    top: 50px;
  }
}

.customer-support-img {
  width: 100%;
  height: 100%;
}

.disclaimer-container {
  letter-spacing:0;
  margin-bottom: 25px;
  font-size: 12px;
}

.disclaimer-container p {
  padding: 2px 0;
}



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