/* DEFAULTS
----------------------------------------------------------*/

:root {
    --font-color: #3e474b;
    --white: #fff;
    --orange: #ff4f00;
    --yellow: #efca00;
    --blue: #016daa;
    --green: #008920;
    --grayblue: #c6c6c6;
    --red: #ff0309;
    --transition: all 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Roboto',Arial,sans-serif,'Open Sans';
    font-size: 16px;
    line-height: 1.42857143;
    color: var(--font-color);
    background-color: var(--white);
}

a {
    color: var(--font-color);
    text-decoration: none;
    line-height: 10px;
}

    a:focus {
        outline: none;
    }

    a:hover, a:focus {
        text-decoration: underline;
    }

    a:hover {
        color: var(--green);
        text-decoration: none;
    }

ul, ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

* html .clearfix {
    height: 1%;
    overflow: visible;
}

/* float clearing for IE7*/
* + html .clearfix {
    min-height: 1%;
}

    /* float clearing for everyone else */
    .clearfix:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
}

.fix-padding {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/*------- header  -------*/

.top-header {
    background-color: var(--yellow);
    padding: 5px 0;
    font-weight: 700;
    font-size: 16px;
}

    .top-header div.text-left p {
        line-height: 25px;
        margin: 0;
    }

    .top-header a:hover {
        color: #fff
    }

    .top-header .fa {
        transform: rotate(105deg);
        font-size: 14px;
        border: 2px solid;
        border-radius: 50%;
        padding: 5px;
        margin-right: 5px;
    }

    .top-header .top-menu li {
        display: inline
    }

        .top-header .top-menu li a {
            font-size: 13px;
        }

        .top-header .top-menu li .fa {
            font-size: 10px;
        }

.mid-header {
    background-color: var(--white);
    padding: 20px 0;
}

    .mid-header .dealer a {
        color: var(--white);
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--red);
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 14px;
        cursor: pointer;
    }

        .mid-header .dealer a:hover {
            background-color: var(--blue);
            text-transform: uppercase;
        }

        .mid-header .dealer a .fa {
            margin-right: 8px;
        }

    .mid-header .img-responsive {
        margin: 0 auto;
    }

