@font-face {
    font-family: 'HyundaiHead';
    src: url('../fonts/HyundaiSansHead-Light.woff');
    src: url('../fonts/HyundaiSansHead-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'HyundaiHead';
    src: url('../fonts/HyundaiSansHead-Regular.woff');
    src: url('../fonts/HyundaiSansHead-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'HyundaiHead';
    src: url('../fonts/HyundaiSansHead-Medium.woff');
    src: url('../fonts/HyundaiSansHead-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'HyundaiHead';
    src: url('../fonts/HyundaiSansHead-Bold.woff');
    src: url('../fonts/HyundaiSansHead-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Hyundai';
    src: url('../fonts/HyundaiSansText-Regular.woff');
    src: url('../fonts/HyundaiSansText-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Hyundai';
    src: url('../fonts/HyundaiSansText-Medium.woff');
    src: url('../fonts/HyundaiSansText-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Hyundai';
    src: url('../fonts/HyundaiSansText-Bold.woff') format('woff2');
    src: url('../fonts/HyundaiSansText-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'IconFont';
    src: url('../fonts/iconfont1.0.231-SNAPSHOT.woff2') format('woff2'),
    url('../fonts/iconfont1.0.231-SNAPSHOT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.hi {
    font-family: "IconFont" !important;
    font-style: normal;
    font-weight: 400 !important;
    vertical-align: middle;
}
.hi-test-drive::before {
    content: "\f123";
}
.hi-quote::before {
    content: "\f120";
}
.hi-stock-locator::before {
    content: "\f122";
}
.hi-facebook::before {
    content: "\f12d";
}
.hi-youtube::before {
    content: "\f135";
}
.hi-instagram::before {
    content: "\f12f";
}
.hi-linkedin::before {
    content: "\f130";
}
.hi-x-close::before {
    content: "\f106";
}
.hi-menu-bars::before {
    content: "\f12a";
}

*{
    box-sizing: border-box;
    font-family: 'Hyundai', sans-serif;
}
html, body{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body{
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Hyundai', sans-serif;
    font-size: 16px;
    line-height: 1.28;
    background-color: #FFFFFF;
}
a, button, input[type="submit"]{
    transition: all 0.3s ease-in-out;
}
a{
    text-decoration: none;
    color: #000000;
}
img{
    max-width: 100%;
    height: auto;
}
ul, ol{
    list-style: none;
    padding: 0;
    &:not(.list){
        li{
            display: flex;
            gap: 10px;
            &:before {
                display: block;
                color: inherit;
            }
        }
    }
}
ul{
    &:not(.list){
        li{
            &:before{
                content: '•';
            }
        }
    }
}
ol{
    counter-reset: li;
    li{
        &:before{
            counter-increment: li;
            content: counter(li, decimal)".";
        }
    }
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'HyundaiHead', sans-serif;
}

.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    @media (min-width: 1024px){
        padding-right: 55px;
    }
    @media (min-width: 1405px){
        width: 1387px;
    }
    @media (min-width: 1600px){
        padding-right: 15px;
    }
}

.row{
    display: flex;
    flex-wrap: wrap;
    @media (min-width: 768px) {
        gap: 34px;
    }
    .col-md-6{
        width: 100%;
        @media (min-width: 768px) {
            flex-basis: calc((100% - 1 * 34px) / 2);
            max-width: calc((100% - 1 * 34px) / 2);
        }
    }
    .col-md-4{
        width: 100%;
        @media (min-width: 768px) {
            flex-basis: calc((100% - 2 * 34px) / 3);
            max-width: calc((100% - 2 * 34px) / 3);
        }
    }
    .col-md-3{
        width: 100%;
        @media (min-width: 768px) {
            flex-basis: calc((100% - 3 * 34px) / 4);
            max-width: calc((100% - 3 * 34px) / 4);
        }
    }
    .col-md-9 {
        width: 100%;
        @media (min-width: 768px) {
            flex-basis: 75%;
            max-width: 75%;
        }
    }
    .col-md-12{
        width: 100%;
    }
}

.text-center{
    text-align: center;
    li{
        justify-content: center;
    }
}
::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
}
::-webkit-scrollbar-track {
    background-color: #002c5f;
}
::-webkit-scrollbar-thumb {
    background-color: #b7b7b7;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #767676;
}
.text-danger {
    color: #e63312;
}
.btn{
    width: 100%;
    padding: 16px 16px 17px;
    text-align: center;
    font-size: 16px;
    line-height: 1.68;
    color: #ffffff;
    background-color: #002c5f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    @media (min-width: 768px){
        width: auto;
    }
    &:hover, &:active{
        font-weight: 500;
        text-decoration: underline;
    }
    &:disabled {
        opacity: 0.5;
        pointer-events: none;
    }
}
.btn-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab-content{
    display: none;
    &.show{
        display: block;
    }
}
.breadcrumb {
    background: transparent;
    color: #808080;
    padding: 0;
    margin: 0;
    font-family: Hyundai, sans-serif;
    font-size: 0.625rem;
    font-weight: bold;
    border-radius: 0;
}
.content-header {
    .breadcrumb {
        display: flex;
        gap: 0.625rem;
        > li {
            line-height: 1.25rem;
            padding: 0;
            text-shadow: 0 1px 0 #fff;
            > a {
                color: #888888;
            }

            &.active > a {
                color: #888888;
            }
            &::before {
                content:'';
            }
        }
        > li + li::before {
            content: '>';
            color: #888888;
            font-size: 9px;
        }
    }
}
.slim{
    max-width: 100%;
    @media (min-width: 1024px) {
        max-width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
}

hr {
    border: 1px solid #002c5f;
    border-bottom: 0;
}

iframe[id^="fcc-sitecall"] {
    transform: scale(0.75) !important;
    transform-origin: 0 0 !important;
    left: 0 !important;
    bottom: 75px !important;
    @media (min-width: 768px) {
        transform: scale(1) !important;
        bottom: 0 !important;
    }
}

iframe[id^="fcc-chat"]{
    bottom: 94px !important;
    @media (min-width: 768px) {
        bottom: 0 !important;
    }
}

.lg-backdrop{
    z-index: 16777272 !important;
}

.lg-outer{
    z-index: 16777273 !important;
}
