/* ============================================================
    2. GENERAL
=============================================================*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'Lexend',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans','Liberation Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
    color: #0b3a56;
}

body:not(.popup) {
    padding-top: 50px;
}

@media (min-width: 992px) {
    body:not(.popup) {
        padding-top: 0;
    }
}

body.show-overlay {
    overflow: hidden;
}

@media (max-width: 991px) {
    body.show-overlay-mobile {
        overflow: hidden;
    }
}

a {
    color: #0b3a56;
    text-decoration: none;
    transition: color .2s linear;
}

a:hover,
a:active,
a:focus {
    color: #0375fd;
    text-decoration: none;
}

::selection {
    background-color: #0375fd;
    color: #fff;
}

/* Font Heading */
.font-heading {
    font-family: 'Montserrat';
}

/* Image Wrapper */
.image-wrapper:after {
    content: '';
    display: block;
    padding-top: 100%;
}

.image-wrapper.image-16-9:after {
    padding-top: 56.25%;
}

.image-wrapper.image-16-10:after {
    padding-top: 62.5%;
}

.image-wrapper.image-3-2:after {
    padding-top: 66.66667%;
}

.image-wrapper.image-4-3:after {
    padding-top: 75%;
}

.image-wrapper img {
    object-fit: cover;
    z-index: 2;
}

.image-wrapper-hover-zoom .image-wrapper {
    overflow: hidden;
}

.image-wrapper-hover-zoom .image-wrapper img {
    transition: transform .8s;
}

.image-wrapper-hover-zoom:hover .image-wrapper img {
    transform: scale(1.1, 1.1);
}

/* Give Ellipsis */
.give-ellipsis {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.give-ellipsis.after-2-lines {
    -webkit-line-clamp: 2;
}

.give-ellipsis.after-3-lines {
    -webkit-line-clamp: 3;
}

.give-ellipsis.after-4-lines {
    -webkit-line-clamp: 4;
}

.give-ellipsis.after-5-lines {
    -webkit-line-clamp: 5;
}

/* Article Content */
.article-content a[data-fancybox] {
    display: block;
    position: relative;
}

.article-content a[data-fancybox] .hint {
    display: inline-block;
    right: 15px;
    bottom: 15px;
    font-size: .8125rem;
    line-height: 1;
    text-shadow: 0px 1px 1px rgb(0 0 0 / 20%);
    z-index: 1;
}

.article-content a[data-fancybox] .hint i {
    font-size: 1rem;
}

/* Overlay */
.overlay {
    background-color: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    display: none;
}

.overlay.show {
    display: block;
}

.overlay .btn-close {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    z-index: 5;
}

/* Page Breadcrumb */
.page-breadcrumb .breadcrumb {
    background-color: unset;
    border-radius: unset;
    padding: 1rem 0;
}

@media (min-width: 1400px) {
    .page-breadcrumb .breadcrumb {
        padding: 2rem 0;
    }
}

.page-breadcrumb .breadcrumb .active,
.page-breadcrumb .breadcrumb .active a {
    color: #999;
}

.page-breadcrumb .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.page-breadcrumb .breadcrumb .breadcrumb-item.active::before {
    font-weight: normal;
}

/* Table Cart */
.tbl-cart .image-wrapper {
    width: 80px;
}

/* Form Search */
.frm-search {
    border-radius: 5px;
}

.frm-search .form-control {
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
}

.frm-search button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Modal Login */
#modal-login .frm-sso {
    margin: 0 -10px;
}

#modal-login .frm-sso [class^="col-"] {
    padding: 10px;
}

#modal-login .frm-sso .btn-login-with-google {
    background-color: #eb4026;
}

#modal-login .frm-sso .btn-login-with-google:hover {
    background-color: #a1210e;
}

#modal-login .frm-sso .btn-login-with-facebook {
    background-color: #1877f2;
}

#modal-login .frm-sso .btn-login-with-facebook:hover {
    background-color: #0d5abe;
}

/* List Product */
.list-product {
    margin: -15px -6px;
}

.list-product [class*="col-"] {
    padding: 15px 6px;
}

