@charset "utf-8";

/* ---------- base ---------- */
a:hover,
a:focus {
    color: var(--theme-color-1000);
}

/* ---------- color ---------- */
.text-theme {
    color: var(--theme-color-1000);
}

.text-theme-light {
    color: var(--theme-color-700);
}

.text-theme-lighter {
    color: var(--theme-color-200);
}

.bg-theme {
    background-color: var(--theme-color-1000);
}

.bg-theme-light {
    background-color: var(--theme-color-700);
}

.bg-theme-lighter {
    background-color: var(--theme-color-200);
}

.linear-gradient-bg-theme {
    color: #ffffff;
    background-color: var(--theme-color-1000);
    background: -webkit-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: -moz-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    transition: opacity 0.3s;
}

.linear-gradient-bg-theme:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* ---------- button ---------- */
.btn-orange {
    color: #ffffff;
    border-color: #eeaa00;
    background-color: #ffaa00;
    background: -webkit-linear-gradient(55deg, #ffaa00, #fdb629);
    background: -moz-linear-gradient(55deg, #ffaa00, #fdb629);
    background: linear-gradient(55deg, #ffaa00, #fdb629);
}

.btn-orange:hover {
    color: #ffffff;
    border-color: #ddaa00;
    background-color: #eeaa00;
}

.btn-orange:focus,
.btn-orange:active,
.btn-orange:active:focus {
    color: #ffffff;
    outline: none;
    box-shadow: none;
}

.btn-orange:disabled {
    color: #ffffff;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.btn-default:active:hover,
.btn-default:active:focus,
.btn-default:active.focus,
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default,
.open > .dropdown-toggle.btn-default:hover,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default.focus {
    color: var(--theme-color-1000);
    box-shadow: 0 0 0 2px var(--theme-color-200);
    border-color: var(--theme-color-1000);
    background-color: #ffffff;
}

.btn-theme,
.btn-theme:focus,
.btn-theme:active:focus,
.btn-theme.active:focus,
.btn-theme.focus,
.btn-theme:active.focus,
.btn-theme.active.focus,
.btn-theme:active,
.btn-theme.active {
    color: #ffffff !important;
    outline: none;
    background-color: var(--theme-color-1000);
    background: -webkit-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: -moz-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    transition: opacity 0.3s;
}

.btn-theme:hover {
    opacity: 0.8;
}

.btn-plain-theme {
    color: var(--theme-color-1000);
    border-color: var(--theme-color-1000);
    background-color: #ffffff;
    transition: color 0.3s, background-color 0.3s;
}

.btn-plain-theme:hover {
    color: #ffffff;
    border-color: var(--theme-color-1000);
    background-color: var(--theme-color-1000);
}

/* ---------- label ---------- */
.label-warning,
.label-success {
    padding: 2px 3px;
}

.label-theme {
    display: inline-block;
    padding: 2px 3px;
    font-size: 0.75rem;
    border: 1px solid var(--theme-color-1000);
    background-color: var(--theme-color-1000);
}

.label-border {
    display: inline-block;
    padding: 2px 3px;
    font-size: 0.75rem;
    color: var(--theme-color-1000);
    border: 1px solid var(--theme-color-1000);
}

.label-plain-theme {
    color: var(--theme-color-1000);
    background-color: var(--theme-color-200);
}

/* ---------- border ---------- */
.border-theme {
    border-color: var(--theme-color-1000) !important;
}

/* ---------- box-shadow ---------- */
.box-shadow-theme {
    box-shadow: 0 2px 12px 0 var(--theme-color-200);
}

/* ---------- input ---------- */
.item-required:before {
    color: var(--theme-color-1000);
}

.form-group .help-block, td .help-block {
    color: var(--theme-color-1000);
}

input.form-control:hover,
textarea.form-control:hover {
    box-shadow: 0 0 8px var(--theme-color-200);
    border-color: var(--theme-color-700);
}

input.form-control:active,
textarea.form-control:active {
    border-color: var(--theme-color-1000);
}

input.form-control:focus,
textarea.form-control:focus {
    box-shadow: 0 0 0 2px var(--theme-color-100);
    border-color: var(--theme-color-700);
}

/* ---------- dropdown-menu ---------- */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: var(--theme-color-100);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: var(--theme-color-1000);
}

/* ---------- pagination ---------- */
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    color: var(--theme-color-700);
    border-color: var(--theme-color-700);
    background-color: transparent;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    border-color: var(--theme-color-1000);
    background-color: var(--theme-color-1000);
}

/* ---------- validation ---------- */
.has-warning .help-block {
    color: var(--theme-color-700);
}

.has-warning .form-control {
    box-shadow: none;
    border-color: var(--theme-color-700);
}

.has-warning .form-control:hover {
    box-shadow: none;
    border-color: var(--theme-color-700);
}

.has-warning .form-control:focus {
    box-shadow: none;
    border-color: var(--theme-color-700);
}

.has-warning .input-group-addon {
    color: var(--theme-color-700);
    border-color: var(--theme-color-700);
    background-color: #ffffff;
}

.has-warning .input-group-addon .iconfont {
    color: var(--theme-color-700);
}

.has-warning .form-control-feedback {
    color: var(--theme-color-700);
}

/* ---------- scrollload ---------- */
.scrollload-loader span:nth-child(1) {
    background-color: var(--theme-color-600);
}

.scrollload-loader span:nth-child(2) {
    background-color: var(--theme-color-800);
}

.scrollload-loader span:nth-child(3) {
    background-color: var(--theme-color-1000);
}

.scrollload-loader span:nth-child(4) {
    background-color: var(--theme-color-800);
}

.scrollload-loader span:nth-child(5) {
    background-color: var(--theme-color-600);
}

/* ---------- file-input ---------- */
.file-input .multiple-file-preview .file-preview-frame.sortable-chosen {
    border: 1px solid var(--theme-color-700);
}

.file-input .multiple-file-preview .file-preview-frame.sortable-ghost {
    border: 1px dashed var(--theme-color-700);
}

.file-input .btn-primary {
    border-color: var(--theme-color-1000);
    background-color: var(--theme-color-1000);
    background: -webkit-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: -moz-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
}

/* ---------- switchery ---------- */
.switchery.active {
    background-color: var(--theme-color-1000);
}

/* ---------- bootbox ---------- */
.bootbox .btn-primary {
    border-color: var(--theme-color-1000);
    background-color: var(--theme-color-1000);
    background: -webkit-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: -moz-linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
    background: linear-gradient(55deg, var(--theme-color-1000), var(--theme-color-700));
}

/* ---------- bootstrap ---------- */
.container {
    padding-right: 0;
    padding-left: 0;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-right: 0;
    padding-left: 0;
}

.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 0;
}

.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}

