* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    box-shadow: none;
    outline: none;
}

@font-face {
    font-family: NotoSansThai;
    src: url(../../vendors/fonts/NotoSansThai/NotoSansThai-Regular.ttf);
}

@font-face {
    font-family: NotoSans;
    src: url(../../vendors/fonts/NotoSans/NotoSans-Regular.ttf);
}

@font-face {
    font-family: NotoSans;
    font-weight: 700;
    src: url(../../vendors/fonts/NotoSans/NotoSans-Bold.ttf);
}

@font-face {
    font-family: NotoSans;
    font-style: italic;
    src: url(../../vendors/fonts/NotoSans/NotoSans-Italic.ttf);
}

html {
    background-color: #fff;
    color: #D8D8D8;
    font-family: 'NotoSans', 'NotoSansThai';
    font-size: 14px;
    text-rendering: optimizeLegibility;
}

body {
    width: 100%;
    min-width: 1280px;
}

.divider {
    width: 100%;
    border-bottom: 1px solid #4A4A4A;
    margin: 8px 0;
}

.align-center {
    text-align: center;
}


/* Input */

.input-txt input {
    font-family: NotoSans, NotoSansThai;
    font-size: 14px;
    background-color: #FDFDFD;
    border: 1px solid #DFDFDF;
    color: #4A4A4A;
    border-radius: 4px;
    height: 42px;
    padding: 12px 16px;
}

.input-txt input::placeholder {
    color: #D3D4D5;
}

.input-txt input:focus {
    border-color: #CDCFCF;
    box-shadow: none;
}

.input-txt label {
    font-family: NotoSans;
    font-size: 12px;
    color: #4A4A4A;
}

.input-txt.input-error label{
    color: #FF3B30;
}

.input-txt.input-error input{
    background-color: #FFFAFA;
    border: 1px solid #FF9D98;
    border-left: none;
    color: #FF3B30;
}

.input-txt.input-error .input-group-addon {
    border: 1px solid #FF9D98;
    border-right: none;
}

.input-txt.input-error .input-group-addon img{
    -webkit-filter: grayscale(0) !important; /* Safari 6.0 - 9.0 */
    filter: grayscale(0) !important;
}

.input-txt.input-error .error-message{
    color: #FF3B30;
    font-size: 12px;
}

.txt-area label {
    font-family: NotoSans;
    font-size: 12px;
    color: #4A4A4A;
}

.txt-area textarea {
    font-family: NotoSans;
    font-size: 14px;
    color: #4A4A4A;
    resize: none;
    background-color: #FDFDFD;
    border: 1px solid #DFDFDF;
    color: #4A4A4A;
    height: 120px;
}

.txt-area textarea::placeholder {
    color: #D3D4D5;
}

.txt-area textarea.form-control:focus {
    box-shadow: none;
    border-color: #CDCFCF;
}


/* Select box Sort */

.sort-dropdown .sort-list,
.form-dropdown .form-list {
    font-family: NotoSans;
    font-size: 14px;
    width: 100%;
    height: 40px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    border: 1px solid #E9EAEA;
    background-color: #FAFAFA;
    color: #4a4a4a;
    cursor: pointer;
}

.form-dropdown .form-list.selected {
    font-style: normal;
}

.sort-dropdown .sort-list:hover,
.form-dropdown .form-list:hover {
    border: 1px solid #DEDFDF;
    background-color: #FDFDFD;
}

.sort-dropdown .sort-list:focus,
.form-dropdown .form-list:focus {
    box-shadow: none;
    border: 1px solid #DEDFDF;
    background-color: #FDFDFD;
}

.sort-dropdown .sort-list::after,
.form-dropdown .form-list::after {
    position: absolute;
    right: 16px;
    top: 18px;
}

.sort-dropdown .dropdown-menu,
.form-dropdown .dropdown-menu {
    width: 100%;
    border-radius: 2px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 12px 0;
    max-height: 260px;
    overflow-x: auto;
}

.sort-dropdown .dropdown-menu .dropdown-item,
.form-dropdown .dropdown-menu .dropdown-item {
    padding: 8px 24px;
}

.sort-dropdown .dropdown-menu .dropdown-item a,
.form-dropdown .dropdown-menu .dropdown-item a {
    font-size: 14px;
    font-weight: 300;
    color: #4a4a4a;
}

.sort-dropdown .dropdown-menu::-webkit-scrollbar,
.form-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.sort-dropdown .dropdown-menu::-webkit-scrollbar-track,
.form-dropdown .dropdown-menu::-webkit-scrollbar-track {
    background-color: #e8e9ea;
}

.sort-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.form-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #d3d4d5;
}


/* Select box Form */

.form-dropdown .form-list {
    font-style: italic;
    border-radius: 4px;
    background-color: #FDFDFD;
    border: 1px solid #DFDFDF;
    text-align: left;
    padding: 12px 16px;
    line-height: 1;
}