@media (min-width: 576px) {
    .list-product {
        margin: -15px;
    }

    .list-product [class*="col-"] {
        padding: 15px;
    }
}

@media (min-width: 1200px) {
    .list-product .item {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.list-product .item .image-wrapper {
    border-radius: 10px;
    border: 1px solid #edeef5;
}

.list-product .item .main-info .title {
    font-size: .875rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .list-product .item .main-info .title {
        font-size: 1rem;
    }
}

.list-product .item .main-info .price {
    font-size: .875rem;
    color: #0375fd;
}

.list-product .item .function {
    margin-top: auto;
}

.list-product .item .function .btn-buy-now {
    background-color: #f4f5f8;
    border-radius: 38px;
    font-size: .75rem;
}

@media (min-width: 768px) {
    .list-product .item .function .btn-buy-now {
        font-size: 1rem;
    }
}

.list-product .item .function .btn-buy-now:hover {
    background-color: #0375fd;
    color: #fff;
}

/* List Product Featured */
.list-product-featured .item .image-wrapper {
    border: 1px solid #edeef5;
}

.list-product-featured .item .main-info .title {
    font-size: .875rem;
    line-height: 1.4;
}

.list-product-featured .item .main-info .price {
    font-size: .875rem;
    color: #0375fd;
}

@media (min-width: 768px) {
    .list-product-featured .item .main-info .title {
        font-size: 1rem;
    }

    .list-product-featured .item .main-info .price {
        font-size: 1rem;
    }
}

.list-product-featured.owl-theme .owl-dots {
    display: flex;
    justify-content: center;
}

.list-product-featured.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 1.5rem;
}

.list-product-featured.owl-theme .owl-dots .owl-dot {
    display: flex;
    align-items: center;
}

.list-product-featured.owl-theme .owl-dots .owl-dot.active span {
    background-color: #0375fd;
    width: 20px;
    border-radius: 4px;
}

.list-product-featured.owl-theme .owl-dots .owl-dot span {
    background-color: #edeef5;
    width: 8px;
    height: 8px;
    margin: 5px 3px;
}

/* List Article */
.list-article .item:not(:last-child) {
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .list-article .item:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

.list-article .item .image-wrapper {
    width: 120px;
    border-radius: 10px;
}

.list-article .item .title {
    font-size: .9375rem;
    line-height: 1.3;
}

.list-article .item .publish-date {
    color: #7f97a7;
    font-size: .75rem;
}

@media (min-width: 992px) {
    .list-article .item .image-wrapper {
        width: 180px;
    }

    .list-article .item .title {
        font-size: 1rem;
    }
    
    .list-article .item .publish-date {
        font-size: .875rem;
    }
}

/* List Article Grid */
.list-article-grid {
    margin: -15px -10px;
}

.list-article-grid [class*="col-"] {
    padding: 15px 10px;
}

@media (min-width: 576px) {
    .list-article-grid {
        margin: -15px;
    }

    .list-article-grid [class*="col-"] {
        padding: 15px;
    }
}

.list-article-grid .item .image-wrapper {
    border-radius: 10px;
}

.list-article-grid .item .publish-date,
.list-article-grid .item .description {
    color: #7f97a7;
    font-size: .875rem;
}

.list-article-grid .item .title {
    font-size: 1rem;
    line-height: 1.4;
}

.list-article-grid .item .description *:last-child {
    margin: 0;
}

/* List Document */
.list-document {
    margin: -15px -10px;
}

.list-document [class*="col-"] {
    padding: 15px 10px;
}

@media (min-width: 576px) {
    .list-document {
        margin: -15px;
    }

    .list-document [class*="col-"] {
        padding: 15px;
    }
}

.list-document .item .image-wrapper:after {
    padding-top: 133.33333%
}

.list-document .item .image-wrapper {
    border-radius: 10px;
}

.list-document .item .publish-date,
.list-document .item .author {
    color: #7f97a7;
    font-size: .875rem;
}

.list-document .item .title {
    font-size: 1rem;
    line-height: 1.4;
}

/* ============================================================
    3. OVERRIDE
=============================================================*/
/* ============================================================
    3.1. Bootstrap
=============================================================*/
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container-fluid {
    max-width: 1920px;
}

@media (min-width: 1280px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1230px;
    }
}

.form-control:focus {
    border: 1px solid #ced4da;
}

.form-control::placeholder {
    color: #cecece;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #0375fd;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: #cbffe0;
}

.btn-primary {
    background-color: #0375fd;
}

.page-link {
    background-color: #f4f5f8;
    border: none;
    color: #0b3a56;
    margin: 4px;
}

.page-link:hover {
    background-color: #f4f5f8;
    color: #0375fd;
}

.page-item.active .page-link {
    background-color: #0375fd;
    border-color: #0375fd;
}

.input-group-number input {
    width: 46px;
    height: 30px;
    line-height: 0;
}

@media (min-width: 768px) {
    .input-group-number button {
        height: 40px;
    }
}

@media (min-width: 1200px) {
    .input-group-number input {
        width: 90px;
    }
}

.input-group-number button {
    width: 30px;
    height: 30px;
    line-height: 0;
    background-color: #edf4f6;
}

@media (min-width: 768px) {
    .input-group-number button {
        width: 40px;
        height: 40px;
    }
}

.input-group-number button[disabled] {
    border: 1px solid #efefef;
}

.input-group-number input[type=number]::-webkit-inner-spin-button, 
.input-group-number input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/* ============================================================
    3.2. Select2
=============================================================*/
.select2-container--default .select2-selection--single {
    border: 1px solid #f4f5f8;
}

.select2.select2-sm {
    font-size: .875rem;
}

/* ============================================================
    4. HEADER
=============================================================*/
@media (min-width: 1400px) {
    #header .frm-search .form-control {
        height: 3rem;
    }

    #header .frm-search button {
        padding: 0;
        width: 3rem;
        line-height: 3rem;
    }
}