.bot-header {
    background-color: var(--green);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.desktop-menu .col-sm-3 {
    padding-right: 0 !important;
}

.desktop-menu .menu-title {
    background-color: var(--yellow);
    line-height: 60px;
    padding-right: 5px;
    padding-left: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

.desktop-menu .col-sm-9 {
    padding-left: 0 !important;
}

.name-cpn {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 3px;
    padding: 5px 10px;
    text-align: center;
}

    .name-cpn p {
        margin: 0;
        font-size: 1vw;
    }

        .name-cpn p:first-child {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 1.2vw;
        }

    .name-cpn h3 {
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 8px;
        font-size: 1.8vw;
    }

.main-menu ul {
    font-size: 20px;
}

.main-menu > ul > li {
    position: relative;
    float: left;
    border-left: 1px solid var(--white);
}

    .main-menu > ul > li:last-child {
        border-right: 1px solid #f3d5c8;
    }

    .main-menu > ul > li:hover {
        background-color: var(--green);
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

    .main-menu > ul > li .fa-home {
        font-size: 25px;
    }

    .main-menu > ul > li a {
        text-transform: uppercase;
        font-weight: 400;
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

        .main-menu > ul > li a:hover {
            text-decoration: none;
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            -moz-transition: var(--transition);
            transition: var(--transition);
        }

        .main-menu > ul > li a .fa-caret-down {
            margin-left: 8px;
            font-size: 16px;
        }

    .main-menu > ul > li > a {
        display: block;
        color: var(--white);
        padding: 0 25px;
        line-height: 60px;
    }

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.dep-menu > ul > li {
    position: relative
}

.dep-menu li {
    padding: 0 15px;
}

    .dep-menu li h3 {
        border-bottom: 2px solid #ccc;
        padding: 15px 25px;
        position: relative;
        font-weight: 700;
    }

        .dep-menu li h3:before {
            content: '';
            display: block;
            width: 17px;
            height: 15px;
            background: url(/images/images_pj/icon_2.png);
            position: absolute;
            top: 16px;
            left: 0
        }

    .dep-menu li:hover > h3:before {
        background: url(/images/images_pj/icon_1.png);
    }

    .dep-menu li > ul > li:last-child > h3 {
        border-bottom: none
    }

    .dep-menu li h3 span {
        display: none;
    }

.dep-menu > ul > li > h3:after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    background: url(/images/images_pj/icon_4.png);
    position: absolute;
    top: 16px;
    right: 10px
}

.dep-menu > ul > li:hover > h3:after {
    background: url(/images/images_pj/icon_3.png);
}

.dep-menu > ul > li:hover ul {
    -webkit-animation: fadeInUp 400ms;
    -moz-animation: fadeInUp 400ms;
    /*-ms-animation: fadeInUp 400ms;*/
    -o-animation: fadeInUp 400ms;
    animation: fadeInUp 400ms;
    display: block;
    flex-direction: row;
}

.dep-menu > ul ul {
    display: none;
    position: absolute;
    z-index: 999;
    background-color: rgba(255, 255, 255, 1);
    text-align: left;
    width: 315px;
    left: 100%;
    top: 8px;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    overflow: hidden;
    border: 2px solid #ffd700;
}

.dep-menu .sub-menu li {
    padding: 12px 8px;
    position: relative;
    font-size: 16px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

    .dep-menu .sub-menu li:hover {
        background-color: var(--blue);
        line-height: 22px;
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

        .dep-menu .sub-menu li:hover a {
            color: var(--white);
        }

.selling-product {
    margin-top: 35px;
}

    .selling-product h3.ttl {
        text-transform: uppercase;
        font-weight: 700;
        border-bottom: 2px solid #afafaf;
        padding: 10px 0;
        margin-bottom: 15px;
    }

        /*.selling-product h3.ttl span {
            border-bottom: 2px solid #afafaf;
            padding: 9px 5px;
        }*/

    .selling-product ul {
        padding: 0 2px;
    }

        .selling-product ul li {
            border-bottom: 1px solid #afafaf;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

            .selling-product ul li:last-child {
                border-bottom: none
            }

            .selling-product ul li:after {
                content: '';
                display: block;
                clear: both
            }

        .selling-product ul .image {
            float: left;
            width: 30%;
            margin-right: 15px;
        }

        .selling-product ul .title {
            margin-bottom: 8px;
        }

        .selling-product ul .price {
            margin-bottom: 0;
            font-weight: 700;
            color: var(--red);
        }

            /*.selling-product ul .price span:last-child {
    			text-decoration: line-through;
    			margin-left: 8px;
    			color: var(--font-color);
    			font-size: 14px;
		}*/

.product-item {
    text-align: center;
    margin-bottom: 45px;
}

    .product-item .image {
        margin-bottom: 15px;
        position: relative;
        border-radius: 1px;
        overflow: hidden;
    }

        .product-item .image img {
            max-width: 100% !important;
            height: auto !important;
        }

        .product-item .image .sale {
            position: absolute;
            background-color: var(--red);
            top: 0;
            right: 0;
            border-radius: 1px;
            color: #fff;
            font-size: 14px;
            padding: 5px;
            font-weight: 700;
        }

    .product-item .title {
    	height: 45px;
    	overflow: hidden;
    	margin-bottom: 5px;
    	line-height: 22px;
    }

    .product-item .price {
        margin-bottom: 0;
        font-weight: 700;
        color: var(--red);
    }

        .product-item .price span.sale {
            text-decoration: line-through;
            margin-left: 8px;
            color: var(--font-color);
            font-size: 14px;
        }

/*.product-item .price b {
            color: var(--font-color) !important;
        }*/

.art-spec h3.sub-title {
    margin-top: 0;
    margin-bottom: 18px;
    border-bottom: 3px solid #ececec;
    padding-bottom: 7px;
}

    .art-spec h3.sub-title span {
        padding-bottom: 5px;
        color: var(--green);
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 700;
        border-bottom: 2px solid var(--green);
        padding: 0 5px 7px 2px;
    }

.art-spec ul {
    margin: 0;
    padding: 0;
}

    .art-spec ul li {
         list-style: none;
    padding: 12px 5px 12px 10px;
    border: 1px solid #fdee9f;
    margin-bottom: 30px;
    background-color: rgb(222 241 226 / 80%);
    border-radius: 5px;
    }

        .art-spec ul li:after {
            content: '';
            display: block;
            clear: both;
            height: 0;
        }

.art-spec .img {
    float: left;
    width: 100px;
    height: auto;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 5px;
}

    .art-spec .img img {
        border-radius: 5px;
        transition: transform .3s;
        max-width: 100px;
    }

.descPage-product {
    margin-bottom: 25px;
    line-height: 22px;
}

.show-product .title {
    padding-top: 5px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.show-product .price {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--red);
    font-size: 20px;
}

    /*.show-product .price span:last-child {
        text-decoration: line-through;
        margin-left: 8px;
        color: var(--font-color);
        font-size: 14px;
    }*/

/*.show-product .price b {
        color: var(--font-color) !important;
    }*/

.show-product .desc {
    margin-bottom: 10px;
    line-height: 22px;
}

.show-product .date {
    margin-bottom: 10px;
}

.show-product .dep {
    margin-bottom: 10px;
}

.show-product .disc {
    margin-bottom: 10px;
}

    .show-product .disc b {
        color: var(--red);
    }

.show-product .details {
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

    .show-product .details img {
        max-width: 100% !important;
        height: auto !important;
    }

.title-page {
    background: rgba(0, 0, 0, 0) url(../images/bg_head_nav.png) repeat-x scroll 0 3px;
    border-bottom: medium none;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
}

    .title-page span {
        background: #fff none repeat scroll 0 0;
        padding-right: 10px;
    }

.home-reg-box {
    background-color: #eff3fc;
    padding-top: 40px;
    padding-bottom: 1px;
    margin-bottom: 15px;
}

    .home-reg-box .title {
        text-align: center;
        margin-bottom: 30px;
        font-weight: 700;
        line-height: 1.3em;
        font-size: 26px;
        color: var(--green);
    }

    .home-reg-box .form-reg {
        padding-top: 30px
    }

/*content
    ----------------------------------*/
.breadcrumb {
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    padding: 10px 12px;
    background-color: #ebebeb;
    margin-top: 25px;
}

    .breadcrumb .glyphicon-home {
        margin-right: 8px;
    }

.sub-page {
    padding: 30px 0;
}

    .sub-page .page-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.3em;
        color: var(--blue);
    }

.crr-pager, .num-pager {
    text-decoration: none;
    display: inline-block;
    border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    font-weight: 700;
}

.crr-pager {
    padding: 6px 13px;
    color: var(--white);
    background-color: var(--blue);
}

.num-pager {
    padding: 11px 12px;
    background: var(--white);
    border: 1px solid #dadad3;
}

    .num-pager:hover {
        color: var(--white);
        background-color: var(--blue);
        border-color: var(--blue);
    }

.edit-admin-bar {
    padding: 5px 0px;
    margin-bottom: 15px;
}

    .edit-admin-bar a {
        padding: 5px 12px;
        background-color: #fd3737;
        color: #fff;
        font-weight: 700;
        border-radius: 5px;
        margin-right: 5px;
    }

        .edit-admin-bar a:hover {
            background-color: var(--font-color);
        }

/* footer
----------------------------------------------------------*/
footer {
    color: var(--white);
    background-color: var(--green);
}

    footer ol {
        margin: 0;
        padding: 0;
        list-style: none;
    }

.top-footer {
    padding: 45px 0 25px;
}

    .top-footer .title {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 25px;
    }

    .top-footer p {
        line-height: 24px;
        margin-bottom: 20px
    }

    .top-footer .link li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 15px;
    }

        .top-footer .link li:before {
            content: '';
            width: 8px;
            height: 8px;
            display: block;
            background-color: var(--white);
            border-radius: 8px;
            position: absolute;
            left: 0px;
            top: 6px;
        }

        .top-footer .link li a:hover {
            text-decoration: underline;
        }

    .top-footer .hotline {
        margin-top: 0;
        margin-bottom: 0;
        padding: 12px 0;
    }

        .top-footer .hotline a {
            border: 2px solid var(--white);
            border-radius: 6px;
            font-size: 20px;
            font-weight: 700;
            padding: 8px 15px;
            color: var(--white)
        }

        .top-footer .hotline .fa {
            margin-right: 10px;
        }

    .top-footer ol a {
        color: var(--white);
    }

    .top-footer .social {
        display: flex;
        align-items: center;
        justify-content: right;
    }

        .top-footer .social li {
            margin-top: 15px;
            margin-left: 10px;
            list-style: none;
        }

            .top-footer .social li img {
                max-height: 85px;
                border-radius: 12px;
            }

.bot-footer {
    border-top: 1px solid #005e16;
}

    .bot-footer .row {
        padding: 25px 0;
    }


    .bot-footer iframe {
        max-width: 100%;
        height: auto;
    }

.cp-footer {
    background-color: #005e16;
    padding: 12px 0;
    text-align: center;
    font-size: 15px;
}
/*
----------------------------------------------------------*/

.modal-wrap, .modal-wrap * {
    opacity: 1;
}

.modal-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1000;
    display: none;
    background-color: rgba(0, 0, 0, .8);
}

    .modal-wrap.fade:after {
        background-color: rgba(0, 0, 0, 1);
    }

.modal-frm {
    background: url(/wwwroot/img/loginFrm-bg.png) center center no-repeat;
    background-size: contain;
    margin: 2.5vw auto;
    position: relative;
}

    .modal-frm.fade {
        transition: transform .3s ease-out;
        transform: translate(0, -4vw);
    }

    .modal-frm.show {
        transform: none;
    }

.form-regPopUp {
    position: relative;
    padding: 15px 0;
    background-color: var(--white);
    border-radius: 1px;
    box-shadow: 0px 10px 30px rgba(0,0,0,.3);
}

.form-reg .form-group {
    margin-right: 0px;
    margin-left: 0px;
}

.form-reg .form-control {
    height: 40px;
    border-radius: 15px;
    box-shadow: none;
}

    .form-reg .form-control:focus {
        border-color: var(--red)
    }

.form-reg .btn-primary {
    width: 100%;
    border-radius: 15px;
    background-color: var(--green);
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    text-transform: uppercase;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

    .form-reg .btn-primary:hover {
        background-color: var(--yellow);
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
    }

.form-reg .close_button {
    background-color: rgba(0, 0, 0, .9);
    border: 3px solid #444;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 17px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
}

.form-reg img.img-responsive {
    border-radius: 1px;
}

.float-icon-mobile {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99999;
}

    .float-icon-mobile li a {
        display: block;
        color: #fff;
        background-color: #f00;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        padding: 6px 11px;
        font-size: 22px;
    }

#go-Top {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 10px;
    z-index: 99999;
}

    #go-Top span {
        padding: 15px 12px 10px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: #1d1d1d;
        -webkit-box-shadow: 3px 3px 8px 0 rgba(0,0,0,0.4);
        -moz-box-shadow: 3px 3px 8px 0 rgba(0,0,0,0.4);
        box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.4);
        cursor: pointer;
    }

        #go-Top span:hover {
            background-color: #555;
        }

    #go-Top .fas {
        font-size: 22px;
        color: #fff;
    }