.form-dropdown .form-list:focus {
    border-color: #CDCFCF;
}

.select-dropdown label {
    font-family: NotoSans;
    font-size: 12px;
    color: #4A4A4A;
}


/* MultiSelect */


/* .select2-dropdown{
    border: 1px solid #DFDFDF;
}

.select2-container--default .select2-selection--multiple{
    border: 1px solid #DFDFDF;
    border-radius: 4px;
    color: #4A4A4A;
    font-family: 'NotoSans', 'NotoSansThai';
    font-size: 14px;
    margin-top: 0;
    min-height: 42px;
    padding: 10px 20px 10px 16px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple{
    border: 1px solid #DFDFDF;
}
.sellect-container .sellect-arrow-icon{
    padding: 10px 20px;
    color: #A7A9AB;
}

.sellect-container  input::-webkit-input-placeholder {
    color: #4A4A4A;
  } */


/* Search box */

.search-box input {
    background: url(../../resources/img/ic-search.png) no-repeat scroll 14px 11px;
    background-size: 16px 16px;
    border-radius: 20px;
    border: 1px solid #E9EAEA;
    background-color: #FDFDFD;
    font-family: NotoSans;
    padding-left: 44px;
    height: 40px;
    color: #7A7E81;
}

.search-box input::placeholder {
    color: #D3D4D5;
}

.search-box input:focus {
    border: 1px solid #DEDFDF;
    box-shadow: none;
    color: #7A7E81;
}


/* Radio */

.radio-btn .radio {
    padding-right: 64px;
}

.radio-btn .radio:last-child {
    padding-right: 0;
}

.radio-btn .radio label {
    font-family: NotoSans;
    padding-left: 8px;
    color: #4A4A4A;
}

.radio-btn .radio label::before {
    border: 2px solid #E8E9EA;
    cursor: pointer;
    top: 2px;
}

.radio-btn .radio label::after {
    width: 9px;
    height: 9px;
    top: 6px;
    left: 4px;
    background-color: #0AC775;
    cursor: pointer;
}

.radio-btn .radio input:focus+label::before {
    outline: none;
}

.radio-btn .radio input:checked+label::after {
    width: 9px;
    height: 9px;
    top: 6px;
    left: 4px;
    background-color: #0AC775;
}

.radio-btn .radio input:checked+label::before {
    border: 2px solid #0AC775;
}


/* Bottons/Link */

.button {
    position: relative;
    overflow: hidden;
}

.button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.button:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

.btn:focus{
    box-shadow: none;
}

.button {
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-family: NotoSans;
    font-weight: 700;
    height: 40px;
}

.button:focus {
    box-shadow: none;
}

.green-btn {
    background-color: #8FC30F;
}

.green-btn:hover {
    background-color: #80AF0D
}

.gray-btn {
    background-color: #E8E9EA;
}

.gray-btn:hover {
    background-color: #D0D1D2;
}

.button.disable,
.button.disable:hover {
    background-color: #E8E9EA;
}

.button.btn-link {
    line-height: 2;
    color: #fff !important;
}

.button.btn-link:hover {
    color: #fff;
    text-decoration: none;
}

.delete-link {
    text-align: center;
    margin-top: 32px;
}

.delete-link a {
    color: #FF3B30;
    text-decoration: underline;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 0;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #d3d4d5;
    cursor: pointer;
}

.btn-circle:focus {
    box-shadow: none;
}

.btn-circle img {
    width: 18px;
}

.close-page-btn {
    margin: 0 !important;
}

.close-page-btn img {
    width: 24px;
    opacity: 0.5;
}