#header .function .list-item {
    font-size: 1.125rem;
    margin: 0 -.5rem;
}

#header .function .list-item .item {
    padding: 0 .5rem;
}

#header .function .list-item .item .number {
    top: -6px;
    right: -6px;
    background-color: #00d084;
    font-size: .5625rem;
    height: 20px;
    width: 20px;
    line-height: 20px;
}

#header .function .user-info .avatar {
    width: 30px;
    height: 30px;
}

#header .list-app {
    margin: 0 -3px;
}

#header .list-app .item {
    padding: 0 3px;
}

#header .list-app .item .item-wrapper {
    width: 28px;
    height: 28px;
    line-height: 28px;
}

#header .list-app .item.item-ios .item-wrapper {
    background-color: #efefef;
}

#header .list-app .item.item-android .item-wrapper {
    background-color: #79c257;
}

#header .header-wrapper {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #d2d3db;
}

@media (min-width: 992px) {
    #header .header-wrapper {
        position: unset;
        height: 130px;
    }
}

@media (min-width: 1400px) {
    #header .header-wrapper {
        height: 152px;
    }
}

/* Layout */
#header .header-left:nth-child(1),
#header .header-right {
    width: 90px;
}

@media (min-width: 992px) {
    #header .header-left:nth-child(2) {
        width: 150px;
    }

    #header .header-right {
        width: calc(100% - 150px);
    }
}

@media (min-width: 1400px) {
    #header .header-left:nth-child(2) {
        width: 200px;
    }
    
    #header .header-right {
        width: calc(100% - 200px);
    }
}

@media (min-width: 992px) {
    #header .header-top .header-top-left {
        width: 50%;
    }

    #header .header-top .header-top-right {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    #header .header-top .header-top-left {
        width: 60%;
    }

    #header .header-top .header-top-right {
        width: 40%;
    }
}

/* Header Left */
#header .header-left .btn-open-menu {
    font-size: 1.25rem;
}

#header .header-left .logo {
    width: 40px;
}

@media (min-width: 992px) {
    #header .header-left .logo {
        width: 110px;
    }
}

@media (min-width: 1400px) {
    #header .header-left .logo {
        width: 120px;
    }
}

/* Header Right */
#header .header-right .contact .icon {
    background-color: #0b3a56;
    width: 2.625rem;
    height: 2.625rem;
    line-height: 2.625rem;
    font-size: 1.375rem;
}

