tbody, td, tfoot, th, thead, tr {
    border-width: inherit;
    border-style: inherit;
    padding: 5px;
}
/***********Libraries*************/
:root {
		--font-family: Hyundai Sans Head, sans-serif !important;
		--font-size: 16px;
		--color-text: #000;
		--color-text-hover: #001a38;
		--color-primary: #002c5f;
		--color-primary-hover: #001b3a;
		--color-secondary: #ed1c24;
		--color-secondary-hover: #b10309;
		--color-white: #fff;
		--color-orange: #fe0000;
		--color-red: #ed1c24;
		--color-blue: #288ad6;
		--color-yellow: #ffc107;
		--color-border: #ddd;
		--color-border-search: var(--color-text);
		--color-bgheader: var(--color-white);
		--color-bgmenu: #fff;
		--color-bgmenu-hover: rgba(43, 40, 57, 0.16);
		--color-menu: #676767;
		--color-menu-second: #fff;
		--color-bgbody: #fff;
		--color-bgfooter: #000;
		--color-bgevent: var(--color-primary-hover);
		--color-bgbox: #c3012f;
		--border-radius: 0px;
		--margin-bottom: 20px;
		--max-width-content: 750px;
		--max-width-form: 800px;
		--filter-color-primary: brightness(0) saturate(100%) invert(12%) sepia(29%) saturate(6614%) hue-rotate(201deg) brightness(91%) contrast(102%);
		--filter-color-secondary: brightness(0) saturate(100%) invert(20%) sepia(65%) saturate(5399%) hue-rotate(347deg) brightness(92%) contrast(102%);
		--filter-color-white: invert(100%) sepia(100%) saturate(0%) hue-rotate(282deg) brightness(103%) contrast(103%);
		--filter-color-black: invert(0%) sepia(3%) saturate(3769%) hue-rotate(11deg) brightness(84%) contrast(87%);
		--filter-color-orange: invert(42%) sepia(72%) saturate(1522%) hue-rotate(358deg) brightness(100%) contrast(108%);
		--filter-color-red: invert(11%) sepia(77%) saturate(6961%) hue-rotate(353deg) brightness(112%) contrast(86%);
		--filter-color-yellow: invert(99%) sepia(31%) saturate(7464%) hue-rotate(348deg) brightness(94%) contrast(99%);
		--filter-color-grey: invert(33%) sepia(9%) saturate(9%) hue-rotate(350deg) brightness(94%) contrast(92%);
		--filter-color-greyish: invert(50%) sepia(45%) saturate(0%) hue-rotate(150deg) brightness(98%) contrast(89%)
	}
			
		.section-pricequote {
			background-color: var(--color-primary)
		}

		.section-pricequote .title {
			color: #fff;
			font-size: 200%;
			font-weight: bold
		}

		.section-pricequote .desc {
			color: #fff;
			font-size: 120%;
			margin-bottom: 0px
		}

		.section-pricequote .form-pricequote .form-group {
			margin-bottom: 0px
		}

		.section-pricequote .row>div {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-ms-flex-direction: column;
			flex-direction: column;
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center
		}

		.section-pricequote-in .price-sale {
			background-color: var(--color-yellow);
			color: var(--color-primary);
			border-radius: 5px;
			margin-left: 30px;
			padding: 5px 10px;
			padding-left: 15px;
			position: relative;
			display: -webkit-inline-box;
			display: -ms-inline-flexbox;
			display: inline-flex;
			-webkit-box-align: center;
			-ms-flex-align: center;
			align-items: center;
			white-space: nowrap;
			height: 34px
		}

		.section-pricequote-in .price-sale::before {
			position: absolute;
			display: block;
			content: "";
			top: 50%;
			left: 0px;
			-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
			width: 7px;
			height: 7px;
			border-radius: 50%;
			background-color: var(--color-primary);
			z-index: 10
		}

		.section-pricequote-in .price-sale::after {
			position: absolute;
			display: block;
			content: "";
			top: 50%;
			left: -18px;
			-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
			width: 10px;
			height: 32px;
			border: 10px solid transparent;
			border-right-color: var(--color-yellow);
			z-index: 1
		}
		.section-pricequote .form-control{
			font-size: var(--font-size);
			height: 40px;
			border-radius: 0;
			-webkit-box-shadow: none !important;
			box-shadow: none !important;
			padding: 10px 15px;
			border-color: #333;
			margin: 0;
			border: 0;
		}
		.section-pricequote .btn-default {
			position: relative;
			color: #fff !important;
			background: var(--color-secondary);
			border: none;
			font-size: 100%;
			-webkit-transition: all 0.25s ease-in;
			-o-transition: all 0.25s ease-in;
			transition: all 0.25s ease-in;
			z-index: 1;
		}
		.section-pricequote .btn-default:before {
			position: absolute;
			content: "";
			z-index: -1;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-color: var(--color-secondary-hover);
			border-radius: 2px;
			-webkit-transform: scaleX(0);
			-ms-transform: scaleX(0);
			transform: scaleX(0);
			-webkit-transition: all 0.25s ease-in-out;
			-o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
		}
		@-webkit-keyframes bounceAlpha {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) scale(1);
        transform: translateX(0px) scale(1)
    }

    25% {
        opacity: 0;
        -webkit-transform: translateX(10px) scale(0.9);
        transform: translateX(10px) scale(0.9)
    }

    26% {
        opacity: 0;
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9)
    }

    55% {
        opacity: 1;
        -webkit-transform: translateX(0px) scale(1);
        transform: translateX(0px) scale(1)
    }
}