.cross-hover:hover img {
    opacity: 1;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.close-page-btn .cross-hover {
    cursor: pointer;
    display: block;
    height: 49px;
    width: 49px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    padding: 6px 11.5px;
    position: relative;
    top: -4px;
    padding: 4px 8px;
    float: left;
}

.close-page-btn .cross-hover:hover {
    border: 1px solid #fafafa;
    background-color: #fafafa;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.close-page-btn .right.column {
    padding-right: 24px !important;
}

.small-btn {
    font-size: 12px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 64px;
    height: 24px;
}

.add-more-btn {
    cursor: pointer;
    margin: 0;
}

.add-more-btn img {
    margin-bottom: 2px;
    width: 16px;
    height: 16px;
}

.add-more-btn label {
    font-family: NotoSans;
    font-size: 12px;
    color: #4A4A4A;
    cursor: pointer;
    margin-left: 4px;
}

.add-more-btn label span {
    color: #A7A9AB;
}

.add-more-btn:hover img,
.add-more-btn img:hover {
    content: url('../../resources/img/ic-add-hover.png');
}

.add-more-btn:hover label {
    color: #373A3C;
}

.btn-tooltip {
    background-color: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.btn-tooltip img {
    opacity: 0.5;
    width: 24px;
    height: 24px;
}

.btn-tooltip:hover img {
    opacity: 1;
}

.tooltip {
    position: absolute;
    top: 10px;
}

.tooltip-inner {
    background-color: #4A4A4A;
    border-radius: 5px;
}

.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #4A4A4A;
}

.dropdown-btn {
    cursor: pointer;
    float: right;
    width: 20px;
}

.dropdown-btn img {
    height: 16px;
    opacity: 0.5;
    width: 10px !important;
}

.dropdown-btn:hover img {
    opacity: 1;
}

.dropdown-btn .dropdown-menu {
    box-shadow: 0px 0px 4px #EAEAEA;
    left: auto;
    padding: 16px 0;
    right: -2px;
    top: 30px;
    width: 184px;
}

.dropdown-btn .dropdown-menu:before {
    position: absolute;
    top: -7px;
    right: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.dropdown-btn .dropdown-menu:after {
    position: absolute;
    top: -6px;
    right: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    content: '';
}

.dropdown-group-btn button:focus {
    box-shadow: none;
}

.dropdown-btn .dropdown-menu a,
.dropdown-group-btn .dropdown-menu a {
    color: #373A3C;
    font-family: NotoSans;
    font-size: 12px;
    padding: 8px 24px;
}

.dropdown-btn .dropdown-menu a:hover,
.dropdown-group-btn .dropdown-menu a:hover {
    background-color: #FAFAFA;
}

.dropdown-group-btn .title-btn {
    font-family: NotoSans;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 12px 16px;
    margin-right: 2px;
}

.dropdown-group-btn .dropdown-toggle {
    color: #fff;
    cursor: pointer;
    line-height: 0;
    padding: 16px;
}

.dropdown-group-btn .dropdown-menu {
    box-shadow: 0px 0px 4px #EAEAEA;
    left: -6px;
    top: 48px;
    padding: 16px 0;
    width: 184px;
}

.dropdown-group-btn .dropdown-menu:before {
    position: absolute;
    top: -7px;
    right: 14px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.dropdown-group-btn .dropdown-menu:after {
    position: absolute;
    top: -6px;
    right: 15px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    content: '';
}


/* Circle */

.circle {
    display: inline-block;
    height: 6px;
    width: 6px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin: 2px 8px;
}

.circle.blue-circle {
    background-color: #69B0FE;
}

.circle.green-circle {
    background-color: #0ac775;
}

.circle.red-circle {
    background-color: #ff3b30;
}

.circle.orange-circle {
    background-color: #f5a623;
}


/* manu-bar */

.container-fluid {
    /* display: flex; */
    display: flow-root;
    position: relative;
    height: 100%;
    padding: 0;
}

.manu-bar {
    /* position: fixed; */
    position: absolute;
    background-color: #262626;
    float: left;
    width: 20%;
    /* height: 100vh; */
    height: 100%;
    min-height: 768px;
    z-index: 9999;
}

.manu-bar .item {
    padding-left: 32px;
    padding-right: 32px;
}

.manu-bar .logo-img {
    margin-bottom: 32px;
    padding-top: 32px;
}

.manu-bar .logo-img img {
    width: 37.5%;
}

.manu-bar .user-name {
    font-family: NotoSans;
}

.manu-bar .user-name p {
    color: #fff;
    font-size: 16px;
    line-height: 0.5;
    margin: 0;
}

.manu-bar .user-name label {
    font-size: 12px;
    color: #929292;
}

.manu-bar .nav-item .nav-link.active {
    color: #FFFFFF;
}

.manu-bar .nav-item:hover {
    background-color: #545454;
}

.manu-bar .nav-item:hover a {
    color: #fff;
}

.manu-bar .nav-item a {
    color: #929292;
    font-family: NotoSans;
    padding: 12px 0;
}

.main-content {
    float: right;
    width: 80%;
    padding: 40px 80px;
}

.main-content .page-title {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 24px;
    color: #373A3C;
    margin-bottom: 17px;
}

.main-content .divider {
    border-bottom: 1px solid #d3d4d5;
}

.main-content .db-state {
    margin-top: 54px;
    margin-bottom: 56px;
}

.main-content .db-state img {
    width: 48px;
}

.main-content .db-state p,
.main-content .db-state label {
    font-family: NotoSans;
    color: #373a3c;
}

.main-content .db-state p {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
}

.main-content .db-state label {
    font-size: 24px;
    margin-bottom: 0;
}

.main-content .db-state .col-3,
.main-content .db-state .col-9 {
    padding-left: 10px;
    padding-right: 10px;
}

.main-content .db-state-detail {
    margin-top: 40px;
    margin-bottom: 22px;
}

.main-content .db-state-detail .col:first-child {
    text-align: left;
}

.main-content .db-state-detail .col:last-child {
    text-align: right;
}

.main-content .db-state-detail .sort-dropdown {
    width: 55.156%;
}

.main-content .db-state-detail p {
    font-family: NotoSans;
    font-size: 16px;
    color: #373a3c;
    margin-bottom: 0px;
    line-height: 2.5;
}

.main-content .db-state-detail p .sale {
    font-family: NotoSans;
    font-weight: 700;
    margin-right: 5px;
}


/* -------- Graph -------- */

.highcharts-color-0 {
    stroke: #7cb5ec;
}

.highcharts-axis.highcharts-color-0 .highcharts-axis-line {
    stroke: #7A7E81;
}

.highcharts-axis.highcharts-color-1 .highcharts-axis-line {
    stroke: transparent;
}

.highcharts-axis.highcharts-xaxis .highcharts-axis-line {
    stroke: #7A7E81;
}

.highcharts-axis.highcharts-xaxis .highcharts-tick {
    stroke: transparent;
}

.highcharts-yaxis .highcharts-axis-line {
    stroke-width: 1px;
}

.highcharts-grid.highcharts-yaxis-grid .highcharts-grid-line {
    stroke-dasharray: 8, 3;
    stroke: #E8E9EA;
}


/* -------- End Graph -------- */


/* -------- Function -------- */

.function {
    margin-top: 32px;
    margin-bottom: 32px;
    height: 40px;
}

.function .row {
    margin-left: -4px;
    margin-right: -4px;
}

.function .row .col-md-auto {
    padding-left: 4px;
    padding-right: 4px;
}

.function .col-md-auto .btn-add {
    width: 144px;
}

.function .col-md-auto:last-child{
    position: absolute;
    right: 80px;
    padding: 0;
}

.function.sale-report .row .col-md-auto .sort-dropdown.date-range {
    width: 230px;
}

.function.blogs .row .col-md-auto .search-box {
    width: 240px;
}

.function.sale-report .row .col-md-auto .sort-dropdown.product {
    width: 159px;
}

.function.blogs .row .col-md-auto .sort-dropdown {
    width: 140px;
}

.function.sale-report .col-md-auto .green-btn {
    width: 112px;
}

.function.blogs .col-md-auto .green-btn {
    width: 143px;
}

.function.orders-list .col-md-auto .search-box {
    width: 240px;
}

.function.orders-list .col-md-auto .sort-dropdown {
    width: 140px;
}

.function.product-list .row .col-md-auto .search-box {
    width: 240px;
}

.function.product-list .row .col-md-auto .sort-dropdown {
    width: 160px;
}

.function.product-list .row .col-md-auto .dropdown-group-btn {
    width: 177px;
}

.function.members .col-12 {
    margin-left: -11px;
}

.function.members .col-12 .search-box {
    width: 240px;
}


/* -------- End Function -------- */


/* -------- Data Table -------- */

.dataTables_wrapper {
    padding-left: 0;
    padding-right: 0;
}

.dataTables_wrapper .bottom {
    margin-top: 24px;
}

.dataTables_wrapper .bottom .dataTables_length {
    float: left;
}

.dataTables_wrapper .bottom .dataTables_length label {
    font-family: NotoSans;
    color: #373A3C;
}

.dataTables_wrapper .bottom .dataTables_length label select {
    margin-left: 8px;
    margin-right: 8px;
}

.dataTables_wrapper .bottom .dataTables_length label select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #d8d8d8;
}

.dataTables_wrapper .bottom .dataTables_paginate {
    float: right;
}

.dataTables_wrapper .bottom .dataTables_paginate li a {
    border-color: #d3d4d5;
    color: #d3d4d5;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1.8;
}

.dataTables_wrapper .bottom .dataTables_paginate li a:hover {
    background-color: #fff;
    color: #373a3c;
}

.dataTables_wrapper .bottom .dataTables_paginate li.active a {
    background-color: #fff;
    color: #373a3c;
}

.dataTables_wrapper .bottom .dataTables_paginate li.previous a,
.dataTables_wrapper .bottom .dataTables_paginate li.next a {
    color: #4a4a4a;
    line-height: 1.7;
}

.table-list.dataTable>thead>tr>th[class*="sort"]:after,
.table-list.dataTable>thead>tr>th[class*="sort"]:before {
    content: "" !important;
}

.table-list {
    border-bottom: 1px solid #e8e9ea;
}

.table-list .price-column {
    text-align: right;
}

.table-list td,
.table-list th {
    border-top: 1px solid #e8e9ea;
    vertical-align: middle;
}

.table-list thead {
    background-color: #f0f1f2;
}

.table-list thead tr,
.table-list tbody tr,
.table-list tfoot tr {
    height: 48px;
}

.table-list tbody tr:last-child {
    border-bottom: 1px solid #e8e9ea;
}

.table-list thead th:first-child,
.table-list tbody td:first-child,
.table-list tfoot th:first-child {
    padding-left: 32px;
}

.table-list thead th {
    border-bottom-width: 0px;
    border-top: none;
    font-family: NotoSans;
    font-weight: 700;
    color: #373a3c;
    line-height: 1.8;
}

.table-list tbody td {
    font-family: NotoSans;
    color: #4a4a4a;
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 1.9;
}

.table-list tfoot th {
    font-family: NotoSans;
    font-weight: 700;
    color: #4a4a4a;
}

.table-list img {
    width: 24px;
}

.table-list .product-image {
    display: inline-flex;
}

.table-list.product-list img.product-img {
    width: 32px !important;
    height: 32px !important;
    margin-right: 24px;
}

.table-list .product-image p {
    margin-bottom: 0;
}

.table-list td.align-center a {
    margin-right: 8px;
}

.table-list.hover tbody tr:hover {
    background-color: #fafafa;
    cursor: pointer;
}

.table-list.sales-report {
    border-bottom: none;
}

.table-dropdown tbody td:last-child {
    padding-left: 0;
    padding-right: 0;
}


/* -------- End Data Table -------- */


/* -------- Badge -------- */

.badge {
    position: relative;
}

.badge[data-badge]:after {
    content: attr(data-badge);
    position: absolute;
    top: 2px;
    right: 2px;
    font-family: NotoSans;
    font-size: 8px;
    background: #ff3b30;
    color: white;
    width: auto;
    min-width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12.5px;
    border-radius: 50%;
}

.badge img {
    width: 24px;
    opacity: 0.8;
}

.badge:hover img,
.badge.active img {
    opacity: 1;
}


/* -------- End Badge -------- */


/* -------- Qiuck Review -------- */

.hide {
    display: none;
}

.popover {
    border-radius: 2px;
    border: none;
    box-shadow: 0 0 16px #d3d4d5;
    width: 396px;
    max-width: 396px;
    height: auto;
}

.popover.bs-popover-left .arrow::before {
    border-left-color: #fff;
}

.popover.bs-popover-right .arrow::before {
    border-right-color: #fff;
}

.popover-body {
    padding: 36px 32px;
}

.qiuck-review {
    display: grid;
}

.qiuck-review .head-popover {
    font-family: NotoSans;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
}

.qiuck-review .head-popover .order-code {
    float: left;
    color: #373a3c;
}

.qiuck-review .head-popover .price {
    float: right;
    color: #8fc30f;
}

.qiuck-review .body-popover label {
    font-family: NotoSans;
    font-size: 16px;
    font-weight: 700;
    color: #373a3c;
}

.qiuck-review .body-popover .card {
    border-radius: 4px;
    border: 1px solid #e8e9ea;
    margin-bottom: 4px;
    height: 88px;
}

.qiuck-review .body-popover .card .card-body {
    padding: 12px;
}

.qiuck-review .body-popover .card .card-body .card-body-img {
    float: left;
}

.qiuck-review .body-popover .card .card-body .card-body-img img {
    width: 64px;
}

.qiuck-review .body-popover .card .card-body .card-body-name {
    width: 230px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    line-height: 1.1;
    padding-top: 12px;
}

.qiuck-review .body-popover .card .card-body .card-body-name span {
    font-family: NotoSans;
    font-size: 16px;
    color: #373A3C;
    font-weight: 400;
    margin: 5px 0 0;
}

.qiuck-review .body-popover .card .card-body .card-body-name p {
    font-family: NotoSans;
    font-size: 16px;
    font-weight: 400;
    line-height: 0;
    color: #7A7E81;
    margin-bottom: 8px;
    margin-top: 14px;
}

.qiuck-review .body-popover .card:last-child {
    margin-bottom: 32px;
}

.qiuck-review .foot-popover label {
    font-family: NotoSans;
    font-size: 16px;
    font-weight: 700;
    color: #373a3c;
}

.qiuck-review .foot-popover p {
    font-family: NotoSans;
    font-size: 14px;
    color: #7a7e81
}

.qiuck-review .foot-popover p span {
    font-size: 16px;
    color: #373A3C;
    line-height: 2.2
}

.modal-body {
    padding: 56px 80px;
}

.modal .modal-dialog {
    margin: 10% auto;
}

.modal .modal-dialog .modal-content {
    width: 112%;
    height: auto;
}

.modal-body h3 {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 24;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.modal-body .input-txt label {
    margin-bottom: 4px;
}

.modal-body .modal-botton {
    margin-top: 48px;
}

.modal-body .modal-botton .gray-btn {
    margin-right: 3px;
    width: 49%;
}

.modal-body .modal-botton .green-btn {
    width: 49%;
}


/* -------- End Qiuck Review -------- */


/* -------- Order-Details -------- */

.order-details {
    padding: 26px 32px 0;
    background: url(../../resources/img/logo-bg.png) no-repeat scroll 32px bottom;
    background-size: 194px 88px;
}

.order-details .order-number {
    margin-bottom: 48px;
}

.order-details .order-number h3 {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 24px;
    color: #373a3c;
}

.order-details .order-number p {
    font-family: NotoSans;
    font-size: 12px;
    color: #7a7e81;
    line-height: 0.8;
}

.shipped-tracking {
    border: 1px solid #d3d4d5;
    border-radius: 8px;
    padding: 70px 100px 56px;
    margin-bottom: 16px;
}

.shipped-tracking .row {
    text-align: center;
}

.shipped-tracking img {
    width: 48px;
}

.shipped-tracking p {
    font-family: NotoSans;
    font-size: 10px;
    color: #7a7e81;
    margin-top: 12px;
}

.shipped-tracking p span {
    color: #373a3c;
}

.shipped-tracking .shipped {
    text-align: center;
}

.shipped-tracking .radio-btn {
    display: inline-flex;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 32px;
}

.shipped-tracking .radio-btn .radio:first-child {
    padding-right: 54px;
}

.browse-file {
    display: grid;
}

.browse-file label {
    font-family: NotoSans;
    font-size: 14px;
    color: #4a4a4a;
}

.browse-file label span {
    color: #a7a9ab;
}

.browse-file .custom-file {
    height: 42px;
    cursor: pointer;
}

.browse-file .custom-file .custom-file-control {
    padding: 9px 23px 9px 16px;
    background-color: #FDFDFD;
    border: 1px solid #DFDFDF;
    font-family: NotoSans;
    font-size: 14px;
    color: #d3d4d5;
    height: 42px;
}

.browse-file .custom-file-input:focus~.custom-file-control {
    box-shadow: none;
}

.browse-file .custom-file .custom-file-control:lang(en):empty::after {
    content: "Select Image";
}

.browse-file .custom-file .custom-file-control::before {
    background-color: #fafafa;
    font-family: NotoSans;
    font-size: 14px;
    color: #7A7E81;
    padding: 9px 16px 9px 16px;
    height: 42px;
}

.shipped-tracking .input-txt {
    display: none;
    margin-bottom: 38px;
}

.shipped-tracking .input-txt label {
    text-align: left;
}

.shipped-tracking .btn-save {
    text-align: center;
    margin-top: 2px;
}

.shipped-tracking .btn-save button {
    width: 198px;
}

.ordering-detail {
    border: 1px solid #d3d4d5;
    border-radius: 8px;
}

.ordering-detail .items {
    padding: 40px 50px;
}

.ordering-detail .items>label {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 16px;
    color: #373a3c;
    margin-bottom: 16px;
}

.ordering-detail .items .card {
    height: 88px;
    margin-bottom: 12px;
}

.ordering-detail .items .card .card-body-img {
    float: left;
    margin-right: 32px;
}

.ordering-detail .items .card .card-body-img img {
    width: 56px;
}

.ordering-detail .items .card .item-name {
    font-weight: 700;
    font-size: 16px;
    color: #373A3C;
}

.ordering-detail .items .card label {
    font-family: NotoSans;
    line-height: 1;
    margin-bottom: 0px;
    width: 500px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.ordering-detail .items .card label .amount {
    font-weight: 400;
    font-size: 10px;
    color: #7a7e81;
    line-height: 0;
}

.ordering-detail .items .card label .price {
    font-weight: 700;
    color: #8fc30f;
    margin-right: 8px;
    line-height: 2;
}

.ordering-detail .items .card label .standard-price {
    font-weight: 400;
    font-size: 12px;
    color: #7a7e81;
    text-decoration: line-through;
}

.ordering-detail .address {
    padding: 32px 50px 40px;
}

.ordering-detail .address label {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 16px;
    color: #373a3c;
}

.ordering-detail .address p {
    font-family: NotoSans;
    font-size: 14px;
    color: #7a7e81
}

.ordering-detail .address p span {
    font-size: 16px;
    color: #373A3C;
    line-height: 2.2
}

.ordering-detail .payment {
    padding: 32px 50px 48px;
}

.ordering-detail .payment label {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 16px;
    color: #373a3c;
    margin-bottom: 18px;
}

.ordering-detail .payment p {
    color: #4a4a4a;
}

.ordering-detail .payment img {
    width: 26px;
    margin-right: 8px;
    margin-bottom: 2px;
}

.ordering-detail .payment p label {
    font-size: 14px;
    font-weight: 400;
    color: #a7a9ab;
    margin-left: 70px;
}

.order-details .footer {
    margin-top: 50px;
    font-size: 14px;
    color: #7a7e81;
}

.order-details .footer .row .col:last-child {
    text-align: right;
}

.order-details .footer .row.grand-total {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 16px;
    color: #373a3c;
    margin-top: 16px;
}


/* -------- Progress-Tracker -------- */

.tab-menu {
    border-bottom: 1px solid #D3D4D5;
    padding-bottom: 12px;
    margin-top: 24px;
}

.tab-menu a.item {
    font-family: NotoSans;
    font-size: 16px;
    color: #373a3c;
    padding: 12px 34px;
}

.tab-menu a.item.active {
    border-bottom: 2px solid #8FC30F;
}

.tab-menu a.item:hover {
    text-decoration: none;
}

.change-password {
    border: 1px solid #D3D4D5;
    border-radius: 8px;
    margin-top: 32px;
    padding: 40px 50px 48px 24px;
}

.change-password h3 {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 16px;
    color: #373a3c;
    margin-bottom: 28px;
}

.change-password .form-group {
    padding-left: 26px;
}

.change-password .footer-btn {
    text-align: right;
    margin-top: 24px;
}

.change-password .footer-btn button {
    width: 192px;
}

.form-header {
    border-bottom: 1px solid #d3d4d5;
    background-color: #fff;
    padding: 20px 64px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 10;
    height: 80px;
}

.form-header img {
    width: 32px;
    margin-top: 4px;
}

.form-header h3 {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 24px;
    color: #373a3c;
    text-align: center;
    line-height: 1.7;
    margin: 0;
}

.form-header button {
    min-width: 112px;
    float: right;
}

.form-body {
    padding-top: 81px;
}

.form-body .divider {
    border-bottom: 1px solid #d3d4d5;
}

.form-body .delete-link {
    margin-bottom: 82px;
}

.form-body .form-content {
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
    margin-bottom: 72px;
    border: 1px solid #d3d4d5;
    border-radius: 8px;
    width: 54.688%;
}

.form-content.edit-promotion {
    margin-bottom: 40px;
}

.form-content .promotion,
.form-content .product,
.form-content .discount,
.form-content .title,
.form-content .cover-content,
.form-content .name-sku,
.form-content .category,
.form-content .description,
.form-content .image,
.form-content .price-list,
.form-content .products-in-set {
    padding: 40px 24px 56px;
}

.form-content .promotion h5,
.form-content .product h5,
.form-content .discount h5,
.form-content .title h5,
.form-content .cover-content h5,
.form-content .name-sku h5,
.form-content .category h5,
.form-content .description h5,
.form-content .image h5,
.form-content .price-list h5,
.form-content .products-in-set h5 {
    font-family: NotoSans;
    font-weight: 700;
    font-size: 16px;
    color: #373a3c;
    margin-bottom: 24px;
}
.form-content .promotion .input-txt,
.form-content .product .select-dropdown,
.form-content .discount .input-txt,
.form-content .title .input-txt,
.form-content .cover-content .browse-file,
.form-content .cover-content .txt-area,
.form-content .name-sku .input-txt,
.form-content .category .select-dropdown,
.form-content .category .input-txt,
.form-content .description .txt-area,
.form-content .image .add-more-btn,
.form-content .image .table,
.form-content .price-list .table,
.form-content .price-list .add-more-btn,
.form-content .products-in-set .table,
.form-content .products-in-set .add-more-btn {
    margin-left: 26px;
    margin-right: 26px;
}

.form-content .discount label {
    font-family: NotoSans;
    font-size: 12px;
    color: #4A4A4A;
    margin-left: 26px;
}

.form-content .discount input {
    color: #7a7e81;
    float: left;
    font-family: NotoSans;
    font-size: 14px;
    margin-right: 8px;
    width: 480px;
    padding: 12px 16px;
}

.form-content .discount .btn-group {
    height: 42px;
}

.form-content .discount .btn-group .btn {
    background-color: #fff;
    border: 1px solid #D3D4D5;
    color: #D3D4D5;
    cursor: pointer;
    font-family: NotoSans;
    font-size: 14px;
    width: 48px;
}

.form-content .discount .btn-group .btn.active {
    background-color: #F9FcF3;
    border: 1px solid #8FC30F;
    color: #8FC30F;
}

.form-content .discount .btn-group .btn:hover {
    background-color: #F9FcF3;
    border: 1px solid #8FC30F;
    color: #8FC30F;
}

.form-content .discount .btn-group .btn:focus {
    box-shadow: none;
}

.form-content .active-choice {
    text-align: center;
}

.form-content .active-choice .radio-btn {
    display: inline-flex;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 26px;
}

.form-content .active-choice p {
    font-family: NotoSans;
    font-size: 14px;
    color: #a7a9ab;
    margin-bottom: 48px;
}

.form-content .active-choice p.disable {
    display: none;
}

.form-content .active-choice p span {
    color: #373A3C;
}

.form-content .price-list .table,
.form-content .products-in-set .table {
    width: 92%;
    margin-bottom: 24px;
}

.form-content .products-in-set .teble-products-in-set thead th:first-child,
.form-content .products-in-set .teble-products-in-set tbody th {
    padding-left: 0;
}

.form-content .price-list .teble-price-list thead th,
.form-content .products-in-set .teble-products-in-set thead th {
    border-bottom: 1px solid #D3D4D5;
    border-top: none;
    color: #373A3C;
    font-family: NotoSans;
    font-size: 14px;
    font-weight: normal;
    width: 150px
}

.form-content .price-list .teble-price-list thead th:first-child,
.form-content .products-in-set .teble-products-in-set thead th:first-child {
    width: 44px
}

.form-content .price-list .teble-price-list tbody th,
.form-content .price-list .teble-price-list tbody td,
.form-content .products-in-set .teble-products-in-set tbody th,
.form-content .products-in-set .teble-products-in-set tbody td {
    border-bottom: 1px solid #E8E9EA;
    color: #373A3C;
    font-family: NotoSans;
    font-size: 14px;
    font-weight: normal;
}

.form-content .price-list .teble-price-list tbody td:last-child,
.form-content .products-in-set .teble-products-in-set tbody td:last-child {
    text-align: right;
}

.form-content .price-list .teble-price-list tbody td a,
.form-content .products-in-set .teble-products-in-set tbody td a {
    text-decoration: none;
    color: #D3D4D5;
}

.form-content .price-list .teble-price-list input {
    border: none;
}

.form-content .price-list .teble-price-list input::placeholder {
    color: #D3D4D5;
}

.form-content .products-in-set .teble-products-in-set tbody th,
.form-content .products-in-set .teble-products-in-set tbody td {
    padding-top: 0;
    padding-bottom: 0;
}

.form-content .products-in-set .teble-products-in-set tbody td {
    line-height: 3.4;
    color: #D3D4D5;
}

.form-content .products-in-set .teble-products-in-set tbody th {
    width: 228px;
}

.form-content .products-in-set .teble-products-in-set button.dropdown-toggle {
    height: 48px;
    padding-left: 0;
    border: none;
    line-height: 1.4;
    background-color: #FFF;
}

.form-content .products-in-set .teble-products-in-set button.dropdown-toggle::after {
    top: 22px;
}

.form-content .products-in-set .teble-products-in-set input {
    border: none;
}

.form-content .products-in-set .teble-products-in-set input::placeholder {
    color: #D3D4D5;
}

.form-content .image .table {
    width: 92%;
    margin-bottom: 24px;
}

.form-content .image .table img {
    width: 24px;
}

.form-content .image .table tr th {
    padding-left: 4px;
    width: 40px;
}

.form-content .image .table tr th,
.form-content .image .table tr td {
    border-bottom: 1px solid #E8E9EA;
    border-top: none;
}

.form-content .image .table tr td:last-child {
    text-align: right;
    color: #D3D4D5;
}

.main-content .order {
    border: 1px solid #d3d4d5;
    border-radius: 4px;
    padding: 16px 32px;
    margin-top: 8px;
}

.main-content .order:first-child {
    margin-top: 30px;
}

.main-content .order:last-child {
    margin-bottom: 25px;
}

.main-content .order .product-img {
    padding-right: 8px;
}

.main-content .order .product-img img {
    width: 160px;
}

.main-content .order label {
    font-family: NotoSans;
    font-size: 16px;
    color: #373a3c;
    text-align: center;
}

.main-content .order .col-md-auto label {
    font-size: 14px;
}

.main-content .order .col-md-auto:first-child {
    padding-right: 9px;
}

.main-content .order .col {
    padding-left: 8px;
}

.main-content .order .col-md-auto .btn-tooltip {
    margin-right: 8px;
}

.main-content .order .col,
.main-content .order .col-md-auto {
    display: flex;
    align-items: center;
}

.container-welcome {
    margin-left: auto;
    margin-right: auto;
    margin-top: 11.5%;
    width: 29.219%;
    font-family: NotoSans;
}

.container-welcome h1 {
    font-size: 56px;
    color: #373A3C;
}

.container-welcome p {
    font-size: 12px;
    color: #7A7E81;
    margin-bottom: 34px;
}

.container-welcome button {
    width: 100%;
    margin-top: 26px;
}

.container-welcome .input-group .input-group-addon {
    width: 44px;
    padding-left: 14px;
    padding-right: 13px;
    background-color: #fdfdfd;
}

.container-welcome .input-group .input-group-addon img {
    width: 16px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.container-welcome .input-group input {
    border-left: 0;
    padding-left: 0;
}

.container-welcome .input-group input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}