.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
}

.navbar-brand {
    padding: 15px 0;
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: 0;
    }
}

.navbar-toggle {
    margin-right: 0;
}

.navbar-nav {
    margin: 7.5px 0;
}

.navbar-form {
    padding: 10px 0;
    margin-right: 0;
    margin-left: 0;
}

@media (min-width: 768px) {
    .navbar-text {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-right {
        margin-right: 0;
    }
}

.container .jumbotron, .container-fluid .jumbotron {
    padding-right: 0;
    padding-left: 0;
}

/* ---------- swiper ---------- */
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 5px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
}

/* ---------- recommend-product ---------- */
.recommend-product .recommend-product-heading h5 {
    display: inline;
    position: relative;
    color: #333333;
}

.recommend-product .recommend-product-heading h5 span {
    position: absolute;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #888888;
    transform: translateY(-50%);
}

.recommend-product .recommend-product-heading h5 .left {
    left: -10px;
}

.recommend-product .recommend-product-heading h5 .right {
    right: -10px;
}

.recommend-product .recommend-product-heading h5 strong {
    display: inline-block;
    color: #333333;
    font-weight: normal;
}

.recommend-product .recommend-product-heading h5 strong .iconfont {
    padding: 2px;
    color: #ffffff;
    border-radius: 50%;
}

.recommend-product .recommend-product-heading h5:before,
.recommend-product .recommend-product-heading h5:after {
    width: 30px;
    height: 0.5px;
    content: '';
    position: absolute;
    top: 50%;
    background-color: #666666;
    transform: translateY(-50%);
}

.recommend-product .recommend-product-heading h5:before {
    left: -40px;
}

.recommend-product .recommend-product-heading h5:after {
    right: -40px;
}

.recommend-product {
    padding: 0 10px;
    margin-bottom: 10px;
}

.recommend-product .recommend-product-heading {
    padding: 10px 0;
    text-align: center;
}

.recommend-product .recommend-product-body ul {
    display: flex;
    flex-flow: wrap;
}

.recommend-product .recommend-product-body ul li {
    width: calc((100% - 10px) / 2);
    padding: 10px;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 6px;
    background-color: #ffffff;
}

.recommend-product .recommend-product-body ul li:nth-child(-n+2) {
    margin-top: 0;
}

.recommend-product .recommend-product-body ul li:nth-child(2n) {
    margin-right: 0;
}

.recommend-product .recommend-product-body ul li a {
    display: block;
}