@media (min-width: 1400px) {
    #header .header-right .contact .icon {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
    }
}

#header .header-right .contact .title {
    font-size: .75rem;
}

/* Header Top */
@media (min-width: 1400px) {
    #header .header-top .btn {
        height: 3rem;
    }
}

#header .header-top .user-info .avatar {
    width: 2.625rem;
    height: 2.625rem;
}

@media (min-width: 1400px) {
    #header .header-top .user-info .avatar {
        width: 3rem;
        height: 3rem;
    }
}

/* Header Bottom */
#header .header-bottom .navigation-bar .list-item {
    margin: 0 -.75rem;
    /*margin: 0 -.2rem;*/
}

#header .header-bottom .navigation-bar .list-item .item {
    padding: 0 .75rem;
    /*padding: 0 .25rem;
    letter-spacing: -.3px;*/
}

#header .header-bottom .navigation-bar .list-item .item .item-wrapper {
    padding: 1.125rem 0 calc(1.125rem - 3px) 0;
    border-bottom: 3px solid transparent;
}

#header .header-bottom .navigation-bar .list-item .item.active .item-wrapper {
    font-weight: 700;
    color: #0375fd;
    border-bottom: 3px solid #0375fd;
}

@media (min-width: 1200px) {
    #header .header-bottom .navigation-bar .list-item {
        margin: 0 -1rem;
        /*margin: 0 -.5rem;*/
    }

    #header .header-bottom .navigation-bar .list-item .item {
        padding: 0 1rem;
        /*padding: 0 .5rem;
        letter-spacing: unset;*/
    }
}

@media (min-width: 1400px) {
    #header .header-bottom .navigation-bar .list-item .item .item-wrapper {
        padding: 1.5rem 0 calc(1.5rem - 3px) 0;
    }
}

#header .header-bottom-right .list-function {
    margin: 0 -1rem;
}

#header .header-bottom-right .list-function .item {
    padding: 0 1rem;
    border-right: 1px solid #d2d3db;
}

#header .header-bottom-right .list-function .item:last-child {
    border-right: none;
}

#header .header-bottom-right .list-function .item .icon {
    color: #0375df;
}

#header .header-bottom-right .list-function .item.has-notification .icon {
    padding-right: 1rem;
}

#header .header-bottom-right .list-function .item .badge {
    padding-top: 2px;
    padding-bottom: 2px;
    top: 0;
    right: -5px;
    font-size: .625rem;
}

/* ============================================================
    5. MENU MOBILE
=============================================================*/
#menu-mobile {
    width: 300px;
    max-width: 80vw;
    top: 0;
    left: -100%;
    z-index: 6;
    transition: left .5s ease-out;
    overflow-y: scroll;
}

#menu-mobile.show {
    left: 0;
}

#menu-mobile .search {
    border-bottom: 1px solid #f4f5f8;
}

#menu-mobile .search .wrapper {
    padding: 15px;
}

#menu-mobile nav {
    padding-top: .5rem;
}

#menu-mobile nav ul li .btn-toggle {
    right: 0;
    top: 0;
    padding: 0 15px;
    width: 40px;
    cursor: pointer;
    line-height: 45px;
}

#menu-mobile nav ul li .btn-toggle i {
    transition: transform .3s linear;
}

#menu-mobile nav ul li.show .btn-toggle {
    color: #0375fd;
}

/* Level 1 */
#menu-mobile nav ul.menu li {
    font-size: .875rem;
}

#menu-mobile nav ul.menu li a {
    padding: 8px 20px;
    line-height: 25px;
}

#menu-mobile nav ul.menu li a.has-toggle {
    padding-right: 40px;
}

#menu-mobile nav ul.menu li.show a.has-toggle {
    color: #0375fd !important;
}

/* Level 2 */
#menu-mobile nav ul.menu li ul.sub-menu {
    display: none;
}

#menu-mobile nav ul.menu li ul.sub-menu li:last-child {
    border-bottom: none;
}

#menu-mobile nav ul.menu li ul.sub-menu li {
    font-size: .75rem;
}