.mnv-tuvan {
    position: fixed;
    z-index: 99999999;
    text-align: center;
    cursor: pointer;
    background-color: #fbcd27;
}

    .mnv-tuvan .glyphicon-comment {
        color: #fff;
    }

    .mnv-tuvan a {
        color: #fff;
        font-size: 15px;
        text-decoration: none;
    }

        .mnv-tuvan a:hover {
            text-decoration: none;
        }

.cling-right {
    position: fixed;
    right: 0;
    top: 165px;
    z-index: 999;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
    box-shadow: -1px 0px 2px rgba(1, 54, 92, .5);
}

    .cling-right a {
        color: var(--white);
        display: block;
        padding: 10px 6px;
        font-size: 14px;
    }

    .cling-right span {
        display: block;
        text-align: center;
    }

        .cling-right span:first-child {
            margin-bottom: 10px;
        }

    .cling-right .fa {
        font-size: 18px;
    }

    .cling-right li {
        background-color: var(--blue);
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        -moz-transition: var(--transition);
        transition: var(--transition);
        border-bottom: 1px solid #01365c;
    }

        .cling-right li:last-child {
            border-bottom: none;
        }

        .cling-right li:hover {
            background-color: var(--orange);
            border-color: var(--blue);
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            -moz-transition: var(--transition);
            transition: var(--transition);
        }

    .cling-right #go-top {
        text-align: center;
        cursor: pointer;
    }

        .cling-right #go-top .fas {
            background-color: #fff;
            border-radius: 50%;
            color: #084c7e;
            padding: 8px 9px;
            font-size: 18px;
            font-weight: 700;
        }