@keyframes bounceAlpha {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) scale(1);
        transform: translateX(0px) scale(1)
    }

    25% {
        opacity: 0;
        -webkit-transform: translateX(10px) scale(0.9);
        transform: translateX(10px) scale(0.9)
    }

    26% {
        opacity: 0;
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9)
    }

    55% {
        opacity: 1;
        -webkit-transform: translateX(0px) scale(1);
        transform: translateX(0px) scale(1)
    }
}

.bounceAlpha {
    -webkit-animation-name: bounceAlpha;
    animation-name: bounceAlpha;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@media (max-width: 991px) {
	.section-pricequote .title {
		font-size: 150%
	}

	.section-pricequote .form-pricequote .form-group {
		margin-bottom: 10px
	}

	.section-pricequote .desc {
		margin-bottom: 10px
	}
}
/***********END Libraries*************/
/*=================== Alert Form ===============*/
 .swal2-actions{
	margin:0;
}
 .swal2-styled.swal2-cancel {
    border: 0;
    border-radius: 0.25em;
    background: initial;
	background-color: #ff0000;
    color: #fff;
    font-size: 1em;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0px 10px 5px 10px;
    line-height: 1.5em;
	border:none;
	box-shadow:none !important;
}
.swal2-html-container{line-height:1.5em}
/*=================== Alert Form ===============*/
.splide__slide img{
	width:100%;
}
.ltn__blog-details-inner .page-content tbody,.ltn__blog-details-inner .page-content td,.ltn__blog-details-inner .page-content tfoot,.ltn__blog-details-inner .page-content th,.ltn__blog-details-inner .page-content thead,.ltn__blog-details-inner .page-content tr {
    border-color: inherit;
    border-width: inherit;
    border-style: inherit;
}

html{min-height:100vh; background:var(--color-primary);}
button.splide__arrow{
    position: absolute;
    display: block;
    width: 20px;
    height: 30px;
    cursor: pointer;
}
.splide__arrows button.splide__arrow.sp-arrow {
    background: none;
    box-shadow: none;
}
.sp-previous-arrow:before,
.sp-previous-arrow:after,
.sp-next-arrow:before,
.sp-next-arrow:after {
	content: '';
	position: absolute;
	width: 3px;
	height: 50%;
	background-color: #FFF;
}
/*
.splide__arrow_black.sp-previous-arrow:before,
.splide__arrow_black.sp-previous-arrow:after,
.splide__arrow_black.sp-next-arrow:before,
.splide__arrow_black.sp-next-arrow:after {
	background-color: #000000;
}*/
.sp-previous-arrow:before {
	left: 30%;
	top: 0;
	-webkit-transform: skew(145deg, 0deg);
	-ms-transform: skew(145deg, 0deg);
	transform: skew(145deg, 0deg);
}

.sp-previous-arrow:after {
	left: 30%;
	top: 50%;
	-webkit-transform: skew(-145deg, 0deg);
	-ms-transform: skew(-145deg, 0deg);
	transform: skew(-145deg, 0deg);
}

.sp-next-arrow:before {
	right: 30%;
	top: 0;
	-webkit-transform: skew(35deg, 0deg);
	-ms-transform: skew(35deg, 0deg);
	transform: skew(35deg, 0deg);
}

.sp-next-arrow:after {
	right: 30%;
	top: 50%;
	-webkit-transform: skew(-35deg, 0deg);
	-ms-transform: skew(-35deg, 0deg);
	transform: skew(-35deg, 0deg);
}

.ltn__breadcrumb {
    background: #01428d;
}
.btn-header {
    min-width: 200px;
    background-color:var(--color-primary);
    color: #e5e5e5;
    padding:10px 16px 10px 10px;
    text-align: center;
    border-radius: 30px;
	font-family: var(--font-family);
    font-size: 18px;
	line-height: 1.3em;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-box-shadow: 0px 6px 20px -8px rgb(251 9 55 / 90%);
    box-shadow: 0px 6px 20px -8px rgb(0 0 0 / 90%);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
@media(max-width:767px){
	.btn-header{min-width:100%; font-size:14px;}
}
.btn-header:hover{
	color:#ffffff;
}
.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
p.ltn__feature_note {
    line-height: 1.5em;
    font-size: 14px;
}
.ltn__feature-icon {
    margin-bottom: 20px;
    font-size: 37px;
    line-height: 1;
    width: 60px;
    text-align: center;
}
.ltn__feature-info {
    width: calc(100% - 60px);
    padding-left: 10px;
}
.content-carr li{
	margin-top:3px;
}
.splide__slide img{height:auto;}
.ltn__product-details img,.single-car img{height:auto !important;}
button.splide__arrow:disabled {
    opacity: 0;
}
.tabs-to-dropdown>.tab-bar>ul{background:transparent;}
.single-car .is-cover{
    position: relative;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    overflow: hidden;
}
.single-car .is-cover img {
    width: 100% !important;
    height: auto !important;
	    max-width: 100%;
    z-index: 1;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
	
}
.single-car .is-cover:after {
    content: "";
    display: block;
    position: relative;
    z-index: 2;
    padding-top: 56%;
	cursor:pointer;
}
.single-car .thumbnail-slider .is-cover:after {
    padding-top: 66.2%;
}
.single-car .title_slider {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    color: #fff;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-car .title_slider>h3 {
    color: #fff;
}
.splide--nav>.splide__slider>.splide__track>.splide__list>.splide__slide.is-active, .splide--nav>.splide__track>.splide__list>.splide__slide.is-active{
    border-color: #d1453d;
}
/*************************/
.splide__pagination li:only-child{
	display:none;
}
button.splide__arrow {
    box-shadow: 6px 0 4px rgb(0 0 0 / 5%), 4px 0 4px rgb(0 0 0 / 9%);
    width: 50px;
    z-index: 1;
    height: 50px;
    border-radius: 10px;
}
.splide__arrow--prev {
    left: 2rem;
    border-radius:50%;
}
.splide__arrow--next {
    right: 2em;
    border-radius:50%;
}
.splide__pagination__page {
    border:0;
    width: 40px;
    height: 5px;
    border-radius: 0px;
}
.splide__pagination__page.is-active {
    background: #0a0a0a;
    transform: scale(1);
}
@media(max-width:992px){
	.splide__pagination__page {
		width: 30px;
		height: 3px;
	}
	.splide__arrow--prev{left:0.5rem;}
	.splide__arrow--next{right:0.5rem;}
}
/*************************/
.ltn__breadcrumb-list ul li{margin-top:0;}
button.close.closeNotification {
    width: 48px;
    height: 44px;
    z-index: 1000;
    color: #fff;
    background: red;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}
 section#sidebar {
    z-index: 100;
}
.section.content-tabs blockquote{
	padding: 0;
    margin: 0;
    margin: 20px 0;
    padding-left: 1.5rem;
    border-left: 5px solid #1565c0;
    text-align: left;
    line-height: 1.3em;
}
.section.content-tabs blockquote span,.section.content-tabs blockquote p{
	line-height: 1.3em !important;
}
.section.content-tabs blockquote::before{display:none;}
.section.content-tabs blockquote{ background:inherit;}
.utility {
    color: #000000;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    margin-bottom: 10px;
    background: #000000;
    display: block;
    padding: 1rem;
}
.section-utility-aside .utility {
    text-align: left;
    margin-bottom: 0.5rem;
    background: var(--color-primary);
    padding: 7px 15px;
}
.section-utility-aside .utility .text {
    color: #ffffff;
    font-size: 16px;
}
.section-utility-aside .utility .icon {
    text-align: center;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    background: transparent;
    color: #ffffff;
}
.consult-phone, .consult-email {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    background: #000000;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0.375rem 0.5rem;
    margin-bottom: 0.5rem;
}
.consult-phone i, .consult-email i {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.5rem;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.section-consult-aside .consult-phone {
    background: #e3342f;
    text-align: center;
	margin-bottom:0;
}
.section-consult-aside .consult-phone {
    font-size: 22px;
}
.section-consult-aside .consult-phone i {
    border: 0;
}
.table-thong-so .table{margin: 0 auto;}
.ltn__product-details li p {
    margin-bottom: 0;
    line-height: 1.3em;
}
.fb-page, .fb-page span, .fb-page span iframe[style] {width: 100% !important;} 
.list-model .desc.disabled {
    opacity: .3;
    filter: alpha(opacity=30);
	pointer-events: none;
}
.catalog-list>li.active .inforcar{
	opacity: 1;
    filter: alpha(opacity=100);
}
.inforcar{
    opacity: .1;
    filter: alpha(opacity=10);
}
.title-compare {
    font-size: 2rem;
    line-height: 1.5em;
    font-weight: bold;
}
/* call XD */
.sodt {
    position: fixed;
    bottom: 30px;
    left: 40px;
    padding:5px 20px 3px 20px;
    background: #E3342F;
    color: white;
    border-radius: 0px 40px 40px 0px;
    font-size: 120%;
    font-weight: bold;
    z-index: -1;
    line-height: 1.5em;
}

.sozalo {
    position: fixed;
    bottom: 89px;
    left: 40px;
    padding: 5px 20px 3px 20px;
    background: #018fe5;
    color: white;
    border-radius: 0px 40px 40px 0px;
    font-size: 120%;
    font-weight: bold;
    z-index: -1;
    line-height: 1.5em;
}

.sozalo a {
    color: white !important;
}

.callxd {
    position: fixed;
    bottom: 25px;
    left: 10px;
    z-index: 999;
}

.zaloxd {
    position: fixed;
    bottom: 85px;
    left: 10px;
    z-index: 999;
}

.zaloxd img {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.50);
    border-radius: 7px;
}

.zaloxd i {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 30px;
    color: white;
}

.pulse i {
    position: absolute;
    top: 10px;
    left: 9px;
    font-size: 30px;
    color: white;
    -webkit-animation-name: lac;
    animation-name: lac;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.mailxd {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #018fe5;
}

.desc-compare .img {
    width: 115px;
}

.heading-compare {
    font-size: 1rem;
}

.pulse {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E3342F;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(227, 52, 47, 0.63);
    animation: pulse 2s infinite;
}

.pulse:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.63);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(227, 52, 47, 0.63);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.63);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.63);
        box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.63);
    }

    70% {

        box-shadow: 0 0 0 10px rgba(227, 52, 47, 0.4);
    }

    100% {

        box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.4);
    }
}