#menu-mobile nav ul.menu li ul.sub-menu li a {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: calc(20px + 20px);
    line-height: 1;
}

/* Level 3 */
#menu-mobile nav ul.menu li ul.sub-menu li ul.sub-menu li a {
    padding-left: calc(20px + 20px + 20px);
}

@media (min-width: 992px) {
    #menu-mobile {
        display: none;
    }

    #menu-mobile-overlay {
        display: none !important;
    }
}

/* ============================================================
    6. FOOTER
=============================================================*/
#footer {
    font-size: .75rem;
}

@media (min-width: 768px) {
    #footer {
        font-size: .875rem;
    }
}

@media (min-width: 1400px) {
    #footer {
        font-size: 1rem;
    }
}

#footer .footer-top .container-fluid,
#footer .footer-main .container-fluid {
    padding: 20px 0;
    background-color: #0b3a56;
}

@media (min-width: 992px) {
    #footer .footer-top .container-fluid {
        padding: 30px 0;
    }
}

/* Footer Top */
#footer .footer-top i {
    color: #0375fd;
}

#footer .footer-top .container-fluid {
    background-color: #0b3a56;
    border-bottom: 1px solid #3c6178;
}

@media (min-width: 1400px) {
    #footer .footer-top .container-fluid {
        padding: 50px 0;
    }
}

#footer .footer-top .footer-top-title {
    font-size: .8125rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    #footer .footer-top .footer-top-title {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {
    #footer .footer-top .footer-top-title {
        font-size: 1.5rem;
    }
}

#footer .footer-top .footer-top-left {
    width: 100px;
}

#footer .footer-top .footer-top-right {
    width: calc(100% - 100px);
}

@media (min-width: 768px) {
    #footer .footer-top .footer-top-left {
        width: 150px;
    }

    #footer .footer-top .footer-top-right {
        width: calc(100% - 150px);
    }
}

@media (min-width: 1400px) {
    #footer .footer-top .footer-top-left {
        width: 200px;
    }
    
    #footer .footer-top .footer-top-right {
        width: calc(100% - 200px);
    }
}

#footer .footer-top .footer-top-left .logo {
    width: 80px;
}

@media (min-width: 768px) {
    #footer .footer-top .footer-top-left .logo {
        width: 110px;
    }
}

@media (min-width: 1400px) {
    #footer .footer-top .footer-top-left .logo {
        width: 120px;
    }
}

#footer .footer-top .contact .list-item {
    margin: -2px 0;
}

#footer .footer-top .contact .list-item .item {
    padding: 2px 0;
}

@media (min-width: 992px) {
    #footer .footer-top .contact .list-item .item:not(:last-child) {
        padding-right: 70px;
    }
}

/* Footer Main */
#footer .footer-main .menu .list-item {
    margin: -4px;
}

#footer .footer-main .menu .list-item .item {
    padding: 4px;
}

/* Footer Bottom */
#footer .footer-bottom .container-fluid {
    background-color: #042d46;
    padding: .8125rem 0;
}

/* ============================================================
    7. PAGE
=============================================================*/
.page section,
.page section.bg .container-fluid {
    padding: 16px 0;
}

.page section.bg {
    padding: 0;
}

.page section:last-child {
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .page section,
    .page section.bg .container-fluid {
        padding: 20px 0;
        margin: 0;
    }

    .page section:last-child {
        padding-bottom: 40px;
    }
}

@media (min-width: 1400px) {
    .page section,
    .page section.bg .container-fluid {
        padding: 38px 0;
        margin: 0;
    }

    .page section:last-child {
        padding-bottom: 76px;
    }
}

.page section.bg.bg-gray .container-fluid {
    background-color: #f4f5f8;
}

/* Section Title */
.page section .section-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .page section .section-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    .page section .section-title {
        font-size: 2rem;
        margin-bottom: 2.625rem;
    }
}

/* Banner */
.page .banner .image-wrapper:after {
    padding-top: 42.48%;
}

@media (min-width: 768px) {
    .page .banner .image-wrapper:after {
        padding-top: 31.25%;
    }
}