.call-hotline {
    z-index: 9;
    left: 20px;
    bottom: 20px;
    position: fixed;
    width: 55px;
    height: 55px;
    border: 6px solid var(--white);
    background: var(--white);
    border-radius: 50%;
    box-shadow: 1px 1px 5px 1px rgb(0 0 0 / 45%);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

    .call-hotline:hover {
        width: 60px;
    }

.box-videoslide {
    margin-bottom: 25px;
}

.spec-product {
    margin-bottom: 30px;
}

    .spec-product > h3.ttl {
        text-align: left;
        font-size: 25px;
        font-weight: 700;
        color: var(--green);
        margin-bottom: 35px;
        background: url(/images/images_pj/title-bg_green.png) center bottom no-repeat;
        padding-bottom: 45px;
    }

    .spec-product .more {
        margin: 0;
        text-align: center;
        padding: 15px 0;
    }

        .spec-product .more a {
            font-weight: 700;
            color: var(--white);
            background-color: var(--green);
            border-radius: 5px;
            padding: 8px 15px;
        }

            .spec-product .more a:hover {
                background-color: var(--yellow);
                color: var(--font-color);
            }

.product-carousel .item {
    text-align: center;
}

    .product-carousel .item .image {
        margin-bottom: 15px;
        position: relative;
        border-radius: 1px;
        overflow: hidden;
    }

        .product-carousel .item .image img {
            max-width: 100% !important;
            height: auto !important;
        }

        .product-carousel .item .image .sale {
            position: absolute;
            background-color: var(--red);
            top: 0;
            right: 0;
            border-radius: 1px;
            color: #fff;
            font-size: 14px;
            padding: 5px;
            font-weight: 700;
        }

    .product-carousel .item .title {
        height: 36px;
        overflow: hidden;
        margin-bottom: 5px;
    }

    .product-carousel .item .price {
        margin-bottom: 0;
        font-weight: 700;
        color: var(--red);
    }

        .product-carousel .item .price span:sale {
            text-decoration: line-through;
            margin-left: 8px;
            color: var(--font-color);
            font-size: 14px;
        }

.product-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 25px;
}