@keyframes lac {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }

    20% {
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
    }

    30% {
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }

    40% {
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
    }

    50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes lac {
    0% {
        -webkit-transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(-25deg);
    }

    20% {
        -webkit-transform: rotate(25deg);
    }

    30% {
        -webkit-transform: rotate(-25deg);
    }

    40% {
        -webkit-transform: rotate(25deg);
    }

    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@media only screen and (max-width: 600px) {

    .sodt,
    .sozalo {
        display: none;
    }
}

/**************/
#sidebar .tabs-to-dropdown .tab-bar ul li{
	background:transparent;
}
.btn-search-modal{
	right:0;
	transform: translateY(-50%);
}
.content-car-details {
    padding: 50px 0;
    background: #f5f5f5;
    position: relative;
}
.zalo-share-button {
    height: 30px !important;
    border: 1px solid #ccc;
    display: block;
    display: flex !important;
    align-items: center;
    border-radius: 7px;
    padding: 0 6px;
    width: auto !important;
}
.table-price .view-price, .table-price .view-price i{
    font-size: 1.4rem;
    color: #f93333;
}
.section-title-car-table-price .ltn__section-title-2{margin-bottom:10px;}
.section-title-car-table-price .ltn__section-title-2 .section-title{
	line-height:1.5em; font-size:2rem;
}
.car-item {
    border-top: 1px solid #f1f1f1;
    margin-top: 30px;
    padding-top: 30px;
}
.car-item:first-child{
	border-top: 0px solid #f1f1f1;
    margin-top: 0;
    padding-top: 0;
}
.info_price p, .brief p {
    margin: 0;
    line-height: 1.5em;
}
li.send-form button.btn {
    background: #000000;
    padding: 10px 20px 10px 40px;
    color: #ffffff;
    border-radius: 10px;
}
li.send-form button.btn i {
    color: #ffffff;
    font-size: 1.5rem;
    position: absolute;
    left: 10px;
    top: auto;
}
li.send-form button.btn:hover,li.send-form button.btn:hover i {
    color: #000000;
    border-color: #ccc;
}