/* Cover */
.page .cover .image-wrapper:after {
    padding-top: 20%;
}

@media (min-width: 768px) {
    .page .cover .image-wrapper:after {
        padding-top: 15%;
    }
}

@media (min-width: 992px) {
    .page .cover .image-wrapper:after {
        padding-top: 12%;
    }
}

@media (min-width: 1400px) {
    .page .cover .image-wrapper:after {
        padding-top: 10.416666%;
    }
}

.page .cover .section-title {
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* ============================================================
    7.1. Home
=============================================================*/
#home section {
    padding: 16px 0;
}

#home section.bg .container-fluid {
    padding: 32px 0;
    margin: 16px 0;
}

#home section.bg {
    padding: 0;
}

@media (min-width: 768px) {
    #home section,
    #home section.bg .container-fluid {
        padding: 20px 0;
        margin: 0;
    }
}

@media (min-width: 992px) {
    #home section,
    #home section.bg .container-fluid {
        padding: 40px 0;
    }
}

#home section.bg.bg-gray .container-fluid {
    background-color: #f4f5f8;
}

#home section .section-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    #home section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    #home section .section-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    #home section .section-title {
        font-size: 2rem;
    }
}

/* Section 1 */
#home .section-1 .image-wrapper:after {
    padding-top: 42.48%;
}

@media (min-width: 768px) {
    #home .section-1 .image-wrapper:after {
        padding-top: 31.25%;
    }
}

#home .section-1 .owl-theme .owl-dots {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

#home .section-1 .owl-theme .owl-dots .owl-dot {
    display: flex;
    align-items: center;
}

#home .section-1 .owl-theme .owl-dots .owl-dot.active span {
    background-color: #0375fd;
}

#home .section-1 .owl-theme .owl-dots .owl-dot span {
    margin: 5px;
    background-color: #fff;
}

@media (max-width: 575px) {
    #home .section-1 .owl-theme .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 5px 3px;
    }
}

/* Section 7 */
@media (max-width: 991px) {
    #home .section-7 .section-title {
        margin-bottom: 1rem;
    }
}

/* Section Adv */
#home .section-adv .list-item {
    margin: -5px;
}

#home .section-adv .list-item [class*="col-"] {
    padding: 5px;
}

@media (min-width: 576px) {
    #home .section-adv .list-item {
        margin: -15px;
    }

    #home .section-adv .list-item [class*="col-"] {
        padding: 15px;
    }
}

#home .section-adv .list-item .item img {
    border-radius: 10px;
}

/* ============================================================
    8.2. Product Category
=============================================================*/
#product-category.page .banner .image-wrapper:after {
    padding-top: 40%;
}

@media (min-width: 768px) {
    #product-category.page .banner .image-wrapper:after {
        padding-top: 36.45833%;
    }
}

/* ============================================================
    8.3. Product Detail
=============================================================*/
#product-detail .container-fluid:nth-child(1) {
    background-color: #f4f5f8;
}

#product-detail section {
    padding-bottom: 1.5rem;
}

#product-detail section .section-wrapper {
    padding: 1rem;
}

@media (max-width: 575px) {
    #product-detail section .section-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 768px) {
    #product-detail section .section-wrapper {
        padding: 1.25rem;
    }
}

@media (min-width: 1400px) {
    #product-detail section .section-wrapper {
        padding: 2rem;
    }
}

#product-detail section .section-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    #product-detail section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    #product-detail section .section-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    #product-detail section .section-title {
        font-size: 2rem;
        margin-bottom: 2.625rem;
    }
}

#product-detail section .section-sub-title {
    font-size: .75rem;
    line-height: 1.3;
    color: #849caa;
}

#product-detail section .section-sub-title .value {
    color: #0b3a56;
}

@media (min-width: 768px) {
    #product-detail section .section-sub-title {
        font-size: .875rem;
    }
}

@media (min-width: 992px) {
    #product-detail section .section-sub-title {
        font-size: 1rem;
    }
}

/* Section 1 */
#product-detail .section-1 .image-wrapper.active:before {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    #product-detail .section-1 .product .image {
        width: 50%;
        float: left;
        padding-right: 32px;
    }
    
    #product-detail .section-1 .product .info {
        width: 50%;
        float: left;
        position: relative;
    }
}