.recommend-product .recommend-product-body ul li img {
    margin-bottom: 10px;
}

.recommend-product .recommend-product-body ul li h5 {
    margin-bottom: 10px;
    font-weight: normal;
}

.recommend-product .recommend-product-body ul li h6 {
    margin-bottom: 5px;
    font-weight: normal;
    color: #999999;
}

.recommend-product .recommend-product-body ul li strong {
    display: block;
    font-weight: normal;
}

/* ---------- header-default ---------- */
.header-default {
    line-height: 30px;
    padding: 5px 0;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-bottom: solid 1px #dddddd;
    background-color: #ffffff;
}

.header-default .iconfont {
    font-size: 1rem;
    vertical-align: middle;
}

.header-default .btn .iconfont, .header-default .dropdown-menu .iconfont {
    font-size: 0.875rem;
    vertical-align: baseline;
}

.header-default h5 {
    line-height: inherit;
}

.header-default .center-block {
    line-height: 15px;
}

.header-default .btn-block {
    line-height: 40px;
    padding: 0 15px;
    margin: -5px 0;
    border-radius: 0;
    border: none;
}

.header-default .active {
    color: var(--theme-color-1000);
}

.header-default .active .iconfont {
    color: var(--theme-color-1000);
}

.header-default + .scroll-to-fixed-spacer {
    margin-bottom: -1px;
}

/* ---------- footer-default ---------- */
.footer-default {
    line-height: 36px;
    padding-top: 5px;
    padding-bottom: calc(5px + constant(safe-area-inset-bottom));
    padding-bottom: calc(5px + env(safe-area-inset-bottom));
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-top: solid 1px #dddddd;
    background-color: #ffffff;
}

.footer-default .iconfont {
    font-size: 1rem;
    vertical-align: middle;
    opacity: 0.6;
}

.footer-default .btn .iconfont, .footer-default .dropdown-menu .iconfont {
    font-size: 0.875rem;
    vertical-align: baseline;
}

.footer-default h5 {
    line-height: inherit;
}

.footer-default .center-block {
    line-height: 18px;
}

.footer-default .btn-block {
    line-height: 46px;
    padding: 0 15px;
    margin: -5px 0;
    border-radius: 0;
    border: none;
}

.footer-default .active {
    color: var(--theme-color-1000);
}

.footer-default .active .iconfont {
    color: var(--theme-color-1000);
}

.footer-default + .scroll-to-fixed-spacer {
    margin-top: -1px;
}

/* ---------- panel ---------- */
.panel {
    margin-bottom: 10px;
    box-shadow: none;
    border-radius: 0;
    border-right: none;
    border-left: none;
    border-color: #eeeeee;
}

.panel .panel-heading {
    padding-right: 10px;
    padding-left: 10px;
    border-bottom: solid 1px #eeeeee;
}

.panel .panel-body {
    padding: 10px;
}

.panel .panel-footer {
    padding: 10px;
    border-top: solid 1px #eeeeee;
    background-color: #ffffff;
}

/* ---------- no-result ---------- */
.no-result {
    height: 50px;
    line-height: 50px;
    position: relative;
    color: #cccccc;
    text-align: center;
}

.no-result:before {
    width: calc(50% - 100px);
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50px;
    content: '';
    background: #f8f8f8;
    background: -webkit-linear-gradient(left, #f8f8f8, #eeeeee);
    background: -moz-linear-gradient(left, #f8f8f8, #eeeeee);
    background: linear-gradient(left, #f8f8f8, #eeeeee);
}

.no-result:after {
    width: calc(50% - 100px);
    height: 1px;
    position: absolute;
    top: 50%;
    right: 50px;
    content: '';
    background: #eeeeee;
    background: -webkit-linear-gradient(left, #eeeeee, #f8f8f8);
    background: -moz-linear-gradient(left, #eeeeee, #f8f8f8);
    background: linear-gradient(left, #eeeeee, #f8f8f8);
}

/* ---------- back-top ---------- */
.back-top {
    width: 40px;
    height: 40px;
    display: none;
    padding: 5px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    color: #aaaaaa;
    text-align: center;
    cursor: pointer;
    outline: none;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background-color: rgba(250, 250, 250, 0.8);
}

.back-top .icon-top {
    font-size: 1.25rem;
}

/* ---------- list-group ---------- */
.list-group {
    margin-bottom: 10px;
}

.list-group .list-group-item {
    border-right: none;
    border-left: none;
    border-radius: 0;
}

.list-group .list-group-item.active, .list-group .list-group-item.active:hover, .list-group .list-group-item.active:focus {
    color: #666666;
    border-color: #eeeeee;
    background-color: #ffffff;
}