.brief {
    overflow: hidden;
}
img{max-width:100%;}
.ltn__blog-item-3 .ltn__blog-img a{
    display: block;
    position: relative;
    display: block;
    width: 100%;
}
  .ltn__blog-item-3 .ltn__blog-img a:after {
    content: "";
    display: block;
    position: relative;
    z-index: 2;
    padding-top: 70%;
}
.ltn__blog-item-3 .ltn__blog-img a img {
    display: block;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    transition: transform .3s ease, opacity .3s;
    -webkit-transition: -webkit-transform .3s ease, opacity .3s;
}
.ltn__blog-item-3 .ltn__blog-title,.ltn__blog-item-6 .ltn__blog-title{
	margin-bottom: 20px;

    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-weight: 500;
    line-height: 1.5em;
    overflow: hidden;
}
.ltn__blog-item-6 .ltn__blog-description{
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-weight: 500;
    line-height: 1.5em;
    overflow: hidden;
    height: 47px;
}
label.error {
    text-transform: capitalize;
    font-size: 10px;
    padding-left: 0;
    color: red;
    position: absolute;
    left: 0;
    bottom: -15px;
    z-index: 999;
    padding: 2px 5px;
    opacity: 1;
    width: 100%;
    box-sizing: border-box;
    border: 0px;
    background: #f1f1f1;
white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.modal-utility .close, .search .modal-header .close {
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    font-size: 40px;
    line-height: 1rem;
    transform: translateX(14px) translateY(-15px);
    -webkit-transform: translateX(14px) translateY(-15px);
    color: #ff0000;
    background-color:transparent;
    font-size: 30px;
    width: 30px;
    height: 30px;
    border-radius: 60px 60px 60px 60px;
    z-index: 100;
}
.search .modal-header .close i{font-size:18px;}
.form-search .btn {
    font-size: 1.25rem;
    color: #144077;
    border: 0;
    background: transparent;
    padding: 0 0.5rem;
    height: 100%;
}
.form-search span.input-group-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.modal.search .modal-content{
    margin-top: 3rem;
}
.modal.search .modal-content {
	border-radius:0;
}
#searchform {
    position: relative;
}
.modal.search .modal-header{
	padding:2rem 1rem 3px;
}
.mega-header-desktop .ltn__product-item-3{
	border:0;
}
.mega-header-desktop .ltn__product-item-3:hover{
	box-shadow: none;
	-webkit-box-shadow: none;
}
.ltn__header-middle-area .mega-header-desktop {
    max-height: calc(100vh - 88px);
    overflow: auto !important;
}
.suggestions .list-group-item {
    padding: .5rem 0;margin:0;
}
.suggestions .list-group-item.view-all, .suggestions .list-group-item span.red {
    color: red;
    font-size: 16px;
}
li.list-group-item.view-all a {
    background: #f1f1f1;
    text-align: center;
    width: 100%;
    display: block;
    padding: 5px 10px;
    font-weight: bold;
}
.suggestions .list-group-item.view-all {
    padding: 0;
}
@keyframes elementor-animation-pulse-shrink{to{transform:scale(0.9)}}
.mega-header-desktop .ltn__product-item-3:hover .product-img{
	animation-name:elementor-animation-pulse-shrink;
	animation-duration:.3s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
	animation-direction:alternate;
	cursor:pointer;
}
.mega-header-desktop .ltn__product-item-3:hover .product-info a{
	color: var(--ltn__secondary-color);
}
.modal-product-info.shop-details-info {
    height: 100%;
}
b, strong {
    font-weight: bold;
}
.ul-row li a{
	padding-right:5px;
	display:block;
}
/***********************/
.tabs-to-dropdown{max-width: 1175px; margin:0 auto;}
body.stick .tabs-to-dropdown{ padding:0;}
.tabs-to-dropdown a,
.tabs-to-dropdown button,
.tabs-to-dropdown input[type=button] {
    text-decoration:none;
    -webkit-tap-highlight-color:transparent;
    tap-highlight-color:transparent;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
}