@media (min-width: 992px) {
    #product-detail .section-1 .product .image {
        width: 44.5%;
    }
    
    #product-detail .section-1 .product .info {
        width: 55.5%;
    }
}

#product-detail .section-1 .product .image-wrapper {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

#product-detail .section-1 .product .image-wrapper.image-wrapper-portrain:after {
    padding-top: 133.33333%
}

#product-detail .section-1 .product .image .list-thumbnail {
    margin: 0 -4px;
}

#product-detail .section-1 .product .image .list-thumbnail .item {
    width: 25%;
    padding: 0 4px;
}

#product-detail .section-1 .product .image .list-thumbnail .item .wrapper {
    position: relative;
}

#product-detail .section-1 .product .image .list-thumbnail .more {
    position: absolute;
    z-index: 3;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media (min-width: 1200px) {
    #product-detail .section-1 .product .info hr {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

#product-detail .section-1 .product .info .price {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #0375fd;
}

@media (min-width: 768px) {
    #product-detail .section-1 .product .info .price {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    #product-detail .section-1 .product .info .price {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    #product-detail .section-1 .product .info .price {
        font-size: 2rem;
    }
}

#product-detail .section-1 .product .info .function .btn {
    border-radius: 38px;
    font-size: .875rem;
    padding: .5rem 1rem;
}

@media (min-width: 768px) {
    #product-detail .section-1 .product .info .function .btn {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    #product-detail .section-1 .product .info .function .btn {
        padding: .4584375rem 1.6875rem;
    }
}

#product-detail .section-1 .product .info .function .btn-add-to-cart {
    background-color: #f4f5f8;
}

#product-detail .section-1 .product .info .function .btn-buy-now {
    background-color: #00d084;
}

/* Section 2 */
#product-detail .section-2 .list-commit {
    margin: 0 -10px;
}

#product-detail .section-2 .list-commit .item {
    padding: 10px;
}

#product-detail .section-2 .list-commit .item .icon {
    margin-right: .75rem;
    margin-top: 5px;
    width: 30px;
    color: #0375fd;
}

#product-detail .section-2 .list-commit .item .icon i {
    font-size: 1.75rem;
}

#product-detail .section-2 .list-commit .item .title {
    font-size: .875rem;
}

#product-detail .section-2 .list-commit .item .sub-title {
    font-size: .75rem;
}

@media (min-width: 768px) {
    #product-detail .section-2 .list-commit .item .icon {
        width: 40px;
    }
    
    #product-detail .section-2 .list-commit .item .icon i {
        font-size: 2.375rem;
    }

    #product-detail .section-2 .list-commit .item .title {
        font-size: 1rem;
    }
    
    #product-detail .section-2 .list-commit .item .sub-title {
        font-size: .875rem;
    }
}

/* Section 3 */
#product-detail .section-3 .navigation-bar {
    border-bottom: 1px solid #edeef5;
    white-space: nowrap;
    overflow-x: scroll;
}

#product-detail .section-3 .navigation-bar ul {
    margin: 0 -.5rem;
}

#product-detail .section-3 .navigation-bar .item {
    padding: 0 .5rem;
}

#product-detail .section-3 .navigation-bar .item,
#product-detail .section-3 .navigation-bar .item a {
    color: #999;
}

#product-detail .section-3 .navigation-bar .item a:hover,
#product-detail .section-3 .navigation-bar .item.active,
#product-detail .section-3 .navigation-bar .item.active a {
    color: #0375fd;
}

#product-detail .section-3 .navigation-bar .item .item-wrapper {
    padding-bottom: 1rem;
    border-bottom: 3px solid transparent;
}

#product-detail .section-3 .navigation-bar .item.active .item-wrapper {
    border-bottom: 3px solid #0375fd;
}

@media (min-width: 768px) {
    #product-detail .section-3 .navigation-bar {
        white-space: unset;
        overflow-x: unset;
    }
}