.product-carousel .owl-dots {
    padding-top: 20px !important;
}

    .product-carousel .owl-dots .owl-dot span {
        width: 25px !important;
        height: 4px !important;
        border-radius: 1px !important;
        background: var(--green) !important
    }

    .product-carousel .owl-dots .owl-dot:hover span {
        background: var(--yellow) !important;
    }

    .product-carousel .owl-dots .owl-dot.active span {
        background: var(--yellow) !important;
    }

.product-carousel .owl-nav {
    /* opacity: 0; */
    transition: all .5s ease-in-out;
    margin-top: 0 !important;
}

.product-carousel .owl-prev, .product-carousel .owl-next {
    font-size: 32px;
    background: rgba(0, 137, 32, .65);
    color: #FFF;
    height: 50px;
    width: 50px;
    margin: 0;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    -webkit-transition: background 500ms, color 500ms;
    transition: background 500ms, color 500ms;
    position: absolute;
    top: calc(36% - 25px);
    padding-top: 10px;
    font-size: 20px;
}

    .product-carousel .owl-prev:hover, .product-carousel .owl-next:hover {
        background-color: var(--yellow);
    }

.product-carousel .owl-prev {
    left: 0;
    border-top-right-radius: 48%;
    border-bottom-right-radius: 48%;
}

.product-carousel .owl-next {
    right: 0;
    border-top-left-radius: 48%;
    border-bottom-left-radius: 48%;
}

.product-carousel .owl-prev .button-prev {
    margin-right: 5px;
}

.product-carousel .owl-next .button-next {
    margin-left: 5px;
}

.product-carousel .fa {
    font-size: 30px;
}

.product-carousel:hover .owl-nav {
    opacity: 1;
}
