@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,800;1,900&display=swap");
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  touch-action: pinch-zoom; /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  touch-action: auto;
}

.mCustomScrollBox { /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

.mCSB_container { /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
} /* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container { /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
} /* RTL direction/left-side scrollbar */
.mCSB_scrollTools { /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
} /* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools { /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
} /* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer { /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger { /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px; /* minimum dragger height */
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px; /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px; /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
} /* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
} /* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px; /* minimum dragger width */
  height: 100%;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px; /* auto-expanded scrollbar */
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px; /* auto-expanded scrollbar */
  margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper { /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0; /* non-visible scrollbar */
  margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/* 
----------------------------------------
6.1 THEMES 
----------------------------------------
*/
/* default theme ("light") */
.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  /*background-image: url(mCSB_buttons.png);*/ /* css sprites */
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /* 
  sprites locations 
  light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
  dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
  */
}

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /* 
  sprites locations
  light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
  dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
  */
}

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /* 
  sprites locations 
  light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
  dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
  */
}

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /* 
  sprites locations 
  light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
  dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
  */
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}

/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}

/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}

/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px; /* auto-expanded scrollbar */
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px; /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px; /* auto-expanded scrollbar */
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px; /* auto-expanded scrollbar */
  margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}

/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}

/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}

/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}

/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 5px;
}

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools {
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2);
}

/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

.sp_1024 {
  display: none;
}

@media screen and (max-width: 1023px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .sp_1024 {
    display: block;
  }
}
@font-face {
  font-family: "toyota_b";
  src: url("/asset/font/toyotadisplay_bd-webfont.eot");
  src: url("/asset/font/toyotadisplay_bd-webfont.eot?iefix") format("eot"), url("/asset/font/toyotadisplay_bd-webfont.woff") format("woff"), url("/asset/font/toyotadisplay_bd-webfont.ttf") format("truetype"), url("/asset/font/toyotadisplay_bd-webfont.svg") format("svg");
}
@font-face {
  font-family: "toyota_r";
  src: url("/asset/font/toyotadisplay_rg-webfont.eot");
  src: url("/asset/font/toyotadisplay_rg-webfont.eot?iefix") format("eot"), url("/asset/font/toyotadisplay_rg-webfont.woff") format("woff"), url("/asset/font/toyotadisplay_rg-webfont.ttf") format("truetype"), url("/asset/font/toyotadisplay_rg-webfont.svg") format("svg");
}
@font-face {
  font-family: "open_l";
  src: url("/asset/font/opensans-light-webfont.eot");
  src: url("/asset/font/opensans-light-webfont.eot?iefix") format("eot"), url("/asset/font/opensans-light-webfont.woff") format("woff"), url("/asset/font/OpenSans-Light.ttf") format("truetype"), url("/asset/font/opensans-light-webfont.svg") format("svg");
}
@font-face {
  font-family: "open_b";
  src: url("/asset/font/opensans-bold-webfont.eot");
  src: url("/asset/font/opensans-bold-webfont.eot?iefix") format("eot"), url("/asset/font/opensans-bold-webfont.woff") format("woff"), url("/asset/font/opensans-bold-webfont.ttf") format("truetype"), url("/asset/font/opensans-bold-webfont.svg") format("svg");
}
@font-face {
  font-family: "toyotaicons";
  src: url("/asset/font/Toyota-icon-restyle.eot");
  src: url("/asset/font/Toyota-icon-restyle.eot?#iefix") format("embedded-opentype"), url("/asset/font/Toyota-icon-restyle.woff") format("woff"), url("/asset/font/Toyota-icon-restyle.ttf") format("truetype");
}
@font-face {
  font-family: "icomoon";
  src: url("/asset/font/icomoon.eot?i8fva2");
  src: url("/asset/font/icomoon.eot?i8fva2#iefix") format("embedded-opentype"), url("/asset/font/icomoon.ttf") format("truetype"), url("/asset/font/icomoon.woff") format("woff"), url("/asset/font/icomoon.svg") format("svg");
}
@font-face {
  font-family: "icomoonbook";
  src: url("/asset/font/icomoonbook.eot?i8fva2");
  src: url("/asset/font/icomoonbook.eot?i8fva2#iefix") format("embedded-opentype"), url("/asset/font/icomoonbook.ttf") format("truetype"), url("/asset/font/icomoonbook.woff") format("woff"), url("/asset/font/icomoonbook.svg") format("svg");
}
.font_f_t_b {
  font-family: "toyota_b";
}

.font_f_t_r {
  font-family: "toyota_r";
}

.font_f_o_l {
  font-family: "open_l";
}

.font_f_o_b {
  font-family: "open_b";
}

.tl {
  text-align: left;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

p {
  word-wrap: break-word;
}

.bg_c_g {
  background-color: #6d8191;
}

.bg_c_b {
  background-color: #000000;
}

.bg_c_blue {
  background-color: #425368;
}

.bg_gray {
  background-color: #bababa;
}

.bg_gray2 {
  background-color: #e2e2e2;
}

.bg_red {
  background-color: #eb0a1e;
}

.bg_w {
  background-color: #fff;
}

.bg_sf_gray {
  background-color: #f2f2f2;
}

.local_gray {
  background-color: #f9f9f9;
}

.local_ivory {
  background-color: #FFFFF0;
}

.local_black {
  background-color: #222325;
}

.fc_w {
  color: #fff;
}

.fc_b {
  color: #000 !important;
}

.fc_r {
  color: #eb0a1e;
}

.fc_gray {
  color: #bababa;
}

.fc_nv {
  color: #425368;
}

.color_1f7:after {
  background-image: url(/asset/images/color_slide/1f7.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_1f9:after {
  background-image: url(/asset/images/color_slide/1f9.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_1g2:after {
  background-image: url(/asset/images/color_slide/1g2.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_champagne:after {
  background-image: url(/asset/images/color_slide/1g2.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_3r3:after {
  background-image: url(/asset/images/color_slide/3r3.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_bordo:after {
  background-image: url(/asset/images/color_slide/3r3.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_6w2:after {
  background-image: url(/asset/images/color_slide/6w2.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_8w7:after {
  background-image: url(/asset/images/color_slide/8w7.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_8x7:after {
  background-image: url(/asset/images/color_slide/8x7.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_040:after {
  background-image: url(/asset/images/color_slide/040.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_blanco:after {
  background-image: url(/asset/images/color_slide/blanco.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_cobaltogris:after {
  background-image: url(/asset/images/color_slide/cobaltogris.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_beige:after {
  background-image: url(/asset/images/color_slide/beige.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_verdeoscuro:after {
  background-image: url(/asset/images/color_slide/verdeoscuro.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_turquesa:after {
  background-image: url(/asset/images/color_slide/turquesa.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_oliva:after {
  background-image: url(/asset/images/color_slide/oliva.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_cobalto:after {
  background-image: url(/asset/images/color_slide/cobalto.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_bronce:after {
  background-image: url(/asset/images/color_slide/bronce.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_indigo:after {
  background-image: url(/asset/images/color_slide/indigo.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_negro:after {
  background-image: url(/asset/images/color_slide/negro.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_gris:after {
  background-image: url(/asset/images/color_slide/gris.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_plata:after {
  background-image: url(/asset/images/color_slide/plata.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_rojo:after {
  background-image: url(/asset/images/color_slide/rojo.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_070:after {
  background-image: url(/asset/images/color_slide/070.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_209:after {
  background-image: url(/asset/images/color_slide/209.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_grisoscuro:after {
  background-image: url(/asset/images/color_slide/209.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_221:after {
  background-image: url(/asset/images/color_slide/221.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_azul:after {
  background-image: url(/asset/images/color_slide/221.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_e6e6e6:after {
  background-image: url(/asset/images/color_slide/color_e6e6e6.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_dddddd:after {
  background-image: url(/asset/images/color_slide/color_dddddd.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_575558:after {
  background-image: url(/asset/images/color_slide/color_575558.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_666666:after {
  background-image: url(/asset/images/color_slide/color_666666.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_333333:after {
  background-image: url(/asset/images/color_slide/color_333333.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_334650:after {
  background-image: url(/asset/images/color_slide/color_334650.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_b40000:after {
  background-image: url(/asset/images/color_slide/color_b40000.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_333c5a:after {
  background-image: url(/asset/images/color_slide/color_333c5a.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_7f002a:after {
  background-color: #7f002a;
}

.color_cc4554:after {
  background-color: #cc4554;
}

.color_929292:after {
  background-color: #929292;
}

.color_335eff:after {
  background-color: #335eff;
}

.color_000000:after {
  background-color: #000000;
}

.color_425368:after {
  background-color: #425368;
}

.color_00337f:after {
  background-color: #00337f;
}

.color_eeeeee:after {
  background-color: #eeeeee;
}

.color_d9dbe2:after {
  background-color: #FFFFF0;
}

.color_blanco-perlado:after {
  background-image: url(/asset/images/color_slide/blanco-perlado.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_gris-oscuro-metalizado:after {
  background-image: url(/asset/images/color_slide/gris-oscuro-metalizado.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_marron-metalizado:after {
  background-image: url(/asset/images/color_slide/marron-metalizado.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_negro-mica:after {
  background-image: url(/asset/images/color_slide/negro-mica.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_super-blanco:after {
  background-image: url(/asset/images/color_slide/super-blanco.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.color_plata-metalizado:after {
  background-image: url(/asset/images/color_slide/plata-metalizado.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.f10 {
  font-size: 10px;
}

.f11 {
  font-size: 11px;
}

.f12 {
  font-size: 12px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f15 {
  font-size: 15px;
}

.f16 {
  font-size: 16px;
}

.f17 {
  font-size: 17px;
}

.f18 {
  font-size: 18px;
}

.f19 {
  font-size: 19px;
}

.f20 {
  font-size: 20px;
}

.f21 {
  font-size: 21px;
}

.f22 {
  font-size: 22px;
}

.f23 {
  font-size: 23px;
}

.f24 {
  font-size: 24px;
}

.f25 {
  font-size: 25px;
}

.f26 {
  font-size: 26px;
}

.f27 {
  font-size: 27px;
}

.f28 {
  font-size: 28px;
}

.f29 {
  font-size: 29px;
}

.f30 {
  font-size: 30px;
}

.f31 {
  font-size: 31px;
}

.f32 {
  font-size: 32px;
}

.f33 {
  font-size: 33px;
}

.f34 {
  font-size: 34px;
}

.f35 {
  font-size: 35px;
}

.f36 {
  font-size: 36px;
}

.f37 {
  font-size: 37px;
}

.f38 {
  font-size: 38px;
}

.f39 {
  font-size: 39px;
}

.f40 {
  font-size: 40px;
}

.f41 {
  font-size: 41px;
}

.f42 {
  font-size: 42px;
}

.f43 {
  font-size: 43px;
}

.f44 {
  font-size: 44px;
}

.f45 {
  font-size: 45px;
}

.f46 {
  font-size: 46px;
}

.f47 {
  font-size: 47px;
}

.f48 {
  font-size: 48px;
}

.f49 {
  font-size: 49px;
}

.f50 {
  font-size: 50px;
}

.f51 {
  font-size: 51px;
}

.f52 {
  font-size: 52px;
}

.f53 {
  font-size: 53px;
}

.f54 {
  font-size: 54px;
}

.f55 {
  font-size: 55px;
}

.f56 {
  font-size: 56px;
}

.f57 {
  font-size: 57px;
}

.f58 {
  font-size: 58px;
}

.f59 {
  font-size: 59px;
}

.f60 {
  font-size: 60px;
}

@media screen and (max-width: 767px) {
  .bg_position1 {
    background-position: 1% center !important;
  }
  .bg_position2 {
    background-position: 2% center !important;
  }
  .bg_position3 {
    background-position: 3% center !important;
  }
  .bg_position4 {
    background-position: 4% center !important;
  }
  .bg_position5 {
    background-position: 5% center !important;
  }
  .bg_position6 {
    background-position: 6% center !important;
  }
  .bg_position7 {
    background-position: 7% center !important;
  }
  .bg_position8 {
    background-position: 8% center !important;
  }
  .bg_position9 {
    background-position: 9% center !important;
  }
  .bg_position10 {
    background-position: 10% center !important;
  }
  .bg_position11 {
    background-position: 11% center !important;
  }
  .bg_position12 {
    background-position: 12% center !important;
  }
  .bg_position13 {
    background-position: 13% center !important;
  }
  .bg_position14 {
    background-position: 14% center !important;
  }
  .bg_position15 {
    background-position: 15% center !important;
  }
  .bg_position16 {
    background-position: 16% center !important;
  }
  .bg_position17 {
    background-position: 17% center !important;
  }
  .bg_position18 {
    background-position: 18% center !important;
  }
  .bg_position19 {
    background-position: 19% center !important;
  }
  .bg_position20 {
    background-position: 20% center !important;
  }
  .bg_position21 {
    background-position: 21% center !important;
  }
  .bg_position22 {
    background-position: 22% center !important;
  }
  .bg_position23 {
    background-position: 23% center !important;
  }
  .bg_position24 {
    background-position: 24% center !important;
  }
  .bg_position25 {
    background-position: 25% center !important;
  }
  .bg_position26 {
    background-position: 26% center !important;
  }
  .bg_position27 {
    background-position: 27% center !important;
  }
  .bg_position28 {
    background-position: 28% center !important;
  }
  .bg_position29 {
    background-position: 29% center !important;
  }
  .bg_position30 {
    background-position: 30% center !important;
  }
  .bg_position31 {
    background-position: 31% center !important;
  }
  .bg_position32 {
    background-position: 32% center !important;
  }
  .bg_position33 {
    background-position: 33% center !important;
  }
  .bg_position34 {
    background-position: 34% center !important;
  }
  .bg_position35 {
    background-position: 35% center !important;
  }
  .bg_position36 {
    background-position: 36% center !important;
  }
  .bg_position37 {
    background-position: 37% center !important;
  }
  .bg_position38 {
    background-position: 38% center !important;
  }
  .bg_position39 {
    background-position: 39% center !important;
  }
  .bg_position40 {
    background-position: 40% center !important;
  }
  .bg_position41 {
    background-position: 41% center !important;
  }
  .bg_position42 {
    background-position: 42% center !important;
  }
  .bg_position43 {
    background-position: 43% center !important;
  }
  .bg_position44 {
    background-position: 44% center !important;
  }
  .bg_position45 {
    background-position: 45% center !important;
  }
  .bg_position46 {
    background-position: 46% center !important;
  }
  .bg_position47 {
    background-position: 47% center !important;
  }
  .bg_position48 {
    background-position: 48% center !important;
  }
  .bg_position49 {
    background-position: 49% center !important;
  }
  .bg_position50 {
    background-position: 50% center !important;
  }
  .bg_position51 {
    background-position: 51% center !important;
  }
  .bg_position52 {
    background-position: 52% center !important;
  }
  .bg_position53 {
    background-position: 53% center !important;
  }
  .bg_position54 {
    background-position: 54% center !important;
  }
  .bg_position55 {
    background-position: 55% center !important;
  }
  .bg_position56 {
    background-position: 56% center !important;
  }
  .bg_position57 {
    background-position: 57% center !important;
  }
  .bg_position58 {
    background-position: 58% center !important;
  }
  .bg_position59 {
    background-position: 59% center !important;
  }
  .bg_position60 {
    background-position: 60% center !important;
  }
  .bg_position61 {
    background-position: 61% center !important;
  }
  .bg_position62 {
    background-position: 62% center !important;
  }
  .bg_position63 {
    background-position: 63% center !important;
  }
  .bg_position64 {
    background-position: 64% center !important;
  }
  .bg_position65 {
    background-position: 65% center !important;
  }
  .bg_position66 {
    background-position: 66% center !important;
  }
  .bg_position67 {
    background-position: 67% center !important;
  }
  .bg_position68 {
    background-position: 68% center !important;
  }
  .bg_position69 {
    background-position: 69% center !important;
  }
  .bg_position70 {
    background-position: 70% center !important;
  }
  .bg_position71 {
    background-position: 71% center !important;
  }
  .bg_position72 {
    background-position: 72% center !important;
  }
  .bg_position73 {
    background-position: 73% center !important;
  }
  .bg_position74 {
    background-position: 74% center !important;
  }
  .bg_position75 {
    background-position: 75% center !important;
  }
  .bg_position76 {
    background-position: 76% center !important;
  }
  .bg_position77 {
    background-position: 77% center !important;
  }
  .bg_position78 {
    background-position: 78% center !important;
  }
  .bg_position79 {
    background-position: 79% center !important;
  }
  .bg_position80 {
    background-position: 80% center !important;
  }
  .bg_position81 {
    background-position: 81% center !important;
  }
  .bg_position82 {
    background-position: 82% center !important;
  }
  .bg_position83 {
    background-position: 83% center !important;
  }
  .bg_position84 {
    background-position: 84% center !important;
  }
  .bg_position85 {
    background-position: 85% center !important;
  }
  .bg_position86 {
    background-position: 86% center !important;
  }
  .bg_position87 {
    background-position: 87% center !important;
  }
  .bg_position88 {
    background-position: 88% center !important;
  }
  .bg_position89 {
    background-position: 89% center !important;
  }
  .bg_position90 {
    background-position: 90% center !important;
  }
  .bg_position91 {
    background-position: 91% center !important;
  }
  .bg_position92 {
    background-position: 92% center !important;
  }
  .bg_position93 {
    background-position: 93% center !important;
  }
  .bg_position94 {
    background-position: 94% center !important;
  }
  .bg_position95 {
    background-position: 95% center !important;
  }
  .bg_position96 {
    background-position: 96% center !important;
  }
  .bg_position97 {
    background-position: 97% center !important;
  }
  .bg_position98 {
    background-position: 98% center !important;
  }
  .bg_position99 {
    background-position: 99% center !important;
  }
  .bg_position100 {
    background-position: 100% center !important;
  }
}
.mt0 {
  margin-top: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.mt5 {
  margin-top: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.mt10 {
  margin-top: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.mt15 {
  margin-top: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.mt20 {
  margin-top: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.mt25 {
  margin-top: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.mt30 {
  margin-top: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.mt35 {
  margin-top: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.mt40 {
  margin-top: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.mt45 {
  margin-top: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.mt50 {
  margin-top: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.mt55 {
  margin-top: 55px;
}

.ml55 {
  margin-left: 55px;
}

.mr55 {
  margin-right: 55px;
}

.mb55 {
  margin-bottom: 55px;
}

.pt55 {
  padding-top: 55px;
}

.pl55 {
  padding-left: 55px;
}

.pr55 {
  padding-right: 55px;
}

.pb55 {
  padding-bottom: 55px;
}

.mt60 {
  margin-top: 60px;
}

.ml60 {
  margin-left: 60px;
}

.mr60 {
  margin-right: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.pt60 {
  padding-top: 60px;
}

.pl60 {
  padding-left: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.mt65 {
  margin-top: 65px;
}

.ml65 {
  margin-left: 65px;
}

.mr65 {
  margin-right: 65px;
}

.mb65 {
  margin-bottom: 65px;
}

.pt65 {
  padding-top: 65px;
}

.pl65 {
  padding-left: 65px;
}

.pr65 {
  padding-right: 65px;
}

.pb65 {
  padding-bottom: 65px;
}

.mt70 {
  margin-top: 70px;
}

.ml70 {
  margin-left: 70px;
}

.mr70 {
  margin-right: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.pt70 {
  padding-top: 70px;
}

.pl70 {
  padding-left: 70px;
}

.pr70 {
  padding-right: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.mt75 {
  margin-top: 75px;
}

.ml75 {
  margin-left: 75px;
}

.mr75 {
  margin-right: 75px;
}

.mb75 {
  margin-bottom: 75px;
}

.pt75 {
  padding-top: 75px;
}

.pl75 {
  padding-left: 75px;
}

.pr75 {
  padding-right: 75px;
}

.pb75 {
  padding-bottom: 75px;
}

.mt80 {
  margin-top: 80px;
}

.ml80 {
  margin-left: 80px;
}

.mr80 {
  margin-right: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.pt80 {
  padding-top: 80px;
}

.pl80 {
  padding-left: 80px;
}

.pr80 {
  padding-right: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.mt85 {
  margin-top: 85px;
}

.ml85 {
  margin-left: 85px;
}

.mr85 {
  margin-right: 85px;
}

.mb85 {
  margin-bottom: 85px;
}

.pt85 {
  padding-top: 85px;
}

.pl85 {
  padding-left: 85px;
}

.pr85 {
  padding-right: 85px;
}

.pb85 {
  padding-bottom: 85px;
}

.mt90 {
  margin-top: 90px;
}

.ml90 {
  margin-left: 90px;
}

.mr90 {
  margin-right: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt90 {
  padding-top: 90px;
}

.pl90 {
  padding-left: 90px;
}

.pr90 {
  padding-right: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.mt95 {
  margin-top: 95px;
}

.ml95 {
  margin-left: 95px;
}

.mr95 {
  margin-right: 95px;
}

.mb95 {
  margin-bottom: 95px;
}

.pt95 {
  padding-top: 95px;
}

.pl95 {
  padding-left: 95px;
}

.pr95 {
  padding-right: 95px;
}

.pb95 {
  padding-bottom: 95px;
}

.mt100 {
  margin-top: 100px;
}

.ml100 {
  margin-left: 100px;
}

.mr100 {
  margin-right: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt100 {
  padding-top: 100px;
}

.pl100 {
  padding-left: 100px;
}

.pr100 {
  padding-right: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.mt105 {
  margin-top: 105px;
}

.ml105 {
  margin-left: 105px;
}

.mr105 {
  margin-right: 105px;
}

.mb105 {
  margin-bottom: 105px;
}

.pt105 {
  padding-top: 105px;
}

.pl105 {
  padding-left: 105px;
}

.pr105 {
  padding-right: 105px;
}

.pb105 {
  padding-bottom: 105px;
}

.mt110 {
  margin-top: 110px;
}

.ml110 {
  margin-left: 110px;
}

.mr110 {
  margin-right: 110px;
}

.mb110 {
  margin-bottom: 110px;
}

.pt110 {
  padding-top: 110px;
}

.pl110 {
  padding-left: 110px;
}

.pr110 {
  padding-right: 110px;
}

.pb110 {
  padding-bottom: 110px;
}

.mt115 {
  margin-top: 115px;
}

.ml115 {
  margin-left: 115px;
}

.mr115 {
  margin-right: 115px;
}

.mb115 {
  margin-bottom: 115px;
}

.pt115 {
  padding-top: 115px;
}

.pl115 {
  padding-left: 115px;
}

.pr115 {
  padding-right: 115px;
}

.pb115 {
  padding-bottom: 115px;
}

.mt120 {
  margin-top: 120px;
}

.ml120 {
  margin-left: 120px;
}

.mr120 {
  margin-right: 120px;
}

.mb120 {
  margin-bottom: 120px;
}

.pt120 {
  padding-top: 120px;
}

.pl120 {
  padding-left: 120px;
}

.pr120 {
  padding-right: 120px;
}

.pb120 {
  padding-bottom: 120px;
}

.mt125 {
  margin-top: 125px;
}

.ml125 {
  margin-left: 125px;
}

.mr125 {
  margin-right: 125px;
}

.mb125 {
  margin-bottom: 125px;
}

.pt125 {
  padding-top: 125px;
}

.pl125 {
  padding-left: 125px;
}

.pr125 {
  padding-right: 125px;
}

.pb125 {
  padding-bottom: 125px;
}

.mt130 {
  margin-top: 130px;
}

.ml130 {
  margin-left: 130px;
}

.mr130 {
  margin-right: 130px;
}

.mb130 {
  margin-bottom: 130px;
}

.pt130 {
  padding-top: 130px;
}

.pl130 {
  padding-left: 130px;
}

.pr130 {
  padding-right: 130px;
}

.pb130 {
  padding-bottom: 130px;
}

.mt135 {
  margin-top: 135px;
}

.ml135 {
  margin-left: 135px;
}

.mr135 {
  margin-right: 135px;
}

.mb135 {
  margin-bottom: 135px;
}

.pt135 {
  padding-top: 135px;
}

.pl135 {
  padding-left: 135px;
}

.pr135 {
  padding-right: 135px;
}

.pb135 {
  padding-bottom: 135px;
}

.mt140 {
  margin-top: 140px;
}

.ml140 {
  margin-left: 140px;
}

.mr140 {
  margin-right: 140px;
}

.mb140 {
  margin-bottom: 140px;
}

.pt140 {
  padding-top: 140px;
}

.pl140 {
  padding-left: 140px;
}

.pr140 {
  padding-right: 140px;
}

.pb140 {
  padding-bottom: 140px;
}

.mt145 {
  margin-top: 145px;
}

.ml145 {
  margin-left: 145px;
}

.mr145 {
  margin-right: 145px;
}

.mb145 {
  margin-bottom: 145px;
}

.pt145 {
  padding-top: 145px;
}

.pl145 {
  padding-left: 145px;
}

.pr145 {
  padding-right: 145px;
}

.pb145 {
  padding-bottom: 145px;
}

.mt150 {
  margin-top: 150px;
}

.ml150 {
  margin-left: 150px;
}

.mr150 {
  margin-right: 150px;
}

.mb150 {
  margin-bottom: 150px;
}

.pt150 {
  padding-top: 150px;
}

.pl150 {
  padding-left: 150px;
}

.pr150 {
  padding-right: 150px;
}

.pb150 {
  padding-bottom: 150px;
}

.mt155 {
  margin-top: 155px;
}

.ml155 {
  margin-left: 155px;
}

.mr155 {
  margin-right: 155px;
}

.mb155 {
  margin-bottom: 155px;
}

.pt155 {
  padding-top: 155px;
}

.pl155 {
  padding-left: 155px;
}

.pr155 {
  padding-right: 155px;
}

.pb155 {
  padding-bottom: 155px;
}

.mt160 {
  margin-top: 160px;
}

.ml160 {
  margin-left: 160px;
}

.mr160 {
  margin-right: 160px;
}

.mb160 {
  margin-bottom: 160px;
}

.pt160 {
  padding-top: 160px;
}

.pl160 {
  padding-left: 160px;
}

.pr160 {
  padding-right: 160px;
}

.pb160 {
  padding-bottom: 160px;
}

.mt165 {
  margin-top: 165px;
}

.ml165 {
  margin-left: 165px;
}

.mr165 {
  margin-right: 165px;
}

.mb165 {
  margin-bottom: 165px;
}

.pt165 {
  padding-top: 165px;
}

.pl165 {
  padding-left: 165px;
}

.pr165 {
  padding-right: 165px;
}

.pb165 {
  padding-bottom: 165px;
}

.mt170 {
  margin-top: 170px;
}

.ml170 {
  margin-left: 170px;
}

.mr170 {
  margin-right: 170px;
}

.mb170 {
  margin-bottom: 170px;
}

.pt170 {
  padding-top: 170px;
}

.pl170 {
  padding-left: 170px;
}

.pr170 {
  padding-right: 170px;
}

.pb170 {
  padding-bottom: 170px;
}

.mt175 {
  margin-top: 175px;
}

.ml175 {
  margin-left: 175px;
}

.mr175 {
  margin-right: 175px;
}

.mb175 {
  margin-bottom: 175px;
}

.pt175 {
  padding-top: 175px;
}

.pl175 {
  padding-left: 175px;
}

.pr175 {
  padding-right: 175px;
}

.pb175 {
  padding-bottom: 175px;
}

.mt180 {
  margin-top: 180px;
}

.ml180 {
  margin-left: 180px;
}

.mr180 {
  margin-right: 180px;
}

.mb180 {
  margin-bottom: 180px;
}

.pt180 {
  padding-top: 180px;
}

.pl180 {
  padding-left: 180px;
}

.pr180 {
  padding-right: 180px;
}

.pb180 {
  padding-bottom: 180px;
}

.mt185 {
  margin-top: 185px;
}

.ml185 {
  margin-left: 185px;
}

.mr185 {
  margin-right: 185px;
}

.mb185 {
  margin-bottom: 185px;
}

.pt185 {
  padding-top: 185px;
}

.pl185 {
  padding-left: 185px;
}

.pr185 {
  padding-right: 185px;
}

.pb185 {
  padding-bottom: 185px;
}

.mt190 {
  margin-top: 190px;
}

.ml190 {
  margin-left: 190px;
}

.mr190 {
  margin-right: 190px;
}

.mb190 {
  margin-bottom: 190px;
}

.pt190 {
  padding-top: 190px;
}

.pl190 {
  padding-left: 190px;
}

.pr190 {
  padding-right: 190px;
}

.pb190 {
  padding-bottom: 190px;
}

.mt195 {
  margin-top: 195px;
}

.ml195 {
  margin-left: 195px;
}

.mr195 {
  margin-right: 195px;
}

.mb195 {
  margin-bottom: 195px;
}

.pt195 {
  padding-top: 195px;
}

.pl195 {
  padding-left: 195px;
}

.pr195 {
  padding-right: 195px;
}

.pb195 {
  padding-bottom: 195px;
}

.mt200 {
  margin-top: 200px;
}

.ml200 {
  margin-left: 200px;
}

.mr200 {
  margin-right: 200px;
}

.mb200 {
  margin-bottom: 200px;
}

.pt200 {
  padding-top: 200px;
}

.pl200 {
  padding-left: 200px;
}

.pr200 {
  padding-right: 200px;
}

.pb200 {
  padding-bottom: 200px;
}

.mt205 {
  margin-top: 205px;
}

.ml205 {
  margin-left: 205px;
}

.mr205 {
  margin-right: 205px;
}

.mb205 {
  margin-bottom: 205px;
}

.pt205 {
  padding-top: 205px;
}

.pl205 {
  padding-left: 205px;
}

.pr205 {
  padding-right: 205px;
}

.pb205 {
  padding-bottom: 205px;
}

.mt210 {
  margin-top: 210px;
}

.ml210 {
  margin-left: 210px;
}

.mr210 {
  margin-right: 210px;
}

.mb210 {
  margin-bottom: 210px;
}

.pt210 {
  padding-top: 210px;
}

.pl210 {
  padding-left: 210px;
}

.pr210 {
  padding-right: 210px;
}

.pb210 {
  padding-bottom: 210px;
}

.mt215 {
  margin-top: 215px;
}

.ml215 {
  margin-left: 215px;
}

.mr215 {
  margin-right: 215px;
}

.mb215 {
  margin-bottom: 215px;
}

.pt215 {
  padding-top: 215px;
}

.pl215 {
  padding-left: 215px;
}

.pr215 {
  padding-right: 215px;
}

.pb215 {
  padding-bottom: 215px;
}

.mt220 {
  margin-top: 220px;
}

.ml220 {
  margin-left: 220px;
}

.mr220 {
  margin-right: 220px;
}

.mb220 {
  margin-bottom: 220px;
}

.pt220 {
  padding-top: 220px;
}

.pl220 {
  padding-left: 220px;
}

.pr220 {
  padding-right: 220px;
}

.pb220 {
  padding-bottom: 220px;
}

.mt225 {
  margin-top: 225px;
}

.ml225 {
  margin-left: 225px;
}

.mr225 {
  margin-right: 225px;
}

.mb225 {
  margin-bottom: 225px;
}

.pt225 {
  padding-top: 225px;
}

.pl225 {
  padding-left: 225px;
}

.pr225 {
  padding-right: 225px;
}

.pb225 {
  padding-bottom: 225px;
}

.mt230 {
  margin-top: 230px;
}

.ml230 {
  margin-left: 230px;
}

.mr230 {
  margin-right: 230px;
}

.mb230 {
  margin-bottom: 230px;
}

.pt230 {
  padding-top: 230px;
}

.pl230 {
  padding-left: 230px;
}

.pr230 {
  padding-right: 230px;
}

.pb230 {
  padding-bottom: 230px;
}

.mt235 {
  margin-top: 235px;
}

.ml235 {
  margin-left: 235px;
}

.mr235 {
  margin-right: 235px;
}

.mb235 {
  margin-bottom: 235px;
}

.pt235 {
  padding-top: 235px;
}

.pl235 {
  padding-left: 235px;
}

.pr235 {
  padding-right: 235px;
}

.pb235 {
  padding-bottom: 235px;
}

.mt240 {
  margin-top: 240px;
}

.ml240 {
  margin-left: 240px;
}

.mr240 {
  margin-right: 240px;
}

.mb240 {
  margin-bottom: 240px;
}

.pt240 {
  padding-top: 240px;
}

.pl240 {
  padding-left: 240px;
}

.pr240 {
  padding-right: 240px;
}

.pb240 {
  padding-bottom: 240px;
}

.mt245 {
  margin-top: 245px;
}

.ml245 {
  margin-left: 245px;
}

.mr245 {
  margin-right: 245px;
}

.mb245 {
  margin-bottom: 245px;
}

.pt245 {
  padding-top: 245px;
}

.pl245 {
  padding-left: 245px;
}

.pr245 {
  padding-right: 245px;
}

.pb245 {
  padding-bottom: 245px;
}

.mt250 {
  margin-top: 250px;
}

.ml250 {
  margin-left: 250px;
}

.mr250 {
  margin-right: 250px;
}

.mb250 {
  margin-bottom: 250px;
}

.pt250 {
  padding-top: 250px;
}

.pl250 {
  padding-left: 250px;
}

.pr250 {
  padding-right: 250px;
}

.pb250 {
  padding-bottom: 250px;
}

.mt255 {
  margin-top: 255px;
}

.ml255 {
  margin-left: 255px;
}

.mr255 {
  margin-right: 255px;
}

.mb255 {
  margin-bottom: 255px;
}

.pt255 {
  padding-top: 255px;
}

.pl255 {
  padding-left: 255px;
}

.pr255 {
  padding-right: 255px;
}

.pb255 {
  padding-bottom: 255px;
}

.mt260 {
  margin-top: 260px;
}

.ml260 {
  margin-left: 260px;
}

.mr260 {
  margin-right: 260px;
}

.mb260 {
  margin-bottom: 260px;
}

.pt260 {
  padding-top: 260px;
}

.pl260 {
  padding-left: 260px;
}

.pr260 {
  padding-right: 260px;
}

.pb260 {
  padding-bottom: 260px;
}

.mt265 {
  margin-top: 265px;
}

.ml265 {
  margin-left: 265px;
}

.mr265 {
  margin-right: 265px;
}

.mb265 {
  margin-bottom: 265px;
}

.pt265 {
  padding-top: 265px;
}

.pl265 {
  padding-left: 265px;
}

.pr265 {
  padding-right: 265px;
}

.pb265 {
  padding-bottom: 265px;
}

.mt270 {
  margin-top: 270px;
}

.ml270 {
  margin-left: 270px;
}

.mr270 {
  margin-right: 270px;
}

.mb270 {
  margin-bottom: 270px;
}

.pt270 {
  padding-top: 270px;
}

.pl270 {
  padding-left: 270px;
}

.pr270 {
  padding-right: 270px;
}

.pb270 {
  padding-bottom: 270px;
}

.mt275 {
  margin-top: 275px;
}

.ml275 {
  margin-left: 275px;
}

.mr275 {
  margin-right: 275px;
}

.mb275 {
  margin-bottom: 275px;
}

.pt275 {
  padding-top: 275px;
}

.pl275 {
  padding-left: 275px;
}

.pr275 {
  padding-right: 275px;
}

.pb275 {
  padding-bottom: 275px;
}

.mt280 {
  margin-top: 280px;
}

.ml280 {
  margin-left: 280px;
}

.mr280 {
  margin-right: 280px;
}

.mb280 {
  margin-bottom: 280px;
}

.pt280 {
  padding-top: 280px;
}

.pl280 {
  padding-left: 280px;
}

.pr280 {
  padding-right: 280px;
}

.pb280 {
  padding-bottom: 280px;
}

.mt285 {
  margin-top: 285px;
}

.ml285 {
  margin-left: 285px;
}

.mr285 {
  margin-right: 285px;
}

.mb285 {
  margin-bottom: 285px;
}

.pt285 {
  padding-top: 285px;
}

.pl285 {
  padding-left: 285px;
}

.pr285 {
  padding-right: 285px;
}

.pb285 {
  padding-bottom: 285px;
}

.mt290 {
  margin-top: 290px;
}

.ml290 {
  margin-left: 290px;
}

.mr290 {
  margin-right: 290px;
}

.mb290 {
  margin-bottom: 290px;
}

.pt290 {
  padding-top: 290px;
}

.pl290 {
  padding-left: 290px;
}

.pr290 {
  padding-right: 290px;
}

.pb290 {
  padding-bottom: 290px;
}

.mt295 {
  margin-top: 295px;
}

.ml295 {
  margin-left: 295px;
}

.mr295 {
  margin-right: 295px;
}

.mb295 {
  margin-bottom: 295px;
}

.pt295 {
  padding-top: 295px;
}

.pl295 {
  padding-left: 295px;
}

.pr295 {
  padding-right: 295px;
}

.pb295 {
  padding-bottom: 295px;
}

.mt300 {
  margin-top: 300px;
}

.ml300 {
  margin-left: 300px;
}

.mr300 {
  margin-right: 300px;
}

.mb300 {
  margin-bottom: 300px;
}

.pt300 {
  padding-top: 300px;
}

.pl300 {
  padding-left: 300px;
}

.pr300 {
  padding-right: 300px;
}

.pb300 {
  padding-bottom: 300px;
}

.mt305 {
  margin-top: 305px;
}

.ml305 {
  margin-left: 305px;
}

.mr305 {
  margin-right: 305px;
}

.mb305 {
  margin-bottom: 305px;
}

.pt305 {
  padding-top: 305px;
}

.pl305 {
  padding-left: 305px;
}

.pr305 {
  padding-right: 305px;
}

.pb305 {
  padding-bottom: 305px;
}

.mt310 {
  margin-top: 310px;
}

.ml310 {
  margin-left: 310px;
}

.mr310 {
  margin-right: 310px;
}

.mb310 {
  margin-bottom: 310px;
}

.pt310 {
  padding-top: 310px;
}

.pl310 {
  padding-left: 310px;
}

.pr310 {
  padding-right: 310px;
}

.pb310 {
  padding-bottom: 310px;
}

.mt315 {
  margin-top: 315px;
}

.ml315 {
  margin-left: 315px;
}

.mr315 {
  margin-right: 315px;
}

.mb315 {
  margin-bottom: 315px;
}

.pt315 {
  padding-top: 315px;
}

.pl315 {
  padding-left: 315px;
}

.pr315 {
  padding-right: 315px;
}

.pb315 {
  padding-bottom: 315px;
}

.mt320 {
  margin-top: 320px;
}

.ml320 {
  margin-left: 320px;
}

.mr320 {
  margin-right: 320px;
}

.mb320 {
  margin-bottom: 320px;
}

.pt320 {
  padding-top: 320px;
}

.pl320 {
  padding-left: 320px;
}

.pr320 {
  padding-right: 320px;
}

.pb320 {
  padding-bottom: 320px;
}

.mt325 {
  margin-top: 325px;
}

.ml325 {
  margin-left: 325px;
}

.mr325 {
  margin-right: 325px;
}

.mb325 {
  margin-bottom: 325px;
}

.pt325 {
  padding-top: 325px;
}

.pl325 {
  padding-left: 325px;
}

.pr325 {
  padding-right: 325px;
}

.pb325 {
  padding-bottom: 325px;
}

.mt330 {
  margin-top: 330px;
}

.ml330 {
  margin-left: 330px;
}

.mr330 {
  margin-right: 330px;
}

.mb330 {
  margin-bottom: 330px;
}

.pt330 {
  padding-top: 330px;
}

.pl330 {
  padding-left: 330px;
}

.pr330 {
  padding-right: 330px;
}

.pb330 {
  padding-bottom: 330px;
}

.mt335 {
  margin-top: 335px;
}

.ml335 {
  margin-left: 335px;
}

.mr335 {
  margin-right: 335px;
}

.mb335 {
  margin-bottom: 335px;
}

.pt335 {
  padding-top: 335px;
}

.pl335 {
  padding-left: 335px;
}

.pr335 {
  padding-right: 335px;
}

.pb335 {
  padding-bottom: 335px;
}

.mt340 {
  margin-top: 340px;
}

.ml340 {
  margin-left: 340px;
}

.mr340 {
  margin-right: 340px;
}

.mb340 {
  margin-bottom: 340px;
}

.pt340 {
  padding-top: 340px;
}

.pl340 {
  padding-left: 340px;
}

.pr340 {
  padding-right: 340px;
}

.pb340 {
  padding-bottom: 340px;
}

.mt345 {
  margin-top: 345px;
}

.ml345 {
  margin-left: 345px;
}

.mr345 {
  margin-right: 345px;
}

.mb345 {
  margin-bottom: 345px;
}

.pt345 {
  padding-top: 345px;
}

.pl345 {
  padding-left: 345px;
}

.pr345 {
  padding-right: 345px;
}

.pb345 {
  padding-bottom: 345px;
}

.mt350 {
  margin-top: 350px;
}

.ml350 {
  margin-left: 350px;
}

.mr350 {
  margin-right: 350px;
}

.mb350 {
  margin-bottom: 350px;
}

.pt350 {
  padding-top: 350px;
}

.pl350 {
  padding-left: 350px;
}

.pr350 {
  padding-right: 350px;
}

.pb350 {
  padding-bottom: 350px;
}

.mt355 {
  margin-top: 355px;
}

.ml355 {
  margin-left: 355px;
}

.mr355 {
  margin-right: 355px;
}

.mb355 {
  margin-bottom: 355px;
}

.pt355 {
  padding-top: 355px;
}

.pl355 {
  padding-left: 355px;
}

.pr355 {
  padding-right: 355px;
}

.pb355 {
  padding-bottom: 355px;
}

.mt360 {
  margin-top: 360px;
}

.ml360 {
  margin-left: 360px;
}

.mr360 {
  margin-right: 360px;
}

.mb360 {
  margin-bottom: 360px;
}

.pt360 {
  padding-top: 360px;
}

.pl360 {
  padding-left: 360px;
}

.pr360 {
  padding-right: 360px;
}

.pb360 {
  padding-bottom: 360px;
}

.mt365 {
  margin-top: 365px;
}

.ml365 {
  margin-left: 365px;
}

.mr365 {
  margin-right: 365px;
}

.mb365 {
  margin-bottom: 365px;
}

.pt365 {
  padding-top: 365px;
}

.pl365 {
  padding-left: 365px;
}

.pr365 {
  padding-right: 365px;
}

.pb365 {
  padding-bottom: 365px;
}

.mt370 {
  margin-top: 370px;
}

.ml370 {
  margin-left: 370px;
}

.mr370 {
  margin-right: 370px;
}

.mb370 {
  margin-bottom: 370px;
}

.pt370 {
  padding-top: 370px;
}

.pl370 {
  padding-left: 370px;
}

.pr370 {
  padding-right: 370px;
}

.pb370 {
  padding-bottom: 370px;
}

.mt375 {
  margin-top: 375px;
}

.ml375 {
  margin-left: 375px;
}

.mr375 {
  margin-right: 375px;
}

.mb375 {
  margin-bottom: 375px;
}

.pt375 {
  padding-top: 375px;
}

.pl375 {
  padding-left: 375px;
}

.pr375 {
  padding-right: 375px;
}

.pb375 {
  padding-bottom: 375px;
}

.mt380 {
  margin-top: 380px;
}

.ml380 {
  margin-left: 380px;
}

.mr380 {
  margin-right: 380px;
}

.mb380 {
  margin-bottom: 380px;
}

.pt380 {
  padding-top: 380px;
}

.pl380 {
  padding-left: 380px;
}

.pr380 {
  padding-right: 380px;
}

.pb380 {
  padding-bottom: 380px;
}

.mt385 {
  margin-top: 385px;
}

.ml385 {
  margin-left: 385px;
}

.mr385 {
  margin-right: 385px;
}

.mb385 {
  margin-bottom: 385px;
}

.pt385 {
  padding-top: 385px;
}

.pl385 {
  padding-left: 385px;
}

.pr385 {
  padding-right: 385px;
}

.pb385 {
  padding-bottom: 385px;
}

.mt390 {
  margin-top: 390px;
}

.ml390 {
  margin-left: 390px;
}

.mr390 {
  margin-right: 390px;
}

.mb390 {
  margin-bottom: 390px;
}

.pt390 {
  padding-top: 390px;
}

.pl390 {
  padding-left: 390px;
}

.pr390 {
  padding-right: 390px;
}

.pb390 {
  padding-bottom: 390px;
}

.mt395 {
  margin-top: 395px;
}

.ml395 {
  margin-left: 395px;
}

.mr395 {
  margin-right: 395px;
}

.mb395 {
  margin-bottom: 395px;
}

.pt395 {
  padding-top: 395px;
}

.pl395 {
  padding-left: 395px;
}

.pr395 {
  padding-right: 395px;
}

.pb395 {
  padding-bottom: 395px;
}

.mt400 {
  margin-top: 400px;
}

.ml400 {
  margin-left: 400px;
}

.mr400 {
  margin-right: 400px;
}

.mb400 {
  margin-bottom: 400px;
}

.pt400 {
  padding-top: 400px;
}

.pl400 {
  padding-left: 400px;
}

.pr400 {
  padding-right: 400px;
}

.pb400 {
  padding-bottom: 400px;
}

.mt405 {
  margin-top: 405px;
}

.ml405 {
  margin-left: 405px;
}

.mr405 {
  margin-right: 405px;
}

.mb405 {
  margin-bottom: 405px;
}

.pt405 {
  padding-top: 405px;
}

.pl405 {
  padding-left: 405px;
}

.pr405 {
  padding-right: 405px;
}

.pb405 {
  padding-bottom: 405px;
}

.mt410 {
  margin-top: 410px;
}

.ml410 {
  margin-left: 410px;
}

.mr410 {
  margin-right: 410px;
}

.mb410 {
  margin-bottom: 410px;
}

.pt410 {
  padding-top: 410px;
}

.pl410 {
  padding-left: 410px;
}

.pr410 {
  padding-right: 410px;
}

.pb410 {
  padding-bottom: 410px;
}

.mt415 {
  margin-top: 415px;
}

.ml415 {
  margin-left: 415px;
}

.mr415 {
  margin-right: 415px;
}

.mb415 {
  margin-bottom: 415px;
}

.pt415 {
  padding-top: 415px;
}

.pl415 {
  padding-left: 415px;
}

.pr415 {
  padding-right: 415px;
}

.pb415 {
  padding-bottom: 415px;
}

.mt420 {
  margin-top: 420px;
}

.ml420 {
  margin-left: 420px;
}

.mr420 {
  margin-right: 420px;
}

.mb420 {
  margin-bottom: 420px;
}

.pt420 {
  padding-top: 420px;
}

.pl420 {
  padding-left: 420px;
}

.pr420 {
  padding-right: 420px;
}

.pb420 {
  padding-bottom: 420px;
}

.mt425 {
  margin-top: 425px;
}

.ml425 {
  margin-left: 425px;
}

.mr425 {
  margin-right: 425px;
}

.mb425 {
  margin-bottom: 425px;
}

.pt425 {
  padding-top: 425px;
}

.pl425 {
  padding-left: 425px;
}

.pr425 {
  padding-right: 425px;
}

.pb425 {
  padding-bottom: 425px;
}

.mt430 {
  margin-top: 430px;
}

.ml430 {
  margin-left: 430px;
}

.mr430 {
  margin-right: 430px;
}

.mb430 {
  margin-bottom: 430px;
}

.pt430 {
  padding-top: 430px;
}

.pl430 {
  padding-left: 430px;
}

.pr430 {
  padding-right: 430px;
}

.pb430 {
  padding-bottom: 430px;
}

.mt435 {
  margin-top: 435px;
}

.ml435 {
  margin-left: 435px;
}

.mr435 {
  margin-right: 435px;
}

.mb435 {
  margin-bottom: 435px;
}

.pt435 {
  padding-top: 435px;
}

.pl435 {
  padding-left: 435px;
}

.pr435 {
  padding-right: 435px;
}

.pb435 {
  padding-bottom: 435px;
}

.mt440 {
  margin-top: 440px;
}

.ml440 {
  margin-left: 440px;
}

.mr440 {
  margin-right: 440px;
}

.mb440 {
  margin-bottom: 440px;
}

.pt440 {
  padding-top: 440px;
}

.pl440 {
  padding-left: 440px;
}

.pr440 {
  padding-right: 440px;
}

.pb440 {
  padding-bottom: 440px;
}

.mt445 {
  margin-top: 445px;
}

.ml445 {
  margin-left: 445px;
}

.mr445 {
  margin-right: 445px;
}

.mb445 {
  margin-bottom: 445px;
}

.pt445 {
  padding-top: 445px;
}

.pl445 {
  padding-left: 445px;
}

.pr445 {
  padding-right: 445px;
}

.pb445 {
  padding-bottom: 445px;
}

.mt450 {
  margin-top: 450px;
}

.ml450 {
  margin-left: 450px;
}

.mr450 {
  margin-right: 450px;
}

.mb450 {
  margin-bottom: 450px;
}

.pt450 {
  padding-top: 450px;
}

.pl450 {
  padding-left: 450px;
}

.pr450 {
  padding-right: 450px;
}

.pb450 {
  padding-bottom: 450px;
}

.mt455 {
  margin-top: 455px;
}

.ml455 {
  margin-left: 455px;
}

.mr455 {
  margin-right: 455px;
}

.mb455 {
  margin-bottom: 455px;
}

.pt455 {
  padding-top: 455px;
}

.pl455 {
  padding-left: 455px;
}

.pr455 {
  padding-right: 455px;
}

.pb455 {
  padding-bottom: 455px;
}

.mt460 {
  margin-top: 460px;
}

.ml460 {
  margin-left: 460px;
}

.mr460 {
  margin-right: 460px;
}

.mb460 {
  margin-bottom: 460px;
}

.pt460 {
  padding-top: 460px;
}

.pl460 {
  padding-left: 460px;
}

.pr460 {
  padding-right: 460px;
}

.pb460 {
  padding-bottom: 460px;
}

.mt465 {
  margin-top: 465px;
}

.ml465 {
  margin-left: 465px;
}

.mr465 {
  margin-right: 465px;
}

.mb465 {
  margin-bottom: 465px;
}

.pt465 {
  padding-top: 465px;
}

.pl465 {
  padding-left: 465px;
}

.pr465 {
  padding-right: 465px;
}

.pb465 {
  padding-bottom: 465px;
}

.mt470 {
  margin-top: 470px;
}

.ml470 {
  margin-left: 470px;
}

.mr470 {
  margin-right: 470px;
}

.mb470 {
  margin-bottom: 470px;
}

.pt470 {
  padding-top: 470px;
}

.pl470 {
  padding-left: 470px;
}

.pr470 {
  padding-right: 470px;
}

.pb470 {
  padding-bottom: 470px;
}

.mt475 {
  margin-top: 475px;
}

.ml475 {
  margin-left: 475px;
}

.mr475 {
  margin-right: 475px;
}

.mb475 {
  margin-bottom: 475px;
}

.pt475 {
  padding-top: 475px;
}

.pl475 {
  padding-left: 475px;
}

.pr475 {
  padding-right: 475px;
}

.pb475 {
  padding-bottom: 475px;
}

.mt480 {
  margin-top: 480px;
}

.ml480 {
  margin-left: 480px;
}

.mr480 {
  margin-right: 480px;
}

.mb480 {
  margin-bottom: 480px;
}

.pt480 {
  padding-top: 480px;
}

.pl480 {
  padding-left: 480px;
}

.pr480 {
  padding-right: 480px;
}

.pb480 {
  padding-bottom: 480px;
}

.mt485 {
  margin-top: 485px;
}

.ml485 {
  margin-left: 485px;
}

.mr485 {
  margin-right: 485px;
}

.mb485 {
  margin-bottom: 485px;
}

.pt485 {
  padding-top: 485px;
}

.pl485 {
  padding-left: 485px;
}

.pr485 {
  padding-right: 485px;
}

.pb485 {
  padding-bottom: 485px;
}

.mt490 {
  margin-top: 490px;
}

.ml490 {
  margin-left: 490px;
}

.mr490 {
  margin-right: 490px;
}

.mb490 {
  margin-bottom: 490px;
}

.pt490 {
  padding-top: 490px;
}

.pl490 {
  padding-left: 490px;
}

.pr490 {
  padding-right: 490px;
}

.pb490 {
  padding-bottom: 490px;
}

.mt495 {
  margin-top: 495px;
}

.ml495 {
  margin-left: 495px;
}

.mr495 {
  margin-right: 495px;
}

.mb495 {
  margin-bottom: 495px;
}

.pt495 {
  padding-top: 495px;
}

.pl495 {
  padding-left: 495px;
}

.pr495 {
  padding-right: 495px;
}

.pb495 {
  padding-bottom: 495px;
}

.mt500 {
  margin-top: 500px;
}

.ml500 {
  margin-left: 500px;
}

.mr500 {
  margin-right: 500px;
}

.mb500 {
  margin-bottom: 500px;
}

.pt500 {
  padding-top: 500px;
}

.pl500 {
  padding-left: 500px;
}

.pr500 {
  padding-right: 500px;
}

.pb500 {
  padding-bottom: 500px;
}

.mt505 {
  margin-top: 505px;
}

.ml505 {
  margin-left: 505px;
}

.mr505 {
  margin-right: 505px;
}

.mb505 {
  margin-bottom: 505px;
}

.pt505 {
  padding-top: 505px;
}

.pl505 {
  padding-left: 505px;
}

.pr505 {
  padding-right: 505px;
}

.pb505 {
  padding-bottom: 505px;
}

.mt510 {
  margin-top: 510px;
}

.ml510 {
  margin-left: 510px;
}

.mr510 {
  margin-right: 510px;
}

.mb510 {
  margin-bottom: 510px;
}

.pt510 {
  padding-top: 510px;
}

.pl510 {
  padding-left: 510px;
}

.pr510 {
  padding-right: 510px;
}

.pb510 {
  padding-bottom: 510px;
}

.mt515 {
  margin-top: 515px;
}

.ml515 {
  margin-left: 515px;
}

.mr515 {
  margin-right: 515px;
}

.mb515 {
  margin-bottom: 515px;
}

.pt515 {
  padding-top: 515px;
}

.pl515 {
  padding-left: 515px;
}

.pr515 {
  padding-right: 515px;
}

.pb515 {
  padding-bottom: 515px;
}

.mt520 {
  margin-top: 520px;
}

.ml520 {
  margin-left: 520px;
}

.mr520 {
  margin-right: 520px;
}

.mb520 {
  margin-bottom: 520px;
}

.pt520 {
  padding-top: 520px;
}

.pl520 {
  padding-left: 520px;
}

.pr520 {
  padding-right: 520px;
}

.pb520 {
  padding-bottom: 520px;
}

.mt525 {
  margin-top: 525px;
}

.ml525 {
  margin-left: 525px;
}

.mr525 {
  margin-right: 525px;
}

.mb525 {
  margin-bottom: 525px;
}

.pt525 {
  padding-top: 525px;
}

.pl525 {
  padding-left: 525px;
}

.pr525 {
  padding-right: 525px;
}

.pb525 {
  padding-bottom: 525px;
}

.mt530 {
  margin-top: 530px;
}

.ml530 {
  margin-left: 530px;
}

.mr530 {
  margin-right: 530px;
}

.mb530 {
  margin-bottom: 530px;
}

.pt530 {
  padding-top: 530px;
}

.pl530 {
  padding-left: 530px;
}

.pr530 {
  padding-right: 530px;
}

.pb530 {
  padding-bottom: 530px;
}

.mt535 {
  margin-top: 535px;
}

.ml535 {
  margin-left: 535px;
}

.mr535 {
  margin-right: 535px;
}

.mb535 {
  margin-bottom: 535px;
}

.pt535 {
  padding-top: 535px;
}

.pl535 {
  padding-left: 535px;
}

.pr535 {
  padding-right: 535px;
}

.pb535 {
  padding-bottom: 535px;
}

.mt540 {
  margin-top: 540px;
}

.ml540 {
  margin-left: 540px;
}

.mr540 {
  margin-right: 540px;
}

.mb540 {
  margin-bottom: 540px;
}

.pt540 {
  padding-top: 540px;
}

.pl540 {
  padding-left: 540px;
}

.pr540 {
  padding-right: 540px;
}

.pb540 {
  padding-bottom: 540px;
}

.mt545 {
  margin-top: 545px;
}

.ml545 {
  margin-left: 545px;
}

.mr545 {
  margin-right: 545px;
}

.mb545 {
  margin-bottom: 545px;
}

.pt545 {
  padding-top: 545px;
}

.pl545 {
  padding-left: 545px;
}

.pr545 {
  padding-right: 545px;
}

.pb545 {
  padding-bottom: 545px;
}

.mt550 {
  margin-top: 550px;
}

.ml550 {
  margin-left: 550px;
}

.mr550 {
  margin-right: 550px;
}

.mb550 {
  margin-bottom: 550px;
}

.pt550 {
  padding-top: 550px;
}

.pl550 {
  padding-left: 550px;
}

.pr550 {
  padding-right: 550px;
}

.pb550 {
  padding-bottom: 550px;
}

.mt555 {
  margin-top: 555px;
}

.ml555 {
  margin-left: 555px;
}

.mr555 {
  margin-right: 555px;
}

.mb555 {
  margin-bottom: 555px;
}

.pt555 {
  padding-top: 555px;
}

.pl555 {
  padding-left: 555px;
}

.pr555 {
  padding-right: 555px;
}

.pb555 {
  padding-bottom: 555px;
}

.mt560 {
  margin-top: 560px;
}

.ml560 {
  margin-left: 560px;
}

.mr560 {
  margin-right: 560px;
}

.mb560 {
  margin-bottom: 560px;
}

.pt560 {
  padding-top: 560px;
}

.pl560 {
  padding-left: 560px;
}

.pr560 {
  padding-right: 560px;
}

.pb560 {
  padding-bottom: 560px;
}

.mt565 {
  margin-top: 565px;
}

.ml565 {
  margin-left: 565px;
}

.mr565 {
  margin-right: 565px;
}

.mb565 {
  margin-bottom: 565px;
}

.pt565 {
  padding-top: 565px;
}

.pl565 {
  padding-left: 565px;
}

.pr565 {
  padding-right: 565px;
}

.pb565 {
  padding-bottom: 565px;
}

.mt570 {
  margin-top: 570px;
}

.ml570 {
  margin-left: 570px;
}

.mr570 {
  margin-right: 570px;
}

.mb570 {
  margin-bottom: 570px;
}

.pt570 {
  padding-top: 570px;
}

.pl570 {
  padding-left: 570px;
}

.pr570 {
  padding-right: 570px;
}

.pb570 {
  padding-bottom: 570px;
}

.mt575 {
  margin-top: 575px;
}

.ml575 {
  margin-left: 575px;
}

.mr575 {
  margin-right: 575px;
}

.mb575 {
  margin-bottom: 575px;
}

.pt575 {
  padding-top: 575px;
}

.pl575 {
  padding-left: 575px;
}

.pr575 {
  padding-right: 575px;
}

.pb575 {
  padding-bottom: 575px;
}

.mt580 {
  margin-top: 580px;
}

.ml580 {
  margin-left: 580px;
}

.mr580 {
  margin-right: 580px;
}

.mb580 {
  margin-bottom: 580px;
}

.pt580 {
  padding-top: 580px;
}

.pl580 {
  padding-left: 580px;
}

.pr580 {
  padding-right: 580px;
}

.pb580 {
  padding-bottom: 580px;
}

.mt585 {
  margin-top: 585px;
}

.ml585 {
  margin-left: 585px;
}

.mr585 {
  margin-right: 585px;
}

.mb585 {
  margin-bottom: 585px;
}

.pt585 {
  padding-top: 585px;
}

.pl585 {
  padding-left: 585px;
}

.pr585 {
  padding-right: 585px;
}

.pb585 {
  padding-bottom: 585px;
}

.mt590 {
  margin-top: 590px;
}

.ml590 {
  margin-left: 590px;
}

.mr590 {
  margin-right: 590px;
}

.mb590 {
  margin-bottom: 590px;
}

.pt590 {
  padding-top: 590px;
}

.pl590 {
  padding-left: 590px;
}

.pr590 {
  padding-right: 590px;
}

.pb590 {
  padding-bottom: 590px;
}

.mt595 {
  margin-top: 595px;
}

.ml595 {
  margin-left: 595px;
}

.mr595 {
  margin-right: 595px;
}

.mb595 {
  margin-bottom: 595px;
}

.pt595 {
  padding-top: 595px;
}

.pl595 {
  padding-left: 595px;
}

.pr595 {
  padding-right: 595px;
}

.pb595 {
  padding-bottom: 595px;
}

.mt600 {
  margin-top: 600px;
}

.ml600 {
  margin-left: 600px;
}

.mr600 {
  margin-right: 600px;
}

.mb600 {
  margin-bottom: 600px;
}

.pt600 {
  padding-top: 600px;
}

.pl600 {
  padding-left: 600px;
}

.pr600 {
  padding-right: 600px;
}

.pb600 {
  padding-bottom: 600px;
}

.mt605 {
  margin-top: 605px;
}

.ml605 {
  margin-left: 605px;
}

.mr605 {
  margin-right: 605px;
}

.mb605 {
  margin-bottom: 605px;
}

.pt605 {
  padding-top: 605px;
}

.pl605 {
  padding-left: 605px;
}

.pr605 {
  padding-right: 605px;
}

.pb605 {
  padding-bottom: 605px;
}

.mt610 {
  margin-top: 610px;
}

.ml610 {
  margin-left: 610px;
}

.mr610 {
  margin-right: 610px;
}

.mb610 {
  margin-bottom: 610px;
}

.pt610 {
  padding-top: 610px;
}

.pl610 {
  padding-left: 610px;
}

.pr610 {
  padding-right: 610px;
}

.pb610 {
  padding-bottom: 610px;
}

.mt615 {
  margin-top: 615px;
}

.ml615 {
  margin-left: 615px;
}

.mr615 {
  margin-right: 615px;
}

.mb615 {
  margin-bottom: 615px;
}

.pt615 {
  padding-top: 615px;
}

.pl615 {
  padding-left: 615px;
}

.pr615 {
  padding-right: 615px;
}

.pb615 {
  padding-bottom: 615px;
}

.mt620 {
  margin-top: 620px;
}

.ml620 {
  margin-left: 620px;
}

.mr620 {
  margin-right: 620px;
}

.mb620 {
  margin-bottom: 620px;
}

.pt620 {
  padding-top: 620px;
}

.pl620 {
  padding-left: 620px;
}

.pr620 {
  padding-right: 620px;
}

.pb620 {
  padding-bottom: 620px;
}

.mt625 {
  margin-top: 625px;
}

.ml625 {
  margin-left: 625px;
}

.mr625 {
  margin-right: 625px;
}

.mb625 {
  margin-bottom: 625px;
}

.pt625 {
  padding-top: 625px;
}

.pl625 {
  padding-left: 625px;
}

.pr625 {
  padding-right: 625px;
}

.pb625 {
  padding-bottom: 625px;
}

.mt630 {
  margin-top: 630px;
}

.ml630 {
  margin-left: 630px;
}

.mr630 {
  margin-right: 630px;
}

.mb630 {
  margin-bottom: 630px;
}

.pt630 {
  padding-top: 630px;
}

.pl630 {
  padding-left: 630px;
}

.pr630 {
  padding-right: 630px;
}

.pb630 {
  padding-bottom: 630px;
}

.mt635 {
  margin-top: 635px;
}

.ml635 {
  margin-left: 635px;
}

.mr635 {
  margin-right: 635px;
}

.mb635 {
  margin-bottom: 635px;
}

.pt635 {
  padding-top: 635px;
}

.pl635 {
  padding-left: 635px;
}

.pr635 {
  padding-right: 635px;
}

.pb635 {
  padding-bottom: 635px;
}

.mt640 {
  margin-top: 640px;
}

.ml640 {
  margin-left: 640px;
}

.mr640 {
  margin-right: 640px;
}

.mb640 {
  margin-bottom: 640px;
}

.pt640 {
  padding-top: 640px;
}

.pl640 {
  padding-left: 640px;
}

.pr640 {
  padding-right: 640px;
}

.pb640 {
  padding-bottom: 640px;
}

.mt645 {
  margin-top: 645px;
}

.ml645 {
  margin-left: 645px;
}

.mr645 {
  margin-right: 645px;
}

.mb645 {
  margin-bottom: 645px;
}

.pt645 {
  padding-top: 645px;
}

.pl645 {
  padding-left: 645px;
}

.pr645 {
  padding-right: 645px;
}

.pb645 {
  padding-bottom: 645px;
}

.mt650 {
  margin-top: 650px;
}

.ml650 {
  margin-left: 650px;
}

.mr650 {
  margin-right: 650px;
}

.mb650 {
  margin-bottom: 650px;
}

.pt650 {
  padding-top: 650px;
}

.pl650 {
  padding-left: 650px;
}

.pr650 {
  padding-right: 650px;
}

.pb650 {
  padding-bottom: 650px;
}

.mt655 {
  margin-top: 655px;
}

.ml655 {
  margin-left: 655px;
}

.mr655 {
  margin-right: 655px;
}

.mb655 {
  margin-bottom: 655px;
}

.pt655 {
  padding-top: 655px;
}

.pl655 {
  padding-left: 655px;
}

.pr655 {
  padding-right: 655px;
}

.pb655 {
  padding-bottom: 655px;
}

.mt660 {
  margin-top: 660px;
}

.ml660 {
  margin-left: 660px;
}

.mr660 {
  margin-right: 660px;
}

.mb660 {
  margin-bottom: 660px;
}

.pt660 {
  padding-top: 660px;
}

.pl660 {
  padding-left: 660px;
}

.pr660 {
  padding-right: 660px;
}

.pb660 {
  padding-bottom: 660px;
}

.mt665 {
  margin-top: 665px;
}

.ml665 {
  margin-left: 665px;
}

.mr665 {
  margin-right: 665px;
}

.mb665 {
  margin-bottom: 665px;
}

.pt665 {
  padding-top: 665px;
}

.pl665 {
  padding-left: 665px;
}

.pr665 {
  padding-right: 665px;
}

.pb665 {
  padding-bottom: 665px;
}

.mt670 {
  margin-top: 670px;
}

.ml670 {
  margin-left: 670px;
}

.mr670 {
  margin-right: 670px;
}

.mb670 {
  margin-bottom: 670px;
}

.pt670 {
  padding-top: 670px;
}

.pl670 {
  padding-left: 670px;
}

.pr670 {
  padding-right: 670px;
}

.pb670 {
  padding-bottom: 670px;
}

.mt675 {
  margin-top: 675px;
}

.ml675 {
  margin-left: 675px;
}

.mr675 {
  margin-right: 675px;
}

.mb675 {
  margin-bottom: 675px;
}

.pt675 {
  padding-top: 675px;
}

.pl675 {
  padding-left: 675px;
}

.pr675 {
  padding-right: 675px;
}

.pb675 {
  padding-bottom: 675px;
}

.mt680 {
  margin-top: 680px;
}

.ml680 {
  margin-left: 680px;
}

.mr680 {
  margin-right: 680px;
}

.mb680 {
  margin-bottom: 680px;
}

.pt680 {
  padding-top: 680px;
}

.pl680 {
  padding-left: 680px;
}

.pr680 {
  padding-right: 680px;
}

.pb680 {
  padding-bottom: 680px;
}

.mt685 {
  margin-top: 685px;
}

.ml685 {
  margin-left: 685px;
}

.mr685 {
  margin-right: 685px;
}

.mb685 {
  margin-bottom: 685px;
}

.pt685 {
  padding-top: 685px;
}

.pl685 {
  padding-left: 685px;
}

.pr685 {
  padding-right: 685px;
}

.pb685 {
  padding-bottom: 685px;
}

.mt690 {
  margin-top: 690px;
}

.ml690 {
  margin-left: 690px;
}

.mr690 {
  margin-right: 690px;
}

.mb690 {
  margin-bottom: 690px;
}

.pt690 {
  padding-top: 690px;
}

.pl690 {
  padding-left: 690px;
}

.pr690 {
  padding-right: 690px;
}

.pb690 {
  padding-bottom: 690px;
}

.mt695 {
  margin-top: 695px;
}

.ml695 {
  margin-left: 695px;
}

.mr695 {
  margin-right: 695px;
}

.mb695 {
  margin-bottom: 695px;
}

.pt695 {
  padding-top: 695px;
}

.pl695 {
  padding-left: 695px;
}

.pr695 {
  padding-right: 695px;
}

.pb695 {
  padding-bottom: 695px;
}

.mt700 {
  margin-top: 700px;
}

.ml700 {
  margin-left: 700px;
}

.mr700 {
  margin-right: 700px;
}

.mb700 {
  margin-bottom: 700px;
}

.pt700 {
  padding-top: 700px;
}

.pl700 {
  padding-left: 700px;
}

.pr700 {
  padding-right: 700px;
}

.pb700 {
  padding-bottom: 700px;
}

.mt705 {
  margin-top: 705px;
}

.ml705 {
  margin-left: 705px;
}

.mr705 {
  margin-right: 705px;
}

.mb705 {
  margin-bottom: 705px;
}

.pt705 {
  padding-top: 705px;
}

.pl705 {
  padding-left: 705px;
}

.pr705 {
  padding-right: 705px;
}

.pb705 {
  padding-bottom: 705px;
}

.mt710 {
  margin-top: 710px;
}

.ml710 {
  margin-left: 710px;
}

.mr710 {
  margin-right: 710px;
}

.mb710 {
  margin-bottom: 710px;
}

.pt710 {
  padding-top: 710px;
}

.pl710 {
  padding-left: 710px;
}

.pr710 {
  padding-right: 710px;
}

.pb710 {
  padding-bottom: 710px;
}

.mt715 {
  margin-top: 715px;
}

.ml715 {
  margin-left: 715px;
}

.mr715 {
  margin-right: 715px;
}

.mb715 {
  margin-bottom: 715px;
}

.pt715 {
  padding-top: 715px;
}

.pl715 {
  padding-left: 715px;
}

.pr715 {
  padding-right: 715px;
}

.pb715 {
  padding-bottom: 715px;
}

.mt720 {
  margin-top: 720px;
}

.ml720 {
  margin-left: 720px;
}

.mr720 {
  margin-right: 720px;
}

.mb720 {
  margin-bottom: 720px;
}

.pt720 {
  padding-top: 720px;
}

.pl720 {
  padding-left: 720px;
}

.pr720 {
  padding-right: 720px;
}

.pb720 {
  padding-bottom: 720px;
}

.mt725 {
  margin-top: 725px;
}

.ml725 {
  margin-left: 725px;
}

.mr725 {
  margin-right: 725px;
}

.mb725 {
  margin-bottom: 725px;
}

.pt725 {
  padding-top: 725px;
}

.pl725 {
  padding-left: 725px;
}

.pr725 {
  padding-right: 725px;
}

.pb725 {
  padding-bottom: 725px;
}

.mt730 {
  margin-top: 730px;
}

.ml730 {
  margin-left: 730px;
}

.mr730 {
  margin-right: 730px;
}

.mb730 {
  margin-bottom: 730px;
}

.pt730 {
  padding-top: 730px;
}

.pl730 {
  padding-left: 730px;
}

.pr730 {
  padding-right: 730px;
}

.pb730 {
  padding-bottom: 730px;
}

.mt735 {
  margin-top: 735px;
}

.ml735 {
  margin-left: 735px;
}

.mr735 {
  margin-right: 735px;
}

.mb735 {
  margin-bottom: 735px;
}

.pt735 {
  padding-top: 735px;
}

.pl735 {
  padding-left: 735px;
}

.pr735 {
  padding-right: 735px;
}

.pb735 {
  padding-bottom: 735px;
}

.mt740 {
  margin-top: 740px;
}

.ml740 {
  margin-left: 740px;
}

.mr740 {
  margin-right: 740px;
}

.mb740 {
  margin-bottom: 740px;
}

.pt740 {
  padding-top: 740px;
}

.pl740 {
  padding-left: 740px;
}

.pr740 {
  padding-right: 740px;
}

.pb740 {
  padding-bottom: 740px;
}

.mt745 {
  margin-top: 745px;
}

.ml745 {
  margin-left: 745px;
}

.mr745 {
  margin-right: 745px;
}

.mb745 {
  margin-bottom: 745px;
}

.pt745 {
  padding-top: 745px;
}

.pl745 {
  padding-left: 745px;
}

.pr745 {
  padding-right: 745px;
}

.pb745 {
  padding-bottom: 745px;
}

.mt750 {
  margin-top: 750px;
}

.ml750 {
  margin-left: 750px;
}

.mr750 {
  margin-right: 750px;
}

.mb750 {
  margin-bottom: 750px;
}

.pt750 {
  padding-top: 750px;
}

.pl750 {
  padding-left: 750px;
}

.pr750 {
  padding-right: 750px;
}

.pb750 {
  padding-bottom: 750px;
}

.mt755 {
  margin-top: 755px;
}

.ml755 {
  margin-left: 755px;
}

.mr755 {
  margin-right: 755px;
}

.mb755 {
  margin-bottom: 755px;
}

.pt755 {
  padding-top: 755px;
}

.pl755 {
  padding-left: 755px;
}

.pr755 {
  padding-right: 755px;
}

.pb755 {
  padding-bottom: 755px;
}

.mt760 {
  margin-top: 760px;
}

.ml760 {
  margin-left: 760px;
}

.mr760 {
  margin-right: 760px;
}

.mb760 {
  margin-bottom: 760px;
}

.pt760 {
  padding-top: 760px;
}

.pl760 {
  padding-left: 760px;
}

.pr760 {
  padding-right: 760px;
}

.pb760 {
  padding-bottom: 760px;
}

.mt765 {
  margin-top: 765px;
}

.ml765 {
  margin-left: 765px;
}

.mr765 {
  margin-right: 765px;
}

.mb765 {
  margin-bottom: 765px;
}

.pt765 {
  padding-top: 765px;
}

.pl765 {
  padding-left: 765px;
}

.pr765 {
  padding-right: 765px;
}

.pb765 {
  padding-bottom: 765px;
}

.mt770 {
  margin-top: 770px;
}

.ml770 {
  margin-left: 770px;
}

.mr770 {
  margin-right: 770px;
}

.mb770 {
  margin-bottom: 770px;
}

.pt770 {
  padding-top: 770px;
}

.pl770 {
  padding-left: 770px;
}

.pr770 {
  padding-right: 770px;
}

.pb770 {
  padding-bottom: 770px;
}

.mt775 {
  margin-top: 775px;
}

.ml775 {
  margin-left: 775px;
}

.mr775 {
  margin-right: 775px;
}

.mb775 {
  margin-bottom: 775px;
}

.pt775 {
  padding-top: 775px;
}

.pl775 {
  padding-left: 775px;
}

.pr775 {
  padding-right: 775px;
}

.pb775 {
  padding-bottom: 775px;
}

.mt780 {
  margin-top: 780px;
}

.ml780 {
  margin-left: 780px;
}

.mr780 {
  margin-right: 780px;
}

.mb780 {
  margin-bottom: 780px;
}

.pt780 {
  padding-top: 780px;
}

.pl780 {
  padding-left: 780px;
}

.pr780 {
  padding-right: 780px;
}

.pb780 {
  padding-bottom: 780px;
}

.mt785 {
  margin-top: 785px;
}

.ml785 {
  margin-left: 785px;
}

.mr785 {
  margin-right: 785px;
}

.mb785 {
  margin-bottom: 785px;
}

.pt785 {
  padding-top: 785px;
}

.pl785 {
  padding-left: 785px;
}

.pr785 {
  padding-right: 785px;
}

.pb785 {
  padding-bottom: 785px;
}

.mt790 {
  margin-top: 790px;
}

.ml790 {
  margin-left: 790px;
}

.mr790 {
  margin-right: 790px;
}

.mb790 {
  margin-bottom: 790px;
}

.pt790 {
  padding-top: 790px;
}

.pl790 {
  padding-left: 790px;
}

.pr790 {
  padding-right: 790px;
}

.pb790 {
  padding-bottom: 790px;
}

.mt795 {
  margin-top: 795px;
}

.ml795 {
  margin-left: 795px;
}

.mr795 {
  margin-right: 795px;
}

.mb795 {
  margin-bottom: 795px;
}

.pt795 {
  padding-top: 795px;
}

.pl795 {
  padding-left: 795px;
}

.pr795 {
  padding-right: 795px;
}

.pb795 {
  padding-bottom: 795px;
}

.mt800 {
  margin-top: 800px;
}

.ml800 {
  margin-left: 800px;
}

.mr800 {
  margin-right: 800px;
}

.mb800 {
  margin-bottom: 800px;
}

.pt800 {
  padding-top: 800px;
}

.pl800 {
  padding-left: 800px;
}

.pr800 {
  padding-right: 800px;
}

.pb800 {
  padding-bottom: 800px;
}

.mt805 {
  margin-top: 805px;
}

.ml805 {
  margin-left: 805px;
}

.mr805 {
  margin-right: 805px;
}

.mb805 {
  margin-bottom: 805px;
}

.pt805 {
  padding-top: 805px;
}

.pl805 {
  padding-left: 805px;
}

.pr805 {
  padding-right: 805px;
}

.pb805 {
  padding-bottom: 805px;
}

.mt810 {
  margin-top: 810px;
}

.ml810 {
  margin-left: 810px;
}

.mr810 {
  margin-right: 810px;
}

.mb810 {
  margin-bottom: 810px;
}

.pt810 {
  padding-top: 810px;
}

.pl810 {
  padding-left: 810px;
}

.pr810 {
  padding-right: 810px;
}

.pb810 {
  padding-bottom: 810px;
}

.mt815 {
  margin-top: 815px;
}

.ml815 {
  margin-left: 815px;
}

.mr815 {
  margin-right: 815px;
}

.mb815 {
  margin-bottom: 815px;
}

.pt815 {
  padding-top: 815px;
}

.pl815 {
  padding-left: 815px;
}

.pr815 {
  padding-right: 815px;
}

.pb815 {
  padding-bottom: 815px;
}

.mt820 {
  margin-top: 820px;
}

.ml820 {
  margin-left: 820px;
}

.mr820 {
  margin-right: 820px;
}

.mb820 {
  margin-bottom: 820px;
}

.pt820 {
  padding-top: 820px;
}

.pl820 {
  padding-left: 820px;
}

.pr820 {
  padding-right: 820px;
}

.pb820 {
  padding-bottom: 820px;
}

.mt825 {
  margin-top: 825px;
}

.ml825 {
  margin-left: 825px;
}

.mr825 {
  margin-right: 825px;
}

.mb825 {
  margin-bottom: 825px;
}

.pt825 {
  padding-top: 825px;
}

.pl825 {
  padding-left: 825px;
}

.pr825 {
  padding-right: 825px;
}

.pb825 {
  padding-bottom: 825px;
}

.mt830 {
  margin-top: 830px;
}

.ml830 {
  margin-left: 830px;
}

.mr830 {
  margin-right: 830px;
}

.mb830 {
  margin-bottom: 830px;
}

.pt830 {
  padding-top: 830px;
}

.pl830 {
  padding-left: 830px;
}

.pr830 {
  padding-right: 830px;
}

.pb830 {
  padding-bottom: 830px;
}

.mt835 {
  margin-top: 835px;
}

.ml835 {
  margin-left: 835px;
}

.mr835 {
  margin-right: 835px;
}

.mb835 {
  margin-bottom: 835px;
}

.pt835 {
  padding-top: 835px;
}

.pl835 {
  padding-left: 835px;
}

.pr835 {
  padding-right: 835px;
}

.pb835 {
  padding-bottom: 835px;
}

.mt840 {
  margin-top: 840px;
}

.ml840 {
  margin-left: 840px;
}

.mr840 {
  margin-right: 840px;
}

.mb840 {
  margin-bottom: 840px;
}

.pt840 {
  padding-top: 840px;
}

.pl840 {
  padding-left: 840px;
}

.pr840 {
  padding-right: 840px;
}

.pb840 {
  padding-bottom: 840px;
}

.mt845 {
  margin-top: 845px;
}

.ml845 {
  margin-left: 845px;
}

.mr845 {
  margin-right: 845px;
}

.mb845 {
  margin-bottom: 845px;
}

.pt845 {
  padding-top: 845px;
}

.pl845 {
  padding-left: 845px;
}

.pr845 {
  padding-right: 845px;
}

.pb845 {
  padding-bottom: 845px;
}

.mt850 {
  margin-top: 850px;
}

.ml850 {
  margin-left: 850px;
}

.mr850 {
  margin-right: 850px;
}

.mb850 {
  margin-bottom: 850px;
}

.pt850 {
  padding-top: 850px;
}

.pl850 {
  padding-left: 850px;
}

.pr850 {
  padding-right: 850px;
}

.pb850 {
  padding-bottom: 850px;
}

.mt855 {
  margin-top: 855px;
}

.ml855 {
  margin-left: 855px;
}

.mr855 {
  margin-right: 855px;
}

.mb855 {
  margin-bottom: 855px;
}

.pt855 {
  padding-top: 855px;
}

.pl855 {
  padding-left: 855px;
}

.pr855 {
  padding-right: 855px;
}

.pb855 {
  padding-bottom: 855px;
}

.mt860 {
  margin-top: 860px;
}

.ml860 {
  margin-left: 860px;
}

.mr860 {
  margin-right: 860px;
}

.mb860 {
  margin-bottom: 860px;
}

.pt860 {
  padding-top: 860px;
}

.pl860 {
  padding-left: 860px;
}

.pr860 {
  padding-right: 860px;
}

.pb860 {
  padding-bottom: 860px;
}

.mt865 {
  margin-top: 865px;
}

.ml865 {
  margin-left: 865px;
}

.mr865 {
  margin-right: 865px;
}

.mb865 {
  margin-bottom: 865px;
}

.pt865 {
  padding-top: 865px;
}

.pl865 {
  padding-left: 865px;
}

.pr865 {
  padding-right: 865px;
}

.pb865 {
  padding-bottom: 865px;
}

.mt870 {
  margin-top: 870px;
}

.ml870 {
  margin-left: 870px;
}

.mr870 {
  margin-right: 870px;
}

.mb870 {
  margin-bottom: 870px;
}

.pt870 {
  padding-top: 870px;
}

.pl870 {
  padding-left: 870px;
}

.pr870 {
  padding-right: 870px;
}

.pb870 {
  padding-bottom: 870px;
}

.mt875 {
  margin-top: 875px;
}

.ml875 {
  margin-left: 875px;
}

.mr875 {
  margin-right: 875px;
}

.mb875 {
  margin-bottom: 875px;
}

.pt875 {
  padding-top: 875px;
}

.pl875 {
  padding-left: 875px;
}

.pr875 {
  padding-right: 875px;
}

.pb875 {
  padding-bottom: 875px;
}

.mt880 {
  margin-top: 880px;
}

.ml880 {
  margin-left: 880px;
}

.mr880 {
  margin-right: 880px;
}

.mb880 {
  margin-bottom: 880px;
}

.pt880 {
  padding-top: 880px;
}

.pl880 {
  padding-left: 880px;
}

.pr880 {
  padding-right: 880px;
}

.pb880 {
  padding-bottom: 880px;
}

.mt885 {
  margin-top: 885px;
}

.ml885 {
  margin-left: 885px;
}

.mr885 {
  margin-right: 885px;
}

.mb885 {
  margin-bottom: 885px;
}

.pt885 {
  padding-top: 885px;
}

.pl885 {
  padding-left: 885px;
}

.pr885 {
  padding-right: 885px;
}

.pb885 {
  padding-bottom: 885px;
}

.mt890 {
  margin-top: 890px;
}

.ml890 {
  margin-left: 890px;
}

.mr890 {
  margin-right: 890px;
}

.mb890 {
  margin-bottom: 890px;
}

.pt890 {
  padding-top: 890px;
}

.pl890 {
  padding-left: 890px;
}

.pr890 {
  padding-right: 890px;
}

.pb890 {
  padding-bottom: 890px;
}

.mt895 {
  margin-top: 895px;
}

.ml895 {
  margin-left: 895px;
}

.mr895 {
  margin-right: 895px;
}

.mb895 {
  margin-bottom: 895px;
}

.pt895 {
  padding-top: 895px;
}

.pl895 {
  padding-left: 895px;
}

.pr895 {
  padding-right: 895px;
}

.pb895 {
  padding-bottom: 895px;
}

.mt900 {
  margin-top: 900px;
}

.ml900 {
  margin-left: 900px;
}

.mr900 {
  margin-right: 900px;
}

.mb900 {
  margin-bottom: 900px;
}

.pt900 {
  padding-top: 900px;
}

.pl900 {
  padding-left: 900px;
}

.pr900 {
  padding-right: 900px;
}

.pb900 {
  padding-bottom: 900px;
}

.mt905 {
  margin-top: 905px;
}

.ml905 {
  margin-left: 905px;
}

.mr905 {
  margin-right: 905px;
}

.mb905 {
  margin-bottom: 905px;
}

.pt905 {
  padding-top: 905px;
}

.pl905 {
  padding-left: 905px;
}

.pr905 {
  padding-right: 905px;
}

.pb905 {
  padding-bottom: 905px;
}

.mt910 {
  margin-top: 910px;
}

.ml910 {
  margin-left: 910px;
}

.mr910 {
  margin-right: 910px;
}

.mb910 {
  margin-bottom: 910px;
}

.pt910 {
  padding-top: 910px;
}

.pl910 {
  padding-left: 910px;
}

.pr910 {
  padding-right: 910px;
}

.pb910 {
  padding-bottom: 910px;
}

.mt915 {
  margin-top: 915px;
}

.ml915 {
  margin-left: 915px;
}

.mr915 {
  margin-right: 915px;
}

.mb915 {
  margin-bottom: 915px;
}

.pt915 {
  padding-top: 915px;
}

.pl915 {
  padding-left: 915px;
}

.pr915 {
  padding-right: 915px;
}

.pb915 {
  padding-bottom: 915px;
}

.mt920 {
  margin-top: 920px;
}

.ml920 {
  margin-left: 920px;
}

.mr920 {
  margin-right: 920px;
}

.mb920 {
  margin-bottom: 920px;
}

.pt920 {
  padding-top: 920px;
}

.pl920 {
  padding-left: 920px;
}

.pr920 {
  padding-right: 920px;
}

.pb920 {
  padding-bottom: 920px;
}

.mt925 {
  margin-top: 925px;
}

.ml925 {
  margin-left: 925px;
}

.mr925 {
  margin-right: 925px;
}

.mb925 {
  margin-bottom: 925px;
}

.pt925 {
  padding-top: 925px;
}

.pl925 {
  padding-left: 925px;
}

.pr925 {
  padding-right: 925px;
}

.pb925 {
  padding-bottom: 925px;
}

.mt930 {
  margin-top: 930px;
}

.ml930 {
  margin-left: 930px;
}

.mr930 {
  margin-right: 930px;
}

.mb930 {
  margin-bottom: 930px;
}

.pt930 {
  padding-top: 930px;
}

.pl930 {
  padding-left: 930px;
}

.pr930 {
  padding-right: 930px;
}

.pb930 {
  padding-bottom: 930px;
}

.mt935 {
  margin-top: 935px;
}

.ml935 {
  margin-left: 935px;
}

.mr935 {
  margin-right: 935px;
}

.mb935 {
  margin-bottom: 935px;
}

.pt935 {
  padding-top: 935px;
}

.pl935 {
  padding-left: 935px;
}

.pr935 {
  padding-right: 935px;
}

.pb935 {
  padding-bottom: 935px;
}

.mt940 {
  margin-top: 940px;
}

.ml940 {
  margin-left: 940px;
}

.mr940 {
  margin-right: 940px;
}

.mb940 {
  margin-bottom: 940px;
}

.pt940 {
  padding-top: 940px;
}

.pl940 {
  padding-left: 940px;
}

.pr940 {
  padding-right: 940px;
}

.pb940 {
  padding-bottom: 940px;
}

.mt945 {
  margin-top: 945px;
}

.ml945 {
  margin-left: 945px;
}

.mr945 {
  margin-right: 945px;
}

.mb945 {
  margin-bottom: 945px;
}

.pt945 {
  padding-top: 945px;
}

.pl945 {
  padding-left: 945px;
}

.pr945 {
  padding-right: 945px;
}

.pb945 {
  padding-bottom: 945px;
}

.mt950 {
  margin-top: 950px;
}

.ml950 {
  margin-left: 950px;
}

.mr950 {
  margin-right: 950px;
}

.mb950 {
  margin-bottom: 950px;
}

.pt950 {
  padding-top: 950px;
}

.pl950 {
  padding-left: 950px;
}

.pr950 {
  padding-right: 950px;
}

.pb950 {
  padding-bottom: 950px;
}

.mt955 {
  margin-top: 955px;
}

.ml955 {
  margin-left: 955px;
}

.mr955 {
  margin-right: 955px;
}

.mb955 {
  margin-bottom: 955px;
}

.pt955 {
  padding-top: 955px;
}

.pl955 {
  padding-left: 955px;
}

.pr955 {
  padding-right: 955px;
}

.pb955 {
  padding-bottom: 955px;
}

.mt960 {
  margin-top: 960px;
}

.ml960 {
  margin-left: 960px;
}

.mr960 {
  margin-right: 960px;
}

.mb960 {
  margin-bottom: 960px;
}

.pt960 {
  padding-top: 960px;
}

.pl960 {
  padding-left: 960px;
}

.pr960 {
  padding-right: 960px;
}

.pb960 {
  padding-bottom: 960px;
}

.mt965 {
  margin-top: 965px;
}

.ml965 {
  margin-left: 965px;
}

.mr965 {
  margin-right: 965px;
}

.mb965 {
  margin-bottom: 965px;
}

.pt965 {
  padding-top: 965px;
}

.pl965 {
  padding-left: 965px;
}

.pr965 {
  padding-right: 965px;
}

.pb965 {
  padding-bottom: 965px;
}

.mt970 {
  margin-top: 970px;
}

.ml970 {
  margin-left: 970px;
}

.mr970 {
  margin-right: 970px;
}

.mb970 {
  margin-bottom: 970px;
}

.pt970 {
  padding-top: 970px;
}

.pl970 {
  padding-left: 970px;
}

.pr970 {
  padding-right: 970px;
}

.pb970 {
  padding-bottom: 970px;
}

.mt975 {
  margin-top: 975px;
}

.ml975 {
  margin-left: 975px;
}

.mr975 {
  margin-right: 975px;
}

.mb975 {
  margin-bottom: 975px;
}

.pt975 {
  padding-top: 975px;
}

.pl975 {
  padding-left: 975px;
}

.pr975 {
  padding-right: 975px;
}

.pb975 {
  padding-bottom: 975px;
}

.mt980 {
  margin-top: 980px;
}

.ml980 {
  margin-left: 980px;
}

.mr980 {
  margin-right: 980px;
}

.mb980 {
  margin-bottom: 980px;
}

.pt980 {
  padding-top: 980px;
}

.pl980 {
  padding-left: 980px;
}

.pr980 {
  padding-right: 980px;
}

.pb980 {
  padding-bottom: 980px;
}

.mt985 {
  margin-top: 985px;
}

.ml985 {
  margin-left: 985px;
}

.mr985 {
  margin-right: 985px;
}

.mb985 {
  margin-bottom: 985px;
}

.pt985 {
  padding-top: 985px;
}

.pl985 {
  padding-left: 985px;
}

.pr985 {
  padding-right: 985px;
}

.pb985 {
  padding-bottom: 985px;
}

.mt990 {
  margin-top: 990px;
}

.ml990 {
  margin-left: 990px;
}

.mr990 {
  margin-right: 990px;
}

.mb990 {
  margin-bottom: 990px;
}

.pt990 {
  padding-top: 990px;
}

.pl990 {
  padding-left: 990px;
}

.pr990 {
  padding-right: 990px;
}

.pb990 {
  padding-bottom: 990px;
}

.mt995 {
  margin-top: 995px;
}

.ml995 {
  margin-left: 995px;
}

.mr995 {
  margin-right: 995px;
}

.mb995 {
  margin-bottom: 995px;
}

.pt995 {
  padding-top: 995px;
}

.pl995 {
  padding-left: 995px;
}

.pr995 {
  padding-right: 995px;
}

.pb995 {
  padding-bottom: 995px;
}

.mt1000 {
  margin-top: 1000px;
}

.ml1000 {
  margin-left: 1000px;
}

.mr1000 {
  margin-right: 1000px;
}

.mb1000 {
  margin-bottom: 1000px;
}

.pt1000 {
  padding-top: 1000px;
}

.pl1000 {
  padding-left: 1000px;
}

.pr1000 {
  padding-right: 1000px;
}

.pb1000 {
  padding-bottom: 1000px;
}

@media screen and (max-width: 1023px) {
  .mt0 {
    margin-top: 0px;
  }
  .ml0 {
    margin-left: 0px;
  }
  .mr0 {
    margin-right: 0px;
  }
  .mb0 {
    margin-bottom: 0px;
  }
  .pt0 {
    padding-top: 0px;
  }
  .pl0 {
    padding-left: 0px;
  }
  .pr0 {
    padding-right: 0px;
  }
  .pb0 {
    padding-bottom: 0px;
  }
  .mt5 {
    margin-top: 2px;
  }
  .ml5 {
    margin-left: 2px;
  }
  .mr5 {
    margin-right: 2px;
  }
  .mb5 {
    margin-bottom: 2px;
  }
  .pt5 {
    padding-top: 2px;
  }
  .pl5 {
    padding-left: 2px;
  }
  .pr5 {
    padding-right: 2px;
  }
  .pb5 {
    padding-bottom: 2px;
  }
  .mt10 {
    margin-top: 5px;
  }
  .ml10 {
    margin-left: 5px;
  }
  .mr10 {
    margin-right: 5px;
  }
  .mb10 {
    margin-bottom: 5px;
  }
  .pt10 {
    padding-top: 5px;
  }
  .pl10 {
    padding-left: 5px;
  }
  .pr10 {
    padding-right: 5px;
  }
  .pb10 {
    padding-bottom: 5px;
  }
  .mt15 {
    margin-top: 7px;
  }
  .ml15 {
    margin-left: 7px;
  }
  .mr15 {
    margin-right: 7px;
  }
  .mb15 {
    margin-bottom: 7px;
  }
  .pt15 {
    padding-top: 7px;
  }
  .pl15 {
    padding-left: 7px;
  }
  .pr15 {
    padding-right: 7px;
  }
  .pb15 {
    padding-bottom: 7px;
  }
  .mt20 {
    margin-top: 10px;
  }
  .ml20 {
    margin-left: 10px;
  }
  .mr20 {
    margin-right: 10px;
  }
  .mb20 {
    margin-bottom: 10px;
  }
  .pt20 {
    padding-top: 10px;
  }
  .pl20 {
    padding-left: 10px;
  }
  .pr20 {
    padding-right: 10px;
  }
  .pb20 {
    padding-bottom: 10px;
  }
  .mt25 {
    margin-top: 12px;
  }
  .ml25 {
    margin-left: 12px;
  }
  .mr25 {
    margin-right: 12px;
  }
  .mb25 {
    margin-bottom: 12px;
  }
  .pt25 {
    padding-top: 12px;
  }
  .pl25 {
    padding-left: 12px;
  }
  .pr25 {
    padding-right: 12px;
  }
  .pb25 {
    padding-bottom: 12px;
  }
  .mt30 {
    margin-top: 15px;
  }
  .ml30 {
    margin-left: 15px;
  }
  .mr30 {
    margin-right: 15px;
  }
  .mb30 {
    margin-bottom: 15px;
  }
  .pt30 {
    padding-top: 15px;
  }
  .pl30 {
    padding-left: 15px;
  }
  .pr30 {
    padding-right: 15px;
  }
  .pb30 {
    padding-bottom: 15px;
  }
  .mt35 {
    margin-top: 17px;
  }
  .ml35 {
    margin-left: 17px;
  }
  .mr35 {
    margin-right: 17px;
  }
  .mb35 {
    margin-bottom: 17px;
  }
  .pt35 {
    padding-top: 17px;
  }
  .pl35 {
    padding-left: 17px;
  }
  .pr35 {
    padding-right: 17px;
  }
  .pb35 {
    padding-bottom: 17px;
  }
  .mt40 {
    margin-top: 20px;
  }
  .ml40 {
    margin-left: 20px;
  }
  .mr40 {
    margin-right: 20px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .pt40 {
    padding-top: 20px;
  }
  .pl40 {
    padding-left: 20px;
  }
  .pr40 {
    padding-right: 20px;
  }
  .pb40 {
    padding-bottom: 20px;
  }
  .mt45 {
    margin-top: 22px;
  }
  .ml45 {
    margin-left: 22px;
  }
  .mr45 {
    margin-right: 22px;
  }
  .mb45 {
    margin-bottom: 22px;
  }
  .pt45 {
    padding-top: 22px;
  }
  .pl45 {
    padding-left: 22px;
  }
  .pr45 {
    padding-right: 22px;
  }
  .pb45 {
    padding-bottom: 22px;
  }
  .mt50 {
    margin-top: 25px;
  }
  .ml50 {
    margin-left: 25px;
  }
  .mr50 {
    margin-right: 25px;
  }
  .mb50 {
    margin-bottom: 25px;
  }
  .pt50 {
    padding-top: 25px;
  }
  .pl50 {
    padding-left: 25px;
  }
  .pr50 {
    padding-right: 25px;
  }
  .pb50 {
    padding-bottom: 25px;
  }
  .mt55 {
    margin-top: 27px;
  }
  .ml55 {
    margin-left: 27px;
  }
  .mr55 {
    margin-right: 27px;
  }
  .mb55 {
    margin-bottom: 27px;
  }
  .pt55 {
    padding-top: 27px;
  }
  .pl55 {
    padding-left: 27px;
  }
  .pr55 {
    padding-right: 27px;
  }
  .pb55 {
    padding-bottom: 27px;
  }
  .mt60 {
    margin-top: 30px;
  }
  .ml60 {
    margin-left: 30px;
  }
  .mr60 {
    margin-right: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .pt60 {
    padding-top: 30px;
  }
  .pl60 {
    padding-left: 30px;
  }
  .pr60 {
    padding-right: 30px;
  }
  .pb60 {
    padding-bottom: 30px;
  }
  .mt65 {
    margin-top: 32px;
  }
  .ml65 {
    margin-left: 32px;
  }
  .mr65 {
    margin-right: 32px;
  }
  .mb65 {
    margin-bottom: 32px;
  }
  .pt65 {
    padding-top: 32px;
  }
  .pl65 {
    padding-left: 32px;
  }
  .pr65 {
    padding-right: 32px;
  }
  .pb65 {
    padding-bottom: 32px;
  }
  .mt70 {
    margin-top: 35px;
  }
  .ml70 {
    margin-left: 35px;
  }
  .mr70 {
    margin-right: 35px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .pt70 {
    padding-top: 35px;
  }
  .pl70 {
    padding-left: 35px;
  }
  .pr70 {
    padding-right: 35px;
  }
  .pb70 {
    padding-bottom: 35px;
  }
  .mt75 {
    margin-top: 37px;
  }
  .ml75 {
    margin-left: 37px;
  }
  .mr75 {
    margin-right: 37px;
  }
  .mb75 {
    margin-bottom: 37px;
  }
  .pt75 {
    padding-top: 37px;
  }
  .pl75 {
    padding-left: 37px;
  }
  .pr75 {
    padding-right: 37px;
  }
  .pb75 {
    padding-bottom: 37px;
  }
  .mt80 {
    margin-top: 40px;
  }
  .ml80 {
    margin-left: 40px;
  }
  .mr80 {
    margin-right: 40px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .pt80 {
    padding-top: 40px;
  }
  .pl80 {
    padding-left: 40px;
  }
  .pr80 {
    padding-right: 40px;
  }
  .pb80 {
    padding-bottom: 40px;
  }
  .mt85 {
    margin-top: 42px;
  }
  .ml85 {
    margin-left: 42px;
  }
  .mr85 {
    margin-right: 42px;
  }
  .mb85 {
    margin-bottom: 42px;
  }
  .pt85 {
    padding-top: 42px;
  }
  .pl85 {
    padding-left: 42px;
  }
  .pr85 {
    padding-right: 42px;
  }
  .pb85 {
    padding-bottom: 42px;
  }
  .mt90 {
    margin-top: 45px;
  }
  .ml90 {
    margin-left: 45px;
  }
  .mr90 {
    margin-right: 45px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .pt90 {
    padding-top: 45px;
  }
  .pl90 {
    padding-left: 45px;
  }
  .pr90 {
    padding-right: 45px;
  }
  .pb90 {
    padding-bottom: 45px;
  }
  .mt95 {
    margin-top: 47px;
  }
  .ml95 {
    margin-left: 47px;
  }
  .mr95 {
    margin-right: 47px;
  }
  .mb95 {
    margin-bottom: 47px;
  }
  .pt95 {
    padding-top: 47px;
  }
  .pl95 {
    padding-left: 47px;
  }
  .pr95 {
    padding-right: 47px;
  }
  .pb95 {
    padding-bottom: 47px;
  }
  .mt100 {
    margin-top: 50px;
  }
  .ml100 {
    margin-left: 50px;
  }
  .mr100 {
    margin-right: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .pt100 {
    padding-top: 50px;
  }
  .pl100 {
    padding-left: 50px;
  }
  .pr100 {
    padding-right: 50px;
  }
  .pb100 {
    padding-bottom: 50px;
  }
  .mt105 {
    margin-top: 52px;
  }
  .ml105 {
    margin-left: 52px;
  }
  .mr105 {
    margin-right: 52px;
  }
  .mb105 {
    margin-bottom: 52px;
  }
  .pt105 {
    padding-top: 52px;
  }
  .pl105 {
    padding-left: 52px;
  }
  .pr105 {
    padding-right: 52px;
  }
  .pb105 {
    padding-bottom: 52px;
  }
  .mt110 {
    margin-top: 55px;
  }
  .ml110 {
    margin-left: 55px;
  }
  .mr110 {
    margin-right: 55px;
  }
  .mb110 {
    margin-bottom: 55px;
  }
  .pt110 {
    padding-top: 55px;
  }
  .pl110 {
    padding-left: 55px;
  }
  .pr110 {
    padding-right: 55px;
  }
  .pb110 {
    padding-bottom: 55px;
  }
  .mt115 {
    margin-top: 57px;
  }
  .ml115 {
    margin-left: 57px;
  }
  .mr115 {
    margin-right: 57px;
  }
  .mb115 {
    margin-bottom: 57px;
  }
  .pt115 {
    padding-top: 57px;
  }
  .pl115 {
    padding-left: 57px;
  }
  .pr115 {
    padding-right: 57px;
  }
  .pb115 {
    padding-bottom: 57px;
  }
  .mt120 {
    margin-top: 60px;
  }
  .ml120 {
    margin-left: 60px;
  }
  .mr120 {
    margin-right: 60px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .pt120 {
    padding-top: 60px;
  }
  .pl120 {
    padding-left: 60px;
  }
  .pr120 {
    padding-right: 60px;
  }
  .pb120 {
    padding-bottom: 60px;
  }
  .mt125 {
    margin-top: 62px;
  }
  .ml125 {
    margin-left: 62px;
  }
  .mr125 {
    margin-right: 62px;
  }
  .mb125 {
    margin-bottom: 62px;
  }
  .pt125 {
    padding-top: 62px;
  }
  .pl125 {
    padding-left: 62px;
  }
  .pr125 {
    padding-right: 62px;
  }
  .pb125 {
    padding-bottom: 62px;
  }
  .mt130 {
    margin-top: 65px;
  }
  .ml130 {
    margin-left: 65px;
  }
  .mr130 {
    margin-right: 65px;
  }
  .mb130 {
    margin-bottom: 65px;
  }
  .pt130 {
    padding-top: 65px;
  }
  .pl130 {
    padding-left: 65px;
  }
  .pr130 {
    padding-right: 65px;
  }
  .pb130 {
    padding-bottom: 65px;
  }
  .mt135 {
    margin-top: 67px;
  }
  .ml135 {
    margin-left: 67px;
  }
  .mr135 {
    margin-right: 67px;
  }
  .mb135 {
    margin-bottom: 67px;
  }
  .pt135 {
    padding-top: 67px;
  }
  .pl135 {
    padding-left: 67px;
  }
  .pr135 {
    padding-right: 67px;
  }
  .pb135 {
    padding-bottom: 67px;
  }
  .mt140 {
    margin-top: 70px;
  }
  .ml140 {
    margin-left: 70px;
  }
  .mr140 {
    margin-right: 70px;
  }
  .mb140 {
    margin-bottom: 70px;
  }
  .pt140 {
    padding-top: 70px;
  }
  .pl140 {
    padding-left: 70px;
  }
  .pr140 {
    padding-right: 70px;
  }
  .pb140 {
    padding-bottom: 70px;
  }
  .mt145 {
    margin-top: 72px;
  }
  .ml145 {
    margin-left: 72px;
  }
  .mr145 {
    margin-right: 72px;
  }
  .mb145 {
    margin-bottom: 72px;
  }
  .pt145 {
    padding-top: 72px;
  }
  .pl145 {
    padding-left: 72px;
  }
  .pr145 {
    padding-right: 72px;
  }
  .pb145 {
    padding-bottom: 72px;
  }
  .mt150 {
    margin-top: 75px;
  }
  .ml150 {
    margin-left: 75px;
  }
  .mr150 {
    margin-right: 75px;
  }
  .mb150 {
    margin-bottom: 75px;
  }
  .pt150 {
    padding-top: 75px;
  }
  .pl150 {
    padding-left: 75px;
  }
  .pr150 {
    padding-right: 75px;
  }
  .pb150 {
    padding-bottom: 75px;
  }
  .mt155 {
    margin-top: 77px;
  }
  .ml155 {
    margin-left: 77px;
  }
  .mr155 {
    margin-right: 77px;
  }
  .mb155 {
    margin-bottom: 77px;
  }
  .pt155 {
    padding-top: 77px;
  }
  .pl155 {
    padding-left: 77px;
  }
  .pr155 {
    padding-right: 77px;
  }
  .pb155 {
    padding-bottom: 77px;
  }
  .mt160 {
    margin-top: 80px;
  }
  .ml160 {
    margin-left: 80px;
  }
  .mr160 {
    margin-right: 80px;
  }
  .mb160 {
    margin-bottom: 80px;
  }
  .pt160 {
    padding-top: 80px;
  }
  .pl160 {
    padding-left: 80px;
  }
  .pr160 {
    padding-right: 80px;
  }
  .pb160 {
    padding-bottom: 80px;
  }
  .mt165 {
    margin-top: 82px;
  }
  .ml165 {
    margin-left: 82px;
  }
  .mr165 {
    margin-right: 82px;
  }
  .mb165 {
    margin-bottom: 82px;
  }
  .pt165 {
    padding-top: 82px;
  }
  .pl165 {
    padding-left: 82px;
  }
  .pr165 {
    padding-right: 82px;
  }
  .pb165 {
    padding-bottom: 82px;
  }
  .mt170 {
    margin-top: 85px;
  }
  .ml170 {
    margin-left: 85px;
  }
  .mr170 {
    margin-right: 85px;
  }
  .mb170 {
    margin-bottom: 85px;
  }
  .pt170 {
    padding-top: 85px;
  }
  .pl170 {
    padding-left: 85px;
  }
  .pr170 {
    padding-right: 85px;
  }
  .pb170 {
    padding-bottom: 85px;
  }
  .mt175 {
    margin-top: 87px;
  }
  .ml175 {
    margin-left: 87px;
  }
  .mr175 {
    margin-right: 87px;
  }
  .mb175 {
    margin-bottom: 87px;
  }
  .pt175 {
    padding-top: 87px;
  }
  .pl175 {
    padding-left: 87px;
  }
  .pr175 {
    padding-right: 87px;
  }
  .pb175 {
    padding-bottom: 87px;
  }
  .mt180 {
    margin-top: 90px;
  }
  .ml180 {
    margin-left: 90px;
  }
  .mr180 {
    margin-right: 90px;
  }
  .mb180 {
    margin-bottom: 90px;
  }
  .pt180 {
    padding-top: 90px;
  }
  .pl180 {
    padding-left: 90px;
  }
  .pr180 {
    padding-right: 90px;
  }
  .pb180 {
    padding-bottom: 90px;
  }
  .mt185 {
    margin-top: 92px;
  }
  .ml185 {
    margin-left: 92px;
  }
  .mr185 {
    margin-right: 92px;
  }
  .mb185 {
    margin-bottom: 92px;
  }
  .pt185 {
    padding-top: 92px;
  }
  .pl185 {
    padding-left: 92px;
  }
  .pr185 {
    padding-right: 92px;
  }
  .pb185 {
    padding-bottom: 92px;
  }
  .mt190 {
    margin-top: 95px;
  }
  .ml190 {
    margin-left: 95px;
  }
  .mr190 {
    margin-right: 95px;
  }
  .mb190 {
    margin-bottom: 95px;
  }
  .pt190 {
    padding-top: 95px;
  }
  .pl190 {
    padding-left: 95px;
  }
  .pr190 {
    padding-right: 95px;
  }
  .pb190 {
    padding-bottom: 95px;
  }
  .mt195 {
    margin-top: 97px;
  }
  .ml195 {
    margin-left: 97px;
  }
  .mr195 {
    margin-right: 97px;
  }
  .mb195 {
    margin-bottom: 97px;
  }
  .pt195 {
    padding-top: 97px;
  }
  .pl195 {
    padding-left: 97px;
  }
  .pr195 {
    padding-right: 97px;
  }
  .pb195 {
    padding-bottom: 97px;
  }
  .mt200 {
    margin-top: 100px;
  }
  .ml200 {
    margin-left: 100px;
  }
  .mr200 {
    margin-right: 100px;
  }
  .mb200 {
    margin-bottom: 100px;
  }
  .pt200 {
    padding-top: 100px;
  }
  .pl200 {
    padding-left: 100px;
  }
  .pr200 {
    padding-right: 100px;
  }
  .pb200 {
    padding-bottom: 100px;
  }
  .mt205 {
    margin-top: 102px;
  }
  .ml205 {
    margin-left: 102px;
  }
  .mr205 {
    margin-right: 102px;
  }
  .mb205 {
    margin-bottom: 102px;
  }
  .pt205 {
    padding-top: 102px;
  }
  .pl205 {
    padding-left: 102px;
  }
  .pr205 {
    padding-right: 102px;
  }
  .pb205 {
    padding-bottom: 102px;
  }
  .mt210 {
    margin-top: 105px;
  }
  .ml210 {
    margin-left: 105px;
  }
  .mr210 {
    margin-right: 105px;
  }
  .mb210 {
    margin-bottom: 105px;
  }
  .pt210 {
    padding-top: 105px;
  }
  .pl210 {
    padding-left: 105px;
  }
  .pr210 {
    padding-right: 105px;
  }
  .pb210 {
    padding-bottom: 105px;
  }
  .mt215 {
    margin-top: 107px;
  }
  .ml215 {
    margin-left: 107px;
  }
  .mr215 {
    margin-right: 107px;
  }
  .mb215 {
    margin-bottom: 107px;
  }
  .pt215 {
    padding-top: 107px;
  }
  .pl215 {
    padding-left: 107px;
  }
  .pr215 {
    padding-right: 107px;
  }
  .pb215 {
    padding-bottom: 107px;
  }
  .mt220 {
    margin-top: 110px;
  }
  .ml220 {
    margin-left: 110px;
  }
  .mr220 {
    margin-right: 110px;
  }
  .mb220 {
    margin-bottom: 110px;
  }
  .pt220 {
    padding-top: 110px;
  }
  .pl220 {
    padding-left: 110px;
  }
  .pr220 {
    padding-right: 110px;
  }
  .pb220 {
    padding-bottom: 110px;
  }
  .mt225 {
    margin-top: 112px;
  }
  .ml225 {
    margin-left: 112px;
  }
  .mr225 {
    margin-right: 112px;
  }
  .mb225 {
    margin-bottom: 112px;
  }
  .pt225 {
    padding-top: 112px;
  }
  .pl225 {
    padding-left: 112px;
  }
  .pr225 {
    padding-right: 112px;
  }
  .pb225 {
    padding-bottom: 112px;
  }
  .mt230 {
    margin-top: 115px;
  }
  .ml230 {
    margin-left: 115px;
  }
  .mr230 {
    margin-right: 115px;
  }
  .mb230 {
    margin-bottom: 115px;
  }
  .pt230 {
    padding-top: 115px;
  }
  .pl230 {
    padding-left: 115px;
  }
  .pr230 {
    padding-right: 115px;
  }
  .pb230 {
    padding-bottom: 115px;
  }
  .mt235 {
    margin-top: 117px;
  }
  .ml235 {
    margin-left: 117px;
  }
  .mr235 {
    margin-right: 117px;
  }
  .mb235 {
    margin-bottom: 117px;
  }
  .pt235 {
    padding-top: 117px;
  }
  .pl235 {
    padding-left: 117px;
  }
  .pr235 {
    padding-right: 117px;
  }
  .pb235 {
    padding-bottom: 117px;
  }
  .mt240 {
    margin-top: 120px;
  }
  .ml240 {
    margin-left: 120px;
  }
  .mr240 {
    margin-right: 120px;
  }
  .mb240 {
    margin-bottom: 120px;
  }
  .pt240 {
    padding-top: 120px;
  }
  .pl240 {
    padding-left: 120px;
  }
  .pr240 {
    padding-right: 120px;
  }
  .pb240 {
    padding-bottom: 120px;
  }
  .mt245 {
    margin-top: 122px;
  }
  .ml245 {
    margin-left: 122px;
  }
  .mr245 {
    margin-right: 122px;
  }
  .mb245 {
    margin-bottom: 122px;
  }
  .pt245 {
    padding-top: 122px;
  }
  .pl245 {
    padding-left: 122px;
  }
  .pr245 {
    padding-right: 122px;
  }
  .pb245 {
    padding-bottom: 122px;
  }
  .mt250 {
    margin-top: 125px;
  }
  .ml250 {
    margin-left: 125px;
  }
  .mr250 {
    margin-right: 125px;
  }
  .mb250 {
    margin-bottom: 125px;
  }
  .pt250 {
    padding-top: 125px;
  }
  .pl250 {
    padding-left: 125px;
  }
  .pr250 {
    padding-right: 125px;
  }
  .pb250 {
    padding-bottom: 125px;
  }
  .mt255 {
    margin-top: 127px;
  }
  .ml255 {
    margin-left: 127px;
  }
  .mr255 {
    margin-right: 127px;
  }
  .mb255 {
    margin-bottom: 127px;
  }
  .pt255 {
    padding-top: 127px;
  }
  .pl255 {
    padding-left: 127px;
  }
  .pr255 {
    padding-right: 127px;
  }
  .pb255 {
    padding-bottom: 127px;
  }
  .mt260 {
    margin-top: 130px;
  }
  .ml260 {
    margin-left: 130px;
  }
  .mr260 {
    margin-right: 130px;
  }
  .mb260 {
    margin-bottom: 130px;
  }
  .pt260 {
    padding-top: 130px;
  }
  .pl260 {
    padding-left: 130px;
  }
  .pr260 {
    padding-right: 130px;
  }
  .pb260 {
    padding-bottom: 130px;
  }
  .mt265 {
    margin-top: 132px;
  }
  .ml265 {
    margin-left: 132px;
  }
  .mr265 {
    margin-right: 132px;
  }
  .mb265 {
    margin-bottom: 132px;
  }
  .pt265 {
    padding-top: 132px;
  }
  .pl265 {
    padding-left: 132px;
  }
  .pr265 {
    padding-right: 132px;
  }
  .pb265 {
    padding-bottom: 132px;
  }
  .mt270 {
    margin-top: 135px;
  }
  .ml270 {
    margin-left: 135px;
  }
  .mr270 {
    margin-right: 135px;
  }
  .mb270 {
    margin-bottom: 135px;
  }
  .pt270 {
    padding-top: 135px;
  }
  .pl270 {
    padding-left: 135px;
  }
  .pr270 {
    padding-right: 135px;
  }
  .pb270 {
    padding-bottom: 135px;
  }
  .mt275 {
    margin-top: 137px;
  }
  .ml275 {
    margin-left: 137px;
  }
  .mr275 {
    margin-right: 137px;
  }
  .mb275 {
    margin-bottom: 137px;
  }
  .pt275 {
    padding-top: 137px;
  }
  .pl275 {
    padding-left: 137px;
  }
  .pr275 {
    padding-right: 137px;
  }
  .pb275 {
    padding-bottom: 137px;
  }
  .mt280 {
    margin-top: 140px;
  }
  .ml280 {
    margin-left: 140px;
  }
  .mr280 {
    margin-right: 140px;
  }
  .mb280 {
    margin-bottom: 140px;
  }
  .pt280 {
    padding-top: 140px;
  }
  .pl280 {
    padding-left: 140px;
  }
  .pr280 {
    padding-right: 140px;
  }
  .pb280 {
    padding-bottom: 140px;
  }
  .mt285 {
    margin-top: 142px;
  }
  .ml285 {
    margin-left: 142px;
  }
  .mr285 {
    margin-right: 142px;
  }
  .mb285 {
    margin-bottom: 142px;
  }
  .pt285 {
    padding-top: 142px;
  }
  .pl285 {
    padding-left: 142px;
  }
  .pr285 {
    padding-right: 142px;
  }
  .pb285 {
    padding-bottom: 142px;
  }
  .mt290 {
    margin-top: 145px;
  }
  .ml290 {
    margin-left: 145px;
  }
  .mr290 {
    margin-right: 145px;
  }
  .mb290 {
    margin-bottom: 145px;
  }
  .pt290 {
    padding-top: 145px;
  }
  .pl290 {
    padding-left: 145px;
  }
  .pr290 {
    padding-right: 145px;
  }
  .pb290 {
    padding-bottom: 145px;
  }
  .mt295 {
    margin-top: 147px;
  }
  .ml295 {
    margin-left: 147px;
  }
  .mr295 {
    margin-right: 147px;
  }
  .mb295 {
    margin-bottom: 147px;
  }
  .pt295 {
    padding-top: 147px;
  }
  .pl295 {
    padding-left: 147px;
  }
  .pr295 {
    padding-right: 147px;
  }
  .pb295 {
    padding-bottom: 147px;
  }
  .mt300 {
    margin-top: 150px;
  }
  .ml300 {
    margin-left: 150px;
  }
  .mr300 {
    margin-right: 150px;
  }
  .mb300 {
    margin-bottom: 150px;
  }
  .pt300 {
    padding-top: 150px;
  }
  .pl300 {
    padding-left: 150px;
  }
  .pr300 {
    padding-right: 150px;
  }
  .pb300 {
    padding-bottom: 150px;
  }
  .mt305 {
    margin-top: 152px;
  }
  .ml305 {
    margin-left: 152px;
  }
  .mr305 {
    margin-right: 152px;
  }
  .mb305 {
    margin-bottom: 152px;
  }
  .pt305 {
    padding-top: 152px;
  }
  .pl305 {
    padding-left: 152px;
  }
  .pr305 {
    padding-right: 152px;
  }
  .pb305 {
    padding-bottom: 152px;
  }
  .mt310 {
    margin-top: 155px;
  }
  .ml310 {
    margin-left: 155px;
  }
  .mr310 {
    margin-right: 155px;
  }
  .mb310 {
    margin-bottom: 155px;
  }
  .pt310 {
    padding-top: 155px;
  }
  .pl310 {
    padding-left: 155px;
  }
  .pr310 {
    padding-right: 155px;
  }
  .pb310 {
    padding-bottom: 155px;
  }
  .mt315 {
    margin-top: 157px;
  }
  .ml315 {
    margin-left: 157px;
  }
  .mr315 {
    margin-right: 157px;
  }
  .mb315 {
    margin-bottom: 157px;
  }
  .pt315 {
    padding-top: 157px;
  }
  .pl315 {
    padding-left: 157px;
  }
  .pr315 {
    padding-right: 157px;
  }
  .pb315 {
    padding-bottom: 157px;
  }
  .mt320 {
    margin-top: 160px;
  }
  .ml320 {
    margin-left: 160px;
  }
  .mr320 {
    margin-right: 160px;
  }
  .mb320 {
    margin-bottom: 160px;
  }
  .pt320 {
    padding-top: 160px;
  }
  .pl320 {
    padding-left: 160px;
  }
  .pr320 {
    padding-right: 160px;
  }
  .pb320 {
    padding-bottom: 160px;
  }
  .mt325 {
    margin-top: 162px;
  }
  .ml325 {
    margin-left: 162px;
  }
  .mr325 {
    margin-right: 162px;
  }
  .mb325 {
    margin-bottom: 162px;
  }
  .pt325 {
    padding-top: 162px;
  }
  .pl325 {
    padding-left: 162px;
  }
  .pr325 {
    padding-right: 162px;
  }
  .pb325 {
    padding-bottom: 162px;
  }
  .mt330 {
    margin-top: 165px;
  }
  .ml330 {
    margin-left: 165px;
  }
  .mr330 {
    margin-right: 165px;
  }
  .mb330 {
    margin-bottom: 165px;
  }
  .pt330 {
    padding-top: 165px;
  }
  .pl330 {
    padding-left: 165px;
  }
  .pr330 {
    padding-right: 165px;
  }
  .pb330 {
    padding-bottom: 165px;
  }
  .mt335 {
    margin-top: 167px;
  }
  .ml335 {
    margin-left: 167px;
  }
  .mr335 {
    margin-right: 167px;
  }
  .mb335 {
    margin-bottom: 167px;
  }
  .pt335 {
    padding-top: 167px;
  }
  .pl335 {
    padding-left: 167px;
  }
  .pr335 {
    padding-right: 167px;
  }
  .pb335 {
    padding-bottom: 167px;
  }
  .mt340 {
    margin-top: 170px;
  }
  .ml340 {
    margin-left: 170px;
  }
  .mr340 {
    margin-right: 170px;
  }
  .mb340 {
    margin-bottom: 170px;
  }
  .pt340 {
    padding-top: 170px;
  }
  .pl340 {
    padding-left: 170px;
  }
  .pr340 {
    padding-right: 170px;
  }
  .pb340 {
    padding-bottom: 170px;
  }
  .mt345 {
    margin-top: 172px;
  }
  .ml345 {
    margin-left: 172px;
  }
  .mr345 {
    margin-right: 172px;
  }
  .mb345 {
    margin-bottom: 172px;
  }
  .pt345 {
    padding-top: 172px;
  }
  .pl345 {
    padding-left: 172px;
  }
  .pr345 {
    padding-right: 172px;
  }
  .pb345 {
    padding-bottom: 172px;
  }
  .mt350 {
    margin-top: 175px;
  }
  .ml350 {
    margin-left: 175px;
  }
  .mr350 {
    margin-right: 175px;
  }
  .mb350 {
    margin-bottom: 175px;
  }
  .pt350 {
    padding-top: 175px;
  }
  .pl350 {
    padding-left: 175px;
  }
  .pr350 {
    padding-right: 175px;
  }
  .pb350 {
    padding-bottom: 175px;
  }
  .mt355 {
    margin-top: 177px;
  }
  .ml355 {
    margin-left: 177px;
  }
  .mr355 {
    margin-right: 177px;
  }
  .mb355 {
    margin-bottom: 177px;
  }
  .pt355 {
    padding-top: 177px;
  }
  .pl355 {
    padding-left: 177px;
  }
  .pr355 {
    padding-right: 177px;
  }
  .pb355 {
    padding-bottom: 177px;
  }
  .mt360 {
    margin-top: 180px;
  }
  .ml360 {
    margin-left: 180px;
  }
  .mr360 {
    margin-right: 180px;
  }
  .mb360 {
    margin-bottom: 180px;
  }
  .pt360 {
    padding-top: 180px;
  }
  .pl360 {
    padding-left: 180px;
  }
  .pr360 {
    padding-right: 180px;
  }
  .pb360 {
    padding-bottom: 180px;
  }
  .mt365 {
    margin-top: 182px;
  }
  .ml365 {
    margin-left: 182px;
  }
  .mr365 {
    margin-right: 182px;
  }
  .mb365 {
    margin-bottom: 182px;
  }
  .pt365 {
    padding-top: 182px;
  }
  .pl365 {
    padding-left: 182px;
  }
  .pr365 {
    padding-right: 182px;
  }
  .pb365 {
    padding-bottom: 182px;
  }
  .mt370 {
    margin-top: 185px;
  }
  .ml370 {
    margin-left: 185px;
  }
  .mr370 {
    margin-right: 185px;
  }
  .mb370 {
    margin-bottom: 185px;
  }
  .pt370 {
    padding-top: 185px;
  }
  .pl370 {
    padding-left: 185px;
  }
  .pr370 {
    padding-right: 185px;
  }
  .pb370 {
    padding-bottom: 185px;
  }
  .mt375 {
    margin-top: 187px;
  }
  .ml375 {
    margin-left: 187px;
  }
  .mr375 {
    margin-right: 187px;
  }
  .mb375 {
    margin-bottom: 187px;
  }
  .pt375 {
    padding-top: 187px;
  }
  .pl375 {
    padding-left: 187px;
  }
  .pr375 {
    padding-right: 187px;
  }
  .pb375 {
    padding-bottom: 187px;
  }
  .mt380 {
    margin-top: 190px;
  }
  .ml380 {
    margin-left: 190px;
  }
  .mr380 {
    margin-right: 190px;
  }
  .mb380 {
    margin-bottom: 190px;
  }
  .pt380 {
    padding-top: 190px;
  }
  .pl380 {
    padding-left: 190px;
  }
  .pr380 {
    padding-right: 190px;
  }
  .pb380 {
    padding-bottom: 190px;
  }
  .mt385 {
    margin-top: 192px;
  }
  .ml385 {
    margin-left: 192px;
  }
  .mr385 {
    margin-right: 192px;
  }
  .mb385 {
    margin-bottom: 192px;
  }
  .pt385 {
    padding-top: 192px;
  }
  .pl385 {
    padding-left: 192px;
  }
  .pr385 {
    padding-right: 192px;
  }
  .pb385 {
    padding-bottom: 192px;
  }
  .mt390 {
    margin-top: 195px;
  }
  .ml390 {
    margin-left: 195px;
  }
  .mr390 {
    margin-right: 195px;
  }
  .mb390 {
    margin-bottom: 195px;
  }
  .pt390 {
    padding-top: 195px;
  }
  .pl390 {
    padding-left: 195px;
  }
  .pr390 {
    padding-right: 195px;
  }
  .pb390 {
    padding-bottom: 195px;
  }
  .mt395 {
    margin-top: 197px;
  }
  .ml395 {
    margin-left: 197px;
  }
  .mr395 {
    margin-right: 197px;
  }
  .mb395 {
    margin-bottom: 197px;
  }
  .pt395 {
    padding-top: 197px;
  }
  .pl395 {
    padding-left: 197px;
  }
  .pr395 {
    padding-right: 197px;
  }
  .pb395 {
    padding-bottom: 197px;
  }
  .mt400 {
    margin-top: 200px;
  }
  .ml400 {
    margin-left: 200px;
  }
  .mr400 {
    margin-right: 200px;
  }
  .mb400 {
    margin-bottom: 200px;
  }
  .pt400 {
    padding-top: 200px;
  }
  .pl400 {
    padding-left: 200px;
  }
  .pr400 {
    padding-right: 200px;
  }
  .pb400 {
    padding-bottom: 200px;
  }
  .mt405 {
    margin-top: 202px;
  }
  .ml405 {
    margin-left: 202px;
  }
  .mr405 {
    margin-right: 202px;
  }
  .mb405 {
    margin-bottom: 202px;
  }
  .pt405 {
    padding-top: 202px;
  }
  .pl405 {
    padding-left: 202px;
  }
  .pr405 {
    padding-right: 202px;
  }
  .pb405 {
    padding-bottom: 202px;
  }
  .mt410 {
    margin-top: 205px;
  }
  .ml410 {
    margin-left: 205px;
  }
  .mr410 {
    margin-right: 205px;
  }
  .mb410 {
    margin-bottom: 205px;
  }
  .pt410 {
    padding-top: 205px;
  }
  .pl410 {
    padding-left: 205px;
  }
  .pr410 {
    padding-right: 205px;
  }
  .pb410 {
    padding-bottom: 205px;
  }
  .mt415 {
    margin-top: 207px;
  }
  .ml415 {
    margin-left: 207px;
  }
  .mr415 {
    margin-right: 207px;
  }
  .mb415 {
    margin-bottom: 207px;
  }
  .pt415 {
    padding-top: 207px;
  }
  .pl415 {
    padding-left: 207px;
  }
  .pr415 {
    padding-right: 207px;
  }
  .pb415 {
    padding-bottom: 207px;
  }
  .mt420 {
    margin-top: 210px;
  }
  .ml420 {
    margin-left: 210px;
  }
  .mr420 {
    margin-right: 210px;
  }
  .mb420 {
    margin-bottom: 210px;
  }
  .pt420 {
    padding-top: 210px;
  }
  .pl420 {
    padding-left: 210px;
  }
  .pr420 {
    padding-right: 210px;
  }
  .pb420 {
    padding-bottom: 210px;
  }
  .mt425 {
    margin-top: 212px;
  }
  .ml425 {
    margin-left: 212px;
  }
  .mr425 {
    margin-right: 212px;
  }
  .mb425 {
    margin-bottom: 212px;
  }
  .pt425 {
    padding-top: 212px;
  }
  .pl425 {
    padding-left: 212px;
  }
  .pr425 {
    padding-right: 212px;
  }
  .pb425 {
    padding-bottom: 212px;
  }
  .mt430 {
    margin-top: 215px;
  }
  .ml430 {
    margin-left: 215px;
  }
  .mr430 {
    margin-right: 215px;
  }
  .mb430 {
    margin-bottom: 215px;
  }
  .pt430 {
    padding-top: 215px;
  }
  .pl430 {
    padding-left: 215px;
  }
  .pr430 {
    padding-right: 215px;
  }
  .pb430 {
    padding-bottom: 215px;
  }
  .mt435 {
    margin-top: 217px;
  }
  .ml435 {
    margin-left: 217px;
  }
  .mr435 {
    margin-right: 217px;
  }
  .mb435 {
    margin-bottom: 217px;
  }
  .pt435 {
    padding-top: 217px;
  }
  .pl435 {
    padding-left: 217px;
  }
  .pr435 {
    padding-right: 217px;
  }
  .pb435 {
    padding-bottom: 217px;
  }
  .mt440 {
    margin-top: 220px;
  }
  .ml440 {
    margin-left: 220px;
  }
  .mr440 {
    margin-right: 220px;
  }
  .mb440 {
    margin-bottom: 220px;
  }
  .pt440 {
    padding-top: 220px;
  }
  .pl440 {
    padding-left: 220px;
  }
  .pr440 {
    padding-right: 220px;
  }
  .pb440 {
    padding-bottom: 220px;
  }
  .mt445 {
    margin-top: 222px;
  }
  .ml445 {
    margin-left: 222px;
  }
  .mr445 {
    margin-right: 222px;
  }
  .mb445 {
    margin-bottom: 222px;
  }
  .pt445 {
    padding-top: 222px;
  }
  .pl445 {
    padding-left: 222px;
  }
  .pr445 {
    padding-right: 222px;
  }
  .pb445 {
    padding-bottom: 222px;
  }
  .mt450 {
    margin-top: 225px;
  }
  .ml450 {
    margin-left: 225px;
  }
  .mr450 {
    margin-right: 225px;
  }
  .mb450 {
    margin-bottom: 225px;
  }
  .pt450 {
    padding-top: 225px;
  }
  .pl450 {
    padding-left: 225px;
  }
  .pr450 {
    padding-right: 225px;
  }
  .pb450 {
    padding-bottom: 225px;
  }
  .mt455 {
    margin-top: 227px;
  }
  .ml455 {
    margin-left: 227px;
  }
  .mr455 {
    margin-right: 227px;
  }
  .mb455 {
    margin-bottom: 227px;
  }
  .pt455 {
    padding-top: 227px;
  }
  .pl455 {
    padding-left: 227px;
  }
  .pr455 {
    padding-right: 227px;
  }
  .pb455 {
    padding-bottom: 227px;
  }
  .mt460 {
    margin-top: 230px;
  }
  .ml460 {
    margin-left: 230px;
  }
  .mr460 {
    margin-right: 230px;
  }
  .mb460 {
    margin-bottom: 230px;
  }
  .pt460 {
    padding-top: 230px;
  }
  .pl460 {
    padding-left: 230px;
  }
  .pr460 {
    padding-right: 230px;
  }
  .pb460 {
    padding-bottom: 230px;
  }
  .mt465 {
    margin-top: 232px;
  }
  .ml465 {
    margin-left: 232px;
  }
  .mr465 {
    margin-right: 232px;
  }
  .mb465 {
    margin-bottom: 232px;
  }
  .pt465 {
    padding-top: 232px;
  }
  .pl465 {
    padding-left: 232px;
  }
  .pr465 {
    padding-right: 232px;
  }
  .pb465 {
    padding-bottom: 232px;
  }
  .mt470 {
    margin-top: 235px;
  }
  .ml470 {
    margin-left: 235px;
  }
  .mr470 {
    margin-right: 235px;
  }
  .mb470 {
    margin-bottom: 235px;
  }
  .pt470 {
    padding-top: 235px;
  }
  .pl470 {
    padding-left: 235px;
  }
  .pr470 {
    padding-right: 235px;
  }
  .pb470 {
    padding-bottom: 235px;
  }
  .mt475 {
    margin-top: 237px;
  }
  .ml475 {
    margin-left: 237px;
  }
  .mr475 {
    margin-right: 237px;
  }
  .mb475 {
    margin-bottom: 237px;
  }
  .pt475 {
    padding-top: 237px;
  }
  .pl475 {
    padding-left: 237px;
  }
  .pr475 {
    padding-right: 237px;
  }
  .pb475 {
    padding-bottom: 237px;
  }
  .mt480 {
    margin-top: 240px;
  }
  .ml480 {
    margin-left: 240px;
  }
  .mr480 {
    margin-right: 240px;
  }
  .mb480 {
    margin-bottom: 240px;
  }
  .pt480 {
    padding-top: 240px;
  }
  .pl480 {
    padding-left: 240px;
  }
  .pr480 {
    padding-right: 240px;
  }
  .pb480 {
    padding-bottom: 240px;
  }
  .mt485 {
    margin-top: 242px;
  }
  .ml485 {
    margin-left: 242px;
  }
  .mr485 {
    margin-right: 242px;
  }
  .mb485 {
    margin-bottom: 242px;
  }
  .pt485 {
    padding-top: 242px;
  }
  .pl485 {
    padding-left: 242px;
  }
  .pr485 {
    padding-right: 242px;
  }
  .pb485 {
    padding-bottom: 242px;
  }
  .mt490 {
    margin-top: 245px;
  }
  .ml490 {
    margin-left: 245px;
  }
  .mr490 {
    margin-right: 245px;
  }
  .mb490 {
    margin-bottom: 245px;
  }
  .pt490 {
    padding-top: 245px;
  }
  .pl490 {
    padding-left: 245px;
  }
  .pr490 {
    padding-right: 245px;
  }
  .pb490 {
    padding-bottom: 245px;
  }
  .mt495 {
    margin-top: 247px;
  }
  .ml495 {
    margin-left: 247px;
  }
  .mr495 {
    margin-right: 247px;
  }
  .mb495 {
    margin-bottom: 247px;
  }
  .pt495 {
    padding-top: 247px;
  }
  .pl495 {
    padding-left: 247px;
  }
  .pr495 {
    padding-right: 247px;
  }
  .pb495 {
    padding-bottom: 247px;
  }
  .mt500 {
    margin-top: 250px;
  }
  .ml500 {
    margin-left: 250px;
  }
  .mr500 {
    margin-right: 250px;
  }
  .mb500 {
    margin-bottom: 250px;
  }
  .pt500 {
    padding-top: 250px;
  }
  .pl500 {
    padding-left: 250px;
  }
  .pr500 {
    padding-right: 250px;
  }
  .pb500 {
    padding-bottom: 250px;
  }
  .mt505 {
    margin-top: 252px;
  }
  .ml505 {
    margin-left: 252px;
  }
  .mr505 {
    margin-right: 252px;
  }
  .mb505 {
    margin-bottom: 252px;
  }
  .pt505 {
    padding-top: 252px;
  }
  .pl505 {
    padding-left: 252px;
  }
  .pr505 {
    padding-right: 252px;
  }
  .pb505 {
    padding-bottom: 252px;
  }
  .mt510 {
    margin-top: 255px;
  }
  .ml510 {
    margin-left: 255px;
  }
  .mr510 {
    margin-right: 255px;
  }
  .mb510 {
    margin-bottom: 255px;
  }
  .pt510 {
    padding-top: 255px;
  }
  .pl510 {
    padding-left: 255px;
  }
  .pr510 {
    padding-right: 255px;
  }
  .pb510 {
    padding-bottom: 255px;
  }
  .mt515 {
    margin-top: 257px;
  }
  .ml515 {
    margin-left: 257px;
  }
  .mr515 {
    margin-right: 257px;
  }
  .mb515 {
    margin-bottom: 257px;
  }
  .pt515 {
    padding-top: 257px;
  }
  .pl515 {
    padding-left: 257px;
  }
  .pr515 {
    padding-right: 257px;
  }
  .pb515 {
    padding-bottom: 257px;
  }
  .mt520 {
    margin-top: 260px;
  }
  .ml520 {
    margin-left: 260px;
  }
  .mr520 {
    margin-right: 260px;
  }
  .mb520 {
    margin-bottom: 260px;
  }
  .pt520 {
    padding-top: 260px;
  }
  .pl520 {
    padding-left: 260px;
  }
  .pr520 {
    padding-right: 260px;
  }
  .pb520 {
    padding-bottom: 260px;
  }
  .mt525 {
    margin-top: 262px;
  }
  .ml525 {
    margin-left: 262px;
  }
  .mr525 {
    margin-right: 262px;
  }
  .mb525 {
    margin-bottom: 262px;
  }
  .pt525 {
    padding-top: 262px;
  }
  .pl525 {
    padding-left: 262px;
  }
  .pr525 {
    padding-right: 262px;
  }
  .pb525 {
    padding-bottom: 262px;
  }
  .mt530 {
    margin-top: 265px;
  }
  .ml530 {
    margin-left: 265px;
  }
  .mr530 {
    margin-right: 265px;
  }
  .mb530 {
    margin-bottom: 265px;
  }
  .pt530 {
    padding-top: 265px;
  }
  .pl530 {
    padding-left: 265px;
  }
  .pr530 {
    padding-right: 265px;
  }
  .pb530 {
    padding-bottom: 265px;
  }
  .mt535 {
    margin-top: 267px;
  }
  .ml535 {
    margin-left: 267px;
  }
  .mr535 {
    margin-right: 267px;
  }
  .mb535 {
    margin-bottom: 267px;
  }
  .pt535 {
    padding-top: 267px;
  }
  .pl535 {
    padding-left: 267px;
  }
  .pr535 {
    padding-right: 267px;
  }
  .pb535 {
    padding-bottom: 267px;
  }
  .mt540 {
    margin-top: 270px;
  }
  .ml540 {
    margin-left: 270px;
  }
  .mr540 {
    margin-right: 270px;
  }
  .mb540 {
    margin-bottom: 270px;
  }
  .pt540 {
    padding-top: 270px;
  }
  .pl540 {
    padding-left: 270px;
  }
  .pr540 {
    padding-right: 270px;
  }
  .pb540 {
    padding-bottom: 270px;
  }
  .mt545 {
    margin-top: 272px;
  }
  .ml545 {
    margin-left: 272px;
  }
  .mr545 {
    margin-right: 272px;
  }
  .mb545 {
    margin-bottom: 272px;
  }
  .pt545 {
    padding-top: 272px;
  }
  .pl545 {
    padding-left: 272px;
  }
  .pr545 {
    padding-right: 272px;
  }
  .pb545 {
    padding-bottom: 272px;
  }
  .mt550 {
    margin-top: 275px;
  }
  .ml550 {
    margin-left: 275px;
  }
  .mr550 {
    margin-right: 275px;
  }
  .mb550 {
    margin-bottom: 275px;
  }
  .pt550 {
    padding-top: 275px;
  }
  .pl550 {
    padding-left: 275px;
  }
  .pr550 {
    padding-right: 275px;
  }
  .pb550 {
    padding-bottom: 275px;
  }
  .mt555 {
    margin-top: 277px;
  }
  .ml555 {
    margin-left: 277px;
  }
  .mr555 {
    margin-right: 277px;
  }
  .mb555 {
    margin-bottom: 277px;
  }
  .pt555 {
    padding-top: 277px;
  }
  .pl555 {
    padding-left: 277px;
  }
  .pr555 {
    padding-right: 277px;
  }
  .pb555 {
    padding-bottom: 277px;
  }
  .mt560 {
    margin-top: 280px;
  }
  .ml560 {
    margin-left: 280px;
  }
  .mr560 {
    margin-right: 280px;
  }
  .mb560 {
    margin-bottom: 280px;
  }
  .pt560 {
    padding-top: 280px;
  }
  .pl560 {
    padding-left: 280px;
  }
  .pr560 {
    padding-right: 280px;
  }
  .pb560 {
    padding-bottom: 280px;
  }
  .mt565 {
    margin-top: 282px;
  }
  .ml565 {
    margin-left: 282px;
  }
  .mr565 {
    margin-right: 282px;
  }
  .mb565 {
    margin-bottom: 282px;
  }
  .pt565 {
    padding-top: 282px;
  }
  .pl565 {
    padding-left: 282px;
  }
  .pr565 {
    padding-right: 282px;
  }
  .pb565 {
    padding-bottom: 282px;
  }
  .mt570 {
    margin-top: 285px;
  }
  .ml570 {
    margin-left: 285px;
  }
  .mr570 {
    margin-right: 285px;
  }
  .mb570 {
    margin-bottom: 285px;
  }
  .pt570 {
    padding-top: 285px;
  }
  .pl570 {
    padding-left: 285px;
  }
  .pr570 {
    padding-right: 285px;
  }
  .pb570 {
    padding-bottom: 285px;
  }
  .mt575 {
    margin-top: 287px;
  }
  .ml575 {
    margin-left: 287px;
  }
  .mr575 {
    margin-right: 287px;
  }
  .mb575 {
    margin-bottom: 287px;
  }
  .pt575 {
    padding-top: 287px;
  }
  .pl575 {
    padding-left: 287px;
  }
  .pr575 {
    padding-right: 287px;
  }
  .pb575 {
    padding-bottom: 287px;
  }
  .mt580 {
    margin-top: 290px;
  }
  .ml580 {
    margin-left: 290px;
  }
  .mr580 {
    margin-right: 290px;
  }
  .mb580 {
    margin-bottom: 290px;
  }
  .pt580 {
    padding-top: 290px;
  }
  .pl580 {
    padding-left: 290px;
  }
  .pr580 {
    padding-right: 290px;
  }
  .pb580 {
    padding-bottom: 290px;
  }
  .mt585 {
    margin-top: 292px;
  }
  .ml585 {
    margin-left: 292px;
  }
  .mr585 {
    margin-right: 292px;
  }
  .mb585 {
    margin-bottom: 292px;
  }
  .pt585 {
    padding-top: 292px;
  }
  .pl585 {
    padding-left: 292px;
  }
  .pr585 {
    padding-right: 292px;
  }
  .pb585 {
    padding-bottom: 292px;
  }
  .mt590 {
    margin-top: 295px;
  }
  .ml590 {
    margin-left: 295px;
  }
  .mr590 {
    margin-right: 295px;
  }
  .mb590 {
    margin-bottom: 295px;
  }
  .pt590 {
    padding-top: 295px;
  }
  .pl590 {
    padding-left: 295px;
  }
  .pr590 {
    padding-right: 295px;
  }
  .pb590 {
    padding-bottom: 295px;
  }
  .mt595 {
    margin-top: 297px;
  }
  .ml595 {
    margin-left: 297px;
  }
  .mr595 {
    margin-right: 297px;
  }
  .mb595 {
    margin-bottom: 297px;
  }
  .pt595 {
    padding-top: 297px;
  }
  .pl595 {
    padding-left: 297px;
  }
  .pr595 {
    padding-right: 297px;
  }
  .pb595 {
    padding-bottom: 297px;
  }
  .mt600 {
    margin-top: 300px;
  }
  .ml600 {
    margin-left: 300px;
  }
  .mr600 {
    margin-right: 300px;
  }
  .mb600 {
    margin-bottom: 300px;
  }
  .pt600 {
    padding-top: 300px;
  }
  .pl600 {
    padding-left: 300px;
  }
  .pr600 {
    padding-right: 300px;
  }
  .pb600 {
    padding-bottom: 300px;
  }
  .mt605 {
    margin-top: 302px;
  }
  .ml605 {
    margin-left: 302px;
  }
  .mr605 {
    margin-right: 302px;
  }
  .mb605 {
    margin-bottom: 302px;
  }
  .pt605 {
    padding-top: 302px;
  }
  .pl605 {
    padding-left: 302px;
  }
  .pr605 {
    padding-right: 302px;
  }
  .pb605 {
    padding-bottom: 302px;
  }
  .mt610 {
    margin-top: 305px;
  }
  .ml610 {
    margin-left: 305px;
  }
  .mr610 {
    margin-right: 305px;
  }
  .mb610 {
    margin-bottom: 305px;
  }
  .pt610 {
    padding-top: 305px;
  }
  .pl610 {
    padding-left: 305px;
  }
  .pr610 {
    padding-right: 305px;
  }
  .pb610 {
    padding-bottom: 305px;
  }
  .mt615 {
    margin-top: 307px;
  }
  .ml615 {
    margin-left: 307px;
  }
  .mr615 {
    margin-right: 307px;
  }
  .mb615 {
    margin-bottom: 307px;
  }
  .pt615 {
    padding-top: 307px;
  }
  .pl615 {
    padding-left: 307px;
  }
  .pr615 {
    padding-right: 307px;
  }
  .pb615 {
    padding-bottom: 307px;
  }
  .mt620 {
    margin-top: 310px;
  }
  .ml620 {
    margin-left: 310px;
  }
  .mr620 {
    margin-right: 310px;
  }
  .mb620 {
    margin-bottom: 310px;
  }
  .pt620 {
    padding-top: 310px;
  }
  .pl620 {
    padding-left: 310px;
  }
  .pr620 {
    padding-right: 310px;
  }
  .pb620 {
    padding-bottom: 310px;
  }
  .mt625 {
    margin-top: 312px;
  }
  .ml625 {
    margin-left: 312px;
  }
  .mr625 {
    margin-right: 312px;
  }
  .mb625 {
    margin-bottom: 312px;
  }
  .pt625 {
    padding-top: 312px;
  }
  .pl625 {
    padding-left: 312px;
  }
  .pr625 {
    padding-right: 312px;
  }
  .pb625 {
    padding-bottom: 312px;
  }
  .mt630 {
    margin-top: 315px;
  }
  .ml630 {
    margin-left: 315px;
  }
  .mr630 {
    margin-right: 315px;
  }
  .mb630 {
    margin-bottom: 315px;
  }
  .pt630 {
    padding-top: 315px;
  }
  .pl630 {
    padding-left: 315px;
  }
  .pr630 {
    padding-right: 315px;
  }
  .pb630 {
    padding-bottom: 315px;
  }
  .mt635 {
    margin-top: 317px;
  }
  .ml635 {
    margin-left: 317px;
  }
  .mr635 {
    margin-right: 317px;
  }
  .mb635 {
    margin-bottom: 317px;
  }
  .pt635 {
    padding-top: 317px;
  }
  .pl635 {
    padding-left: 317px;
  }
  .pr635 {
    padding-right: 317px;
  }
  .pb635 {
    padding-bottom: 317px;
  }
  .mt640 {
    margin-top: 320px;
  }
  .ml640 {
    margin-left: 320px;
  }
  .mr640 {
    margin-right: 320px;
  }
  .mb640 {
    margin-bottom: 320px;
  }
  .pt640 {
    padding-top: 320px;
  }
  .pl640 {
    padding-left: 320px;
  }
  .pr640 {
    padding-right: 320px;
  }
  .pb640 {
    padding-bottom: 320px;
  }
  .mt645 {
    margin-top: 322px;
  }
  .ml645 {
    margin-left: 322px;
  }
  .mr645 {
    margin-right: 322px;
  }
  .mb645 {
    margin-bottom: 322px;
  }
  .pt645 {
    padding-top: 322px;
  }
  .pl645 {
    padding-left: 322px;
  }
  .pr645 {
    padding-right: 322px;
  }
  .pb645 {
    padding-bottom: 322px;
  }
  .mt650 {
    margin-top: 325px;
  }
  .ml650 {
    margin-left: 325px;
  }
  .mr650 {
    margin-right: 325px;
  }
  .mb650 {
    margin-bottom: 325px;
  }
  .pt650 {
    padding-top: 325px;
  }
  .pl650 {
    padding-left: 325px;
  }
  .pr650 {
    padding-right: 325px;
  }
  .pb650 {
    padding-bottom: 325px;
  }
  .mt655 {
    margin-top: 327px;
  }
  .ml655 {
    margin-left: 327px;
  }
  .mr655 {
    margin-right: 327px;
  }
  .mb655 {
    margin-bottom: 327px;
  }
  .pt655 {
    padding-top: 327px;
  }
  .pl655 {
    padding-left: 327px;
  }
  .pr655 {
    padding-right: 327px;
  }
  .pb655 {
    padding-bottom: 327px;
  }
  .mt660 {
    margin-top: 330px;
  }
  .ml660 {
    margin-left: 330px;
  }
  .mr660 {
    margin-right: 330px;
  }
  .mb660 {
    margin-bottom: 330px;
  }
  .pt660 {
    padding-top: 330px;
  }
  .pl660 {
    padding-left: 330px;
  }
  .pr660 {
    padding-right: 330px;
  }
  .pb660 {
    padding-bottom: 330px;
  }
  .mt665 {
    margin-top: 332px;
  }
  .ml665 {
    margin-left: 332px;
  }
  .mr665 {
    margin-right: 332px;
  }
  .mb665 {
    margin-bottom: 332px;
  }
  .pt665 {
    padding-top: 332px;
  }
  .pl665 {
    padding-left: 332px;
  }
  .pr665 {
    padding-right: 332px;
  }
  .pb665 {
    padding-bottom: 332px;
  }
  .mt670 {
    margin-top: 335px;
  }
  .ml670 {
    margin-left: 335px;
  }
  .mr670 {
    margin-right: 335px;
  }
  .mb670 {
    margin-bottom: 335px;
  }
  .pt670 {
    padding-top: 335px;
  }
  .pl670 {
    padding-left: 335px;
  }
  .pr670 {
    padding-right: 335px;
  }
  .pb670 {
    padding-bottom: 335px;
  }
  .mt675 {
    margin-top: 337px;
  }
  .ml675 {
    margin-left: 337px;
  }
  .mr675 {
    margin-right: 337px;
  }
  .mb675 {
    margin-bottom: 337px;
  }
  .pt675 {
    padding-top: 337px;
  }
  .pl675 {
    padding-left: 337px;
  }
  .pr675 {
    padding-right: 337px;
  }
  .pb675 {
    padding-bottom: 337px;
  }
  .mt680 {
    margin-top: 340px;
  }
  .ml680 {
    margin-left: 340px;
  }
  .mr680 {
    margin-right: 340px;
  }
  .mb680 {
    margin-bottom: 340px;
  }
  .pt680 {
    padding-top: 340px;
  }
  .pl680 {
    padding-left: 340px;
  }
  .pr680 {
    padding-right: 340px;
  }
  .pb680 {
    padding-bottom: 340px;
  }
  .mt685 {
    margin-top: 342px;
  }
  .ml685 {
    margin-left: 342px;
  }
  .mr685 {
    margin-right: 342px;
  }
  .mb685 {
    margin-bottom: 342px;
  }
  .pt685 {
    padding-top: 342px;
  }
  .pl685 {
    padding-left: 342px;
  }
  .pr685 {
    padding-right: 342px;
  }
  .pb685 {
    padding-bottom: 342px;
  }
  .mt690 {
    margin-top: 345px;
  }
  .ml690 {
    margin-left: 345px;
  }
  .mr690 {
    margin-right: 345px;
  }
  .mb690 {
    margin-bottom: 345px;
  }
  .pt690 {
    padding-top: 345px;
  }
  .pl690 {
    padding-left: 345px;
  }
  .pr690 {
    padding-right: 345px;
  }
  .pb690 {
    padding-bottom: 345px;
  }
  .mt695 {
    margin-top: 347px;
  }
  .ml695 {
    margin-left: 347px;
  }
  .mr695 {
    margin-right: 347px;
  }
  .mb695 {
    margin-bottom: 347px;
  }
  .pt695 {
    padding-top: 347px;
  }
  .pl695 {
    padding-left: 347px;
  }
  .pr695 {
    padding-right: 347px;
  }
  .pb695 {
    padding-bottom: 347px;
  }
  .mt700 {
    margin-top: 350px;
  }
  .ml700 {
    margin-left: 350px;
  }
  .mr700 {
    margin-right: 350px;
  }
  .mb700 {
    margin-bottom: 350px;
  }
  .pt700 {
    padding-top: 350px;
  }
  .pl700 {
    padding-left: 350px;
  }
  .pr700 {
    padding-right: 350px;
  }
  .pb700 {
    padding-bottom: 350px;
  }
  .mt705 {
    margin-top: 352px;
  }
  .ml705 {
    margin-left: 352px;
  }
  .mr705 {
    margin-right: 352px;
  }
  .mb705 {
    margin-bottom: 352px;
  }
  .pt705 {
    padding-top: 352px;
  }
  .pl705 {
    padding-left: 352px;
  }
  .pr705 {
    padding-right: 352px;
  }
  .pb705 {
    padding-bottom: 352px;
  }
  .mt710 {
    margin-top: 355px;
  }
  .ml710 {
    margin-left: 355px;
  }
  .mr710 {
    margin-right: 355px;
  }
  .mb710 {
    margin-bottom: 355px;
  }
  .pt710 {
    padding-top: 355px;
  }
  .pl710 {
    padding-left: 355px;
  }
  .pr710 {
    padding-right: 355px;
  }
  .pb710 {
    padding-bottom: 355px;
  }
  .mt715 {
    margin-top: 357px;
  }
  .ml715 {
    margin-left: 357px;
  }
  .mr715 {
    margin-right: 357px;
  }
  .mb715 {
    margin-bottom: 357px;
  }
  .pt715 {
    padding-top: 357px;
  }
  .pl715 {
    padding-left: 357px;
  }
  .pr715 {
    padding-right: 357px;
  }
  .pb715 {
    padding-bottom: 357px;
  }
  .mt720 {
    margin-top: 360px;
  }
  .ml720 {
    margin-left: 360px;
  }
  .mr720 {
    margin-right: 360px;
  }
  .mb720 {
    margin-bottom: 360px;
  }
  .pt720 {
    padding-top: 360px;
  }
  .pl720 {
    padding-left: 360px;
  }
  .pr720 {
    padding-right: 360px;
  }
  .pb720 {
    padding-bottom: 360px;
  }
  .mt725 {
    margin-top: 362px;
  }
  .ml725 {
    margin-left: 362px;
  }
  .mr725 {
    margin-right: 362px;
  }
  .mb725 {
    margin-bottom: 362px;
  }
  .pt725 {
    padding-top: 362px;
  }
  .pl725 {
    padding-left: 362px;
  }
  .pr725 {
    padding-right: 362px;
  }
  .pb725 {
    padding-bottom: 362px;
  }
  .mt730 {
    margin-top: 365px;
  }
  .ml730 {
    margin-left: 365px;
  }
  .mr730 {
    margin-right: 365px;
  }
  .mb730 {
    margin-bottom: 365px;
  }
  .pt730 {
    padding-top: 365px;
  }
  .pl730 {
    padding-left: 365px;
  }
  .pr730 {
    padding-right: 365px;
  }
  .pb730 {
    padding-bottom: 365px;
  }
  .mt735 {
    margin-top: 367px;
  }
  .ml735 {
    margin-left: 367px;
  }
  .mr735 {
    margin-right: 367px;
  }
  .mb735 {
    margin-bottom: 367px;
  }
  .pt735 {
    padding-top: 367px;
  }
  .pl735 {
    padding-left: 367px;
  }
  .pr735 {
    padding-right: 367px;
  }
  .pb735 {
    padding-bottom: 367px;
  }
  .mt740 {
    margin-top: 370px;
  }
  .ml740 {
    margin-left: 370px;
  }
  .mr740 {
    margin-right: 370px;
  }
  .mb740 {
    margin-bottom: 370px;
  }
  .pt740 {
    padding-top: 370px;
  }
  .pl740 {
    padding-left: 370px;
  }
  .pr740 {
    padding-right: 370px;
  }
  .pb740 {
    padding-bottom: 370px;
  }
  .mt745 {
    margin-top: 372px;
  }
  .ml745 {
    margin-left: 372px;
  }
  .mr745 {
    margin-right: 372px;
  }
  .mb745 {
    margin-bottom: 372px;
  }
  .pt745 {
    padding-top: 372px;
  }
  .pl745 {
    padding-left: 372px;
  }
  .pr745 {
    padding-right: 372px;
  }
  .pb745 {
    padding-bottom: 372px;
  }
  .mt750 {
    margin-top: 375px;
  }
  .ml750 {
    margin-left: 375px;
  }
  .mr750 {
    margin-right: 375px;
  }
  .mb750 {
    margin-bottom: 375px;
  }
  .pt750 {
    padding-top: 375px;
  }
  .pl750 {
    padding-left: 375px;
  }
  .pr750 {
    padding-right: 375px;
  }
  .pb750 {
    padding-bottom: 375px;
  }
  .mt755 {
    margin-top: 377px;
  }
  .ml755 {
    margin-left: 377px;
  }
  .mr755 {
    margin-right: 377px;
  }
  .mb755 {
    margin-bottom: 377px;
  }
  .pt755 {
    padding-top: 377px;
  }
  .pl755 {
    padding-left: 377px;
  }
  .pr755 {
    padding-right: 377px;
  }
  .pb755 {
    padding-bottom: 377px;
  }
  .mt760 {
    margin-top: 380px;
  }
  .ml760 {
    margin-left: 380px;
  }
  .mr760 {
    margin-right: 380px;
  }
  .mb760 {
    margin-bottom: 380px;
  }
  .pt760 {
    padding-top: 380px;
  }
  .pl760 {
    padding-left: 380px;
  }
  .pr760 {
    padding-right: 380px;
  }
  .pb760 {
    padding-bottom: 380px;
  }
  .mt765 {
    margin-top: 382px;
  }
  .ml765 {
    margin-left: 382px;
  }
  .mr765 {
    margin-right: 382px;
  }
  .mb765 {
    margin-bottom: 382px;
  }
  .pt765 {
    padding-top: 382px;
  }
  .pl765 {
    padding-left: 382px;
  }
  .pr765 {
    padding-right: 382px;
  }
  .pb765 {
    padding-bottom: 382px;
  }
  .mt770 {
    margin-top: 385px;
  }
  .ml770 {
    margin-left: 385px;
  }
  .mr770 {
    margin-right: 385px;
  }
  .mb770 {
    margin-bottom: 385px;
  }
  .pt770 {
    padding-top: 385px;
  }
  .pl770 {
    padding-left: 385px;
  }
  .pr770 {
    padding-right: 385px;
  }
  .pb770 {
    padding-bottom: 385px;
  }
  .mt775 {
    margin-top: 387px;
  }
  .ml775 {
    margin-left: 387px;
  }
  .mr775 {
    margin-right: 387px;
  }
  .mb775 {
    margin-bottom: 387px;
  }
  .pt775 {
    padding-top: 387px;
  }
  .pl775 {
    padding-left: 387px;
  }
  .pr775 {
    padding-right: 387px;
  }
  .pb775 {
    padding-bottom: 387px;
  }
  .mt780 {
    margin-top: 390px;
  }
  .ml780 {
    margin-left: 390px;
  }
  .mr780 {
    margin-right: 390px;
  }
  .mb780 {
    margin-bottom: 390px;
  }
  .pt780 {
    padding-top: 390px;
  }
  .pl780 {
    padding-left: 390px;
  }
  .pr780 {
    padding-right: 390px;
  }
  .pb780 {
    padding-bottom: 390px;
  }
  .mt785 {
    margin-top: 392px;
  }
  .ml785 {
    margin-left: 392px;
  }
  .mr785 {
    margin-right: 392px;
  }
  .mb785 {
    margin-bottom: 392px;
  }
  .pt785 {
    padding-top: 392px;
  }
  .pl785 {
    padding-left: 392px;
  }
  .pr785 {
    padding-right: 392px;
  }
  .pb785 {
    padding-bottom: 392px;
  }
  .mt790 {
    margin-top: 395px;
  }
  .ml790 {
    margin-left: 395px;
  }
  .mr790 {
    margin-right: 395px;
  }
  .mb790 {
    margin-bottom: 395px;
  }
  .pt790 {
    padding-top: 395px;
  }
  .pl790 {
    padding-left: 395px;
  }
  .pr790 {
    padding-right: 395px;
  }
  .pb790 {
    padding-bottom: 395px;
  }
  .mt795 {
    margin-top: 397px;
  }
  .ml795 {
    margin-left: 397px;
  }
  .mr795 {
    margin-right: 397px;
  }
  .mb795 {
    margin-bottom: 397px;
  }
  .pt795 {
    padding-top: 397px;
  }
  .pl795 {
    padding-left: 397px;
  }
  .pr795 {
    padding-right: 397px;
  }
  .pb795 {
    padding-bottom: 397px;
  }
  .mt800 {
    margin-top: 400px;
  }
  .ml800 {
    margin-left: 400px;
  }
  .mr800 {
    margin-right: 400px;
  }
  .mb800 {
    margin-bottom: 400px;
  }
  .pt800 {
    padding-top: 400px;
  }
  .pl800 {
    padding-left: 400px;
  }
  .pr800 {
    padding-right: 400px;
  }
  .pb800 {
    padding-bottom: 400px;
  }
  .mt805 {
    margin-top: 402px;
  }
  .ml805 {
    margin-left: 402px;
  }
  .mr805 {
    margin-right: 402px;
  }
  .mb805 {
    margin-bottom: 402px;
  }
  .pt805 {
    padding-top: 402px;
  }
  .pl805 {
    padding-left: 402px;
  }
  .pr805 {
    padding-right: 402px;
  }
  .pb805 {
    padding-bottom: 402px;
  }
  .mt810 {
    margin-top: 405px;
  }
  .ml810 {
    margin-left: 405px;
  }
  .mr810 {
    margin-right: 405px;
  }
  .mb810 {
    margin-bottom: 405px;
  }
  .pt810 {
    padding-top: 405px;
  }
  .pl810 {
    padding-left: 405px;
  }
  .pr810 {
    padding-right: 405px;
  }
  .pb810 {
    padding-bottom: 405px;
  }
  .mt815 {
    margin-top: 407px;
  }
  .ml815 {
    margin-left: 407px;
  }
  .mr815 {
    margin-right: 407px;
  }
  .mb815 {
    margin-bottom: 407px;
  }
  .pt815 {
    padding-top: 407px;
  }
  .pl815 {
    padding-left: 407px;
  }
  .pr815 {
    padding-right: 407px;
  }
  .pb815 {
    padding-bottom: 407px;
  }
  .mt820 {
    margin-top: 410px;
  }
  .ml820 {
    margin-left: 410px;
  }
  .mr820 {
    margin-right: 410px;
  }
  .mb820 {
    margin-bottom: 410px;
  }
  .pt820 {
    padding-top: 410px;
  }
  .pl820 {
    padding-left: 410px;
  }
  .pr820 {
    padding-right: 410px;
  }
  .pb820 {
    padding-bottom: 410px;
  }
  .mt825 {
    margin-top: 412px;
  }
  .ml825 {
    margin-left: 412px;
  }
  .mr825 {
    margin-right: 412px;
  }
  .mb825 {
    margin-bottom: 412px;
  }
  .pt825 {
    padding-top: 412px;
  }
  .pl825 {
    padding-left: 412px;
  }
  .pr825 {
    padding-right: 412px;
  }
  .pb825 {
    padding-bottom: 412px;
  }
  .mt830 {
    margin-top: 415px;
  }
  .ml830 {
    margin-left: 415px;
  }
  .mr830 {
    margin-right: 415px;
  }
  .mb830 {
    margin-bottom: 415px;
  }
  .pt830 {
    padding-top: 415px;
  }
  .pl830 {
    padding-left: 415px;
  }
  .pr830 {
    padding-right: 415px;
  }
  .pb830 {
    padding-bottom: 415px;
  }
  .mt835 {
    margin-top: 417px;
  }
  .ml835 {
    margin-left: 417px;
  }
  .mr835 {
    margin-right: 417px;
  }
  .mb835 {
    margin-bottom: 417px;
  }
  .pt835 {
    padding-top: 417px;
  }
  .pl835 {
    padding-left: 417px;
  }
  .pr835 {
    padding-right: 417px;
  }
  .pb835 {
    padding-bottom: 417px;
  }
  .mt840 {
    margin-top: 420px;
  }
  .ml840 {
    margin-left: 420px;
  }
  .mr840 {
    margin-right: 420px;
  }
  .mb840 {
    margin-bottom: 420px;
  }
  .pt840 {
    padding-top: 420px;
  }
  .pl840 {
    padding-left: 420px;
  }
  .pr840 {
    padding-right: 420px;
  }
  .pb840 {
    padding-bottom: 420px;
  }
  .mt845 {
    margin-top: 422px;
  }
  .ml845 {
    margin-left: 422px;
  }
  .mr845 {
    margin-right: 422px;
  }
  .mb845 {
    margin-bottom: 422px;
  }
  .pt845 {
    padding-top: 422px;
  }
  .pl845 {
    padding-left: 422px;
  }
  .pr845 {
    padding-right: 422px;
  }
  .pb845 {
    padding-bottom: 422px;
  }
  .mt850 {
    margin-top: 425px;
  }
  .ml850 {
    margin-left: 425px;
  }
  .mr850 {
    margin-right: 425px;
  }
  .mb850 {
    margin-bottom: 425px;
  }
  .pt850 {
    padding-top: 425px;
  }
  .pl850 {
    padding-left: 425px;
  }
  .pr850 {
    padding-right: 425px;
  }
  .pb850 {
    padding-bottom: 425px;
  }
  .mt855 {
    margin-top: 427px;
  }
  .ml855 {
    margin-left: 427px;
  }
  .mr855 {
    margin-right: 427px;
  }
  .mb855 {
    margin-bottom: 427px;
  }
  .pt855 {
    padding-top: 427px;
  }
  .pl855 {
    padding-left: 427px;
  }
  .pr855 {
    padding-right: 427px;
  }
  .pb855 {
    padding-bottom: 427px;
  }
  .mt860 {
    margin-top: 430px;
  }
  .ml860 {
    margin-left: 430px;
  }
  .mr860 {
    margin-right: 430px;
  }
  .mb860 {
    margin-bottom: 430px;
  }
  .pt860 {
    padding-top: 430px;
  }
  .pl860 {
    padding-left: 430px;
  }
  .pr860 {
    padding-right: 430px;
  }
  .pb860 {
    padding-bottom: 430px;
  }
  .mt865 {
    margin-top: 432px;
  }
  .ml865 {
    margin-left: 432px;
  }
  .mr865 {
    margin-right: 432px;
  }
  .mb865 {
    margin-bottom: 432px;
  }
  .pt865 {
    padding-top: 432px;
  }
  .pl865 {
    padding-left: 432px;
  }
  .pr865 {
    padding-right: 432px;
  }
  .pb865 {
    padding-bottom: 432px;
  }
  .mt870 {
    margin-top: 435px;
  }
  .ml870 {
    margin-left: 435px;
  }
  .mr870 {
    margin-right: 435px;
  }
  .mb870 {
    margin-bottom: 435px;
  }
  .pt870 {
    padding-top: 435px;
  }
  .pl870 {
    padding-left: 435px;
  }
  .pr870 {
    padding-right: 435px;
  }
  .pb870 {
    padding-bottom: 435px;
  }
  .mt875 {
    margin-top: 437px;
  }
  .ml875 {
    margin-left: 437px;
  }
  .mr875 {
    margin-right: 437px;
  }
  .mb875 {
    margin-bottom: 437px;
  }
  .pt875 {
    padding-top: 437px;
  }
  .pl875 {
    padding-left: 437px;
  }
  .pr875 {
    padding-right: 437px;
  }
  .pb875 {
    padding-bottom: 437px;
  }
  .mt880 {
    margin-top: 440px;
  }
  .ml880 {
    margin-left: 440px;
  }
  .mr880 {
    margin-right: 440px;
  }
  .mb880 {
    margin-bottom: 440px;
  }
  .pt880 {
    padding-top: 440px;
  }
  .pl880 {
    padding-left: 440px;
  }
  .pr880 {
    padding-right: 440px;
  }
  .pb880 {
    padding-bottom: 440px;
  }
  .mt885 {
    margin-top: 442px;
  }
  .ml885 {
    margin-left: 442px;
  }
  .mr885 {
    margin-right: 442px;
  }
  .mb885 {
    margin-bottom: 442px;
  }
  .pt885 {
    padding-top: 442px;
  }
  .pl885 {
    padding-left: 442px;
  }
  .pr885 {
    padding-right: 442px;
  }
  .pb885 {
    padding-bottom: 442px;
  }
  .mt890 {
    margin-top: 445px;
  }
  .ml890 {
    margin-left: 445px;
  }
  .mr890 {
    margin-right: 445px;
  }
  .mb890 {
    margin-bottom: 445px;
  }
  .pt890 {
    padding-top: 445px;
  }
  .pl890 {
    padding-left: 445px;
  }
  .pr890 {
    padding-right: 445px;
  }
  .pb890 {
    padding-bottom: 445px;
  }
  .mt895 {
    margin-top: 447px;
  }
  .ml895 {
    margin-left: 447px;
  }
  .mr895 {
    margin-right: 447px;
  }
  .mb895 {
    margin-bottom: 447px;
  }
  .pt895 {
    padding-top: 447px;
  }
  .pl895 {
    padding-left: 447px;
  }
  .pr895 {
    padding-right: 447px;
  }
  .pb895 {
    padding-bottom: 447px;
  }
  .mt900 {
    margin-top: 450px;
  }
  .ml900 {
    margin-left: 450px;
  }
  .mr900 {
    margin-right: 450px;
  }
  .mb900 {
    margin-bottom: 450px;
  }
  .pt900 {
    padding-top: 450px;
  }
  .pl900 {
    padding-left: 450px;
  }
  .pr900 {
    padding-right: 450px;
  }
  .pb900 {
    padding-bottom: 450px;
  }
  .mt905 {
    margin-top: 452px;
  }
  .ml905 {
    margin-left: 452px;
  }
  .mr905 {
    margin-right: 452px;
  }
  .mb905 {
    margin-bottom: 452px;
  }
  .pt905 {
    padding-top: 452px;
  }
  .pl905 {
    padding-left: 452px;
  }
  .pr905 {
    padding-right: 452px;
  }
  .pb905 {
    padding-bottom: 452px;
  }
  .mt910 {
    margin-top: 455px;
  }
  .ml910 {
    margin-left: 455px;
  }
  .mr910 {
    margin-right: 455px;
  }
  .mb910 {
    margin-bottom: 455px;
  }
  .pt910 {
    padding-top: 455px;
  }
  .pl910 {
    padding-left: 455px;
  }
  .pr910 {
    padding-right: 455px;
  }
  .pb910 {
    padding-bottom: 455px;
  }
  .mt915 {
    margin-top: 457px;
  }
  .ml915 {
    margin-left: 457px;
  }
  .mr915 {
    margin-right: 457px;
  }
  .mb915 {
    margin-bottom: 457px;
  }
  .pt915 {
    padding-top: 457px;
  }
  .pl915 {
    padding-left: 457px;
  }
  .pr915 {
    padding-right: 457px;
  }
  .pb915 {
    padding-bottom: 457px;
  }
  .mt920 {
    margin-top: 460px;
  }
  .ml920 {
    margin-left: 460px;
  }
  .mr920 {
    margin-right: 460px;
  }
  .mb920 {
    margin-bottom: 460px;
  }
  .pt920 {
    padding-top: 460px;
  }
  .pl920 {
    padding-left: 460px;
  }
  .pr920 {
    padding-right: 460px;
  }
  .pb920 {
    padding-bottom: 460px;
  }
  .mt925 {
    margin-top: 462px;
  }
  .ml925 {
    margin-left: 462px;
  }
  .mr925 {
    margin-right: 462px;
  }
  .mb925 {
    margin-bottom: 462px;
  }
  .pt925 {
    padding-top: 462px;
  }
  .pl925 {
    padding-left: 462px;
  }
  .pr925 {
    padding-right: 462px;
  }
  .pb925 {
    padding-bottom: 462px;
  }
  .mt930 {
    margin-top: 465px;
  }
  .ml930 {
    margin-left: 465px;
  }
  .mr930 {
    margin-right: 465px;
  }
  .mb930 {
    margin-bottom: 465px;
  }
  .pt930 {
    padding-top: 465px;
  }
  .pl930 {
    padding-left: 465px;
  }
  .pr930 {
    padding-right: 465px;
  }
  .pb930 {
    padding-bottom: 465px;
  }
  .mt935 {
    margin-top: 467px;
  }
  .ml935 {
    margin-left: 467px;
  }
  .mr935 {
    margin-right: 467px;
  }
  .mb935 {
    margin-bottom: 467px;
  }
  .pt935 {
    padding-top: 467px;
  }
  .pl935 {
    padding-left: 467px;
  }
  .pr935 {
    padding-right: 467px;
  }
  .pb935 {
    padding-bottom: 467px;
  }
  .mt940 {
    margin-top: 470px;
  }
  .ml940 {
    margin-left: 470px;
  }
  .mr940 {
    margin-right: 470px;
  }
  .mb940 {
    margin-bottom: 470px;
  }
  .pt940 {
    padding-top: 470px;
  }
  .pl940 {
    padding-left: 470px;
  }
  .pr940 {
    padding-right: 470px;
  }
  .pb940 {
    padding-bottom: 470px;
  }
  .mt945 {
    margin-top: 472px;
  }
  .ml945 {
    margin-left: 472px;
  }
  .mr945 {
    margin-right: 472px;
  }
  .mb945 {
    margin-bottom: 472px;
  }
  .pt945 {
    padding-top: 472px;
  }
  .pl945 {
    padding-left: 472px;
  }
  .pr945 {
    padding-right: 472px;
  }
  .pb945 {
    padding-bottom: 472px;
  }
  .mt950 {
    margin-top: 475px;
  }
  .ml950 {
    margin-left: 475px;
  }
  .mr950 {
    margin-right: 475px;
  }
  .mb950 {
    margin-bottom: 475px;
  }
  .pt950 {
    padding-top: 475px;
  }
  .pl950 {
    padding-left: 475px;
  }
  .pr950 {
    padding-right: 475px;
  }
  .pb950 {
    padding-bottom: 475px;
  }
  .mt955 {
    margin-top: 477px;
  }
  .ml955 {
    margin-left: 477px;
  }
  .mr955 {
    margin-right: 477px;
  }
  .mb955 {
    margin-bottom: 477px;
  }
  .pt955 {
    padding-top: 477px;
  }
  .pl955 {
    padding-left: 477px;
  }
  .pr955 {
    padding-right: 477px;
  }
  .pb955 {
    padding-bottom: 477px;
  }
  .mt960 {
    margin-top: 480px;
  }
  .ml960 {
    margin-left: 480px;
  }
  .mr960 {
    margin-right: 480px;
  }
  .mb960 {
    margin-bottom: 480px;
  }
  .pt960 {
    padding-top: 480px;
  }
  .pl960 {
    padding-left: 480px;
  }
  .pr960 {
    padding-right: 480px;
  }
  .pb960 {
    padding-bottom: 480px;
  }
  .mt965 {
    margin-top: 482px;
  }
  .ml965 {
    margin-left: 482px;
  }
  .mr965 {
    margin-right: 482px;
  }
  .mb965 {
    margin-bottom: 482px;
  }
  .pt965 {
    padding-top: 482px;
  }
  .pl965 {
    padding-left: 482px;
  }
  .pr965 {
    padding-right: 482px;
  }
  .pb965 {
    padding-bottom: 482px;
  }
  .mt970 {
    margin-top: 485px;
  }
  .ml970 {
    margin-left: 485px;
  }
  .mr970 {
    margin-right: 485px;
  }
  .mb970 {
    margin-bottom: 485px;
  }
  .pt970 {
    padding-top: 485px;
  }
  .pl970 {
    padding-left: 485px;
  }
  .pr970 {
    padding-right: 485px;
  }
  .pb970 {
    padding-bottom: 485px;
  }
  .mt975 {
    margin-top: 487px;
  }
  .ml975 {
    margin-left: 487px;
  }
  .mr975 {
    margin-right: 487px;
  }
  .mb975 {
    margin-bottom: 487px;
  }
  .pt975 {
    padding-top: 487px;
  }
  .pl975 {
    padding-left: 487px;
  }
  .pr975 {
    padding-right: 487px;
  }
  .pb975 {
    padding-bottom: 487px;
  }
  .mt980 {
    margin-top: 490px;
  }
  .ml980 {
    margin-left: 490px;
  }
  .mr980 {
    margin-right: 490px;
  }
  .mb980 {
    margin-bottom: 490px;
  }
  .pt980 {
    padding-top: 490px;
  }
  .pl980 {
    padding-left: 490px;
  }
  .pr980 {
    padding-right: 490px;
  }
  .pb980 {
    padding-bottom: 490px;
  }
  .mt985 {
    margin-top: 492px;
  }
  .ml985 {
    margin-left: 492px;
  }
  .mr985 {
    margin-right: 492px;
  }
  .mb985 {
    margin-bottom: 492px;
  }
  .pt985 {
    padding-top: 492px;
  }
  .pl985 {
    padding-left: 492px;
  }
  .pr985 {
    padding-right: 492px;
  }
  .pb985 {
    padding-bottom: 492px;
  }
  .mt990 {
    margin-top: 495px;
  }
  .ml990 {
    margin-left: 495px;
  }
  .mr990 {
    margin-right: 495px;
  }
  .mb990 {
    margin-bottom: 495px;
  }
  .pt990 {
    padding-top: 495px;
  }
  .pl990 {
    padding-left: 495px;
  }
  .pr990 {
    padding-right: 495px;
  }
  .pb990 {
    padding-bottom: 495px;
  }
  .mt995 {
    margin-top: 497px;
  }
  .ml995 {
    margin-left: 497px;
  }
  .mr995 {
    margin-right: 497px;
  }
  .mb995 {
    margin-bottom: 497px;
  }
  .pt995 {
    padding-top: 497px;
  }
  .pl995 {
    padding-left: 497px;
  }
  .pr995 {
    padding-right: 497px;
  }
  .pb995 {
    padding-bottom: 497px;
  }
  .mt1000 {
    margin-top: 500px;
  }
  .ml1000 {
    margin-left: 500px;
  }
  .mr1000 {
    margin-right: 500px;
  }
  .mb1000 {
    margin-bottom: 500px;
  }
  .pt1000 {
    padding-top: 500px;
  }
  .pl1000 {
    padding-left: 500px;
  }
  .pr1000 {
    padding-right: 500px;
  }
  .pb1000 {
    padding-bottom: 500px;
  }
}
.lh0 {
  line-height: 0px;
}

.lh1 {
  line-height: 1px;
}

.lh2 {
  line-height: 2px;
}

.lh3 {
  line-height: 3px;
}

.lh4 {
  line-height: 4px;
}

.lh5 {
  line-height: 5px;
}

.lh6 {
  line-height: 6px;
}

.lh7 {
  line-height: 7px;
}

.lh8 {
  line-height: 8px;
}

.lh9 {
  line-height: 9px;
}

.lh10 {
  line-height: 10px;
}

.lh11 {
  line-height: 11px;
}

.lh12 {
  line-height: 12px;
}

.lh13 {
  line-height: 13px;
}

.lh14 {
  line-height: 14px;
}

.lh15 {
  line-height: 15px;
}

.lh16 {
  line-height: 16px;
}

.lh17 {
  line-height: 17px;
}

.lh18 {
  line-height: 18px;
}

.lh19 {
  line-height: 19px;
}

.lh20 {
  line-height: 20px;
}

.lh21 {
  line-height: 21px;
}

.lh22 {
  line-height: 22px;
}

.lh23 {
  line-height: 23px;
}

.lh24 {
  line-height: 24px;
}

.lh25 {
  line-height: 25px;
}

.lh26 {
  line-height: 26px;
}

.lh27 {
  line-height: 27px;
}

.lh28 {
  line-height: 28px;
}

.lh29 {
  line-height: 29px;
}

.lh30 {
  line-height: 30px;
}

.lh31 {
  line-height: 31px;
}

.lh32 {
  line-height: 32px;
}

.lh33 {
  line-height: 33px;
}

.lh34 {
  line-height: 34px;
}

.lh35 {
  line-height: 35px;
}

.lh36 {
  line-height: 36px;
}

.lh37 {
  line-height: 37px;
}

.lh38 {
  line-height: 38px;
}

.lh39 {
  line-height: 39px;
}

.lh40 {
  line-height: 40px;
}

.lh41 {
  line-height: 41px;
}

.lh42 {
  line-height: 42px;
}

.lh43 {
  line-height: 43px;
}

.lh44 {
  line-height: 44px;
}

.lh45 {
  line-height: 45px;
}

.lh46 {
  line-height: 46px;
}

.lh47 {
  line-height: 47px;
}

.lh48 {
  line-height: 48px;
}

.lh49 {
  line-height: 49px;
}

.lh50 {
  line-height: 50px;
}

.lh51 {
  line-height: 51px;
}

.lh52 {
  line-height: 52px;
}

.lh53 {
  line-height: 53px;
}

.lh54 {
  line-height: 54px;
}

.lh55 {
  line-height: 55px;
}

.lh56 {
  line-height: 56px;
}

.lh57 {
  line-height: 57px;
}

.lh58 {
  line-height: 58px;
}

.lh59 {
  line-height: 59px;
}

.lh60 {
  line-height: 60px;
}

.lh61 {
  line-height: 61px;
}

.lh62 {
  line-height: 62px;
}

.lh63 {
  line-height: 63px;
}

.lh64 {
  line-height: 64px;
}

.lh65 {
  line-height: 65px;
}

.lh66 {
  line-height: 66px;
}

.lh67 {
  line-height: 67px;
}

.lh68 {
  line-height: 68px;
}

.lh69 {
  line-height: 69px;
}

.lh70 {
  line-height: 70px;
}

.f600 {
  font-weight: 600;
}

.f_normal {
  font-weight: normal;
}

.lay_display {
  display: none;
}

.mv-top1 {
  top: 1% !important;
  transform: translateY(0%) !important;
}

.mv-top2 {
  top: 2% !important;
  transform: translateY(0%) !important;
}

.mv-top3 {
  top: 3% !important;
  transform: translateY(0%) !important;
}

.mv-top4 {
  top: 4% !important;
  transform: translateY(0%) !important;
}

.mv-top5 {
  top: 5% !important;
  transform: translateY(0%) !important;
}

.mv-top6 {
  top: 6% !important;
  transform: translateY(0%) !important;
}

.mv-top7 {
  top: 7% !important;
  transform: translateY(0%) !important;
}

.mv-top8 {
  top: 8% !important;
  transform: translateY(0%) !important;
}

.mv-top9 {
  top: 9% !important;
  transform: translateY(0%) !important;
}

.mv-top10 {
  top: 10% !important;
  transform: translateY(0%) !important;
}

.mv-top11 {
  top: 11% !important;
  transform: translateY(0%) !important;
}

.mv-top12 {
  top: 12% !important;
  transform: translateY(0%) !important;
}

.mv-top13 {
  top: 13% !important;
  transform: translateY(0%) !important;
}

.mv-top14 {
  top: 14% !important;
  transform: translateY(0%) !important;
}

.mv-top15 {
  top: 15% !important;
  transform: translateY(0%) !important;
}

.mv-top16 {
  top: 16% !important;
  transform: translateY(0%) !important;
}

.mv-top17 {
  top: 17% !important;
  transform: translateY(0%) !important;
}

.mv-top18 {
  top: 18% !important;
  transform: translateY(0%) !important;
}

.mv-top19 {
  top: 19% !important;
  transform: translateY(0%) !important;
}

.mv-top20 {
  top: 20% !important;
  transform: translateY(0%) !important;
}

.mv-top21 {
  top: 21% !important;
  transform: translateY(0%) !important;
}

.mv-top22 {
  top: 22% !important;
  transform: translateY(0%) !important;
}

.mv-top23 {
  top: 23% !important;
  transform: translateY(0%) !important;
}

.mv-top24 {
  top: 24% !important;
  transform: translateY(0%) !important;
}

.mv-top25 {
  top: 25% !important;
  transform: translateY(0%) !important;
}

.mv-top26 {
  top: 26% !important;
  transform: translateY(0%) !important;
}

.mv-top27 {
  top: 27% !important;
  transform: translateY(0%) !important;
}

.mv-top28 {
  top: 28% !important;
  transform: translateY(0%) !important;
}

.mv-top29 {
  top: 29% !important;
  transform: translateY(0%) !important;
}

.mv-top30 {
  top: 30% !important;
  transform: translateY(0%) !important;
}

.mv-top31 {
  top: 31% !important;
  transform: translateY(0%) !important;
}

.mv-top32 {
  top: 32% !important;
  transform: translateY(0%) !important;
}

.mv-top33 {
  top: 33% !important;
  transform: translateY(0%) !important;
}

.mv-top34 {
  top: 34% !important;
  transform: translateY(0%) !important;
}

.mv-top35 {
  top: 35% !important;
  transform: translateY(0%) !important;
}

.mv-top36 {
  top: 36% !important;
  transform: translateY(0%) !important;
}

.mv-top37 {
  top: 37% !important;
  transform: translateY(0%) !important;
}

.mv-top38 {
  top: 38% !important;
  transform: translateY(0%) !important;
}

.mv-top39 {
  top: 39% !important;
  transform: translateY(0%) !important;
}

.mv-top40 {
  top: 40% !important;
  transform: translateY(0%) !important;
}

.mv-top41 {
  top: 41% !important;
  transform: translateY(0%) !important;
}

.mv-top42 {
  top: 42% !important;
  transform: translateY(0%) !important;
}

.mv-top43 {
  top: 43% !important;
  transform: translateY(0%) !important;
}

.mv-top44 {
  top: 44% !important;
  transform: translateY(0%) !important;
}

.mv-top45 {
  top: 45% !important;
  transform: translateY(0%) !important;
}

.mv-top46 {
  top: 46% !important;
  transform: translateY(0%) !important;
}

.mv-top47 {
  top: 47% !important;
  transform: translateY(0%) !important;
}

.mv-top48 {
  top: 48% !important;
  transform: translateY(0%) !important;
}

.mv-top49 {
  top: 49% !important;
  transform: translateY(0%) !important;
}

.mv-top50 {
  top: 50% !important;
  transform: translateY(0%) !important;
}

.mv-top51 {
  top: 51% !important;
  transform: translateY(0%) !important;
}

.mv-top52 {
  top: 52% !important;
  transform: translateY(0%) !important;
}

.mv-top53 {
  top: 53% !important;
  transform: translateY(0%) !important;
}

.mv-top54 {
  top: 54% !important;
  transform: translateY(0%) !important;
}

.mv-top55 {
  top: 55% !important;
  transform: translateY(0%) !important;
}

.mv-top56 {
  top: 56% !important;
  transform: translateY(0%) !important;
}

.mv-top57 {
  top: 57% !important;
  transform: translateY(0%) !important;
}

.mv-top58 {
  top: 58% !important;
  transform: translateY(0%) !important;
}

.mv-top59 {
  top: 59% !important;
  transform: translateY(0%) !important;
}

.mv-top60 {
  top: 60% !important;
  transform: translateY(0%) !important;
}

.mv-top61 {
  top: 61% !important;
  transform: translateY(0%) !important;
}

.mv-top62 {
  top: 62% !important;
  transform: translateY(0%) !important;
}

.mv-top63 {
  top: 63% !important;
  transform: translateY(0%) !important;
}

.mv-top64 {
  top: 64% !important;
  transform: translateY(0%) !important;
}

.mv-top65 {
  top: 65% !important;
  transform: translateY(0%) !important;
}

.mv-top66 {
  top: 66% !important;
  transform: translateY(0%) !important;
}

.mv-top67 {
  top: 67% !important;
  transform: translateY(0%) !important;
}

.mv-top68 {
  top: 68% !important;
  transform: translateY(0%) !important;
}

.mv-top69 {
  top: 69% !important;
  transform: translateY(0%) !important;
}

.mv-top70 {
  top: 70% !important;
  transform: translateY(0%) !important;
}

.mv-top71 {
  top: 71% !important;
  transform: translateY(0%) !important;
}

.mv-top72 {
  top: 72% !important;
  transform: translateY(0%) !important;
}

.mv-top73 {
  top: 73% !important;
  transform: translateY(0%) !important;
}

.mv-top74 {
  top: 74% !important;
  transform: translateY(0%) !important;
}

.mv-top75 {
  top: 75% !important;
  transform: translateY(0%) !important;
}

.mv-top76 {
  top: 76% !important;
  transform: translateY(0%) !important;
}

.mv-top77 {
  top: 77% !important;
  transform: translateY(0%) !important;
}

.mv-top78 {
  top: 78% !important;
  transform: translateY(0%) !important;
}

.mv-top79 {
  top: 79% !important;
  transform: translateY(0%) !important;
}

.mv-top80 {
  top: 80% !important;
  transform: translateY(0%) !important;
}

.mv-top81 {
  top: 81% !important;
  transform: translateY(0%) !important;
}

.mv-top82 {
  top: 82% !important;
  transform: translateY(0%) !important;
}

.mv-top83 {
  top: 83% !important;
  transform: translateY(0%) !important;
}

.mv-top84 {
  top: 84% !important;
  transform: translateY(0%) !important;
}

.mv-top85 {
  top: 85% !important;
  transform: translateY(0%) !important;
}

.mv-top86 {
  top: 86% !important;
  transform: translateY(0%) !important;
}

.mv-top87 {
  top: 87% !important;
  transform: translateY(0%) !important;
}

.mv-top88 {
  top: 88% !important;
  transform: translateY(0%) !important;
}

.mv-top89 {
  top: 89% !important;
  transform: translateY(0%) !important;
}

.mv-top90 {
  top: 90% !important;
  transform: translateY(0%) !important;
}

.mv-top91 {
  top: 91% !important;
  transform: translateY(0%) !important;
}

.mv-top92 {
  top: 92% !important;
  transform: translateY(0%) !important;
}

.mv-top93 {
  top: 93% !important;
  transform: translateY(0%) !important;
}

.mv-top94 {
  top: 94% !important;
  transform: translateY(0%) !important;
}

.mv-top95 {
  top: 95% !important;
  transform: translateY(0%) !important;
}

.mv-top96 {
  top: 96% !important;
  transform: translateY(0%) !important;
}

.mv-top97 {
  top: 97% !important;
  transform: translateY(0%) !important;
}

.mv-top98 {
  top: 98% !important;
  transform: translateY(0%) !important;
}

.mv-top99 {
  top: 99% !important;
  transform: translateY(0%) !important;
}

.mv-top100 {
  top: 100% !important;
  transform: translateY(0%) !important;
}

@media screen and (max-width: 767px) {
  .mv-top1 {
    top: inherit !important;
  }
  .mv-top2 {
    top: inherit !important;
  }
  .mv-top3 {
    top: inherit !important;
  }
  .mv-top4 {
    top: inherit !important;
  }
  .mv-top5 {
    top: inherit !important;
  }
  .mv-top6 {
    top: inherit !important;
  }
  .mv-top7 {
    top: inherit !important;
  }
  .mv-top8 {
    top: inherit !important;
  }
  .mv-top9 {
    top: inherit !important;
  }
  .mv-top10 {
    top: inherit !important;
  }
  .mv-top11 {
    top: inherit !important;
  }
  .mv-top12 {
    top: inherit !important;
  }
  .mv-top13 {
    top: inherit !important;
  }
  .mv-top14 {
    top: inherit !important;
  }
  .mv-top15 {
    top: inherit !important;
  }
  .mv-top16 {
    top: inherit !important;
  }
  .mv-top17 {
    top: inherit !important;
  }
  .mv-top18 {
    top: inherit !important;
  }
  .mv-top19 {
    top: inherit !important;
  }
  .mv-top20 {
    top: inherit !important;
  }
  .mv-top21 {
    top: inherit !important;
  }
  .mv-top22 {
    top: inherit !important;
  }
  .mv-top23 {
    top: inherit !important;
  }
  .mv-top24 {
    top: inherit !important;
  }
  .mv-top25 {
    top: inherit !important;
  }
  .mv-top26 {
    top: inherit !important;
  }
  .mv-top27 {
    top: inherit !important;
  }
  .mv-top28 {
    top: inherit !important;
  }
  .mv-top29 {
    top: inherit !important;
  }
  .mv-top30 {
    top: inherit !important;
  }
  .mv-top31 {
    top: inherit !important;
  }
  .mv-top32 {
    top: inherit !important;
  }
  .mv-top33 {
    top: inherit !important;
  }
  .mv-top34 {
    top: inherit !important;
  }
  .mv-top35 {
    top: inherit !important;
  }
  .mv-top36 {
    top: inherit !important;
  }
  .mv-top37 {
    top: inherit !important;
  }
  .mv-top38 {
    top: inherit !important;
  }
  .mv-top39 {
    top: inherit !important;
  }
  .mv-top40 {
    top: inherit !important;
  }
  .mv-top41 {
    top: inherit !important;
  }
  .mv-top42 {
    top: inherit !important;
  }
  .mv-top43 {
    top: inherit !important;
  }
  .mv-top44 {
    top: inherit !important;
  }
  .mv-top45 {
    top: inherit !important;
  }
  .mv-top46 {
    top: inherit !important;
  }
  .mv-top47 {
    top: inherit !important;
  }
  .mv-top48 {
    top: inherit !important;
  }
  .mv-top49 {
    top: inherit !important;
  }
  .mv-top50 {
    top: inherit !important;
  }
  .mv-top51 {
    top: inherit !important;
  }
  .mv-top52 {
    top: inherit !important;
  }
  .mv-top53 {
    top: inherit !important;
  }
  .mv-top54 {
    top: inherit !important;
  }
  .mv-top55 {
    top: inherit !important;
  }
  .mv-top56 {
    top: inherit !important;
  }
  .mv-top57 {
    top: inherit !important;
  }
  .mv-top58 {
    top: inherit !important;
  }
  .mv-top59 {
    top: inherit !important;
  }
  .mv-top60 {
    top: inherit !important;
  }
  .mv-top61 {
    top: inherit !important;
  }
  .mv-top62 {
    top: inherit !important;
  }
  .mv-top63 {
    top: inherit !important;
  }
  .mv-top64 {
    top: inherit !important;
  }
  .mv-top65 {
    top: inherit !important;
  }
  .mv-top66 {
    top: inherit !important;
  }
  .mv-top67 {
    top: inherit !important;
  }
  .mv-top68 {
    top: inherit !important;
  }
  .mv-top69 {
    top: inherit !important;
  }
  .mv-top70 {
    top: inherit !important;
  }
  .mv-top71 {
    top: inherit !important;
  }
  .mv-top72 {
    top: inherit !important;
  }
  .mv-top73 {
    top: inherit !important;
  }
  .mv-top74 {
    top: inherit !important;
  }
  .mv-top75 {
    top: inherit !important;
  }
  .mv-top76 {
    top: inherit !important;
  }
  .mv-top77 {
    top: inherit !important;
  }
  .mv-top78 {
    top: inherit !important;
  }
  .mv-top79 {
    top: inherit !important;
  }
  .mv-top80 {
    top: inherit !important;
  }
  .mv-top81 {
    top: inherit !important;
  }
  .mv-top82 {
    top: inherit !important;
  }
  .mv-top83 {
    top: inherit !important;
  }
  .mv-top84 {
    top: inherit !important;
  }
  .mv-top85 {
    top: inherit !important;
  }
  .mv-top86 {
    top: inherit !important;
  }
  .mv-top87 {
    top: inherit !important;
  }
  .mv-top88 {
    top: inherit !important;
  }
  .mv-top89 {
    top: inherit !important;
  }
  .mv-top90 {
    top: inherit !important;
  }
  .mv-top91 {
    top: inherit !important;
  }
  .mv-top92 {
    top: inherit !important;
  }
  .mv-top93 {
    top: inherit !important;
  }
  .mv-top94 {
    top: inherit !important;
  }
  .mv-top95 {
    top: inherit !important;
  }
  .mv-top96 {
    top: inherit !important;
  }
  .mv-top97 {
    top: inherit !important;
  }
  .mv-top98 {
    top: inherit !important;
  }
  .mv-top99 {
    top: inherit !important;
  }
  .mv-top100 {
    top: inherit !important;
  }
}
.bx {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .plus_btn {
    background-image: url(/asset/images/common/menu_plus.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
  }
  .plus_btn.on {
    background-image: url(/asset/images/common/menu_mn.png);
  }
}
.change_btn {
  text-align: center;
}

.change_btn a {
  display: inline-block;
  padding: 10px 50px 10px 30px;
  border-radius: 20px;
}

.find_btn {
  background-color: #2a2a2a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-family: "open_b";
  border: none;
  cursor: pointer;
}

.find_btn:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.more_btn,
.view_more,
.More_btn {
  text-align: center;
}

.more_btn a,
.view_more a,
.More_btn a {
  display: inline-block;
  padding: 10px 80px;
  border-radius: 20px;
}

.more_btn2 {
  text-align: center;
}

.more_btn2 a {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 20px;
}

@media screen and (max-width: 1023px) {
  .more_btn2 {
    text-align: center;
  }
  .more_btn2 a {
    display: inline-block;
    padding: 10px 80px;
    border-radius: 20px;
  }
}
.section .section_inner {
  width: 1024px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .section .section_inner {
    width: auto;
    margin: 0 10px;
    overflow: hidden;
  }
}
.btn_list {
  text-align: center;
}
.btn_list a,
.btn_list button {
  display: inline-block;
  border-radius: 26px;
  padding: 10px 20px;
  transition: all 0.3s;
}
.btn_list a.btn_type_1,
.btn_list button.btn_type_1 {
  background-color: #eb0a1e;
  color: #fff;
  border: 1px solid #eb0a1e;
}
.btn_list a.btn_type_4,
.btn_list button.btn_type_4 {
  font-family: "Raleway";
  font-weight: 700;
  background-color: white;
  color: #eb0a1e;
  border: 3px solid #eb0a1e;
  padding: 15px 70px;
}

.btn_list a:nth-of-type(1n+2) {
  margin-left: 25px;
}

.btn_list a:hover {
  opacity: 0.5;
}

.btn_list a.btn_type_1:active {
  background-color: #eb0a1e;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.btn_list a.btn_type_2 {
  background-color: #fff;
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
}

.btn_list a.btn_type_2:active {
  background-color: #fbe5e7;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.btn_list a.btn_type_3 {
  background-color: #bababa;
  color: #fff;
  border: 1px solid #bababa;
}

.btn_list a.btn_type_3:active {
  background-color: #9e9e9e;
  border: 1px solid #9e9e9e;
  opacity: 1;
}

.btn_list a.btn_type_5 {
  background-color: #2a2a2a;
  color: #fff;
}

.btn_list a.btn_type_5:active {
  background-color: #404040;
  opacity: 1;
}

.btn_list .btn_type_5 {
  background-color: #2a2a2a;
  color: #fff;
}

.btn_list .btn_type_5:active {
  background-color: #404040;
  opacity: 1;
}

.btn_list .btn_type_6 {
  border: 1px solid #fff;
  color: #fff;
}

.btn_list .btn_type_7 {
  background-color: #fff;
  color: #eb0a1e;
}

.btn_list .btn_type_8 {
  background-color: #fff;
  color: #000;
}

.btn_list .button_l {
  padding: 15px 35px;
}

.btn_list input[type=submit] {
  border: none;
  background-color: inherit;
  padding: 9px 32px;
  border-radius: 16px;
  line-height: 1;
  font-size: 14px;
  font-family: "open_b";
  cursor: pointer;
}

.btn_list input[type=submit]:nth-of-type(1n+2) {
  margin-left: 25px;
}

.btn_list input[type=submit]:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.btn_list input[type=submit].submit_type1 {
  background-color: #2a2a2a;
  color: #fff;
}

.btn_list input[type=submit].on {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.btn_list input[type=submit].submit_type2 {
  background-color: #fff;
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
}

.btn_list input[type=submit].submit_type2:active {
  background-color: #fbe5e7;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.btn_list input[type=submit].submit_type3 {
  background-color: #bababa;
  color: #fff;
}

.btn_list input[type=submit].submit_type3:active {
  background-color: #9e9e9e;
  opacity: 1;
}

.btn_list input[type=submit].submit_type4 {
  border: 1px solid #fff;
  color: #fff;
}

.btn_list input[type=submit].submit_type5 {
  background-color: #fff;
  color: #eb0a1e;
}

.btn_list input[type=submit].submit_type6 {
  background-color: #fff;
  color: #000;
}

.btn_list input[type=button] {
  border: none;
  background-color: inherit;
  padding: 10px 20px;
  border-radius: 16px;
  line-height: 1;
}

.btn_list input[type=button]:nth-of-type(1n+2) {
  margin-left: 25px;
}

.btn_list input[type=button]:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.btn_list input[type=button].submit_type1 {
  background-color: #2a2a2a;
  color: #fff;
}

.btn_list input[type=button].submit_type1:active {
  background-color: #404040;
  opacity: 1;
}

.btn_list input[type=button].submit_type2 {
  background-color: #fff;
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
}

.btn_list input[type=button].submit_type2:active {
  background-color: #fbe5e7;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.btn_list input[type=button].submit_type3 {
  background-color: #bababa;
  color: #fff;
}

.btn_list input[type=button].submit_type3:active {
  background-color: #9e9e9e;
  opacity: 1;
}

.btn_list input[type=button].submit_type4 {
  border: 1px solid #fff;
  color: #fff;
}

.btn_list input[type=button].submit_type5 {
  background-color: #fff;
  color: #eb0a1e;
}

.btn_list input[type=button].submit_type6 {
  background-color: #fff;
  color: #000;
}

.btn_ghost {
  border: 1px solid #fff;
  padding: 10px 80px;
  margin-top: 30px;
  border-radius: 30px;
  display: inline-block;
  color: #fff;
}

.btn_ghost:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

@media screen and (max-width: 1023px) {
  .lay_list .More_btn a {
    line-height: 1;
    transition: 0.3s ease-in-out;
  }
  .lay_list .More_btn a:hover {
    opacity: 1;
  }
}
.view_more {
  margin-top: 20px;
}

.more_btn a,
.view_more a,
.More_btn a {
  line-height: 1;
  transition: 0.3s ease-in-out;
}

.more_btn a:hover,
.view_more a:hover,
.More_btn a:hover {
  opacity: 0.5;
  opacity: 0.5;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.more_btn a.bg_type_bb,
.view_more a.bg_type_bb,
.More_btn a.bg_type_bb {
  background-color: #2a2a2a;
  color: #fff;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn a.bg_type_bb.on,
.view_more a.bg_type_bb.on,
.More_btn a.bg_type_bb.on {
  background-image: url(/asset/images/common/button_mn_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn a.bg_type_bb:active,
.view_more a.bg_type_bb:active,
.More_btn a.bg_type_bb:active {
  background-color: #404040;
  opacity: 1;
}

.more_btn a.bg_type_red,
.view_more a.bg_type_red,
.More_btn a.bg_type_red {
  background-color: #fff;
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
  background-image: url(/asset/images/common/button_plus_r.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn a.bg_type_red:active,
.view_more a.bg_type_red:active,
.More_btn a.bg_type_red:active {
  background-color: #fbe5e7;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.more_btn a.bg_type_gray,
.view_more a.bg_type_gray,
.More_btn a.bg_type_gray {
  background-color: #b9b9b9;
  color: #fff;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn a.bg_type_gray:active,
.view_more a.bg_type_gray:active,
.More_btn a.bg_type_gray:active {
  background-color: #9e9e9e;
  opacity: 1;
}

.more_btn a.bg_type_none_bd_wh,
.view_more a.bg_type_none_bd_wh,
.More_btn a.bg_type_none_bd_wh {
  border: solid 1px #fff;
  color: #fff;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn a.bg_type_wh_fc_b,
.view_more a.bg_type_wh_fc_b,
.More_btn a.bg_type_wh_fc_b {
  background-color: #fff;
  color: #000;
  background-image: url(/asset/images/common/button_plus_black.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn a.bg_type_wh_fc_red,
.view_more a.bg_type_wh_fc_red,
.More_btn a.bg_type_wh_fc_red {
  background: #fff;
  color: #eb0a1e;
  background-image: url(/asset/images/common/button_plus_r.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a {
  line-height: 1;
}

.more_btn2 a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.more_btn2 a.bg_type_bb {
  background-color: #2a2a2a;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a.bg_type_bb.on {
  background-image: url(/asset/images/common/button_mn_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a.bg_type_bb:active {
  background-color: #404040;
  opacity: 1;
}

.more_btn2 a.bg_type_red {
  background-color: #fff;
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
  background-image: url(/asset/images/common/button_plus_r.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a.bg_type_red:active {
  background-color: #fbe5e7;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.more_btn2 a.bg_type_gray {
  background-color: #b9b9b9;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a.bg_type_gray:active {
  background-color: #9e9e9e;
  opacity: 1;
}

.more_btn2 a.bg_type_none_bd_wh {
  border: solid 1px #fff;
  color: #fff;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a.bg_type_wh_fc_b {
  background-color: #fff;
  color: #000;
  background-image: url(/asset/images/common/button_plus_black.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.more_btn2 a.bg_type_wh_fc_red {
  background: #fff;
  color: #eb0a1e;
  background-image: url(/asset/images/common/button_plus_r.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a {
  line-height: 1;
}

.change_btn a:hover {
  opacity: 0.5;
}

.change_btn a.bg_type_bb {
  background-color: #2a2a2a;
  background-image: url(/asset/images/common/option_arr_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a.bg_type_bb.on {
  background-image: url(/asset/images/common/option_arr_w_on.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a.bg_type_bb:active {
  background-color: #404040;
  opacity: 1;
}

.change_btn a.bg_type_red {
  background-color: #fff;
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
  background-image: url(/asset/images/common/option_arr_r.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a.bg_type_red:active {
  background-color: #fbe5e7;
  border: 1px solid #eb0a1e;
  opacity: 1;
}

.change_btn a.bg_type_gray {
  background-color: #b9b9b9;
  background-image: url(/asset/images/common/option_arr_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a.bg_type_gray:active {
  background-color: #9e9e9e;
  opacity: 1;
}

.change_btn a.bg_type_none_bd_wh {
  border: solid 1px #fff;
  color: #fff;
  background-image: url(/asset/images/common/button_plus_w.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a.bg_type_wh_fc_b {
  background-color: #fff;
  color: #000;
  background-image: url(/asset/images/common/button_plus_black.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

.change_btn a.bg_type_wh_fc_red {
  background: #fff;
  color: #eb0a1e;
  background-image: url(/asset/images/common/button_plus_r.png);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 10px;
}

@media screen and (max-width: 1023px) {
  .change_btn a {
    display: block;
    font-size: 14px;
    max-width: 300px;
    margin: 12.5px auto;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  .btn_list a {
    display: block;
    font-size: 14px;
    max-width: 300px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto !important;
  }
  .btn_list a:nth-of-type(1n+2) {
    margin-left: 0;
  }
  .btn_list a:nth-of-type(1n+2) {
    margin-top: 20px !important;
  }
  .btn_list input[type=submit] {
    border: none;
    background-color: inherit;
    padding: 10px 20px;
    border-radius: 16px;
    line-height: 1;
    -webkit-appearance: none;
  }
  .btn_list input[type=submit]:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    ransition: all 0.3s;
  }
  .btn_list input[type=submit].submit_type1 {
    background-color: #2a2a2a;
    color: #fff;
  }
  .btn_list input[type=submit].submit_type2 {
    background-color: #fff;
    color: #eb0a1e;
    border: 1px solid #eb0a1e;
  }
  .btn_list input[type=submit].submit_type3 {
    background-color: #bababa;
    color: #fff;
  }
  .btn_list input[type=submit].submit_type4 {
    border: solid 1px #fff;
    color: #fff;
  }
  .btn_list input[type=submit].submit_type5 {
    background-color: #fff;
    color: #eb0a1e;
  }
  .btn_list input[type=submit].submit_type6 {
    background-color: #fff;
    color: #000;
  }
  .more_btn a,
  .More_btn a {
    font-size: 14px;
  }
  a.btn_type_6 {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1023px) {
  p.content_text {
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
  }
  p:nth-of-type(2) {
    margin-top: 0;
  }
  p.item_text {
    font-size: 14px;
    line-height: 23px;
  }
  p.item_text2 {
    font-size: 16px;
    line-height: 26px;
    padding: 40px 0;
  }
  h2.item_text2 {
    font-size: 16px;
    line-height: 26px;
    padding: 40px 0;
  }
  p.item_text3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    padding: 20px 0 40px 0;
  }
  p.item_text4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    padding: 5px 0 20px 0;
  }
  .item_text5 {
    font-size: 14px;
    line-height: 23px;
  }
  p.item_text6 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    padding: 5px 0 20px 0;
  }
  p.item_title {
    font-size: 20px;
    line-height: 28px;
    padding-top: 40px;
  }
  p.item_title2,
  h2.item_title2 {
    font-size: 20px;
    line-height: 28px;
    padding: 40px 0 20px 0;
    font-family: "toyota_b";
  }
  h2.item_title3 {
    font-size: 20px;
    line-height: 28px;
    padding: 20px 0 10px 0;
    font-family: "toyota_b";
  }
  p.accessory_text {
    font-size: 14px;
    line-height: 23px;
  }
}
.content_text {
  font-size: 24px;
  line-height: 34px;
  margin: 20px 0;
  font-family: "toyota_r";
}

.section_text {
  font-size: 16px;
  line-height: 28px;
}

.item_text {
  font-size: 14px;
  line-height: 28px;
}

.item_text2 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  padding: 80px 0;
}

.item_text3 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  padding: 40px 0 80px 0;
}

.item_text4 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  padding: 10px 0 40px 0;
  text-align: center;
}

.item_text5 {
  font-size: 14px;
  line-height: 23px;
}

.item_text6 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  padding: 10px 0 20px 0;
  text-align: center;
}

.item_title {
  font-size: 26px;
  line-height: 34px;
  padding-top: 80px;
  text-align: center;
  font-family: "toyota_b";
}

.item_title2 {
  font-size: 26px;
  line-height: 34px;
  padding: 80px 0 40px 0;
  text-align: center;
  font-family: "toyota_b";
}

.item_title3 {
  font-size: 26px;
  line-height: 34px;
  padding: 20px 0;
  text-align: center;
  font-family: "toyota_b";
}

.item_title3.nopadding {
  padding-top: 0;
  padding-bottom: 0;
}

.item_title4 {
  font-size: 24px;
  line-height: 34px;
}

.item_title5 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
}

.item_title6 {
  font-size: 18px;
  line-height: 30px;
  font-family: "open_b";
}

.item_title7 {
  font-size: 18px;
  line-height: 30px;
}

.accessory_text {
  font-size: 14px;
  line-height: 28px;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

span.text_red {
  color: red;
}

span.text_linethrough {
  text-decoration: line-through;
}

p a.t_blank {
  color: #0079C0;
  padding-right: 15px;
  position: relative;
}

p a.t_blank:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  /*background-image: url(/asset/images/common/icon_ext04.png);*/
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.bb_solid {
  border-bottom: 1px solid #e2e2e2;
}

.bb_solid2 {
  border-bottom: 2px solid #e2e2e2;
}

.bb_dotted {
  border-bottom: 1px dotted #d9d9d9;
}

::-ms-expand {
  display: none;
}

select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.optionselect {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.accessoriesselect {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.modellateselect,
select.modellateselect_type2 {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.pdfmodelselect {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.gradelateselect,
select.gradelateselect_type2 {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  pointer-events: none;
  background-color: #fff;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.changemodelselect {
  width: 100%;
  color: #fff;
  font-family: "open_b";
  padding: 10px 50px 10px 30px;
  border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #2a2a2a;
  background-image: url(/asset/images/common/option_arr_w.png);
  background-repeat: no-repeat;
  background-position: 93% center;
  background-size: 10px 5px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.selectvehicle_choose_model {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #ebebeb;
  background-image: url(/asset/images/common/option_arr_black.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.comparevehicles_choose_model {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #ebebeb;
  background-image: url(/asset/images/common/option_arr_black.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.comparevehicles_choose_grade {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #ebebeb;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

select.comparevehicles_choose_grade:nth-of-type(2) {
  color: #999;
  pointer-events: none;
}

select.comparevehicles_choose_grade:nth-of-type(2).on {
  color: #000;
  pointer-events: auto;
  background-image: url(/asset/images/common/option_arr_black.png);
}

select.packagesselect {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #ebebeb;
  background-image: url(/asset/images/common/option_arr_black.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 7px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.type_tel {
  font-size: 14px;
}

.type_tel a {
  color: #000;
  pointer-events: none;
}

.tel_box {
  border: 1px solid #ebebeb;
  padding: 40px 0;
  text-align: center;
}

.tel_box p {
  font-size: 20px;
  display: inline-block;
}

.tel_box p small {
  font-size: 14px;
  padding-right: 5px;
}

.tel_box p:nth-of-type(1n+2) {
  margin-left: 110px;
}

@media screen and (max-width: 1023px) {
  .type_tel {
    font-size: 14px;
  }
  .type_tel a {
    pointer-events: auto;
  }
  .tel_box {
    padding: 20px 0;
  }
  .tel_box p {
    font-size: 16px;
    display: block;
  }
  .tel_box p small {
    font-size: 14px;
    padding-right: 5px;
  }
  .tel_box p:nth-of-type(1n+2) {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .item_title {
    font-size: 20px;
    line-height: 28px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .privacy p.f24 {
    font-size: 18px;
  }
  .f24 {
    line-height: 24px;
  }
}
.l_nav .page_car_category li {
  padding: 24px 25px;
  position: relative;
  cursor: pointer;
}

.l_nav .page_car_category li:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2px 0;
  background-color: #fff;
  transition: all 0.4s;
}

.l_nav .page_car_category li:hover {
  background-color: #f9f9f9;
  transition: all 0.4s;
}

.l_nav .page_car_category li:hover:after {
  background-color: #f9f9f9;
}

.l_nav .page_car_category li.on:after {
  background-color: #eb0a1e;
}

.error {
  color: #fff !important;
  font-size: 13px;
  text-align: left;
  line-height: 1.9;
  background: #EE0622;
  padding-left: 22px;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
}

.error:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #ee0622;
  position: absolute;
  top: -4px;
  left: 20px;
}

.error:after {
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  background-image: url(/asset/images/common/icon_error_text.png);
  margin: auto;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
}

.w400 + .error {
  width: 400px;
}

@media screen and (max-width: 1023px) {
  .gallery_slide .slick-slide {
    pointer-events: none;
  }
  .section p.f26 {
    font-size: 22px !important;
  }
  .error {
    margin-bottom: 10px;
  }
}
.icon:before {
  font-family: toyotaicons !important;
  speak: none;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.iconLeft:before {
  margin-right: 6px;
}

.icon-exclamation {
  font-family: icomoon !important;
  speak: none;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.icon-Book {
  font-family: icomoonbook !important;
  speak: none;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.icon-android:before {
  content: "\e900";
}

.icon-angle-down:before {
  content: "\e901";
}

.icon-angle-left:before {
  content: "\e902";
}

.icon-angle-right:before {
  content: "\e903";
}

.icon-angle-up:before {
  content: "\e904";
}

.icon-apple:before {
  content: "\e905";
}

.icon-backwards:before {
  content: "\e906";
}

.icon-bluetooth:before {
  content: "\e907";
}

.icon-book:before {
  content: "\e908";
}

.icon-bookmark:before {
  content: "\e909";
}

.icon-calculator:before {
  content: "\e90a";
}

.icon-calendar:before {
  content: "\e90b";
}

.icon-camera:before {
  content: "\e90c";
}

.icon-car:before {
  content: "\e90d";
}

.icon-car-rental:before {
  content: "\e90e";
}

.icon-car-used:before {
  content: "\e90f";
}

.icon-checkbox-checked:before {
  content: "\e910";
}

.icon-checkbox-unchecked:before {
  content: "\e911";
}

.icon-chevron-down:before {
  content: "\e912";
}

.icon-chevron-left:before {
  content: "\e913";
}

.icon-chevron-right:before {
  content: "\e914";
}

.icon-chevron-up:before {
  content: "\e915";
}

.icon-cog:before {
  content: "\e916";
}

.icon-compare:before {
  content: "\e917";
}

.icon-consumptions:before {
  content: "\e918";
}

.icon-desktop:before {
  content: "\e919";
}

.icon-download-alt:before {
  content: "\e91a";
}

.icon-email:before {
  content: "\e91b";
}

.icon-emission:before {
  content: "\e91c";
}

.icon-envelope-alt:before {
  content: "\e91d";
}

.icon-exclamation:before {
  content: "\e800";
  font-family: icomoon !important;
}

.icon-external-link:before {
  content: "\e91f";
  display: inline-block;
  transform: translateY(2px);
}

.icon-facebook:before {
  content: "\e920";
}

.icon-facetime-video:before {
  content: "\e921";
}

.icon-file-alt:before {
  content: "\e922";
}

.icon-file-pdf:before {
  content: "\e923";
}

.icon-find-your-match:before {
  content: "\e924";
}

.icon-flickr:before {
  content: "\e925";
}

.icon-folder-case:before {
  content: "\e926";
}

.icon-forward:before {
  content: "\e927";
}

.icon-fuel-type:before {
  content: "\e928";
}

.icon-google-plus:before {
  content: "\e929";
}

.icon-heart:before {
  content: "\e92a";
}

.icon-hybrid:before {
  content: "\e92b";
}

.icon-info-sign:before {
  content: "\e92c";
}

.icon-insurance:before {
  content: "\e92d";
}

.icon-ipod:before {
  content: "\e92e";
}

.icon-laptop:before {
  content: "\e92f";
}

.icon-link:before {
  content: "\e930";
}

.icon-list-ul:before {
  content: "\e931";
}

.icon-live-chat:before {
  content: "\e932";
}

.icon-locate:before {
  content: "\e933";
}

.icon-lock:before {
  content: "\e934";
}

.icon-map-marker:before {
  content: "\e935";
}

.icon-menu:before {
  content: "\e936";
}

.icon-minus:before {
  content: "\e937";
}

.icon-mobile:before {
  content: "\e938";
}

.icon-music:before {
  content: "\e939";
}

.icon-new-2:before {
  content: "\e93a";
}

.icon-newsletter:before {
  content: "\e93b";
}

.icon-ok:before {
  content: "\e93c";
}

.icon-pause:before {
  content: "\e93d";
}

.icon-phone:before {
  content: "\e93e";
}

.icon-picture:before {
  content: "\e93f";
}

.icon-play:before {
  content: "\e940";
}

.icon-plug:before {
  content: "\e941";
}

.icon-plus:before {
  content: "\e942";
}

.icon-print:before {
  content: "\e943";
}

.icon-question-sign:before {
  content: "\e944";
}

.icon-quote-left:before {
  content: "\e945";
}

.icon-quote-right:before {
  content: "\e946";
}

.icon-radio-checked:before {
  content: "\e947";
}

.icon-radio-unchecked:before {
  content: "\e948";
}

.icon-rain:before {
  content: "\e949";
}

.icon-refresh:before {
  content: "\e94a";
}

.icon-remove:before {
  content: "\e94b";
}

.icon-reorder:before {
  content: "\e94c";
}

.icon-repeat:before {
  content: "\e94d";
}

.icon-reply:before {
  content: "\e94e";
}

.icon-reset:before {
  content: "\e94f";
}

.icon-resize-full:before {
  content: "\e950";
}

.icon-resize-small:before {
  content: "\e951";
}

.icon-rss:before {
  content: "\e952";
}

.icon-search:before {
  content: "\e953";
}

.icon-share:before {
  content: "\e954";
}

.icon-skip-backward:before {
  content: "\e955";
}

.icon-skip-forward:before {
  content: "\e956";
}

.icon-snowflake:before {
  content: "\e957";
}

.icon-star:before {
  content: "\e958";
}

.icon-star-half:before {
  content: "\e959";
}

.icon-step-backward:before {
  content: "\e95a";
}

.icon-step-forward:before {
  content: "\e95b";
}

.icon-stop:before {
  content: "\e95c";
}

.icon-sun-stroke:before {
  content: "\e95d";
}

.icon-tablet:before {
  content: "\e95e";
}

.icon-tag:before {
  content: "\e95f";
}

.icon-test-drive:before {
  content: "\e960";
}

.icon-th-large:before {
  content: "\e961";
}

.icon-thumbs-up:before {
  content: "\e962";
}

.icon-trash:before {
  content: "\e963";
}

.icon-tsm:before {
  content: "\e964";
}

.icon-twitter:before {
  content: "\e965";
}

.icon-upload-alt:before {
  content: "\e966";
}

.icon-usb1:before {
  content: "\e967";
}

.icon-user:before {
  content: "\e968";
}

.icon-volume-down:before {
  content: "\e969";
}

.icon-volume-off:before {
  content: "\e96a";
}

.icon-volume-up:before {
  content: "\e96b";
}

.icon-windows:before {
  content: "\e96c";
}

.icon-youtube:before {
  content: "\e96d";
}

.iconBook:before {
  content: "\e900";
}

.iconManual:before {
  content: "\e908";
}

.liquidation,
.liquidation2 {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.category_text {
  text-align: center;
  margin-top: 40px;
}

.EstimatedTitle {
  font-size: 26px;
  line-height: 34px;
  padding: 80px 0 40px 0;
  text-align: center;
  font-family: "toyota_b";
}

.required {
  font-size: 11px;
  margin-left: 10px;
  color: #eb0a1e;
}

.valid:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background-image: url(/asset/images/common/icon_check.png);
  background-repeat: no-repeat;
  margin-left: 10px;
}

.opa {
  opacity: 0.7;
}

.pointnone {
  pointer-events: none;
}

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

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

.al-right {
  text-align: right;
}

.visual.visual_under.os-1 {
  background-position: -1% top;
}

.visual.visual_under.os1 {
  background-position: 1% top;
}

.visual.visual_under.os-2 {
  background-position: -2% top;
}

.visual.visual_under.os2 {
  background-position: 2% top;
}

.visual.visual_under.os-3 {
  background-position: -3% top;
}

.visual.visual_under.os3 {
  background-position: 3% top;
}

.visual.visual_under.os-4 {
  background-position: -4% top;
}

.visual.visual_under.os4 {
  background-position: 4% top;
}

.visual.visual_under.os-5 {
  background-position: -5% top;
}

.visual.visual_under.os5 {
  background-position: 5% top;
}

.visual.visual_under.os-6 {
  background-position: -6% top;
}

.visual.visual_under.os6 {
  background-position: 6% top;
}

.visual.visual_under.os-7 {
  background-position: -7% top;
}

.visual.visual_under.os7 {
  background-position: 7% top;
}

.visual.visual_under.os-8 {
  background-position: -8% top;
}

.visual.visual_under.os8 {
  background-position: 8% top;
}

.visual.visual_under.os-9 {
  background-position: -9% top;
}

.visual.visual_under.os9 {
  background-position: 9% top;
}

.visual.visual_under.os-10 {
  background-position: -10% top;
}

.visual.visual_under.os10 {
  background-position: 10% top;
}

.visual.visual_under.os-11 {
  background-position: -11% top;
}

.visual.visual_under.os11 {
  background-position: 11% top;
}

.visual.visual_under.os-12 {
  background-position: -12% top;
}

.visual.visual_under.os12 {
  background-position: 12% top;
}

.visual.visual_under.os-13 {
  background-position: -13% top;
}

.visual.visual_under.os13 {
  background-position: 13% top;
}

.visual.visual_under.os-14 {
  background-position: -14% top;
}

.visual.visual_under.os14 {
  background-position: 14% top;
}

.visual.visual_under.os-15 {
  background-position: -15% top;
}

.visual.visual_under.os15 {
  background-position: 15% top;
}

.visual.visual_under.os-16 {
  background-position: -16% top;
}

.visual.visual_under.os16 {
  background-position: 16% top;
}

.visual.visual_under.os-17 {
  background-position: -17% top;
}

.visual.visual_under.os17 {
  background-position: 17% top;
}

.visual.visual_under.os-18 {
  background-position: -18% top;
}

.visual.visual_under.os18 {
  background-position: 18% top;
}

.visual.visual_under.os-19 {
  background-position: -19% top;
}

.visual.visual_under.os19 {
  background-position: 19% top;
}

.visual.visual_under.os-20 {
  background-position: -20% top;
}

.visual.visual_under.os20 {
  background-position: 20% top;
}

.visual.visual_under.os-21 {
  background-position: -21% top;
}

.visual.visual_under.os21 {
  background-position: 21% top;
}

.visual.visual_under.os-22 {
  background-position: -22% top;
}

.visual.visual_under.os22 {
  background-position: 22% top;
}

.visual.visual_under.os-23 {
  background-position: -23% top;
}

.visual.visual_under.os23 {
  background-position: 23% top;
}

.visual.visual_under.os-24 {
  background-position: -24% top;
}

.visual.visual_under.os24 {
  background-position: 24% top;
}

.visual.visual_under.os-25 {
  background-position: -25% top;
}

.visual.visual_under.os25 {
  background-position: 25% top;
}

.visual.visual_under.os-26 {
  background-position: -26% top;
}

.visual.visual_under.os26 {
  background-position: 26% top;
}

.visual.visual_under.os-27 {
  background-position: -27% top;
}

.visual.visual_under.os27 {
  background-position: 27% top;
}

.visual.visual_under.os-28 {
  background-position: -28% top;
}

.visual.visual_under.os28 {
  background-position: 28% top;
}

.visual.visual_under.os-29 {
  background-position: -29% top;
}

.visual.visual_under.os29 {
  background-position: 29% top;
}

.visual.visual_under.os-30 {
  background-position: -30% top;
}

.visual.visual_under.os30 {
  background-position: 30% top;
}

.visual.visual_under.os-31 {
  background-position: -31% top;
}

.visual.visual_under.os31 {
  background-position: 31% top;
}

.visual.visual_under.os-32 {
  background-position: -32% top;
}

.visual.visual_under.os32 {
  background-position: 32% top;
}

.visual.visual_under.os-33 {
  background-position: -33% top;
}

.visual.visual_under.os33 {
  background-position: 33% top;
}

.visual.visual_under.os-34 {
  background-position: -34% top;
}

.visual.visual_under.os34 {
  background-position: 34% top;
}

.visual.visual_under.os-35 {
  background-position: -35% top;
}

.visual.visual_under.os35 {
  background-position: 35% top;
}

.visual.visual_under.os-36 {
  background-position: -36% top;
}

.visual.visual_under.os36 {
  background-position: 36% top;
}

.visual.visual_under.os-37 {
  background-position: -37% top;
}

.visual.visual_under.os37 {
  background-position: 37% top;
}

.visual.visual_under.os-38 {
  background-position: -38% top;
}

.visual.visual_under.os38 {
  background-position: 38% top;
}

.visual.visual_under.os-39 {
  background-position: -39% top;
}

.visual.visual_under.os39 {
  background-position: 39% top;
}

.visual.visual_under.os-40 {
  background-position: -40% top;
}

.visual.visual_under.os40 {
  background-position: 40% top;
}

.visual.visual_under.os-41 {
  background-position: -41% top;
}

.visual.visual_under.os41 {
  background-position: 41% top;
}

.visual.visual_under.os-42 {
  background-position: -42% top;
}

.visual.visual_under.os42 {
  background-position: 42% top;
}

.visual.visual_under.os-43 {
  background-position: -43% top;
}

.visual.visual_under.os43 {
  background-position: 43% top;
}

.visual.visual_under.os-44 {
  background-position: -44% top;
}

.visual.visual_under.os44 {
  background-position: 44% top;
}

.visual.visual_under.os-45 {
  background-position: -45% top;
}

.visual.visual_under.os45 {
  background-position: 45% top;
}

.visual.visual_under.os-46 {
  background-position: -46% top;
}

.visual.visual_under.os46 {
  background-position: 46% top;
}

.visual.visual_under.os-47 {
  background-position: -47% top;
}

.visual.visual_under.os47 {
  background-position: 47% top;
}

.visual.visual_under.os-48 {
  background-position: -48% top;
}

.visual.visual_under.os48 {
  background-position: 48% top;
}

.visual.visual_under.os-49 {
  background-position: -49% top;
}

.visual.visual_under.os49 {
  background-position: 49% top;
}

.visual.visual_under.os-50 {
  background-position: -50% top;
}

.visual.visual_under.os50 {
  background-position: 50% top;
}

.visual.visual_under.os-51 {
  background-position: -51% top;
}

.visual.visual_under.os51 {
  background-position: 51% top;
}

.visual.visual_under.os-52 {
  background-position: -52% top;
}

.visual.visual_under.os52 {
  background-position: 52% top;
}

.visual.visual_under.os-53 {
  background-position: -53% top;
}

.visual.visual_under.os53 {
  background-position: 53% top;
}

.visual.visual_under.os-54 {
  background-position: -54% top;
}

.visual.visual_under.os54 {
  background-position: 54% top;
}

.visual.visual_under.os-55 {
  background-position: -55% top;
}

.visual.visual_under.os55 {
  background-position: 55% top;
}

.visual.visual_under.os-56 {
  background-position: -56% top;
}

.visual.visual_under.os56 {
  background-position: 56% top;
}

.visual.visual_under.os-57 {
  background-position: -57% top;
}

.visual.visual_under.os57 {
  background-position: 57% top;
}

.visual.visual_under.os-58 {
  background-position: -58% top;
}

.visual.visual_under.os58 {
  background-position: 58% top;
}

.visual.visual_under.os-59 {
  background-position: -59% top;
}

.visual.visual_under.os59 {
  background-position: 59% top;
}

.visual.visual_under.os-60 {
  background-position: -60% top;
}

.visual.visual_under.os60 {
  background-position: 60% top;
}

.visual.visual_under.os-61 {
  background-position: -61% top;
}

.visual.visual_under.os61 {
  background-position: 61% top;
}

.visual.visual_under.os-62 {
  background-position: -62% top;
}

.visual.visual_under.os62 {
  background-position: 62% top;
}

.visual.visual_under.os-63 {
  background-position: -63% top;
}

.visual.visual_under.os63 {
  background-position: 63% top;
}

.visual.visual_under.os-64 {
  background-position: -64% top;
}

.visual.visual_under.os64 {
  background-position: 64% top;
}

.visual.visual_under.os-65 {
  background-position: -65% top;
}

.visual.visual_under.os65 {
  background-position: 65% top;
}

.visual.visual_under.os-66 {
  background-position: -66% top;
}

.visual.visual_under.os66 {
  background-position: 66% top;
}

.visual.visual_under.os-67 {
  background-position: -67% top;
}

.visual.visual_under.os67 {
  background-position: 67% top;
}

.visual.visual_under.os-68 {
  background-position: -68% top;
}

.visual.visual_under.os68 {
  background-position: 68% top;
}

.visual.visual_under.os-69 {
  background-position: -69% top;
}

.visual.visual_under.os69 {
  background-position: 69% top;
}

.visual.visual_under.os-70 {
  background-position: -70% top;
}

.visual.visual_under.os70 {
  background-position: 70% top;
}

.visual.visual_under.os-71 {
  background-position: -71% top;
}

.visual.visual_under.os71 {
  background-position: 71% top;
}

.visual.visual_under.os-72 {
  background-position: -72% top;
}

.visual.visual_under.os72 {
  background-position: 72% top;
}

.visual.visual_under.os-73 {
  background-position: -73% top;
}

.visual.visual_under.os73 {
  background-position: 73% top;
}

.visual.visual_under.os-74 {
  background-position: -74% top;
}

.visual.visual_under.os74 {
  background-position: 74% top;
}

.visual.visual_under.os-75 {
  background-position: -75% top;
}

.visual.visual_under.os75 {
  background-position: 75% top;
}

.visual.visual_under.os-76 {
  background-position: -76% top;
}

.visual.visual_under.os76 {
  background-position: 76% top;
}

.visual.visual_under.os-77 {
  background-position: -77% top;
}

.visual.visual_under.os77 {
  background-position: 77% top;
}

.visual.visual_under.os-78 {
  background-position: -78% top;
}

.visual.visual_under.os78 {
  background-position: 78% top;
}

.visual.visual_under.os-79 {
  background-position: -79% top;
}

.visual.visual_under.os79 {
  background-position: 79% top;
}

.visual.visual_under.os-80 {
  background-position: -80% top;
}

.visual.visual_under.os80 {
  background-position: 80% top;
}

.visual.visual_under.os-81 {
  background-position: -81% top;
}

.visual.visual_under.os81 {
  background-position: 81% top;
}

.visual.visual_under.os-82 {
  background-position: -82% top;
}

.visual.visual_under.os82 {
  background-position: 82% top;
}

.visual.visual_under.os-83 {
  background-position: -83% top;
}

.visual.visual_under.os83 {
  background-position: 83% top;
}

.visual.visual_under.os-84 {
  background-position: -84% top;
}

.visual.visual_under.os84 {
  background-position: 84% top;
}

.visual.visual_under.os-85 {
  background-position: -85% top;
}

.visual.visual_under.os85 {
  background-position: 85% top;
}

.visual.visual_under.os-86 {
  background-position: -86% top;
}

.visual.visual_under.os86 {
  background-position: 86% top;
}

.visual.visual_under.os-87 {
  background-position: -87% top;
}

.visual.visual_under.os87 {
  background-position: 87% top;
}

.visual.visual_under.os-88 {
  background-position: -88% top;
}

.visual.visual_under.os88 {
  background-position: 88% top;
}

.visual.visual_under.os-89 {
  background-position: -89% top;
}

.visual.visual_under.os89 {
  background-position: 89% top;
}

.visual.visual_under.os-90 {
  background-position: -90% top;
}

.visual.visual_under.os90 {
  background-position: 90% top;
}

.visual.visual_under.os-91 {
  background-position: -91% top;
}

.visual.visual_under.os91 {
  background-position: 91% top;
}

.visual.visual_under.os-92 {
  background-position: -92% top;
}

.visual.visual_under.os92 {
  background-position: 92% top;
}

.visual.visual_under.os-93 {
  background-position: -93% top;
}

.visual.visual_under.os93 {
  background-position: 93% top;
}

.visual.visual_under.os-94 {
  background-position: -94% top;
}

.visual.visual_under.os94 {
  background-position: 94% top;
}

.visual.visual_under.os-95 {
  background-position: -95% top;
}

.visual.visual_under.os95 {
  background-position: 95% top;
}

.visual.visual_under.os-96 {
  background-position: -96% top;
}

.visual.visual_under.os96 {
  background-position: 96% top;
}

.visual.visual_under.os-97 {
  background-position: -97% top;
}

.visual.visual_under.os97 {
  background-position: 97% top;
}

.visual.visual_under.os-98 {
  background-position: -98% top;
}

.visual.visual_under.os98 {
  background-position: 98% top;
}

.visual.visual_under.os-99 {
  background-position: -99% top;
}

.visual.visual_under.os99 {
  background-position: 99% top;
}

.visual.visual_under.os-100 {
  background-position: -100% top;
}

.visual.visual_under.os100 {
  background-position: 100% top;
}

@media screen and (max-width: 767px) {
  .visual.visual_under.os-1 {
    background-position: center top;
  }
  .visual.visual_under.os1 {
    background-position: center top;
  }
  .visual.visual_under.os-2 {
    background-position: center top;
  }
  .visual.visual_under.os2 {
    background-position: center top;
  }
  .visual.visual_under.os-3 {
    background-position: center top;
  }
  .visual.visual_under.os3 {
    background-position: center top;
  }
  .visual.visual_under.os-4 {
    background-position: center top;
  }
  .visual.visual_under.os4 {
    background-position: center top;
  }
  .visual.visual_under.os-5 {
    background-position: center top;
  }
  .visual.visual_under.os5 {
    background-position: center top;
  }
  .visual.visual_under.os-6 {
    background-position: center top;
  }
  .visual.visual_under.os6 {
    background-position: center top;
  }
  .visual.visual_under.os-7 {
    background-position: center top;
  }
  .visual.visual_under.os7 {
    background-position: center top;
  }
  .visual.visual_under.os-8 {
    background-position: center top;
  }
  .visual.visual_under.os8 {
    background-position: center top;
  }
  .visual.visual_under.os-9 {
    background-position: center top;
  }
  .visual.visual_under.os9 {
    background-position: center top;
  }
  .visual.visual_under.os-10 {
    background-position: center top;
  }
  .visual.visual_under.os10 {
    background-position: center top;
  }
  .visual.visual_under.os-11 {
    background-position: center top;
  }
  .visual.visual_under.os11 {
    background-position: center top;
  }
  .visual.visual_under.os-12 {
    background-position: center top;
  }
  .visual.visual_under.os12 {
    background-position: center top;
  }
  .visual.visual_under.os-13 {
    background-position: center top;
  }
  .visual.visual_under.os13 {
    background-position: center top;
  }
  .visual.visual_under.os-14 {
    background-position: center top;
  }
  .visual.visual_under.os14 {
    background-position: center top;
  }
  .visual.visual_under.os-15 {
    background-position: center top;
  }
  .visual.visual_under.os15 {
    background-position: center top;
  }
  .visual.visual_under.os-16 {
    background-position: center top;
  }
  .visual.visual_under.os16 {
    background-position: center top;
  }
  .visual.visual_under.os-17 {
    background-position: center top;
  }
  .visual.visual_under.os17 {
    background-position: center top;
  }
  .visual.visual_under.os-18 {
    background-position: center top;
  }
  .visual.visual_under.os18 {
    background-position: center top;
  }
  .visual.visual_under.os-19 {
    background-position: center top;
  }
  .visual.visual_under.os19 {
    background-position: center top;
  }
  .visual.visual_under.os-20 {
    background-position: center top;
  }
  .visual.visual_under.os20 {
    background-position: center top;
  }
  .visual.visual_under.os-21 {
    background-position: center top;
  }
  .visual.visual_under.os21 {
    background-position: center top;
  }
  .visual.visual_under.os-22 {
    background-position: center top;
  }
  .visual.visual_under.os22 {
    background-position: center top;
  }
  .visual.visual_under.os-23 {
    background-position: center top;
  }
  .visual.visual_under.os23 {
    background-position: center top;
  }
  .visual.visual_under.os-24 {
    background-position: center top;
  }
  .visual.visual_under.os24 {
    background-position: center top;
  }
  .visual.visual_under.os-25 {
    background-position: center top;
  }
  .visual.visual_under.os25 {
    background-position: center top;
  }
  .visual.visual_under.os-26 {
    background-position: center top;
  }
  .visual.visual_under.os26 {
    background-position: center top;
  }
  .visual.visual_under.os-27 {
    background-position: center top;
  }
  .visual.visual_under.os27 {
    background-position: center top;
  }
  .visual.visual_under.os-28 {
    background-position: center top;
  }
  .visual.visual_under.os28 {
    background-position: center top;
  }
  .visual.visual_under.os-29 {
    background-position: center top;
  }
  .visual.visual_under.os29 {
    background-position: center top;
  }
  .visual.visual_under.os-30 {
    background-position: center top;
  }
  .visual.visual_under.os30 {
    background-position: center top;
  }
  .visual.visual_under.os-31 {
    background-position: center top;
  }
  .visual.visual_under.os31 {
    background-position: center top;
  }
  .visual.visual_under.os-32 {
    background-position: center top;
  }
  .visual.visual_under.os32 {
    background-position: center top;
  }
  .visual.visual_under.os-33 {
    background-position: center top;
  }
  .visual.visual_under.os33 {
    background-position: center top;
  }
  .visual.visual_under.os-34 {
    background-position: center top;
  }
  .visual.visual_under.os34 {
    background-position: center top;
  }
  .visual.visual_under.os-35 {
    background-position: center top;
  }
  .visual.visual_under.os35 {
    background-position: center top;
  }
  .visual.visual_under.os-36 {
    background-position: center top;
  }
  .visual.visual_under.os36 {
    background-position: center top;
  }
  .visual.visual_under.os-37 {
    background-position: center top;
  }
  .visual.visual_under.os37 {
    background-position: center top;
  }
  .visual.visual_under.os-38 {
    background-position: center top;
  }
  .visual.visual_under.os38 {
    background-position: center top;
  }
  .visual.visual_under.os-39 {
    background-position: center top;
  }
  .visual.visual_under.os39 {
    background-position: center top;
  }
  .visual.visual_under.os-40 {
    background-position: center top;
  }
  .visual.visual_under.os40 {
    background-position: center top;
  }
  .visual.visual_under.os-41 {
    background-position: center top;
  }
  .visual.visual_under.os41 {
    background-position: center top;
  }
  .visual.visual_under.os-42 {
    background-position: center top;
  }
  .visual.visual_under.os42 {
    background-position: center top;
  }
  .visual.visual_under.os-43 {
    background-position: center top;
  }
  .visual.visual_under.os43 {
    background-position: center top;
  }
  .visual.visual_under.os-44 {
    background-position: center top;
  }
  .visual.visual_under.os44 {
    background-position: center top;
  }
  .visual.visual_under.os-45 {
    background-position: center top;
  }
  .visual.visual_under.os45 {
    background-position: center top;
  }
  .visual.visual_under.os-46 {
    background-position: center top;
  }
  .visual.visual_under.os46 {
    background-position: center top;
  }
  .visual.visual_under.os-47 {
    background-position: center top;
  }
  .visual.visual_under.os47 {
    background-position: center top;
  }
  .visual.visual_under.os-48 {
    background-position: center top;
  }
  .visual.visual_under.os48 {
    background-position: center top;
  }
  .visual.visual_under.os-49 {
    background-position: center top;
  }
  .visual.visual_under.os49 {
    background-position: center top;
  }
  .visual.visual_under.os-50 {
    background-position: center top;
  }
  .visual.visual_under.os50 {
    background-position: center top;
  }
  .visual.visual_under.os-51 {
    background-position: center top;
  }
  .visual.visual_under.os51 {
    background-position: center top;
  }
  .visual.visual_under.os-52 {
    background-position: center top;
  }
  .visual.visual_under.os52 {
    background-position: center top;
  }
  .visual.visual_under.os-53 {
    background-position: center top;
  }
  .visual.visual_under.os53 {
    background-position: center top;
  }
  .visual.visual_under.os-54 {
    background-position: center top;
  }
  .visual.visual_under.os54 {
    background-position: center top;
  }
  .visual.visual_under.os-55 {
    background-position: center top;
  }
  .visual.visual_under.os55 {
    background-position: center top;
  }
  .visual.visual_under.os-56 {
    background-position: center top;
  }
  .visual.visual_under.os56 {
    background-position: center top;
  }
  .visual.visual_under.os-57 {
    background-position: center top;
  }
  .visual.visual_under.os57 {
    background-position: center top;
  }
  .visual.visual_under.os-58 {
    background-position: center top;
  }
  .visual.visual_under.os58 {
    background-position: center top;
  }
  .visual.visual_under.os-59 {
    background-position: center top;
  }
  .visual.visual_under.os59 {
    background-position: center top;
  }
  .visual.visual_under.os-60 {
    background-position: center top;
  }
  .visual.visual_under.os60 {
    background-position: center top;
  }
  .visual.visual_under.os-61 {
    background-position: center top;
  }
  .visual.visual_under.os61 {
    background-position: center top;
  }
  .visual.visual_under.os-62 {
    background-position: center top;
  }
  .visual.visual_under.os62 {
    background-position: center top;
  }
  .visual.visual_under.os-63 {
    background-position: center top;
  }
  .visual.visual_under.os63 {
    background-position: center top;
  }
  .visual.visual_under.os-64 {
    background-position: center top;
  }
  .visual.visual_under.os64 {
    background-position: center top;
  }
  .visual.visual_under.os-65 {
    background-position: center top;
  }
  .visual.visual_under.os65 {
    background-position: center top;
  }
  .visual.visual_under.os-66 {
    background-position: center top;
  }
  .visual.visual_under.os66 {
    background-position: center top;
  }
  .visual.visual_under.os-67 {
    background-position: center top;
  }
  .visual.visual_under.os67 {
    background-position: center top;
  }
  .visual.visual_under.os-68 {
    background-position: center top;
  }
  .visual.visual_under.os68 {
    background-position: center top;
  }
  .visual.visual_under.os-69 {
    background-position: center top;
  }
  .visual.visual_under.os69 {
    background-position: center top;
  }
  .visual.visual_under.os-70 {
    background-position: center top;
  }
  .visual.visual_under.os70 {
    background-position: center top;
  }
  .visual.visual_under.os-71 {
    background-position: center top;
  }
  .visual.visual_under.os71 {
    background-position: center top;
  }
  .visual.visual_under.os-72 {
    background-position: center top;
  }
  .visual.visual_under.os72 {
    background-position: center top;
  }
  .visual.visual_under.os-73 {
    background-position: center top;
  }
  .visual.visual_under.os73 {
    background-position: center top;
  }
  .visual.visual_under.os-74 {
    background-position: center top;
  }
  .visual.visual_under.os74 {
    background-position: center top;
  }
  .visual.visual_under.os-75 {
    background-position: center top;
  }
  .visual.visual_under.os75 {
    background-position: center top;
  }
  .visual.visual_under.os-76 {
    background-position: center top;
  }
  .visual.visual_under.os76 {
    background-position: center top;
  }
  .visual.visual_under.os-77 {
    background-position: center top;
  }
  .visual.visual_under.os77 {
    background-position: center top;
  }
  .visual.visual_under.os-78 {
    background-position: center top;
  }
  .visual.visual_under.os78 {
    background-position: center top;
  }
  .visual.visual_under.os-79 {
    background-position: center top;
  }
  .visual.visual_under.os79 {
    background-position: center top;
  }
  .visual.visual_under.os-80 {
    background-position: center top;
  }
  .visual.visual_under.os80 {
    background-position: center top;
  }
  .visual.visual_under.os-81 {
    background-position: center top;
  }
  .visual.visual_under.os81 {
    background-position: center top;
  }
  .visual.visual_under.os-82 {
    background-position: center top;
  }
  .visual.visual_under.os82 {
    background-position: center top;
  }
  .visual.visual_under.os-83 {
    background-position: center top;
  }
  .visual.visual_under.os83 {
    background-position: center top;
  }
  .visual.visual_under.os-84 {
    background-position: center top;
  }
  .visual.visual_under.os84 {
    background-position: center top;
  }
  .visual.visual_under.os-85 {
    background-position: center top;
  }
  .visual.visual_under.os85 {
    background-position: center top;
  }
  .visual.visual_under.os-86 {
    background-position: center top;
  }
  .visual.visual_under.os86 {
    background-position: center top;
  }
  .visual.visual_under.os-87 {
    background-position: center top;
  }
  .visual.visual_under.os87 {
    background-position: center top;
  }
  .visual.visual_under.os-88 {
    background-position: center top;
  }
  .visual.visual_under.os88 {
    background-position: center top;
  }
  .visual.visual_under.os-89 {
    background-position: center top;
  }
  .visual.visual_under.os89 {
    background-position: center top;
  }
  .visual.visual_under.os-90 {
    background-position: center top;
  }
  .visual.visual_under.os90 {
    background-position: center top;
  }
  .visual.visual_under.os-91 {
    background-position: center top;
  }
  .visual.visual_under.os91 {
    background-position: center top;
  }
  .visual.visual_under.os-92 {
    background-position: center top;
  }
  .visual.visual_under.os92 {
    background-position: center top;
  }
  .visual.visual_under.os-93 {
    background-position: center top;
  }
  .visual.visual_under.os93 {
    background-position: center top;
  }
  .visual.visual_under.os-94 {
    background-position: center top;
  }
  .visual.visual_under.os94 {
    background-position: center top;
  }
  .visual.visual_under.os-95 {
    background-position: center top;
  }
  .visual.visual_under.os95 {
    background-position: center top;
  }
  .visual.visual_under.os-96 {
    background-position: center top;
  }
  .visual.visual_under.os96 {
    background-position: center top;
  }
  .visual.visual_under.os-97 {
    background-position: center top;
  }
  .visual.visual_under.os97 {
    background-position: center top;
  }
  .visual.visual_under.os-98 {
    background-position: center top;
  }
  .visual.visual_under.os98 {
    background-position: center top;
  }
  .visual.visual_under.os-99 {
    background-position: center top;
  }
  .visual.visual_under.os99 {
    background-position: center top;
  }
  .visual.visual_under.os-100 {
    background-position: center top;
  }
  .visual.visual_under.os100 {
    background-position: center top;
  }
}
@media screen and (max-width: 767px) {
  .visual.visual_under.os-sp-1 {
    background-position: -1% top !important;
  }
  .visual.visual_under.os-sp1 {
    background-position: 1% top !important;
  }
  .visual.visual_under.os-sp-2 {
    background-position: -2% top !important;
  }
  .visual.visual_under.os-sp2 {
    background-position: 2% top !important;
  }
  .visual.visual_under.os-sp-3 {
    background-position: -3% top !important;
  }
  .visual.visual_under.os-sp3 {
    background-position: 3% top !important;
  }
  .visual.visual_under.os-sp-4 {
    background-position: -4% top !important;
  }
  .visual.visual_under.os-sp4 {
    background-position: 4% top !important;
  }
  .visual.visual_under.os-sp-5 {
    background-position: -5% top !important;
  }
  .visual.visual_under.os-sp5 {
    background-position: 5% top !important;
  }
  .visual.visual_under.os-sp-6 {
    background-position: -6% top !important;
  }
  .visual.visual_under.os-sp6 {
    background-position: 6% top !important;
  }
  .visual.visual_under.os-sp-7 {
    background-position: -7% top !important;
  }
  .visual.visual_under.os-sp7 {
    background-position: 7% top !important;
  }
  .visual.visual_under.os-sp-8 {
    background-position: -8% top !important;
  }
  .visual.visual_under.os-sp8 {
    background-position: 8% top !important;
  }
  .visual.visual_under.os-sp-9 {
    background-position: -9% top !important;
  }
  .visual.visual_under.os-sp9 {
    background-position: 9% top !important;
  }
  .visual.visual_under.os-sp-10 {
    background-position: -10% top !important;
  }
  .visual.visual_under.os-sp10 {
    background-position: 10% top !important;
  }
  .visual.visual_under.os-sp-11 {
    background-position: -11% top !important;
  }
  .visual.visual_under.os-sp11 {
    background-position: 11% top !important;
  }
  .visual.visual_under.os-sp-12 {
    background-position: -12% top !important;
  }
  .visual.visual_under.os-sp12 {
    background-position: 12% top !important;
  }
  .visual.visual_under.os-sp-13 {
    background-position: -13% top !important;
  }
  .visual.visual_under.os-sp13 {
    background-position: 13% top !important;
  }
  .visual.visual_under.os-sp-14 {
    background-position: -14% top !important;
  }
  .visual.visual_under.os-sp14 {
    background-position: 14% top !important;
  }
  .visual.visual_under.os-sp-15 {
    background-position: -15% top !important;
  }
  .visual.visual_under.os-sp15 {
    background-position: 15% top !important;
  }
  .visual.visual_under.os-sp-16 {
    background-position: -16% top !important;
  }
  .visual.visual_under.os-sp16 {
    background-position: 16% top !important;
  }
  .visual.visual_under.os-sp-17 {
    background-position: -17% top !important;
  }
  .visual.visual_under.os-sp17 {
    background-position: 17% top !important;
  }
  .visual.visual_under.os-sp-18 {
    background-position: -18% top !important;
  }
  .visual.visual_under.os-sp18 {
    background-position: 18% top !important;
  }
  .visual.visual_under.os-sp-19 {
    background-position: -19% top !important;
  }
  .visual.visual_under.os-sp19 {
    background-position: 19% top !important;
  }
  .visual.visual_under.os-sp-20 {
    background-position: -20% top !important;
  }
  .visual.visual_under.os-sp20 {
    background-position: 20% top !important;
  }
  .visual.visual_under.os-sp-21 {
    background-position: -21% top !important;
  }
  .visual.visual_under.os-sp21 {
    background-position: 21% top !important;
  }
  .visual.visual_under.os-sp-22 {
    background-position: -22% top !important;
  }
  .visual.visual_under.os-sp22 {
    background-position: 22% top !important;
  }
  .visual.visual_under.os-sp-23 {
    background-position: -23% top !important;
  }
  .visual.visual_under.os-sp23 {
    background-position: 23% top !important;
  }
  .visual.visual_under.os-sp-24 {
    background-position: -24% top !important;
  }
  .visual.visual_under.os-sp24 {
    background-position: 24% top !important;
  }
  .visual.visual_under.os-sp-25 {
    background-position: -25% top !important;
  }
  .visual.visual_under.os-sp25 {
    background-position: 25% top !important;
  }
  .visual.visual_under.os-sp-26 {
    background-position: -26% top !important;
  }
  .visual.visual_under.os-sp26 {
    background-position: 26% top !important;
  }
  .visual.visual_under.os-sp-27 {
    background-position: -27% top !important;
  }
  .visual.visual_under.os-sp27 {
    background-position: 27% top !important;
  }
  .visual.visual_under.os-sp-28 {
    background-position: -28% top !important;
  }
  .visual.visual_under.os-sp28 {
    background-position: 28% top !important;
  }
  .visual.visual_under.os-sp-29 {
    background-position: -29% top !important;
  }
  .visual.visual_under.os-sp29 {
    background-position: 29% top !important;
  }
  .visual.visual_under.os-sp-30 {
    background-position: -30% top !important;
  }
  .visual.visual_under.os-sp30 {
    background-position: 30% top !important;
  }
  .visual.visual_under.os-sp-31 {
    background-position: -31% top !important;
  }
  .visual.visual_under.os-sp31 {
    background-position: 31% top !important;
  }
  .visual.visual_under.os-sp-32 {
    background-position: -32% top !important;
  }
  .visual.visual_under.os-sp32 {
    background-position: 32% top !important;
  }
  .visual.visual_under.os-sp-33 {
    background-position: -33% top !important;
  }
  .visual.visual_under.os-sp33 {
    background-position: 33% top !important;
  }
  .visual.visual_under.os-sp-34 {
    background-position: -34% top !important;
  }
  .visual.visual_under.os-sp34 {
    background-position: 34% top !important;
  }
  .visual.visual_under.os-sp-35 {
    background-position: -35% top !important;
  }
  .visual.visual_under.os-sp35 {
    background-position: 35% top !important;
  }
  .visual.visual_under.os-sp-36 {
    background-position: -36% top !important;
  }
  .visual.visual_under.os-sp36 {
    background-position: 36% top !important;
  }
  .visual.visual_under.os-sp-37 {
    background-position: -37% top !important;
  }
  .visual.visual_under.os-sp37 {
    background-position: 37% top !important;
  }
  .visual.visual_under.os-sp-38 {
    background-position: -38% top !important;
  }
  .visual.visual_under.os-sp38 {
    background-position: 38% top !important;
  }
  .visual.visual_under.os-sp-39 {
    background-position: -39% top !important;
  }
  .visual.visual_under.os-sp39 {
    background-position: 39% top !important;
  }
  .visual.visual_under.os-sp-40 {
    background-position: -40% top !important;
  }
  .visual.visual_under.os-sp40 {
    background-position: 40% top !important;
  }
  .visual.visual_under.os-sp-41 {
    background-position: -41% top !important;
  }
  .visual.visual_under.os-sp41 {
    background-position: 41% top !important;
  }
  .visual.visual_under.os-sp-42 {
    background-position: -42% top !important;
  }
  .visual.visual_under.os-sp42 {
    background-position: 42% top !important;
  }
  .visual.visual_under.os-sp-43 {
    background-position: -43% top !important;
  }
  .visual.visual_under.os-sp43 {
    background-position: 43% top !important;
  }
  .visual.visual_under.os-sp-44 {
    background-position: -44% top !important;
  }
  .visual.visual_under.os-sp44 {
    background-position: 44% top !important;
  }
  .visual.visual_under.os-sp-45 {
    background-position: -45% top !important;
  }
  .visual.visual_under.os-sp45 {
    background-position: 45% top !important;
  }
  .visual.visual_under.os-sp-46 {
    background-position: -46% top !important;
  }
  .visual.visual_under.os-sp46 {
    background-position: 46% top !important;
  }
  .visual.visual_under.os-sp-47 {
    background-position: -47% top !important;
  }
  .visual.visual_under.os-sp47 {
    background-position: 47% top !important;
  }
  .visual.visual_under.os-sp-48 {
    background-position: -48% top !important;
  }
  .visual.visual_under.os-sp48 {
    background-position: 48% top !important;
  }
  .visual.visual_under.os-sp-49 {
    background-position: -49% top !important;
  }
  .visual.visual_under.os-sp49 {
    background-position: 49% top !important;
  }
  .visual.visual_under.os-sp-50 {
    background-position: -50% top !important;
  }
  .visual.visual_under.os-sp50 {
    background-position: 50% top !important;
  }
  .visual.visual_under.os-sp-51 {
    background-position: -51% top !important;
  }
  .visual.visual_under.os-sp51 {
    background-position: 51% top !important;
  }
  .visual.visual_under.os-sp-52 {
    background-position: -52% top !important;
  }
  .visual.visual_under.os-sp52 {
    background-position: 52% top !important;
  }
  .visual.visual_under.os-sp-53 {
    background-position: -53% top !important;
  }
  .visual.visual_under.os-sp53 {
    background-position: 53% top !important;
  }
  .visual.visual_under.os-sp-54 {
    background-position: -54% top !important;
  }
  .visual.visual_under.os-sp54 {
    background-position: 54% top !important;
  }
  .visual.visual_under.os-sp-55 {
    background-position: -55% top !important;
  }
  .visual.visual_under.os-sp55 {
    background-position: 55% top !important;
  }
  .visual.visual_under.os-sp-56 {
    background-position: -56% top !important;
  }
  .visual.visual_under.os-sp56 {
    background-position: 56% top !important;
  }
  .visual.visual_under.os-sp-57 {
    background-position: -57% top !important;
  }
  .visual.visual_under.os-sp57 {
    background-position: 57% top !important;
  }
  .visual.visual_under.os-sp-58 {
    background-position: -58% top !important;
  }
  .visual.visual_under.os-sp58 {
    background-position: 58% top !important;
  }
  .visual.visual_under.os-sp-59 {
    background-position: -59% top !important;
  }
  .visual.visual_under.os-sp59 {
    background-position: 59% top !important;
  }
  .visual.visual_under.os-sp-60 {
    background-position: -60% top !important;
  }
  .visual.visual_under.os-sp60 {
    background-position: 60% top !important;
  }
  .visual.visual_under.os-sp-61 {
    background-position: -61% top !important;
  }
  .visual.visual_under.os-sp61 {
    background-position: 61% top !important;
  }
  .visual.visual_under.os-sp-62 {
    background-position: -62% top !important;
  }
  .visual.visual_under.os-sp62 {
    background-position: 62% top !important;
  }
  .visual.visual_under.os-sp-63 {
    background-position: -63% top !important;
  }
  .visual.visual_under.os-sp63 {
    background-position: 63% top !important;
  }
  .visual.visual_under.os-sp-64 {
    background-position: -64% top !important;
  }
  .visual.visual_under.os-sp64 {
    background-position: 64% top !important;
  }
  .visual.visual_under.os-sp-65 {
    background-position: -65% top !important;
  }
  .visual.visual_under.os-sp65 {
    background-position: 65% top !important;
  }
  .visual.visual_under.os-sp-66 {
    background-position: -66% top !important;
  }
  .visual.visual_under.os-sp66 {
    background-position: 66% top !important;
  }
  .visual.visual_under.os-sp-67 {
    background-position: -67% top !important;
  }
  .visual.visual_under.os-sp67 {
    background-position: 67% top !important;
  }
  .visual.visual_under.os-sp-68 {
    background-position: -68% top !important;
  }
  .visual.visual_under.os-sp68 {
    background-position: 68% top !important;
  }
  .visual.visual_under.os-sp-69 {
    background-position: -69% top !important;
  }
  .visual.visual_under.os-sp69 {
    background-position: 69% top !important;
  }
  .visual.visual_under.os-sp-70 {
    background-position: -70% top !important;
  }
  .visual.visual_under.os-sp70 {
    background-position: 70% top !important;
  }
  .visual.visual_under.os-sp-71 {
    background-position: -71% top !important;
  }
  .visual.visual_under.os-sp71 {
    background-position: 71% top !important;
  }
  .visual.visual_under.os-sp-72 {
    background-position: -72% top !important;
  }
  .visual.visual_under.os-sp72 {
    background-position: 72% top !important;
  }
  .visual.visual_under.os-sp-73 {
    background-position: -73% top !important;
  }
  .visual.visual_under.os-sp73 {
    background-position: 73% top !important;
  }
  .visual.visual_under.os-sp-74 {
    background-position: -74% top !important;
  }
  .visual.visual_under.os-sp74 {
    background-position: 74% top !important;
  }
  .visual.visual_under.os-sp-75 {
    background-position: -75% top !important;
  }
  .visual.visual_under.os-sp75 {
    background-position: 75% top !important;
  }
  .visual.visual_under.os-sp-76 {
    background-position: -76% top !important;
  }
  .visual.visual_under.os-sp76 {
    background-position: 76% top !important;
  }
  .visual.visual_under.os-sp-77 {
    background-position: -77% top !important;
  }
  .visual.visual_under.os-sp77 {
    background-position: 77% top !important;
  }
  .visual.visual_under.os-sp-78 {
    background-position: -78% top !important;
  }
  .visual.visual_under.os-sp78 {
    background-position: 78% top !important;
  }
  .visual.visual_under.os-sp-79 {
    background-position: -79% top !important;
  }
  .visual.visual_under.os-sp79 {
    background-position: 79% top !important;
  }
  .visual.visual_under.os-sp-80 {
    background-position: -80% top !important;
  }
  .visual.visual_under.os-sp80 {
    background-position: 80% top !important;
  }
  .visual.visual_under.os-sp-81 {
    background-position: -81% top !important;
  }
  .visual.visual_under.os-sp81 {
    background-position: 81% top !important;
  }
  .visual.visual_under.os-sp-82 {
    background-position: -82% top !important;
  }
  .visual.visual_under.os-sp82 {
    background-position: 82% top !important;
  }
  .visual.visual_under.os-sp-83 {
    background-position: -83% top !important;
  }
  .visual.visual_under.os-sp83 {
    background-position: 83% top !important;
  }
  .visual.visual_under.os-sp-84 {
    background-position: -84% top !important;
  }
  .visual.visual_under.os-sp84 {
    background-position: 84% top !important;
  }
  .visual.visual_under.os-sp-85 {
    background-position: -85% top !important;
  }
  .visual.visual_under.os-sp85 {
    background-position: 85% top !important;
  }
  .visual.visual_under.os-sp-86 {
    background-position: -86% top !important;
  }
  .visual.visual_under.os-sp86 {
    background-position: 86% top !important;
  }
  .visual.visual_under.os-sp-87 {
    background-position: -87% top !important;
  }
  .visual.visual_under.os-sp87 {
    background-position: 87% top !important;
  }
  .visual.visual_under.os-sp-88 {
    background-position: -88% top !important;
  }
  .visual.visual_under.os-sp88 {
    background-position: 88% top !important;
  }
  .visual.visual_under.os-sp-89 {
    background-position: -89% top !important;
  }
  .visual.visual_under.os-sp89 {
    background-position: 89% top !important;
  }
  .visual.visual_under.os-sp-90 {
    background-position: -90% top !important;
  }
  .visual.visual_under.os-sp90 {
    background-position: 90% top !important;
  }
  .visual.visual_under.os-sp-91 {
    background-position: -91% top !important;
  }
  .visual.visual_under.os-sp91 {
    background-position: 91% top !important;
  }
  .visual.visual_under.os-sp-92 {
    background-position: -92% top !important;
  }
  .visual.visual_under.os-sp92 {
    background-position: 92% top !important;
  }
  .visual.visual_under.os-sp-93 {
    background-position: -93% top !important;
  }
  .visual.visual_under.os-sp93 {
    background-position: 93% top !important;
  }
  .visual.visual_under.os-sp-94 {
    background-position: -94% top !important;
  }
  .visual.visual_under.os-sp94 {
    background-position: 94% top !important;
  }
  .visual.visual_under.os-sp-95 {
    background-position: -95% top !important;
  }
  .visual.visual_under.os-sp95 {
    background-position: 95% top !important;
  }
  .visual.visual_under.os-sp-96 {
    background-position: -96% top !important;
  }
  .visual.visual_under.os-sp96 {
    background-position: 96% top !important;
  }
  .visual.visual_under.os-sp-97 {
    background-position: -97% top !important;
  }
  .visual.visual_under.os-sp97 {
    background-position: 97% top !important;
  }
  .visual.visual_under.os-sp-98 {
    background-position: -98% top !important;
  }
  .visual.visual_under.os-sp98 {
    background-position: 98% top !important;
  }
  .visual.visual_under.os-sp-99 {
    background-position: -99% top !important;
  }
  .visual.visual_under.os-sp99 {
    background-position: 99% top !important;
  }
  .visual.visual_under.os-sp-100 {
    background-position: -100% top !important;
  }
  .visual.visual_under.os-sp100 {
    background-position: 100% top !important;
  }
}
@media screen and (max-width: 1023px) {
  .box_shadow {
    display: block;
    box-shadow: 0 0 16px 0 rgba(4, 0, 0, 0.15);
  }
  .box_shadow .box_shadow_txt {
    box-sizing: border-box;
    padding: 0 20px 20px;
  }
}
.link_pdf {
  text-align: right;
  margin-top: -20px;
}

.link_pdf a {
  background: url(/asset/images/common/icon_pdf.png) 0 47% no-repeat;
  background-size: 20px auto;
  display: inline-block;
  padding: 10px 0 10px 28px;
  color: #0079c0;
}

@media screen and (max-width: 1023px) {
  .link_pdf {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.mbn50 {
  margin-bottom: -50px;
}

.mbn150 {
  margin-bottom: -150px;
}

.mbn200 {
  margin-bottom: -200px;
}

.float_inner {
  overflow: hidden;
}

.float_inner .float_left {
  float: left;
}

.float_inner .float_right {
  float: right;
}

@media screen and (max-width: 1023px) {
  .breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .breadcrumb ul li {
    margin-right: 20px;
  }
}
.breadcrumb {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.breadcrumb ul {
  list-style: none;
}

.breadcrumb ul li {
  display: inline-block;
  margin-right: 25px;
}

.breadcrumb ul li a {
  text-decoration: underline;
  position: relative;
  color: #000;
}

.breadcrumb ul li a:after {
  content: "";
  width: 6px;
  height: 8px;
  display: block;
  position: absolute;
  right: -18px;
  margin-top: -10px;
  background-image: url(/asset/images/common/breadcrumbArr.png);
  background-repeat: no-repeat;
}

.lay_list {
  width: 1024px;
  margin: 0 auto;
}

.lay_list_inner:after {
  content: "";
  display: block;
  clear: both;
}

.lay_list_inner .lay_3 {
  float: left;
  transition: all 0.3s;
}

.lay_list_inner .lay_3:nth-of-type(3n + 2) {
  margin: 0 8px;
}

.lay_list_inner .lay_3:nth-of-type(1n + 4) {
  margin-top: 8px;
}

@media screen and (max-width: 1023px) {
  .lay_list {
    width: auto;
  }
  .lay_list_inner {
    text-align: center;
    max-width: 330px;
    padding: 10px;
    margin: 30px auto 0;
  }
  .lay_list_inner .slick-list {
    overflow: inherit;
  }
  .lay_list_inner .lay_3 {
    display: inline-block;
    float: inherit;
    transition: all 0.3s;
  }
  .lay_list_inner .lay_3:nth-of-type(3n + 2) {
    margin: 0px;
  }
  .lay_list_inner .lay_3:nth-of-type(1n + 1) {
    margin-top: 8px;
  }
}
.item_plus > div:nth-of-type(1n + 4) {
  display: none;
}

.l_nav.local_gray {
  height: 62px;
  position: absolute;
  top: 76px;
  width: 100%;
  z-index: 2;
  box-shadow: -2px 1px 6px -2px rgba(0, 0, 0, 0.25);
}

.l_nav.bg_w {
  height: 62px;
  position: relative;
  box-shadow: -2px 1px 6px -2px rgba(0, 0, 0, 0.25);
}

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

.l_nav .l_nav_list.type1.on {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #f0f0f0;
  z-index: 100;
}

.l_nav .l_nav_list li {
  display: inline-block;
  position: relative;
  font-size: 14px;
}

.l_nav .l_nav_list li a {
  color: #000000;
  padding: 24px 25px;
  display: block;
  font-family: "open_l";
}

.l_nav .l_nav_list li a.icon_dom {
  background-image: url(/asset/images/common/icon_dom.png);
  background-repeat: no-repeat;
  background-position: 22px center;
  background-size: 17px 15px;
  padding-left: 45px;
  text-align: left;
}

.l_nav .l_nav_list li a.icon_bs {
  background-image: url(/asset/images/common/icon_local_service.png);
  background-repeat: no-repeat;
  background-position: 22px 22px;
  background-size: 14px 18px;
  padding-left: 45px;
  text-align: left;
}

.l_nav .l_nav_list li a.bdl:before {
  content: "";
  width: 1px;
  height: 42px;
  background-color: #e7e5e4;
  position: absolute;
  top: 10px;
  left: -2px;
}

.l_nav .l_nav_list li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.4s;
}

.l_nav .l_nav_list li a:hover {
  background-color: #f0f0f0;
}

.l_nav .l_nav_list.type1 li a.on:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 0;
  width: 100%;
  background-color: #eb0a1e;
}

.l_nav .l_nav_list.type2 {
  position: absolute;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  box-shadow: -2px 1px 6px -2px rgba(0, 0, 0, 0.25);
}

.l_nav .l_nav_list.type2.on {
  position: fixed;
  width: 100%;
  top: 52px;
  background-color: #fff;
  z-index: 100;
}

.l_nav .l_nav_list.type2 li a:hover {
  background-color: #f9f9f9;
}

.l_nav .l_nav_list.type2 li a.on.on:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 0;
  width: 100%;
  background-color: #eb0a1e;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  ransition: all 0.4s;
}

.l_nav_page {
  display: none;
}

.l_nav .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  position: static !important;
}

@media screen and (max-width: 1023px) {
  .l_nav {
    position: relative;
  }
  .l_nav.local_gray {
    height: auto;
    position: inherit !important;
    top: inherit !important;
  }
  .l_nav.bg_w {
    height: auto;
    border-bottom: 1px solid #ebebeb;
  }
  .l_nav .l_nav_list {
    /*width: 1024px;*/
    width: auto;
  }
  .l_nav .l_nav_list.type1.on {
    position: inherit;
    width: auto;
    top: inherit;
  }
  .l_nav .l_nav_list.type2 {
    position: inherit !important;
    top: inherit !important;
    width: 1024px;
  }
  .l_nav .l_nav_list.type2.on {
    position: inherit;
    width: auto;
    top: inherit;
  }
  .l_nav .l_nav_list.type2 li a:hover {
    background-color: inherit;
  }
  .l_nav .l_nav_list.type2 li a:hover:after {
    display: none;
  }
  .l_nav .mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 0px;
  }
  .l_nav .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    position: relative !important;
  }
  .l_nav .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    top: -3px;
    z-index: 9;
  }
  .l_nav_page {
    display: block;
    position: relative;
    width: 100%;
  }
  .l_nav_page .l_nav_prev,
  .l_nav_page .l_nav_next {
    display: none;
    position: absolute;
    top: -55px;
    padding: 27px 12px;
    z-index: 2;
    border: none;
    background-color: #fff;
    cursor: pointer;
  }
  .l_nav_page .l_nav_prev.gray,
  .l_nav_page .l_nav_next.gray {
    background-color: #f0f0f0;
  }
  .l_nav_page .l_nav_prev {
    left: 0;
    box-shadow: 2px 2px 5px -1px rgba(0, 0, 0, 0.25);
    background-image: url(/asset/images/common/localnav_leftarrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px auto;
  }
  .l_nav_page .l_nav_next {
    right: 0;
    box-shadow: -2px 2px 5px -1px rgba(0, 0, 0, 0.25);
    background-image: url(/asset/images/common/localnav_rightarrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px auto;
  }
}
.visual.visual_type_1,
.visual.visual_type_3 {
  height: 480px;
  background-size: cover;
  background-position: center;
}

.visual.visual_type_2 {
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.visual .visual_inner {
  width: 1024px;
  margin: 0 auto;
  position: relative;
}

.visual .visual_inner .visual_text_type_1 {
  position: absolute;
  top: 315px;
  left: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.visual .visual_inner .visual_text_type_1 span {
  display: block;
}

.visual .visual_inner .visual_text_type_1 span.type1 {
  font-size: 60px;
  font-family: "toyota_b";
}

.visual .visual_inner .visual_text_type_1 span.type2 {
  font-family: "open_l";
  font-size: 28px;
  font-weight: 600;
}

.visual .visual_inner .visual_text_type_2 {
  position: absolute;
  top: 125px;
  left: 0;
  font-size: 60px;
  font-family: "toyota_b";
}

.visual .visual_inner .visual_text_type_3 {
  position: absolute;
  top: 70px;
  left: 0;
}

.visual .visual_inner .visual_text_type_3 span {
  display: block;
}

.visual .visual_inner .visual_text_type_3 span.type1 {
  font-size: 60px;
  font-family: "toyota_b";
  margin-bottom: 30px;
}

.visual .visual_inner .visual_text_type_3 span.type2 {
  font-family: "open_l";
  font-size: 28px;
  font-weight: 600;
}

.visual.visual_under {
  background-repeat: no-repeat;
  background-position: center top;
  height: 260px;
}

.visual.visual_under.L_size {
  height: 420px;
}

.visual.visual_under .visual__under_inner {
  position: relative;
  height: 100%;
}

.visual.visual_under .visual__under_inner .visual_text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 1200px;
  padding-left: 40px;
  margin: 0 auto;
  transform: translateY(-50%);
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.visual.visual_under .visual__under_inner .visual_text span.year {
  font-family: "open_l";
  font-size: 24px;
}

.visual.visual_under .visual__under_inner .visual_text span.carName {
  font-size: 50px;
  font-family: "toyota_b";
}

.visual.visual_under .visual__under_inner .overview_text {
  height: 100%;
  display: flex;
  width: 1024px;
  margin: 0 auto;
  align-items: center;
}

.visual.visual_under .visual__under_inner .overview_text .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateX(-25px);
}

.visual.visual_under .visual__under_inner .overview_text .carName {
  font-size: 50px;
  font-family: "toyota_b";
  color: #fff;
  font-weight: bold;
}

.visual.visual_under .visual__under_inner .overview_text .carPrice {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
  letter-spacing: 1px;
  font-family: "toyota_b";
}

.visual.visual_under .visual__under_inner .overview_text .btn_list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.visual.visual_under .visual__under_inner .overview_text .btn_list a {
  width: 100%;
  box-sizing: border-box;
}

.visual.visual_under .visual__under_inner .overview_text .btn_list a:nth-of-type(1n + 2) {
  margin-top: 10px;
  margin-left: 0;
}

.visual_title_type_0 {
  font-size: 50px;
  text-align: center;
  padding: 188px 0 60px 0;
}

.visual_title_type_1 {
  font-size: 50px;
  text-align: center;
  padding: 40px 0 40px 0;
  margin-top: 138px;
}

.visual_title_type_1.virtual_bg_gl {
  background: #f2f2f2;
}

.visual_title_type_2 {
  font-size: 50px;
  text-align: center;
  padding: 70px 0 70px 0;
  margin-top: 76px;
}

.visual_title_type_2 span {
  font-size: 26px;
  text-align: center;
  margin-top: 40px;
  display: block;
}

.visual_title_type_3 {
  font-size: 50px;
  text-align: center;
  padding: 40px 0 40px 0;
  margin-top: 76px;
}

.visual_title_type_3.virtual_bg_gl {
  background: #f2f2f2;
}

.visual_title_type_3 span {
  font-size: 26px;
  text-align: center;
  margin-top: 40px;
  display: block;
}

.news_scroll_box {
  height: 250px;
  margin-top: 20px;
}

.news_scroll_box a {
  color: #000;
}

.news_scroll_box a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1190px) {
  .visual.visual_under .visual__under_inner .visual_text {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .visual {
    margin-top: inherit !important;
  }
  .visual.visual_type_1,
  .visual.visual_type_3 {
    height: auto;
  }
  .visual.visual_type_2 {
    height: auto;
    background-size: cover;
    background-position: center;
  }
  .visual .visual_inner {
    width: auto;
    margin: 0 10px;
  }
  .visual .visual_inner .visual_text_type_1 {
    position: inherit;
    top: inherit;
    padding: 30% 0 20%;
  }
  .visual .visual_inner .visual_text_type_1 span {
    display: block;
  }
  .visual .visual_inner .visual_text_type_1 span.type1 {
    font-size: 40px;
  }
  .visual .visual_inner .visual_text_type_1 span.type2 {
    font-size: 22px;
  }
  .visual .visual_inner .visual_text_type_2 {
    position: inherit;
    top: inherit;
    padding: 30% 0 20%;
    font-size: 40px;
  }
  .visual .visual_inner .visual_text_type_3 {
    position: inherit;
    top: inherit;
    padding: 30% 0 20%;
  }
  .visual .visual_inner .visual_text_type_3 span.type1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .visual .visual_inner .visual_text_type_3 span.type2 {
    font-size: 22px;
  }
  .visual.visual_under {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: auto;
  }
  .visual.visual_under.L_size {
    height: auto;
  }
  .visual.visual_under.L_size .visual__under_inner {
    padding: 64.7% 0 6%;
  }
  .visual.visual_under .visual__under_inner {
    position: inherit;
    height: auto;
    padding: 30% 0 5%;
  }
  .visual.visual_under .visual__under_inner .visual_text {
    position: inherit;
    padding: 0;
    top: inherit;
    left: inherit;
    right: inherit;
    width: auto;
    text-align: center;
    transform: translateY(0%);
  }
  .visual.visual_under .visual__under_inner .visual_text span.year {
    font-size: 16px;
  }
  .visual.visual_under .visual__under_inner .visual_text span.carName {
    font-size: 24px;
  }
  .visual.visual_under .visual__under_inner .overview_text {
    display: none;
  }
  .visual_carPrice {
    background: #f9f9f9;
    text-align: center;
    line-height: 1;
    font-family: "toyota_b";
    font-weight: bold;
    font-size: 14px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .visual_title_type_1,
  .visual_title_type_0 {
    font-size: 24px;
    text-align: center;
    padding: 40px 0;
    margin-top: 0;
  }
  .visual_title_type_2 {
    font-size: 24px;
    text-align: center;
    padding: 40px 0;
    margin-top: 0;
  }
  .visual_title_type_2 span {
    font-size: 19px;
    margin-top: 20px;
    text-align: center;
    line-height: 23px;
  }
  .visual_title_type_3 {
    font-size: 24px;
    text-align: center;
    padding: 40px 0 20px 0;
    margin-top: 0;
  }
  .visual_title_type_3 span {
    font-size: 19px;
    margin-top: 20px;
    text-align: center;
    line-height: 23px;
  }
}
.general_img {
  text-align: center;
}

.general_img img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.quote_img {
  text-align: center;
}

.quote_img img {
  height: auto;
  max-width: 800px;
}

@media screen and (max-width: 1024px) {
  .quote_img {
    text-align: center;
  }
  .quote_img img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
.lay_block_1 a p {
  color: #000;
}

.lay_block_1 a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}

.lay_block_1 > a:hover p {
  text-decoration: underline;
}

.lay_block:after {
  content: "";
  display: block;
  clear: both;
}

.lay_block .lay_block_2 {
  float: left;
  width: 490px;
  margin-right: 20px;
}

.lay_block .lay_block_2:nth-of-type(2) {
  margin-left: 20px;
  margin-right: 0;
}

.lay_block .lay_block_2:nth-of-type(1n + 3) {
  margin-top: 30px;
}

.lay_block .lay_block_2 a p {
  color: #000;
}

.lay_block .lay_block_2 a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}

.lay_block .lay_block_2 > a:hover p {
  text-decoration: underline;
}

.lay_block .lay_block_3 {
  float: left;
  width: 336px;
}

.lay_block .lay_block_3:nth-of-type(3n + 2) {
  margin: 0 8px;
}

.lay_block .lay_block_3:nth-of-type(1n + 4) {
  margin-top: 40px;
}

.lay_block .lay_block_3 a p {
  color: #000;
}

.lay_block .lay_block_3 a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}

.lay_block .lay_block_4 {
  float: left;
  width: 240px;
  margin-right: 20px;
}

.lay_block .lay_block_4:nth-of-type(4n + 4) {
  margin-right: 0;
}

.lay_block .lay_block_4 a p {
  color: #000;
}

.lay_block .lay_block_4 a:hover img {
  opacity: 0.8;
}

.lay_block .lay_block_3_2 {
  float: left;
  width: 314px;
}

.lay_block .lay_block_3_2:nth-of-type(3n + 2) {
  margin: 0 20px;
}

.lay_block .lay_block_3_2:nth-of-type(1n + 4) {
  margin-top: 40px;
}

.lay_block .lay_block_3_2 a p {
  color: #000;
}

.lay_block .lay_block_3_2 a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}

.lay_block .lay_block_3_2 .item_lay_type_2_text a {
  display: inline-block;
  color: #0079c0;
  margin-top: 15px;
}

.lay_block .lay_block_3 > a:hover p {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  .lay_block .lay_block_2 {
    float: inherit;
    width: auto;
    margin: 0 auto;
    max-width: 490px;
  }
  .lay_block .lay_block_2:nth-of-type(2) {
    margin-left: auto;
    margin-right: auto;
  }
  .lay_block .lay_block_2:nth-of-type(1n + 2) {
    margin-top: 40px;
  }
  .lay_block .lay_block_3 {
    float: inherit;
    width: auto;
    margin: 0 auto;
    max-width: 314px;
  }
  .lay_block .lay_block_3:nth-of-type(3n + 2) {
    margin: 0 auto;
  }
  .lay_block .lay_block_3:nth-of-type(1n + 2) {
    margin-top: 40px;
  }
  .lay_block .lay_block_3 .item_lay_type_2_text p {
    font-size: 14px;
  }
  .lay_block .lay_block_3 .item_lay_type_2_text p.f24 {
    font-size: 18px;
  }
  .lay_block .lay_block_3 .item_lay_type_2_text .drop_title {
    font-size: 16px;
  }
  .lay_block .lay_block_4 {
    float: inherit;
    width: auto;
    margin: 0 auto;
    max-width: 314px;
  }
  .lay_block .lay_block_4:nth-of-type(3n + 2) {
    margin: 0 auto;
  }
  .lay_block .lay_block_4:nth-of-type(1n + 2) {
    margin-top: 40px;
  }
  .lay_block .lay_block_4 .item_lay_type_2_text p {
    font-size: 14px;
  }
  .lay_block .lay_block_4 .item_lay_type_2_text p.f24 {
    font-size: 18px;
  }
  .lay_block .lay_block_4 .item_lay_type_2_text .drop_title {
    font-size: 16px;
  }
  .lay_block .lay_block_3_2 {
    float: inherit;
    width: auto;
    margin: 0 auto;
    max-width: 314px;
  }
  .lay_block .lay_block_3_2:nth-of-type(3n + 2) {
    margin: 0 auto;
  }
  .lay_block .lay_block_3_2:nth-of-type(1n + 2) {
    padding-top: 30px;
    border-top: 1px solid #e2e2e2;
    margin-top: 30px;
  }
  .lay_block .lay_block_3_2 .item_lay_type_2_text p {
    font-size: 14px;
  }
  .lay_block .lay_block_3_2 .item_lay_type_2_text p.f24 {
    font-size: 18px;
  }
  .lay_block .lay_block_3_2 .item_lay_type_2_text .drop_title {
    font-size: 16px;
  }
  .item_lay_type_3_text p:nth-of-type(1) {
    font-size: 14px;
  }
  .item_lay_type_3_text p.f24 {
    font-size: 18px;
  }
  .item_lay_type_2_text p.f24 {
    font-size: 18px;
  }
}
.text_lay_1 {
  display: table;
}

.text_lay_1 .general_img {
  display: table-cell;
}

.text_lay_1 .general_img img {
  max-width: 563px;
}

.text_lay_1 .item_text_box {
  display: table-cell;
  width: 410px;
  padding-left: 50px;
  vertical-align: middle;
}

.text_lay_1 a {
  display: inline-block;
  color: #0079c0;
  margin-top: 15px;
}

.text_lay_1 a p {
  color: #000;
}

.text_lay_1 a:hover img {
  opacity: 0.8;
}

.text_lay_1 a:hover {
  opacity: 0.8;
}

.text_lay_1 > a:hover p {
  text-decoration: underline;
}

.text_lay_2 {
  display: table;
}

.text_lay_2 .general_img {
  display: table-cell;
}

.text_lay_2 .general_img img {
  max-width: 563px;
}

.text_lay_2 .item_text_box {
  display: table-cell;
  width: 410px;
  padding-right: 50px;
  vertical-align: middle;
}

.text_lay_2 a {
  display: block;
}

.text_lay_2 a p {
  color: #000;
}

.text_lay_2 a:hover img {
  opacity: 0.8;
}

.text_lay_2 > a:hover p {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  .text_lay_1 {
    display: inherit;
    width: auto;
    max-width: 314px;
    margin: 0 auto;
  }
  .text_lay_1 .general_img {
    display: inherit;
    margin-bottom: 20px;
  }
  .text_lay_1 .general_img img {
    max-width: 100%;
  }
  .text_lay_1 .item_text_box {
    display: inherit;
    width: auto;
    padding-left: 0;
    vertical-align: middle;
  }
  .text_lay_1 .item_text_box p:nth-of-type(1) {
    font-size: 14px;
  }
  .text_lay_1 .item_text_box p.f24 {
    font-size: 18px;
  }
  .text_lay_2 {
    display: inherit;
    width: auto;
    max-width: 314px;
    margin: 0 auto;
  }
  .text_lay_2 .general_img {
    display: inherit;
  }
  .text_lay_2 .general_img img {
    max-width: 100%;
  }
  .text_lay_2 .item_text_box {
    display: inherit;
    width: auto;
    padding-right: 0;
    vertical-align: middle;
    margin-bottom: 20px;
  }
  .text_lay_2 .item_text_box p:nth-of-type(1) {
    font-size: 14px;
  }
  .text_lay_2 .item_text_box p.f24 {
    font-size: 18px;
  }
}
.color_slide .color_title {
  font-size: 26px;
  font-family: "toyota_b";
  text-align: center;
  margin-bottom: 40px;
}

.color_slide .diplay_car li figure img {
  width: auto;
  height: auto;
  max-width: 80%;
  margin: 0 auto;
}

.color_slide .diplay_car li figure figcaption {
  font-family: "open_l";
  font-size: 18px;
  text-align: center;
  margin-top: 40px;
  line-height: 1.6;
}

.color_slide .diplay_car .slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  background-color: inherit;
  text-indent: -9999px;
  padding: 12px 17px;
  z-index: 1;
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0);
}

.color_slide .diplay_car .slick-arrow.slick-prev {
  background-image: url(/asset/images/common/prev_type1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33px 38px;
  left: 0;
}

.color_slide .diplay_car .slick-arrow.slick-next {
  background-image: url(/asset/images/common/next_type1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33px 38px;
  right: 0;
}

.color_slide .color_list {
  text-align: center;
  padding: 15px 0;
}

.color_slide .color_list .slick-arrow {
  display: none !important;
}

.color_slide .color_list .slick-track {
  margin: 0 auto;
  width: 800px !important;
  padding: 5px 10px;
}

.color_slide .color_list .slick-slide {
  float: inherit;
  display: inline-block;
  width: auto !important;
}

.color_slide .color_list .slick-slide.slick-current .colour-chip:after {
  transform: scale(1.21);
}

.color_slide .color_list .slick-slide.slick-current .colour-chip:before {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #425368;
  top: -11px;
  left: -11px;
}

.color_slide .color_list .slick-slide a {
  display: block;
  width: 70px;
  height: 70px;
  outline: none;
}

.color_slide .color_list .colour-chip {
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 0 0 0 60px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}

.color_slide .color_list .colour-chip:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.color_slide .color_list .colour-chip:after {
  transition: border-color 0.2s linear;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.gallery_slide .gallery_title {
  font-size: 26px;
  font-family: "toyota_b";
  text-align: center;
  margin-bottom: 40px;
}

.gallery_slide .gallery_list {
  margin-bottom: 40px;
}

.gallery_slide .gallery_list li a {
  transition: all 0.3s;
}

.gallery_slide .gallery_list li img {
  width: 100%;
  height: auto;
}

.gallery_slide .gallery_list .slick-arrow {
  position: absolute;
  top: 50%;
  border: none;
  background-color: inherit;
  text-indent: -9999px;
  padding: 28px 34.5px;
  z-index: 1;
  cursor: pointer;
  margin-top: -35px;
  background-color: rgba(255, 0, 0, 0);
  transition: all 0.3s;
  transition: all 0.3s;
}

.gallery_slide .gallery_list .slick-arrow.slick-prev {
  background-image: url(/asset/images/common/prev_type_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px;
  left: 30px;
  opacity: 0.9;
}

.gallery_slide .gallery_list .slick-arrow.slick-next {
  background-image: url(/asset/images/common/next_type_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px;
  right: 30px;
  opacity: 0.9;
}

.gallery_slide .gallery_list .slick-arrow:hover {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .color_slide .color_title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .color_slide .diplay_car li figure img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .color_slide .diplay_car li figure figcaption {
    font-family: "open_l";
    font-size: 18px;
    text-align: center;
    margin-top: 40px;
  }
  .color_slide .diplay_car .slick-arrow {
    display: none !important;
  }
  .color_slide .color_list {
    text-align: center;
  }
  .color_slide .color_list .slick-track {
    margin: 0 auto;
    width: auto !important;
    min-width: 300px;
    max-width: 670px;
  }
  .color_slide .color_list .slick-slide {
    float: inherit;
    display: inline-block;
    width: auto !important;
  }
  .color_slide .color_list .slick-slide img {
    width: 30px;
    height: auto;
  }
  .color_slide .color_list .slick-slide.slick-current .colour-chip:after {
    transform: scale(1.05);
  }
  .color_slide .color_list .slick-slide.slick-current .colour-chip:before {
    width: 62px;
    height: 62px;
    top: -7px;
    left: -7px;
  }
  .color_slide .color_list .slick-slide.slick-current a {
    transform: scale(1.05);
  }
  .color_slide .color_list .colour-chip:hover {
    opacity: 1;
    transition: all 0s;
  }
  .gallery_slide .gallery_title {
    font-size: 22px;
  }
  .gallery_slide .gallery_list .slick-arrow {
    position: absolute;
    top: 50%;
    border: none;
    background-color: inherit;
    text-indent: -9999px;
    padding: 20px 25px;
    z-index: 1;
    cursor: pointer;
    margin-top: -25px;
    background-color: rgba(255, 0, 0, 0);
  }
  .gallery_slide .gallery_list .slick-arrow.slick-prev {
    background-image: url(/asset/images/common/prev_type_2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45px;
    left: 0;
  }
  .gallery_slide .gallery_list .slick-arrow.slick-next {
    background-image: url(/asset/images/common/next_type_2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45px;
    right: 0;
  }
  input {
    border: none;
    padding: 10px;
    border-radius: 4px;
  }
  input.interestrate,
  input.interestrate_type2 {
    width: 100% !important;
    padding: 10px;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  input.mydownpayment,
  input.mydownpayment_type2 {
    width: 100% !important;
    padding: 10px 10px 10px 30px;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
form .float_left {
  width: 50%;
}

form .float_right {
  width: 50%;
}

form input {
  font-family: "open_l";
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 4px;
}

form input::-webkit-input-placeholder {
  color: #999;
}

form input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

form input:-moz-placeholder-shown {
  color: #999;
}

form input:placeholder-shown {
  color: #999;
}

form input:focus {
  border-color: #425368;
}

form input.errStyle {
  border: 1px solid #ee0622;
}

form input.w500 {
  width: 500px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

form input.w400 {
  width: 400px;
}

form input.w250 {
  width: 250px;
}

form select {
  border: none;
  padding: 10px;
  border-radius: 4px;
}

form select.w500 {
  width: 500px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

form select.w400 {
  width: 400px;
}

form select.w250 {
  width: 250px;
}

form textarea {
  width: 100%;
  font-family: "open_l";
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

form textarea::-webkit-input-placeholder {
  color: #999;
}

form textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}

form textarea:-moz-placeholder-shown {
  color: #999;
}

form textarea:placeholder-shown {
  color: #999;
}

form textarea:focus {
  border-color: #425368;
}

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

@media screen and (max-width: 1023px) {
  form .formdealer_box .btn_list {
    text-align: left;
  }
  form .float_left {
    float: none !important;
    width: 100%;
  }
  form .float_right {
    float: none !important;
    width: 100%;
  }
  form input {
    padding: 10px;
    border-radius: 4px;
    margin: 5px 0 10px 0;
    box-sizing: border-box;
  }
  form input.w500 {
    width: 100%;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  form input.w400 {
    width: 100%;
  }
  form input.w250 {
    width: 100%;
  }
  form select {
    border: none;
    padding: 10px;
    border-radius: 4px;
    margin: 5px 0 20px 0;
    box-sizing: border-box;
  }
  form select.w500 {
    width: 100%;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  form select.w400 {
    width: 100%;
  }
  form select.w250 {
    width: 100%;
  }
  form textarea {
    margin-top: 5px;
  }
}
.drop_content .accessory_plice {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 10px 0;
}

.drop button.drop_btn {
  border: none;
  width: 100%;
  padding: 10px 40px 10px 20px;
  cursor: pointer;
  background-image: url(/asset/images/common/button_plus_black.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 14px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #e2e2e2;
}

.drop button.drop_btn.on {
  background-image: url(/asset/images/common/button_mn_black.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 2px;
}

.drop button.drop_btn[disabled] {
  color: #000;
  background-image: none;
  cursor: default;
}

.drop button.drop_btn_on + .drop_content {
  display: block;
}

.drop .drop_type2 {
  cursor: pointer;
  padding: 65px 80px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.drop .drop_type2 p {
  font-size: 40px;
}

.drop .drop_type2:after {
  position: absolute;
  bottom: -38px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  content: "";
  width: 72px;
  height: 72px;
  background-image: url(/asset/images/common/arw_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.3s;
  transform: rotate(0deg);
}

.drop .drop_type2.on:after {
  transition: all 0.3s;
  transform: rotate(-180deg);
}

.drop .drop_content {
  display: none;
}

.drop .drop_content .download_type {
  display: table;
  padding: 0 20px 25px;
  width: 100%;
  box-sizing: border-box;
}

.drop .drop_content .download_type:nth-of-type(1n + 2) {
  padding-top: 25px;
}

.drop .drop_content .download_type a {
  display: block;
  color: #000;
}

.drop .drop_content .download_type a:hover img {
  opacity: 0.5;
}

.drop .drop_content .download_type a:hover .text_group {
  text-decoration: underline;
}

.drop .drop_content .download_type a .text_group {
  width: 100%;
  display: table-cell;
  padding-right: 20px;
}

.drop .drop_content .download_type a .img_group {
  vertical-align: middle;
  display: table-cell;
}

.drop .drop_content .download_type a .img_group a:hover {
  opacity: 0.5;
}

.drop .drop_content.bg_brop {
  padding: 80px 50px;
  border: 1px solid #e7e7e7;
  border-top: none;
}

.drop .drop_content3 {
  display: none;
}

.drop .drop_content3 .download_type {
  display: table;
  padding: 0 20px 25px;
  width: 100%;
}

.drop .drop_content3 .download_type:nth-of-type(1n + 2) {
  padding-top: 25px;
}

.drop .drop_content3 .download_type .text_group {
  width: 90%;
  display: table-cell;
  padding-right: 20px;
}

.drop .drop_content3 .download_type .img_group {
  vertical-align: middle;
  display: table-cell;
}

.drop .drop_content3 .download_type .img_group a:hover {
  opacity: 0.5;
}

.drop .drop_content3.bg_brop {
  padding: 70px 20px;
  border: 1px solid #e7e7e7;
  border-top: none;
}

.drop .drop_content3 a {
  color: #000;
}

.drop .drop_content3 a:hover img {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.drop .drop_content3 a:hover p {
  text-decoration: underline;
}

.drop:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .drop .drop_type2 {
    padding: 30px 10px;
  }
  .drop .drop_type2 p {
    font-size: 20px;
  }
  .drop .drop_type2:after {
    bottom: -20px;
    width: 40px;
    height: 40px;
  }
  .drop .drop_content .download_type,
  .drop .drop_content3 .download_type {
    display: inherit;
    padding: 0 0px 20px;
  }
  .drop .drop_content .download_type:nth-of-type(1n + 2),
  .drop .drop_content3 .download_type:nth-of-type(1n + 2) {
    padding-top: 20px;
  }
  .drop .drop_content .download_type .text_group,
  .drop .drop_content3 .download_type .text_group {
    width: auto;
    display: inherit;
    padding-right: 0;
  }
  .drop .drop_content .download_type .img_group,
  .drop .drop_content3 .download_type .img_group {
    vertical-align: middle;
    display: inherit;
    margin-top: 20px;
  }
  .drop .drop_content .download_type .img_group img,
  .drop .drop_content3 .download_type .img_group img {
    width: 35px;
    height: auto;
  }
  .drop .drop_content.bg_brop,
  .drop .drop_content3.bg_brop {
    padding: 40px 10px;
  }
  .drop .more_btn {
    margin-top: 20px;
  }
}
.parts_accessorys_serect {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url(/asset/images/common/option_arr.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 14px 7px;
  box-sizing: border-box;
}

.pdfmodelselect {
  width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .pdfmodelselect {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
  }
}
.pdftitle_box {
  padding: 0 0 30px;
  width: 100%;
}

.pdftitle_box:nth-of-type(1n + 2) {
  padding-top: 30px;
}

.pdftitle_box a {
  display: block;
  display: table;
  color: #000;
}

.pdftitle_box a:hover {
  text-decoration: underline;
}

.pdftitle_box a:hover img {
  opacity: 0.5;
}

.pdftitle_box a:hover .text_group {
  opacity: 1;
}

.pdftitle_box a .text_group {
  width: 100%;
  display: table-cell;
  vertical-align: top;
}

.pdftitle_box a .img_group {
  vertical-align: middle;
  margin-right: 20px;
  display: block;
}

.pdftitle_box a .img_group:hover {
  opacity: 0.5;
}

.pdftitle_box a .datayear {
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 1023px) {
  .pdftitle_box .img_group {
    vertical-align: middle;
    margin-right: 20px;
    display: table-cell;
    padding-right: 10px;
  }
  .pdftitle_box .f24 {
    font-size: 18px;
  }
}
.f_selectmodel {
  width: 760px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
  .f_selectmodel {
    display: inherit;
    width: auto;
  }
}
.dealer_quote_select .page_car_list {
  overflow: hidden;
}

.dealer_quote_select .page_car_list .carItem {
  float: left;
  text-align: center;
  width: 33.33333%;
  margin-top: 8px;
  margin-bottom: 8px;
}

.dealer_quote_select .page_car_list .carItem a {
  color: #000;
  display: block;
  padding: 25px 0;
  border: 1px solid #fff;
}

.dealer_quote_select .page_car_list .carItem a:hover {
  border: 1px solid #d8d8d8;
  background: #f9f9f9;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  ransition: all 0.1s;
}

.dealer_quote_select .page_car_list .carItem a dl dt img {
  height: 55px;
  width: auto;
}

.dealer_quote_select .page_car_list .carItem a dl dd {
  padding-top: 5px;
}

.dealer_quote_select .page_car_list .carItem a dl dd .car_name {
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "open_b";
}

.dealer_quote_select .page_car_list .carItem a dl dd .car_price {
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .dealer_quote_select .page_car_list {
    overflow: hidden;
    background-color: #fff;
  }
  .dealer_quote_select .page_car_list .carItem {
    display: inline-block;
    text-align: center;
    width: 49.3%;
    margin: 15px 0 !important;
    float: inherit;
  }
  .dealer_quote_select .page_car_list .carItem a dl dt img {
    width: auto;
    height: 45px;
  }
  .dealer_quote_select .page_car_list .carItem a dl dd {
    padding-top: 5px;
  }
  .dealer_quote_select .page_car_list .carItem a dl dd .car_name {
    font-size: 14px;
  }
  .dealer_quote_select .page_car_list .carItem a dl dd .car_price {
    font-size: 12px;
  }
}
.download_select .page_car_list {
  overflow: hidden;
}

.download_select .page_car_list .carItem {
  float: left;
  text-align: center;
  width: 33.33333%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.download_select .page_car_list .carItem dl {
  padding: 25px 0;
}

.download_select .page_car_list .carItem dl dt img {
  height: 60px;
  width: auto;
}

.download_select .page_car_list .carItem dl dd {
  padding-top: 5px;
}

.download_select .page_car_list .carItem dl dd .car_name {
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "open_b";
}

.download_select .page_car_list .carItem dl dd .car_price {
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .download_select .page_car_list {
    overflow: hidden;
    background-color: #fff;
  }
  .download_select .page_car_list .carItem {
    display: inline-block;
    text-align: center;
    width: 49.3%;
    margin: 15px 0 !important;
    float: inherit;
  }
  .download_select .page_car_list .carItem dl {
    padding: 25px 5px;
  }
  .download_select .page_car_list .carItem dl dt img {
    width: auto;
    height: 45px;
  }
  .download_select .page_car_list .carItem dl dd {
    padding-top: 5px;
  }
  .download_select .page_car_list .carItem dl dd .car_name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .download_select .page_car_list .carItem dl dd .car_price {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.payment_calculator .interestrate,
.payment_calculator .mydownpayment,
.payment_calculator .interestrate_type2,
.payment_calculator .mydownpayment_type2 {
  width: 500px;
  border: none;
  padding: 10px;
  border-radius: 4px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.payment_calculator .modelselect {
  width: 500px;
  margin: 0 auto;
}

.payment_calculator .rate_icon {
  position: relative;
}

.payment_calculator .rate_icon span {
  position: absolute;
  top: 50%;
  margin-top: -7px;
}

.payment_calculator .rate_icon span.rateparsent {
  right: 10px;
}

.payment_calculator .rate_icon span.raterate {
  left: 10px;
}

.payment_calculator .interestrate {
  padding-right: 20px;
}

.payment_calculator .mydownpayment,
.payment_calculator .mydownpayment_type2 {
  padding-left: 25px;
}

.payment_calculator_result {
  display: none;
  width: 1024px;
  margin: 0 auto 50px;
  text-align: center;
}

.payment_calculator_result .payment_calculator_result_box {
  width: 500px;
  padding: 40px 50px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 20px 20px 0;
  text-align: left;
  color: #425368;
}

.payment_calculator_result .payment_calculator_result_box:nth-of-type(2n) {
  margin-right: 0;
}

.payment_calculator_result .payment_calculator_result_box dl {
  display: table;
}

.payment_calculator_result .payment_calculator_result_box dl dt {
  font-family: "open_b";
  padding: 23px 35px;
  background-color: #fff;
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  border-radius: 37px;
}

.payment_calculator_result .payment_calculator_result_box dl dt span {
  font-size: 36px;
  margin-right: 4px;
}

.payment_calculator_result .payment_calculator_result_box dl dd {
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
  width: 250px;
  word-wrap: break-word;
}

.payment_calculator_result .payment_calculator_result_box dl dd .price {
  font-family: "open_b";
  font-size: 24px;
  margin-bottom: 10px;
}

.payment_calculator_result .payment_calculator_result_box dl dd .amount_price {
  font-family: "open_l";
  font-size: 16px;
}

@media screen and (max-width: 1023px) {
  .payment_calculator .modelselect {
    width: 100%;
    margin: 0 auto;
  }
  .payment_calculator_result {
    width: auto;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 0 10px;
  }
  .payment_calculator_result .payment_calculator_result_box {
    width: auto;
    margin: 0 auto 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: inline-block;
    text-align: left;
    max-width: 490px;
  }
  .payment_calculator_result .payment_calculator_result_box:nth-of-type(2n) {
    margin-right: 0;
  }
  .payment_calculator_result .payment_calculator_result_box dl {
    display: table;
  }
  .payment_calculator_result .payment_calculator_result_box dl dt {
    font-family: "open_b";
    padding: 10px 10px;
    background-color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    border-radius: 18px;
  }
  .payment_calculator_result .payment_calculator_result_box dl dt span {
    font-size: 28px;
    margin-right: 4px;
  }
  .payment_calculator_result .payment_calculator_result_box dl dd {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    width: 180px;
    word-wrap: break-word;
  }
  .payment_calculator_result .payment_calculator_result_box dl dd .price {
    font-family: "open_b";
    font-size: 18px;
    margin-bottom: 6px;
  }
  .payment_calculator_result .payment_calculator_result_box dl dd .amount_price {
    font-family: "open_l";
    font-size: 14px;
  }
}
.model {
  padding: 30px 25px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
}

.model .model_price {
  margin-bottom: 15px;
}

.model .model_price span {
  font-size: 16px;
  font-weight: bold;
}

.model .model_title {
  font-family: "open_b";
  font-size: 16px;
  margin-bottom: 10px;
}

.model ul {
  line-height: 22px;
  margin: 0 0 20px 20px;
}

.model ul li {
  list-style-type: disc;
}

.model .model_detail {
  display: table;
}

.model .model_detail dt {
  display: table-cell;
  vertical-align: middle;
}

.model .model_detail dt img {
  width: auto;
  height: auto;
  max-width: 275px;
}

.model .model_detail dd {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
}

.model .model_detail dd .model_price {
  font-size: 16px;
}

.model .model_detail dd .midel_speck {
  font-size: 14px;
}

.model .model_detail dd .btn_list {
  text-align: left;
}

.model.lay_block_2 {
  margin-right: 15px;
}

.model.lay_block_2:nth-of-type(2n) {
  margin-left: 15px;
  margin-right: 0;
}

.model.lay_block_1 {
  margin: 0 auto;
  width: 540px;
}

.model_textnone {
  text-align: center;
}

.model_textnone .model_detail {
  display: block;
}

.model_textnone .model_detail dt {
  display: inherit;
  margin-bottom: 10px;
}

.model_textnone .model_detail dd {
  display: inherit;
  padding-left: 0px;
}

.model_textnone .model_detail dd .model_price {
  font-size: 16px;
}

@media screen and (max-width: 1023px) {
  .model {
    padding: 20px 15px;
  }
  .model .model_detail {
    display: inherit;
  }
  .model .model_detail dt {
    display: inherit;
    text-align: center;
  }
  .model .model_detail dt img {
    width: auto;
    height: auto;
    max-width: 80%;
  }
  .model .model_detail dd {
    display: inherit;
    vertical-align: middle;
    padding-left: 0;
    margin-top: 10px;
  }
  .model .model_detail dd .model_price {
    font-size: 14px;
  }
  .model .model_detail dd .midel_speck {
    font-size: 12px;
  }
  .model .model_detail dd .btn_list {
    text-align: center;
  }
  .model.lay_block_2 {
    margin-right: auto;
  }
  .model.lay_block_2:nth-of-type(2n) {
    margin-left: auto;
    margin-right: auto;
  }
  .model.lay_block_1 {
    width: auto;
    margin: 0 auto;
    max-width: 490px;
  }
  .loyblock_sp_lay {
    margin-top: 40px;
  }
}
/*----------------------------------------------*/
.model2 {
  box-sizing: border-box;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  padding: 22px 0 0px 0px;
}

.model2 + .model2 {
  border-top: 0px;
}

.model2_inner {
  display: flex;
  padding-left: 30px;
}

.model2_block {
  box-sizing: border-box;
}

.model2_block:nth-child(1) {
  width: 28%;
}

.model2_block:nth-child(2) {
  width: 28%;
  padding-right: 20px;
}

.model2 .model2_title {
  font-family: "open_b";
  font-size: 18px;
  margin-bottom: 12px;
}

.model2 .model2_price span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.model2_speck {
  margin-left: 1.5em;
}

.model2_speck li {
  list-style-type: disc;
}

.model2_speck li + li {
  margin-top: 6px;
}

.model2_btn {
  text-align: right;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-right: 33px;
}

.model2_btn span {
  cursor: pointer;
  color: #0079c0;
  font-size: 15px;
}

.model2_btn span:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #0079c0;
  border-bottom: 2px solid #0079c0;
  transform: translateY(-2px) rotate(45deg);
  vertical-align: middle;
  margin-left: 12px;
}

.model2_btn.on span:after {
  transform: translateY(0px) rotate(-135deg);
}

.model2_detail {
  display: none;
  position: relative;
  background: #f2f2f2;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
  padding: 34px 0 38px 0;
}

.model2_detail:after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 10px 6px;
  border-color: transparent transparent #e2e2e2 transparent;
}

.model2_detail_list table {
  display: block;
  width: 100%;
}

.model2_detail_list tbody {
  display: flex;
  padding: 0 15%;
  justify-content: space-between;
}

.model2_detail_list tr {
  width: 20%;
  min-height: 0%;
  display: block;
}

.model2_detail_list td {
  display: block;
  vertical-align: top;
  text-align: center;
  line-height: 1.4;
}

.model2_detail_img {
  vertical-align: middle;
}

.model2_detail_title {
  font-weight: bold;
  margin-top: 18px;
}

.model2_detail_text {
  margin-top: 22px;
}

.model2_detail_link {
  text-align: center;
  margin-top: 30px;
}

.model2_detail_link a {
  color: #0079c0;
  font-size: 14px;
  letter-spacing: 1px;
}

.model2_detail_link a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #0079c0;
  border-bottom: 2px solid #0079c0;
  transform: rotate(-45deg);
  vertical-align: middle;
  margin-left: 8px;
}

@media screen and (max-width: 1023px) {
  #Model.section_inner {
    margin-left: 0;
    margin-right: 0;
  }
  .model2 {
    padding: 16px 0 0px 0px;
  }
  .model2_inner {
    display: block;
    padding-left: 20px;
  }
  .model2_block:nth-child(1) {
    width: auto;
  }
  .model2_block:nth-child(2) {
    width: auto;
    margin-top: 15px;
    padding-right: 0;
  }
  .model2_block:nth-child(3) {
    margin-top: 6px;
  }
  .model2 .model2_title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .model2 .model2_price {
    font-size: 12px;
  }
  .model2 .model2_price span {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.5px;
  }
  .model2_speck li {
    font-size: 12px;
    line-height: 1.7;
  }
  .model2_speck li + li {
    margin-top: 6px;
  }
  .model2_btn {
    padding-right: 20px;
  }
  .model2_btn span {
    font-size: 12px;
  }
  .model2_detail {
    padding: 4px 0 19px 0;
  }
  .model2_detail:after {
    right: 18px;
  }
  .model2_detail_list {
    padding: 0 15px;
  }
  .model2_detail_list table {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .model2_detail_list tbody {
    display: table;
    width: 100%;
    box-sizing: border-box;
  }
  .model2_detail_list tr {
    display: table-row;
    width: 100%;
    border-bottom: 1px solid #e7e5e4;
    box-sizing: border-box;
  }
  .model2_detail_list td {
    vertical-align: middle;
    font-size: 12px;
    text-align: left;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.6;
    display: table-cell;
  }
  .model2_detail_title {
    text-align: left;
  }
  .model2_detail_text {
    text-align: left;
  }
  .model2_detail_link {
    margin-top: 15px;
  }
  .model2_detail_link a {
    font-size: 12px;
  }
}
/*----------------------------------------------*/
.warranty {
  background: #f9f9f9;
  padding: 36px 0 42px 0;
  margin-bottom: 20px;
}

.warranty_inner {
  display: flex;
  justify-content: center;
}

.warranty_block {
  text-align: center;
}

.warranty_block:nth-child(1) {
  width: 285px;
}

.warranty_block:nth-child(2) {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warranty_block:nth-child(3) {
  width: 285px;
}

.warranty_title {
  font-size: 24px;
  font-family: "open_b";
  font-weight: bold;
}

.warranty_panel {
  background: #fff;
  margin-top: 15px;
  padding: 25px 0 25px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.warranty_panel div {
  font-size: 28px;
  font-family: "open_l";
  line-height: 1;
}

.warranty_panel div:nth-child(2) {
  width: 204px;
  height: 1px;
  background: #000;
  position: relative;
  margin: 17px 0;
}

.warranty_panel div:nth-child(2) span {
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-1.4em) translateY(-0.5em);
  background: #fff;
  line-height: 1;
  letter-spacing: 1px;
  padding: 0 10px;
  font-weight: bold;
}

.warranty_block p {
  font-size: 16px;
  margin-top: 10px;
}

.warranty_icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.warranty_icon:before,
.warranty_icon:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
}

.warranty_icon:before {
  transform: translateY(-1px) rotate(0);
}

.warranty_icon:after {
  transform: translateY(-1px) rotate(90deg);
}

.warranty_link {
  text-align: center;
  margin-top: 20px;
}

.warranty_link a {
  color: #0079c0;
  font-size: 14px;
  letter-spacing: 1px;
}

.warranty_link a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #0079c0;
  border-bottom: 2px solid #0079c0;
  transform: rotate(-45deg);
  vertical-align: middle;
  margin-left: 8px;
}

@media screen and (max-width: 1023px) {
  #Warranty {
    border-bottom: 0px;
    padding-bottom: 0;
  }
  #Warranty .section_inner {
    margin: 0;
  }
  #Warranty h2 {
    font-size: 20px;
  }
  .warranty {
    padding: 30px 0 30px 0;
    margin-bottom: 0px;
  }
  .warranty_inner {
    padding: 0 0px;
  }
  .warranty_block:nth-child(1) {
    width: 41%;
  }
  .warranty_block:nth-child(2) {
    width: 8%;
  }
  .warranty_block:nth-child(3) {
    width: 41%;
  }
  .warranty_title {
    font-size: 12px;
    letter-spacing: -0.2px;
  }
  .warranty_panel {
    padding: 10px 15px;
  }
  .warranty_panel div:nth-child(2) {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
  .warranty_panel div:nth-child(2) span {
    font-size: 10px;
    padding: 0 5px;
  }
  .warranty_panel div {
    font-size: 12px;
  }
  .warranty_icon {
    width: 14px;
    height: 14px;
  }
  .warranty_icon:before,
  .warranty_icon:after {
    width: 14px;
    height: 1px;
  }
  .warranty_block p {
    font-size: 12px;
    margin-top: 5px;
  }
  .warranty_link a {
    font-size: 12px;
  }
}
/*----------------------------------------------*/
.link_arrow {
  text-align: center;
  margin-top: 20px;
}

.link_arrow a {
  color: #0079c0;
  font-size: 14px;
  letter-spacing: 1px;
}

.link_arrow a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #0079c0;
  border-bottom: 2px solid #0079c0;
  transform: rotate(-45deg);
  vertical-align: middle;
  margin-left: 8px;
}

@media screen and (max-width: 1023px) {
  .link_arrow a {
    font-size: 12px;
  }
}
/*----------------------------------------------*/
.comparator_choose_box .itemb2 {
  height: 140px;
}

.comparator_choose_box .model {
  border: 3px solid #fff;
}

.comparator_choose_box .model.choose_box_on {
  border: 3px solid #425368;
}

.comparator_choose_box .model .comparatorselect {
  margin-top: 20px;
}

.comparator_choose_box .choose_box_on {
  border: 3px solid #425368;
}

.comparator_choose_box .choose_box_on .model_title {
  font-family: "open_l";
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.model_specifications_table {
  width: 100%;
}

.model_specifications_table tr:nth-child(odd) {
  background: #fff;
}

.model_specifications_table tr:nth-child(even) {
  background: #dadada;
}

.model_specifications_table tr .title {
  padding: 15px 10px;
}

.model_specifications_table tr td {
  font-weight: bold;
  width: 33.33333%;
  padding: 14px;
  border-left: 3px solid #ffffff;
  text-align: center;
}

.model_specifications_table tr td.spec_ttl {
  background-color: #2a2a2a;
  color: #fff;
  padding: 14px;
}

.model_specifications_table tr td:nth-of-type(1) {
  border-left: 0;
}

@media screen and (max-width: 1023px) {
  .comparator_choose_box .itemb2 {
    height: auto;
  }
}
.lay_block .block_link_type {
  margin-right: 0;
}

.lay_block .block_link_type:nth-of-type(2n) {
  margin-left: 20px;
}

.lay_block .block_link_type:nth-of-type(1n + 3) {
  margin-top: 20px;
}

.lay_block .block_link_type a {
  display: block;
  background-color: #ebebeb;
  text-align: center;
  font-size: 26px;
  font-family: "open_b";
  color: #000;
  padding: 70px 0;
  background-image: url(/asset/images/common/icon_link_type.png);
  background-repeat: no-repeat;
  background-position: 450px 123px;
  background-size: 30px;
}

.lay_block .block_link_type a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1023px) {
  .lay_block .block_link_type {
    margin: 0 auto;
  }
  .lay_block .block_link_type:nth-of-type(2n) {
    margin-left: auto;
  }
  .lay_block .block_link_type:nth-of-type(1n + 3) {
    margin-top: 0;
  }
  .lay_block .block_link_type:nth-of-type(1n + 2) {
    margin-top: 20px;
  }
  .lay_block .block_link_type a {
    font-size: 20px;
    color: #000;
    padding: 35px 0;
    background-image: url(/asset/images/common/icon_link_type.png);
    background-repeat: no-repeat;
    background-position: 98.5% 90%;
    background-size: 20px;
  }
}
.item_options2 .options_title {
  font-size: 18px;
  margin-bottom: 20px;
}

.item_options2 .options_inner {
  padding: 20px 0;
}

.item_options2 .options_inner:nth-of-type(1) {
  border-top: 1px solid #e2e2e2;
}

.item_options2 .options_inner.highlight {
  background: #fef2f4;
}

.item_options2 .options_inner .option_wrap {
  display: table;
}

.item_options2 .options_inner .option_wrap .option_title,
.item_options2 .options_inner .option_wrap .option_table {
  display: table-cell;
  vertical-align: middle;
}

.item_options2 .options_inner .option_wrap .option_title {
  box-sizing: border-box;
  width: 270px;
  font-size: 14px;
  padding-left: 20px;
}

.item_options2 .options_inner .option_wrap .option_table {
  overflow: hidden;
}

.item_options2 .options_inner .option_wrap .option_table div {
  width: 355px;
  float: left;
  text-align: center;
  padding: 20px 0 20px;
}

.item_options2 .options_inner .option_wrap .option_table div:nth-of-type(1n + 2) {
  margin-left: 15px;
}

.item_options2 .options_inner .option_wrap .option_table div.highlight {
  background-color: #425368;
  color: #fff;
}

.item_options2:nth-of-type(1n + 2) {
  margin-top: 40px;
}

@media screen and (max-width: 1023px) {
  .item_options2 {
    padding-left: 10px;
  }
  .item_options2 .options_title {
    font-size: 16px;
  }
  .item_options2 .options_inner {
    padding: 25px 0;
  }
  .item_options2 .options_inner .option_wrap {
    display: inherit;
  }
  .item_options2 .options_inner .option_wrap .option_title,
  .item_options2 .options_inner .option_wrap .option_table {
    display: inherit;
    vertical-align: middle;
  }
  .item_options2 .options_inner .option_wrap .option_title {
    font-size: 14px;
    width: auto;
    font-family: "open_b";
    text-align: center;
    padding-left: 0;
    padding-bottom: 10px;
  }
  .item_options2 .options_inner .option_wrap .option_table {
    overflow: hidden;
    display: table;
    width: 100%;
  }
  .item_options2 .options_inner .option_wrap .option_table div {
    width: 50%;
    float: inherit;
    display: table-cell;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
  }
  .item_options2 .options_inner .option_wrap .option_table div.highlight:nth-of-type(1) {
    border-right: 1px solid #e2e2e2;
  }
  .item_options2 .options_inner .option_wrap .option_table div:nth-of-type(1n + 2) {
    margin-left: 0;
  }
  .item_options2 .options_inner .option_wrap .option_table div:nth-of-type(1n + 3) {
    display: none;
  }
  .item_options2:nth-of-type(1n + 2) {
    margin-top: 40px;
  }
}
.tag_type {
  display: table;
}

.tag_type .tag1,
.tag_type .tag2,
.tag_type .tag3 {
  display: table-cell;
  vertical-align: middle;
}

.tag_type .tag1 img,
.tag_type .tag2 img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.tag_type .tag2 {
  padding: 0 60px;
}

.tag_type .tag3 {
  width: 410px;
  word-break: keep-all;
}

.tag_type .tag3 .tag_title {
  font-size: 26px;
  margin-bottom: 10px;
}

.tag_type .tag3 .tag_description {
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 20px;
}

.tag_type .tag3 .btn_list {
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .tag_type {
    display: inherit;
  }
  .tag_type .tag1,
  .tag_type .tag2,
  .tag_type .tag3 {
    display: inherit;
    vertical-align: middle;
  }
  .tag_type .tag1,
  .tag_type .tag2 {
    text-align: center;
    margin-bottom: 10px;
  }
  .tag_type .tag1 img,
  .tag_type .tag2 img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .tag_type .tag2 {
    padding: 0;
  }
  .tag_type .tag3 {
    width: 100%;
  }
  .tag_type .tag3 .tag_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .tag_type .tag3 .tag_description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .tag_type .tag3 .btn_list {
    text-align: center;
  }
}
.model_select {
  display: table;
}

.model_select dt,
.model_select dd {
  display: table-cell;
  vertical-align: middle;
}

.model_select dt {
  font-size: 24px;
  padding-right: 45px;
}

.model_select dd .float_left {
  width: 185px;
}

.model_select dd .float_left:nth-of-type(1n + 2) {
  margin-left: 5px;
}

@media screen and (max-width: 1023px) {
  .model_select {
    display: block;
    padding: 30px 0;
  }
  .model_select dt,
  .model_select dd {
    display: block;
    vertical-align: middle;
  }
  .model_select dt {
    font-size: 18px;
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .model_select dd .float_left {
    width: 49%;
    max-width: 490px;
    margin: 0 auto;
    text-align: center;
  }
  .model_select dd .float_left:nth-of-type(1n + 2) {
    margin-left: 0;
  }
  .model_select dd .float_left:nth-of-type(2n + 2) {
    margin-left: 2%;
  }
  .model_select dd .float_left:nth-of-type(1n + 3) {
    display: none;
  }
}
.modelview {
  text-align: center;
  margin-top: 15px;
}

.modelview img {
  width: auto;
  height: auto;
  max-height: 35px;
}

.modelview .modelname {
  margin-top: 10px;
}

.item_options {
  border-bottom: 1px solid #e2e2e2;
}

.item_options + .item_options {
  margin-top: 40px;
}

.item_options .options_title {
  font-size: 18px;
  margin-bottom: 20px;
}

.item_options .options_inner .option_wrap {
  display: flex;
  align-items: center;
  padding: 20px 0 20px 20px;
  border-top: 1px solid #e2e2e2;
}

.item_options .options_inner .option_wrap.diff {
  background: #fef2f4;
}

.item_options .options_inner .option_wrap .option_title {
  font-size: 14px;
  width: 270px;
}

.item_options .options_inner .option_wrap .option_table {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}

.item_options .options_inner .option_wrap .option_table div {
  width: 170px;
  text-align: center;
  padding: 20px 0;
}

.spec_btn_inner {
  display: none;
}

@media screen and (max-width: 1023px) {
  .modelview {
    text-align: center;
    margin-top: 15px;
  }
  .modelview img {
    width: auto;
    height: 40px;
    max-height: inherit;
  }
  .modelview .modelname {
    margin-top: 20px;
  }
  .item_options .options_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .item_options .options_inner .option_wrap {
    padding-left: 10px;
  }
  .item_options .options_inner .option_wrap .option_title {
    font-size: 14px;
    width: 150px;
  }
  .item_options .options_inner .option_wrap .option_table {
    width: calc(100% - 150px);
  }
  .item_options .options_inner .option_wrap .option_table div {
    width: 70px;
    word-wrap: break-word;
  }
  .item_options .options_inner .option_wrap .option_table div:nth-of-type(1n + 3) {
    display: none;
  }
  .spec_position {
    position: relative;
  }
  .spec_position .spec_btn_inner {
    display: block;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .spec_position .spec_btn_inner .spec_btn {
    position: absolute;
    display: inline-block;
    pointer-events: auto;
    border: none;
    background-color: inherit;
    opacity: 1;
    text-indent: -9999px;
    padding: 6px 16px;
  }
  .spec_position .spec_btn_inner .spec_btn.on {
    pointer-events: none;
    opacity: 0.5;
  }
  .spec_position .spec_btn_inner .spec_btn.spec_prev {
    left: 0;
    background-image: url(/asset/images/common/spec_prev.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px auto;
    display: none;
  }
  .spec_position .spec_btn_inner .spec_btn.spec_next {
    right: 0;
    background-image: url(/asset/images/common/spec_next.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px auto;
    display: none;
  }
}
.form_dealer_quote .form_lay_block_3 ul li {
  width: 33%;
  display: inline-block;
  margin-bottom: 22px;
}

.form_dealer_quote .form_lay_block_4 ul li {
  width: 24%;
  display: inline-block;
  margin-bottom: 30px;
}

.form_dealer_quote .form_color_btn_box ul li {
  margin-bottom: 52px;
}

.form_dealer_quote .form_color_btn_box ul li input[type=radio] {
  display: none;
}

.form_dealer_quote .form_color_btn_box ul li .selectImg {
  margin-right: 10px;
}

.form_dealer_quote .form_color_btn_box ul li input[type=radio] + .selectImg {
  padding: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
}

.form_dealer_quote .form_color_btn_box ul li input[type=radio]:checked + .selectImg {
  padding: 5px;
  border-radius: 50%;
  border: 1px solid #425368;
  transition: all 0.3s;
}

.form_dealer_quote .form_color_btn_box ul li .form_label {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  word-break: break-all;
  width: 260px;
  cursor: pointer;
}

.form_dealer_quote .field ul li input[type=checkbox] {
  display: none;
}

.form_dealer_quote .field ul li .check_price {
  display: block;
}

.form_dealer_quote .field ul li .check {
  position: relative;
  display: inline-block;
  padding: 0 0 0 42px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}

.form_dealer_quote .field ul li .check:after {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #425368;
  border-radius: 6px;
  content: "";
}

.form_dealer_quote .field ul li .check:before {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 17px;
  display: block;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  content: "";
  opacity: 0;
  background-image: url(/asset/images/common/check_icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
}

.form_dealer_quote .field ul li input[type=checkbox]:checked + .check:before {
  opacity: 1;
}

.form_dealer_quote .checkbox2 ul li input[type=radio],
.form_dealer_quote .checkbox2 ul li input[type=checkbox] {
  display: none;
}

.form_dealer_quote .checkbox2 ul li .check_price {
  display: block;
}

.form_dealer_quote .checkbox2 ul li .check {
  position: relative;
  display: inline-block;
  padding: 0 0 0 42px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}

.form_dealer_quote .checkbox2 ul li .check:hover:after {
  border-color: #425368;
}

.form_dealer_quote .checkbox2 ul li .check:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #425368;
  margin: auto;
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
}

.form_dealer_quote .checkbox2 ul li [type=checkbox] + .check:after {
  border-radius: 6px;
}

.form_dealer_quote .checkbox2 ul li [type=radio] + .check:after {
  border-radius: 100%;
}

.form_dealer_quote .checkbox2 ul li .check:before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.form_dealer_quote .checkbox2 ul li [type=radio] + .check:before {
  width: 10px;
  height: 10px;
  background: #425368;
  border-radius: 100%;
  left: 20px;
}

.form_dealer_quote .checkbox2 ul li [type=checkbox] + .check:before {
  width: 16px;
  height: 16px;
  background-image: url(/asset/images/common/check_icon2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  left: 17px;
}

.form_dealer_quote .checkbox2 ul li [type=radio]:checked + .check:before,
.form_dealer_quote .checkbox2 ul li [type=checkbox]:checked + .check:before {
  opacity: 1;
}

.privacy_check input[type=checkbox] {
  display: none;
}

.privacy_check .check_price {
  display: block;
}

.privacy_check .check {
  position: relative;
  display: inline-block;
  padding: 0 0 0 42px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}

.privacy_check .check:hover:after {
  border-color: #425368;
}

.privacy_check .check:after {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #425368;
  border-radius: 6px;
  content: "";
}

.privacy_check .check:before {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 17px;
  display: block;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  content: "";
  opacity: 0;
  background-image: url(/asset/images/common/check_icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
}

.privacy_check input[type=checkbox]:checked + .check:before {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .form_dealer_quote .f24 {
    font-size: 18px;
  }
  .form_dealer_quote .form_lay_block_3 ul li {
    width: 100%;
    display: inline-block;
  }
  .form_dealer_quote .form_lay_block_4 ul li {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
  }
  .form_dealer_quote .form_color_btn_box ul li {
    margin-bottom: 20px;
  }
  .form_dealer_quote .form_color_btn_box ul li .selectImg {
    width: 40px;
    height: auto;
  }
  .form_dealer_quote .form_color_btn_box ul li .form_label {
    font-size: 16px;
    width: 100%;
  }
  .form_dealer_quote .field ul li input[type=checkbox] {
    display: none;
  }
  .form_dealer_quote .field ul li .check_price {
    display: block;
  }
  .form_dealer_quote .field ul li .check {
    position: relative;
    display: inline-block;
    padding: 0 0 0 42px;
    vertical-align: middle;
    cursor: pointer;
    line-height: 1.4;
  }
  .form_dealer_quote .field ul li .check:after {
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 2px solid #425368;
    border-radius: 6px;
    content: "";
  }
  .form_dealer_quote .field ul li .check:before {
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 17px;
    display: block;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    content: "";
    opacity: 0;
    background-image: url(/asset/images/common/check_icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
  }
  .form_dealer_quote .field ul li input[type=checkbox]:checked + .check:before {
    opacity: 1;
  }
  .form_dealer_quote .checkbox2 ul li input[type=radio] {
    display: none;
  }
  .form_dealer_quote .checkbox2 ul li .check:after {
    width: 12px;
    height: 12px;
  }
  .form_dealer_quote .checkbox2 ul li [type=radio] + .check:before {
    width: 8px;
    height: 8px;
    left: 19px;
  }
  .form_dealer_quote .checkbox2 ul li .check_price {
    display: block;
  }
  .form_dealer_quote .checkbox2 ul li .check {
    position: relative;
    display: inline-block;
    padding: 0 0 0 42px;
    vertical-align: middle;
    cursor: pointer;
    line-height: 1.4;
  }
  .form_dealer_quote .checkbox2 ul li .check:hover:after {
    border-color: #425368;
  }
  .form_dealer_quote .checkbox2 ul li input[type=checkbox]:checked + .check:before {
    opacity: 1;
  }
  .privacy_check .check {
    padding: 0 0 0 26px;
  }
  .privacy_check .check:after {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 2px solid #425368;
    border-radius: 6px;
    content: "";
  }
  .privacy_check .check:before {
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 2px;
    display: block;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    content: "";
    opacity: 0;
    background-image: url(/asset/images/common/check_icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
  }
  .formdealer_box .find_btn {
    margin: 5px 0 8px 0;
  }
}
.table_lay {
  padding: 0 95px;
}

.table_lay .table_title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.table_lay .table_tr {
  padding: 25px 0;
  display: table;
  width: 100%;
}

.table_lay .table_tr .th {
  font-size: 16px;
  color: #000;
  display: table-cell;
  width: 360px;
  line-height: 1.6;
}

.table_lay .table_tr .td {
  font-size: 14px;
  color: #000;
  display: table-cell;
  line-height: 1.6;
}

.table_lay .table_tr .td p:nth-of-type(1n + 2) {
  margin-top: 45px;
}

.table_lay .table_tr:nth-of-type(1n + 2) {
  border-top: 1px dotted #bfbfbf;
}

@media screen and (max-width: 1023px) {
  .table_lay {
    padding: 0;
  }
  .table_lay .table_title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .table_lay .table_tr {
    padding: 20px 0px;
    display: block;
  }
  .table_lay .table_tr .th {
    font-size: 15px;
    line-height: 24px;
    color: #000;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .table_lay .table_tr .td {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    display: block;
  }
  .table_lay .table_tr .td p:nth-of-type(1n + 2) {
    margin-top: 10px;
  }
}
.map {
  height: 400px;
}

.bg_link_lists {
  background-color: #f2f2f2;
}

.bg_link_lists .bg_link_lists_inner {
  position: relative;
  width: 315px;
  margin: 0 auto;
  padding: 16px 0;
}

.bg_link_lists .bg_link_lists_inner ul {
  text-align: center;
}

.bg_link_lists .bg_link_lists_inner ul li {
  cursor: pointer;
}

.bg_link_lists .bg_link_lists_inner ul li.slick-current,
.bg_link_lists .bg_link_lists_inner ul li:hover {
  font-weight: bold;
  text-shadow: 0px 0px 0px #000000;
}

.bg_link_lists .bg_link_lists_inner .arw_prev,
.bg_link_lists .bg_link_lists_inner .arw_next {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  width: 15px;
  height: 18px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.bg_link_lists .bg_link_lists_inner .arw_prev {
  left: 0;
  background-image: url(/asset/images/news/arw_prev.png);
}

.bg_link_lists .bg_link_lists_inner .arw_next {
  right: 0;
  background-image: url(/asset/images/news/arw_next.png);
}

.yearcontent .table_style01 .item_plus a {
  color: #000;
}

.yearcontent .table_style01 .item_plus a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  .bg_link_lists .bg_link_lists_inner {
    width: auto;
  }
  .bg_link_lists .bg_link_lists_inner ul {
    text-align: center;
  }
  .bg_link_lists .bg_link_lists_inner ul li {
    display: inline-block;
    padding: 0 7px;
  }
  .bg_link_lists .bg_link_lists_inner ul li:hover {
    font-weight: normal;
    text-shadow: inherit;
  }
  .bg_link_lists .bg_link_lists_inner .arw_prev {
    left: 3px;
  }
  .bg_link_lists .bg_link_lists_inner .arw_next {
    right: 3px;
  }
  .yearcategory li.slick-current,
  .yearcategorytype2 li.slick-current {
    font-weight: bold !important;
    text-shadow: 0px 0px 0px #000000 !important;
  }
}
.table_style01 {
  width: 825px;
  margin: 0 auto;
}

.table_style01 dl {
  display: table;
  width: 100%;
  padding: 25px 0;
}

.table_style01 dl + dl {
  border-top: #bfbfbf dotted 1px;
}

.table_style01 dl dt {
  display: table-cell;
  width: 180px;
  vertical-align: top;
}

.table_style01 dl dt.w355 {
  width: 355px;
}

.table_style01 dl dd {
  display: table-cell;
  vertical-align: top;
}

.table_style01 > a {
  color: #000;
}

.table_style01 > a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1023px) {
  .table_style01 {
    width: auto;
  }
  .table_style01 dl {
    display: table;
    padding: 20px 0;
  }
  .table_style01 dl dt {
    display: block;
    width: auto;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .table_style01 dl dt.w355 {
    display: block;
    width: auto;
    margin-bottom: 10px;
  }
  .table_style01 dl dd {
    display: block;
  }
}
.finda_dealer {
  overflow: hidden;
}

.finda_dealer .finda_box_left {
  float: left;
  width: 430px;
}

.finda_dealer .finda_box_left input {
  width: 430px;
  border: none;
  padding: 10px;
  border-radius: 4px;
}

.finda_dealer .finda_box_left button {
  border: none;
  background: none;
  cursor: pointer;
}

.finda_dealer .finda_box_left .btn_list {
  padding: 10px 20px;
  border-radius: 16px;
  line-height: 1;
  background: #2a2a2a;
  color: #fff;
}

.finda_dealer .finda_box_left .btn_list:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.finda_dealer .finda_box_left .dealerlist_box {
  height: 398px;
}

.finda_dealer .finda_box_left .dealerlist_box dl {
  padding: 20px;
  border-bottom: 2px dotted #bfbfbf;
  line-height: 30px;
  cursor: pointer;
}

.finda_dealer .finda_box_left .dealerlist_box dl dt {
  font-size: 18px;
}

.finda_dealer .finda_box_left .dealerlist_box dl dd {
  font-size: 14px;
}

.finda_dealer .finda_box_left .dealerlist_box dl:hover,
.finda_dealer .finda_box_left .dealerlist_box dl.on {
  background-color: #222;
  opacity: 0.5;
  background-image: url(/asset/images/common/ptan.gif);
  background-repeat: repeat;
}

.finda_dealer .finda_box_left .dealerlist_box div.dealerbb {
  border-bottom: 2px dotted #bfbfbf;
}

.finda_dealer .finda_box_left .dealerlist_box div.dealerbb dl {
  border-bottom: none;
}

.finda_dealer .finda_box_left .dealerlist_box div.dealerbb .dealerdd {
  position: relative;
  border-bottom: none;
}

.finda_dealer .finda_box_left .dealerlist_box div.dealerbb .dealerdd .dealerBtn {
  position: absolute;
  right: 10px;
  top: -35px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  padding: 7px 20px;
  cursor: pointer;
  border-radius: 16px;
}

.finda_dealer .finda_box_left .dealerlist_box div.dealerbb .dealerdd .dealerBtn:hover {
  opacity: 0.5;
}

.finda_dealer .finda_box_left input {
  width: 100%;
  box-sizing: border-box;
}

.finda_dealer .finda_box_right {
  float: right;
  width: 540px;
}

.finda_dealer .finda_box_right .finda_map {
  width: 540px;
  height: 700px;
  background-color: #000000;
}

@media screen and (max-width: 1023px) {
  div.maparea {
    width: auto;
  }
  .finda_dealer {
    overflow: hidden;
  }
  .finda_dealer .finda_box_left {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  .finda_dealer .finda_box_left p:nth-of-type(2) {
    margin-bottom: 0;
  }
  .finda_dealer .finda_box_left #mapTab {
    text-align: center;
    border-radius: 4px;
    background-color: #e2e2e2;
    padding: 10px 40px 10px 20px;
    background-image: url(/asset/images/common/button_plus_black.png);
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 14px 14px;
  }
  .finda_dealer .finda_box_left #mapTab.on {
    background-image: url(/asset/images/common/button_mn_black.png);
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 14px 2px;
  }
  .finda_dealer .finda_box_left .btn_list {
    margin-bottom: 30px;
  }
  .finda_dealer .finda_box_left .dealerlist_box {
    overflow-y: inherit;
    height: 0px;
    transition: all 0.3s;
  }
  .finda_dealer .finda_box_left .dealerlist_box.on {
    height: 225px;
  }
  .finda_dealer .finda_box_left .dealerlist_box dl {
    padding: 10px 0 10px;
    border-bottom: 2px dotted #bfbfbf;
    line-height: 30px;
  }
  .finda_dealer .finda_box_left .dealerlist_box dl:last-of-type {
    border: none;
  }
  .finda_dealer .finda_box_left .dealerlist_box dl dt {
    font-size: 14px;
  }
  .finda_dealer .finda_box_left .dealerlist_box dl dd {
    font-size: 12px;
  }
  .finda_dealer .finda_box_left input {
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .finda_dealer .finda_box_right {
    float: none;
    width: 100%;
  }
  .finda_dealer .finda_box_right .finda_map {
    width: 100%;
    height: 550px;
    background-color: #000000;
  }
}
.dealer_result {
  padding: 30px 40px;
  background-color: #fafafa;
  margin-top: 30px;
  display: none;
}

.dealer_result.on {
  display: table;
}

.dealer_result .dealer_result_right {
  display: table-cell;
  padding-left: 30px;
  padding-right: 30px;
}

.dealer_result .dealer_result_left {
  display: table-cell;
  padding-left: 30px;
}

.dealer_result .map_title {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: "open_b";
}

.dealer_result .map_info {
  margin-bottom: 15px;
}

.dealer_result .map_info span {
  font-size: 14px;
}

.dealer_result .map_info span.map_add {
  display: block;
  margin-bottom: 10px;
}

.dealer_result .map_info span.mapFax {
  padding-left: 20px;
}

.dealer_result .mapsite,
.dealer_result .mapmail {
  margin-bottom: 10px;
}

.dealer_result .mapsite a,
.dealer_result .mapmail a {
  color: #000000;
}

.dealer_result .mapTime {
  font-size: 14px;
}

.maparea button {
  margin-top: 10px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  padding: 7px 20px;
  cursor: pointer;
  border-radius: 16px;
}

.maparea button:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

@media screen and (max-width: 1023px) {
  .dealer_result {
    display: none;
    padding: 20px 15px;
    width: 100%;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  .dealer_result.on {
    display: block;
  }
  .dealer_result .dealer_result_right,
  .dealer_result .dealer_result_left {
    display: block;
    padding: 0;
  }
}
.maparea {
  width: 300px;
  padding: 0px 0 10px 0px;
}

.maparea .map_title {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "open_b";
}

.maparea .map_info {
  margin-bottom: 10px;
}

.maparea .map_info span {
  font-size: 14px;
}

.maparea .map_info span.map_add {
  display: block;
  margin-bottom: 10px;
}

.maparea .map_info span.mapFax {
  padding-left: 20px;
}

.maparea .mapsite,
.maparea .mapmail {
  margin-bottom: 10px;
}

.maparea .mapsite a,
.maparea .mapmail a {
  color: #000000;
}

.maparea .mapTime {
  font-size: 14px;
}

.maparea .mapsv {
  text-align: left;
  margin: 20px 0 0px;
}

.maparea .mapsv li {
  display: inline-block;
  text-align: center;
  width: 75px;
  vertical-align: top;
}

.maparea .mapsv li:nth-of-type(1n + 2) {
  margin-top: 0px;
  margin-bottom: 10px;
}

.maparea .mapsv li .icon {
  font-size: 20px;
  color: #b9b9b9;
}

.maparea .maplinkset a {
  display: block;
  padding: 15px 10px;
  color: #000;
  position: relative;
  border-bottom: 1px solid #e7e5e4;
}

.maparea .maplinkset a:hover {
  background-color: #f9f9f9;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.maparea .maplinkset a:hover:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 2px 0;
  width: 100%;
  background-color: #eb0a1e;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  ransition: all 0.3s;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #dadada;
  width: 6px;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
}

@media screen and (max-width: 1023px) {
  .maparea {
    padding: 0px;
  }
  .maparea .map_title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .maparea .map_info {
    margin-bottom: 10px;
  }
  .maparea .map_info span {
    font-size: 12px;
  }
  .maparea .map_info span.map_add {
    margin-bottom: 10px;
  }
  .maparea .map_info span.mapFax {
    padding-left: 10px;
  }
  .maparea .mapTime {
    font-size: 12px;
  }
  .maparea .mapsv {
    text-align: center;
    margin: 10px 0 20px;
  }
  .maparea .mapsv li {
    width: auto;
    vertical-align: bottom;
    font-size: 11px;
    padding: 0 6px;
    box-sizing: border-box;
    margin-top: 20px;
  }
  .maparea .mapsv li:nth-of-type(1n + 2) {
    margin-left: 0px;
    margin-top: 6px;
    margin-bottom: 0;
  }
  .maparea .maplinkset a {
    padding: 10px 0;
  }
  .finda_dealer .finda_box_left {
    margin-bottom: 20px;
  }
  .finda_dealer .finda_box_left p {
    font-size: 16px;
  }
  .mCSB_inside > .mCSB_container {
    margin-right: 20px;
  }
}
.yearcategory .slick-arrow,
.yearcategorytype2 .slick-arrow {
  position: absolute;
  top: -50%;
  border: none;
  background-color: inherit;
  text-indent: -9999px;
  padding: 12px 17px;
  z-index: 1;
  cursor: pointer;
}

.yearcategory .slick-arrow.slick-prev,
.yearcategorytype2 .slick-arrow.slick-prev {
  background-image: url(/asset/images/common/prev_type1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 18px;
  left: -40px;
}

.yearcategory .slick-arrow.slick-next,
.yearcategorytype2 .slick-arrow.slick-next {
  background-image: url(/asset/images/common/next_type1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 18px;
  right: -40px;
}

.yearcategory .slick-track,
.yearcategorytype2 .slick-track {
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .yearcategory,
  .yearcategorytype2 {
    padding: 0 35px;
  }
  .yearcategory .slick-arrow.slick-prev,
  .yearcategorytype2 .slick-arrow.slick-prev {
    left: 0px;
  }
  .yearcategory .slick-arrow.slick-next,
  .yearcategorytype2 .slick-arrow.slick-next {
    right: 0px;
  }
}
.find_modalwrap {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  display: none;
}

.find_modal {
  position: absolute;
  width: 1024px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 50px 30px;
  transition: all 0.5s;
  -webkit-box-size: border-box;
  -o-box-size: border-box;
  box-size: border-box;
  z-index: -2;
}

.find_modal .finda_box_right {
  width: 500px;
}

.find_modal .finda_box_right .finda_map {
  width: 100%;
}

.find_modal .findClosebtn {
  position: absolute;
  top: 7px;
  right: 7px;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .find_modal {
    width: auto;
    margin: 0 10px;
    padding: 25px 10px;
  }
  .find_modal .finda_box_right {
    width: 100%;
  }
  .section .modelselect_rate {
    text-align: center;
    padding: 50px 0 30px 0;
  }
  .section .modelselect_rate figcaption.rate_select_title {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
  }
}
.modelselect_rate {
  display: none;
  text-align: center;
  padding: 60px 0 40px 0;
}

.modelselect_rate .rate_select_title {
  font-size: 18px;
  font-weight: bold;
  font-family: "toyota_b";
  margin-bottom: 10px;
}

.modelselect_rate .rate_select_title .vehicleName {
  display: block;
  margin-bottom: 10px;
}

.modelselect_rate .rate_select_img {
  height: auto;
  width: auto;
  max-width: 100%;
}

.modelselect_rate .modelselect_price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  font-family: "toyota_b";
}

.mapTel a {
  pointer-events: none;
  color: #000;
}

@media screen and (max-width: 1023px) {
  .mapTel a {
    pointer-events: auto;
  }
}
.accessory_text {
  overflow: hidden;
  height: 0;
}

.wrapper_404 p {
  color: #425368;
  text-align: center;
}

.wrapper_404 p:nth-of-type(1) {
  font-size: 90px;
  margin: 160px 0 15px 0;
  font-family: "toyota_b";
}

.wrapper_404 p:nth-of-type(2) {
  margin-bottom: 80px;
  font-size: 36px;
  font-family: "toyota_r";
}

.fuel {
  text-align: center;
}

.fuel dt {
  font-family: "open_b";
  margin-bottom: 10px;
}

.fuel dd {
  padding: 6px 10px;
}

.fuel dd .spec-data {
  font-size: 20px;
  color: #6d8191;
  font-family: "open_b";
  padding: 4px;
  display: inline-block;
}

.fuel_table {
  border-collapse: separate;
  border-spacing: 3px;
  text-align: center;
  line-height: 1.5;
  width: 100%;
}

.fuel_table th {
  padding: 10px;
  vertical-align: top;
  font-family: "opne_b";
}

.fuel_table td {
  padding: 6px 10px;
  vertical-align: top;
}

.iconttl {
  text-align: center;
}

.iconttl .icon {
  font-size: 53px;
  color: #6d8191;
}

@media screen and (max-width: 1023px) {
  .section .section_inner.fuel_inner .lay_block .lay_block_4 {
    font-family: "open_l";
    margin: 40px auto 0 auto;
  }
  .section .section_inner.fuel_inner .lay_block .lay_block_4 .fuel_table td {
    display: block;
    text-align: center;
  }
  .section .section_inner.fuel_inner .lay_block .lay_block_4 .fuel_table th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
  }
}
.view_item.top_list:nth-of-type(1n + 2) {
  display: none;
  margin-top: 20px;
}

.listScroll_contents {
  background-color: #fff;
  border-top: 1px solid #e2e2e2;
  position: relative;
  height: 145px;
}

.listScroll_contents .section_inner {
  position: absolute;
  width: 100%;
  box-shadow: -2px 1px 6px -2px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  z-index: 2;
  transition: all 0.3s;
}

.listScroll_contents .section_inner.on {
  top: 54px !important;
}

.listScroll_contents .listScroll_content {
  width: 1024px;
  margin: 0 auto;
  padding-left: 290px;
  display: table;
  box-sizing: border-box;
}

.listScroll_contents .listScroll_content .list_option {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 20px;
}

.listScroll_contents .listScroll_content .list_option_menu {
  padding: 25px 0 0px;
  text-align: center;
  width: 365.5px;
  display: inline-block;
  font-family: "open_l";
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-left: 0px;
  box-sizing: border-box;
}

.listScroll_contents .listScroll_content .list_option_menu span {
  font-size: 14px;
  display: block;
  margin-top: 10px;
}

.listScroll_contents .listScroll_content .btn_list {
  width: 365.5px;
}

@media screen and (max-width: 1023px) {
  .listScroll_contents {
    height: 125px;
  }
  .listScroll_contents .section_inner {
    z-index: 2;
    margin: 0;
  }
  .listScroll_contents .section_inner.on {
    top: 0 !important;
  }
  .listScroll_contents .listScroll_content {
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    display: table;
    box-sizing: border-box;
  }
  .listScroll_contents .listScroll_content .list_option {
    display: table-cell;
    vertical-align: bottom;
    padding-bottom: 20px;
    width: 50%;
  }
  .listScroll_contents .listScroll_content .list_option_menu {
    padding: 15px 0 10px;
    text-align: center;
    width: 100%;
    display: inline-block;
    font-family: "open_l";
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-left: 0px;
    box-sizing: border-box;
  }
  .listScroll_contents .listScroll_content .list_option_menu span {
    font-size: 12px;
    display: block;
    margin-top: 10px;
  }
  .listScroll_contents .listScroll_content .btn_list {
    width: 90%;
    margin: 0 auto;
  }
  .yearcontenttype2 .yearcontenttype2_inner {
    width: 100%;
  }
  .yearcontenttype2 .lay_block_3 {
    max-width: inherit;
  }
  .yearcontenttype2 .lay_block_3 .general_img img {
    margin: 0 auto;
  }
  .yearcontenttype2 .lay_block_3 .item_lay_type_2_text {
    max-width: 314px;
    margin: 0 auto;
    text-align: left;
  }
}
.sp_top {
  display: none;
}

@media screen and (max-width: 1023px) {
  .sp_top {
    display: block;
    position: fixed;
    top: 450px;
    right: 30px;
    height: 30px;
    width: 30px;
    background-color: #000;
  }
  .sp_top a {
    background-image: url(/asset/images/common/icon_page_top.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px 18px;
    smargin-right: 14px;
    color: transparent;
    text-align: left;
    overflow: hidden;
  }
}
.top_list .lay_3 {
  width: 336px;
}

@media screen and (max-width: 1023px) {
  .top_list .lay_3 {
    width: auto;
  }
}
.sp_categorySelect {
  padding: 10px 0;
}

.sp_categorySelect select {
  padding: 10px;
  width: 100%;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url(/asset/images/common/option_arr_black.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 7px;
  background-color: #ebebeb;
  border-radius: 4px;
}

.customCheckbox {
  padding: 20px 0;
}

.customCheckbox li {
  display: inline-block;
}

.customCheckbox li input[type=radio] {
  display: none;
}

.customCheckbox li .check_price {
  display: block;
}

.customCheckbox li .check {
  position: relative;
  display: inline-block;
  padding: 0 0 0 42px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}

.customCheckbox li .check:hover:after {
  border-color: #425368;
}

.customCheckbox li .check:after {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #425368;
  border-radius: 6px;
  content: "";
}

.customCheckbox li .check:before {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 17px;
  display: block;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  content: "";
  opacity: 0;
  background-image: url(/asset/images/common/check_icon2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
}

.customCheckbox li input[type=radio]:checked + .check:before {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .customCheckbox {
    padding: 10px 0 0;
  }
  .customCheckbox li {
    display: block;
  }
  .customCheckbox li:last-of-type {
    margin-top: 10px;
  }
  .customCheckbox li input[type=radio] {
    display: none;
  }
  .customCheckbox li .check_price {
    display: block;
  }
  .customCheckbox li .check {
    position: relative;
    display: inline-block;
    padding: 0 0 0 42px;
    vertical-align: middle;
    cursor: pointer;
    line-height: 1.4;
  }
  .customCheckbox li .check:hover:after {
    border-color: #425368;
  }
  .customCheckbox li .check:after {
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 2px solid #425368;
    border-radius: 6px;
    content: "";
  }
  .customCheckbox li .check:before {
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 17px;
    display: block;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    content: "";
    opacity: 0;
    background-image: url(/asset/images/common/check_icon2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
  }
  .customCheckbox li input[type=checkbox]:checked + .check:before {
    opacity: 1;
  }
}
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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  body {
    overflow-x: hidden;
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  outline: none;
}

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

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

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,
button {
  vertical-align: middle;
  outline: none;
}

textarea {
  outline: none;
  overflow: auto;
}

html {
  font-size: 14px;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "open_l";
  color: #000;
}

body.selector {
  -ms-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

img {
  vertical-align: middle;
  border: none;
}

li {
  list-style: none;
}

.wrapper {
  min-width: 320px;
  background-color: #fff;
}

.header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  z-index: 101;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s;
  height: 45px;
  font-family: Raleway;
  font-weight: 400;
}

.header .header_inner {
  width: -webkit-fill-available;
  margin: 0 10px;
  position: relative;
  height: 45px !important;
}

.header .wlogo {
  width: 1200px;
}

.header .header_inner:after {
  content: "";
  display: block;
  clear: both;
}

.header .header_inner .title {
  margin-left: 10px;
  float: left;
  padding-right: 10px;
  padding-top: 12px;
}

.header .header_inner .sub_title {
  float: left;
  padding-left: 10px;
  padding-top: 5px;
}

.header .header_inner .globalnav {
  float: left;
}

.header .header_inner .globalnav:after {
  content: "";
  display: block;
  clear: both;
}

.header .header_inner .globalnav .g_nav_list {
  float: left;
}

.header .header_inner .globalnav .g_nav_list p a {
  color: #000;
  display: inline-block;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  word-wrap: break-word;
  transition: all 0.4s;
}

.header .header_inner .globalnav .g_nav_list p a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 40px 0;
  width: 100%;
  border-bottom: 4px solid #fff;
  transition: all 0.4s;
  z-index: -1;
}

.header .header_inner .globalnav .g_nav_list p a:hover:after,
.header .header_inner .globalnav .g_nav_list p a.on:after {
  background-color: #f9f9f9;
  border-bottom-color: #f9f9f9;
}

.header .header_inner .globalnav .g_nav_list p a.current:after {
  border-bottom: 4px solid #eb0a1e;
}

.header .header_inner .globalnav .g_nav_list .sub_menu {
  display: none;
  position: absolute;
  z-index: 1;
  top: 66px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1024px;
  box-shadow: 0px 1px 6px -1px rgba(0, 0, 0, 0.25);
}

.header .header_inner .globalnav .g_nav_list .sub_menu.on {
  transition-property: margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.header .header_inner .globalnav .type1 p a {
  width: 107px;
  padding: 21px 20px 20px 0;
  background-image: url(/asset/images/common/shopping_icon.png);
  background-repeat: no-repeat;
  background-position: 92px center;
  background-size: 7px 6px;
  cursor: pointer;
}

.header .header_inner .globalnav .type1 p a.on {
  background-image: url(/asset/images/common/shopping_icon_x.png);
  background-repeat: no-repeat;
  background-position: 92px center;
  background-size: 7px 6px;
}

.header .header_inner .globalnav .type1 .sub_menu {
  background-color: #fff;
  box-shadow: 0px 0px 9px #ddd inset;
  top: inherit;
  margin-top: -1px;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner {
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_category {
  text-align: center;
  float: left;
  overflow: hidden;
  padding-left: 30px;
  width: -moz-max-content;
  width: max-content;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_category li {
  float: left;
  padding: 10px 18px;
  border-radius: 16px;
  cursor: pointer;
  margin-right: 4px;
  transition: all 0.3s;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_category li:hover {
  background-color: #f0f0f0;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_category li.on {
  background-color: #f0f0f0;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_FU {
  float: right;
  overflow: hidden;
  margin-right: 80px;
  padding-left: 20px;
  border-left: 1px solid #c2c2c2;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_FU li {
  float: left;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_FU li a {
  color: #fff;
  padding: 10px 20px;
  background-color: #b9b9b9;
  border-radius: 16px;
  display: block;
  transition: all 0.3s;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_FU li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_FU li:nth-of-type(2) {
  margin-left: 20px;
}

.header .header_inner .globalnav .type1 .sub_menu .car_category_inner .car_list_close {
  border: none;
  padding: 15px;
  background-image: url(/asset/images/common/modal_close.png);
  background-repeat: no-repeat;
  background-position: 0px;
  background-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list {
  overflow: hidden;
  height: auto;
  max-height: 77vh;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem {
  float: left;
  text-align: center;
  width: 246px;
  margin: 5px;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a {
  color: #000;
  display: block;
  padding: 25px 0;
  border: 1px solid #fff;
  transition: all 0.1s;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a:hover {
  border: 1px solid #d8d8d8;
  background-color: #f9f9f9;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dt img {
  height: 50px;
  width: auto;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dd {
  padding-top: 5px;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dd .car_name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dd .car_price {
  font-size: 12px;
}

.header .header_inner .globalnav .type1 .sub_menu .car_list .mCSB_inside > .mCSB_container {
  margin-right: 0;
}

.header .header_inner .globalnav .type2 p a {
  width: 121px;
  padding: 21px 20px 20px 0;
  cursor: pointer;
  background-image: url(/asset/images/common/shopping_icon.png);
  background-repeat: no-repeat;
  background-position: 103px center;
  background-size: 7px 6px;
}

.header .header_inner .globalnav .type2 p a.on {
  background-image: url(/asset/images/common/shopping_icon_x.png);
  background-repeat: no-repeat;
  background-position: 103px center;
  background-size: 7px 6px;
}

.header .header_inner .globalnav .type2 .sub_menu {
  position: fixed;
  top: 64px;
  width: 100%;
  background-color: #f9f9f9;
}

.header .header_inner .globalnav .type2 .sub_menu ul {
  text-align: center;
}

.header .header_inner .globalnav .type2 .sub_menu ul li {
  display: inline-block;
  position: relative;
  font-size: 12px;
}

.header .header_inner .globalnav .type2 .sub_menu ul li a {
  font-size: 14px;
  display: block;
  padding: 24px 25px 20px;
  color: #000;
  border-bottom: 4px solid #f9f9f9;
  transition: all 0.4s;
}

.header .header_inner .globalnav .type2 .sub_menu ul li a.icon_dom {
  background-image: url(/asset/images/common/icon_dom.png);
  background-repeat: no-repeat;
  background-position: 22px 24px;
  background-size: 17px 15px;
  padding: 24px 20px 20px 45px !important;
  text-align: left;
}

.header .header_inner .globalnav .type2 .sub_menu ul li a.icon_bs {
  background-image: url(/asset/images/common/icon_local_service.png);
  background-repeat: no-repeat;
  background-position: 22px 22px;
  background-size: 14px 18px;
  padding: 24px 20px 20px 45px !important;
  text-align: left;
}

.header .header_inner .globalnav .type2 .sub_menu ul li a.bdl:before {
  content: "";
  width: 1px;
  height: 42px;
  background-color: #e7e5e4;
  position: absolute;
  top: 10px;
  left: -2px;
}

.header .header_inner .globalnav .type2 .sub_menu ul li a:hover {
  background-color: #f0f0f0;
  border-bottom: 4px solid #f0f0f0;
}

.header .header_inner .globalnav .type2 .sub_menu ul li a.on {
  border-bottom: 4px solid #eb0a1e;
}

.header .header_inner .globalnav .type3 p a {
  width: 122px;
  padding: 21px 0;
  cursor: pointer;
}

.btn-usados {
  display: none;
}

.header .header_inner .globalnav .type3 p a.on {
  background-image: url(/asset/images/common/shopping_icon_x.png);
}

.header .header_inner .globalnav .type3 .sub_menu {
  position: fixed;
  top: 76px;
  width: 100%;
  background-color: #f9f9f9;
}

.header .header_inner .globalnav .type3 .sub_menu ul {
  text-align: center;
}

.header .header_inner .globalnav .type3 .sub_menu ul li {
  display: inline-block;
  font-size: 14px;
}

.header .header_inner .globalnav .type3 .sub_menu ul li a {
  font-size: 14px;
  display: block;
  padding: 24px 25px 20px;
  color: #000;
  border-bottom: 4px solid #f9f9f9;
  transition: all 0.4s;
}

.header .header_inner .globalnav .type3 .sub_menu ul li a:hover {
  background-color: #f0f0f0;
  border-bottom: 4px solid #f0f0f0;
}

.header .header_inner .globalnav .type3 .sub_menu ul li a.on {
  border-bottom: 4px solid #eb0a1e;
}

.header .header_inner .globalnav .type4 p a {
  width: 120px;
  padding: 21px 20px 20px 0;
  cursor: pointer;
  background-image: url(/asset/images/common/shopping_icon.png);
  background-repeat: no-repeat;
  background-position: 94px center;
  background-size: 7px 6px;
}

.header .header_inner .globalnav .type4 p a.on {
  background-image: url(/asset/images/common/shopping_icon_x.png);
  background-repeat: no-repeat;
  background-position: 94px center;
  background-size: 7px 6px;
}

.header .header_inner .globalnav .type4 .sub_menu {
  position: fixed;
  top: 64px;
  width: 100%;
  background-color: #f9f9f9;
}

.header .header_inner .globalnav .type4 .sub_menu ul {
  text-align: center;
}

.header .header_inner .globalnav .type4 .sub_menu ul li {
  display: inline-block;
  font-size: 14px;
}

.header .header_inner .globalnav .type4 .sub_menu ul li a {
  font-size: 14px;
  display: block;
  padding: 24px 25px 20px;
  color: #000;
  border-bottom: 4px solid #f9f9f9;
  transition: all 0.4s;
}

.header .header_inner .globalnav .type4 .sub_menu ul li a:hover {
  background-color: #f0f0f0;
  border-bottom: 4px solid #f0f0f0;
}

.header .header_inner .globalnav .type4 .sub_menu ul li a.on {
  border-bottom: 4px solid #eb0a1e;
}

.header .header_inner .globalnav .type5 p a {
  background-image: url(/asset/images/common/car-icon.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 32px 32px;
  border-left: 1px solid #e7e5e4;
  padding: 18px 17px 14px 52px;
  text-align: center;
  width: 150px;
}

.header .header_inner .globalnav .test-drive p a {
  background-image: url(/asset/images/common/swheel-icon.svg) !important;
}

.header .header_inner .globalnav .type9.store-toyota p a {
  background-image: url(/asset/images/common/store-icon.svg) !important;
  width: unset;
}

.header .header_inner .globalnav .type6 p a {
  background-image: url(/asset/images/common/pin-icon.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 32px 32px;
  border-left: 1px solid #e7e5e4;
  padding: 18px 17px 14px 52px;
  text-align: center;
  width: 150px;
}

.header .header_inner .globalnav .type9 p a {
  background-image: url(/asset/images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 32px 32px;
  border-left: 1px solid #e7e5e4;
  padding: 18px 17px 14px 52px;
  text-align: center;
  width: 150px;
}

.header .header_inner .globalnav .type10 p a {
  background-image: url(/asset/images/common/compare-icon.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 32px 32px;
  border-left: 1px solid #e7e5e4;
  padding: 18px 17px 14px 52px;
  text-align: left;
  width: 201px;
}

.header .header_inner .globalnav .type11 p a {
  background-image: url(/asset/images/store/svg/store-icon.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 32px 32px;
  border-left: 1px solid #e7e5e4;
  padding: 18px 17px 14px 52px;
  text-align: left;
  width: 155px;
}

.header .header_inner .globalnav .type7 p a {
  background-image: url(/asset/images/common/shopping_icon.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 15px 9px;
  border-left: 1px solid #e7e5e4;
  border-right: 1px solid #e7e5e4;
  cursor: pointer;
  padding: 14px 20px 14px 20px;
  text-align: left;
  width: 150px;
}

.header .header_inner .globalnav .type7 p a.on {
  background-image: url(/asset/images/common/shopping_icon_x.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 15px 14px;
}

.header .header_inner .globalnav .type7 .sub_menu {
  position: absolute;
  width: 351px;
  background-color: #fff;
  left: inherit;
  right: 2px;
}

.header .header_inner .globalnav .type7 .sub_menu ul li a {
  display: block;
  padding: 18px 0 18px 30px;
  color: #000;
  border-top: 1px solid #e7e5e4;
  position: relative;
  transition: all 0.4s;
}

.header .header_inner .globalnav .type7 .sub_menu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2px 0;
  width: 100%;
  background-color: #fff;
  transition: all 0.4s;
}

.header .header_inner .globalnav .type7 .sub_menu ul li a:hover,
.header .header_inner .globalnav .type7 .sub_menu ul li a:hover:after {
  background-color: #f9f9f9;
}

.header .header_inner .globalnav .type7 .sub_menu ul li a.on:after {
  background-color: #ff0000;
}

.header .header_inner .globalnav.type2 .type1 p a,
.header .header_inner .globalnav.type2 .type2 p a {
  padding: 11px 20px 11px 0;
  width: 155px;
  background-position: 132px 24px;
}

.header .header_inner .globalnav.type2 .type1 p a.on,
.header .header_inner .globalnav.type2 .type2 p a.on {
  background-position: 132px 24px;
}

.header .header_inner .globalnav.type2 .type3 .m_menu .g_nav_list p a {
  width: 135px;
  padding: 11px 0px !important;
}

.header .header_inner .globalnav.type2 .type4 p a {
  padding: 11px 20px 11px 0;
  width: 155px;
  background-position: 132px 24px;
  margin-right: 10px;
}

.header .header_inner .globalnav.type2 .type4 p a.on {
  background-position: 132px 24px;
}

.header .header_inner .globalnav.type2 .m_menu .g_nav_list p a {
  padding: 21px 20px 21px 0;
}

.header .header_inner .globalnav.type2 .m_menu .g_nav_list.type3 p a {
  padding: 21px 0;
}

.header .header_inner .globalnav.type2 .type5_2 p a {
  text-indent: -9999px;
  padding: 26px 24px;
  background-position: center;
  height: 36px;
  width: auto;
}

.header .header_inner .globalnav.type2 .type6_2 p a {
  text-indent: -9999px;
  padding: 26px 24px;
  background-position: center;
  height: 36px;
  width: auto;
}

@media screen and (max-width: 1023px) {
  .header {
    margin-top: 0 !important;
  }
  .header .header_inner .globalnav.type2 .type1 p a,
  .header .header_inner .globalnav.type2 .type2 p a,
  .header .header_inner .globalnav.type2 .type3 p a,
  .header .header_inner .globalnav.type2 .type4 p a {
    width: inherit;
    padding: 20px 0 20px 15px !important;
    background-position: 98% center;
    margin-right: 0;
  }
  .header .header_inner .globalnav.type2 .type1 p a.on,
  .header .header_inner .globalnav.type2 .type2 p a.on,
  .header .header_inner .globalnav.type2 .type3 p a.on,
  .header .header_inner .globalnav.type2 .type4 p a.on {
    background-position: 98% center;
  }
  .header .header_inner .globalnav.type2 .type5_2 p a {
    text-indent: -9999px;
    padding: 18px 16px;
    background-position: center;
  }
  .header .header_inner .globalnav.type2 .type6_2 p a {
    width: 51px;
    height: 100%;
    padding: 0;
  }
}
.m_menu {
  display: inline;
}

.m_button {
  display: none;
}

.filter_wrapper.on {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .header {
    position: relative !important;
    padding: 0;
    z-index: 10;
  }
  .header .header_inner {
    box-sizing: border-box;
    width: 100%;
    height: 56px;
    background: #fff;
    position: relative;
  }
  .header .header_inner:after {
    content: none;
  }
  .header .header_inner .title {
    float: none;
    height: 100%;
    padding: 0;
    position: absolute;
    z-index: 1;
  }
  .header .header_inner .title a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
  }
  .header .header_inner .title img {
    width: 90px;
    height: auto;
  }
  .header .header_inner .m_button {
    right: 15px;
    display: block;
    float: right;
    width: 16px;
    height: 14px;
    padding: 21px 17.5px;
    position: relative;
    cursor: pointer;
  }
  .header .header_inner .m_button:before,
  .header .header_inner .m_button:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .header .header_inner .m_button:before {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
  }
  .header .header_inner .m_button:after {
    width: 1px;
    height: 16px;
    background: #d8d8d8;
    margin: auto;
    top: 0;
  }
  .header .header_inner .m_button span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: #eb0a1e;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .header .header_inner .m_button span:before,
  .header .header_inner .m_button span:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #eb0a1e;
    position: absolute;
    transition: all 0.3s;
  }
  .header .header_inner .m_button span:before {
    top: -6px;
  }
  .header .header_inner .m_button span:after {
    bottom: -6px;
  }
  .header .header_inner .m_button.on {
    background: #f8f9fa;
  }
  .header .header_inner .m_button.on:before {
    background: #ee0622;
  }
  .header .header_inner .m_button.on span {
    background-color: #f8f9fa;
  }
  .header .header_inner .m_button.on span:before {
    transform: translateY(6px) rotate(-45deg);
  }
  .header .header_inner .m_button.on span:after {
    transform: translateY(-6px) rotate(45deg);
  }
  .header .header_inner .globalnav {
    float: none;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .header .header_inner .globalnav:after {
    content: none;
  }
  .header .header_inner .globalnav .g_nav_list {
    float: none;
  }
  .header .header_inner .globalnav .g_nav_list p a {
    display: block;
    color: #ee0622;
    font-size: 16px;
    text-align: left;
    word-wrap: normal;
    background-position: right 15px center;
    padding: 10px 0;
    position: relative;
  }
  .header .header_inner .globalnav .g_nav_list p a:after,
  .header .header_inner .globalnav .g_nav_list p a.on:after {
    bottom: 1px;
    display: none !important;
  }
  .header .header_inner .globalnav .g_nav_list p a:hover:after,
  .header .header_inner .globalnav .g_nav_list p a.on:after {
    display: none !important;
  }
  .header .header_inner .globalnav .g_nav_list .sub_menu {
    display: none;
    position: inherit;
    z-index: 1;
    top: 44px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: auto;
    background-color: #fff;
    margin-top: 0 !important;
    box-shadow: none;
  }
  .header .header_inner .globalnav .type1 p a {
    width: auto;
    background-image: url(/asset/images/common/menu_plus.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
  }
  .header .header_inner .globalnav .type1 p a.on {
    background-image: url(/asset/images/common/menu_mn.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px auto;
  }
  .header .header_inner .globalnav .type1 .sub_menu {
    padding: 0 15px 15px;
  }
  .header .header_inner .globalnav .type1 .sub_menu.pc {
    display: none !important;
  }
  .header .header_inner .globalnav .type1 .sub_menu .car_list {
    overflow: hidden;
    background-color: #fff;
  }
  .header .header_inner .globalnav .type1 .sub_menu .car_list .carItem {
    display: inline-block;
    text-align: center;
    width: 49.3%;
    margin: 15px 0 !important;
    float: inherit;
  }
  .header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dt img {
    width: 100%;
    height: inherit;
    max-width: 115px;
  }
  .header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dd {
    padding-top: 5px;
  }
  .header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dd .car_name {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .header .header_inner .globalnav .type1 .sub_menu .car_list .carItem a dl dd .car_price {
    font-size: 10px;
  }
  .header .header_inner .globalnav .subUrl {
    padding-bottom: 20px;
    margin-left: 30px;
  }
  .header .header_inner .globalnav .subUrl > li + li p {
    margin-top: 20px;
  }
  .header .header_inner .globalnav .subUrl li p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .header .header_inner .globalnav .subUrl li a {
    display: block;
    color: #000;
    padding: 15px;
    border-top: 1px solid #e7e5e4;
    border-left: 1px solid #e7e5e4;
    position: relative;
  }
  .header .header_inner .globalnav .subUrl li a:after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    background-image: url(/asset/images/common/icon_footer.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 6px 10px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
  }
  .header .header_inner .globalnav .subUrl li:last-child a {
    border-bottom: 1px solid #e7e5e4;
  }
  .header .header_inner .globalnav .type2 p a {
    width: auto;
    background-image: inherit;
    background-image: url(/asset/images/common/menu_plus.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
  }
  .header .header_inner .globalnav .type2 p a.on {
    background-image: url(/asset/images/common/menu_mn.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px auto;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul {
    text-align: left;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul li {
    display: block;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul li a {
    display: block;
    padding: 15px;
    color: #000;
    background-color: #fff;
    border-top: 1px solid #e7e5e4;
    border-left: 1px solid #e7e5e4;
    border-bottom: none;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul li:last-child a {
    border-bottom: 1px solid #e7e5e4;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul li a.bdl:before {
    content: none;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul li a:hover {
    border-bottom: none;
  }
  .header .header_inner .globalnav .type2 .sub_menu ul li:last-of-type a {
    color: #000;
    padding: 15px;
    background-color: #fff;
    border-radius: 0;
  }
  .header .header_inner .globalnav .type3 p a {
    width: auto;
    background-image: url(/asset/images/common/icon_footer.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 6px;
  }
  .header .header_inner .globalnav .type3 p a.on {
    background-image: url(/asset/images/common/menu_mn.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px auto;
  }
  .header .header_inner .globalnav .type3 .sub_menu ul {
    text-align: left;
  }
  .header .header_inner .globalnav .type3 .sub_menu ul li {
    display: block;
  }
  .header .header_inner .globalnav .type3 .sub_menu ul li a {
    padding: 15px;
    border-bottom: none;
  }
  .header .header_inner .globalnav .type3 .sub_menu ul li:last-child a {
    border-bottom: 1px solid #e7e5e4;
  }
  .header .header_inner .globalnav .type3 .sub_menu ul li a:hover {
    border-bottom: none;
  }
  .header .header_inner .globalnav .type4 {
    margin-right: 20px;
  }
  .header .header_inner .globalnav .type4 p a {
    width: auto;
    background-image: url(/asset/images/common/menu_plus.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
  }
  .header .header_inner .globalnav .type4 p a.on {
    background-image: url(/asset/images/common/menu_mn.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px auto;
  }
  .header .header_inner .globalnav .type4 .sub_menu ul {
    text-align: left;
  }
  .header .header_inner .globalnav .type4 .sub_menu ul li {
    display: block;
  }
  .header .header_inner .globalnav .type4 .sub_menu ul li a {
    padding: 15px;
    border-bottom: none;
  }
  .header .header_inner .globalnav .type4 .sub_menu ul li:last-child a {
    border-bottom: 1px solid #e7e5e4;
  }
  .header .header_inner .globalnav .type4 .sub_menu ul li a:hover {
    border-bottom: none;
  }
  .header .header_inner .globalnav .type4 + .sp .sub_menu ul li:nth-child(4) a {
    background-image: url(/asset/images/common/icon-request.png);
    background-repeat: no-repeat;
    background-position: 22px 24px;
    background-size: 11px 14px;
    padding: 24px 20px 20px 45px !important;
    text-align: left;
  }
  .header .header_inner .globalnav .type4 + .sp .sub_menu ul li:nth-child(5) a {
    background-image: url(/asset/images/common/icon_local_drive.png);
    background-repeat: no-repeat;
    background-position: 19px 24px;
    background-size: 17px 15px;
    padding: 24px 20px 20px 45px !important;
    text-align: left;
  }
  .header .header_inner .globalnav .type4 + .sp .sub_menu ul li:nth-child(6) a {
    background-image: url(/asset/images/common/icon_local_find.png);
    background-repeat: no-repeat;
    background-position: 22px 24px;
    background-size: 12px 18px;
    padding: 24px 20px 20px 45px !important;
    text-align: left;
  }
  .header .header_inner .globalnav .type5 p a {
    background-image: url(/asset/images/common/car-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px 15px;
    border-left: 1px solid #e7e5e4;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0);
    width: 42px;
  }
  .header .header_inner .globalnav .type6,
  .header .header_inner .globalnav .type6 p {
    height: 100%;
  }
  .header .header_inner .globalnav .type6 p {
    position: relative;
  }
  .header .header_inner .globalnav .type6 p:after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #d8d8d8;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }
  .header .header_inner .globalnav .type6 p a {
    display: block;
    width: 51px;
    height: 100%;
    font-size: 0;
    background-position: center;
    border: none;
  }
  .header .header_inner .globalnav .type7 p a {
    background-image: url(/asset/images/common/shopping_icon.png);
    background-repeat: no-repeat;
    background-position: center 1px;
    background-size: 17px 14px;
    background: none;
    border-left: 1px solid #e7e5e4;
    border-right: none;
    padding: 4px 5px 4px 5px;
    text-align: center;
    font-size: 12px;
    width: auto;
  }
  .header .header_inner .globalnav .type7 p a:after {
    display: none;
  }
  .header .header_inner .globalnav .type7 p a.on {
    background: none;
  }
  .header .header_inner .globalnav .type7 .sub_menu {
    position: absolute;
    width: 100%;
    background-color: #fff;
    left: 0;
    right: 0;
    box-shadow: -2px 1px 6px -2px rgba(0, 0, 0, 0.25);
  }
  .header .header_inner .globalnav .type7 .sub_menu ul li a {
    display: block;
    padding: 15px;
    color: #000;
    border-top: 1px solid #e7e5e4;
  }
  .header .header_inner .globalnav .type7 .sub_menu ul li a:hover:after {
    display: none;
  }
  .header .header_inner .globalnav .type7 .sub_menu ul li a.on {
    display: none;
  }
  .header .header_inner .globalnav .type7 .sub_menu ul li a:hover {
    background-color: inherit;
  }
  .header .header_inner .globalnav .type8 {
    height: 100%;
    position: relative;
  }
  .header .header_inner .globalnav .type8:before,
  .header .header_inner .globalnav .type8:after {
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
  }
  .header .header_inner .globalnav .type8:before {
    width: 100%;
    height: 3px;
    background: #ee0622;
    bottom: 0;
    opacity: 0;
  }
  .header .header_inner .globalnav .type8.on:before {
    opacity: 1;
  }
  .header .header_inner .globalnav .type8:after {
    width: 1px;
    height: 16px;
    background: #d8d8d8;
    top: 0;
    bottom: 0;
  }
  .header .header_inner .globalnav .type8 p {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 15px;
    padding-right: 30px;
    position: relative;
  }
  .header .header_inner .globalnav .type8 p:after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    background-image: url(/asset/images/common/icon_footer.png);
    background-size: 6px 10px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    transform: rotateZ(90deg);
    transition: transform 0.5s;
  }
  .header .header_inner .globalnav .type8.on p:after {
    transform: rotateZ(-90deg);
  }
  .header .header_inner .globalnav .m_menu {
    display: none;
    position: absolute;
    width: 100%;
    top: 56px;
    left: 0;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  }
  .header .header_inner .globalnav .m_menu .m_menu_cover {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.75;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .header .header_inner .globalnav .m_menu .g_nav_list {
    float: none;
    background-color: #fff;
  }
  .header .header_inner .globalnav .m_menu .g_nav_list + .g_nav_list {
    border-top: 1px solid #e7e5e4;
  }
  .header .header_inner .globalnav .m_menu .g_nav_list p a {
    font-weight: bold;
    padding: 20px 0 20px 15px;
  }
  .header .header_inner .globalnav .m_menu .g_nav_list:nth-of-type(4) {
    margin-right: 0;
  }
  .header .header_inner .globalnav .m_menu .g_nav_list:nth-of-type(6) p a,
  .header .header_inner .globalnav .m_menu .g_nav_list:nth-of-type(7) p a {
    background-image: url(/asset/images/common/icon_footer.png);
    background-size: 6px;
  }
  .header .header_inner .globalnav .m_menu.vehicles_only {
    display: block !important;
  }
  .header .header_inner .globalnav .m_menu.vehicles_only .g_nav_list > p {
    display: none !important;
  }
  .header .header_inner .globalnav .m_menu.vehicles_only .type1 .sub_menu {
    display: block !important;
  }
  .header .header_inner .globalnav .m_menu.vehicles_only .type1 .sub_menu .mCustomScrollBox {
    z-index: 1;
  }
  .header .header_inner .globalnav .m_button.on + .m_menu {
    display: block;
  }
  .header .car_FU {
    float: inherit;
    width: 100%;
    overflow: hidden;
    margin-right: 0;
    padding-left: 0;
    margin: 15px auto 0;
    border-left: none;
  }
  .header .car_FU li {
    border-radius: 0;
    float: inherit;
    color: #fff;
    float: left;
    width: 46%;
    text-align: center;
  }
  .header .car_FU li a {
    background-color: inherit;
    color: #fff;
    padding: 10px 0px;
    background-color: #b9b9b9;
    border-radius: 46px;
    display: block;
    font-size: 16px;
  }
  .header .car_FU li:nth-of-type(2) {
    margin-left: 20px;
  }
  .header .header_inner .globalnav.type2 .m_menu .g_nav_list p a {
    padding: 20px 0 20px 15px;
  }
  .header .header_inner .globalnav.type2 .type1 p a {
    background-position: 98% center;
  }
  .filter_wrapper {
    display: none;
  }
  .btn-usados {
    display: block;
  }
}
.footer {
  padding-top: 1px;
  background: #EFF0F0;
}

.footer .footer_inner {
  background: #EFF0F0;
  width: 1024px;
  margin: 40px auto 30px;
  position: relative;
}

.footer .footer_inner .footer_list .footer_list_title {
  margin-bottom: 20px;
  pointer-events: none;
}

.footer .footer_inner .footer_list a .footer_list_title {
  pointer-events: auto;
}

.footer .footer_inner .footer_list_type1 {
  width: 410px;
}

.footer .footer_inner .footer_list_type1 .list_parent {
  overflow: hidden;
}

.footer .footer_inner .footer_list_type1 .list_parent p {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 12px;
}

.footer .footer_inner .footer_list_type1 .list_parent > li {
  width: 50%;
  float: left;
  word-wrap: break-word;
}

.footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(2) {
  height: 237px;
}

.footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(3) {
  height: 90px;
}

.footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(5) {
  height: 70px;
}

.footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(6) {
  height: 70px;
}

.footer .footer_inner .footer_list_type1 .list_parent > li > a {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .footer_inner .footer_list_type1 .list_parent > li > a:hover {
  text-decoration: underline;
}

.footer_list li a {
  color: #000;
  font-size: 12px;
}

.footer_list li a.t_blank {
  padding-right: 15px;
  position: relative;
}

.footer_list li a.t_blank:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  /*background-image: url(/asset/images/common/icon_ext05.png);*/
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.footer_list .list_children {
  width: 170px;
}

.footer_list .list_children li {
  margin-bottom: 15px;
}

.footer_list .list_children li a:hover {
  text-decoration: underline;
}

.footer_list:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 410px;
}

.footer_list:nth-of-type(3) {
  position: absolute;
  top: 0;
  left: 615px;
}

.footer_list:nth-of-type(4) {
  position: absolute;
  top: 140px;
  left: 615px;
}

.footer_list:nth-of-type(5) {
  position: absolute;
  top: 0px;
  left: 820px;
}

.footer_list:nth-of-type(6) {
  position: absolute;
  top: 230px;
  left: 820px;
}

.footer_list:nth-of-type(7) {
  position: absolute;
  top: 315px;
  left: 820px;
}

.footer_list:nth-of-type(8) {
  position: absolute;
  top: 400px;
  left: 820px;
}

.footer_list:nth-of-type(9) {
  position: absolute;
  top: 485px;
  left: 820px;
}

.terms_link {
  text-align: center;
  padding: 20px 0 0;
  background: #212121;
  letter-spacing: -0.4rem;
}

.terms_link li {
  display: inline-block;
  letter-spacing: normal;
}

.terms_link li a {
  color: #fff;
  padding: 0 10px;
}

.terms_link li a:hover {
  text-decoration: underline;
}

.terms_link li:nth-of-type(1) {
  border-right: 1px solid #fff;
}

.copy {
  margin-top: -1px;
  background: #212121;
  padding: 20px 0;
  color: #c4c4c4;
}

@media screen and (max-width: 1023px) {
  .footer .footer_inner {
    width: 100%;
    margin: 0;
    position: inherit;
  }
  .footer .footer_inner .footer_list:nth-of-type(1n + 2) {
    border-top: 1px solid #e5e5e5;
  }
  .footer .footer_inner .footer_list .footer_list_title {
    font-size: 16px;
    padding: 20px;
    margin-bottom: 0;
    pointer-events: auto;
    font-family: "raleway";
    color: #000 !important;
  }
  .footer .footer_inner .footer_list_type1 {
    width: auto;
  }
  .footer .footer_inner .footer_list_type1 .list_parent {
    display: none;
    padding-left: 30px;
    padding-bottom: 20px;
  }
  .footer .footer_inner .footer_list_type1 .list_parent p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .footer .footer_inner .footer_list_type1 .list_parent > li {
    width: auto;
    float: inherit;
  }
  .footer .footer_inner .footer_list_type1 .list_parent > li + li {
    margin-top: 20px;
  }
  .footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(2),
  .footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(3),
  .footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(5),
  .footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(6),
  .footer .footer_inner .footer_list_type1 .list_parent > li:nth-of-type(7) {
    height: auto;
  }
  .footer .footer_inner .footer_list_type1 .list_parent > li > a {
    margin-bottom: 10px;
  }
  .footer .footer_inner .footer_list_type1 .list_parent > li .list_children {
    display: block;
    width: 100%;
    padding: 0;
  }
  .footer_list li a {
    display: block;
    color: #000;
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    background-image: url(/asset/images/common/icon_footer.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 6px 10px;
    padding-left: 20px;
  }
  .footer_list .footer_list_type3 {
    background-image: url(/asset/images/common/icon_footer.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 6px 10px;
  }
  .footer_list li a.t_blank {
    background-image: none;
  }
  .footer_list li a.t_blank:after {
    right: 20px;
  }
  .footer_list li a br {
    display: none;
  }
  .footer_list .list_children {
    display: none;
    width: auto;
    padding-left: 30px;
    padding-bottom: 20px;
  }
  .footer_list .list_children li {
    border-top: 1px solid #e7e5e4;
    border-left: 1px solid #e7e5e4;
    margin-bottom: 0;
  }
  .footer_list .list_children li:last-child {
    border-bottom: 1px solid #e7e5e4;
  }
  .footer_list:nth-of-type(2) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .footer_list:nth-of-type(3) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .footer_list:nth-of-type(4) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .footer_list:nth-of-type(5) {
    position: inherit;
    top: 0px;
    left: 0;
  }
  .footer_list:nth-of-type(6) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .footer_list:nth-of-type(7) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .footer_list:nth-of-type(8) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .footer_list:nth-of-type(9) {
    position: inherit;
    top: 0;
    left: 0;
  }
  .copy {
    padding: 20px 0;
    font-size: 9px;
  }
  .terms_link li a {
    font-size: 14px;
  }
}
.local_navigater {
  position: fixed;
  bottom: 5%;
  right: 0;
  width: 60px;
  margin-top: -96px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  transition: all 0.5s;
  z-index: 100;
  padding-left: 0;
}

.local_navigater_sp {
  display: none;
}

.local_navigater.on,
.local_navigater.pc:hover {
  padding-left: 180px;
}

.local_navigater ul li a {
  color: #000;
}

.local_navigater ul li:nth-of-type(1) a {
  color: #fff;
}

.local_navigater ul.pattern1 li:nth-of-type(1) a {
  background-image: url(/asset/images/common/icon_page_top.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern1 li:nth-of-type(2) a {
  background-image: url(/asset/images/common/icon_local_find.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern1 li:nth-of-type(3) a {
  background-image: url(/asset/images/common/icon_local_service.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px 18px;
  margin-right: 22px;
  padding-right: 26px;
}

.local_navigater ul.pattern2 li:nth-of-type(1) a {
  background-image: url(/asset/images/common/icon_page_top.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern2 li:nth-of-type(2) a {
  background-image: url(/asset/images/common/icon_local_find.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern2 li:nth-of-type(3) a {
  background-image: url(/asset/images/common/icon-request.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 13px 17px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern2 li:nth-of-type(4) a {
  background-image: url(/asset/images/common/icon_local_drive.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 17px 15px;
  margin-right: 22px;
  padding-right: 26px;
}

.local_navigater ul.pattern3 li:nth-of-type(1) a {
  background-image: url(/asset/images/common/icon_page_top.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern3 li:nth-of-type(2) a {
  background-image: url(/asset/images/common/icon-downloadbrochures.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 15px 14px;
  margin-right: 22px;
  padding-right: 26px;
}

.local_navigater ul.pattern3 li:nth-of-type(3) a {
  background-image: url(/asset/images/common/icon_local_find.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern3 li:nth-of-type(4) a {
  background-image: url(/asset/images/common/icon-request.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 13px 17px;
  margin-right: 24px;
  padding-right: 26px;
}

.local_navigater ul.pattern3 li:nth-of-type(5) a {
  background-image: url(/asset/images/common/icon_local_drive.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 17px 15px;
  margin-right: 22px;
  padding-right: 26px;
}

.local_navigater ul {
  width: 240px;
  transform: translateX(-180px);
}

.local_navigater ul li {
  text-align: left;
  height: auto;
  overflow: hidden;
}

.local_navigater ul li:nth-of-type(1):hover {
  background: #333333;
}

.local_navigater ul li a {
  display: block;
  padding: 23px 0px 23px 18px;
}

.local_navigater ul li:hover {
  opacity: 1;
  background-color: #dbdbdb;
}

.local_navigater ul li:nth-of-type(1) a {
  background-image: url(/asset/images/common/icon_page_top.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto;
  margin-right: 24px;
}

.local_navigater ul li:nth-of-type(2) a {
  background-image: url(/asset/images/common/icon_local_drive.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 17px 15px;
  margin-right: 12px;
}

.local_navigater ul li:nth-of-type(3) a {
  background-image: url(/asset/images/common/icon_local_find.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 18px;
  margin-right: 14px;
}

.local_navigater ul li:nth-of-type(4) a {
  background-image: url(/asset/images/common/icon_local_service.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px 18px;
  margin-right: 13px;
}

@media screen and (max-width: 1023px) {
  .local_navigater_sp {
    display: block;
  }
  .local_navigater_sp.on:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
  }
  .local_navigater_sp.on .btn {
    transform: rotate(45deg);
  }
  .local_navigater_sp .btn {
    border-radius: 100%;
    background-color: rgba(51, 51, 51, 0.9);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 900;
    transition: transform 0.5s;
  }
  .local_navigater_sp .btn .inner {
    position: relative;
    height: 40px;
    width: 40px;
  }
  .local_navigater_sp .btn .inner:before,
  .local_navigater_sp .btn .inner:after {
    content: "";
    position: absolute;
    height: 20px;
    width: 3px;
    background: #fff;
    display: block;
    top: 50%;
    left: 50%;
    z-index: 1;
  }
  .local_navigater_sp .btn .inner:before {
    transform: translateX(-1px) translateY(-10px);
  }
  .local_navigater_sp .btn .inner:after {
    transform: translateX(-1px) translateY(-10px) rotate(90deg);
  }
  .local_navigater_list {
    background-color: rgba(66, 83, 104, 0.9);
    padding: 0 0 45px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 850;
    display: none;
  }
  .local_navigater_list li {
    border-top: 1px solid #fff;
    line-height: 1;
  }
  .local_navigater_list li:first-child {
    border-top: 0px;
  }
  .local_navigater_list a {
    font-weight: bold;
    padding: 18px 0 18px 20px;
    display: block;
    letter-spacing: 1.9px;
    color: #fff;
  }
  .local_navigater_list a:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 18px;
    margin-right: 7px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    transform: translateY(-1px);
  }
  .local_navigater_list a.icon1:before {
    background-image: url(/asset/images/common/icon_local_book_wh.png);
    background-size: 15px 14px;
  }
  .local_navigater_list a.icon2:before {
    background-image: url(/asset/images/common/icon_local_find_wh.png);
    background-size: 12px 18px;
  }
  .local_navigater_list a.icon3:before {
    background-image: url(/asset/images/common/icon_local_quote_wh.png);
    background-size: 11px 14px;
  }
  .local_navigater_list a.icon4:before {
    background-image: url(/asset/images/common/icon_local_drive_wh.png);
    background-size: 15px 13px;
  }
  .local_navigater_list a.icon5:before {
    background-image: url(/asset/images/common/icon_local_top_wh.png);
    background-size: 10px 17px;
  }
  .local_navigater_list a.icon6:before {
    background-image: url(/asset/images/common/icon_local_service_wh.png);
    background-size: 14px 18px;
  }
  .local_navigater {
    top: 100%;
    display: block;
    width: 40px;
    border-radius: 4px 0 0 4px;
    display: none;
  }
  .local_navigater ul li a {
    padding: 15px 0px 15px 18px;
  }
  .local_navigater ul.pattern1 li.bg_c_b a,
  .local_navigater ul.pattern2 li.bg_c_b a,
  .local_navigater ul.pattern3 li.bg_c_b a,
  .local_navigater ul.pattern4 li.bg_c_b a {
    margin-right: 32px;
  }
  .local_navigater ul.pattern1 li:nth-of-type(1n + 2),
  .local_navigater ul.pattern2 li:nth-of-type(1n + 2),
  .local_navigater ul.pattern3 li:nth-of-type(1n + 2),
  .local_navigater ul.pattern4 li:nth-of-type(1n + 2) {
    display: none;
  }
  .local_navigater ul.pattern1 li:nth-of-type(1),
  .local_navigater ul.pattern2 li:nth-of-type(1),
  .local_navigater ul.pattern3 li:nth-of-type(1),
  .local_navigater ul.pattern4 li:nth-of-type(1) {
    background-color: #f2f2f2;
  }
  .local_navigater ul.pattern1 li:nth-of-type(1) a,
  .local_navigater ul.pattern2 li:nth-of-type(1) a,
  .local_navigater ul.pattern3 li:nth-of-type(1) a,
  .local_navigater ul.pattern4 li:nth-of-type(1) a {
    background-image: url(/asset/images/common/icon_page_top_blk.png);
    background-size: 12px 17px;
  }
  .local_navigater:hover {
    padding-left: 0;
  }
  .local_navigater:hover ul.pattern1 li:nth-of-type(1) a,
  .local_navigater:hover ul.pattern2 li:nth-of-type(1) a,
  .local_navigater:hover ul.pattern3 li:nth-of-type(1) a,
  .local_navigater:hover ul.pattern4 li:nth-of-type(1) a {
    text-indent: -9999px;
  }
}
.slider {
  position: relative;
  overflow: hidden;
  margin-top: 76px;
  height: 420px;
  overflow: hidden;
}

.slider .slider_item {
  height: 420px;
  position: relative;
}

.slider .slider_item a.mainslider_a {
  display: block;
  height: 100%;
}

.slider .slider_item .slider_box {
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0 40px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition-duration: 1000ms;
  transition-timing-function: ease;
}

.slider .slider_item .slider_box.on {
  opacity: 1;
}

.slider .slider_item .slider_box.slider_title {
  color: #fff;
}

.slider .slider_item .slider_box.slider_title span {
  display: block;
}

.slider .slider_item .slider_box.slider_title span.sl_logo_img {
  padding-left: 125px;
  margin-bottom: 60px;
}

.slider .slider_item .slider_box.slider_title span.sl_logo_img img {
  margin: 0;
  position: static;
}

.slider .slider_item .slider_box.slider_title span.carName {
  font-family: "toyota_b";
  font-size: 46px;
  line-height: 54px;
}

.slider .slider_item .slider_box.slider_title span.subText,
.slider .slider_item .slider_box.slider_title span.year {
  font-family: "open_l";
  font-size: 22px;
  line-height: 40px;
}

.slider .slider_item .slider_box.slider_title span.subText {
  margin-top: 5px;
}

.slider .slider_item .slider_box.slider_title span.year {
  line-height: 1;
  margin-bottom: 5px;
}

.slider .slider_item .slider_box.leftTop,
.slider .slider_item .slider_box.leftCenter,
.slider .slider_item .slider_box.leftBottom {
  text-align: left;
}

.slider .slider_item .slider_box.centerTop,
.slider .slider_item .slider_box.centerCenter,
.slider .slider_item .slider_box.centerBottom {
  text-align: center;
}

.slider .slider_item .slider_box.rightTop,
.slider .slider_item .slider_box.rightCenter,
.slider .slider_item .slider_box.rightBottom {
  text-align: right;
}

.slider .slider_item .slider_box.leftTop,
.slider .slider_item .slider_box.centerTop,
.slider .slider_item .slider_box.rightTop {
  top: 0;
}

.slider .slider_item .slider_box.leftTop.on,
.slider .slider_item .slider_box.centerTop.on,
.slider .slider_item .slider_box.rightTop.on {
  top: 30px;
}

.slider .slider_item .slider_box.leftCenter,
.slider .slider_item .slider_box.centerCenter,
.slider .slider_item .slider_box.rightCenter {
  bottom: 0;
}

.slider .slider_item .slider_box.leftCenter.on,
.slider .slider_item .slider_box.centerCenter.on,
.slider .slider_item .slider_box.rightCenter.on {
  bottom: 50%;
  transform: translateY(50%);
}

.slider .slider_item .slider_box.leftBottom,
.slider .slider_item .slider_box.centerBottom,
.slider .slider_item .slider_box.rightBottom {
  bottom: 0;
}

.slider .slider_item .slider_box.leftBottom.on,
.slider .slider_item .slider_box.centerBottom.on,
.slider .slider_item .slider_box.rightBottom.on {
  bottom: 30px;
}

.slider .slider_item.main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
  overflow: hidden;
}

.slider .slider_item img {
  margin: auto;
  position: initial;
  top: 0;
  max-width: 1366px;
  width: 100%;
  left: -100%;
  right: -100%;
}

.slider .slider_item img.pc {
  display: block !important;
}

.slider .slider_item img.sp {
  display: none !important;
}

.slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: all 1s;
}

.slider .slick-dots.on {
  bottom: 0px;
  opacity: 1;
}

.slider .slick-dots li {
  display: inline-block;
}

.slider .slick-dots li button {
  text-indent: -9999px;
  height: 4px;
  background-color: #737373;
  border: none;
  padding: 0 17px;
  margin: 0 7px;
  cursor: pointer;
}

.slider .slick-dots li.slick-active button {
  background-color: #eb0a1e;
}

@media screen and (max-width: 1023px) {
  .slider {
    margin-top: 0;
    height: auto;
  }
  .slider .slider_item {
    height: 410px;
  }
  .slider .slider_item.main {
    background-position: center;
    background-size: auto 100%;
  }
  .slider .slider_item img {
    width: 100%;
  }
  .slider .slider_item img.pc {
    display: none !important;
  }
  .slider .slider_item img.sp {
    display: block !important;
  }
  .slider.type3 .slick-slide {
    height: 0 !important;
    padding: 0 0 15% !important;
  }
  .slider .slick-dots.on {
    bottom: -10px;
  }
  .slider.slick-initialized .slick-slide {
    height: auto;
  }
  .slider .slider_item .slider_box {
    width: auto;
  }
  .slider .slider_item .slider_box.slider_title {
    margin: 0 10px;
    text-align: center;
  }
  .slider .slider_item .slider_box.slider_title span {
    display: block;
  }
  .slider .slider_item .slider_box.slider_title span.sl_logo_img {
    padding-left: 0;
    margin-bottom: 10px;
  }
  .slider .slider_item .slider_box.slider_title span.sl_logo_img img {
    width: 35px;
    height: auto;
    margin: 0 auto;
  }
  .slider .slider_item .slider_box.slider_title span.carName {
    font-size: 20px;
    line-height: 20px;
  }
  .slider .slider_item .slider_box.slider_title span.subText,
  .slider .slider_item .slider_box.slider_title span.year {
    font-family: "open_l";
    font-size: 10px;
    line-height: 14px;
  }
  .slider .slider_item .slider_box.slider_title span.subText {
    margin-top: 5px;
  }
  .slider .slider_item .slider_box.slider_title span.year {
    line-height: 1;
    margin-bottom: 5px;
  }
  .slider .slider_item .slider_box {
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
  }
  .slider .slider_item .slider_box.on {
    bottom: 30px !important;
  }
}
.item_type_1 {
  position: relative;
}

.item_type_1 .item_lay_type_1_text {
  width: 100%;
}

.item_type_1 .item_lay_type_1_text .item_text {
  font-weight: bold;
}

.item_type_1 .item_lay_type_1_text .item_text span {
  display: block;
  line-height: 20px;
}

.item_type_1 .item_lay_type_1_text .item_text span span {
  display: inline;
  font-weight: bold;
}

.item_type_1 .item_lay_type_1_text .price_text span:nth-of-type(1) {
  font-weight: bold;
}

.item_type_2 dl dd p:nth-of-type(1) {
  padding: 5px 0 5px 0;
}

.item_type_2:nth-of-type(1n + 4) {
  margin-top: 40px !important;
}

.item_type_1 a,
.item_type_2 a {
  display: block;
  color: #000;
}

.item_type_1 a img,
.item_type_2 a img {
  transition: all 0.3s;
}

.item_type_1 a:hover,
.item_type_2 a:hover {
  text-decoration: underline;
}

.item_type_1 a:hover img,
.item_type_2 a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  .item_type_1:nth-of-type(1n + 1) {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
  }
  .item_type_1:last-of-type {
    margin-bottom: 0 !important;
  }
  .item_type_1 .item_img img {
    width: 100%;
    height: auto;
    max-width: 330px;
  }
  .item_type_1 .item_lay_type_1_text .item_text {
    text-align: left;
  }
  .item_type_1 .item_lay_type_1_text .item_text span {
    font-size: 16px;
  }
  .item_type_1 .item_lay_type_1_text .item_text span:nth-of-type(2) {
    font-size: 12px;
  }
  .item_type_1 .item_lay_type_1_text .price_text span:nth-of-type(1) {
    font-size: 16px;
  }
  .item_type_1 .item_lay_type_1_text .price_text span:nth-of-type(2) {
    font-size: 12px;
  }
  .item_type_2:nth-of-type(1n + 1) {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
  }
  .item_type_2 dl dt img {
    width: 100%;
    height: auto;
    max-width: 330px;
  }
  .item_type_2 dl dd p:nth-of-type(1) {
    text-align: left;
    font-size: 15px;
    padding: 5px 0 5px 25px;
  }
  .item_type_2 dl dd p:nth-of-type(2) {
    text-align: left;
    font-size: 12px;
  }
  .item_type_2 dl dd p:nth-of-type(1) {
    padding: 5px 0 5px 0;
  }
  .item_type_2:nth-of-type(1n + 4) {
    margin-top: 40px !important;
  }
}
#___gcse_0 {
  float: left;
  border-radius: 4px !important;
  width: 450px !important;
  overflow: hidden !important;
}

.gsc-search-box {
  padding: 0 !important;
  margin: 0 !important;
}

.gsc-control-cse {
  padding: 0 !important;
  border: none !important;
}

.gsc-search-button {
  font-family: toyotaicons !important;
  content: "\e953" !important;
  width: 45px !important;
  height: 100% !important;
  margin-top: 0 !important;
  padding: 0 0px !important;
  position: relative !important;
  cursor: pointer !important;
}

.gsc-search-button:after {
  height: 30px;
  font-family: toyotaicons !important;
  color: #425368;
  content: "\e953";
  font-size: 30px;
  margin-top: -15px;
  position: absolute;
  top: 24px;
  right: 10px;
  z-index: 1;
}

.gsc-search-button button {
  opacity: 0 !important;
  position: relative;
  z-index: 2;
}

.gsib_b {
  display: none !important;
}

.gsc-input {
  padding: 0 !important;
}

.gsc-input .gsc-input-box {
  border: none !important;
  height: inherit !important;
}

.gsc-input .gsc-input-box #gs_tti50 {
  padding: 0 !important;
  position: relative;
}

.gsc-input .gsc-input-box #gs_tti50 #gsc-i-id1 {
  padding: 13px 10px 13px 60px !important;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: inherit !important;
  background-position: 10px center !important;
  margin: inherit !important;
  height: auto !important;
}

.search {
  background-color: #425368;
}

.search .search_inner {
  width: 640px;
  margin: 0 auto;
  position: relative;
}

.search .search_inner form {
  margin-right: 30px;
}

.search .search_inner form input {
  width: 450px;
  border-radius: 4px;
  border: none;
}

.search .search_inner .snsgroup {
  padding: 7px 0;
  margin-left: 30px;
}

.search .search_inner .snsgroup a {
  display: inline-block;
  vertical-align: middle;
}

.search .search_inner .snsgroup a:nth-of-type(1n + 2) {
  margin-left: 11px;
}

.search .search_inner .snsgroup a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  .search {
    padding: 20px 20px 25px;
  }
  .search .search_inner {
    position: relative;
    width: 100%;
  }
  .search .search_inner .snsgroup {
    float: inherit;
    padding: 25px 0 0;
    text-align: center;
    margin-left: 0;
  }
  .search .search_inner .snsgroup a {
    display: inline-block;
    vertical-align: middle;
  }
  .search .search_inner .snsgroup a:nth-of-type(1n + 2) {
    margin-left: 20px;
  }
  .search .search_inner .snsgroup a:nth-of-type(1n + 2) img {
    width: 26px;
    height: auto;
  }
  #___gcse_0 {
    float: inherit;
    border-radius: 4px !important;
    width: 100% !important;
    max-width: 450px !important;
    overflow: hidden !important;
    margin: 0 auto;
  }
  .gsc-results-wrapper-overlay {
    left: 0 !important;
    right: 0 !important;
  }
}
.modal_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  z-index: 9998;
  width: 100%;
  height: 100vh;
}

.modal_inner {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
  text-align: center;
  width: 820px;
  background-color: rgba(255, 255, 255, 0.7);
}

.modal_inner .modal_page {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.modal_inner .modal_page button {
  position: absolute;
  border: none;
  background-color: inherit;
  text-indent: -9999px;
  padding: 27.5px 35px;
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0);
  transition: all 0.3s;
  opacity: 0.6;
  transition: all 0.3s;
}

.modal_inner .modal_page button.prev {
  left: 0;
  background-image: url(/asset/images/common/prev_type_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70px;
}

.modal_inner .modal_page button.next {
  right: 0;
  background-image: url(/asset/images/common/next_type_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70px;
}

.modal_inner .modal_page button:hover {
  opacity: 0.9;
}

.close_button {
  position: absolute;
  right: 0;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .modal_inner {
    width: 100%;
  }
  .modal_inner img {
    width: 90%;
    height: auto;
    max-height: inherit;
  }
  .close_button {
    right: 20px;
  }
}
.gallery_list li:hover {
  transition: all 0.3s;
  opacity: 0.5;
}

.section.pdfguide {
  display: none;
  padding: 80px 0;
}

.selectScroll_content {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.selectScroll_under {
  margin-top: 160px;
}

@media screen and (max-width: 1023px) {
  .selectScroll_under {
    margin-top: 160px;
  }
}
.privacy ol {
  margin-left: 14px;
}

.privacy ol li {
  list-style: decimal;
}

.privacy ol ol li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  padding-left: 22px;
  position: relative;
}

.privacy ol ol li:before {
  display: marker;
  content: "(" counter(cnt) "). ";
  margin-left: -22px;
}

.search_inner_txt {
  width: 640px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .search_inner_txt {
    width: 100%;
    max-width: 450px;
    margin-bottom: 5px;
  }
}
.formprivacy {
  text-decoration: underline;
}

form input.error_bg,
form textarea.error_bg {
  border: 1px solid #eb0a1e;
}

.gmnoprint {
  display: none;
}

@media screen and (min-width: 800px) {
  .framespacio {
    border-top-width: 138px;
    border-top-style: solid;
  }
}
@media screen and (max-width: 499px) and (min-width: 1px) {
  .header-right {
    display: flex;
    margin-right: 20px;
    float: right;
  }
  .ici {
    width: 40px !important;
  }
  .header .header_inner .globalnav .type5 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type5 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type6 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type6 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type10 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type10 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type11 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type11 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type9 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type9 a .icc {
    display: block;
  }
}
@media screen and (max-width: 1023px) and (min-width: 500px) {
  .header-right {
    display: flex;
    margin-left: 0;
    float: right;
    right: 30px;
  }
  .ici {
    width: 50px !important;
  }
  .header .header_inner .globalnav .type5 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type5 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type6 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type6 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type10 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type10 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type11 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type11 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type9 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type9 a .icc {
    display: block;
  }
}
@media screen and (max-width: 1335px) and (min-width: 1024px) {
  .header-right {
    position: absolute;
    margin-left: 0;
    float: right;
    right: 30px;
  }
  .ici {
    width: 50px !important;
  }
  .header .header_inner .globalnav .type5 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type5 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type6 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type6 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type10 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type10 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type11 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type11 a .icc {
    display: block;
  }
  .header .header_inner .globalnav .type9 p {
    display: none !important;
  }
  .header .header_inner .globalnav .type9 a .icc {
    display: block;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1336px) {
  .icc {
    display: none;
  }
  .header-right {
    position: absolute;
    margin-left: 0;
    float: right;
    right: 0;
  }
  .header .header_inner .globalnav .type9 a .icc {
    display: none;
  }
}
@media only screen and (min-width: 1441px) {
  .icc {
    display: none;
  }
  .header-right {
    position: absolute;
    margin-left: 0;
    float: right;
    right: 0;
  }
  .header .header_inner .globalnav .type9 a .icc {
    display: none;
  }
}
/*!
 * Font Awesome Free 5.8.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fab,
.local_navigater_sp ul.local_navigater_list li.whatsapp a:before,
.local_navigater ul.pattern2 li.whatsapp a:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.local_navigater_sp ul.local_navigater_list li.whatsapp a:before, .local_navigater ul.pattern2 li.whatsapp a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left,
.local_navigater_sp ul.local_navigater_list li.whatsapp a.fa-pull-left:before,
.local_navigater ul.pattern2 li.whatsapp a.fa-pull-left:before {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right,
.local_navigater_sp ul.local_navigater_list li.whatsapp a.fa-pull-right:before,
.local_navigater ul.pattern2 li.whatsapp a.fa-pull-right:before {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.8.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../font/fontawesome/webfonts/fa-regular-400.eot");
  src: url("../font/fontawesome/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../font/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("../font/fontawesome/webfonts/fa-regular-400.woff") format("woff"), url("../font/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"), url("../font/fontawesome/webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.8.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../font/fontawesome/webfonts/fa-solid-900.eot");
  src: url("../font/fontawesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../font/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("../font/fontawesome/webfonts/fa-solid-900.woff") format("woff"), url("../font/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"), url("../font/fontawesome/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.8.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../font/fontawesome/webfonts/fa-brands-400.eot");
  src: url("../font/fontawesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../font/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("../font/fontawesome/webfonts/fa-brands-400.woff") format("woff"), url("../font/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"), url("../font/fontawesome/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab, .local_navigater_sp ul.local_navigater_list li.whatsapp a:before, .local_navigater ul.pattern2 li.whatsapp a:before {
  font-family: "Font Awesome 5 Brands";
}

/*!
 * Font Awesome Free 5.8.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa.fa-glass:before {
  content: "\f000";
}

.fa.fa-meetup {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-star-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-o:before {
  content: "\f005";
}

.fa.fa-remove:before {
  content: "\f00d";
}

.fa.fa-close:before {
  content: "\f00d";
}

.fa.fa-gear:before {
  content: "\f013";
}

.fa.fa-trash-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-trash-o:before {
  content: "\f2ed";
}

.fa.fa-file-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-o:before {
  content: "\f15b";
}

.fa.fa-clock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-clock-o:before {
  content: "\f017";
}

.fa.fa-arrow-circle-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-down:before {
  content: "\f358";
}

.fa.fa-arrow-circle-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-up:before {
  content: "\f35b";
}

.fa.fa-play-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-play-circle-o:before {
  content: "\f144";
}

.fa.fa-repeat:before {
  content: "\f01e";
}

.fa.fa-rotate-right:before {
  content: "\f01e";
}

.fa.fa-refresh:before {
  content: "\f021";
}

.fa.fa-list-alt {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-dedent:before {
  content: "\f03b";
}

.fa.fa-video-camera:before {
  content: "\f03d";
}

.fa.fa-picture-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-picture-o:before {
  content: "\f03e";
}

.fa.fa-photo {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-photo:before {
  content: "\f03e";
}

.fa.fa-image {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-image:before {
  content: "\f03e";
}

.fa.fa-pencil:before {
  content: "\f303";
}

.fa.fa-map-marker:before {
  content: "\f3c5";
}

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-pencil-square-o:before {
  content: "\f044";
}

.fa.fa-share-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-share-square-o:before {
  content: "\f14d";
}

.fa.fa-check-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-check-square-o:before {
  content: "\f14a";
}

.fa.fa-arrows:before {
  content: "\f0b2";
}

.fa.fa-times-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-times-circle-o:before {
  content: "\f057";
}

.fa.fa-check-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-check-circle-o:before {
  content: "\f058";
}

.fa.fa-mail-forward:before {
  content: "\f064";
}

.fa.fa-eye {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-eye-slash {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-warning:before {
  content: "\f071";
}

.fa.fa-calendar:before {
  content: "\f073";
}

.fa.fa-arrows-v:before {
  content: "\f338";
}

.fa.fa-arrows-h:before {
  content: "\f337";
}

.fa.fa-bar-chart {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bar-chart:before {
  content: "\f080";
}

.fa.fa-bar-chart-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bar-chart-o:before {
  content: "\f080";
}

.fa.fa-twitter-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gears:before {
  content: "\f085";
}

.fa.fa-thumbs-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-up:before {
  content: "\f164";
}

.fa.fa-thumbs-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-down:before {
  content: "\f165";
}

.fa.fa-heart-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-heart-o:before {
  content: "\f004";
}

.fa.fa-sign-out:before {
  content: "\f2f5";
}

.fa.fa-linkedin-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linkedin-square:before {
  content: "\f08c";
}

.fa.fa-thumb-tack:before {
  content: "\f08d";
}

.fa.fa-external-link:before {
  content: "\f35d";
}

.fa.fa-sign-in:before {
  content: "\f2f6";
}

.fa.fa-github-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-lemon-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-lemon-o:before {
  content: "\f094";
}

.fa.fa-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-square-o:before {
  content: "\f0c8";
}

.fa.fa-bookmark-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bookmark-o:before {
  content: "\f02e";
}

.fa.fa-twitter {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook:before {
  content: "\f39e";
}

.fa.fa-facebook-f {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-f:before {
  content: "\f39e";
}

.fa.fa-github {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-credit-card {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-feed:before {
  content: "\f09e";
}

.fa.fa-hdd-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hdd-o:before {
  content: "\f0a0";
}

.fa.fa-hand-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa.fa-hand-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa.fa-hand-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa.fa-hand-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa.fa-arrows-alt:before {
  content: "\f31e";
}

.fa.fa-group:before {
  content: "\f0c0";
}

.fa.fa-chain:before {
  content: "\f0c1";
}

.fa.fa-scissors:before {
  content: "\f0c4";
}

.fa.fa-files-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-files-o:before {
  content: "\f0c5";
}

.fa.fa-floppy-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-floppy-o:before {
  content: "\f0c7";
}

.fa.fa-navicon:before {
  content: "\f0c9";
}

.fa.fa-reorder:before {
  content: "\f0c9";
}

.fa.fa-pinterest {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus:before {
  content: "\f0d5";
}

.fa.fa-money {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-money:before {
  content: "\f3d1";
}

.fa.fa-unsorted:before {
  content: "\f0dc";
}

.fa.fa-sort-desc:before {
  content: "\f0dd";
}

.fa.fa-sort-asc:before {
  content: "\f0de";
}

.fa.fa-linkedin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linkedin:before {
  content: "\f0e1";
}

.fa.fa-rotate-left:before {
  content: "\f0e2";
}

.fa.fa-legal:before {
  content: "\f0e3";
}

.fa.fa-tachometer:before {
  content: "\f3fd";
}

.fa.fa-dashboard:before {
  content: "\f3fd";
}

.fa.fa-comment-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-comment-o:before {
  content: "\f075";
}

.fa.fa-comments-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-comments-o:before {
  content: "\f086";
}

.fa.fa-flash:before {
  content: "\f0e7";
}

.fa.fa-clipboard {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-paste {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-paste:before {
  content: "\f328";
}

.fa.fa-lightbulb-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa.fa-exchange:before {
  content: "\f362";
}

.fa.fa-cloud-download:before {
  content: "\f381";
}

.fa.fa-cloud-upload:before {
  content: "\f382";
}

.fa.fa-bell-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bell-o:before {
  content: "\f0f3";
}

.fa.fa-cutlery:before {
  content: "\f2e7";
}

.fa.fa-file-text-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-text-o:before {
  content: "\f15c";
}

.fa.fa-building-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-building-o:before {
  content: "\f1ad";
}

.fa.fa-hospital-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hospital-o:before {
  content: "\f0f8";
}

.fa.fa-tablet:before {
  content: "\f3fa";
}

.fa.fa-mobile:before {
  content: "\f3cd";
}

.fa.fa-mobile-phone:before {
  content: "\f3cd";
}

.fa.fa-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-circle-o:before {
  content: "\f111";
}

.fa.fa-mail-reply:before {
  content: "\f3e5";
}

.fa.fa-github-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-folder-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-folder-o:before {
  content: "\f07b";
}

.fa.fa-folder-open-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-folder-open-o:before {
  content: "\f07c";
}

.fa.fa-smile-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-smile-o:before {
  content: "\f118";
}

.fa.fa-frown-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-frown-o:before {
  content: "\f119";
}

.fa.fa-meh-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-meh-o:before {
  content: "\f11a";
}

.fa.fa-keyboard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-keyboard-o:before {
  content: "\f11c";
}

.fa.fa-flag-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-flag-o:before {
  content: "\f024";
}

.fa.fa-mail-reply-all:before {
  content: "\f122";
}

.fa.fa-star-half-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-half-o:before {
  content: "\f089";
}

.fa.fa-star-half-empty {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-half-empty:before {
  content: "\f089";
}

.fa.fa-star-half-full {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-half-full:before {
  content: "\f089";
}

.fa.fa-code-fork:before {
  content: "\f126";
}

.fa.fa-chain-broken:before {
  content: "\f127";
}

.fa.fa-shield:before {
  content: "\f3ed";
}

.fa.fa-calendar-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-o:before {
  content: "\f133";
}

.fa.fa-maxcdn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-html5 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-css3 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ticket:before {
  content: "\f3ff";
}

.fa.fa-minus-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-minus-square-o:before {
  content: "\f146";
}

.fa.fa-level-up:before {
  content: "\f3bf";
}

.fa.fa-level-down:before {
  content: "\f3be";
}

.fa.fa-pencil-square:before {
  content: "\f14b";
}

.fa.fa-external-link-square:before {
  content: "\f360";
}

.fa.fa-compass {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa.fa-toggle-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-down:before {
  content: "\f150";
}

.fa.fa-caret-square-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa.fa-toggle-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-up:before {
  content: "\f151";
}

.fa.fa-caret-square-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa.fa-toggle-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-right:before {
  content: "\f152";
}

.fa.fa-eur:before {
  content: "\f153";
}

.fa.fa-euro:before {
  content: "\f153";
}

.fa.fa-gbp:before {
  content: "\f154";
}

.fa.fa-usd:before {
  content: "\f155";
}

.fa.fa-dollar:before {
  content: "\f155";
}

.fa.fa-inr:before {
  content: "\f156";
}

.fa.fa-rupee:before {
  content: "\f156";
}

.fa.fa-jpy:before {
  content: "\f157";
}

.fa.fa-cny:before {
  content: "\f157";
}

.fa.fa-rmb:before {
  content: "\f157";
}

.fa.fa-yen:before {
  content: "\f157";
}

.fa.fa-rub:before {
  content: "\f158";
}

.fa.fa-ruble:before {
  content: "\f158";
}

.fa.fa-rouble:before {
  content: "\f158";
}

.fa.fa-krw:before {
  content: "\f159";
}

.fa.fa-won:before {
  content: "\f159";
}

.fa.fa-btc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin:before {
  content: "\f15a";
}

.fa.fa-file-text:before {
  content: "\f15c";
}

.fa.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa.fa-youtube-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-xing {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-xing-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play:before {
  content: "\f167";
}

.fa.fa-dropbox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stack-overflow {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-instagram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-flickr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-adn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square:before {
  content: "\f171";
}

.fa.fa-tumblr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-long-arrow-down:before {
  content: "\f309";
}

.fa.fa-long-arrow-up:before {
  content: "\f30c";
}

.fa.fa-long-arrow-left:before {
  content: "\f30a";
}

.fa.fa-long-arrow-right:before {
  content: "\f30b";
}

.fa.fa-apple {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-windows {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-android {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linux {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-dribbble {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-skype {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-foursquare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-trello {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gratipay {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gittip {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gittip:before {
  content: "\f184";
}

.fa.fa-sun-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-sun-o:before {
  content: "\f185";
}

.fa.fa-moon-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-moon-o:before {
  content: "\f186";
}

.fa.fa-vk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-renren {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pagelines {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stack-exchange {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right:before {
  content: "\f35a";
}

.fa.fa-arrow-circle-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-left:before {
  content: "\f359";
}

.fa.fa-caret-square-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa.fa-toggle-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-left:before {
  content: "\f191";
}

.fa.fa-dot-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-dot-circle-o:before {
  content: "\f192";
}

.fa.fa-vimeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-try:before {
  content: "\f195";
}

.fa.fa-turkish-lira:before {
  content: "\f195";
}

.fa.fa-plus-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-plus-square-o:before {
  content: "\f0fe";
}

.fa.fa-slack {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wordpress {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-openid {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-institution:before {
  content: "\f19c";
}

.fa.fa-bank:before {
  content: "\f19c";
}

.fa.fa-mortar-board:before {
  content: "\f19d";
}

.fa.fa-yahoo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-delicious {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-digg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-pp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-drupal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-joomla {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-spoon:before {
  content: "\f2e5";
}

.fa.fa-behance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-behance-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-steam {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-steam-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-automobile:before {
  content: "\f1b9";
}

.fa.fa-cab:before {
  content: "\f1ba";
}

.fa.fa-envelope-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-envelope-o:before {
  content: "\f0e0";
}

.fa.fa-deviantart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-soundcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-file-pdf-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa.fa-file-word-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-word-o:before {
  content: "\f1c2";
}

.fa.fa-file-excel-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa.fa-file-powerpoint-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa.fa-file-image-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-image-o:before {
  content: "\f1c5";
}

.fa.fa-file-photo-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-photo-o:before {
  content: "\f1c5";
}

.fa.fa-file-picture-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-picture-o:before {
  content: "\f1c5";
}

.fa.fa-file-archive-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa.fa-file-zip-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-zip-o:before {
  content: "\f1c6";
}

.fa.fa-file-audio-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa.fa-file-sound-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-sound-o:before {
  content: "\f1c7";
}

.fa.fa-file-video-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-video-o:before {
  content: "\f1c8";
}

.fa.fa-file-movie-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-movie-o:before {
  content: "\f1c8";
}

.fa.fa-file-code-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-code-o:before {
  content: "\f1c9";
}

.fa.fa-vine {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-codepen {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-jsfiddle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-life-ring {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-bouy {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-bouy:before {
  content: "\f1cd";
}

.fa.fa-life-buoy {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-buoy:before {
  content: "\f1cd";
}

.fa.fa-life-saver {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-saver:before {
  content: "\f1cd";
}

.fa.fa-support {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-support:before {
  content: "\f1cd";
}

.fa.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa.fa-rebel {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ra {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ra:before {
  content: "\f1d0";
}

.fa.fa-resistance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-resistance:before {
  content: "\f1d0";
}

.fa.fa-empire {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ge:before {
  content: "\f1d1";
}

.fa.fa-git-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-git {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-hacker-news {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square:before {
  content: "\f1d4";
}

.fa.fa-yc-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc-square:before {
  content: "\f1d4";
}

.fa.fa-tencent-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-qq {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-weixin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wechat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wechat:before {
  content: "\f1d7";
}

.fa.fa-send:before {
  content: "\f1d8";
}

.fa.fa-paper-plane-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-paper-plane-o:before {
  content: "\f1d8";
}

.fa.fa-send-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-send-o:before {
  content: "\f1d8";
}

.fa.fa-circle-thin {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-circle-thin:before {
  content: "\f111";
}

.fa.fa-header:before {
  content: "\f1dc";
}

.fa.fa-sliders:before {
  content: "\f1de";
}

.fa.fa-futbol-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-futbol-o:before {
  content: "\f1e3";
}

.fa.fa-soccer-ball-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-soccer-ball-o:before {
  content: "\f1e3";
}

.fa.fa-slideshare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-twitch {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yelp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-newspaper-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa.fa-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-wallet {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-visa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-mastercard {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-discover {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-amex {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-stripe {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bell-slash-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bell-slash-o:before {
  content: "\f1f6";
}

.fa.fa-trash:before {
  content: "\f2ed";
}

.fa.fa-copyright {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-eyedropper:before {
  content: "\f1fb";
}

.fa.fa-area-chart:before {
  content: "\f1fe";
}

.fa.fa-pie-chart:before {
  content: "\f200";
}

.fa.fa-line-chart:before {
  content: "\f201";
}

.fa.fa-lastfm {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ioxhost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-angellist {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-cc:before {
  content: "\f20a";
}

.fa.fa-ils:before {
  content: "\f20b";
}

.fa.fa-shekel:before {
  content: "\f20b";
}

.fa.fa-sheqel:before {
  content: "\f20b";
}

.fa.fa-meanpath {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-meanpath:before {
  content: "\f2b4";
}

.fa.fa-buysellads {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-connectdevelop {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-dashcube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-forumbee {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-leanpub {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-sellsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-shirtsinbulk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-simplybuilt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-skyatlas {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-diamond {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-diamond:before {
  content: "\f3a5";
}

.fa.fa-intersex:before {
  content: "\f224";
}

.fa.fa-facebook-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-official:before {
  content: "\f09a";
}

.fa.fa-pinterest-p {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-whatsapp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-hotel:before {
  content: "\f236";
}

.fa.fa-viacoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-medium {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc:before {
  content: "\f23b";
}

.fa.fa-optin-monster {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-opencart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-expeditedssl {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-battery-4:before {
  content: "\f240";
}

.fa.fa-battery:before {
  content: "\f240";
}

.fa.fa-battery-3:before {
  content: "\f241";
}

.fa.fa-battery-2:before {
  content: "\f242";
}

.fa.fa-battery-1:before {
  content: "\f243";
}

.fa.fa-battery-0:before {
  content: "\f244";
}

.fa.fa-object-group {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-object-ungroup {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o:before {
  content: "\f249";
}

.fa.fa-cc-jcb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-diners-club {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-clone {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hourglass-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hourglass-o:before {
  content: "\f254";
}

.fa.fa-hourglass-1:before {
  content: "\f251";
}

.fa.fa-hourglass-2:before {
  content: "\f252";
}

.fa.fa-hourglass-3:before {
  content: "\f253";
}

.fa.fa-hand-rock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-rock-o:before {
  content: "\f255";
}

.fa.fa-hand-grab-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-grab-o:before {
  content: "\f255";
}

.fa.fa-hand-paper-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-paper-o:before {
  content: "\f256";
}

.fa.fa-hand-stop-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-stop-o:before {
  content: "\f256";
}

.fa.fa-hand-scissors-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa.fa-hand-lizard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa.fa-hand-spock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-spock-o:before {
  content: "\f259";
}

.fa.fa-hand-pointer-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa.fa-hand-peace-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa.fa-registered {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-creative-commons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gg-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-tripadvisor {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-get-pocket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wikipedia-w {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-safari {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-chrome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-firefox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-opera {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-internet-explorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-television:before {
  content: "\f26c";
}

.fa.fa-contao {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-500px {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-amazon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-calendar-plus-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa.fa-calendar-minus-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa.fa-calendar-times-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-times-o:before {
  content: "\f273";
}

.fa.fa-calendar-check-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-check-o:before {
  content: "\f274";
}

.fa.fa-map-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-map-o:before {
  content: "\f279";
}

.fa.fa-commenting:before {
  content: "\f4ad";
}

.fa.fa-commenting-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-commenting-o:before {
  content: "\f4ad";
}

.fa.fa-houzz {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-vimeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-vimeo:before {
  content: "\f27d";
}

.fa.fa-black-tie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fonticons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit-alien {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-edge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-credit-card-alt:before {
  content: "\f09d";
}

.fa.fa-codiepie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-modx {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fort-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-usb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-product-hunt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-mixcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-scribd {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pause-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-pause-circle-o:before {
  content: "\f28b";
}

.fa.fa-stop-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-stop-circle-o:before {
  content: "\f28d";
}

.fa.fa-bluetooth {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bluetooth-b {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gitlab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpbeginner {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpforms {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-envira {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt:before {
  content: "\f368";
}

.fa.fa-question-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-question-circle-o:before {
  content: "\f059";
}

.fa.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa.fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa.fa-deafness:before {
  content: "\f2a4";
}

.fa.fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa.fa-glide {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-glide-g {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-signing:before {
  content: "\f2a7";
}

.fa.fa-viadeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-first-order {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yoast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-themeisle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa.fa-google-plus-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-circle:before {
  content: "\f2b3";
}

.fa.fa-font-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fa:before {
  content: "\f2b4";
}

.fa.fa-handshake-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-handshake-o:before {
  content: "\f2b5";
}

.fa.fa-envelope-open-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-envelope-open-o:before {
  content: "\f2b6";
}

.fa.fa-linode {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-address-book-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-address-book-o:before {
  content: "\f2b9";
}

.fa.fa-vcard:before {
  content: "\f2bb";
}

.fa.fa-address-card-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-address-card-o:before {
  content: "\f2bb";
}

.fa.fa-vcard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-vcard-o:before {
  content: "\f2bb";
}

.fa.fa-user-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-user-circle-o:before {
  content: "\f2bd";
}

.fa.fa-user-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-user-o:before {
  content: "\f007";
}

.fa.fa-id-badge {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-drivers-license:before {
  content: "\f2c2";
}

.fa.fa-id-card-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-id-card-o:before {
  content: "\f2c2";
}

.fa.fa-drivers-license-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-drivers-license-o:before {
  content: "\f2c2";
}

.fa.fa-quora {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-free-code-camp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-telegram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-thermometer-4:before {
  content: "\f2c7";
}

.fa.fa-thermometer:before {
  content: "\f2c7";
}

.fa.fa-thermometer-3:before {
  content: "\f2c8";
}

.fa.fa-thermometer-2:before {
  content: "\f2c9";
}

.fa.fa-thermometer-1:before {
  content: "\f2ca";
}

.fa.fa-thermometer-0:before {
  content: "\f2cb";
}

.fa.fa-bathtub:before {
  content: "\f2cd";
}

.fa.fa-s15:before {
  content: "\f2cd";
}

.fa.fa-window-maximize {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-window-restore {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle:before {
  content: "\f410";
}

.fa.fa-window-close-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-window-close-o:before {
  content: "\f410";
}

.fa.fa-times-rectangle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle-o:before {
  content: "\f410";
}

.fa.fa-bandcamp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-grav {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-etsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-imdb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ravelry {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-eercast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-eercast:before {
  content: "\f2da";
}

.fa.fa-snowflake-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa.fa-superpowers {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpexplorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-spotify {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

:root {
  --font-toyota-bold: "ToyotaType-Bold", sans-serif;
  --font-toyota-semibold: "ToyotaType-Semibold", sans-serif;
  --font-toyota-display: "ToyotaDisplay", sans-serif;
  --font-toyota-display-regular: "ToyotaDisplayRegular", sans-serif;
}

@font-face {
  font-family: "ToyotaType-Bold";
  src: url("../font/ToyotaType-Bold.woff2") format("woff2"), url("../font/ToyotaType-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ToyotaType-Semibold";
  src: url("../font/ToyotaType-Semibold.woff2") format("woff2"), url("../font/ToyotaType-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ToyotaDisplay";
  src: url("../font/toyotadisplay_bd-webfont.woff2") format("woff2"), url("../font/toyotadisplay_bd-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ToyotaDisplayRegular";
  src: url("../font/ToyotaDisplayRegular.woff2") format("woff2"), url("../font/ToyotaDisplayRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
div.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  width: auto;
}
div.row *[class^=col] {
  padding-left: 15px;
  padding-right: 15px;
}

.col {
  width: 100%;
  flex: 1;
  padding: 0 15px;
}

.col-3 {
  width: calc(20% - 30px);
  flex-basis: calc(20% - 30px);
}

.col-4 {
  width: calc(33.3% - 30px);
  flex-basis: calc(33.3% - 30px);
}

.col-5 {
  width: calc(42% - 30px);
  flex-basis: calc(42% - 30px);
}

.col-6 {
  width: calc(50% - 30px);
  flex-basis: calc(50% - 30px);
}

.col-7 {
  width: calc(58% - 30px);
  flex-basis: calc(58% - 30px);
}

.col-12 {
  width: calc(100% - 30px);
  flex-basis: calc(100% - 30px);
}

*[class^=col-md] {
  width: calc(100% - 30px);
  flex-basis: calc(100% - 30px);
}

.align-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-space-between {
  justify-content: space-between !important;
}

.justify-content-space-around {
  justify-content: space-around !important;
}

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

.flex {
  display: flex;
}

.tab-vehicles-content-urbanos {
  padding: 50px;
  padding-bottom: 120px;
  width: 100%;
}
.tab-vehicles-content-urbanos .cars-line-urbanos {
  overflow-x: hidden;
  display: inline-flex;
  padding: 0px 10%;
  width: 100%;
  position: relative;
}
.tab-vehicles-content-urbanos .cars-line-urbanos .col-md-3 {
  border: 1px solid aquamarine;
}
.tab-vehicles-content-urbanos .cars-line-urbanos .cars-line-item {
  position: relative;
  margin: 0 15px;
  background-color: rgba(149, 149, 149, 0.1215686275);
  height: 110px;
  border-radius: 5px;
}
.tab-vehicles-content-urbanos .cars-line-urbanos .cars-line-item .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.tab-vehicles-content-urbanos .cars-line-urbanos .cars-line-item .car-car {
  position: absolute;
  bottom: -50px;
  width: 230px;
  right: -25px;
  transition: transform 0.2s ease-in-out;
}
.tab-vehicles-content-urbanos .cars-line-urbanos .cars-line-item .car-car:hover {
  transform: scale(1.3);
}
.tab-vehicles-content-urbanos .car-line:hover {
  transform: scale(1.3);
}

.tab-vehicles-content-indestructibles {
  padding: 20px;
  width: 100%;
}
.tab-vehicles-content-indestructibles .cars-line-indestructibles {
  display: inline-flex;
  padding: 0px 10%;
  width: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.tab-vehicles-content-indestructibles .cars-line-indestructibles .col-md-3 {
  border: 1px solid aquamarine;
}
.tab-vehicles-content-indestructibles .cars-line-indestructibles .cars-line-item {
  position: relative;
  margin: 0 15px;
  background-color: rgba(149, 149, 149, 0.1215686275);
  height: 110px;
  border-radius: 5px;
}
.tab-vehicles-content-indestructibles .cars-line-indestructibles .cars-line-item .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.tab-vehicles-content-indestructibles .cars-line-indestructibles .cars-line-item .car-car {
  transition: transform 0.2s;
  position: absolute;
  bottom: -50px;
  width: 230px;
  right: -25px;
}
.tab-vehicles-content-indestructibles .cars-line-indestructibles .cars-line-item .car-car:hover {
  transform: scale(1.3);
}
.tab-vehicles-content-indestructibles .car-line:hover {
  transform: scale(1.3);
}

.tab-vehicles-content-hibridos {
  padding: 20px;
  width: 100%;
}
.tab-vehicles-content-hibridos .cars-line-hibridos {
  display: inline-flex;
  padding: 0px 10%;
  width: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.tab-vehicles-content-hibridos .cars-line-hibridos .col-md-3 {
  border: 1px solid aquamarine;
}
.tab-vehicles-content-hibridos .cars-line-hibridos .cars-line-item {
  position: relative;
  margin: 0 15px;
  background-color: rgba(149, 149, 149, 0.1215686275);
  height: 110px;
  border-radius: 5px;
}
.tab-vehicles-content-hibridos .cars-line-hibridos .cars-line-item .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.tab-vehicles-content-hibridos .cars-line-hibridos .cars-line-item .car-car {
  transition: transform 0.2s;
  position: absolute;
  bottom: -50px;
  width: 230px;
  right: -25px;
}
.tab-vehicles-content-hibridos .cars-line-hibridos .cars-line-item .car-car:hover {
  transform: scale(1.3);
}
.tab-vehicles-content-hibridos .car-line:hover {
  transform: scale(1.3);
}

.row#cars-line-urbanos {
  padding: 0px 6%;
  justify-content: flex-start;
}
.row#cars-line-urbanos .cars-line-item {
  width: 90%;
  position: relative;
  margin-bottom: 32px;
  background-color: rgba(149, 149, 149, 0.168627451);
  height: 120px;
  border-radius: 5px;
}
.row#cars-line-urbanos .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.row#cars-line-urbanos .car-car {
  z-index: 99;
  position: absolute;
  bottom: -15px;
  width: 200px;
  right: -30px;
}
.row#cars-line-urbanos .car-car:hover {
  transform: scale(1.3);
}

.row#cars-line-indestructibles {
  padding: 0px 6%;
  justify-content: flex-start;
}
.row#cars-line-indestructibles .cars-line-item {
  width: 90%;
  position: relative;
  margin-bottom: 32px;
  background-color: rgba(149, 149, 149, 0.168627451);
  height: 120px;
  border-radius: 5px;
  margin-left: 28px;
}
.row#cars-line-indestructibles .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.row#cars-line-indestructibles .car-car {
  z-index: 99;
  position: absolute;
  bottom: -15px;
  width: 200px;
  right: -30px;
}
.row#cars-line-indestructibles .car-car:hover {
  transform: scale(1.3);
}

.row#cars-line-hibridos {
  padding: 0px 6%;
  justify-content: flex-start;
}
.row#cars-line-hibridos .cars-line-item {
  width: 90%;
  position: relative;
  margin-bottom: 32px;
  background-color: rgba(149, 149, 149, 0.168627451);
  height: 120px;
  border-radius: 5px;
  /* Este margin se agrego para poder centrar la galeria
  Cuando los elementos son 4 en adelante */
  margin-left: 28px;
}
.row#cars-line-hibridos .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.row#cars-line-hibridos .car-car {
  transition: transform 0.2s ease-in-out;
  z-index: 99;
  position: absolute;
  bottom: -15px;
  width: 200px;
  right: -30px;
}
.row#cars-line-hibridos .car-car:hover {
  transform: scale(1.3);
}

.tab-vehicles-content#urbanos {
  padding-bottom: 80px;
}

.tab-vehicles-content#indestructibles {
  padding-bottom: 80px;
}

.tab-vehicles-content#hibridos {
  padding-bottom: 80px;
}

.car-line:hover {
  transform: scale(1.3);
}

.arrow-next-urbanos.slick-arrow {
  cursor: pointer;
  background-color: white;
  background: white;
  display: block;
  border: none;
  position: absolute;
  right: 7%;
  bottom: 50%;
  z-index: 99989198;
  box-shadow: 0 0 200px 200px white;
}

.arrow-prev-urbanos.slick-arrow {
  background-color: white;
  border: none;
  background: white;
  position: absolute;
  cursor: pointer;
  z-index: 99989198;
  left: 7%;
  bottom: 50%;
  box-shadow: 0 0 200px 200px white;
}

.fade-urbanos {
  animation-name: fade;
  animation-duration: 1.5s;
}

.arrow-next-indestructibles.slick-arrow {
  cursor: pointer;
  background-color: white;
  background: white;
  display: block;
  border: none;
  position: absolute;
  right: 7%;
  bottom: 50%;
  z-index: 99989198;
  box-shadow: 0 0 200px 200px white;
}

.arrow-prev-indestructibles.slick-arrow {
  background-color: white;
  border: none;
  background: white;
  position: absolute;
  cursor: pointer;
  z-index: 99989198;
  left: 7%;
  bottom: 50%;
  box-shadow: 0 0 200px 200px white;
}

.fade-indestructibles {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.dots-xd {
  display: flex !important;
  border: none;
  outline-style: none;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
}

.dots-xd li {
  display: inline;
  margin: auto 5px;
}

div.hero.yaris-cross {
  background-image: url("../../vehiculo/yaris-cross/imagenes/yaris-main-lg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 465px !important;
  margin-top: 76px;
}
div.hero.yaris-cross .call-to-action {
  display: flex;
  flex-direction: column;
  height: 455px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 15px;
}
div.hero.yaris-cross .call-to-action img.logo {
  width: 250px;
  margin-bottom: 20px;
}
div.hero.yaris-cross .call-to-action .claim {
  font-family: "toyota_b";
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
}
div.hero.yaris-cross .call-to-action .btns_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
div.hero.yaris-cross .call-to-action .btns_list a {
  background-color: #eb0a1e;
  color: #fff;
  border-radius: 999px;
  font-family: "ToyotaType-Semibold";
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  padding: 15px 35px;
  width: 340px;
}
div.hero.yaris-cross .call-to-action .btns_list a:hover {
  text-decoration: none;
}
div.hero.yaris-cross .call-to-action .btns_list a#transparent {
  background-color: #ffffff;
  color: #4f4f4f;
  border: 2px solid #eb0a1e;
  margin-top: 10px;
  margin-bottom: 12px;
}
div.hero.yaris-cross .call-to-action .btns_list .scroll {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
div.hero.yaris-cross .call-to-action .btns_list .scroll p {
  color: #fff;
  padding-top: 5px;
}
div.hero.yaris-cross .call-to-action .scroll {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  margin-top: auto;
}
div.hero.yaris-cross .call-to-action .scroll p {
  color: #fff;
  padding-top: 5px;
}

div#yaris-cross-nav-container ul#yaris-cross-sections-nav {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
div#yaris-cross-nav-container ul#yaris-cross-sections-nav li.yaris-cross-li {
  margin-right: 20px;
  position: relative;
}
div#yaris-cross-nav-container ul#yaris-cross-sections-nav li.yaris-cross-li a.yaris-cross {
  text-decoration: none !important;
  color: #000;
  font-family: "Raleway";
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  letter-spacing: 0em !important;
  position: relative;
  transition: color 0.4s;
  text-decoration-line: none !important;
}
div#yaris-cross-nav-container ul#yaris-cross-sections-nav li.yaris-cross-li a.yaris-cross:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 0;
  width: 100%;
  background-color: transparent;
  transition: all 0.4s;
}
div#yaris-cross-nav-container ul#yaris-cross-sections-nav li.yaris-cross-li a.yaris-cross:hover {
  color: #eb0a1e !important;
  text-decoration-line: none !important;
  text-decoration: none !important;
}
div#yaris-cross-nav-container ul#yaris-cross-sections-nav li.yaris-cross-li a.yaris-cross:hover:after {
  background-color: #eb0a1e !important;
}
div#yaris-cross-nav-container ul#yaris-cross-sections-nav li.yaris-cross-li a.yaris-cross:active:after {
  background-color: #eb0a1e;
}

section.diseno-exterior,
section.diseno-interior {
  padding: 80px 0px;
  background-color: #f3f3f3;
  color: #212529;
}
section.diseno-exterior h2,
section.diseno-interior h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
}
section.diseno-exterior h5,
section.diseno-interior h5 {
  font-family: "Raleway";
  font-size: 22px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 60px;
}
section.diseno-exterior div.container div.fila,
section.diseno-interior div.container div.fila {
  display: flex;
  gap: 30px;
}
section.diseno-exterior div.container div.fila div.col-8,
section.diseno-interior div.container div.fila div.col-8 {
  padding-left: 0px;
  padding-right: 0px;
}
section.diseno-exterior div.container div.fila div.col-8 img,
section.diseno-interior div.container div.fila div.col-8 img {
  width: 730px;
  height: 429px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
section.diseno-exterior div.container div.fila div.col-4,
section.diseno-interior div.container div.fila div.col-4 {
  padding-left: 0px;
  padding-right: 0px;
}
section.diseno-exterior div.container div.fila div.col-4 img,
section.diseno-interior div.container div.fila div.col-4 img {
  width: 350px;
  height: 206px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
section.diseno-exterior div.container div.fila div.col-4 img:last-child,
section.diseno-interior div.container div.fila div.col-4 img:last-child {
  margin-top: 16px;
}
section.diseno-exterior div.container div.fila div.col-4 p.mosaic-text,
section.diseno-interior div.container div.fila div.col-4 p.mosaic-text {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 30px;
}
section.diseno-exterior div.container div.fila .half,
section.diseno-interior div.container div.fila .half {
  padding: 35px 0px 25px 0px;
  width: 50%;
}
section.diseno-exterior div.container div.fila .half p,
section.diseno-interior div.container div.fila .half p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}
section.diseno-exterior div.container div.fila .half p.title,
section.diseno-interior div.container div.fila .half p.title {
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
section.diseno-exterior div.container div.fila .half p.last,
section.diseno-interior div.container div.fila .half p.last {
  margin-top: 30px;
}
section.diseno-exterior div.container div.fila .half img,
section.diseno-interior div.container div.fila .half img {
  width: 540px;
  border-radius: 4px;
}
section.diseno-exterior div.container div.fila .half ul li,
section.diseno-interior div.container div.fila .half ul li {
  list-style: disc;
  margin-left: 2rem;
}
section.diseno-exterior div.container div.fila .half ul li p,
section.diseno-interior div.container div.fila .half ul li p {
  margin-bottom: 10px;
}
section.diseno-exterior div.container div.fila .half:nth-child(3), section.diseno-exterior div.container div.fila .half:nth-child(4),
section.diseno-interior div.container div.fila .half:nth-child(3),
section.diseno-interior div.container div.fila .half:nth-child(4) {
  padding-bottom: 0px;
}
section.diseno-exterior div.container div.fila .half.no-mb,
section.diseno-interior div.container div.fila .half.no-mb {
  padding-bottom: 0px;
}
section.diseno-exterior div.container div.fila .half.inter-text,
section.diseno-interior div.container div.fila .half.inter-text {
  padding-top: 5px;
  padding-bottom: 60px;
}

section.diseno-interior h2 {
  margin-bottom: 35px;
}

section#lateral-trasero {
  padding: 80px 0px;
  color: #212529;
}
section#lateral-trasero .d-flex {
  gap: 30px;
}
section#lateral-trasero .d-flex .half-full {
  width: 50%;
}
section#lateral-trasero .d-flex .half-full img {
  width: 540px;
  border-radius: 4px;
}
section#lateral-trasero .d-flex .half-full h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin: 30px 0px;
}
section#lateral-trasero .d-flex .half-full p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
}

section#capacidad-equipaje {
  padding: 80px 0px;
  color: #212529;
}
section#capacidad-equipaje .d-flex {
  gap: 30px;
}
section#capacidad-equipaje .d-flex .sixty {
  width: 58%;
}
section#capacidad-equipaje .d-flex .sixty img {
  width: 635px;
  height: 367px;
  border-radius: 4px;
}
section#capacidad-equipaje .d-flex .forty {
  width: 40%;
  padding-left: 50px;
  padding-right: 50px;
}
section#capacidad-equipaje .d-flex .forty h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 30px;
}
section#capacidad-equipaje .d-flex .forty p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
}
section#capacidad-equipaje .d-flex .forty .capacidades {
  border: none;
  border-top: 1px solid black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 15px;
}
section#capacidad-equipaje .d-flex .forty .capacidades .model-name {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
}
section#capacidad-equipaje .d-flex .forty .capacidades .liter {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
}
section#capacidad-equipaje .d-flex .forty .capacidades:last-child {
  margin-top: 0px;
}

section#llantas-faros {
  padding: 60px 0px;
  background-color: #1e232e;
}
section#llantas-faros .d-flex {
  gap: 30px;
}
section#llantas-faros .d-flex .third {
  width: 33%;
  display: flex;
  flex-direction: column;
}
section#llantas-faros .d-flex .third img {
  border-radius: 50%;
  margin: 0 auto;
}
section#llantas-faros .d-flex .third h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

section#seguridad {
  padding: 80px 0px;
  background-color: #f3f3f3;
  color: #212529;
}
section#seguridad h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 60px;
}
section#seguridad .d-flex {
  gap: 30px;
}
section#seguridad .d-flex .third {
  width: 33%;
  display: flex;
  flex-direction: column;
}
section#seguridad .d-flex .third img {
  margin: 0 auto;
  width: 100%;
  border-radius: 4px;
}
section#seguridad .d-flex .third h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 30px;
  margin-top: 30px;
}
section#seguridad .d-flex .third ul li {
  list-style: disc;
  margin-left: 2rem;
}
section#seguridad .d-flex .third ul li p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}
section#seguridad .d-flex .third ul li p strong {
  font-weight: 700;
}

section#medidores-pantalla {
  padding: 80px 0px;
  background-color: #1e232e;
}
section#medidores-pantalla .d-flex {
  gap: 30px;
}
section#medidores-pantalla .d-flex .half-full {
  width: 50%;
  color: #fff;
}
section#medidores-pantalla .d-flex .half-full img {
  width: 540px;
  border-radius: 4px;
}
section#medidores-pantalla .d-flex .half-full h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0px 0px 30px;
}
section#medidores-pantalla .d-flex .half-full p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
section#medidores-pantalla .d-flex .half-full p.mb-30 {
  margin-bottom: 30px;
}
section#medidores-pantalla .d-flex .half-full ul li {
  list-style: disc;
  margin-left: 2rem;
}
section#medidores-pantalla .d-flex .half-full ul li p {
  margin-bottom: 10px;
}

.color_slide .color_list .slick-slide .colour-chip {
  /* COROLLA CROSS NEW  */
}
.color_slide .color_list .slick-slide .colour-chip::after {
  top: -1px;
  left: -1px;
}
.color_slide .color_list .slick-slide .colour-chip.color_silverWhite:after {
  background-image: url(../../vehiculo/yaris-cross/imagenes/colores/01-silverWhite-color.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_pearl-color:after {
  background-image: url(../../vehiculo/yaris-cross/imagenes/colores/02-pearl-color.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_silverME-color:after {
  background-image: url(../../vehiculo/yaris-cross/imagenes/colores/03-silverME-color.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_greenish-color:after {
  background-image: url(../../vehiculo/yaris-cross/imagenes/colores/04-greenish-color.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_black-color:after {
  background-image: url(../../vehiculo/yaris-cross/imagenes/colores/05-black-color.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_red-color:after {
  background-image: url(../../vehiculo/yaris-cross/imagenes/colores/06-red-color.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_griz_plata:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/griz-plata.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_blanco_perlado:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/blanco_perlado.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_griz_oscuro:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/griz-oscuro.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_super_blanco:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/super_blanco.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_negro_mica:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/negro-mica.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_rojo_mica_metalizado:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/rojo_mica_metalizado.svg);
}
.color_slide .color_list .slick-slide .colour-chip.color_azul_oscuro_metalizado:after {
  background-image: url(../../vehiculo/new-corolla-cross/img/colores-redondos/azul-oscuro-metalizado.svg);
}

div.section div#Colors h2.colores-title {
  color: #eb0a1e;
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
}

section#view360 {
  padding: 80px 0px;
}
section#view360 h2.title-360 {
  color: #eb0a1e;
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  margin-bottom: 40px;
}

section#seguridad .container > p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 60px;
}

section#desempeno {
  color: #212529;
  padding: 80px 0px;
}
section#desempeno .container h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 30px;
}
section#desempeno .container p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 60px;
}
section#desempeno .container p.mb-30 {
  margin-bottom: 0px;
}
section#desempeno .container div.fila {
  display: flex;
  gap: 30px;
}
section#desempeno .container div.fila div.col-8 {
  padding-left: 0px;
  padding-right: 0px;
}
section#desempeno .container div.fila div.col-8 img {
  width: 730px;
  height: 443px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
section#desempeno .container div.fila div.col-4 {
  padding-left: 0px;
  padding-right: 0px;
}
section#desempeno .container div.fila div.col-4 img {
  width: 350px;
  height: 206px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
section#desempeno .container div.fila div.col-4 img:last-child {
  margin-top: 16px;
}
section#desempeno .container div.fila div.col-4 h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 30px;
}
section#desempeno .container div.fila div.col-4 p.mosaic-text {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 0px;
}

section#Video {
  padding: 80px 0px;
}
section#Video h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 60px;
}

section#galeria {
  background-color: #1e232e;
  padding: 80px 0px;
}
section#galeria h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

section#especificaciones {
  padding: 80px 0px;
  color: #212529;
}
section#especificaciones h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 90px;
}
section#especificaciones .d-flex {
  gap: 30px;
}
section#especificaciones .d-flex .half-full {
  width: 50%;
}
section#especificaciones .d-flex .half-full img {
  width: 540px;
  height: 330px;
}
section#especificaciones .d-flex .half-full .d-flex {
  gap: 30px;
}
section#especificaciones .d-flex .half-full .d-flex #generales,
section#especificaciones .d-flex .half-full .d-flex #motor,
section#especificaciones .d-flex .half-full .d-flex #potencia {
  width: 255px;
  gap: 0px;
}
section#especificaciones .d-flex .half-full .d-flex #generales .specs,
section#especificaciones .d-flex .half-full .d-flex #motor .specs,
section#especificaciones .d-flex .half-full .d-flex #potencia .specs {
  justify-content: space-between;
  border-top: 1px solid #dddedf;
  padding: 12px 15px;
}
section#especificaciones .d-flex .half-full .d-flex #generales .specs p.label,
section#especificaciones .d-flex .half-full .d-flex #motor .specs p.label,
section#especificaciones .d-flex .half-full .d-flex #potencia .specs p.label {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
}
section#especificaciones .d-flex .half-full .d-flex #generales .specs p.date,
section#especificaciones .d-flex .half-full .d-flex #motor .specs p.date,
section#especificaciones .d-flex .half-full .d-flex #potencia .specs p.date {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-align: right;
}
section#especificaciones .d-flex .half-full .d-flex #generales .specs.first,
section#especificaciones .d-flex .half-full .d-flex #motor .specs.first,
section#especificaciones .d-flex .half-full .d-flex #potencia .specs.first {
  border-top: 1px solid #000;
  padding: 18px 15px;
}
section#especificaciones .d-flex .half-full .d-flex #generales .specs.first p.label,
section#especificaciones .d-flex .half-full .d-flex #motor .specs.first p.label,
section#especificaciones .d-flex .half-full .d-flex #potencia .specs.first p.label {
  font-weight: 700;
  line-height: 18px;
}
section#especificaciones .d-flex .half-full .d-flex #motor-potencia {
  gap: 0px;
}
section#especificaciones a {
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
  border-radius: 999px;
  padding: 10px 58px 15px 58px;
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  margin: 0 auto;
  margin-top: 90px;
}

section#model-version {
  padding: 80px 0px;
  color: #212529;
}
section#model-version .container .d-flex {
  gap: 30px;
}
section#model-version .container .d-flex .half-full {
  width: 50%;
}
section#model-version .container .d-flex .half-full h3 {
  font-family: "ToyotaType-Semibold";
  font-size: 34px;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 15px;
}
section#model-version .container .d-flex .half-full img {
  width: 442px;
  height: 294px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#model-version .container .d-flex .half-full p.cuota-desde {
  font-family: "ToyotaType-Semibold";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: center;
}
section#model-version .container .d-flex .half-full p.precio-cuota {
  font-family: "ToyotaType-Semibold";
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 30px;
}
section#model-version .container .d-flex .half-full a {
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  background-color: #eb0a1e;
  border-radius: 999px;
  padding: 10px 30px 15px 30px;
}

section#comparar {
  padding: 80px 0px;
}
section#comparar h2 {
  font-family: "ToyotaType-Bold";
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 50px;
}
section#comparar .btn-comparar {
  padding: 15px 58px;
  border: 2px solid #eb0a1e;
  border-radius: 999px;
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #eb0a1e;
  text-decoration: none;
  width: 302px;
}
section#comparar .btn-comparar:visited, section#comparar .btn-comparar:active {
  text-decoration: none;
  color: #eb0a1e;
}

#Model #models .model-item-hilux {
  display: flex;
  gap: 30px;
  padding: 60px 0px;
}
#Model #models .model-item-hilux h2 {
  color: #000;
  font-family: "ToyotaDisplay";
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0em;
  text-align: left;
}
#Model #models .model-item-hilux ul {
  border-top: 1px solid black;
  padding-top: 12px;
}
#Model #models .model-item-hilux .col-7 {
  flex-basis: auto;
  width: 58%;
}
#Model #models .model-item-hilux .col-5 {
  flex-basis: auto;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Model #models .model-item-hilux .col-5 .btn_list {
  display: flex;
  margin-top: 35px;
}
#Model #models .model-item-hilux .col-5 .btn_list a {
  width: 100%;
  max-width: 215px;
  border-radius: 999px;
  font-family: "ToyotaDisplay";
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  padding: 15px 30px;
}
#Model #models .model-item-hilux .col-5 .btn_list a.brochure {
  color: #eb0a1e;
  border: 2px solid #eb0a1e;
}
#Model #models .model-item-hilux .col-5 .btn_list a.plan {
  color: #fff;
  background-color: #eb0a1e;
  border: 2px solid #eb0a1e;
}

#Gallery-hilux-gral {
  background-color: #1e232e;
  padding: 90px 0px;
  position: relative;
  overflow: hidden;
}
#Gallery-hilux-gral h2 {
  color: #fff;
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 20px;
}
#Gallery-hilux-gral .btn_list {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#Gallery-hilux-gral .btn_list p {
  font-family: "ToyotaDisplay";
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  background-color: transparent;
  padding: 8px 25px;
}
#Gallery-hilux-gral .btn_list p.active {
  background-color: white;
  color: #1e232e;
}
#Gallery-hilux-gral .gallery-container {
  margin-inline: auto;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
#Gallery-hilux-gral .gallery-container.active {
  visibility: visible;
  position: relative;
  opacity: 1;
}

div.hero.hilux-srx {
  background-image: url("../../vehiculo/hilux-srx/imagenes/hilux-main-lg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 545px !important;
  margin-top: 76px;
  color: #212529;
}
div.hero.hilux-srx .call-to-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 81px;
}
div.hero.hilux-srx .call-to-action img.logo {
  width: 250px;
  margin-bottom: 20px;
}
div.hero.hilux-srx .call-to-action .claim {
  font-family: "toyota_b";
  font-size: 42px;
  font-weight: 700;
  line-height: 53px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
  margin-bottom: 22px;
}
div.hero.hilux-srx .call-to-action .btns_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
div.hero.hilux-srx .call-to-action .btns_list a {
  background-color: #eb0a1e;
  color: #fff;
  border-radius: 999px;
  font-family: "ToyotaType-Semibold";
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  padding: 15px 35px;
  width: 340px;
}
div.hero.hilux-srx .call-to-action .btns_list a:hover {
  text-decoration: none;
}
div.hero.hilux-srx .call-to-action .btns_list a#transparent {
  background-color: #ffffff;
  color: #eb0a1e;
  margin-top: 10px;
  margin-bottom: 12px;
}
div.hero.hilux-srx .call-to-action .btns_list .scroll {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
div.hero.hilux-srx .call-to-action .btns_list .scroll p {
  color: #fff;
  padding-top: 5px;
}
div.hero.hilux-srx .call-to-action .scroll {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  margin-top: auto;
}
div.hero.hilux-srx .call-to-action .scroll p {
  color: #fff;
  padding-top: 5px;
}

section#postura-srx {
  padding: 90px 0px;
  background-color: #fff;
  color: #212529;
}
section#postura-srx h2 {
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
}
section#postura-srx h5 {
  font-family: "ToyotaDisplayRegular";
  font-size: 22px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 60px;
}
section#postura-srx div.hilux-srx-postura .col-12.col-md-10 {
  padding-inline: 0px;
}
section#postura-srx div.hilux-srx-postura .col-12.col-md-10 img {
  margin-bottom: 30px;
  width: 100%;
  border-radius: 4px;
}
section#postura-srx div.hilux-srx-postura .row {
  gap: 30px;
}
section#postura-srx div.hilux-srx-postura .row .col-12.col-md-5 {
  padding-inline: 0px;
}
section#postura-srx div.hilux-srx-postura .row .col-12.col-md-5 p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  width: 90%;
}

section#trasero-amortiguador-srx,
section#interior-srx,
section#enfoque-aerodinamico,
section#performance {
  padding: 90px 0px;
  background-color: #f3f3f3;
  color: #212529;
}
section#trasero-amortiguador-srx h2,
section#interior-srx h2,
section#enfoque-aerodinamico h2,
section#performance h2 {
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 72px;
}
section#trasero-amortiguador-srx .d-flex,
section#interior-srx .d-flex,
section#enfoque-aerodinamico .d-flex,
section#performance .d-flex {
  gap: 30px;
}
section#trasero-amortiguador-srx .d-flex .col-12.col-md-6,
section#interior-srx .d-flex .col-12.col-md-6,
section#enfoque-aerodinamico .d-flex .col-12.col-md-6,
section#performance .d-flex .col-12.col-md-6 {
  flex-basis: 50%;
  padding-inline: 0px;
}
section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 img,
section#interior-srx .d-flex .col-12.col-md-6 img,
section#enfoque-aerodinamico .d-flex .col-12.col-md-6 img,
section#performance .d-flex .col-12.col-md-6 img {
  border-radius: 4px;
  width: 100%;
  height: 304px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 h4,
section#interior-srx .d-flex .col-12.col-md-6 h4,
section#enfoque-aerodinamico .d-flex .col-12.col-md-6 h4,
section#performance .d-flex .col-12.col-md-6 h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 30px;
}
section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 p,
section#interior-srx .d-flex .col-12.col-md-6 p,
section#enfoque-aerodinamico .d-flex .col-12.col-md-6 p,
section#performance .d-flex .col-12.col-md-6 p {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.02em;
  text-align: left;
  margin-top: 30px;
}

section#interior-srx {
  padding: 110px 0px;
}

section#enfoque-aerodinamico {
  background-color: #fff;
}
section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 {
  flex-basis: 50%;
  padding-inline: 0px;
}
section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 img.fullHeight {
  height: auto;
}
section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 div.percent65 {
  width: 65%;
}
section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 div.percent65 p.mt-30 {
  margin-top: 30px;
}
section#enfoque-aerodinamico div.d-flex .col-12.col-md-6.grid-center {
  display: grid;
  place-content: center;
}

section#accesories,
section#safety {
  padding: 90px 0px;
  background-color: #1e232e;
}
section#accesories .d-flex,
section#safety .d-flex {
  gap: 30px;
}
section#accesories .d-flex .fourth,
section#safety .d-flex .fourth {
  width: 25%;
  display: flex;
  flex-direction: column;
}
section#accesories .d-flex .fourth img,
section#safety .d-flex .fourth img {
  border-radius: 50%;
  margin: 0 auto;
}
section#accesories .d-flex .fourth h4,
section#safety .d-flex .fourth h4 {
  font-family: "ToyotaType-Semibold";
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 20px;
}
section#accesories .d-flex .fourth p,
section#safety .d-flex .fourth p {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}

div#colors-hilux-srx div.section_inner {
  padding: 110px 0px;
}
div#colors-hilux-srx div.section_inner h2 {
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #212529;
  margin-bottom: 30px;
}

section#safety,
section#performance {
  padding: 110px 0px;
}
section#safety h2,
section#performance h2 {
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 75px;
  color: #fff;
}

section#performance h2 {
  color: #212529;
}
section#performance table.performance {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "Raleway";
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
section#performance table.performance thead {
  border-bottom: 1px solid black;
}
section#performance table.performance td {
  border: none;
  font-size: 14px;
  line-height: 28px;
  overflow: hidden;
  padding: 15px 20px;
  word-break: normal;
  vertical-align: middle;
}
section#performance table.performance th {
  border: none;
  font-weight: 700;
  overflow: hidden;
  padding: 15px 5px;
  word-break: normal;
  vertical-align: middle;
}
section#performance table.performance .bg-gray {
  background-color: #ececec;
}
section#performance table.performance .fw700 {
  font-weight: 700;
}
section#performance table.performance .fw-normal {
  font-weight: 400;
}
section#performance table.performance .bt-1black {
  border-top: 1px solid black;
}
section#performance table.performance .engine {
  text-align: left;
}

section#video-hilux-srx {
  padding: 90px 0px;
}
section#video-hilux-srx h2 {
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #212529;
  margin-bottom: 60px;
}

section#galeria-hilux-srx {
  background-color: #1e232e;
  padding: 90px 0px 50px 0px;
}
section#galeria-hilux-srx h2 {
  font-family: "ToyotaDisplay";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

section#especificaciones-hilux-srx {
  padding: 80px 0px;
  color: #212529;
}
section#especificaciones-hilux-srx h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 45px;
}
section#especificaciones-hilux-srx .d-flex {
  gap: 30px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 {
  width: 100%;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 img,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 img {
  width: 100%;
  height: auto;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs {
  gap: 0px;
  text-align: left;
  width: 90%;
  max-width: 350px;
  margin-left: auto;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs h4,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs h4 {
  font-family: "toyota_b";
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs h5,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs h5 {
  font-family: "ToyotaType-Semibold";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs p.spec-price,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs p.spec-price {
  font-family: "toyota_b";
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.01em;
  color: #eb0a1e;
  margin-left: 15px;
  margin-bottom: 20px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs ul,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs ul {
  padding-inline: 10px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs ul li,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs ul li {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  gap: 10px;
  margin-bottom: 10px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs ul li i,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs ul li i {
  font-weight: 700;
  font-size: 6px;
  font-style: normal;
  vertical-align: top;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 #buttons-srx-specs,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 #buttons-srx-specs {
  width: 100%;
  margin-top: 40px;
  gap: 0px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 #buttons-srx-specs a,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 #buttons-srx-specs a {
  margin-top: 0px;
  width: 100%;
  max-width: 296px;
  border-radius: 999px;
  font-family: "toyota_b";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  padding: 15px 30px;
}
section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 #buttons-srx-specs a.plan,
section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 #buttons-srx-specs a.plan {
  background-color: #eb0a1e;
  color: #fff;
  margin-top: 15px;
}
section#especificaciones-hilux-srx a {
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
  border-radius: 999px;
  padding: 10px 58px 15px 58px;
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  margin: 0 auto;
  margin-top: 45px;
}

@media screen and (min-width: 576px) {
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .col-sm-3 {
    width: calc(20% - 30px);
    flex-basis: calc(20% - 30px);
  }
  .col-sm-4 {
    width: calc(33.3% - 30px);
    flex-basis: calc(33.3% - 30px);
  }
  .col-sm-5 {
    width: calc(42% - 30px);
    flex-basis: calc(42% - 30px);
  }
  .col-sm-6 {
    width: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .col-sm-7 {
    width: calc(58% - 30px);
    flex-basis: calc(58% - 30px);
  }
  .col-sm-12 {
    width: calc(100% - 30px);
    flex-basis: calc(100% - 30px);
  }
}
@media screen and (min-width: 768px) {
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .col-md-3 {
    width: calc(20% - 30px);
    flex-basis: calc(20% - 30px);
  }
  .col-md-4 {
    width: calc(33.3% - 30px);
    flex-basis: calc(33.3% - 30px);
  }
  .col-md-5 {
    width: calc(42% - 30px);
    flex-basis: calc(42% - 30px);
  }
  .col-md-6 {
    width: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .col-md-7 {
    width: calc(58% - 30px);
    flex-basis: calc(58% - 30px);
  }
  .col-md-12 {
    width: calc(100% - 30px);
    flex-basis: calc(100% - 30px);
  }
}
.w-100 {
  width: 100% !important;
}

div#sucursalesMenu {
  justify-content: center;
}
div#sucursalesMenu .btn.toggleMarker {
  width: 15%;
  padding: 7px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  margin: 5px 7px;
  color: #000;
  box-shadow: 0px 0px 7px rgba(51, 51, 51, 0.3);
}
div#sucursalesMenu .btn.toggleMarker label {
  width: 100%;
}
div#sucursalesMenu .btn.toggleMarker.active {
  background-color: #eb0a1e;
  border-color: #eb0a1e;
  color: #fff;
}
div#sucursalesMenu .btn.toggleMarker.active div.icon img {
  filter: brightness(0) invert(1);
}
div#sucursalesMenu .btn.toggleMarker div.icon {
  margin-right: 7px;
}
div#sucursalesMenu .btn.toggleMarker div.icon img {
  width: 2em;
  transition: 0.45s ease;
  -webkit-transition: 0.45s ease;
  -moz-transition: 0.45s ease;
  -o-transition: 0.45s ease;
  -ms-transition: 0.45s ease;
}

.btn:not(.ignore) {
  padding: 0.5rem 1.75rem;
  border-radius: 0.5rem;
  display: inline-block;
  background: #ffffff;
  border: solid thin #f0f0f0;
  transition: 0.45s ease;
  -webkit-transition: 0.45s ease;
  -moz-transition: 0.45s ease;
  -o-transition: 0.45s ease;
  -ms-transition: 0.45s ease;
}
.btn:not(.ignore):hover {
  background: #f5f5f5;
}
.btn:not(.ignore).active {
  color: #eb0a1e;
  color: #fff;
}
.btn:not(.ignore).btn-block {
  width: 100%;
}

ul#listaSucursales {
  padding: 0;
  width: 29%;
  overflow-y: auto;
}
ul#listaSucursales li.branchListItem {
  display: block;
  padding: 15px 10px;
  background: #ebebeb;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
  cursor: pointer;
}
ul#listaSucursales li.branchListItem:nth-child(odd) {
  background: #fafafa;
}
ul#listaSucursales li.branchListItem.active {
  background: #eb0a1e;
}
ul#listaSucursales li.branchListItem.active address {
  color: #fff;
}
ul#listaSucursales li.branchListItem address {
  font-style: normal;
  color: #555;
}
ul#listaSucursales li.branchListItem address h1 {
  font-size: 16px;
}
ul#listaSucursales li.branchListItem address p {
  font-size: 13px;
  line-height: 1.5;
}

ul#listaSucursales,
div#mapaSucursales {
  min-height: 500px;
  height: 60vh;
}

div#mapaSucursales {
  width: 70%;
}

div.baloon {
  font-family: "Raleway";
  padding: 10px 5px;
  max-width: 220px;
  font-weight: 500;
}
div.baloon address,
div.baloon div#hours {
  border-bottom: dotted 2px #cbd4de;
  padding: 0 0 10px;
  margin: 0 0 10px;
}
div.baloon address {
  font-style: normal;
}
div.baloon address h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0.25em 0 0.25em;
  color: #425368;
}
div.baloon address p {
  line-height: 1.2;
  margin-bottom: 5px;
}
div.baloon address a {
  color: #3aaad0;
}
div.baloon ul#phones li {
  display: flex;
  justify-content: space-between;
  color: #eb0a1e;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
}
div.baloon ul#phones li span.number {
  font-weight: 700;
  font-size: 15px;
}
div.baloon ul#phones li a.btn {
  background: #eb0a1e;
  color: #fff;
  font-size: 14px;
  border-radius: 15px;
  padding: 0.35rem 1rem;
}
div.baloon ul#phones li a.btn .icon-phone {
  margin-right: 5px;
}
div.baloon button#getDirs {
  background: #eb0a1e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Raleway";
  border-radius: 15px;
  padding: 7px;
  margin-top: 10px;
}

.local_navigater ul.pattern2 li.whatsapp a {
  background: none;
  position: relative;
}
.local_navigater ul.pattern2 li.whatsapp a:before {
  content: "\f232";
  display: block;
  position: absolute;
  top: 0;
  right: -22px;
  font-size: 150%;
  padding: 19px;
  color: #128c7e;
}

.local_navigater_sp ul.local_navigater_list li.whatsapp a {
  background: none;
  position: relative;
}
.local_navigater_sp ul.local_navigater_list li.whatsapp a:before {
  content: "\f232";
  font-size: 120%;
}

div#contact-data {
  font-size: 18px;
  margin: 30px 0 15px;
  align-items: center;
  justify-content: center;
}
div#contact-data p {
  align-items: center;
  justify-content: center;
  display: inline-flex;
  width: auto;
  margin: 0 15px;
}
div#contact-data p i.fas {
  font-size: 130%;
  margin-right: 10px;
}
div#contact-data p a {
  font-size: 130%;
  color: #eb0a1e;
  margin: 0 7px;
}

div#vehicle-carousel {
  margin: 25px 0;
}
div#vehicle-carousel div.carousel-item {
  margin: 25px;
  padding: 0 15px;
}
div#vehicle-carousel div.carousel-item a {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  position: relative;
}
div#vehicle-carousel div.carousel-item a:before {
  position: absolute;
  z-index: -1;
  background: url(../images/vehicle-carousel/bg.png) center no-repeat;
  display: block;
  opacity: 0.35;
  content: "";
  border-radius: 15px;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
}
div#vehicle-carousel div.carousel-item a:hover:before {
  opacity: 1;
  height: 100%;
}
div#vehicle-carousel div.carousel-item a:hover img.car {
  transform: scale(1.3) translateX(12%) translateY(20%);
}
div#vehicle-carousel div.carousel-item a, div#vehicle-carousel div.carousel-item a > img {
  width: 100%;
}
div#vehicle-carousel div.carousel-item a img {
  display: inline-block;
  transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
}
div#vehicle-carousel div.carousel-item a img.logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 15px;
  display: inline-block;
  width: auto;
}
div#vehicle-carousel div.carousel-item a img.car {
  margin-top: 50px;
  width: 250px;
  transform: translateX(20%);
}
div#vehicle-carousel .slick-prev,
div#vehicle-carousel .slick-next {
  background: white;
  border-radius: 100%;
}
div#vehicle-carousel .slick-prev:before,
div#vehicle-carousel .slick-next:before {
  color: #425368;
  font-size: 50px;
}
div#vehicle-carousel .slick-prev {
  left: 25px;
  z-index: 2;
}
div#vehicle-carousel .slick-next {
  right: 50px;
}

/* .modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
    margin: 0px;
    height: 100%;
} */
div.modal {
  display: none;
  position: fixed;
  z-index: 1005;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}
div.modal.show {
  display: flex;
}
div.modal div.modal-dialog {
  background: #fff;
  max-width: 800px;
  position: relative;
  width: 100%;
  pointer-events: unset;
}
div.modal div.modal-dialog > button.close {
  position: absolute;
  z-index: 5;
  background: #fff;
  top: 0;
  right: 0;
  font-size: 22px;
  margin: 0.5em;
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid thin #4f4f4f;
  color: #4f4f4f;
  border-radius: 100%;
  padding: 10px;
  cursor: pointer;
}
div.modal div.modal-body {
  padding: 15px;
}
div.modal div.modal-body div#backgrounds {
  background: #eb0a1e bottom center no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  margin: -15px 0;
}
div.modal div.modal-body div#backgrounds h1 {
  font-family: "Raleway";
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  padding: 10px 20px;
  width: 100%;
}
div.modal div.modal-body form {
  padding: 30px 50px;
  font-family: "Raleway";
}
div.modal div.modal-body form div.input {
  margin: 10px 0 20px;
}
div.modal div.modal-body form div.input label {
  color: #425368;
  font-size: 15px;
  font-weight: 700;
}
div.modal div.modal-body form .form-control {
  display: block;
  width: calc(100% - 2.2em);
  font-size: 14px;
  padding: 0.5em 1em;
  margin: 10px 0;
  border: solid thin #959595;
}
div.modal div.modal-body form select.form-control {
  width: 100%;
}
div.modal div.modal-body form div.button button {
  display: block;
  width: 100%;
}
div.modal div.modal-body form div.button button[disabled] {
  opacity: 0.6;
}
div.modal div.modal-body form div#disclaimer {
  font-size: 11px;
  line-height: 1.5;
  margin: 15px 0;
}
div.modal div.modal-body form div#disclaimer a {
  color: #eb0a1e;
  font-weight: bold;
}

.grecaptcha-badge {
  display: none !important;
}

.alert {
  padding: 20px 15px;
  border: solid thin #425368;
  background: #a9a9a9;
  color: #4f4f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-bottom: 30px;
  border-radius: 0.3em;
  font-family: "Raleway";
  font-weight: 600;
  position: relative;
}
.alert button.close {
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1.5em;
  height: 1em;
  margin: 5px;
  border: none;
  background: transparent;
  color: inherit;
  opacity: 0.5;
}
.alert button.close:hover {
  opacity: 1;
}
.alert span {
  display: block;
  width: 100%;
  line-height: 1.4;
}
.alert.alert-success {
  border-color: #3e7237;
  background: #cde4ca;
  color: #1f2b1e;
}
.alert.alert-danger {
  border-color: #ad3232;
  background: #f3d1d1;
  color: #4e3030;
}

div#modalQuota div#backgrounds.hilux-srx {
  background-image: url("../images/modal-quote/feb-24/hilux-form-desktop_130224_.jpg");
}
div#modalQuota div#backgrounds.hilux-doble-cabina {
  background-image: url("../images/modal-quote/feb-24/hilux-form-desktop_130224_.jpg");
}
div#modalQuota div#backgrounds.corolla-gli {
  background-image: url("../images/top/25-mar/corolla-gli-form-desktop.jpg");
}
div#modalQuota div#backgrounds.corolla-cross {
  background-image: url("../images/modal-quote/25-abr/cross-form-desktop.jpg");
}
div#modalQuota div#backgrounds.yaris-cross {
  background-image: url("../images/modal-quote/25-jul/yaris-form-desktop.jpg");
}
div#modalQuota div#backgrounds.yaris-cross-hv {
  background-image: url("../images/modal-quote/24-nov/yarisHIB-form-desktop.jpg");
}
div#modalQuota div#backgrounds.corolla {
  background-image: url("../images/modal-quote/25-abr/corolla-form-desktop.jpg");
}
div#modalQuota div#backgrounds.corolla-hibrido {
  background-image: url("../images/modal-quote/GliHibrido.jpg");
}
div#modalQuota div#backgrounds.etios {
  background-image: url("../images/modal-quote/etios-form-desktop.jpg");
}
div#modalQuota div#backgrounds.altis {
  background-image: url("../images/modal-quote/Altis.png");
}
div#modalQuota div#backgrounds.hilux {
  background-image: url("../images/top/25-mar/hilux-form-desktop.jpg");
}
div#modalQuota div#backgrounds.hiluxDX {
  background-image: url("../images/modal-quote/hiluxDX-form-desktop.jpg");
}
div#modalQuota div#backgrounds.hiluxSRV {
  background-image: url("../images/modal-quote/hiluxSRV-form-desktop.jpg");
}
div#modalQuota div#backgrounds.open-showroom {
  background-image: url("../images/modal-quote/24-jun/kv-principal-form-desktop_070624_.jpg");
}
div#modalQuota div#backgrounds.rav4 {
  background-image: url("../images/modal-quote/RAV4.jpg");
}
div#modalQuota div#backgrounds.fortuner {
  background-image: url("../images/modal-quote/25-abr/fortuner-form-desktop.jpg");
}
div#modalQuota div#backgrounds.rush {
  background-image: url("../images/modal-quote/25-jul/rush-form-desktop.jpg");
}
div#modalQuota div#backgrounds.prius {
  background-image: url("../images/modal-quote/Prius.jpg");
}
div#modalQuota div#backgrounds.prado {
  background-image: url("../images/modal-quote/Prado.jpg");
}
div#modalQuota div#backgrounds.landcruiser {
  background-image: url("../images/modal-quote/Land-Cruiser.png");
}
div#modalQuota div#backgrounds.raize {
  background-image: url("../images/modal-quote/25-jul/raize-form-desktop.jpg");
}
div#modalQuota div#backgrounds.chr {
  background-image: url("../images/modal-quote/Chr.jpg");
}
div#modalQuota div#backgrounds.lc-300 {
  background-image: url("../images/modal-quote/LandC300.jpg");
}
div#modalQuota div#backgrounds.new-corolla-cross {
  background-image: url("../images/modal-quote/24-jun/corolla-cross-form-desktop.jpg");
}
div#modalQuota div#backgrounds.new-landcruiser-prado {
  background-image: url("/vehiculo/new-land-cruiser-prado/assets/img/new-prado-form-desktop.jpg");
}

@media screen and (max-width: 1000px) {
  div.hero.yaris-cross {
    background-image: url("../../vehiculo/yaris-cross/imagenes/yaris-main-md.jpg");
  }
}
@media screen and (max-width: 767px) {
  div.modal div.modal-dialog {
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
  }
  div.modal div.modal-dialog div.row .col {
    flex: unset;
  }
  div#modalQuota div#backgrounds {
    height: 284px;
  }
  div#modalQuota div#backgrounds.hilux-srx {
    background-image: url("../images/modal-quote/feb-24/hilux-form-mobile_130224_.jpg");
  }
  div#modalQuota div#backgrounds.hilux-doble-cabina {
    background-image: url("../images/modal-quote/feb-24/hilux-form-mobile_130224_.jpg");
  }
  div#modalQuota div#backgrounds.corolla-gli {
    background-image: url("../images/top/25-mar/corolla-gli-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.corolla {
    background-image: url("../images/modal-quote/25-abr/corolla-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.corolla-hibrido {
    background-image: url("../images/modal-quote/GliHibrido-Mobile.jpg");
  }
  div#modalQuota div#backgrounds.corolla-cross {
    background-image: url("../images/modal-quote/25-abr/cross-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.yaris-cross {
    background-image: url("../images/modal-quote/25-jul/yaris-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.yaris-cross-hv {
    background-image: url("../images/modal-quote/24-nov/yarisHIB-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.etios {
    background-image: url("../images/modal-quote/etios-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.altis {
    background-image: url("../images/modal-quote/Altis-Mobile.png");
  }
  div#modalQuota div#backgrounds.hilux {
    background-image: url("../images/top/25-mar/hilux-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.hiluxDX {
    background-image: url("../images/modal-quote/hiluxDX-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.hiluxSRV {
    background-image: url("../images/modal-quote/hiluxSRV-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.open-showroom {
    background-image: url("../images/modal-quote/24-jun/kv-principal-form-mobile_070624_.jpg");
  }
  div#modalQuota div#backgrounds.rav4 {
    background-image: url("../images/modal-quote/RAV4-Mobile.jpg");
  }
  div#modalQuota div#backgrounds.fortuner {
    background-image: url("../images/modal-quote/25-abr/fortuner-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.rush {
    background-image: url("../images/modal-quote/25-jul/rush-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.prius {
    background-image: url("../images/modal-quote/Prius-Mobile.jpg");
  }
  div#modalQuota div#backgrounds.prado {
    background-image: url("../images/modal-quote/Prado-Mobile.jpg");
  }
  div#modalQuota div#backgrounds.landcruiser {
    background-image: url("../images/modal-quote/Land-Cruiser-Mobile.png");
  }
  div#modalQuota div#backgrounds.raize {
    background-image: url("../images/modal-quote/25-jul/raize-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.chr {
    background-image: url("../images/modal-quote/Chr-Mobile.jpg");
  }
  div#modalQuota div#backgrounds.lc-300 {
    background-image: url("../images/modal-quote/LandC300-Mobile.jpg");
  }
  div#modalQuota div#backgrounds.new-corolla-cross {
    background-image: url("../images/modal-quote/24-jun/corolla-cross-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds.new-landcruiser-prado {
    background-image: url("/vehiculo/new-land-cruiser-prado/assets/img/new-prado-form-mobile.jpg");
  }
  div#modalQuota div#backgrounds h1 {
    font-size: 25px;
    text-align: center;
  }
  div#modalQuota div.modal-body form {
    padding: 30px 0 15px;
  }
  div#modalQuota div.modal-body form .form-control {
    width: 100%;
  }
  div.hero.yaris-cross {
    background-image: url("../../vehiculo/yaris-cross/imagenes/yaris-main-sm.jpg");
    background-size: cover;
    /*max-height: 351px;*/
    height: 480px !important;
  }
  div.hero.yaris-cross .call-to-action {
    display: flex;
    flex-direction: column;
    height: 351px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 15px;
  }
  div.hero.yaris-cross .call-to-action img.logo {
    width: 130px;
  }
  div.hero.yaris-cross .call-to-action .claim {
    font-size: 20px;
    text-align: center;
  }
  div.hero.yaris-cross .call-to-action .btns_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /*margin-top: 15px;*/
    margin-top: 110px;
  }
  div.hero.yaris-cross .call-to-action .btns_list a {
    font-size: 18px;
    padding: 15px 20px;
    max-width: 300px;
  }
  div.hero.yaris-cross .call-to-action .btns_list a#transparent {
    margin-top: 10px;
    margin-bottom: 12px;
  }
  div.hero.yaris-cross .call-to-action .btns_list p {
    color: #fff;
    padding-top: 5px;
  }
  section.diseno-exterior,
  section.diseno-interior {
    padding: 60px 0px 90px 0px;
  }
  section.diseno-exterior h2,
  section.diseno-interior h2 {
    font-family: "ToyotaType-Bold";
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
  }
  section.diseno-exterior h5,
  section.diseno-interior h5 {
    font-family: "Raleway";
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 15px;
  }
  section.diseno-exterior #diseno-exterior,
  section.diseno-exterior #diseno-interior,
  section.diseno-interior #diseno-exterior,
  section.diseno-interior #diseno-interior {
    margin-right: 15px;
    margin-left: -40px;
  }
  section.diseno-exterior #diseno-exterior .slick-dots,
  section.diseno-exterior #diseno-interior .slick-dots,
  section.diseno-interior #diseno-exterior .slick-dots,
  section.diseno-interior #diseno-interior .slick-dots {
    bottom: -70px;
  }
  section.diseno-exterior #diseno-exterior .slick-track .slick-slide,
  section.diseno-exterior #diseno-interior .slick-track .slick-slide,
  section.diseno-interior #diseno-exterior .slick-track .slick-slide,
  section.diseno-interior #diseno-interior .slick-track .slick-slide {
    min-width: 280px !important;
    width: 75vw !important;
    margin-right: 15px;
  }
  section.diseno-exterior #diseno-exterior .slick-track .slick-slide img,
  section.diseno-exterior #diseno-interior .slick-track .slick-slide img,
  section.diseno-interior #diseno-exterior .slick-track .slick-slide img,
  section.diseno-interior #diseno-interior .slick-track .slick-slide img {
    min-width: 280px;
    width: 100%;
    height: 165px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  section.diseno-exterior #diseno-exterior .slick-track .slick-slide p,
  section.diseno-exterior #diseno-interior .slick-track .slick-slide p,
  section.diseno-interior #diseno-exterior .slick-track .slick-slide p,
  section.diseno-interior #diseno-interior .slick-track .slick-slide p {
    font-family: "Raleway";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    min-width: 280px;
    width: 100%;
    margin-top: 30px;
  }
  section.diseno-exterior #diseno-exterior .slick-track .slick-slide ul li,
  section.diseno-exterior #diseno-interior .slick-track .slick-slide ul li,
  section.diseno-interior #diseno-exterior .slick-track .slick-slide ul li,
  section.diseno-interior #diseno-interior .slick-track .slick-slide ul li {
    list-style: disc;
    margin-left: 2rem;
  }
  section.diseno-exterior #diseno-exterior .slick-track .slick-slide ul li p,
  section.diseno-exterior #diseno-interior .slick-track .slick-slide ul li p,
  section.diseno-interior #diseno-exterior .slick-track .slick-slide ul li p,
  section.diseno-interior #diseno-interior .slick-track .slick-slide ul li p {
    margin: 0px;
  }
  section.diseno-exterior #diseno-exterior .slick-dots,
  section.diseno-exterior #diseno-interior .slick-dots,
  section.diseno-interior #diseno-exterior .slick-dots,
  section.diseno-interior #diseno-interior .slick-dots {
    left: 5%;
  }
  section.diseno-interior h2 {
    margin-bottom: 60px;
  }
  section#lateral-trasero {
    padding: 70px 0px;
  }
  section#lateral-trasero .d-flex {
    gap: 60px;
  }
  section#lateral-trasero .d-flex .half-full {
    width: 100%;
  }
  section#lateral-trasero .d-flex .half-full img {
    width: 100%;
  }
  section#lateral-trasero .d-flex .half-full h4 {
    font-size: 24px;
  }
  section#lateral-trasero .d-flex .half-full p {
    font-size: 16px;
  }
  section#capacidad-equipaje {
    padding: 60px 0px;
  }
  section#capacidad-equipaje .d-flex {
    gap: 30px;
  }
  section#capacidad-equipaje .d-flex .sixty {
    width: 100%;
  }
  section#capacidad-equipaje .d-flex .sixty img {
    width: 100%;
    height: auto;
  }
  section#capacidad-equipaje .d-flex .forty {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  section#capacidad-equipaje .d-flex .forty h4 {
    font-size: 24px;
  }
  section#capacidad-equipaje .d-flex .forty p {
    font-size: 16px;
  }
  section#llantas-faros .d-flex {
    gap: 60px;
  }
  section#llantas-faros .d-flex .third {
    width: 100%;
  }
  section#llantas-faros .d-flex .third h4 {
    font-size: 22px;
  }
  section#seguridad {
    padding: 60px 0px;
  }
  section#seguridad h2 {
    font-size: 32px;
    line-height: 40px;
  }
  section#seguridad .d-flex {
    gap: 60px;
  }
  section#seguridad .d-flex .third {
    width: 100%;
  }
  section#seguridad .d-flex .third h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  section#seguridad .d-flex .third ul li p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 29px;
  }
  section#seguridad .d-flex .third ul li p strong {
    font-weight: 700;
  }
  section#medidores-pantalla {
    padding: 60px 0px;
    background-color: #1e232e;
  }
  section#medidores-pantalla .d-flex {
    gap: 0px;
  }
  section#medidores-pantalla .d-flex.no-gap {
    gap: 0px;
  }
  section#medidores-pantalla .d-flex .half-full {
    width: 100%;
  }
  section#medidores-pantalla .d-flex .half-full img {
    width: 100%;
    border-radius: 4px;
  }
  section#medidores-pantalla .d-flex .half-full img.mb-30 {
    margin-bottom: 30px;
  }
  section#medidores-pantalla .d-flex .half-full h4 {
    font-size: 24px;
  }
  section#medidores-pantalla .d-flex .half-full p {
    font-size: 16px;
    line-height: 29px;
  }
  section#medidores-pantalla .d-flex .half-full ul li {
    list-style: disc;
    margin-left: 2rem;
  }
  div.section div#Colors h2.colores-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
    font-family: var(--font-toyota-display);
  }
  div.section div#Colors .color_list {
    width: 90%;
    margin: 0 auto;
  }
  section#desempeno {
    color: #212529;
    padding: 60px 0px;
  }
  section#desempeno .container h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 60px;
  }
  section#desempeno .container img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 4px;
  }
  section#desempeno .container p {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 60px;
  }
  section#desempeno .container p.mb-30 {
    margin-bottom: 30px;
    text-align: left;
  }
  section#desempeno .container p br {
    margin-bottom: 30px;
  }
  section#desempeno .container h4 {
    font-family: "ToyotaType-Semibold";
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
  }
  section#desempeno .container div.fila {
    display: flex;
    gap: 30px;
  }
  section#desempeno .container div.fila div.col-8 {
    padding-left: 0px;
    padding-right: 0px;
  }
  section#desempeno .container div.fila div.col-8 img {
    width: 730px;
    height: 443px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  section#desempeno .container div.fila div.col-4 {
    padding-left: 0px;
    padding-right: 0px;
  }
  section#desempeno .container div.fila div.col-4 img {
    width: 350px;
    height: 206px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  section#desempeno .container div.fila div.col-4 img:last-child {
    margin-top: 16px;
  }
  section#desempeno .container div.fila div.col-4 h4 {
    font-family: "ToyotaType-Semibold";
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 30px;
  }
  section#desempeno .container div.fila div.col-4 p.mosaic-text {
    font-family: "Raleway";
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  section#Video {
    padding: 60px 0px;
  }
  section#Video h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  section#galeria {
    padding: 30px 0px;
  }
  section#galeria h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  section#galeria div#main-carousel {
    width: 100%;
  }
  section#galeria div#main-carousel .splide__slide img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
    width: 100%;
    height: 200px;
  }
  section#galeria div#thumbnails {
    display: none;
  }
  section#especificaciones {
    padding: 80px 0px;
    color: #212529;
  }
  section#especificaciones h2 {
    font-family: "ToyotaType-Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: 0em;
    text-align: center;
    color: #eb0a1e;
    margin-bottom: 45px;
  }
  section#especificaciones .d-flex {
    gap: 30px;
  }
  section#especificaciones .d-flex .half-full {
    width: 100%;
  }
  section#especificaciones .d-flex .half-full img {
    width: 100%;
    height: auto;
  }
  section#especificaciones .d-flex .half-full .d-flex {
    gap: 30px;
  }
  section#especificaciones .d-flex .half-full .d-flex #generales,
  section#especificaciones .d-flex .half-full .d-flex #motor,
  section#especificaciones .d-flex .half-full .d-flex #potencia {
    width: 100%;
    gap: 0px;
  }
  section#especificaciones .d-flex .half-full .d-flex #generales .specs,
  section#especificaciones .d-flex .half-full .d-flex #motor .specs,
  section#especificaciones .d-flex .half-full .d-flex #potencia .specs {
    justify-content: space-between;
    border-top: 1px solid #dddedf;
    padding: 12px 15px;
  }
  section#especificaciones .d-flex .half-full .d-flex #generales .specs p.label,
  section#especificaciones .d-flex .half-full .d-flex #motor .specs p.label,
  section#especificaciones .d-flex .half-full .d-flex #potencia .specs p.label {
    font-family: "Raleway";
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-align: left;
  }
  section#especificaciones .d-flex .half-full .d-flex #generales .specs p.date,
  section#especificaciones .d-flex .half-full .d-flex #motor .specs p.date,
  section#especificaciones .d-flex .half-full .d-flex #potencia .specs p.date {
    font-family: "Raleway";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-align: right;
  }
  section#especificaciones .d-flex .half-full .d-flex #generales .specs.first,
  section#especificaciones .d-flex .half-full .d-flex #motor .specs.first,
  section#especificaciones .d-flex .half-full .d-flex #potencia .specs.first {
    border-top: 1px solid #000;
    padding: 18px 15px;
  }
  section#especificaciones .d-flex .half-full .d-flex #generales .specs.first p.label,
  section#especificaciones .d-flex .half-full .d-flex #motor .specs.first p.label,
  section#especificaciones .d-flex .half-full .d-flex #potencia .specs.first p.label {
    font-weight: 700;
  }
  section#especificaciones a {
    color: #eb0a1e;
    border: 1px solid #eb0a1e;
    border-radius: 999px;
    padding: 10px 58px 15px 58px;
    font-family: "ToyotaType-Semibold";
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    margin: 0 auto;
    margin-top: 45px;
  }
  section#model-version {
    padding: 50px 0px;
  }
  section#model-version .container .d-flex {
    gap: 100px;
  }
  section#model-version .container .d-flex .half-full {
    width: 100%;
  }
  section#model-version .container .d-flex .half-full h3 {
    font-size: 28px;
    line-height: 36px;
  }
  section#model-version .container .d-flex .half-full img {
    width: 324px;
    height: 216px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#model-version .container .d-flex .half-full p.precio-cuota {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
  }
  section#comparar {
    padding: 60px 0px;
  }
  section#comparar h2 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  section#comparar .btn-comparar:visited, section#comparar .btn-comparar:active {
    text-decoration: none;
    color: #eb0a1e;
  }
  #Model #models .model-item-hilux {
    flex-direction: column;
    padding-inline: 15px;
  }
  #Model #models .model-item-hilux .col-7,
  #Model #models .model-item-hilux .col-5 {
    width: 100%;
  }
  #Model #models .model-item-hilux .col-7 .btn_list,
  #Model #models .model-item-hilux .col-5 .btn_list {
    flex-direction: column;
  }
  #Model #models .model-item-hilux .col-7 .btn_list a,
  #Model #models .model-item-hilux .col-5 .btn_list a {
    max-width: none;
  }
  div.hero.hilux-srx {
    background-image: url("../../vehiculo/hilux-srx/imagenes/hilux-main-sm.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 545px !important;
    margin-top: 76px;
    color: #212529;
  }
  div.hero.hilux-srx .container {
    height: 100%;
  }
  div.hero.hilux-srx .container .call-to-action {
    height: 100%;
    align-items: center;
    padding-top: 30px;
  }
  div.hero.hilux-srx .container .call-to-action img.logo {
    width: 186px;
    margin-bottom: 20px;
  }
  div.hero.hilux-srx .container .call-to-action .claim {
    font-family: "toyota_b";
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    margin-bottom: 10px;
  }
  div.hero.hilux-srx .container .call-to-action .btns_list {
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: 40px;
  }
  div.hero.hilux-srx .container .call-to-action .btns_list a {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    padding: 15px 20px;
    width: 100%;
  }
  div.hero.hilux-srx .container .call-to-action .btns_list a:hover {
    text-decoration: none;
  }
  div.hero.hilux-srx .container .call-to-action .btns_list a#transparent {
    background-color: #ffffff;
    color: #eb0a1e;
    margin-top: 10px;
    margin-bottom: 12px;
  }
  div.hero.hilux-srx .container .call-to-action .btns_list .scroll {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  div.hero.hilux-srx .container .call-to-action .btns_list .scroll p {
    color: #fff;
    padding-top: 5px;
  }
  div.hero.hilux-srx .container .call-to-action .scroll {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: center;
    margin-top: auto;
  }
  div.hero.hilux-srx .container .call-to-action .scroll p {
    color: #fff;
    padding-top: 5px;
  }
  #Gallery-hilux-gral {
    background-color: #1e232e;
    padding: 60px 0px;
    position: relative;
  }
  #Gallery-hilux-gral h2 {
    color: #fff;
    font-family: "ToyotaDisplay";
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 20px;
  }
  #Gallery-hilux-gral .btn_list {
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
  }
  section#postura-srx {
    padding: 60px 0px;
  }
  section#postura-srx h2 {
    font-size: 32px;
    line-height: 40px;
    width: 90%;
    margin-inline: auto;
  }
  section#postura-srx h5 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 30px;
    width: 90%;
    margin-inline: auto;
  }
  section#postura-srx div.hilux-srx-postura .col-12.col-md-10 {
    padding-inline: 0px;
    width: 100%;
  }
  section#postura-srx div.hilux-srx-postura .col-12.col-md-10 img {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 4px;
  }
  section#postura-srx div.hilux-srx-postura .row {
    gap: 30px;
  }
  section#postura-srx div.hilux-srx-postura .row .col-12.col-md-5 p {
    font-size: 16px;
    width: 100%;
  }
  section#trasero-amortiguador-srx,
  section#interior-srx,
  section#enfoque-aerodinamico,
  section#performance {
    padding: 70px 0px;
  }
  section#trasero-amortiguador-srx h2,
  section#interior-srx h2,
  section#enfoque-aerodinamico h2,
  section#performance h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 60px;
  }
  section#trasero-amortiguador-srx .d-flex,
  section#interior-srx .d-flex,
  section#enfoque-aerodinamico .d-flex,
  section#performance .d-flex {
    gap: 30px;
  }
  section#trasero-amortiguador-srx .d-flex .col-12.col-md-6,
  section#interior-srx .d-flex .col-12.col-md-6,
  section#enfoque-aerodinamico .d-flex .col-12.col-md-6,
  section#performance .d-flex .col-12.col-md-6 {
    width: 100%;
    flex-basis: 50%;
    padding-inline: 0px;
  }
  section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 img,
  section#interior-srx .d-flex .col-12.col-md-6 img,
  section#enfoque-aerodinamico .d-flex .col-12.col-md-6 img,
  section#performance .d-flex .col-12.col-md-6 img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 h4,
  section#interior-srx .d-flex .col-12.col-md-6 h4,
  section#enfoque-aerodinamico .d-flex .col-12.col-md-6 h4,
  section#performance .d-flex .col-12.col-md-6 h4 {
    font-size: 24px;
  }
  section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 h4.mt-0,
  section#interior-srx .d-flex .col-12.col-md-6 h4.mt-0,
  section#enfoque-aerodinamico .d-flex .col-12.col-md-6 h4.mt-0,
  section#performance .d-flex .col-12.col-md-6 h4.mt-0 {
    margin-top: 0px;
  }
  section#trasero-amortiguador-srx .d-flex .col-12.col-md-6 p,
  section#interior-srx .d-flex .col-12.col-md-6 p,
  section#enfoque-aerodinamico .d-flex .col-12.col-md-6 p,
  section#performance .d-flex .col-12.col-md-6 p {
    font-family: "Raleway";
    font-size: 16px;
    line-height: 28px;
  }
  section#interior-srx {
    padding: 90px 0px;
  }
  section#enfoque-aerodinamico {
    padding: 90px 0px;
  }
  section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 {
    flex-basis: 50%;
    padding-inline: 0px;
  }
  section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 img.fullHeight {
    height: 194px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 div.percent65 {
    width: 100%;
  }
  section#enfoque-aerodinamico div.d-flex .col-12.col-md-6 div.percent65 p.mt-30 {
    margin-top: 30px;
  }
  section#enfoque-aerodinamico div.d-flex .col-12.col-md-6.grid-center {
    display: grid;
    place-content: center;
  }
  section#accesories,
  section#safety {
    padding: 90px 0px;
    background-color: #1e232e;
  }
  section#accesories .d-flex,
  section#safety .d-flex {
    gap: 30px;
  }
  section#accesories .d-flex .fourth,
  section#safety .d-flex .fourth {
    width: 100%;
  }
  section#accesories .d-flex .fourth img,
  section#safety .d-flex .fourth img {
    border-radius: 50%;
    margin-inline: auto;
    margin-top: 15px;
  }
  section#accesories .d-flex .fourth h4,
  section#safety .d-flex .fourth h4 {
    margin-bottom: 15px;
    margin-top: 10px;
  }
  section#safety,
  section#performance {
    padding: 90px 0px;
  }
  section#safety h2,
  section#performance h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 30px;
  }
  section#performance {
    padding: 60px 0px;
  }
  section#performance h2 {
    margin-bottom: 60px;
  }
  section#performance p {
    font-size: 18px;
  }
  section#performance table.performance {
    margin-top: 30px;
  }
  section#performance table.performance td {
    padding: 15px 5px;
  }
  section#video-hilux-srx {
    padding: 90px 0px;
  }
  section#video-hilux-srx h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  section#video-hilux-srx .embed-responsive.embed-responsive-16by9.d-md-none video {
    padding-inline: 15px !important;
  }
  section#galeria-hilux-srx {
    background-color: #1e232e;
    padding: 90px 0px 50px 0px;
  }
  section#galeria-hilux-srx h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  section#galeria-hilux-srx .col-12.col-md-7 {
    padding-inline: 0px;
  }
  section#especificaciones-hilux-srx {
    padding: 80px 0px;
    color: #212529;
  }
  section#especificaciones-hilux-srx h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 30px;
  }
  section#especificaciones-hilux-srx .d-flex {
    gap: 30px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 {
    width: 100%;
    padding-inline: 0px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 img,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 img {
    width: 100%;
    height: auto;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs {
    gap: 0px;
    text-align: center;
    width: 1000%;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs h4,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs h4 {
    margin-top: 30px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs p.spec-price,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs p.spec-price {
    margin-bottom: 30px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs ul,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs ul {
    padding-inline: 0px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 .specs ul li,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 .specs ul li {
    flex-direction: row;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 #buttons-srx-specs,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 #buttons-srx-specs {
    width: 100%;
    margin-top: 25x;
    gap: 0px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 #buttons-srx-specs a,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 #buttons-srx-specs a {
    margin-top: 0px;
    width: 100%;
    max-width: unset;
    margin-top: 15px;
  }
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-5 #buttons-srx-specs a.plan,
  section#especificaciones-hilux-srx .d-flex .col-12.col-md-7 #buttons-srx-specs a.plan {
    background-color: #eb0a1e;
    color: #fff;
    border-radius: 999px;
    font-family: "toyota_b";
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    padding: 15px 30px;
  }
  section#especificaciones-hilux-srx a {
    color: #eb0a1e;
    border: 1px solid #eb0a1e;
    border-radius: 999px;
    padding: 10px 58px 15px 58px;
    font-family: "ToyotaType-Semibold";
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    margin: 0 auto;
    margin-top: 45px;
  }
}
@media screen and (max-width: 550px) and (min-width: 1px) {
  .sp .carName .button_l {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 375px) {
  section.diseno-exterior #diseno-exterior,
  section.diseno-interior #diseno-interior {
    margin-right: 15px;
    margin-left: 0px;
  }
}
@media screen and (min-width: 390px) {
  section.diseno-exterior #diseno-exterior,
  section.diseno-interior #diseno-interior {
    margin-right: 15px;
    margin-left: -2vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  /* estilos específicos para tablets */
  section.diseno-exterior div.container div.fila div.col-8 img,
  section.diseno-interior div.container div.fila div.col-8 img,
  section.diseno-exterior div.container div.fila div.col-4 img,
  section.diseno-interior div.container div.fila div.col-4 img section.diseno-exterior div.container div.fila .half img,
  section.diseno-interior div.container div.fila .half img,
  #diseno-int > div.container.d-none.d-md-block > div:nth-child(3) > div.col-4 > img {
    width: 100% !important;
    height: auto !important;
  }
  section#llantas-faros .d-flex .third img {
    width: 100% !important;
    margin-top: auto !important;
  }
  section.diseno-exterior div.container div.fila div.col-8 img,
  section.diseno-interior div.container div.fila div.col-8 img,
  #diseno-ext > div.container.d-none.d-md-block > div:nth-child(3) > div:nth-child(1) > img,
  #lateral-trasero > div > div > div:nth-child(1) > img,
  #lateral-trasero > div > div > div:nth-child(2) > img {
    width: 100% !important;
  }
  section#desempeno .container div.fila div.col-8 img,
  #medidores-pantalla > div > div > div:nth-child(1) > img,
  #medidores-pantalla > div > div > div:nth-child(2) > img.d-none.d-md-block {
    width: 100% !important;
  }
  section#desempeno .container div.fila div.col-4 img,
  #capacidad-equipaje > div > div > div.sixty > img,
  #especificaciones > div > div.d-flex.flex-column.flex-md-row.text-center > div:nth-child(1) > img,
  section#model-version .container .d-flex .half-full img {
    width: 100% !important;
    height: auto !important;
  }
  section#galeria div#main-carousel .splide__slide img {
    height: auto !important;
  }
  section#model-version .container .d-flex .half-full a {
    width: 100% !important;
    display: block !important;
    font-size: 16px !important;
  }
  section#model-version .container .d-flex .half-full h3 {
    font-size: 24px !important;
  }
  #capacidad-equipaje > div > div,
  #especificaciones > div > div.d-flex.flex-column.flex-md-row.text-center {
    flex-direction: column !important;
  }
  #capacidad-equipaje > div > div > div.sixty,
  #capacidad-equipaje > div > div > div.forty,
  section#especificaciones .d-flex .half-full {
    width: 100% !important;
  }
  #especificaciones > div > div.d-flex.flex-column.flex-md-row.text-center > div:nth-child(2) > div {
    justify-content: center !important;
  }
  section#seguridad .d-flex .third img {
    margin: 0 auto;
    width: 100% !important;
    border-radius: 4px;
    height: 116px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
}
#cars-mobile {
  display: none !important;
}

.compara {
  background-color: #eb0a1e !important;
}
.compara a {
  color: white !important;
}

.index-menu {
  width: -webkit-fill-available;
  width: -moz-available;
  padding: 50px 150px;
}
.index-menu img {
  margin: auto;
  display: block;
}

.agenda-test {
  border-radius: 5px;
  background-image: url(/asset/images/index/test_drive-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 215px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.agenda-test .agenda-content {
  padding: 60px;
}
.agenda-test .agenda-content img {
  display: block;
  margin: auto;
}
.agenda-test .agenda-content p {
  margin-top: 10px;
  font-family: "toyota_b";
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
}

.punto-sucursales {
  border-radius: 5px;
  background-image: url(/asset/images/index/sucursales-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 215px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.punto-sucursales .suc-content {
  padding: 60px;
}
.punto-sucursales .suc-content img {
  display: block;
  margin: auto;
}
.punto-sucursales .suc-content p {
  margin-top: 10px;
  font-family: "toyota_b";
  color: #eb0a1e;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
}

.reserva-service {
  border-radius: 5px;
  background-image: url(/asset/images/index/service-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 215px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.reserva-service .reserva-content {
  padding: 60px;
}
.reserva-service .reserva-content img {
  display: block;
  margin: auto;
}
.reserva-service .reserva-content p {
  margin-top: 10px;
  font-family: "toyota_b";
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
}

.vehicles-div h3 {
  font-family: "toyota_b";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 39px;
  align-items: center;
  text-align: center;
  color: #000;
}

.tab-vehicles {
  margin: 30px 0;
  justify-content: center;
  align-items: center;
}
.tab-vehicles a {
  padding: 10px 20px;
  font-family: Raleway;
  color: #000;
  font-weight: 500;
  border-bottom: 4px solid #959595;
}

.v-active {
  font-family: Raleway;
  color: #000;
  font-weight: bold !important;
  border-bottom: 4px solid red !important;
}

.tab-vehicles-content {
  width: -webkit-fill-available;
  width: -moz-available;
  padding: 20px;
  padding-bottom: 120px;
}
.tab-vehicles-content .cars-line {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.tab-vehicles-content .cars-line .cars-line-item {
  position: relative;
  margin: 0 15px;
  background-color: rgba(149, 149, 149, 0.1215686275);
  height: 110px;
  border-radius: 5px;
}
.tab-vehicles-content .cars-line .cars-line-item .car-logo {
  position: absolute;
  top: 10px;
  left: 5px;
}
.tab-vehicles-content .cars-line .cars-line-item .car-car {
  transition: transform 0.2s;
  position: absolute;
  bottom: -50px;
  width: 230px;
  right: -25px;
}
.tab-vehicles-content .cars-line .cars-line-item .car-car:hover {
  transform: scale(1.3);
}
.tab-vehicles-content .car-line:hover {
  transform: scale(1.3);
}

.redes {
  width: -webkit-fill-available;
  width: -moz-available;
  background: #eff0f0;
  border-bottom: 1px solid #dddedf;
  display: inline-flex;
  align-items: center;
  padding: 30px;
  align-content: center;
  justify-content: center;
}
.redes p {
  margin-right: 20px;
  font-family: Raleway;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}
.redes li {
  margin: 0 5px;
  list-style: none;
}

@media screen and (max-width: 600px) {
  .header .header_inner {
    margin: 0px 0px;
  }
  .index-menu {
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 10px;
  }
  .index-menu .row .col-4 {
    width: 100% !important;
    flex-basis: 100%;
  }
  #cars-desktop {
    display: none !important;
  }
  #cars-mobile {
    display: block !important;
  }
  .tab-vehicles-content {
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 20px;
    padding-bottom: 20px;
  }
  .tab-vehicles-content .cars-line {
    display: block;
    width: 100%;
  }
  .tab-vehicles-content .cars-line .cars-line-item {
    width: 90%;
    position: relative;
    margin-bottom: 32px;
    background-color: rgba(149, 149, 149, 0.168627451);
    height: 150px;
    border-radius: 5px;
  }
  .tab-vehicles-content .cars-line .cars-line-item .car-logo {
    position: absolute;
    top: 10px;
    left: 5px;
  }
  .tab-vehicles-content .cars-line .cars-line-item .car-car {
    position: absolute;
    bottom: -30px;
    width: 250px;
    right: -30px;
  }
  .dots-xd {
    display: flex !important;
    border: none;
    outline-style: none;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
  }
  .dots-xd li {
    display: inline;
    margin: auto 5px;
  }
  button#slick-slide-control00 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control01 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control02 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control03 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control04 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control05 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control21 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control10 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control11 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control12 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control13 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control14 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control20 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control22 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control23 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control23 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control24 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control25 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control26 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control27 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control28 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control29 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control30 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control31 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control32 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control33 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control34 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control35 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control36 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control37 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control38 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control39 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control40 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control41 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control42 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control43 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control44 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control45 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control46 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control47 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control48 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control49 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  button#slick-slide-control50 {
    border: none;
    background-color: grey;
    border-radius: 50%;
    color: grey;
  }
  .slick-active button#slick-slide-control00 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control01 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control02 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control03 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control04 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control05 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control10 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control11 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control12 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control13 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control14 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control15 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control20 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control21 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control22 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control23 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control23 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control24 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control25 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control26 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control27 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control28 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control29 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control30 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control31 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control32 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control33 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control34 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control35 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control36 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control37 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control38 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control39 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control40 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control41 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control42 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control43 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control44 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control45 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control46 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control47 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control48 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control49 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .slick-active button#slick-slide-control50 {
    border: none;
    background-color: #ea2346;
    border-radius: 50%;
    color: #ea2346;
  }
  .agenda-test {
    width: 100%;
    border-radius: 5px;
    background-image: url(/asset/images/index/test_drive-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 15px 0;
  }
  .agenda-test .agenda-content {
    display: inline-flex;
    margin-left: 10px;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
  .agenda-test .agenda-content img {
    display: block;
    margin: auto;
  }
  .agenda-test .agenda-content p {
    margin-left: 6px;
    margin-top: 10px;
    font-family: "toyota_b";
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
  }
  .punto-sucursales {
    width: 100%;
    border-radius: 5px;
    background-image: url(/asset/images/index/sucursales-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 15px 0;
  }
  .punto-sucursales .suc-content {
    display: inline-flex;
    margin-left: -100px;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
  .punto-sucursales .suc-content img {
    display: block;
    margin: auto;
  }
  .punto-sucursales .suc-content p {
    margin-top: 10px;
    font-family: "toyota_b";
    color: #eb0a1e;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .reserva-service {
    width: 100%;
    border-radius: 5px;
    background-image: url(/asset/images/index/service-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 15px 0;
  }
  .reserva-service .reserva-content {
    display: inline-flex;
    margin-left: 40px;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
  .reserva-service .reserva-content img {
    display: block;
    margin: auto;
  }
  .reserva-service .reserva-content p {
    margin-top: 10px;
    font-family: "toyota_b";
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-align: center;
  }
}
.fancybox-content {
  padding: 10px;
}

.section_gray {
  background: #F3F3F3;
}

.section_dark {
  background: #333333;
}
.section_dark h2,
.section_dark p,
.section_dark .text {
  color: #fff !important;
}

.new_model {
  font-family: "Raleway";
}
.new_model .hero.visual.visual_under div.row {
  flex: 100%;
  justify-content: flex-end;
}
.new_model .hero.visual.visual_under div.row span.carName {
  display: block;
  margin-bottom: 30px;
}
.new_model .hero.visual.visual_under .visual__under_inner .overview_text {
  width: 1100px;
}
.new_model div.btn_list .button_l {
  border-width: 2px;
  font-weight: bold;
}
.new_model div.btn_list .button_l.btn_type_7 {
  background: #eb0a1e;
  color: #fff;
}
.new_model div.btn_list .button_l.btn_type_6 {
  background: #fff;
  border-color: #eb0a1e;
  color: #4f4f4f;
}
.new_model div.btn_list.block {
  flex-wrap: wrap;
}
.new_model div.btn_list.block a.button_l {
  display: block;
  margin: 15px 0;
}
.new_model div.l_nav ul.l_nav_list.type2 li a {
  font-family: "Raleway";
  font-weight: 500;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  font-size: 20px;
}
.new_model .section .section_inner {
  max-width: 1190px;
  width: auto;
}
.new_model .section .section_inner .images {
  margin-top: -200px;
}
.new_model .section .section_inner div.image,
.new_model .section .section_inner div.content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.new_model .section .section_inner h2 {
  color: #eb0a1e;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.2;
  margin: 10px 0 15px;
}
.new_model .section .section_inner h3 {
  color: #eb0a1e;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin: 10px 0 15px;
}
.new_model .section .section_inner p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 15px;
}
.new_model .section .section_inner:not(#Colors) figure img {
  width: 100%;
}
.new_model .section .section_inner .feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -15px;
  margin-bottom: 15px;
}
.new_model .section .section_inner .feature figure {
  max-width: 145px;
  padding: 0 15px;
  width: 100%;
}
.new_model .section .section_inner .feature figure img {
  width: 100%;
}
.new_model .section .section_inner .feature figure.big {
  max-width: 320px;
}
.new_model .section .section_inner .feature div.text {
  padding: 0 15px;
  line-height: 1.3;
}
.new_model .section .section_inner .article {
  border-radius: 15px;
  padding: 30px 50px;
}
.new_model .section .section_inner .article h3 {
  color: #fff;
}
.new_model .section.intro {
  text-align: center;
  padding: 80px 0;
}
.new_model div.row.line {
  padding: 30px 0;
  width: 100%;
  justify-content: space-between;
}
.new_model div.row.line p {
  text-align: center;
  margin: 10px 0;
  font-size: 16px;
}
.new_model div.row.line figure {
  margin: 0 auto;
  text-align: center;
}
.new_model div.row.line figure img {
  max-width: 190px;
  width: 100%;
}
.new_model div.row.line-2 div[class^=col] {
  margin-top: 15px;
  flex-grow: 2;
}
.new_model div.row.line-2 p {
  text-align: left;
  margin: 10px 0;
  font-size: 17px;
}
.new_model div.row.line-2 figure {
  margin: 0 auto;
  text-align: center;
}
.new_model div.row.line-2 figure img {
  width: 100%;
}
.new_model div#models {
  margin: 30px 0;
}
.new_model div#models h3 {
  color: #425368;
  font-weight: 600;
  font-size: 40px;
  margin: 10px 0 15px;
}
.new_model div#models figure {
  text-align: center;
  margin: 20px 0;
}
.new_model div#models figure img {
  display: inline-block;
  width: auto !important;
}
.new_model div#models p,
.new_model div#models ul > li {
  font-size: 16px;
  line-height: 1.5;
  margin: 5px 0 10px;
}
.new_model div#models ul {
  padding-left: 20px;
  list-style: disc;
}
.new_model div#models ul li {
  list-style: disc;
}
.new_model div#models.model-section {
  border-radius: 30px;
  overflow: hidden;
}
.new_model div#models.model-section h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.new_model div#models.model-section div.data {
  padding: 40px;
  font-size: 16px;
  margin: 0 auto;
  max-width: 300px;
}
.new_model div#models.model-section p {
  font-size: 18px;
  line-height: 1.3;
  margin: 5px 0 5px;
}
.new_model div#models.model-section > div {
  margin: 0;
}
.new_model div#models.model-section > div:first-child {
  background: #d2d3d5;
}
.new_model div#models.model-section > div:last-child {
  background: #f0f0f0;
}
.new_model #vehicle-slider {
  width: 100%;
}
.new_model #vehicle-slider div.item {
  margin: 0 30px;
}
.new_model #vehicle-slider div.item figure {
  width: 100%;
  max-width: 600px;
  margin: 15px auto;
}
.new_model #vehicle-slider div.item figure img {
  width: 100%;
}
.new_model #vehicle-slider div.item figure figcaption {
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.gallery_slide .gallery3.gallery_list .slick-arrow {
  top: 63%;
}

@media screen and (max-width: 990px) {
  #Motor {
    margin-bottom: 80px;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  .new_model .section .section_inner .images {
    margin-top: 0px;
  }
  .new_model .section .section_inner div.image,
  .new_model .section .section_inner div.content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .new_model .section .section_inner h2 {
    font-size: 28px;
  }
  .new_model .section .section_inner p {
    font-size: 14px;
    text-align: justify;
  }
  .new_model .section .section_inner:not(#Colors) figure img {
    width: 100%;
  }
  .new_model .section.intro {
    text-align: center;
    padding: 80px 0;
  }
  .new_model div#models {
    margin: 30px 0;
  }
  .new_model div#models div[class^=col] {
    margin-bottom: 30px;
  }
  .new_model div#models h3 {
    font-size: 32px;
    text-align: center;
  }
  .new_model div#models p,
  .new_model div#models ul > li {
    text-align: justify;
    font-size: 14px;
  }
  .new_model div#models.model-section > div {
    margin: 0;
  }
  .new_model div.row.line-2 figure img {
    max-width: 220px;
  }
  .new_model div.row.line-2 p {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .new_model .section .section_inner .feature {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
  .new_model .section .section_inner .feature figure {
    margin: 10px auto;
  }
}
main#duathlon section#intro {
  position: relative;
  height: calc(100vh - 105px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/duathlon-series/png/flechas-negras.png") top left -22px, url("../images/duathlon-series/png/flechas-negras.png") top 55% right -21px;
  background-repeat: no-repeat;
  background-color: #000;
  color: #fff;
}
main#duathlon section#intro figure#logo {
  margin-bottom: 55px;
  margin-top: -50px;
  text-align: center;
}
main#duathlon section#intro figure#logo img {
  max-width: 285px;
  width: 100%;
}
main#duathlon section#intro p {
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
}
main#duathlon section#intro figure#splash {
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
main#duathlon section#intro figure#splash img {
  width: 100%;
}
main#duathlon section#intro div.more {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 28px;
  pointer-events: none;
  text-align: center;
}
main#duathlon section#intro div.more a {
  text-align: center;
  pointer-events: auto;
  display: inline-block;
  color: #fff;
}
main#duathlon section#intro div.more a:hover {
  text-decoration: none;
}
main#duathlon section#intro div.more a p {
  font-family: Raleway;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}
main#duathlon section#info {
  padding: 70px 0 100px;
  background: url("../images/duathlon-series/png/flechas-rojas.png") top -60px left -37px, url("../images/duathlon-series/png/flechas-rojas.png") bottom -32px right -21px;
  background-repeat: no-repeat;
  background-color: #fff;
}
main#duathlon section#info div.row div[class^=col-] div.info-block {
  text-align: center;
  font-size: 17px;
  line-height: 20px;
  position: relative;
}
main#duathlon section#info div.row div[class^=col-] div.info-block figure {
  margin-bottom: 20px;
}
main#duathlon section#info div.row div[class^=col-] div.info-block h3 {
  line-height: inherit;
  font-size: inherit;
  font-weight: 800;
  text-transform: uppercase;
}
main#duathlon section#info div.row div[class^=col-] div.info-block p {
  line-height: inherit;
  font-size: inherit;
  font-weight: 400;
}
main#duathlon section#info div.row div[class^=col-]:nth-child(odd) div.info-block::before {
  position: absolute;
  content: "";
  display: block;
  height: 80px;
  background: #eb0a1e;
  border: 1px solid #eb0a1e;
  top: 10px;
  right: -15px;
}
main#duathlon section#races {
  background: url("../images/duathlon-series/png/flechas-negras.png") top 30px left -35px, url("../images/duathlon-series/png/flechas-negras.png") top 45% right -15px, url("../images/duathlon-series/png/flechas-negras.png") bottom 47px left -35px;
  background-repeat: no-repeat;
  background-color: #000;
  color: #fff;
  padding: 75px 0 0;
}
main#duathlon section#races div.title h2 {
  font-weight: 400;
}
main#duathlon section#races div.title h2 span {
  font-weight: 900;
}
main#duathlon section#races div.race {
  padding-bottom: 125px;
}
main#duathlon section#races div.race figure {
  text-align: center;
}
main#duathlon section#races div.race figure img {
  display: inline-block;
}
main#duathlon section#categories {
  padding: 90px 0;
}
main#duathlon section#categories div.category {
  border: solid 2px #eb0a1e;
  border-radius: 10px;
  padding: 33px 0;
  text-align: center;
  max-width: 255px;
  width: 100%;
  height: 260px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main#duathlon section#categories div.category h3 {
  letter-spacing: 0.1em;
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 17px;
}
main#duathlon section#categories div.category h3 small {
  line-height: 16px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
main#duathlon section#categories div.category figure {
  position: relative;
  text-align: center;
}
main#duathlon section#categories div.category figure img {
  margin: 0 auto;
  display: inline-block;
}
main#duathlon section#categories div.category figure .line:after {
  display: block;
  border: solid 1px #eb0a1e;
  width: 65px;
  content: "";
  background: #eb0a1e;
  margin: 20px auto;
}
main#duathlon section#categories div.category p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
  height: 35px;
}
main#duathlon section#categories div.category p i {
  font-size: 13px;
  line-height: 15px;
}
main#duathlon section#categories div.age {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 31px;
  padding-left: 10px;
  padding-right: 10px;
}
main#duathlon section#categories div.age h3 {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 800;
  line-height: 23px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0;
  width: 100%;
}
main#duathlon section#categories div.age span {
  width: 100%;
  font-family: Raleway;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
}
main#duathlon section#categories div.age:nth-child(odd):after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 43px;
  background: #eb0a1e;
  border: 1px solid #eb0a1e;
  right: 0;
}
main#duathlon section#categories div.inscription {
  margin-top: 30px;
}
main#duathlon section#inscription {
  text-align: center;
  padding-bottom: 67px;
}
main#duathlon section#inscription figure {
  margin-bottom: 60px;
}
main#duathlon section#inscription figure img {
  width: 225px;
}
main#duathlon section#inscription a.btn {
  width: 225px;
  margin: 0 5px 17px;
}
main#duathlon span.red {
  color: #eb0a1e;
}
main#duathlon div.title {
  text-align: center;
  padding-bottom: 50px;
}
main#duathlon div.title h2 {
  font-size: 25px;
  line-height: 29px;
  font-weight: 800;
}
main#duathlon div.inscription {
  text-align: center;
}
main#duathlon div.inscription .btn {
  padding: 20px 5px;
  font-size: 25px;
  margin-bottom: 16px;
}
main#duathlon div.inscription small {
  font-family: Raleway;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: center;
  display: block;
}
main#duathlon .btn.btn-primary {
  background-color: #eb0a1e;
  border-color: #eb0a1e;
  color: #fff;
  line-height: 1;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  padding: 10px;
}
main#duathlon .btn.btn-primary:hover {
  background-color: #ba0818;
}
main#duathlon .btn.btn-primary:active {
  opacity: 0.8;
}
main#duathlon div.category_slider ul.duathlon-dots {
  display: flex;
  justify-content: center;
  width: 100%;
}
main#duathlon div.category_slider ul.duathlon-dots li {
  display: block;
  margin: 0 7px;
}
main#duathlon div.category_slider ul.duathlon-dots li button {
  background: transparent;
  border: none;
  color: transparent;
  position: relative;
}
main#duathlon div.category_slider ul.duathlon-dots li button:before {
  position: absolute;
  z-index: 1;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #D9D9D9;
  content: "";
  padding: 0;
}
main#duathlon div.category_slider ul.duathlon-dots li.slick-active button:before {
  width: 10px;
  height: 10px;
  background-color: #eb0a1e;
}
main#duathlon div.category_slider .slick-arrow {
  z-index: 1;
  width: 30px;
  height: 30px;
  top: 40%;
}
main#duathlon div.category_slider .slick-arrow.slick-prev {
  left: 15px;
  background: url(../images/duathlon-series/svg/arrow-left.svg) center no-repeat;
}
main#duathlon div.category_slider .slick-arrow.slick-next {
  right: 15px;
  background: url(../images/duathlon-series/svg/arrow-right.svg) center no-repeat;
}
main#duathlon div.category_slider .slick-arrow:before {
  display: none;
}

@media screen and (max-height: 700px) {
  main#duathlon section#intro figure#splash img {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    height: 70px !important;
  }
  main#duathlon section#intro {
    height: 100vh;
  }
  main#duathlon section#intro figure#logo {
    margin-top: 0;
  }
  main#duathlon section#info {
    background: url("../images/duathlon-series/png/flechas-rojas.png") top -20px left 11.45%, url("../images/duathlon-series/png/flechas-rojas.png") bottom -50px right 11.45%;
    background-repeat: no-repeat;
  }
  main#duathlon section#info div.row div[class^=col-] div.info-block {
    font-size: 18px;
    line-height: 21px;
  }
  main#duathlon section#info div.row div[class^=col-] div.info-block h3 {
    line-height: inherit;
    font-size: inherit;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  main#duathlon section#info div.row div[class^=col-]:not(:last-child) div.info-block::before {
    position: absolute;
    content: "";
    display: block;
    height: 80px;
    border: 1px solid #eb0a1e;
    background: #eb0a1e;
    top: 30px;
    right: -15px;
  }
  main#duathlon section#races {
    padding: 140px 0 80px;
    background: url("../images/duathlon-series/png/flechas-negras.png") top 50px left 18.12%, url("../images/duathlon-series/png/flechas-negras.png") top 37.16% right 11.45%, url("../images/duathlon-series/png/flechas-negras.png") bottom 51px left 16%;
    background-repeat: no-repeat;
    background-color: #000;
  }
  main#duathlon section#categories {
    padding: 90px 0 140px;
    background: url("../images/duathlon-series/png/flechas-rojas.png") top -20px right 18.4%, url("../images/duathlon-series/png/flechas-rojas.png") bottom 0 left 18.39%;
    background-repeat: no-repeat;
  }
  main#duathlon section#categories div.inscription .btn {
    padding-left: 22px;
    padding-right: 22px;
  }
  main#duathlon section#categories div.inscription small {
    display: block;
  }
  main#duathlon section#categories div.category {
    margin-bottom: 40px;
  }
  main#duathlon section#categories div.category h3 {
    letter-spacing: 0;
    font-size: 24px;
  }
  main#duathlon section#categories div.age h3 {
    letter-spacing: 0;
  }
  main#duathlon section#categories div.age:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    background: #eb0a1e;
    height: 43px;
    border: 1px solid #eb0a1e;
    right: 0;
  }
  main#duathlon section#inscription figure img {
    width: 259px;
  }
  main#duathlon div.title h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px !important;
  }
}
@media screen and (max-width: 768px) {
  div#sucursalesMenu .btn.toggleMarker {
    width: 40%;
  }
  ul#listaSucursales {
    display: none;
  }
  div#mapaSucursales {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  div#mapaSucursales {
    margin: 0;
    height: 80vh;
  }
  div#sucursalesMenu {
    position: inherit;
    z-index: 899;
    width: 100%;
    margin: 0 0 3px 3px;
    justify-content: center;
  }
  div#sucursalesMenu .btn.toggleMarker {
    width: 12%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2px;
    font-size: 14px;
  }
  div#sucursalesMenu .btn.toggleMarker label {
    text-align: center;
    font-size: 60%;
    display: flex;
    justify-content: center;
  }
  div#sucursalesMenu .btn.toggleMarker div.icon {
    margin: 0;
    margin-bottom: 5px;
  }
}
/* ===================================================================== */
div.hero.new-corolla-cross {
  background-image: url("../../vehiculo/new-corolla-cross/img/banner-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 465px !important;
  margin-top: 76px;
}
div.hero.new-corolla-cross .call-to-action {
  display: flex;
  flex-direction: column;
  height: 455px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 15px;
}
div.hero.new-corolla-cross .call-to-action img.logo {
  width: 250px;
  margin-bottom: 20px;
}
div.hero.new-corolla-cross .call-to-action .claim {
  font-family: "toyota_b";
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
}
div.hero.new-corolla-cross .call-to-action .btns_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
div.hero.new-corolla-cross .call-to-action .btns_list a {
  background-color: #eb0a1e;
  color: #fff;
  border-radius: 999px;
  font-family: "ToyotaType-Semibold";
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  padding: 15px 35px;
  width: 340px;
}
div.hero.new-corolla-cross .call-to-action .btns_list a:hover {
  text-decoration: none;
}
div.hero.new-corolla-cross .call-to-action .btns_list a#transparent {
  background-color: #ffffff;
  color: #4f4f4f;
  border: 2px solid #eb0a1e;
  margin-top: 10px;
  margin-bottom: 12px;
}
div.hero.new-corolla-cross .call-to-action .btns_list .scroll {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
div.hero.new-corolla-cross .call-to-action .btns_list .scroll p {
  color: #fff;
  padding-top: 5px;
}
div.hero.new-corolla-cross .call-to-action .scroll {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  margin-top: auto;
}
div.hero.new-corolla-cross .call-to-action .scroll p {
  color: #fff;
  padding-top: 5px;
}

div.hero.new-corolla-cross {
  background-image: url("../../vehiculo/new-corolla-cross/img/banner-desktop.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 465px !important;
  margin-top: 76px;
}
div.hero.new-corolla-cross .call-to-action {
  display: flex;
  flex-direction: column;
  height: 455px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 15px;
}
div.hero.new-corolla-cross .call-to-action img.logo {
  width: 356px;
  margin-bottom: 14px;
}
div.hero.new-corolla-cross .call-to-action .claim {
  font-family: "toyota_b";
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
}
div.hero.new-corolla-cross .call-to-action .btns_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
div.hero.new-corolla-cross .call-to-action .btns_list a {
  background-color: #eb0a1e;
  color: #fff;
  border-radius: 999px;
  font-family: "ToyotaType-Semibold";
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  padding: 15px 35px;
  width: 356px;
}
div.hero.new-corolla-cross .call-to-action .btns_list a:hover {
  text-decoration: none;
}
div.hero.new-corolla-cross .call-to-action .btns_list a#transparent {
  background-color: #ffffff;
  color: #4f4f4f;
  border: 0px solid #ffffff;
  margin-top: 10px;
  margin-bottom: 12px;
  color: #eb0a1e;
}
div.hero.new-corolla-cross .call-to-action .btns_list .scroll {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
div.hero.new-corolla-cross .call-to-action .btns_list .scroll p {
  color: #fff;
  padding-top: 5px;
}
div.hero.new-corolla-cross .call-to-action .scroll {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  margin-top: auto;
}
div.hero.new-corolla-cross .call-to-action .scroll p {
  color: #fff;
  padding-top: 5px;
}

div#new-corolla-cross-nav-container ul#new-corolla-cross-sections-nav li.nwe-corolla-cross-li a.new-corolla-cross {
  text-decoration: none !important;
  color: #000;
  font-family: "Raleway";
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  letter-spacing: 0em !important;
  position: relative;
  transition: color 0.4s;
  text-decoration-line: none !important;
  padding: 0px 14px 0px 14px;
}
div#new-corolla-cross-nav-container ul#new-corolla-cross-sections-nav li.nwe-corolla-cross-li a.new-corolla-cross:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 0;
  width: 100%;
  background-color: transparent;
  transition: all 0.4s;
}
div#new-corolla-cross-nav-container ul#new-corolla-cross-sections-nav li.nwe-corolla-cross-li a.new-corolla-cross:hover {
  color: #eb0a1e !important;
  text-decoration-line: none !important;
  text-decoration: none !important;
}
div#new-corolla-cross-nav-container ul#new-corolla-cross-sections-nav li.nwe-corolla-cross-li a.new-corolla-cross:hover:after {
  background-color: #eb0a1e !important;
}
div#new-corolla-cross-nav-container ul#new-corolla-cross-sections-nav li.nwe-corolla-cross-li a.new-corolla-cross:active:after {
  background-color: #eb0a1e;
}

section#diseno-ext-new-corolla-cross {
  margin-top: 110px;
  margin-bottom: 110px;
}
section#diseno-ext-new-corolla-cross div.container {
  width: 1116px;
}
section#diseno-ext-new-corolla-cross div#col-1 img.img-exterior {
  max-width: 100%;
}
section#diseno-ext-new-corolla-cross div#col-2 .ancho {
  width: 316px !important;
}
section#diseno-ext-new-corolla-cross div#col-2 p#titulo {
  width: 268px;
  height: 51px;
  font-family: var(--font-toyota-bold);
  font-weight: 700;
  font-size: 36px;
  line-height: 51px;
  color: #212529;
  margin-bottom: 30px;
}
section#diseno-ext-new-corolla-cross div#col-2 p#sub-titulo {
  width: 143px;
  height: 30px;
  font-family: var(--font-toyota-display-regular);
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #212529;
  margin-bottom: 20px;
}
section#diseno-ext-new-corolla-cross div#col-2 p#texto {
  width: 316px;
  height: 270px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #212529;
}

section#diseno-int-new-corolla-cross h2 {
  width: 920px;
  height: 45px;
  font-family: var(--font-toyota-display);
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  color: #212529;
  margin-top: 90px;
  margin-bottom: 72px;
}
section#diseno-int-new-corolla-cross .ancho {
  width: 1116px;
}
section#diseno-int-new-corolla-cross #cont-imagenes img {
  margin-right: 24px;
}
section#diseno-int-new-corolla-cross #cont-imagenes img:last-child {
  margin-right: 0;
}
section#diseno-int-new-corolla-cross div#cont-texto {
  margin-top: 30px;
}
section#diseno-int-new-corolla-cross #cont-texto {
  padding: 0 12px;
  margin-bottom: 90px;
}
section#diseno-int-new-corolla-cross #cont-texto .row p {
  flex: 0 0 calc(50% - 12px);
  margin: 0;
  padding: 10px;
  margin-right: 24px;
}
section#diseno-int-new-corolla-cross #cont-texto .row p:last-child {
  margin-right: 0;
}
section#diseno-int-new-corolla-cross p#text-1 {
  width: 546px;
  height: 112px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212529;
}
section#diseno-int-new-corolla-cross p#text-2 {
  width: 546px;
  height: 112px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212529;
}

section#diseno-int-new-corolla-cross-cel h2 {
  width: auto;
  height: 40px;
  font-family: var(--font-toyota-display-regular);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #212529;
}
section#diseno-int-new-corolla-cross-cel div#titulo {
  margin-bottom: 60px;
  margin-top: 60px;
}
section#diseno-int-new-corolla-cross-cel p#text-1 {
  width: auto;
  height: 140px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #212529;
  margin-top: 30px;
  margin-bottom: 40px;
}
section#diseno-int-new-corolla-cross-cel p#text-2 {
  width: auto;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #212529;
  margin-top: 30px;
  margin-bottom: 60px;
}
section#diseno-int-new-corolla-cross-cel .ancho {
  width: 100%;
}

section#medidores-pantalla .elemento-centrado-vertical {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

section#view360-new-corolla-cross {
  border-bottom: 1px solid #dddedf;
  padding: 80px 0px;
}
section#view360-new-corolla-cross h2.title-360 {
  color: #eb0a1e;
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  margin-bottom: 40px;
}
section#view360-new-corolla-cross .car360 {
  width: 100%;
  max-width: 1000px;
  /* Ajusta según tus necesidades */
  height: auto;
  position: relative;
  overflow: hidden;
}
section#view360-new-corolla-cross .car360 img {
  width: 100%;
  height: auto;
  display: block;
}

div#colores-new-corolla-cross {
  border-bottom: 0px solid #f3f3f3 !important;
}
div#colores-new-corolla-cross .color_slide .diplay_car li figure img {
  width: 50% !important;
  height: auto;
  max-width: 80%;
  margin: 0 auto;
}

section#seguridad-new-corolla-cross {
  background-color: #e6e6e6;
  padding-top: 90px;
  color: #212529;
  padding-bottom: 110px;
}
section#seguridad-new-corolla-cross h2#titulo-seguridad {
  width: auto;
  height: 45px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  color: #212529;
  margin-bottom: 90px;
}
section#seguridad-new-corolla-cross div#col-1 {
  padding: 0px;
}
section#seguridad-new-corolla-cross div#col-2 {
  width: 546px !important;
}
section#seguridad-new-corolla-cross .container,
section#seguridad-new-corolla-cross .container-lg,
section#seguridad-new-corolla-cross .container-md,
section#seguridad-new-corolla-cross .container-sm,
section#seguridad-new-corolla-cross .container-xl {
  max-width: 1116px;
}
section#seguridad-new-corolla-cross p#texto {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212529;
  width: 546px;
}
section#seguridad-new-corolla-cross ul.custom-list {
  list-style: none;
  padding: 0;
  padding-left: 12px;
}
section#seguridad-new-corolla-cross ul.custom-list li {
  position: relative;
  padding-left: 14px;
  /* Space for custom marker */
  margin-bottom: 16px;
  /* Space between list items */
}
section#seguridad-new-corolla-cross ul.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  /* Center the marker vertically */
  transform: translateY(-50%);
  /* Center the marker vertically */
  width: 3px;
  /* Small size for marker */
  height: 3px;
  /* Small size for marker */
  background-color: black;
  /* Black color for marker */
  border-radius: 50%;
  /* Circular shape for marker */
}
section#seguridad-new-corolla-cross li {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212529;
  width: 546px;
}

section#Video-new-corolla-cross {
  /*  .new_model .section .section_inner h2 {
      color: #EB0A1E;
      font-weight: 600;
      font-size: 38px;
      line-height: 1.2;
      margin: 10px 0 20px;
  } */
}
section#Video-new-corolla-cross .custom-button {
  width: 84px;
  height: 36px;
  border-radius: 33px;
  padding: 8px 25px;
  font-family: var(--font-toyota-display-regular);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: none;
}
section#Video-new-corolla-cross .custom-button.active {
  background-color: #eb0a1e;
  color: white;
  border: 2px solid #eb0a1e;
}
section#Video-new-corolla-cross .custom-button:not(.active) {
  background-color: white;
  color: #eb0a1e;
  border: 2px solid #eb0a1e;
}
section#Video-new-corolla-cross .custom-button:hover {
  text-decoration: none;
  /* Remove underline on hover */
}
section#Video-new-corolla-cross div#btn_list {
  margin-bottom: 40px;
}
section#Video-new-corolla-cross h2#text-video {
  margin: 10px 0 20px;
  font-family: var(--font-toyota-display-regular);
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  color: #eb0a1e;
}

section#galeria-new-corolla-cross p#titulo {
  color: white;
  height: 45px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #ffffff;
  padding-top: 90px;
  padding-bottom: 60px;
}
section#galeria-new-corolla-cross .gal-atr-new-corolla-cross {
  width: 70%;
  /* margin-left: auto; */
  /* margin-right: auto; */
  gap: 30px;
  padding-bottom: 50px;
}
section#galeria-new-corolla-cross .col-resp-1 {
  width: 50%;
  margin-left: -17px;
}
section#galeria-new-corolla-cross .col-resp-2 {
  width: 50%;
}

section#especificaciones-new-corolla-cross {
  padding: 90px 0px;
  color: #212529;
}
section#especificaciones-new-corolla-cross .si {
  display: none;
}
section#especificaciones-new-corolla-cross h2 {
  font-family: "ToyotaType-Bold";
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 90px;
}
section#especificaciones-new-corolla-cross .d-flex {
  gap: 30px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full {
  width: 50%;
}
section#especificaciones-new-corolla-cross .d-flex .half-full img {
  width: 540px;
  height: 330px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex {
  gap: 30px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia {
  width: 255px;
  gap: 0px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales .specs,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor .specs,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia .specs {
  justify-content: space-between;
  border-top: 1px solid #dddedf;
  padding: 12px 15px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales .specs p.label,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor .specs p.label,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia .specs p.label {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales .specs p.date,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor .specs p.date,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia .specs p.date {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-align: right;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales .specs.first,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor .specs.first,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia .specs.first {
  border-top: 1px solid #000;
  padding: 18px 15px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales .specs.first p.label,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor .specs.first p.label,
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia .specs.first p.label {
  font-weight: 700;
  line-height: 18px;
}
section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor-potencia {
  gap: 0px;
}
section#especificaciones-new-corolla-cross a {
  color: #eb0a1e;
  border: 1px solid #eb0a1e;
  border-radius: 999px;
  padding: 10px 58px 15px 58px;
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  margin: 0 auto;
  margin-top: 90px;
}

section#model-version-new-corolla-cross {
  padding: 80px 0px;
  color: #212529;
  border: 1px solid #dcdede;
}
section#model-version-new-corolla-cross .precios-vehiculos {
  padding-top: 30px;
  padding-bottom: 30px;
}
section#model-version-new-corolla-cross .precios-vehiculos p {
  width: auto;
  height: 18px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1%;
  text-align: center;
  color: #212529;
  padding-bottom: 60px;
}
section#model-version-new-corolla-cross .precios-vehiculos p span {
  width: auto;
  height: 38px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 38px;
  letter-spacing: 1%;
  text-align: center;
  color: #eb0a1e;
}
section#model-version-new-corolla-cross h2#titulo {
  width: auto;
  height: 45px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  color: #212529;
  margin-bottom: 90px;
}
section#model-version-new-corolla-cross .container .d-flex {
  gap: 30px;
}
section#model-version-new-corolla-cross .container .d-flex .half-full {
  width: 50%;
}
section#model-version-new-corolla-cross .container .d-flex .half-full h3 {
  font-family: "ToyotaType-Semibold";
  font-size: 34px;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #212529;
  margin-bottom: 15px;
}
section#model-version-new-corolla-cross .container .d-flex .half-full img {
  width: 442px;
  height: 294px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#model-version-new-corolla-cross .container .d-flex .half-full p.cuota-desde {
  font-family: "ToyotaType-Semibold";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: center;
}
section#model-version-new-corolla-cross .container .d-flex .half-full p.precio-cuota {
  font-family: "ToyotaType-Semibold";
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #eb0a1e;
  margin-bottom: 30px;
}
section#model-version-new-corolla-cross .container .d-flex .half-full a {
  font-family: "ToyotaType-Semibold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  background-color: #eb0a1e;
  border-radius: 999px;
  padding: 10px 30px 15px 30px;
}

section#model-version-new-corolla-cross .container .d-flex .half-full img {
  width: 279px !important;
  height: auto !important;
}

section#model-version-new-corolla-cross .container .d-flex .half-full a {
  width: 353px !important;
  display: block !important;
  font-size: 16px !important;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}

section#model-version-new-corolla-cross .container .d-flex .half-full a#n2 {
  width: 353px !important;
  display: block !important;
  font-size: 16px !important;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
  border: 2px solid #eb0a1e;
  color: #eb0a1e;
  margin-bottom: 15px;
}

section#model-version-new-corolla-cross .container .d-flex .half-full h3 {
  font-size: 24px !important;
}

div#modal-galeria .modal {
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: auto;
}
div#modal-galeria .modal-content {
  position: relative;
  text-align: center;
}
div#modal-galeria .modal img {
  width: 100%;
  height: auto;
}
div#modal-galeria .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
}
div#modal-galeria .close:hover,
div#modal-galeria .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
div#modal-galeria .prev,
div#modal-galeria .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: black;
  text-decoration: none;
}
div#modal-galeria .prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
div#modal-galeria .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

section#diseno-ext-new-corolla-cross-cel {
  display: none;
}

section#diseno-ext-new-corolla-cross {
  display: block;
}

section#diseno-int-new-corolla-cross {
  display: block;
}

section#diseno-int-new-corolla-cross-cel {
  display: none;
}

section#medidores-pantalla-cel {
  display: none;
}

section#medidores-pantalla {
  display: block;
}

section#seguridad-new-corolla-cross-cel {
  display: none;
}

section#seguridad-new-corolla-cross {
  display: block;
}

section#galeria-new-corolla-cross-cel {
  display: none;
}

section#galeria-new-corolla-cross {
  display: block;
}

.gallery_slide.transitioning #titulo-1 {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  /* Transición suave de 0.3 segundos */
}

@media screen and (max-width: 768px) {
  section#galeria-new-corolla-cross-cel {
    display: block !important;
  }
  section#galeria-new-corolla-cross {
    display: none !important;
  }
  section#seguridad-new-corolla-cross-cel {
    display: block;
  }
  section#seguridad-new-corolla-cross {
    display: none;
  }
  section#diseno-int-new-corolla-cross {
    display: none;
  }
  section#diseno-int-new-corolla-cross-cel {
    display: block;
  }
  section#view360-new-corolla-cross {
    display: none;
  }
  section#view360-new-corolla-cross-cel {
    display: block;
  }
  section#medidores-pantalla-cel {
    display: block;
  }
  section#medidores-pantalla {
    display: none;
  }
  section#diseno-ext-new-corolla-cross-cel {
    display: block;
  }
  section#diseno-ext-new-corolla-cross-cel p#titulo {
    width: auto;
    height: 40px;
    font-family: var(--font-toyota-display-regular);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #212529;
    margin-bottom: 15px;
    margin-top: 54px;
  }
  section#diseno-ext-new-corolla-cross-cel p#sub-titulo {
    width: auto;
    height: 32px;
    font-family: var(--font-toyota-display-regular);
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #212529;
    margin-bottom: 30px;
  }
  section#diseno-ext-new-corolla-cross-cel img.img-exterior {
    width: 100% !important;
    border-radius: 4px;
    margin-bottom: 30px;
  }
  section#diseno-ext-new-corolla-cross-cel div.container p#texto {
    width: 346px;
    height: 224px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #212529;
    margin-bottom: 54px;
  }
  section#diseno-ext-new-corolla-cross {
    display: none;
  }
  div.hero.new-corolla-cross {
    background-image: url(../../vehiculo/new-corolla-cross/img/banner-mobile.jpg);
    height: 480px !important;
    background-position: center top -27px;
    background-color: #edeefb;
  }
  div.hero.new-corolla-cross .call-to-action img.logo {
    width: 276px;
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
  }
  div.hero.new-corolla-cross .call-to-action {
    display: flex;
    flex-direction: column;
    height: 460px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 0px;
    justify-content: space-between;
  }
  div.hero.new-corolla-cross .call-to-action .btns_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
  }
  div.hero.new-corolla-cross .call-to-action .btns_list a {
    background-color: #eb0a1e;
    color: #fff;
    border-radius: 999px;
    font-family: "ToyotaType-Semibold";
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    padding: 15px 20px;
    width: 300px;
  }
  section#medidores-pantalla-cel .fondo {
    background-color: #1e232e;
    height: auto;
    height: 815px;
  }
  section#medidores-pantalla-cel .ancho {
    width: 100%;
  }
  section#medidores-pantalla-cel h4#titulo-1 {
    width: auto;
    height: 32px;
    font-family: var(--font-toyota-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: white;
    padding-top: 60px;
    margin-bottom: 60px;
  }
  section#medidores-pantalla-cel .img-ancho {
    padding: 0;
  }
  section#medidores-pantalla-cel #texto-1 {
    width: auto;
    height: 58px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: white;
    margin-bottom: 30px;
  }
  section#medidores-pantalla-cel div#lista-caracteristicas {
    width: auto;
    height: 224px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: white;
    margin-top: 30px;
  }
  section#medidores-pantalla-cel ul.custom-list {
    list-style: none;
    padding: 0;
    padding-left: 12px;
  }
  section#medidores-pantalla-cel ul.custom-list li {
    position: relative;
    padding-left: 14px;
    /* Space for custom marker */
    margin-bottom: 16px;
    /* Space between list items */
  }
  section#medidores-pantalla-cel ul.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    /* Center the marker vertically */
    transform: translateY(-50%);
    /* Center the marker vertically */
    width: 3px;
    /* Small size for marker */
    height: 3px;
    /* Small size for marker */
    background-color: white;
    /* Black color for marker */
    border-radius: 50%;
    /* Circular shape for marker */
  }
  section#medidores-pantalla-cel li {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    width: 546px;
  }
  section#seguridad-new-corolla-cross-cel .ancho {
    width: 100%;
  }
  section#seguridad-new-corolla-cross-cel .fondo {
    background-color: #e6e6e6 !important;
    height: 1042px;
    padding-right: 30px;
    padding-left: 30px;
  }
  section#seguridad-new-corolla-cross-cel img {
    margin-bottom: 30px;
  }
  section#seguridad-new-corolla-cross-cel h2#titulo-seguridad {
    width: auto;
    height: 40px;
    font-family: var(--font-toyota-display-regular);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #212529;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  section#seguridad-new-corolla-cross-cel p#texto {
    width: auto;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #212529;
  }
  section#seguridad-new-corolla-cross-cel ul.custom-list {
    list-style: none;
    padding: 0;
    padding-left: 12px;
  }
  section#seguridad-new-corolla-cross-cel ul.custom-list li {
    position: relative;
    padding-left: 14px;
    /* Space for custom marker */
    margin-bottom: 16px;
    /* Space between list items */
  }
  section#seguridad-new-corolla-cross-cel ul.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    /* Center the marker vertically */
    transform: translateY(-50%);
    /* Center the marker vertically */
    width: 3px;
    /* Small size for marker */
    height: 3px;
    /* Small size for marker */
    background-color: #212529;
    /* Black color for marker */
    border-radius: 50%;
    /* Circular shape for marker */
  }
  section#seguridad-new-corolla-cross-cel li {
    width: auto;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #212529;
  }
  section#Video-new-corolla-cross .boton-1 {
    margin-right: 20px !important;
  }
  section#Video-new-corolla-cross .espacio-video {
    padding-top: 50px !important;
    padding-bottom: 80px !important;
  }
  section#galeria-new-corolla-cross-cel {
    background-color: #1e232e;
  }
  section#galeria-new-corolla-cross-cel p#titulo {
    width: auto;
    height: 40px;
    font-family: var(--font-toyota-display-regular);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: white;
    padding-top: 80px;
    margin-bottom: 80px;
  }
  section#galeria-new-corolla-cross-cel .margin-90 {
    padding-bottom: 80px;
  }
  div#modal-galeria .modal {
    max-width: 100%;
    /* Usar el 100% del ancho de la pantalla */
    top: 0;
    /* Alinear la parte superior del modal con la pantalla */
    left: 0;
    /* Alinear la parte izquierda del modal con la pantalla */
    transform: none;
    /* No usar translate para pantallas pequeñas */
    height: 100vh;
    /* Usar el 100% de la altura de la pantalla */
  }
  div#modal-galeria .modal-content {
    padding: 5px;
    /* Reducir el padding en pantallas pequeñas */
  }
  div#modal-galeria .close {
    font-size: 24px;
    /* Reducir el tamaño de la fuente del botón de cerrar */
    top: 5px;
    /* Ajustar la posición superior del botón de cerrar */
    right: 10px;
    /* Ajustar la posición derecha del botón de cerrar */
  }
  div#modal-galeria .prev,
  div#modal-galeria .next {
    padding: 8px;
    /* Ajustar el padding de los botones de navegación */
    font-size: 18px;
    /* Reducir el tamaño de la fuente de los botones de navegación */
  }
  section#especificaciones-new-corolla-cross .d-flex {
    flex-direction: unset;
  }
  section#especificaciones-new-corolla-cross p:nth-of-type(2) {
    margin-top: 7px;
  }
  section#especificaciones-new-corolla-cross .no {
    display: none;
  }
  section#especificaciones-new-corolla-cross .si {
    display: block;
  }
  section#especificaciones-new-corolla-cross .alineacion {
    text-align: end;
    line-height: 20px;
  }
  section#especificaciones-new-corolla-cross .d-flex .half-full {
    width: 100%;
  }
  section#especificaciones-new-corolla-cross .d-flex .half-full img {
    width: 100%;
    height: auto;
  }
  section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #generales,
  section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #motor,
  section#especificaciones-new-corolla-cross .d-flex .half-full .d-flex #potencia {
    width: 100%;
    gap: 0px;
  }
  section#especificaciones-new-corolla-cross a {
    color: #eb0a1e;
    border: 1px solid #eb0a1e;
    border-radius: 999px;
    padding: 10px 58px 15px 58px;
    font-family: "ToyotaType-Semibold";
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    margin: 0 auto;
    margin-top: 45px;
    margin-bottom: 60px;
  }
  section#especificaciones-new-corolla-cross {
    padding: 60px 0px;
    color: #212529;
    padding-bottom: 0px;
  }
  section#model-version-new-corolla-cross {
    padding: 60px 0px;
    color: #212529;
    border: 1px solid #dcdede;
  }
  section#model-version-new-corolla-cross h2#titulo {
    width: auto;
    height: 40px;
    font-family: var(--font-toyota-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #212529;
    margin-bottom: 50px;
  }
  section#especificaciones-new-corolla-cross h2 {
    font-family: "ToyotaType-Bold";
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
    color: #eb0a1e;
    margin-bottom: 60px;
  }
  section#model-version-new-corolla-cross .container .d-flex .half-full {
    width: auto;
  }
  section#model-version-new-corolla-cross .container .d-flex .half-full h3 {
    font-family: "ToyotaType-Semibold";
    font-size: 34px;
    font-weight: 700;
    line-height: 51px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #212529;
    margin-bottom: 40px;
    /* width: 211%; */
  }
  section#model-version-new-corolla-cross .precios-vehiculos {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  section#model-version-new-corolla-cross .container .d-flex .half-full a {
    font-family: "ToyotaType-Semibold";
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    background-color: #eb0a1e;
    border-radius: 999px;
    padding: 18px 30px 18px 30px;
  }
}
/* ===================================================================== */
/* Nuevos precios para yaris cross */
.precios-vehiculos-yaris {
  padding-top: 0px;
  padding-bottom: 30px;
}
.precios-vehiculos-yaris p {
  width: auto;
  height: 18px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1%;
  text-align: center;
  color: #212529;
  padding-bottom: 60px;
}
.precios-vehiculos-yaris p span {
  width: auto;
  height: 38px;
  font-family: var(--font-toyota-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 38px;
  letter-spacing: 1%;
  text-align: center;
  color: #eb0a1e;
}/*# sourceMappingURL=main.css.map */