@media (min-width: 768px) {
    #product-detail .section-3 .navigation-bar ul {
        margin: 0 -.75rem;
    }
    
    #product-detail .section-3 .navigation-bar .item {
        padding: 0 .75rem;
    }
}

@media (min-width: 1400px) {
    #product-detail .section-3 .navigation-bar ul {
        margin: 0 -1rem;
    }
    
    #product-detail .section-3 .navigation-bar .item {
        padding: 0 1rem;
    }
}

/* ============================================================
    8.4. Article Category
=============================================================*/
@media (min-width: 1200px) {
    #article-category .container {
        width: 1000px;
    }
}

#article-category.page section,
#article-category.page section.bg .container-fluid {
    padding: 30px 0;
}

#article-category.page section.bg {
    padding: 0;
}

@media (min-width: 768px) {
    #article-category.page section,
    #article-category.page section.bg .container-fluid {
        padding: 50px 0;
        margin: 0;
    }

    #article-category.page section:last-child {
        padding-bottom: 50px;
    }
}

/* ============================================================
    8.5. Article Detail
=============================================================*/
@media (min-width: 992px) {
    #article-detail.full-width .container {
        max-width: 850px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #article-detail .list-article .item .image-wrapper-hover-zoom {
        margin-right: 1.25rem !important;
    }

    #article-detail .list-article .item .image-wrapper {
        width: 120px;
    }
}

#article-detail .page-title {
    font-size: 1.25rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    #article-detail .page-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    #article-detail .page-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    #article-detail .page-title {
        font-size: 2rem;
    }
}

#article-detail .publish-date {
    color: #7f97a7;
    font-size: .75rem;
}

@media (min-width: 992px) {
    #article-detail .publish-date {
        font-size: .875rem;
    }
}

@media (min-width: 992px) {
    #article-detail .main-content {
        width: 70%;
    }
    
    #article-detail .sidebar {
        width: 30%;
    }
}

@media (min-width: 1200px) {
    #article-detail .main-content {
        width: 65%;
    }
    
    #article-detail .sidebar {
        width: 35%;
    }
}

/* ============================================================
    8.5. Contact
=============================================================*/
@media (min-width: 992px) {
    #contact .container-fluid {
        max-width: 960px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 1200px) {
    #contact .container-fluid {
        max-width: 1230px;
    }
}

#contact section:first-child {
    padding-top: 0;
}

@media (min-width: 992px) {
    #contact section:first-child {
        padding-top: 40px;
    }
}

@media (min-width: 1400px) {
    .page section,
    .page section.bg .container-fluid {
        padding: 20px 0;
    }
}

/* Section 1 */
#contact .section-1 .embed-responsive::before {
    padding-top: 56.25%;
}

@media (min-width: 768px) {
    #contact .section-1 .embed-responsive::before {
        padding-top: 42.857143%;
    }
}

@media (min-width: 992px) {
    #contact .section-1 .embed-responsive::before {
        padding-top: 31.33333%;
    }
}

@media (min-width: 992px) {
    #contact .section-1 iframe {
        border-radius: 10px;
    }
}

/* Section 2 */
#contact .section-2 .item {
    border-radius: 10px;
    background-color: #f4f5f8;
}

#contact .section-2 .item .info:not(:last-child) {
    margin-bottom: 1rem;;
}

#contact .section-2 .item .info .title {
    font-size: 1.125rem;
}

@media (min-width: 992px) {
    #contact .section-2 .item .info .title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    #contact .section-2 .item .info .title {
        font-size: 1.5rem;
    }
}

#contact .section-2 .item .info .title i {
    color: #0375fd;
}

#contact .section-2 .item .info .description {
    color: #7f97a7;
}

/* ============================================================
    8.6. Checkout
=============================================================*/
#checkout {
    max-width: 1140px;
}

/* ============================================================
    8.x. Page Error
=============================================================*/
#page-error .page-content {
    height: 300px;
}

#page-error .page-content p {
    font-size: 1.25rem;
}

@media (min-width: 576px) {
    #page-error .page-content {
        min-height: 450px;
    }

    #page-error .page-content p {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    #page-error .page-content {
        min-height: calc(100vh - 186px);
    }
}