/* Tabs bar */
.tabs-to-dropdown {
    position:relative;
    z-index:99;
}
.tabs-to-dropdown>.tab-bar {
    overflow:auto;
    position:relative;
}
.tabs-to-dropdown>.tab-bar>ul {
    width:auto;
    margin:0;padding:5px 0;
    list-style:none;
}
.tabs-to-dropdown>.tab-bar>ul::after{
    display:table;
    content:"";
    clear:both;
}
.tabs-to-dropdown>.tab-bar>ul>li {
    display:inline-block;
    float:left;
    opacity:1;visibility:visible;
	margin:0;
    padding-right: 10px;
}
.tabs-to-dropdown>.tab-bar>ul>li.ttd-hide{
    opacity:0;visibility:hidden;
}
.tabs-to-dropdown>.tab-bar>ul>li>a {
    display: inline-block;
    color: #000;
    font-size: 15px;
    line-height: 1.5em;
    font-weight: normal;
    text-transform: capitalize;
    background: #000000;
    color: #fff;
    padding: 5px 15px;
    border: 1px solid;
}
/* Home button */
.tabs-to-dropdown>.tab-bar>ul>li>a>.fa {
    font-size:34px;
    padding:0 9px;
}

/* Acctive */
.tabs-to-dropdown>.tab-bar>ul>li.active:hover a{ opacity:.85; }
.tabs-to-dropdown>.tab-bar>ul>li.active>a, .tabs-to-dropdown>.tab-bar>ul>li>a:hover {
    background: #fff;
    color: red;
}
/* dropdown */
.tabs-to-dropdown>.dropdown>ul {
    list-style:none;
    margin:0;padding:0;
    position:absolute;
    z-index:1;
    top:60px;right:0;
    max-width:300px;
  background: rgb(243, 243, 243);
    opacity:0;visibility:hidden;
}
.tabs-to-dropdown>.dropdown.ttd-open>ul {
    opacity: 1;
    visibility: visible;
    top: 64px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
}
.tabs-to-dropdown>.dropdown>ul>li {
    margin:0;padding:0;
    opacity:0;visibility:hidden;
    max-height:0;
}
.tabs-to-dropdown>.dropdown.ttd-open>ul>li.ttd-show{
    opacity:1;visibility:visible;
    max-height:50px;
}
.tabs-to-dropdown>.dropdown>ul>li>a {
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#000;
    padding:15px;
    font-size:16px;
    line-height:1.5em;
}
.tabs-to-dropdown>.dropdown>ul>li>a.nav-active{color:#44aee6;}
.tabs-to-dropdown>.dropdown.ttd-open>ul>li>a:hover {  color:#f00313; }
section#ngoaithat{padding-top:0;}
.section.content-tabs{margin-bottom:20px; padding-top:10px;}
.section.content-tabs .page-title{ color:#333;padding:10px 0; margin-bottom:0;}
.section.content-tabs .page-title>span {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #133d71;
}
.dropdown-toggle::after{display:none;}
.dropdown.ttd-show .fa-angle-down:before{position:relative; top:3px;}
.rte>p{line-height:1.5em;}
/* Transition */
.tabs-to-dropdown>.tab-bar>ul>li,
.tabs-to-dropdown>.tab-bar>ul>li>a,
.tabs-to-dropdown>.tab-bar>ul>li>a>.fa,
.tabs-to-dropdown>.dropdown,
.tabs-to-dropdown>.dropdown>ul,
.tabs-to-dropdown>.dropdown>ul>li,
.tabs-to-dropdown>.dropdown>ul>li>a {
    -webkit-transition:all .2s ease;
    -moz-transition:all .2s ease;
    -ms-transition:all .2s ease;
    -o-transition:all .2s ease;
    transition:all .2s ease;
}
.tabs-to-dropdown>.tab-bar>ul>li.active:active,
.tabs-to-dropdown a:active,
.tabs-to-dropdown button:active,
.tabs-to-dropdown input[type=button] {
    -webkit-transition:none!important;
    -moz-transition:none!important;
    -ms-transition:none!important;
    -o-transition:all 0 ease!important;
    transition:none!important;
}
body.stick section.section.menu .menu-fixed {
    z-index: 100;
    width: 100%;
    background: #ffffff;
}
 body.stick .tabs-to-dropdown>.tab-bar>ul>li>a.nav-active{color:#ec1c24;}
 .page-content img{width:auto; height:auto !important;}

.nav-tabs-list.nav-pills .nav-link {
    color: #333333;
    padding: 5px 15px;
}
.nav-tabs-list.nav-pills .nav-link.active, .nav-tabs-list.nav-pills .show>.nav-link{
	background:#000000;
	color:#ffffff;
}
button.btn-view-more {
    padding: 5px 20px;
    background: #000000;
    color: #ffffff;
}
.btn-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.price {
    font-size: 25px;
    color: #ed1c24;
    font-weight: bold;
}
 @media (max-width:1200px) {
	 .tabs-to-dropdown {
		max-width: 940px;
	}
	 body.stick section.section.menu  .menu-fixed{top: 68px;}
 }
@media (max-width:991px) {
	.tabs-to-dropdown {
		max-width: 720px;
	}
	 body.stick section.section.menu  .menu-fixed{top: 68px;}
	 .tabs-to-dropdown>.dropdown.ttd-open>ul{top: 41px;}
	 .tabs-to-dropdown>.dropdown>ul>li>a{padding:5px 15px; font-size:14px;}
	 body.stick .tabs-to-dropdown{padding:0 15px; background:#ffffff;}
	 .ltn__breadcrumb-area{
		 margin-bottom:60px;
	 }

}

@media (max-width:767px) {
	.tabs-to-dropdown {
		max-width: 576px;
	}
	.title-compare{font-size:1.4rem; line-height:1.3em;}
	button.splide__arrow {
		width: 25px;
		height: 25px;
		font-size: 8px;
	}
.mobile-menu-toggle{margin-right:5px;}
	.mobile-menu-toggle,.ltn__header-options-2 .header-search-1{width:40px; height:40px;}
	.navbar-toggler-icon{font-size:26px;}
	.ltn__header-options-2 .header-search-1{font-size:24px; line-height:0;}
	.site-logo-wrap .site-logo {
		min-width: auto;
		max-width: 185px;
	}
	.ltn__header-5 .ltn__header-options{padding:0; margin-left:0;}
}

/* Media Queries */
@media all and (max-width:699px) {
    /* Tabs bar */
    .tabs-to-dropdown>.tab-bar>ul>li>a>.fa {
        font-size:24px;
        padding:0;
    }
    /* Dropdown */
    .tabs-to-dropdown>.dropdown>ul { top:30px }
    .tabs-to-dropdown>.dropdown.ttd-open>ul { top:41px; }
    .tabs-to-dropdown>.dropdown>ul>li>a {
        padding:10px;
        font-size:14px;
        line-height:16px;
    }
}
@media all and (max-width:576px) {
	.ltn__breadcrumb-area{
	 margin-bottom:30px;
	}
}
@media all and (max-width:319px) {
.site-logo-wrap .site-logo {
		max-width: 140px;
	}
}
/**********************/
.jssocials-shares .jssocials-share-link{padding:5px;}
.product-summary .product-desc {
    padding: 10px;
    margin: 10px auto;
    border: 2px dotted #ff3300;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
.single-car img {
	height: auto !important;
}
.product-summary .form-pricequote {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 15px 15px 15px 15px;
    background-color: #ffcaab
}

.product-summary .form-pricequote .form-control {
    border: none;
    border-radius: 2px;
	margin:0;
	padding:5px 10px;
	height:auto;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.product-summary .form-pricequote .form-group,.product-summary .form-pricequote .form-control{
	height:100%;
    min-height: 40px;
}
.btn-default {
    position: relative;
    color: #fff !important;
    background: var(--color-secondary);
    border: none;
    font-size: 100%;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    z-index: 1;
	padding: 5px 10px;
	border-radius:5px;
}
[type="submit"].btn.btn-default{
	padding: 8px 10px;
}
.btn-default:before{
	position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-secondary-hover);
    border-radius: 2px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.btn-default:hover:before, .btn-default:focus:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.page-item.active .page-link{
	background-color: #000000;
    border-color: #000000;
}
.detail-content .block-highlight {
    padding: 20px;
    margin: 20px auto;
    border: 3px dotted #32580f;
    border-radius: 15px;
}
.image-full-car:after{padding-top: 58%;}

/* ===== LIST UL, OL ===== */
.detail-content ul {
    list-style:disc;
    padding:0;
    margin-left:20px;
    margin-bottom:0;
}
.detail-content ul ul {
    margin-top: 16px;
}
.detail-content ul li{
    position:relative;
    list-style: none;
    vertical-align: middle;
    padding-left:14px;
}
.detail-content ul li:before{
    content:"";
    background: #777;
    position:absolute;
    left:0;
    top:5px;
    display: inline-block;
    width:8px;
    height:8px;
    border-radius: 50%;
}
.detail-content ol{
    list-style: none;
    counter-reset: my-awesome-counter;
    margin:0;
    padding:0;
}
.detail-content ol li {
    counter-increment: my-awesome-counter;
    position:relative;
    display:block;
    padding-left:30px;
}
.detail-content ol li::before {
    content: counter(my-awesome-counter);
    background: #189eff;
    position:absolute;
    left:0;
    display: inline-block;
    font-size:90%;
    width:22px;
    height:22px;
    line-height:22px;
    border-radius: 50%;
    color:#fff;
    text-align: center;
}
table.striped.table>:not(caption)>*>*{
	    border: #d3d3d3 1px dotted;
}
.section-consult-aside .consult-phone,.consult-media img,.section-utility-aside .utility{
	    border-radius: 10px;
	    -moz-border-radius: 10px;
	    -webkit-border-radius: 10px;
}
.tabs-to-dropdown>.tab-bar>ul>li>a{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}