/* ------------------------------- start silk ------------------------------- */

/* util */
.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-none {
    flex: none;
}

.items-start {
    align-items: flex-start;
}

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

.items-end {
    align-items: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.static {
    position: static;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    inset: 0;
}

.inset-x-0 {
    left: 0;
    right: 0;
}

.inset-y-0 {
    top: 0;
    bottom: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.m-0 {
    margin: 0;
}

.p-0 {
    padding: 0;
}

.list-none {
    list-style-type: none;
}

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mr-5 {
    margin-right: 5px;
}

.max-w-50 {
    max-width: 50%;
}

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

.text-nowrap {
    white-space: nowrap;
}

.text-wrap {
    white-space: normal;
}

/* end util */

/* common */
.pc-show {
    display: none;
}

.mb-show {
    display: block;
}

.pc-show-table {
    display: none !important;
}

.mb-show-table {
    display: table-row-group;
}

@media screen and (min-width: 768px) {
    .pc-show {
        display: block;
    }

    .pc-show-table {
        display: table-row-group !important;
    }

    .mb-show {
        display: none;
    }

    .mb-show-table {
        display: none !important;
    }
}

.custom-panel input[type="text"].datepicker {
    width: auto;
    height: auto;
    border: none;
    padding: 0;
    pointer-events: none;
    caret-color: transparent;
    font-weight: 600;
    background: none;
    color: #444446;
}

.custom-panel input[type="text"].datepicker:not([disabled]):focus {
    box-shadow: none;
}

#edit-icon {
    margin-left: -25px;
    cursor: pointer;
}

button.custom-btn-secondary,
button.custom-btn-primary {
    padding: 12px 46px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    border-radius: 100px;
}

button.custom-btn-secondary {
    background: #F3F3F4;
    border-color: #F3F3F4;
    color: #000000;
}

.pointer {
    cursor: pointer;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .custom-panel input[type="text"].datepicker {
        text-align: right;
    }

    #edit-icon {
        margin-left: 0;
    }
}

.page-wrapper {
    background: #fff !important;
}

.custom-panel {
    color: #000000;
}

.custom-panel .header {
    position: relative;
}

.custom-panel img {
    vertical-align: middle;
}

.custom-panel .page-title {
    margin: 0;
    position: relative;
}



.custom-panel .page-title h1 {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    height: 44px;
    line-height: 44px;
}

.custom-panel .search-fields {
    gap: 12px;
    font-size: 16px;
    flex-direction: column-reverse;
}

.custom-panel .header {
    gap: 10px;
}

.custom-panel .search-wrapper {
    border: 1px solid #E1E1E4;
    position: relative;
}

.custom-panel .search-wrapper,
.custom-panel .search-wrapper input {
    height: 40px;
    border-radius: 6px;
}

.custom-panel .icon-search {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.custom-panel .select-wrapper {
    height: 40px;
    margin-left: 12px;
    border: 1px solid #E1E1E4;
    border-radius: 6px;
    flex: 1;
}

.custom-panel .store-select2-wrapper .select2-container--default {
    margin-left: 12px;
    flex: 1;
}

.custom-panel .store-select2-wrapper .select2-container--default .select2-selection--single {
    border: 1px solid #E1E1E4;
    border-radius: 6px;
    min-width: 210px;
}

.custom-panel .filters-status {
    border-bottom: 1px solid #E6E6E6;
    margin: 14px -15px 10px;
    padding: 0 15px;
    overflow-x: scroll;
}

.custom-panel .filters-status .status-item {
    padding: 0 10px;
}

.custom-panel .filters-status .status-item a {
    display: inline-block;
    color: #BBBBBD;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    padding: 14px 0;
    white-space: nowrap;
}

.custom-panel .filters-status .current a {
    color: #F30000;
    border-bottom: 2px solid #F30000;
}

.custom-panel .add-new {
    padding: 20px 0;
    border-bottom: 1px solid #E5E9F1;
}

.custom-panel .add-new .title {
    margin-right: 12px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.plan-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.plan-items-col-1 {
    grid-template-columns: 1fr 1fr;
}

.plan-item {
    background: #F3F3F4;
    border-radius: 8px;
    padding: 15px;
    color: #000000;
    font-size: 14px;
    line-height: 22px;
}

.plan-item a {
    text-decoration: none;
}

.plan-item .plan-item__middle {
    padding: 15px 0;
    border-bottom: 1px solid #E1E1E4;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.plan-item .plan-item__header {
    padding-bottom: 15px;
    border-bottom: 1px solid #E1E1E4;
    font-size: 14px;
    line-height: 18px;
    font-weight: 450;
}

.plan-item .plan-item__header .num-sum {
    color: #6E6E73;
    font-size: 12px;
}

.plan-item .plan-item__content {
    gap: 15px;
    padding: 15px 0 0;
}

.plan-item .plan-item__image {
    max-width: 80px;
}

.plan-item .plan-item__title {
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    margin-bottom: 10px;
}

.plan-item .plan-item__shipping {
    color: #86BF03;
    font-size: 12px;
    line-height: 18px;
}

.plan-item .plan-item__status::after {
    display: inline-block;
    content: "";
    width: 13px;
    height: 13px;
    background: url('../images/icons/arrow.png') no-repeat center;
    background-size: cover;
    margin-left: 5px;
}

.plan-item .plan-item__info {
    flex: 1;
    gap: 10px;
}

.custom-panel .toolbar {
    margin-top: 20px;
}

.custom-panel .pages strong.page,
.custom-panel .pages ul.pages-items li.item>a span {
    font-size: 14px !important;
}

.custom-panel .pages .items.pages-items .item:last-child {
    margin-right: 0 !important;
}

.custom-panel .pages .action.previous::before,
.custom-panel .pages .action.next::before {
    font-size: 24px;
}

.custom-panel .detail-content-wrapper {
    margin: 24px 0 16px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    padding: 0 30px;
}

.custom-panel .action-wrap {
    text-align: right;
}

.custom-panel .action-wrap .btn-area {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .custom-panel .detail-content-wrapper.table-content-wrapper td.action {
        display: block;
        text-align: right;
        padding-top: 0px;
    }

    .breadcrumbs {
        display: none;
    }

    .custom-panel .header {
        flex-direction: column;
    }

    .custom-panel .toolbar .pages {
        float: none;
    }

    .custom-panel .detail-content-wrapper {
        padding: 0 15px;
    }

    .plan-item .plan-item__title {
        max-width: 100%;
    }

    .plan-items {
        grid-template-columns: 1fr;
    }

    .custom-panel .header .action-back {
        font-size: 0;
    }

    .custom-panel .header .action-back {
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
    }

    .custom-panel .header .action-back::before {
        display: inline-block;
        content: "";
        width: 24px;
        height: 24px;
        background: url('../images/icons/arrow-black.png') no-repeat center;
        background-size: cover;
    }

    .custom-panel .search-fields>div {
        width: 100%;
    }

    .mb-flex-column {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-panel .action-wrap {
        text-align: center;
        padding: 15px 0;
    }

    .custom-panel .action-wrap .btn-area {
        gap: 10px;
        justify-content: space-between;
    }

    .custom-panel .detail-content-wrapper {
        margin: 10px 0 16px;
    }

    .custom-panel.ride-detail .action-wrap .btn-area button {
        flex: 1;
    }
}

@media (min-width: 768px) {

    .page-wrapper .page-main,
    .page-wrapper .breadcrumbs {
        max-width: 1440px !important;
        padding: 0 !important;
    }

    .page-wrapper .page-main {
        flex-direction: column;
    }

    .plan-items {
        gap: 16px;
    }

    .custom-panel .actions {
        display: flex;
        justify-content: flex-end;
        flex: 1;
    }

    .custom-panel .page-title h1 {
        font-size: 24px;
        text-align: left;
    }

    .custom-panel .filters-status .status-item {
        padding: 0 20px;
    }

    .custom-panel .filters-status {
        overflow-x: hidden;
        margin: 14px 0 24px;
        padding: 0;
    }

    .custom-panel .actions a {
        color: #6E6E73;
        font-size: 16px;
        line-height: 24px;
        text-decoration: underline;
    }

    .custom-panel .header,
    .custom-panel .search-fields {
        flex-direction: row;
    }

    .custom-panel .page-title {
        width: unset;
        flex: none;
    }
}

@media (min-width: 1024px) {
    .custom-panel .search-fields>div input {
        width: 260px;
    }

    .custom-panel .select-wrapper {
        width: 210px;
    }
}

.empty-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
    gap: 20px;
    height: 300px;
}

.empty-wrapper-xs {
    height: 100px;
    font-size: 12px;
}

.empty-wrapper-md {
    height: 200px;
    font-size: 12px;
}

.empty-wrapper img {
    width: 104px;
}

.empty-wrapper-xs img {
    width: 50px;
}

.empty-wrapper-md img {
    width: 80px;
}

/* ====== custom checkbox / radio ====== */
.custom-checkbox {
    display: inline-block;
    position: relative;
    font-size: 0;
}

.hidden-checkbox {
    display: none;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid #00000066;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    box-sizing: border-box;
}

.checkbox-custom.radio {
    border-radius: 50%;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (min-width: 768px) {
    .checkbox-custom::after {
        left: 6px;
        top: 2px;
    }
}

.hidden-checkbox:checked+.checkbox-label .checkbox-custom {
    background-color: #f30000;
    border-color: #f30000;
}

.hidden-checkbox:checked+.checkbox-label .checkbox-custom::after {
    display: block;
}

.checkbox-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* ====== custom checkbox / radio ====== */

.detail-content-wrapper .operate-area {
    padding: 20px;
    border-top: 1px solid #E1E1E4;
}

.detail-content-wrapper .total-count {
    margin-right: 40px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    vertical-align: middle;
}

.table-content-wrapper {
    padding: 8px 0;
}

.table-content-wrapper tbody tr:not(:last-child) {
    border-bottom: 0.5px solid #E4E9F3;
}

.table-content-wrapper th,
.table-content-wrapper td {
    padding: 16px 8px;
    text-align: center;
}

.table-content-wrapper th {
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    border-bottom: 0.5px solid #E4E9F3 !important;
}

.table-content-wrapper td,
.table-content-wrapper .operate-area {
    color: #444446;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.table-content-wrapper .details {
    color: #F30000;
    text-decoration: underline;
}

.custom-panel input.mage-error {
    border-color: #ed8380 !important;
}

.custom-panel input[type="text"],
.custom-panel input[type="number"],
.custom-panel input[type="tel"],
.custom-panel input[type="email"],
.custom-panel input[type="password"],
.custom-panel input[type="date"] {
    border: 1px solid #BBBBBD;
    border-radius: 2px;
    padding: 10px;
    height: 40px;
    font-size: 14px;
    width: 100%;
}

.custom-panel textarea {
    border: 1px solid #BBBBBD;
    border-radius: 2px;
    padding: 10px;
    height: 96px;
}

.custom-panel textarea.mage-error {
    border-color: #ed8380;
}

/* .custom-panel input[type="text"][name="location"] {
    padding: 10px 30px 10px 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5081_38250)'%3E%3Cpath d='M-1.0026 6.8046L11.6641 2L6.85946 14.6667L4.67553 8.98853L-1.0026 6.8046Z' stroke='%23BBBBBD' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5081_38250'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
} */
.store-management-edit .location-group div.mage-error[generated] {
    transform: translateY(-120%);
}

.location-input-wrapper {
    position: relative;
    /* display: flex;
    align-items: center; */
}

#location {
    padding-right: 30px;
    width: 100%;
}

#map-location {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* === select === */
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #BBBBBD;
}

.custom-panel input._has-datepicker,
.select2-container--default .select2-selection--multiple,
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #BBBBBD;
    border-radius: 2px;
    padding: 10px 30px 10px 10px;
    height: 40px;
    font-size: 14px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.3531 5H13.9715C13.8775 5 13.7891 5.03418 13.7339 5.09023L8.50035 10.4441L3.26684 5.09023C3.21158 5.03418 3.12315 5 3.02921 5H1.6476C1.52787 5 1.45786 5.10117 1.52787 5.17363L8.02324 11.8195C8.25903 12.0602 8.74167 12.0602 8.97562 11.8195L15.471 5.17363C15.5428 5.10117 15.4728 5 15.3531 5Z' fill='%23BBBBBD'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    line-height: 18px;
}

select::-ms-expand {
    display: none;
}

select option[value=""][disabled] {
    display: none;
}

select:focus {
    outline: none;
}

/* === select === */
@media screen and (max-width: 768px) {
    .detail-content-wrapper .operate-area {
        display: none;
    }

    .detail-content-wrapper .operate-area-mb {
        padding: 16px 0;
    }

    .detail-content-wrapper .total-count {
        font-size: 18px;
        line-height: 24px;
        margin-right: 15px;
    }

    .detail-content-wrapper .operate-area-mb .custom-btn-primary {
        padding: 12px 32px;
        font-size: 13px;
    }

    .table-content-wrapper th {
        color: #86868B;
    }

    .table-content-wrapper th.select,
    .table-content-wrapper td.select,
    .table-content-wrapper th.date,
    .table-content-wrapper td.date,
    .table-content-wrapper th.action,
    .table-content-wrapper td.action {
        display: none;
    }

    .table-content-wrapper th,
    .table-content-wrapper td {
        text-align: left;
        padding: 16px 0;
    }

    .table-content-wrapper th.entity_id {
        padding-right: 16px;
    }

    .table-content-wrapper th.status,
    .table-content-wrapper th.amount,
    .table-content-wrapper td.status,
    .table-content-wrapper td.amount {
        text-align: right;
    }

    .table-content-wrapper td.status.link {
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
    }

    .table-content-wrapper td.status svg {
        flex-basis: 100%;
    }

    .table-content-wrapper td.entity_id .info {
        max-width: 100px;
        word-break: break-word;
        margin-right: 16px;
    }

    .table-content-wrapper td.entity_id span {
        font-size: 12px;
        line-height: 18px;
        color: #86868B;
        max-width: 100px;
        white-space: nowrap;
    }

    .table-content-wrapper td.entity_id.fl {
        display: flex;
    }
}

.customize-scrollbar {
    --sb-track-color: #c3c3c3;
    --sb-thumb-color: #424242;
    --sb-size: 3px;
}

.customize-scrollbar::-webkit-scrollbar {
    width: var(--sb-size);
}

.customize-scrollbar::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 1px;
}

.customize-scrollbar::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 1px;
}

@supports not selector(::-webkit-scrollbar) {
    .customize-scrollbar {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

#cancel-reasons-error {
    color: #e02b27;
    font-size: 1.2rem;
}

a.action.primary {
    border-radius: 20px;
}

@media (min-width: 768px) {
    #maincontent h1.page-title {
        margin-top: 25px !important;
    }
}

/* end common */

/* start datepicker */
.datepicker-btn-hide._has-datepicker~.ui-datepicker-trigger {
    display: none;
}

.custom-datepicker.ui-datepicker {
    box-sizing: border-box;
    display: none;
    opacity: 0.98;
    padding: 23px 20px;
    width: auto;
    z-index: 999999 !important;
    box-shadow: none !important;
    border: none;
}

.custom-datepicker.ui-datepicker:before {
    background: #ffffff;
    bottom: 0;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 3px;
    z-index: 0;
    border-radius: 4px;
}

.custom-datepicker .ui-datepicker-header {
    padding: 0 0 10px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #F0F0F0;
    margin: 0 0 5px;
}

.custom-datepicker .ui-datepicker-prev,
.custom-datepicker .ui-datepicker-next {
    cursor: pointer;
    line-height: 3rem;
    position: absolute;
    top: 0 !important;
    width: auto !important;
    height: auto !important;
}

.custom-datepicker .ui-datepicker-prev:before,
.custom-datepicker .ui-datepicker-next:before {
    color: #514943;
    display: inline-block;
    font-size: 34px;
}

.custom-datepicker .ui-datepicker-prev {
    left: 0 !important;
}

.custom-datepicker .ui-datepicker-prev:before {
    content: '\2039';
}

.custom-datepicker .ui-datepicker-next {
    right: 0 !important;
}

.custom-datepicker .ui-datepicker-next:before {
    content: '\203A';
}

.custom-datepicker.ui-datepicker .ui-datepicker-title {
    line-height: 1.8em;
    margin: 0 2.3em;
    text-align: center;
}

.custom-datepicker.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
    min-width: 0;
    font-size: 14px;
}

.custom-datepicker.ui-datepicker select.ui-datepicker-month-year {
    width: 100%;
}

.custom-datepicker.ui-datepicker table {
    width: 100%;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar {
    background: #ffffff;
    border: 0;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar thead {
    background: transparent;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar tr {
    background: transparent;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar tr th {
    background: transparent;
    border: 0;
    padding: 0;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar tr th span {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar tr td {
    background: transparent;
    border: none;
    padding: 0;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar span,
.custom-datepicker.ui-datepicker table.ui-datepicker-calendar a {
    box-sizing: border-box;
    color: #000000D9;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    width: 36px;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar .ui-state-disabled span {
    background: #f5f5f5;
    color: #999999;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar .ui-state-active {
    background: transparent;
    outline: 1px solid #F30000;
    outline-offset: -1px;
}

.custom-datepicker.ui-datepicker table.ui-datepicker-calendar .ui-datepicker-today a {
    outline: 1px solid #adadad;
    outline-offset: -1px;
    line-height: 24px;
}

.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane {
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    padding-top: 15px;
    position: relative;
    white-space: nowrap;
    z-index: 1;
    border: none;
}

.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane button,
.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane .block-footer .action-add {
    background: #ffffff;
    border: 1px solid #adadad;
    border-radius: 1px;
    box-sizing: border-box;
    color: #008bdb;
    float: left;
    font-size: 14px;
    line-height: 38px;
    padding: 0;
    text-align: center;
    width: 49%;
}

.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close {
    float: right;
}

.custom-datepicker.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
    margin-right: 6%;
    width: 47%;
}

.custom-datepicker.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
    width: 47%;
}

.custom-datepicker.ui-datepicker .ui-datepicker-calendar .ui-datepicker-week-col {
    border: 1px solid #cecece;
    text-align: center;
}

.custom-datepicker .ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.custom-datepicker .ui-timepicker-div dl {
    text-align: left;
}

.custom-datepicker .ui-timepicker-div dl dd {
    margin: 0 0 10px 65px;
}

.custom-datepicker .ui-timepicker-div td {
    font-size: 90%;
}

.custom-datepicker .ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.custom-datepicker .ui-slider {
    position: relative;
    text-align: left;
    margin-top: 5px;
}

.custom-datepicker .ui-slider-horizontal .ui-slider-handle {
    margin-left: -5px;
}

.custom-datepicker .ui-slider .ui-slider-handle {
    cursor: default;
    position: absolute;
    z-index: 2;
    transform: translateY(-2.5px);
}

.custom-datepicker .ui-slider-horizontal {
    background: #F3F3F4;
    border: none;
    border-radius: 10px;
    height: 5px;
}

.custom-datepicker .ui-slider-handle {
    background: #000000;
    border-radius: 10px;
    display: block;
    height: 10px;
    position: absolute;
    width: 10px;
}

.custom-datepicker .ui-timepicker-div {
    padding: 20px 0 5px 0;
    position: relative;
}

.custom-datepicker .ui-datepicker-rtl {
    direction: rtl;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-prev {
    left: auto;
    right: 2px;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-prev:hover {
    left: auto;
    right: 1px;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-buttonpane button,
.custom-datepicker .ui-datepicker-rtl .ui-datepicker-buttonpane .block-footer .action-add {
    float: left;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.custom-datepicker .ui-datepicker-rtl .ui-datepicker-buttonpane .block-footer .action-add.ui-datepicker-current {
    float: right;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
    border-left-width: 1px;
    border-right-width: 0;
}

.custom-datepicker .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 1px;
    border-right-width: 0;
}

.custom-datepicker .ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.custom-datepicker .ui-timepicker-div dl {
    text-align: left;
}

.custom-datepicker .ui-timepicker-div dl dt {
    height: 25px;
    margin-bottom: -22px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

.custom-datepicker .ui-timepicker-div dl .ui_tpicker_time_label {
    margin-bottom: -30px;
}

.custom-datepicker .ui-timepicker-div dl .ui_tpicker_time {
    border: 1px solid #BBBBBD;
    border-radius: 2px;
    color: #6E6E73;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1;
}

.custom-datepicker .ui-timepicker-div dl dd {
    margin: 0 10px 10px 65px;
}

.custom-datepicker .ui-timepicker-div td {
    font-size: 90%;
}

.custom-datepicker .ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.custom-datepicker .ui-datepicker-next span,
.custom-datepicker .ui-datepicker-prev span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.custom-datepicker {
    position: relative;
}

.custom-datepicker__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 155px;
    height: 40px;
    color: #444446;
    border: 1px solid #BBBBBD;
    border-radius: 2px;
    background: #fff;
    padding: 10px;
    cursor: pointer;
    box-sizing: border-box;
}

.custom-datepicker__btn::after {
    display: inline-block;
    content: '';
    width: 16px;
    height: 16px;
    background: url("../images/icons/icon-calendar.png") no-repeat center;
    background-size: cover;
}

.custom-datepicker__input {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane button {
    width: 98px;
    height: 32px;
    border-radius: 60px;
    line-height: 100%;
    font-weight: 400;
}

.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane button.ui-priority-primary {
    color: #000000;
    background: #F3F3F4;
    border-color: #F3F3F4;
}

.custom-datepicker.ui-datepicker .ui-datepicker-buttonpane button.ui-priority-secondary {
    color: #fff;
    background: #000000D9;
    border-color: #000000D9;
    margin-left: 16px;
}

.customer-datepicker-hide-day {
    min-width: 260px;
}

.customer-datepicker-hide-day .ui-datepicker-calendar,
.customer-datepicker-hide-day .ui-datepicker-prev,
.customer-datepicker-hide-day .ui-datepicker-next {
    display: none;
}

.customer-datepicker-hide-day .ui-datepicker-header {
    border: none;
}

.customer-datepicker-hide-day.ui-datepicker .ui-datepicker-title {
    margin: 0;
}

/* end datepicker */

/* custom confirm */
.custom-modal-popup .modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.custom-modal-popup .modal-footer button {
    flex: 1;
    height: 44px;
    border-radius: 60px;
}

.custom-modal-popup.modal-popup .modal-footer {
    padding: 24px;
}

.custom-modal-popup.modal-popup .modal-content {
    padding: 0 24px;
}

.custom-modal-popup.modal-popup .modal-inner-wrap {
    max-width: 800px;
    border-radius: 8px;
    width: 100%;
}

.custom-confirm.confirm .modal-inner-wrap {
    max-width: 400px;
}

.custom-alert.alert .modal-inner-wrap {
    max-width: 400px;
}

.modal-popup .modal-content {
    word-wrap: break-word;
}

.customer-map-locator.modal-popup .modal-header {
    display: none;
}

.customer-map-locator.modal-popup .modal-content {
    padding: 0;
}

.customer-map-locator #store-locator-map {
    border-radius: 8px 8px 0 0;
}

.customer-map-locator.modal-popup .modal-footer {
    justify-content: flex-end;
}

.customer-map-locator.modal-popup .modal-footer button {
    flex: none;
    padding: 12px 46px;
    border-radius: 100px;
}

@media screen and (max-width: 767px) {
    .custom-modal-popup.modal-popup .modal-inner-wrap {
        max-width: 90%;
    }

    .custom-confirm.confirm .modal-inner-wrap {
        max-width: 90%;
    }

    .custom-alert.alert .modal-inner-wrap {
        max-width: 90%;
    }

    .customer-map-locator.modal-popup .modal-footer {
        justify-content: space-between;
    }

    .customer-map-locator.modal-popup .modal-footer button {
        flex: 1;
    }

}

.custom-modal-popup .modal-title {
    color: #000000;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    border: none;
    font-weight: 600;
    padding-bottom: 8px;
}

.custom-modal-popup.modal-popup .action-close:focus {
    box-shadow: none;
}

.custom-modal-popup.modal-popup .modal-inner-wrap {
    top: 50%;
    left: 50%;
    right: unset;
    transform: translate(-50%, -200%);
    margin: 0;
}

.custom-modal-popup.modal-popup._show .modal-inner-wrap {
    transform: translate(-50%, -50%);
}

.custom-modal-popup.modal-popup.custom-modal-popup .modal-footer button.action-secondary {
    background: #F3F3F4;
    border-color: #F3F3F4;
    color: #000000;
    text-shadow: none;
}

.custom-modal-popup.modal-popup.custom-modal-popup .modal-footer button.action-secondary:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
    box-shadow: none;
}

.custom-modal-popup.modal-popup.custom-modal-popup .modal-footer button.action-primary {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    text-shadow: none;
}

.custom-modal-popup.modal-popup.custom-modal-popup .modal-footer button.action-primary:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    box-shadow: none;
}

.custom-modal-popup.custom-modal-popup-btn-right .modal-footer {
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .custom-modal-popup.custom-modal-popup-btn .modal-footer button {
        flex: none;
        min-width: 176px;
    }
}

/* end custom confirm */

/* stepper */
.stepper-container {
    width: 104px;
    height: 40px;
    border: 1px solid #E1E1E4;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    display: flex;
}

.stepper-container.disabled :is(button, input) {
    opacity: 0.3;
    cursor: initial;
}

.stepper-container button {
    color: #6E6E73;
    background: none;
    width: 32px;
    height: 40px;
    line-height: 1;
    text-align: center;
    border: none;
    border-radius: 0;
    flex: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: none;
}

.stepper-container button:hover,
.stepper-container button:active,
.stepper-container button:focus {
    border: none;
}

.stepper-container .decrement::before {
    display: inline-block;
    content: '';
    width: 14px;
    height: 2px;
    background: #6E6E73;
    border-radius: 2px;
}

.stepper-container .increment::before {
    display: inline-block;
    content: '';
    width: 14px;
    height: 2px;
    background: #6E6E73;
    border-radius: 2px;
}

.stepper-container .increment::after {
    display: inline-block;
    content: '';
    width: 2px;
    height: 14px;
    background: #6E6E73;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stepper-container input[type="text"] {
    flex: 1;
    text-align: center;
    height: 40px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0 2px;
}

.stepper-container input[type="text"]:focus {
    outline: none;
    box-shadow: none;
}

/* end stepper */

/* custom select2 */
.select2-dropdown-custom.select2-dropdown {
    border-radius: 2px !important;
    border-width: 0;
    box-shadow: 0px 2px 13.4px 0px #00000026, 0px 1px 3.8px 0px #0000000D;
    padding: 10px 0;
    color: #444446;
}

.select2-dropdown-custom .select2-results__option {
    font-size: 14px;
    line-height: 22px;
    border-radius: 4px;
    padding: 4px;
    margin: 0 10px 0;
}

.select2-dropdown-custom .select2-results__option span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.select2-dropdown-custom .select2-results__option img {
    vertical-align: middle;
}

.select2-dropdown-custom .select2-results__option:last-child {
    margin-bottom: 0;
}

.select2-container--default .select2-dropdown-custom .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #7D7D7D17;
    color: #000000BF;
}

.select2-dropdown-custom {
    --sb-track-color: #fff;
    --sb-thumb-color: #C1C1C1;
    --sb-size: 3px;
}

.select2-dropdown-custom .select2-results__options::-webkit-scrollbar {
    width: var(--sb-size);
}

.select2-dropdown-custom .select2-results__options::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 1px;
}

.select2-dropdown-custom .select2-results__options::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 1px;
}

.select2-container--default .select2-selection--single {
    border-radius: 2px;
    border: 1px solid #BBBBBD;
}

.select2-container .select2-search--inline {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: unset !important;
    border-style: unset !important;
    width: 100% !important;
    height: 100% !important;
    /* background: url('../images/icons/arrow-down.png') no-repeat center; */
    background-size: cover;
    transition: transform .3s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.3531 5H13.9715C13.8775 5 13.7891 5.03418 13.7339 5.09023L8.50035 10.4441L3.26684 5.09023C3.21158 5.03418 3.12315 5 3.02921 5H1.6476C1.52787 5 1.45786 5.10117 1.52787 5.17363L8.02324 11.8195C8.25903 12.0602 8.74167 12.0602 8.97562 11.8195L15.471 5.17363C15.5428 5.10117 15.4728 5 15.3531 5Z' fill='%23BBBBBD'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    margin: 0;
    transform: translate(-50%, -50%);
}

/* .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(-180deg);
} */

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    top: 0;
    right: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    padding: 10px 30px 10px 10px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #F3F3F4;
    color: #444446;
    margin-bottom: 5px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    margin: 0;
    display: none;
}

.select2-container--default .select2-selection--multiple {
    height: 100%;
    min-height: 40px;
    line-height: 18px;
}

.select2-selection--multiple .select2-selection__rendered {
    display: inline-flex !important;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: flex;
    flex-direction: row-reverse;
    margin: 0;
    background-color: #F3F3F4;
    border: none;
    font-size: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #D8D8D8;
    margin-left: 2px;
    margin-right: 0;
}

@supports not selector(::-webkit-scrollbar) {
    .select2-dropdown-custom .select2-results__options {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

/* end custom select2 */

/* dtc order detail */
.dtc-order-detail-content {
    gap: 10px;
    margin-top: 10px;
    flex-direction: column-reverse;
}

.dtc-order-detail-content .woid {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.dtc-order-detail-content .wostatus {
    color: #86868B;
}

.dtc-order-detail-content .wostatus strong {
    font-weight: normal;
    color: #444446;
    font-size: 14px;
    margin-right: 4px;
}

.claim-details .dtc-order-detail-total {
    padding: 18px 30px;
}

.claim-details .dtc-order-detail-total .header {
    border-bottom: 0px solid #E1E1E4;
    padding-bottom: 0;
}

.claim-details .dtc-order-detail-total-info.claim-total {
    border-bottom: 0px;
    margin-bottom: 0px;
}

.claim-details .dtc-order-detail-total-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #E1E1E4;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.claim-details .dtc-order-detail-total-info.cliam-parts-items {
    grid-template-columns: 2fr 5fr;
    align-items: center;
    position: relative;
}

.cliam-parts-items .shortage-mark {
    background-color: rgba(255, 123, 33, 0.1);
    border-radius: 5px;
    padding: 0 8px;
    color: #1E253D;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.cliam-parts-items .shortage-mark svg {
    margin-right: 4px;
}

.cliam-list .cliam-item .stock,
.cliam-parts-item .stock,
.claim-details .dtc-order-detail-total-info .flex .label {
    color: rgba(30, 37, 61, 0.6);
    font-size: 14px;
}

.cliam-parts-items .qty {
    color: #000 !important;
    font-weight: bold;
}

.cliam-parts-item-container {
    background: #F3F3F4;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;

}

.cliam-parts-item-container .cliam-part {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.claim-details .dtc-order-detail-total-info.cliam-parts-item {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0px;
    border: 0px;
    padding: 0px;
    gap: 2rem;

}

.claim-details .dtc-order-detail-total-info.last {
    border-bottom: 0px;
}

.claim-details .dtc-order-detail-total-info .flex {
    display: block;
    color: #444446;
}

.claim-details .dtc-order-detail-total-info .flex.photo-video img,
.claim-details .dtc-order-detail-total-info .flex.photo-video video {
    width: 69px;
    height: 69px;
    border-radius: 10px;
    border: 1px solid #E5E9F1;
    float: left;
    margin-right: 8px;
    cursor: pointer;
    object-fit: cover;
}

.claim-details .dtc-order-detail-total-info .flex .label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.claim-details .dtc-order-detail-total-info>div>span:last-child {
    color: #86868B;
}

.claim-details .claim-details-error-code>div>span.error-code {
    color: #86868B;
}

.claim-split-title {
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .claim-details .dtc-order-detail-total-info.cliam-parts-items {
        grid-template-columns: 5fr 1fr;
    }

    .claim-details .dtc-order-detail-total-info.cliam-parts-items .last {
        text-align: right;
    }

    .claim-details .dtc-order-detail-total-info.claim-total .flex span {
        float: right;
    }

    .claim-details .dtc-order-detail-total-info.claim-total .flex .label {
        float: left;
    }

    .claim-details .dtc-order-detail-total-info.claim-total .flex .label:after {
        content: ' :';
        font-size: 14px;
    }

    .cliam-parts-item-container {
        padding: 15px;
    }

    .cliam-parts-item-container .cliam-part {
        gap: 1rem;
    }

    .claim-details .dtc-order-detail-total-info.cliam-parts-item {
        gap: 1rem;
    }

    .claim-details .dtc-order-detail-total {
        padding: 18px 24px;
    }

    .claim-details .dtc-order-detail-total-info {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .claim-details .dtc-order-detail-total-info .flex {
        display: flex;
        justify-content: space-between;
    }

    .claim-details .dtc-order-detail-total-info .flex .label {
        margin-bottom: 0;

    }

    .claim-split-title {
        font-size: 16px;
    }

    .claim-details .dtc-order-detail-total-info .flex.photo-video {
        display: block;
        border-top: 1px solid #E1E1E4;
        padding-top: 8px;
        padding-bottom: 10px;
    }

    .claim-details .dtc-order-detail-total-info .flex.displayblock {
        display: block;
    }

    .claim-details .dtc-order-detail-total-info .flex.displayblock .sn-title {
        font-weight: 600;
        color: #000;
    }

    .claim-details .dtc-order-detail-total-info .flex.photo-video>span.label {
        margin-bottom: 5px;
    }

    .cliam-parts-items .shortage-mark {
        position: absolute;
        top: 0;
        right: 10px;
    }
}

/*Marketing Materials start*/
.custom-panel.marketing .page-title {
    margin-bottom: 24px;
}

.custom-panel.marketing .header {
    display: none;
}

.materials-list {
    display: grid;
    grid-template-columns: 20% auto;
    gap: 4rem;
}

#foldertree {
    overflow: hidden;
}

#foldertree>ul {
    background: #fafafa;
    padding: 0 10px;
}

#foldertree a {
    color: #6E6E73;
    text-decoration: none;
}

#foldertree a:hover {
    text-decoration: none;
    color: #000;
}

#foldertree ul:not(.segeway-tree) {
    padding-left: 0px;
}

#foldertree .tree-icon:before {
    content: '\e622';
    font-family: 'icons-blank-theme';
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
}

.scroll-area {
    overflow: auto;
}

#foldertree {
    float: left;
    min-width: 100%;
}

.segeway-tree {
    min-width: 100%;
}

#foldertree li>.tree-icon {
    height: 34px;
    line-height: 36px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 28px;
    cursor: pointer;
    z-index: 1;
    transform: rotate(-90deg);
}

#foldertree li.active>.tree-icon {
    transform: rotate(0deg);
}

.foldertree-container {
    /*min-width: 100%;background: #fafafa;*/
}

#foldertree a {
    padding: 5px 0px 5px 0px;
    line-height: 24px;
    display: inline-block;
    height: auto;
}

#foldertree li.current>a.current {
    position: relative;
}

#foldertree li.current>a.current span {
    position: relative;
    z-index: 1;
}

#foldertree li.current>a.current:after {
    position: absolute;
    top: 0px;
    bottom: 0px;
    content: '';
    background: #F3F3F4;
    width: 4100%;
    right: -2000%;
    z-index: 0;
}

#foldertree li.current>a.current:before {
    content: '';
    background: red;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: 2;
}

#foldertree li.current>a.current[aria-level="0"]:before {
    left: -38px;
}

#foldertree li.current>a.current[aria-level="1"]:before {
    left: -66px;
}

#foldertree li.current>a.current[aria-level="2"]:before {
    left: -94px;
}

#foldertree li.current>a.current[aria-level="3"]:before {
    left: -122px;
    /*28*4+10*/
}

#foldertree li.current>a.current[aria-level="4"]:before {
    left: -150px;
}

#foldertree li.current>a.current[aria-level="5"]:before {
    left: -178px;
}

#foldertree li.current>a.current[aria-level="6"]:before {
    left: -206px;
}

#foldertree li.current>a.current[aria-level="7"]:before {
    left: -234px;
}

#foldertree li.current>a.current[aria-level="8"]:before {
    left: -262px;
}

#foldertree li.current>a.current[aria-level="9"]:before {
    left: -290px;
}

#foldertree li.current>a.current[aria-level="10"]:before {
    left: -318px;
}

#foldertree li.current>a.current[aria-level="11"]:before {
    left: -346px;
}

#foldertree li.current>a.current[aria-level="12"]:before {
    left: -374px;
}

#foldertree li.current>a.current[aria-level="13"]:before {
    left: -402px;
}

#foldertree li.current>a.current[aria-level="14"]:before {
    left: -430px;
}

#foldertree li {
    list-style: none;
    position: relative;
    padding-left: 28px;
    margin: 0px;
}

#foldertree li ul {
    display: none;
}

#foldertree li.active>ul {
    display: block;
}

.materials-grid-itmes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.4rem;
    align-items: end;
}

.materials-grid-itmes a {
    display: block;
}

.materials-grid-itmes img {
    display: block;
    margin-bottom: 6px;

}

.materials-grid-itmes a:hover {
    text-decoration: none;
}

.materials-grid-itmes span.video {
    display: block;
    position: relative;
}

.materials-grid-itmes video {
    display: block;
}

.materials-grid-itmes span.video .play-icon {
    font-style: normal;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #fff;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
}

.materials-grid-itmes span.video .play-icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 2px);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 10px solid transparent;
    border-bottom: 8px solid transparent;
}

.materials-grid-itmes span:not(.video) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.materials-grid-container .toolbar {
    border-top: 1px solid #E1E1E4;
    margin-top: 30px;
    padding: 20px 0;
    color: #767B89;
}

.materials-grid-container .toolbar select {
    background-color: #efefef;
    color: #333;
}

.materials-list .pages .action.previous::before,
.materials-list .pages .action.next::before {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background: #efefef;
    font-size: 32px;
    color: #767B89 !important;
    border: 1px solid #BBBBBD;
    font-weight: bold;
    line-height: 32px;
}

.materials-list .pages .action.next,
.materials-list .pages .action.previous {
    margin: 0px;
}

body .materials-list .pages ul.pages-items li.item {
    margin-right: 15px !important;
    width: 17px;
    background: #efefef;
}

body .materials-list .pages ul.pages-items li.item.current {
    background: none;
}

body .materials-list .pages ul.pages-items li.item a {
    font-size: 12px;
}

body .materials-list .pages ul.pages-items li.item>a span {
    font-size: 14px;
    color: #333;
}

.materials-list .pages strong.page {
    font-size: 14px;
    color: #2E70FF;
    font-weight: normal;
}

body .materials-list .pages ul.pages-items li.item.pages-item-previous,
body .materials-list .pages ul.pages-items li.item.pages-item-next {
    width: 32px;
}

@media (max-width: 1024px) {
    .materials-grid-itmes {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .materials-grid-itmes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    #foldertree {
        display: none;
    }

    .account .materials-list .toolbar .pages {
        float: none;
    }

    #foldertree.mb-show {
        display: block;
    }

    .custom-panel.marketing>.page-title {
        display: none;
    }

    .custom-panel.marketing .header {
        display: block;
    }

    .materials-grid-lists {
        display: none;
    }

    .materials-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .left-scroll {
        order: 1;
        margin: 0 -10px;
        font-size: 16px;
    }

    #foldertree a {
        padding: 8px 0px 8px 0px;
    }

    #foldertree .tree-icon {
        height: 40px;
        line-height: 40px;
    }

    /*#foldertree li.current >a.current:before,#foldertree li.current >a.current:after{
        display: none;
    }*/
    #foldertree ul.child-tree>li[aria-level="1"]:before {
        position: absolute;
        top: 0px;
        height: 1px;
        bottom: auto;
        content: '';
        background: #eeeeee;
        width: 2100%;
        right: -1000%;
        z-index: 0;
    }

    #foldertree>ul {
        background: none;
    }

    .materials-list.show .materials-grid-itmes {
        display: grid;
    }
}

/*Marketing Materials end*/

.dtc-order-detail-left {
    flex: 1;
}

.dtc-order-products,
.dtc-order-detail-total {
    border: 1px solid #E1E1E4;
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    border-radius: 8px;
}

.dtc-order-detail-right {
    flex: none;
}

.dtc-order-detail-total {
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
    padding: 18px 15px;
}

.dtc-order-detail-total li span:last-child {
    color: #1E253D;
}

.dtc-order-detail-total .header {
    color: #1E253D;
    border-bottom: 1px solid #E1E1E4;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.dtc-order-detail-total .header .header__left+span {
    display: flex;
    align-items: center;
}

.dtc-order-detail-total-info .shipping-info {
    flex-direction: column;
    align-items: flex-start;
}

.dtc-order-detail-total .num {
    font-weight: 600;
}

.dtc-order-products {
    padding: 15px;
}

.dtc-order-products table>thead>tr>th {
    font-weight: 400;
    color: #86868B;
    border-bottom: 1px solid #E1E1E4 !important;
    font-size: 14px;
    line-height: 22px;
    padding: 0 5px 18px;
    text-wrap: nowrap;
}

.dtc-order-products .num {
    color: #000;
}

.dtc-order-products table>tbody>tr {
    border-bottom: 1px solid #E1E1E4;
}

.dtc-order-products table>tbody>tr:last-child {
    border: none;
}

.dtc-order-products table>tbody>tr>td {
    padding: 15px 5px;
    vertical-align: middle;
    font-size: 12px;
    line-height: 18px;
}

.dtc-order-products .dtc_order-image img {
    max-width: 60px;
}

.dtc-order-detail-total-info {
    gap: 15px;
}

.dtc-order-detail-total-info>div>span:last-child {
    color: #444446;
}

.dtc-order-detail-total-pick-up {
    border-top: 1px solid #E1E1E4;
    padding-top: 15px;
}

.dtc-order-detail .notify-customer {
    margin-top: 24px;
}

.dtc-order-detail .notify-customer button {
    width: 100%;
    height: 44px;
    border-radius: 60px;
}

@media screen and (min-width: 768px) {
    .dtc-order-detail-content {
        flex-direction: row;
        gap: 24px;
    }

    .dtc-order-detail-right {
        width: 370px;
    }

    .custom-datepicker__btn {
        width: 210px;
    }

    .dtc-order-products {
        padding: 16px 30px;
    }

    .dtc-order-products .dtc_order-image img {
        max-width: 86px;
    }

    .dtc-order-products table>thead>tr>th {
        padding: 0 10px 18px;
    }

    .dtc-order-products table>tbody>tr>td {
        padding: 25px 10px;
        font-size: 16px;
        line-height: 24px;
    }

    .dtc-order-products,
    .dtc-order-detail-total {
        font-size: 14px;
        line-height: 22px;
    }
}

/* end dtc order detail */

/* segwayo2o_message */
.account .segwayo2o_message {
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    padding: 0 30px;
    margin: 24px 0 14px 0;
}

.account .segwayo2o_message .item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.account .segwayo2o_message .item:not(:last-child) {
    border-bottom: 0.5px solid #E1E1E4;
}

.account .segwayo2o_message .item .right .title a {
    font-weight: 600;
    color: #444446;
}

.account .segwayo2o_message .item .right .content {

    color: #86868B;
}

.account .segwayo2o_message .item .right {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

.account .segwayo2o_message .item .right .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.account .segwayo2o_message .item .right .time {
    color: #BBBBBD;
}

.account .segwayo2o_message .item .right .remove-btn {
    cursor: pointer;
}

.account .segwayo2o_message .item .icon {
    position: relative;
    line-height: 0;
}

.account .segwayo2o_message .item .icon.read .hint {
    display: none;
}

.account .segwayo2o_message .item .icon.unread .hint {
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
}

@media screen and (max-width: 768px) {
    .account .segwayo2o_message {
        padding: 0 20px;
    }

    .account .segwayo2o_message .item .right .title {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .account .segwayo2o_message .item .right .content {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 210px;
    }
}

/* end segwayo2o_message */
/* ride detail */
.ride-detail .ride-detail-content .header-area {
    padding: 16px 0;
}

.ride-detail .ride-detail-content .header-area .num {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.ride-detail .ride-detail-content .header-area .status {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.ride-detail .ride-detail-content table {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    width: 100%;
    border-collapse: collapse;
}

.ride-detail .ride-detail-content table.table th {
    font-weight: 400;
    color: #86868B;
    padding: 17px 8px;
    border-top: 0.5px solid #E1E1E4 !important;
    border-bottom: 0.5px solid #E1E1E4 !important;
}

.ride-detail .ride-detail-content table.table th:first-child,
.ride-detail .ride-detail-content table td:first-child {
    padding-left: 0;
}

.ride-detail .ride-detail-content table.table th:last-child,
.ride-detail .ride-detail-content table td:last-child {
    padding-right: 0;
}

.ride-detail .ride-detail-content table td {
    color: #444446;
    padding: 25px 8px;
}

.ride-detail .ride-detail-tips {
    font-size: 14px;
    line-height: 22px;
}

.ride-detail .ride-detail-tips .title {
    font-weight: 600;
    padding: 16px 0;
}

.ride-detail .ride-detail-tips .content {
    color: #86868B;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .ride-detail .ride-detail-content .header-area {
        border-bottom: 0.5px solid #E1E1E4;
        margin-bottom: 15px;
    }

    .ride-detail .ride-detail-content table {
        margin-bottom: 15px;
    }

    .ride-detail .ride-detail-content table tbody {
        display: flex;
        justify-content: space-between;
        gap: 5px;
    }

    .ride-detail .ride-detail-content table tbody tr {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .ride-detail .ride-detail-content table tbody tr.content {
        align-items: flex-end;
    }

    .ride-detail .ride-detail-content table.table th {
        border: none !important;
        padding: 0;
    }

    .ride-detail .ride-detail-content table.table th:last-child {
        text-align: left;
    }

    .ride-detail .ride-detail-content table.table th::after {
        content: ':';
    }

    .ride-detail .ride-detail-content table.table td {
        padding: 0;
    }
}

/* end ride detail */

/* user management */
.user-management .add-user {
    margin-top: 14px;
    padding: 21px 0;
    border-bottom: 1px solid #E5E9F1;
    font-weight: 600;
}

.user-management .add-user>div {
    display: inline-flex;
}

.user-management .add-user span {
    margin-right: 12px;
    font-size: 16px;
}

.user-management .user-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.user-management .user-item {
    background-color: #F3F3F4;
    border-radius: 8px;
    padding: 20px 30px;
    font-size: 16px;
}

.user-management .user-item .username {
    color: #444446;
    font-weight: 600;
    line-height: 24px;
}

.user-management .user-item a {
    font-size: 14px;
    color: #F30000;
    text-decoration: underline;
    font-weight: 600;
}

.user-management .user-item :is(.email, .telephone) {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: rgba(30, 37, 61, 0.6);
}

.user-management .user-item .email {
    margin-right: 30px;
}

.user-detail .back {
    font-size: 16px;
    line-height: 24px;
    color: rgba(134, 134, 139, 1);
    text-decoration: underline;
}

.user-detail .user-info {
    padding: 40px 60px;
    margin-top: 20px;
    border: 1px solid #E1E1E4;
}

.user-detail .user-info .username {
    font-size: 28px;
    font-weight: 600;
    color: #1E253D;
    margin: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #E9EAEC;
}

.user-detail .user-info .item {
    padding: 20px 0;
    border-bottom: 1px solid #E9EAEC;
    font-size: 14px;
}

.user-detail .user-info .item .label {
    color: #1E253D;
    width: 110px;
}

.user-detail .user-info .item .value {
    color: #86868B;
}

.user-detail .user-info .item .password {
    color: #F30000;
    text-decoration: underline;
}

.user-detail .user-info .user-actions {
    margin-top: 24px;
}

.user-detail .user-info .user-actions button {
    margin-right: 16px;
}

.change-password label {
    display: inline-block;
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #444446;
}

.change-password input {
    height: 40px;
}

.user-edit .back {
    font-size: 16px;
    line-height: 24px;
    color: rgba(134, 134, 139, 1);
    text-decoration: underline;
}

.user-edit .user-form {
    margin-top: 30px;
    padding: 32px 30px;
    border-radius: 8px;
    border: 1px solid #E1E1E4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
}

.user-edit .user-form .item label {
    display: inline-block;
    margin-bottom: 4px;
}

.user-edit .user-form .item .red {
    color: #F30000;
}

.user-edit .save {
    margin-top: 16px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .user-management .add-user {
        margin-top: 10px;
        padding: 13px 0;
        border-bottom: 1px solid #E5E9F1;
    }

    .user-management .user-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px;
        margin-top: 12px;
    }

    .user-management .user-item {
        padding: 20px;
    }

    .user-management .user-item .email {
        margin-top: 10px;
    }

    .user-management .user-item .telephone {
        margin-top: 3px;
    }

    .user-edit .user-form {
        margin-top: 20px;
        padding: 20px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }

    .user-edit .custom-btn-primary {
        height: 44px;
        width: 100%;
        font-size: 13px;
        margin-top: 20px;
    }

    .user-detail .user-info {
        padding: 0;
        margin-top: 0;
        border: none;
    }

    .user-detail .user-info .username {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .user-detail .user-info .item:nth-last-child(1) {
        padding-bottom: 0;
        border-bottom: none;
    }

    .user-detail .mb-user-info {
        padding: 20px;
        margin-top: 20px;
        border-radius: 8px;
        border: 1px solid #E1E1E4;
    }

    .user-detail .mb-user-info .item .label {
        width: 100px;
    }

    .user-detail .user-info .user-actions {
        margin-top: 35px;
        display: flex;
        justify-content: space-between;
        gap: 11px;
    }

    .user-detail .user-info .user-actions button {
        margin-right: 0;
        flex: 1;
    }
}

/* end user management */

/* store management */
.store-management .store-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.store-management .store-item {
    background-color: #F3F3F4;
    border-radius: 8px;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #86868B;
}

.store-management .store-item .top {
    border-bottom: 0.5px solid #E1E1E4;
}

.store-management .store-item .top .storename {
    font-size: 16px;
    font-weight: 600;
    color: #444446;
}

.store-management .store-item .top .address {
    margin: 10px 0;
}

.store-management .store-item .bottom {
    padding-top: 15px;
}

.store-management .store-item .bottom a {
    color: #F30000;
    text-decoration: underline;
    font-weight: 600;
}

.store-management-detail {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #86868B;
}

.store-management-detail .wrap-panel {
    padding: 15px 0;
}

.store-management-detail .bt-border:not(:last-child) {
    border-bottom: 0.5px solid #E9EAEC;
}

.store-management-detail .wrap-panel p {
    font-weight: 400;
    line-height: 22px;
}

.store-management-detail .wrap-panel .store-admin,
.store-management-detail .wrap-panel .store-address {
    margin-bottom: 10px;
}

.store-management-detail .top {
    margin-bottom: 10px;
}

.store-management-detail .top .store-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #000000;
}

.store-management-detail .top .store-status .label,
.store-management-detail .wrap-panel .title {
    color: #444446;
}

.store-management-detail .wrap-panel .admin_users {
    display: flex;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 30px;
}

#verify-address-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #444446;
}

#verify-address-content h2 {
    font-size: 18px;
    font-weight: 520;
    text-align: center;
    color: #000;
}

#verify-address-content .address-instructions {
    display: block;
    color: #86868B;
    margin-bottom: 12px;
}

#verify-address-content .select-address-item {
    border-top: 1px solid #E1E1E4;
    padding: 20px 0;
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

#verify-address-content .select-address-item .address {
    color: #86868B;
}

@media screen and (max-width: 767px) {
    .store-management .store-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px;
        margin: 12px 0;
    }

    .store-management .store-list .store-item {
        padding: 20px;
    }

    .store-management .store-item .top .address {
        margin: 10px 0 15px;
    }

    .store-management-detail .wrap-panel {
        padding: 20px 0;
    }

    .store-management-detail .wrap-panel .panel-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .store-management-detail .top {
        margin-bottom: 20px;
    }

    .store-management-detail .wrap-panel .main-title {
        font-size: 20px;
        color: #000;
        line-height: 30px;
    }

    .store-management-detail .wrap-panel .staff-title {
        padding-bottom: 15px;
        border-bottom: 0.5px solid #E9ECEC;
    }

    .store-management-detail .wrap-panel .staff-item {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 20px 0;
    }

    .store-management-detail .wrap-panel .staff-item:not(:last-child) {
        border-bottom: 0.5px solid #E9ECEC;
    }

    .store-management-detail .store-management-detail-content {
        margin: 15px 0;
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    .store-management-detail .detail-content-wrapper {
        margin: 0;
    }

    .store-management-detail .action-wrap .btn-area>button,
    .store-management-detail .action-wrap .btn-area>a {
        width: 50%;
    }

    .store-management-detail .action-wrap .btn-area>a button {
        width: 100%;
    }
}

/* end store management */

/* invoices credits */
@media screen and (max-width: 768px) {

    .invoices-credits .detail-content-wrapper {
        margin: 10px 0;
    }

    .invoices-credits .table-content-wrapper th {
        font-size: 14px;
        line-height: 22px;
        color: #86868B;
    }

    .invoices-credits .table-content-wrapper td {
        color: #444446;
    }

    .invoices-credits .table-content-wrapper .date {
        font-size: 12px;
        line-height: 18px;
        color: #86868B;
        max-width: 88px;
        white-space: nowrap;
    }

    .invoices-credits .table-content-wrapper td.status a::after {
        display: inline-block;
        content: "";
        width: 13px;
        height: 13px;
        background: url('../images/icons/arrow.png') no-repeat center;
        background-size: cover;
    }
}

/* end invoices credits */

/* monthly statements */
.monthly-statements .filters-options {
    margin-top: 24px;
}

.monthly-statements .custom-datepicker__btn {
    border: none;
    width: max-content;
    justify-content: flex-start;
    gap: 14px;
    font-weight: 600;
}

.monthly-statements .custom-datepicker__btn::after {
    width: 10px;
    height: 7px;
    background: url("../images/icons/arrow-down-2.png") no-repeat center;
    background-size: cover;
}

.monthly-statements .date-filter {
    padding: 24px 30px;
    border-radius: 8px;
    border: 1px solid #E1E1E4;
    margin: 24px 0;
}

.monthly-statements .date-filter .custom-datepicker {
    padding-bottom: 15px;
    border-bottom: 1px solid #E4E9F3;
}

.monthly-statements .date-filter .price {
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
    text-align: right;
}

.monthly-statements .date-filter .price p:first-child {
    margin: 20px 0;
}

.monthly-statements .date-filter .price .value {
    color: #000000;
}

@media screen and (max-width: 768px) {
    .monthly-statements .date-filter {
        padding: 15px;
        margin: 10px 0;
    }

    .monthly-statements .custom-datepicker__btn {
        height: 22px;
    }

    .monthly-statements .date-filter .price p {
        display: flex;
        justify-content: space-between;
        margin: 0;
    }

    .monthly-statements .date-filter .price p:first-child {
        margin: 15px 0 5px;
    }

    .monthly-statements .table-content-wrapper th {
        font-size: 14px;
        line-height: 22px;
        color: #86868B;
    }

    .monthly-statements .table-content-wrapper td {
        color: #444446;
    }

    .monthly-statements .table-content-wrapper .date {
        font-size: 12px;
        line-height: 18px;
        color: #86868B;
        max-width: 88px;
        white-space: nowrap;
    }
}

/* end monthly statements */

/* bom plp */

.bom-plp .header {
    padding-bottom: 40px;
    border-bottom: 1px solid #E1E1E4;
}

.bom-plp .page-title h1 {
    font-size: 64px;
    line-height: 77px;
    height: auto;
}

.bom-plp .product-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bom-plp .product-item {
    background-color: #F3F3F4 !important;
    padding: 32px !important;
    border-radius: 20px !important;
    width: 100% !important;
    border: none !important;
}

.bom-plp .product-item:hover {
    box-shadow: none !important;
}

.bom-plp .product-item-info {
    width: auto;
    margin: 0;
}

.bom-plp .product-item-info .product-image-container {
    width: 100% !important;
}

.bom-plp .product-item-info .product-image-wrapper {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.catalog-category-view .column.main .bom-plp .product-items .product-item .product-item-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-category-view .column.main .bom-plp .product-items .product-item .product-item-info .product.details.product-item-details {
    min-height: unset !important;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.product-item .price-box {
    margin: 0;
    display: flex;
    justify-content: center;
}

.product-item .price-box .price-label {
    display: none;
}

.product-item .price-box .old-price {
    color: #86868B;
    margin-left: 8px;
    display: none;
}

.bom-plp .product-item-info .product-item-name {
    font-size: 20px;
    line-height: 24px;
    margin: 12px 0;
}

.bom-plp .product-item-info .product-item-actions .footer-btn {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.bom-plp .product-item-info .product-item-actions .footer-btn button,
.bom-plp .product-item-info .product-item-actions .footer-btn a {
    width: 110px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

.bom-plp .product-item-info .product-item-actions .accessories {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

@media screen and (max-width: 768px) {
    .catalog-category-view .page-main {
        flex-grow: initial;
    }

    .bom-plp .header {
        padding-bottom: 0;
        border-bottom: none;
    }

    .bom-plp .page-title h1 {
        font-size: 18px;
        line-height: 24px;
        height: auto;
    }

    .bom-plp .product-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin: 10px 0;
    }

    .bom-plp .product-item {
        padding: 20px 15px !important;
    }

    .bom-plp .product-item-info .product-image-wrapper {
        height: 120px;
        padding-bottom: 0 !important;
    }

    .bom-plp .product-item-info .product-item-name {
        font-size: 14px;
        line-height: 22px;
        margin: 10px 0 15px;
    }

    .bom-plp .product-item-info .product-item-actions .footer-btn {
        flex-direction: column;
    }

    .bom-plp .product-item-info .product-item-actions .footer-btn button {
        width: 100% !important;
    }

    .bom-plp .product-item-info .product-item-actions .footer-btn a {
        width: 100% !important;
    }
}

/* end bom plp */

/* bom pdp */
.bom-pdp {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.bom-pdp :is(.product-info-main, .product.media) {
    flex: 1;
}

.bom-pdp .product.media {
    max-width: 600px;
}

.bom-pdp .product-info-main {
    max-width: 500px;
}

.bom-pdp .product-info-main .towishlist {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    color: rgba(30, 37, 61, 0.6);
}

.bom-pdp .fotorama__nav {
    display: flex;
    justify-content: space-around;
}

.bom-pdp .fotorama__nav .fotorama__thumb-border {
    width: 66px !important;
    height: 66px !important;
}

.bom-pdp .fotorama__nav .fotorama__nav__frame {
    width: 66px !important;
    height: 66px !important;
    margin-right: 8px;
}

.bom-pdp .page-title {
    font-size: 28px !important;
    line-height: 34px !important;
    font-weight: 600 !important;
    margin: 18px 0 !important;
    color: #1E253D !important;
}

.bom-pdp .qty-in-stock {
    font-size: 16px;
    line-height: 24px;
    color: rgba(30, 37, 61, 0.6);
    padding-bottom: 18px;
    border-bottom: 1px solid #E1E1E4;
}

.bom-pdp .price-final_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px !important;
    color: #1E253D;
    border-bottom: 1px solid #E1E1E4;
}

.bom-pdp .product-info-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #E1E1E4;
}

.bom-pdp .product-info-price .price-final_price {
    border: none;
}

.bom-pdp .price-wrapper .price {
    font-weight: 400 !important;
    font-size: 16px !important;
}

.bom-pdp :is(.stock-wrapper, .stock) {
    color: #86868B;
    font-weight: 400 !important;
    margin-right: 0 !important;
    text-transform: none !important;
    font-size: 16px !important;
}

.bom-pdp .pickup-message {
    font-size: 16px;
    line-height: 24px;
    color: #1E253D;
    margin: 20px 0;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .bom-dpd-back {
        display: inline-block;
        padding: 14px 0;
    }

    .bom-pdp {
        display: block;
    }

    .bom-pdp .product-info-main {
        margin-top: 50px;
    }

    .bom-pdp .fotorama__nav .fotorama__thumb-border {
        width: 45px !important;
        height: 45px !important;
    }

    .bom-pdp .fotorama__nav .fotorama__nav__frame {
        width: 45px !important;
        height: 45px !important;
        margin-right: 5px;
    }

    .bom-pdp .fotorama__nav--thumbs {
        height: auto !important;
    }

    .bom-pdp .page-title {
        font-size: 20px !important;
        line-height: 24px !important;
    }
}

/* end bom pdp */

/* pdp */
.normal-pdp {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.normal-pdp :is(.product-info-main, .product.media) {
    flex: 1;
}

.normal-pdp .product.media {
    max-width: 600px;
}

.normal-pdp .product-info-main {
    max-width: 500px;
}

.normal-pdp .product-info-main .towishlist {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    color: rgba(30, 37, 61, 0.6);
}

.normal-pdp .fotorama__nav {
    display: flex;
    justify-content: space-around;
}

.normal-pdp .fotorama__nav .fotorama__thumb-border {
    width: 66px !important;
    height: 66px !important;
}

.normal-pdp .fotorama__nav .fotorama__nav__frame {
    width: 66px !important;
    height: 66px !important;
    margin-right: 8px;
}

.normal-pdp .page-title {
    font-size: 28px !important;
    line-height: 34px !important;
    font-weight: 600 !important;
    margin: 18px 0 !important;
    color: #1E253D !important;
}

.normal-pdp .qty-in-stock {
    font-size: 16px;
    line-height: 24px;
    color: rgba(30, 37, 61, 0.6);
    padding-bottom: 18px;
    border-bottom: 1px solid #E1E1E4;
}

.normal-pdp .section-divider {
    display: none;
}

.normal-pdp .price-wrapper .price {
    font-weight: 400 !important;
    font-size: 16px !important;
}

.bom-pdp .pickup-message {
    font-size: 16px;
    line-height: 24px;
    color: #1E253D;
    margin: 20px 0;
    text-decoration: none;
}

.normal-pdp-detail {
    clear: both;
    padding-top: 1px;
}

.normal-pdp-detail .container {
    margin-top: 100px;
}

.normal-pdp-detail .container .title {
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 20px;
    margin: 0;
    border-bottom: 3px solid #BBBBBD;
}

.normal-pdp-detail .container .item {
    display: flex;
    padding: 20px 0;
    font-size: 20px;
    line-height: 24px;
    border-bottom: 1px solid #D1D1D4;
}


.normal-pdp-detail .container .item .label {
    flex: 1;
    font-weight: 600;
    color: #444446;
    margin: 0;
}

.normal-pdp-detail .container .item .value {
    flex: 1;
    color: #6E6E73;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .normal-dpd-back {
        width: max-content;
        padding: 14px 0;
    }

    .normal-pdp {
        display: block;
    }

    .normal-pdp .product-info-main {
        margin-top: 50px;
    }

    .normal-pdp .fotorama__nav .fotorama__thumb-border {
        width: 45px !important;
        height: 45px !important;
    }

    .normal-pdp .fotorama__nav .fotorama__nav__frame {
        width: 45px !important;
        height: 45px !important;
        margin-right: 5px;
    }

    .normal-pdp .fotorama__nav--thumbs {
        height: auto !important;
    }

    .normal-pdp .page-title {
        font-size: 20px !important;
        line-height: 24px !important;
    }

    .normal-pdp-detail .container {
        margin-top: 46px;
    }

    .normal-pdp-detail .container .title {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 16px;
    }

    .normal-pdp-detail .container .item {
        padding: 16px 0;
        font-size: 14px;
        line-height: 21px;
    }
}

/* end pdp */

/* bom list */
.product.bom_list {
    clear: both;
    margin-bottom: 30px;
}

.bom-list__header {
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #BBBBBD;
    margin-bottom: 20px;
}

.bom-list__header h2 {
    font-size: 28px;
    line-height: 1;
    color: #000000;
    margin: 0;
    font-weight: bold;
}

.bom-list__header .select {
    width: 210px;
    height: 40px;
    border: 1px solid #BBBBBD;
    border-radius: 2px;
    box-sizing: border-box;
}

.bom-list__content {
    gap: 60px;
}

.bom-list__media {
    width: 690px;
    flex: none;
}

.bom-list__media img {
    width: 100%;
}

.bom-list__info {
    width: 690px;
    flex: none;
}

.bom-list__info table td {
    padding: 16px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 22px;
    color: #444446;
}

.bom-list__info table tr {
    border-bottom: 1px solid #E1E1E4;
}

.bom-list__info table thead td {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.bom-list__info table thead td:nth-child(1) {
    width: 100px;
}

.bom-list__info table thead td:nth-child(2) {
    width: 300px;
}

.bom-list__info table thead td:nth-child(3) {
    width: 100px;
}

.bom-list__info table thead td:last-child,
.bom-list__info table tbody td:last-child {
    text-align: right;
}

.bom-list__info .form .actions {
    margin-top: 32px;
    text-align: right;
}

.bom-list__info .actions>button {
    width: 190px;
    height: 44px;
    border-radius: 60px;
}

.bom-list__info table td .out-stock {
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    color: #86868B;
    padding: 3px 8px;
    background-color: #E1E1E4;
    border-radius: 3px;
    margin-top: 4px;
}

.bom-list__info .stepper-container {
    margin-left: auto;
}

.bom-list__info .name {
    font-size: 12px;
    line-height: 18px;
    color: #BBBBBD;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .bom-list__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 9px;
        border-bottom: none;
        margin-bottom: 20px;
    }

    .bom-list__header h2 {
        font-size: 18px;
        line-height: 22px;
    }

    .bom-list__header .select {
        width: 100%;
    }

    .bom-list__content {
        flex-direction: column;
        gap: 15px;
    }

    .bom-list__media {
        font-size: 0;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
    }

    .bom-list__info {
        width: 100%;
    }

    .bom-list__info table td {
        padding: 12px;
        font-size: 12px;
    }

    .bom-list__info table td .number {
        font-size: 14px;
        color: #1E253D;
    }

    .bom-list__info table td .stepper-container {
        width: 60px;
        height: 33px;
    }

    .bom-list__info table td .stepper-container input[type="text"] {
        height: 33px;
    }

    .bom-list__info table td .stepper-container button {
        display: none;
    }

    .bom-list__info table thead td {
        font-size: 14px;
        line-height: 22px;
        padding: 12px;
    }

    .bom-list__info table thead td:nth-child(1) {
        width: 40px;
    }

    .bom-list__info table thead td:nth-child(2) {
        width: 120px;
    }

    .bom-list__info table thead td:nth-child(3) {
        width: 40px;
    }

    .bom-list__info .actions>button {
        width: 100%;
    }

}

/* end bom list */

/* shopping cart */
.checkout-cart-index .page-wrapper,
.checkout-index-index .page-wrapper {
    margin-top: 120px;
}

.checkout-cart-index .page-title span {
    font-size: 24px !important;
    line-height: 34px;
    margin: 31px 0 24px !important;
    text-transform: capitalize;
}

.checkout-cart-index .cart-container {
    display: flex;
    justify-content: space-between;
}

.checkout-cart-index .form-cart {
    width: 1046px !important;
}

.checkout-cart-index .cart-summary {
    width: 370px !important;
    order: 2;
    padding: 0;
}

.checkout-cart-index .table-wrapper {
    border: 1px solid #E1E1E4;
    padding: 8px 30px 24px;
    border-radius: 8px;
}

.checkout-cart-index .table-wrapper tbody:nth-last-of-type(2) {
    border: none !important;
}

.checkout-cart-index .product-item-photo {
    padding-right: 30px !important;
}

.checkout-cart-index .product-image-container {
    width: 86px !important;
}

.checkout-cart-index .product-item-details {
    font-size: 16px;
    line-height: 24px;
    color: #444446;
}

.checkout-cart-index .table-wrapper .item .col {
    padding: 25px 0 !important;
}

.checkout-cart-index .table-wrapper .control.qty .stepper-container {
    height: 32px;
}

.checkout-cart-index .table-wrapper .control.qty .stepper-container button {
    height: 32px;
}

.checkout-cart-index .table-wrapper .control.qty .stepper-container .decrement::before {
    width: 12px;
}

.checkout-cart-index .table-wrapper .control.qty .stepper-container .increment::before {
    width: 12px;
}

.checkout-cart-index .table-wrapper .control.qty .stepper-container .increment::after {
    height: 12px;
}


.checkout-cart-index .table-wrapper .control.qty .input-text.qty {
    margin: 0px;
    padding: 0 !important;
    border: none;
    height: 32px;
    width: 38px;
    box-shadow: none !important;
}

.checkout-cart-index :is(.price-wrapper, .subtotal-wrapper) {
    display: flex;
    font-size: 14px;
    line-height: 22px;
    color: #6E6E73;
}

.checkout-cart-index .price-wrapper .price {
    font-weight: 400;
    font-size: 14px !important;
    line-height: 22px !important;
    color: #6E6E73 !important;
}

.checkout-cart-index .subtotal-wrapper .price {
    font-weight: 400;
    font-size: 14px !important;
    line-height: 22px !important;
    color: #1E253D !important;
}

.checkout-cart-index .table-wrapper .item :is(.col.wishlist, .col.delete, .col.requisition-list) {
    text-align: right;
    font-size: 0;
}

.checkout-cart-index .cart-move-wishlist {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 32px;
    border: 1px solid #E1E1E4;
    border-radius: 4px;
    margin-right: 10px;
}

.checkout-cart-index .cart-move-wishlist img {
    width: 16px;
}

.checkout-cart-index .cart-remove-items {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.checkout-cart-index .actions :is(.update, .continue) {
    background-color: #F3F3F4;
    border: none;
    font-size: 13px !important;
    color: #000000;
    height: 40px;
    padding: 12px 28px !important;
}

.checkout-cart-index .actions .update::before {
    display: none !important;
}

.checkout-cart-index .actions .continue::before {
    display: none !important;
}

.checkout-cart-index .cart-summary-top {
    border: 1px solid #E1E1E4;
    padding: 0 15px;
    border-radius: 8px;
}

.checkout-cart-index .summary.title {
    display: inline-block;
    padding: 17px 0 !important;
    text-transform: capitalize !important;
    margin: 0 !important;
    font-size: 14px !important;
}

.checkout-cart-index .shipping .title {
    font-size: 14px !important;
    padding: 12px 0;
}

.checkout-cart-index .shipping.active .title {
    border-bottom: 1px solid #F3F3F4;
}

.checkout-cart-index .shipping .title::after {
    top: 0;
}

.checkout-cart-index .shipping .title strong {
    font-size: 14px !important;
    line-height: 22px !important;
    color: #000000;
}

.checkout-cart-index .shipping .shipping-method-title {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    font-weight: 600;
    margin: 20px 0 20px;
}

.checkout-cart-index .cart-summary-top .shipping .items.methods {
    display: flex;
}

.checkout-cart-index .cart-summary-top .shipping .items.methods .item-options {
    display: flex;
}

.checkout-cart-index .cart-summary-top .shipping .items.methods .item-options .choice {
    margin: 0 24px 0 0 !important;
}

.checkout-cart-index .shipping #co-shipping-method-form .item-options .price {
    display: none;
}

.checkout-cart-index .estimate {
    margin: 0 !important;
}

.checkout-cart-index .estimate .field {
    margin-bottom: 12px !important;
}

.checkout-cart-index .estimate .field .label {
    font-size: 14px;
}

.checkout-cart-index .input-text {
    height: 40px;
}

.checkout-cart-index .estimate .note {
    font-size: 12px;
    line-height: 18px;
    margin: 8px 0 12px !important;
    color: #86868B;
}

.checkout-cart-index .cart-summary-top .rate {
    font-size: 14px;
}

.checkout-cart-index .cart-summary-top .rate .choice {
    margin-bottom: 20px !important;
}

.checkout-cart-index .cart-summary-top .rate .radio {
    display: none;
}

.checkout-cart-index .cart-summary-top .rate .label {
    padding-left: 27px;
    position: relative;
}

.checkout-cart-index .cart-summary-top .rate .label::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.checkout-cart-index .cart-summary-top .rate .radio:checked+.label::before {
    background-color: #f30000;
    border-color: #f30000;
}

.checkout-cart-index .cart-summary-top .rate .radio:checked+.label::after {
    content: '';
    position: absolute;
    display: inline-block;
    left: 6.5px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.checkout-cart-index .discount {
    padding: 0 15px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    margin-top: 16px;
}

.checkout-cart-index .discount .title {
    border: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    padding: 17px 0;
}

.checkout-cart-index .discount .title strong {
    font-size: 14px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
}

.checkout-cart-index .discount .title::after {
    top: 50%;
    transform: translateY(-50%);
}

.checkout-cart-index .discount .coupon {
    margin: 0 0 25px 0;
    padding-top: 14px;
    border-top: 1px solid #E1E1E4;
}

.checkout-cart-index .discount .coupon label span {
    font-weight: 500;
}

.checkout-cart-index .discount .actions-toolbar {
    display: flex;
    justify-content: flex-end;
}

.checkout-cart-index .discount .actions-toolbar .primary {
    border: none;
    background: #fff;
}

.checkout-cart-index .discount .actions-toolbar .cancel {
    background: #000;
    border: 1px solid transparent;
    border-radius: 22px;
    font-size: 13px;
    line-height: 16px;
    padding: 14px 25px !important;
    margin-top: 2px !important;
}

.checkout-cart-index .discount .actions-toolbar .apply {
    background: #F3F3F4;
    border-radius: 22px;
    font-size: 13px;
    line-height: 16px;
    padding: 14px 25px !important;
    color: #000;
    border: 1px solid transparent;
    margin-top: 2px !important;
}

.checkout-cart-index .cart-totals {
    border: none;
}

.checkout-cart-index .cart-totals .table-wrapper {
    padding: 15px;
}

.checkout-cart-index .cart-totals .table-wrapper .totals {
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
}

.checkout-cart-index .cart-totals .table-wrapper .totals .price {
    color: #000;
}

body.checkout-cart-index .table-wrapper .requisition-list .action.action-edit,
body.checkout-cart-index .table-wrapper .requisition-list .cart-remove-items {
    display: none;
}

body.checkout-cart-index .table-wrapper .requisition-list span {
    display: inline-block;
}

body.checkout-cart-index .table-wrapper .requisition-list .aw-rl__list-wrapper.default a.toggle.change {
    margin-top: 0;
}

body.checkout-cart-index .aw-rl__list-wrapper.default a.toggle.change {
    margin-top: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0 6px 8px;
    height: 32px;
    border: 1px solid #E1E1E4;
    border-radius: 4px;
    /* margin-right: 10px; */
    font-weight: 500;
}

body.checkout-cart-index .aw-rl__list-wrapper.default a.toggle.change:hover {
    border: 1px solid #E1E1E4;
}

body.checkout-cart-index .aw-rl__list-wrapper.default .toggle {
    color: #444446;
    padding: 0;
}

body.checkout-cart-index .aw-rl__list-wrapper.default .toggle:after {
    color: #BBBBBD;
}

body.checkout-cart-index .aw-rl__list-wrapper.default .toggle:hover:after {
    color: inherit;
}

.checkout-cart-index .aw-rl__list-wrapper.default .items {
    top: calc(100% + 6px);
    border-radius: 4px;
    padding: 20px 10px 16px;
    background-color: #fff;
    box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.1), 0px -2px 4.2px 0px rgba(0, 0, 0, 0.05);
    border: none;
    width: max-content;
    min-width: 100%;
}

.checkout-cart-index .cart.table-wrapper .items>li.item {
    border: none;
}

.checkout-cart-index .aw-rl__list-wrapper.default .items .addto-requisition-list {
    text-align: left;
    color: #000;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}

.checkout-cart-index .aw-rl__list-wrapper.default .items .addto-create-requisition-list {
    border-color: #E1E1E4;
    display: flex;
}

.checkout-cart-index .aw-rl__list-wrapper.default .items .addto-create-requisition-list:before {
    display: inline-block;
    margin-right: 3px;
    height: 16px;
    content: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7.83463L2 9.16797L6.66667 9.16797L7.33333 8.5013L6.66667 7.83464L2 7.83463Z' fill='black'/%3E%3Cpath d='M7.33463 14.5L8.66797 14.5L8.66797 9.83333L8.0013 9.16667L7.33464 9.83333L7.33463 14.5Z' fill='black'/%3E%3Cpath d='M14 7.83463L14 9.16797L9.33333 9.16797L8.66667 8.5013L9.33333 7.83464L14 7.83463Z' fill='black'/%3E%3Cpath d='M8.66536 2.5L7.33203 2.5L7.33203 7.16667L7.9987 7.83333L8.66536 7.16667L8.66536 2.5Z' fill='black'/%3E%3C/svg%3E");
}

@media screen and (max-width: 768px) {
    .checkout-cart-index .cart-container {
        flex-direction: column;
    }

    .checkout-cart-index .page-title span {
        font-size: 18px !important;
        line-height: 24px;
        font-weight: 600 !important;
    }

    .checkout-cart-index .form-cart {
        width: 100% !important;
    }

    .checkout-cart-index .cart-summary {
        width: 100% !important;
    }

    .checkout-cart-index .table-wrapper {
        border: 1px solid #E1E1E4;
        padding: 0 15px;
        border-radius: 8px;
        width: auto;
    }

    .checkout-cart-index .cart-move-wishlist {
        height: 28px;
    }

    .checkout-cart-index .table-wrapper .control.qty .stepper-container {
        height: 28px;
    }

    .checkout-cart-index .table-wrapper .control.qty .stepper-container button {
        height: 28px;
    }

    .checkout-cart-index .table-wrapper .control.qty .input-text.qty {
        height: 28px;
    }

    .checkout-cart-index .cart-items-mb {
        display: flex;
        border-bottom: 1px solid #E9ECEC;
        padding: 18px 0;
    }

    .checkout-cart-index .table-wrapper tbody:nth-last-of-type(1) .cart-items-mb {
        border: none;
    }

    .checkout-cart-index .mb-show-table td {
        padding: 0;
    }

    .checkout-cart-index .cart-items-mb .right {
        flex: 1
    }

    .checkout-cart-index .cart-items-mb .product-item-photo {
        position: initial;
        padding-right: 10px !important;
    }

    .checkout-cart-index .cart-items-mb .product-item-name a {
        color: #000 !important;
        line-height: 22px;
    }

    .checkout-cart-index .cart-items-mb .price {
        margin: 5px 0 10px;
    }

    .checkout-cart-index .cart-items-mb .price .price-wrapper {
        color: #86868B;
    }

    .checkout-cart-index .cart-items-mb .qty {
        display: flex;
        align-items: center;
    }

    .checkout-cart-index .cart-items-mb .total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }

    .checkout-cart-index .cart-items-mb .qty .input-text {
        width: 40px;
        height: 28px;
        text-align: center;
    }

    .checkout-cart-index :is(.price-wrapper, .subtotal-wrapper) {
        color: #000;
    }

    .checkout-cart-index .actions {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 8px;
    }

    .checkout-cart-index .actions :is(.update, .continue) {
        margin: 0 0 20px !important;
        padding: 12px 16px !important;
        height: auto;
    }

    .checkout-cart-index .checkout-methods-items span {
        font-size: 13px !important;
    }

    .checkout-cart-index .summary.title {
        font-size: 16px !important;
        line-height: 24px !important;
        font-weight: 600 !important;
    }

    .checkout-cart-index .discount .title strong {
        font-size: 16px !important;
        line-height: 24px !important;
        font-weight: 600 !important;
    }

    .checkout-cart-index .discount .actions-toolbar .apply {
        padding: 8px 16px !important;
    }

    .checkout-cart-index .checkout-methods-items .action.checkout {
        border-radius: 100px !important;
    }

    .checkout-cart-index .shipping .shipping-method-title {

        margin: 12px 0 16px;
    }

    .checkout-cart-index .cart-items-mb .requisition-list {
        margin-bottom: 10px;
    }

    body.checkout-cart-index .aw-rl__list-wrapper.default a.toggle.change {
        height: auto;
    }
}

/* end shopping cart */

/* invoice detail */
.sales-order-view .order-links {
    display: none;
}

.sales-order-view .column.main {
    display: flex;
    flex-direction: column;
}

.sales-order-view .order-details-items {
    border-bottom: none;
    order: 2;
}

.sales-order-view .header-wrapper {
    margin: 0 0 24px;
}

.sales-order-view .page-title {
    margin: 0;
    width: unset;
}

.sales-order-view .page-title h1 {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin: 0;
    text-transform: initial;
    text-align: center;
}

.sales-order-view .header-wrapper .back {
    font-size: 16px;
    line-height: 24px;
    color: #6E6E73;
    text-decoration: underline;
}

.sales-order-view .table-wrapper.order-items {
    padding: 0 30px 27px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    margin-top: 20px;
}

.sales-order-view .table.table-order-items th {
    font-size: 14px;
    line-height: 22px;
    padding: 17px 0;
    color: #86868B;
    font-weight: 400;
}

.sales-order-view .table.table-order-items td {
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    padding: 12px 0;
    vertical-align: middle;
}

.sales-order-view .table-order-items .col.title {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
    padding: 20px 0;
}

.sales-order-view .table-order-items th.col {
    width: 180px;
    text-align: left !important;
}

.sales-order-view .table-order-items .col.name {
    width: 382px;
}

.sales-order-view .table-order-items .col.price {
    text-align: left !important;
}

.sales-order-view .table-order-items .col.qty {
    text-align: left !important;
}

.sales-order-view .table-order-items .col.subtotal {
    width: auto;
    text-align: right !important;
}

.sales-order-view .table-order-items td.name {
    display: flex;
    align-items: center;
}

.sales-order-view .table-order-items td.price .price {
    color: #444446 !important;
    font-size: 14px !important;
    font-weight: 400;
}

.sales-order-view .table-order-items td.subtotal .price {
    color: #444446 !important;
    font-size: 14px !important;
    font-weight: 400;
}

.sales-order-view .table-order-items td.name .product-image {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-right: 30px;
}

.sales-order-view .table-order-items tfoot .mark {
    text-align: left !important;
    padding: 15px 0 0 !important;
}

.sales-order-view .table-order-items tfoot .amount {
    padding: 15px 0 0 !important;
}

.sales-order-view .block-order-details-view {
    padding: 0 30px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
}

.sales-order-view .block-order-details-view .top {
    padding: 24px 0;
    border-bottom: 1px solid #E1E1E4;
}

.sales-order-view .block-order-details-view .order-number {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
}

.sales-order-view .block-order-details-view .actions .button {
    width: 100px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    color: #000;
    margin-left: 20px;
    background-color: #F3F3F4;
    border-radius: 16px;
    font-weight: 600;
}

.sales-order-view .block-order-details-view .actions .order-status {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 0 18px;
}

.sales-order-view .block-order-details-view .block-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.sales-order-view .block-order-details-view .block-content .box {
    order: 8;
}

.sales-order-view .block-order-details-view .block-content .box-order-order-date {
    order: 1;
}

.sales-order-view .block-order-details-view .block-content .box-order-invoice-id {
    order: 2;
}

.sales-order-view .block-order-details-view .block-content .box-order-shipping-address {
    order: 3;
}

.sales-order-view .block-order-details-view .block-content .box-order-billing-address {
    order: 4;
}

.sales-order-view .block-order-details-view .block-content .box-order-shipping-date {
    order: 5;
}

.sales-order-view .block-order-details-view .block-content .box-order-shipping-method {
    order: 6;
}

.sales-order-view .block-order-details-view .block-content .box-order-billing-method {
    order: 7;
}

.sales-order-view .block-order-details-view .block-content::before,
.sales-order-view .block-order-details-view .block-content:after {
    display: none !important;
}

.sales-order-view .block-order-details-view .block-content .box {
    width: 100% !important;
    margin: 0 !important;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #E1E1E4;
}

.sales-order-view .block-order-details-view .block-content .box:nth-last-child(1) {
    border-bottom: none !important;
}

.sales-order-view .block-order-details-view .block-content .box .box-title {
    flex: none;
    width: 156px;
    margin: 0 !important;
}

.sales-order-view .block-order-details-view .block-content .box .box-title span {
    font-size: 14px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    color: #444446 !important;
}

.sales-order-view .block-order-details-view .block-content .box .box-title span::after {
    content: ':';
}

.sales-order-view .block-order-details-view .block-content .box .box-content {
    color: #86868B;
}

.sales-order-view .block-order-details-view .block-content .box .box-content a {
    color: #86868B;
}

.sales-order-view .table-wrapper.order-items.warranty-parts .title {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 1px solid #d1d1d1;
    margin-bottom: 17px;
}

.sales-order-view .table-wrapper.order-items.warranty-parts label {
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    font-weight: 400;
    margin-right: 40px;
}

@media screen and (max-width: 768px) {
    .sales-order-view .table-wrapper.order-items.warranty-parts label {
        margin-right: 5px;
    }

    .sales-order-view * {
        box-sizing: border-box;
    }

    .sales-order-view .page-title {
        margin: 0;
        width: 100%;
    }

    .sales-order-view .page-title h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .sales-order-view .header-wrapper .page-title {
        position: relative;
    }


    .sales-order-view .header-wrapper .action-back {
        font-size: 0;
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
    }

    .sales-order-view .header-wrapper .action-back::before {
        display: inline-block;
        content: "";
        width: 24px;
        height: 24px;
        background: url('../images/icons/arrow-black.png') no-repeat center;
        background-size: cover;
    }

    .sales-order-view .block-order-details-view {
        padding: 0 15px;
    }

    .sales-order-view .block-order-details-view .top {
        align-items: flex-start;
        padding: 17px 0;
    }

    .sales-order-view .block-order-details-view .actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .sales-order-view .block-order-details-view .order-number {
        font-size: 14px;
        line-height: 22px;
    }

    .sales-order-view .block-order-details-view .actions .button {
        margin-top: 10px;
        margin-left: 10px;
        order: 2;
    }

    .sales-order-view .block-order-details-view .actions .print {
        grid-column: 2/2;
    }

    .sales-order-view .block-order-details-view .actions .order-status {
        order: 1;
        grid-column: 1/3;
        text-align: right;
        margin-left: 0px;
    }

    .sales-order-view .block-order-details-view .block-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 15px 0;
    }

    .sales-order-view .block-order-details-view .block-content .box-content {
        margin: 5px 0;
    }

    .sales-order-view .block-order-details-view .block-content .box {
        padding: 0;
        justify-content: space-between;
        border-bottom: none;
        flex-direction: column;
        margin-bottom: 5px !important;
    }

    .sales-order-view .block-order-details-view .block-content .box .box-title {
        width: auto;
    }

    .sales-order-view .block-order-details-view .block-content .box .box-title span {
        color: #444446 !important;
        font-weight: 600 !important;
        margin-bottom: 5px;
    }

    .sales-order-view .block-order-details-view .block-content .box .box-title span::after {
        content: '';
    }

    .sales-order-view .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) {
        flex-direction: row;
    }

    .sales-order-view .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) .box-title span {
        color: #86868B !important;
        font-weight: 400 !important;
    }

    .sales-order-view .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) .box-title span::after {
        content: ':'
    }

    .sales-order-view .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) .box-content {
        color: #444446;
        margin: 0;
    }

    .sales-order-view .block-order-details-view .block-content :is(dl, dt) {
        margin-bottom: 0 !important;
    }

    .sales-order-view .table-wrapper.order-items {
        margin-top: 10px;
        padding: 0 15px 20px;
    }

    .sales-order-view .table-wrapper.order-items th.title {
        display: block !important;
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        padding: 15px 0;
        width: 100%;
    }

    .sales-order-view .table-wrapper.order-items .mb-show-table {
        border: none;
    }

    .sales-order-view .table-wrapper.order-items .mb-show-table td {
        padding: 0 !important;
        border: none;
    }

    .sales-order-view .order-detail-mb {
        display: flex;
        padding: 15px 0 0;
    }

    .sales-order-view .order-detail-mb .product-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-right: 10px;
    }

    .sales-order-view .order-detail-mb .right {
        flex: 1;
        padding-bottom: 10px;
        border-bottom: 1px solid #E1E1E4;
    }

    .sales-order-view .order-detail-mb .item {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 5px;
        color: #86868B;
    }

    .sales-order-view .order-detail-mb .item .price {
        font-size: 14px !important;
        line-height: 22px;
        font-weight: 400;
        color: #86868B !important;
    }

    .sales-order-view .order-detail-mb .item.name {
        color: #000;
    }

    .sales-order-view .table-order-items tfoot th:first-of-type {
        display: none;
    }

    .sales-order-view .table-order-items tfoot .subtotal {
        margin-top: 10px;
    }

    .sales-order-view .table-order-items tfoot .subtotal :is(td, th) {
        border-top: none !important;
    }

    .sales-order-view .table-order-items tfoot .mark {
        padding: 0 0 5px 70px !important;
    }

    .sales-order-view .table-order-items tfoot .amount {
        padding: 0 0 5px 0 !important;
    }
}

/* end invoice detail */

/* order detail */
.sales-order-invoice .order-links {
    display: none;
}

.sales-order-invoice .column.main {
    display: flex;
    flex-direction: column;
}

.sales-order-invoice .order-details-items {
    border-bottom: none;
    order: 2;
}

.sales-order-invoice .header-wrapper {
    margin: 0 0 24px;
}

.sales-order-invoice .page-title {
    margin: 0;
    width: unset;
}

.sales-order-invoice .page-title h1 {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin: 0;
    text-transform: initial;
    text-align: center;
}

.sales-order-invoice .header-wrapper .back {
    font-size: 16px;
    line-height: 24px;
    color: #6E6E73;
    text-decoration: underline;
}

.sales-order-invoice .table-wrapper.table-order-items {
    padding: 0 30px 27px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    margin-top: 20px;
}

.sales-order-invoice .table.table-order-items th {
    font-size: 14px;
    line-height: 22px;
    padding: 17px 0;
    color: #86868B;
    font-weight: 400;
}

.sales-order-invoice .table.table-order-items td {
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    padding: 12px 0;
    vertical-align: middle;
}

.sales-order-invoice .table-order-items .col.title {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
    padding: 20px 0;
}

.sales-order-invoice .table-order-items th.col {
    width: 180px;
}

.sales-order-invoice .table-order-items .col.name {
    width: 382px;
}

.sales-order-invoice .table-order-items .col.subtotal {
    width: auto;
}

.sales-order-invoice .table-order-items td.name {
    display: flex;
    align-items: center;
}

.sales-order-invoice .table-order-items td.price .price {
    color: #444446 !important;
    font-size: 14px !important;
    font-weight: 400;
}

.sales-order-invoice .table-order-items td.subtotal .price {
    color: #444446 !important;
    font-size: 14px !important;
    font-weight: 400;
}

.sales-order-invoice .table-order-items td.name .product-image {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-right: 30px;
}

.sales-order-invoice .table-order-items tfoot .mark {
    text-align: left !important;
    padding: 15px 0 0 !important;
}

.sales-order-invoice .table-order-items tfoot .amount {
    padding: 15px 0 0 !important;
}

.sales-order-invoice .block-order-details-view {
    padding: 0 30px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
}

.sales-order-invoice .block-order-details-view .top {
    padding: 24px 0;
    border-bottom: 1px solid #E1E1E4;
}

.sales-order-invoice .block-order-details-view .order-number {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
}

.sales-order-invoice .block-order-details-view .actions .button {
    width: 100px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    color: #000;
    margin-left: 20px;
    background-color: #F3F3F4;
    border-radius: 16px;
    font-weight: 600;
}

.sales-order-invoice .block-order-details-view .actions .order-status {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 0 18px;
}

.sales-order-invoice .block-order-details-view .block-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.sales-order-invoice .block-order-details-view .block-content::before {
    display: none !important;
}

.sales-order-invoice .block-order-details-view .block-content .box {
    width: 100% !important;
    margin: 0 !important;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #E1E1E4;
}

.sales-order-invoice .block-order-details-view .block-content :is(.box:nth-last-child(1), .box:nth-last-child(2)) {
    border-bottom: none !important;
}

.sales-order-invoice .block-order-details-view .block-content .box .box-title {
    flex: none;
    width: 156px;
    margin: 0 !important;
}

.sales-order-invoice .block-order-details-view .block-content .box .box-title span {
    font-size: 14px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    color: #444446 !important;
}

.sales-order-invoice .block-order-details-view .block-content .box .box-title span::after {
    content: ':';
}

.sales-order-invoice .block-order-details-view .block-content .box .box-content {
    color: #86868B;
}

.sales-order-invoice .block-order-details-view .block-content .box .box-content a {
    color: #86868B;
}

@media screen and (max-width: 768px) {

    .sales-order-invoice * {
        box-sizing: border-box;
    }

    .sales-order-invoice .page-title {
        margin: 0;
        width: 100%;
    }

    .sales-order-invoice .page-title h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .sales-order-invoice .header-wrapper .page-title {
        position: relative;
    }

    .sales-order-invoice .header-wrapper .action-back {
        font-size: 0;
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
    }

    .sales-order-invoice .header-wrapper .action-back::before {
        display: inline-block;
        content: "";
        width: 24px;
        height: 24px;
        background: url('../images/icons/arrow-black.png') no-repeat center;
        background-size: cover;
    }

    .sales-order-invoice .block-order-details-view {
        padding: 0 15px;
    }

    .sales-order-invoice .block-order-details-view .top {
        align-items: flex-start;
        padding: 17px 0;
    }

    .sales-order-invoice .block-order-details-view .actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .sales-order-invoice .block-order-details-view .order-number {
        font-size: 14px;
        line-height: 22px;
    }

    .sales-order-invoice .block-order-details-view .actions .button {
        margin-top: 10px;
        margin-left: 10px;
        order: 2;
    }

    .sales-order-invoice .block-order-details-view .actions .print {
        grid-column: 2/2;
    }

    .sales-order-invoice .block-order-details-view .actions .order-status {
        order: 1;
        grid-column: 1/3;
        text-align: right;
        margin-left: 0px;
    }

    .sales-order-invoice .block-order-details-view .block-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 15px 0;
    }

    .sales-order-invoice .block-order-details-view .block-content .box-content {
        margin: 5px 0;
    }

    .sales-order-invoice .block-order-details-view .block-content .box {
        padding: 0;
        justify-content: space-between;
        border-bottom: none;
        flex-direction: column;
        margin-bottom: 5px !important;
    }

    .sales-order-invoice .block-order-details-view .block-content .box .box-title span {
        width: auto;
    }

    .sales-order-invoice .block-order-details-view .block-content .box .box-title span {
        color: #444446 !important;
        font-weight: 600 !important;
        margin-bottom: 5px;
    }

    .sales-order-invoice .block-order-details-view .block-content .box .box-title span::after {
        content: '';
    }

    .sales-order-invoice .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) {
        flex-direction: row;
    }

    .sales-order-invoice .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) .box-title span {
        color: #86868B !important;
        font-weight: 400 !important;
    }

    .sales-order-invoice .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) .box-title span::after {
        content: ':'
    }

    .sales-order-invoice .block-order-details-view .block-content :is(.box.box-order-order-date, .box.box-order-invoice-id) .box-content {
        color: #444446;
        margin: 0;
    }

    .sales-order-invoice .block-order-details-view .block-content :is(dl, dt) {
        margin-bottom: 0 !important;
    }

    .sales-order-invoice .table-wrapper.table-order-items {
        margin-top: 10px;
        padding: 0 15px 20px;
    }

    .sales-order-invoice .table-wrapper.table-order-items th.title {
        display: block !important;
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        padding: 15px 0;
        width: 100%;
    }

    .sales-order-invoice .table-wrapper.table-order-items .mb-show-table {
        border: none;
    }

    .sales-order-invoice .table-wrapper.table-order-items .mb-show-table td {
        padding: 0 !important;
        border: none;
    }

    .sales-order-invoice .order-detail-mb {
        display: flex;
        padding: 15px 0 0;
    }

    .sales-order-invoice .order-detail-mb .product-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-right: 10px;
    }

    .sales-order-invoice .order-detail-mb .right {
        flex: 1;
        padding-bottom: 10px;
        border-bottom: 1px solid #E1E1E4;
    }

    .sales-order-invoice .order-detail-mb .item {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 5px;
        color: #86868B;
    }

    .sales-order-invoice .order-detail-mb .item .price {
        font-size: 14px !important;
        line-height: 22px;
        font-weight: 400;
        color: #86868B !important;
    }

    .sales-order-invoice .order-detail-mb .item.name {
        color: #000;
    }

    .sales-order-invoice .table-order-items tfoot th:first-of-type {
        display: none;
    }

    .sales-order-invoice .table-order-items tfoot .subtotal {
        margin-top: 10px;
    }

    .sales-order-invoice .table-order-items tfoot .subtotal :is(td, th) {
        border-top: none !important;
    }

    .sales-order-invoice .table-order-items tfoot .mark {
        padding: 0 0 5px 70px !important;
    }

    .sales-order-invoice .table-order-items tfoot .amount {
        padding: 0 0 5px 0 !important;
    }
}

/* end order detail */


/* store management edit */
.store-management-edit .detail-content-wrapper.edit-content {
    padding: 30px;
}

.store-management-edit form .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #444446;
}

/**.store-management-edit form .bottom-area .form-row:last-child {
    align-items: flex-start;
}*/

.store-management-edit form .form-row.address-row {
    align-items: flex-start;
}

.store-management-edit form .address-group input {
    margin-bottom: 10px;
}

.store-management-edit form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.store-management-edit form .form-group label {
    margin-bottom: 5px;
}

.store-management-edit form .form-group label.required::after {
    content: "*";
    color: #F30000;
}

.store-management-edit form .add-more {
    color: #F30000;
    cursor: pointer;
    text-decoration: underline;
}

.store-management-edit form .hours-title {
    font-weight: 600;
    color: #000;
}

.store-management-edit form .form-group.delete-btn {
    max-width: 36px;
}

.store-management-edit form .form-group.delete-btn svg {
    margin-top: 32px;
    cursor: pointer;
}

.store-management-edit div.mage-error[generated] {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
}

.store-management-edit input:read-only {
    opacity: 0.5;
}

.store-management-edit input:read-only:focus {
    box-shadow: 0 0 0 0 #fff;
}

.store-management-edit select.readonly-select {
    pointer-events: none;
    opacity: 0.5;
}

#service-error+.select2-container--default .select2-selection--multiple {
    border-color: #ed8380;
}

/* end store management edit */

/* commission list */
.commission-list a.pending-link {
    font-size: 13px;
    line-height: 20px;
    font-weight: 450;
    color: #000;
    border: 1px solid #000;
    padding: 10px 28px;
    border-radius: 100px;
    white-space: nowrap;
    text-decoration: none;
}

.commission-detail .detail-content-wrapper {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .commission-list.custom-panel .actions {
        display: block;
        width: 100%;
    }

    .commission-list a.pending-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #E1E1E4;
        border-radius: 6px;
        padding: 14px 20px;
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        color: #444446;
    }

    .store-management-edit form .form-row {
        flex-direction: column;
    }

    .store-management-edit form .form-group {
        width: 100%;
    }

    .store-management-edit form .top-area,
    .store-management-edit form .bottom-area {
        border: 1px solid #E1E1E4;
        border-radius: 8px;
        padding: 20px;
    }

    .store-management-edit form .top-area {
        margin-bottom: 10px;
    }

    .store-management-edit form .bottom-area .title {
        flex-direction: row;
        padding-bottom: 20px;
        border-bottom: 0.5px solid #E1E1E4;
    }

    .store-management-edit .detail-content-wrapper.edit-content {
        padding: 0;
        border: none;
        margin: 15px 0;
    }

    .store-management-edit .action-wrap .btn-area {
        width: 100%;
    }

    .store-management-edit .action-wrap .btn-area button {
        flex: 1;
    }
}

/* end commission list */

/* pending commissions list */

/* pending commissions list */

/* pending payment */
.pending-payment-list.custom-panel .header,
.block-dashboard-info.custom-panel .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.pending-payment-list.custom-panel .actions,
.block-dashboard-info.custom-panel .actions {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.pending-payment-list.custom-panel .actions .filters-options,
.block-dashboard-info.custom-panel .actions .filters-options {
    width: 100%;
}

/* end pending payment */

/* make payment */
.make-payment-panel .title-area {
    padding: 16px 0;
    border-bottom: 0.5px solid #E9EAEC;
}

.make-payment-panel .title-area .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.make-payment-panel .table-content-wrapper th,
.make-payment-panel .table-content-wrapper td {
    padding: 16px 0;
    text-align: left;
    vertical-align: middle;
}

.make-payment-panel .table-content-wrapper th.status,
.make-payment-panel .table-content-wrapper td.status {
    text-align: right;
}

.make-payment-panel .payment-method {
    padding: 16px 0;
}

.make-payment-panel .payment-method .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 15px;
    border-bottom: 0.5px solid #E1E1E4;
}

.make-payment-panel .payment-options {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F3F4;
    flex-wrap: wrap;
}

.make-payment-panel .wire-form {
    margin-top: 24px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #1E253D99;
}

.make-payment-panel .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.make-payment-panel .form-section {
    display: none;
}

.make-payment-panel input[name="payment"][value="ach"]:checked~.ach-form,
.make-payment-panel input[name="payment"][value="wire-transfer"]:checked~.wire-form {
    display: block;
}

.make-payment-panel .form-section label {
    font-size: 14px;
    color: #111111B2;
    display: block;
    margin-bottom: 5px;
}

.make-payment-panel .form-section label .required {
    color: #f30000;
}

.make-payment-panel .form-section input[type="text"] {
    padding: 10px;
}

.make-payment-panel .form-section input[type="text"],
.make-payment-panel .form-section select {
    width: 100%;
    font-size: 14px;
    color: #6E6E73;
    border: 1px solid #BBBBBD;
    border-radius: 5px;
}

.make-payment-panel .form-section .field {
    position: relative;
}

.authorization-title {
    border-color: #c9c9c9;
    color: #666;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin: 0;
    padding: 10px 0;
}

.authorization-block .authorization-text {
    font-size: 14px;
    line-height: 1.2;
}

.make-payment-panel .wire-form .tips {
    color: #000;
    font-size: 14px;
}

.make-payment-panel .total-count {
    display: flex;
    gap: 8px;
}

.account .total-count-price {
    display: flex;
    flex-direction: column;
}

.account .total-count-price .original-price {
    color: #86868B;
    text-decoration: line-through;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.account td .total-count-price .original-price {
    font-size: 12px;
    line-height: 18px;
}

.account .total-count-price .final-price {
    color: #333;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .make-payment-panel .form-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-gap: 20px;
    }

    .make-payment-panel .operate-area-mb>div {
        flex: 1;
        justify-content: space-between;
    }
}

/* make payment */

/* filter-modal */
.filter-modal.modal-popup .modal-header {
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.filter-modal.modal-popup .action-close {
    right: 10px;
    top: 16px;
}

.verify-address-modal.modal-popup .modal-header {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.verify-address-modal.modal-popup .action-close {
    right: 10px;
    top: 12px;
}

#filter-form .filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 0.5px solid #E9ECEC;
}

#filter-modal-button {
    box-sizing: border-box;
    margin-left: 12px;
    cursor: pointer;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    height: 40px;
    width: 100%;
    max-width: 360px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.82422 1.50195L7.49467 8.12449V13.0966L10.3299 14.4967V8.12449L16.0004 1.50195H1.82422Z' stroke='%23E1E1E4' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #444446;
}

.custom-panel .actions.filter-btn-area {
    display: flex;
    align-items: center;
}

.filter-btn-area #filter-modal-button {
    max-width: 210px;
}

@media screen and (max-width: 768px) {
    #filter-modal-button {
        margin-left: 0;
        padding: 14px 30px 14px 15px;
        height: 50px;
        max-width: 100%;
    }

    .filter-modal.modal-popup .action-close {
        top: 10px;
    }

    .verify-address-modal.modal-popup .action-close {
        top: 6px;
    }

    .verify-address-modal.modal-popup .modal-content {
        padding: 0 20px;
    }

    .verify-address-modal.modal-popup .modal-footer {
        padding: 20px;
    }

    .custom-panel .actions.filter-btn-area {
        width: 100%;
    }

    .filter-btn-area #filter-modal-button {
        max-width: 100%;
    }
}

/* filter-modal */

/* checkout page */
.checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: 0 !important;
}

.checkout-index-index .page-title-wrapper {
    width: unset;
    position: initial;
    height: unset;
    clip: unset;
    margin: 0;
}

.checkout-index-index .page-title-wrapper h1.page-title {
    margin: 10px 0;
    height: 44px;
    line-height: 44px;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

#checkout.checkout-container {
    margin: 0;
}

.opc-progress-bar-item._active>span:after {
    content: counter(i);
    font-family: inherit;
    line-height: unset;
}

.opc-progress-bar-item>span:before,
.opc-progress-bar-item>span:after {
    width: 20px;
    height: 20px;
    border: 1px solid #000000;
    font-size: 14px !important;
    box-sizing: border-box;
    margin-left: 0;
    top: 10px;
    left: 0;
    text-align: center;
}

.opc-progress-bar-item._complete>span:before,
.opc-progress-bar-item._active>span:after,
.opc-progress-bar-item._complete>span:after {
    background: #000000;
    color: #ffffff;
}

.checkout-container .opc-progress-bar-item._active::before,
.checkout-container .opc-progress-bar-item._complete::before,
.checkout-container .opc-progress-bar-item._active>span::before {
    background: #000000;
}

.opc-progress-bar-item:before {
    height: 2px;
}

.opc-progress-bar-item._active>span,
.opc-progress-bar-item>span {
    color: #86868B;
    font-size: 12px;
    line-height: 18px;
    padding-top: 32px;
    text-align: left;
    margin-left: -24px;
    font-weight: 500;
}

.opc-progress-bar-item:last-child>span {
    margin-left: -70px;
}

.opc-progress-bar {
    padding-left: 18px;
}

.checkout-shipping-address,
.checkout-step-shipping_method,
.shipping-information-po-number,
.opc-block-summary,
.checkout-payment-method,
.opc-block-shipping-information .ship-to,
.opc-block-shipping-information .ship-via,
.nauthorized-use-of-warranty-parts {
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    padding: 20px 15px;
}

.nauthorized-use-of-warranty-parts .role-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    cursor: pointer;
}

.nauthorized-use-of-warranty-parts .input-text {
    height: 40px;
    max-width: 320px;
}

.nauthorized-use-of-warranty-parts input[type="checkbox"] {
    display: none;
}

.nauthorized-use-of-warranty-parts label.asbox {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.nauthorized-use-of-warranty-parts label.asbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid #00000066;
    background-color: #fff;
}

.nauthorized-use-of-warranty-parts input[type="checkbox"]:checked+label::before {
    background-color: #f30000;
    border-color: #f30000;
}

.nauthorized-use-of-warranty-parts input[type="checkbox"]:checked+label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.opc-wrapper .opc li+li,
.shipping-information-po-number {
    margin-top: 18px;
}

.opc-wrapper .step-title,
#onepage-checkout-shipping-method-additional-load .store-container-inner .pickup-store-label.step-title,
.opc-block-summary .step-title,
.opc-block-shipping-information .shipping-information-title {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 1px solid #E1E1E4;
    font-weight: 600;
}

.shipping-address-plan {
    background: #F3F3F4;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    border-radius: 6px;
    margin-top: 10px;
}

.shipping-address-plan__title {
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E1E1E4;
}

.shipping-address-plan__title:first-child {
    color: #4A83F4;
}

.shipping-address-type-group {
    gap: 12px;
}

.shipping-address-type-group .checkbox-text {
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    font-weight: 400;
    white-space: nowrap;
}

.shipping-address-type-item {
    flex: 1;
}

.shipping-address-plan .arrow {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url('../images/icons/arrow.png') no-repeat center;
    background-size: cover;
    margin-left: 5px;
    flex: none;
    cursor: pointer;
}

.checkout-shipping-address .new-address-popup {
    margin-top: 12px;
    text-align: right;
}

.checkout-shipping-address .action-show-popup,
.checkout-shipping-address .action-show-popup:hover,
.checkout-shipping-address .action-show-popup:active,
.checkout-shipping-address .action-show-popup:focus {
    border: none;
    background: none;
    color: #F30000;
    padding: 0;
    text-decoration: underline;
    margin: 0;
    width: unset;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}

.opc-wrapper .action-show-popup>span:before {
    display: none;
}

.opc-wrapper .step-content {
    margin: 20px 0 0;
}

.opc-wrapper .step-content.checkout-step-shipping_method {
    border: 0px solid #E1E1E4;
    border-radius: 0px;
    padding: 0px 0px;
}

.opc-wrapper .step-content-item {
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    padding: 20px 15px;
}

.table-checkout-shipping-method {
    font-size: 14px;
    line-height: 22px;
    color: #444446;
}

.table-checkout-shipping-method .checkbox-label {
    position: relative;
    top: 2px;
}

.table-checkout-shipping-method tbody td {
    border: none;
    padding-bottom: 15px;
    padding-top: 15px;
}

#checkout-shipping-method-load {
    margin-top: 10px;
}

/* #onepage-checkout-shipping-method-additional-load {
    border-top: 1px solid #E1E1E4;
} */

#onepage-checkout-shipping-method-additional-load .store-container-inner .pickup-store-label.step-title {
    margin: 12px 0 8px;
    padding: 0;
    border: 0;
}

.shipping-information-po-number label {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    color: #444446;
    margin-bottom: 8px;
}

.shipping-information-po-number>div+div {
    margin-top: 24px;
}

.opc-block-summary {
    margin: 0;
    background: none;
}

.opc-block-summary__content {
    display: flex;
    flex-direction: column-reverse;
    color: #000000;
    font-size: 14px;
    line-height: 22px;
}

.opc-block-summary .items-in-cart>.title {
    display: none;
}

.opc-block-summary__content .minicart-items .product-item:not(:first-child) {
    border: none;
}

.opc-block-summary__content .minicart-items .details-qty .label:after {
    display: none;
}

.opc-block-summary__content .minicart-items .product-item-name {
    min-height: unset;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
}

.opc-block-summary .product-item .product-item-inner {
    margin: 0;
    display: flex;
}

.opc-block-summary .product-item .product-item-name-block {
    display: unset;
    flex: 1;
}

.opc-block-summary .product-image-container {
    border-radius: 5px;
    background: #F3F3F4;
}

.opc-block-summary .minicart-items .product-item {
    padding: 15px 0;
}

.opc-block-summary .product-item .price,
.opc-block-summary .minicart-items .product-item-details .details-qty {
    color: #86868B;
    font-size: 14px;
    line-height: 22px;
}

.opc-block-summary .product-item-details .price-including-tax,
.opc-block-summary .minicart-items .product-item-details .price-excluding-tax {
    margin: 0;
}

.opc-block-summary .minicart-items-wrapper {
    border-bottom: 1px solid #E1E1E4;
}

.opc-block-summary .minicart-items-wrapper {
    height: unset !important;
}

.opc-block-summary__content .table-totals {
    margin: 6px 0;
}

.opc-block-summary__content table>tbody>tr>th,
.opc-block-summary__content table>tbody>tr>th.mark {
    padding: 6px 10px;
    color: #86868B;
}

.opc-block-summary .table-totals .grand .mark,
.opc-block-summary .table-totals .grand .amount {
    padding-top: 6px;
}

.opc-block-summary .table-totals .grand .amount strong {
    font-weight: 600;
}

.opc-summary-wrapper__content {
    margin-bottom: 20px;
}

.opc-wrapper .opc li.checkout-payment-method,
.opc-wrapper .checkout-payment-method .step-content,
.opc-wrapper .checkout-payment-method .payment-methods {
    margin: 0;
}

.checkout-payment-method .payment-method+.payment-method .payment-method-title {
    border-color: #E5E9F1;
}

.checkout-payment-method .payment-method-title,
.checkout-payment-method .step-title {
    padding-left: 0;
    padding-right: 0;
}

.checkout-payment-method .payment-method-title {
    padding: 20px 0;
}

.opc-block-shipping-information {
    padding: 0;
}

.opc-block-shipping-information .shipping-information-title .action-edit {
    display: none;
}

.opc-block-shipping-information .shipping-information-content,
.opc-block-shipping-information .shipping-information-content a {
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
}

.opc-block-shipping-information .ship-to,
.opc-block-shipping-information .ship-via {
    margin: 20px 0;
}

.opc-progress-bar-item._complete>span:after {
    content: "";
    font-family: inherit;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 14px;
    margin-left: 0;
    background: none;
    line-height: unset;
    border-radius: unset;
    left: 7px;
}

.checkout-payment-method .checkout-billing-address .primary .action-update {
    margin-top: 20px;
}

.opc-wrapper .edit-address-link,
.opc-wrapper .edit-address-link:hover,
.opc-wrapper .edit-address-link:focus,
.opc-wrapper .edit-address-link:active {
    margin: 0;
    flex: none;
    width: 16px;
    height: 16px;
    background: url('../images/icons/icon-edit.png') no-repeat center;
    background-size: cover;
}

.checkout-form-address-modal.modal-popup .modal-inner-wrap {
    max-width: 90%;
}

.form-shipping-address .field.choice {
    display: flex;
    align-items: center;
    padding: 14px 0;
}

.form-shipping-address .field.choice label {
    padding: 0 !important;
    margin: 0;
}

.form-shipping-address .fieldset>.field>.label,
.form-shipping-address .fieldset>.field:not(.choice)>.label {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0 4px;
}

.form-shipping-address-modal .modal-footer {
    flex-direction: row-reverse;
    justify-content: flex-start !important;
}

.field.addresses .shipping-address-item {
    padding: 12px 0;
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
}

.field.addresses .shipping-address-item a {
    color: #86868B;
}

.field.addresses .shipping-address-item+.shipping-address-item {
    border-top: 1px solid #F3F3F4;
}

.field.addresses .shipping-address-item .shipping-address-item__name {
    color: #222223;
}

.field.addresses .shipping-address-item .shipping-address-item__content {
    margin-top: -4px;
}

.form-shipping-address {
    padding-top: 20px;
}

.checkout-payment-method .checkout-billing-address .primary {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.checkout-payment-method .checkout-billing-address .primary .action {
    margin-top: 0;
}

.checkout-payment-method .checkout-billing-address .actions-toolbar {
    margin-top: 20px;
}

#payment-method-braintree-ach form fieldset>.field:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

#braintree-ach-mandate {
    white-space: pre-line;
    margin-top: -3px;
}

#co-payment-form .fieldset>br,
#co-payment-form .fieldset>hr {
    display: none;
}

/* .opc-payment input[type="checkbox"], */
.admin__control-radio,
.admin__control-checkbox,
.opc-payment input[type="radio"] {
    position: absolute;
    opacity: 0;
    margin: 2px .4rem 0 0;
    top: 2px;
}

/* .opc-payment input[type="checkbox"] + label, */
.admin__control-radio+label,
.admin__control-checkbox+label,
.opc-payment input[type="radio"]+label {
    display: inline-block;
    position: relative;
    margin: 0;
    cursor: pointer;
    min-width: 1.8rem;
    min-height: 1.8rem;
    padding-left: 4rem;
    line-height: 20px;
    color: rgba(0, 0, 0, .9);
    font-weight: 400;
    /* transition: all .2s ease-in-out; */
}

/* .opc-payment input[type="checkbox"] + label:before, */
.admin__control-radio+label:before,
.admin__control-checkbox+label:before,
.opc-payment input[type="radio"]+label:before {
    content: "";
    position: absolute;
    display: block;
    margin: 0;
    /* transition: all .2s ease-in-out; */
    left: .1rem;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1px solid #00000066;
    /* border-radius: .2rem; */
    background: #fff;
}

/* .opc-payment input[type="checkbox"] + label:after, */
.admin__control-radio+label:after,
.admin__control-checkbox+label:after,
.opc-payment input[type="radio"]+label:after {
    content: "";
    position: absolute;
    display: block;
    margin: 0;
    transition: all .2s ease-in-out;
    left: 5px;
    top: 7px;
    width: 10px;
    height: 5px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(-50deg);
}

/* .opc-payment input[type="checkbox"]:checked + label:before, */
.admin__control-radio:checked+label:before,
.admin__control-checkbox:checked+label:before,
.opc-payment input[type="radio"]:checked+label:before {
    background: #f30000;
    border-color: #f30000;
}

/* .opc-payment input[type="checkbox"]:checked + label:after, */
.admin__control-radio:checked+label:after,
.admin__control-checkbox:checked+label:after,
.opc-payment input[type="radio"]:checked+label:after {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

.admin__control-radio+label:before,
.opc-payment input[type="radio"]+label:before {
    border-radius: 50%;
}

@media (min-width: 768px) {
    .custom-modal-popup.select-address-popup .modal-inner-wrap {
        max-width: 400px;
    }

    .checkout-index-index .page-title-wrapper h1.page-title {
        text-align: left;
        margin: 20px 0;
        font-size: 24px;
        line-height: 34px;
    }

    .opc-progress-bar {
        width: 66.66666667%;
        padding-right: 30px;
    }

    .opc-progress-bar-item {
        width: 50% !important;
    }

    .opc-sidebar {
        margin: -140px 0 20px !important;
    }

    .opc-wrapper .step-title,
    #onepage-checkout-shipping-method-additional-load .store-container-inner .pickup-store-label.step-title,
    .opc-block-summary .step-title,
    .opc-block-shipping-information .shipping-information-title,
    .shipping-address-type-group .checkbox-text {
        font-size: 16px;
    }

    .shipping-address-type-item {
        flex: none;
    }

    .shipping-address-type-group {
        justify-content: flex-start;
        gap: 24px;
    }

    .checkout-index-index .table-checkout-shipping-method td.col-price,
    .checkout-index-index .table-checkout-shipping-method td.col-carrier {
        display: table-cell !important;
    }

    .pc-show.shipping-next-btn {
        margin-top: 28px;
    }

    .pc-show.shipping-next-btn .button.primary {
        width: 180px;
    }

    .shipping-information-po-number__content {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 24px;
    }

    .opc-progress-bar-item._active>span,
    .opc-progress-bar-item>span {
        font-size: 14px;
    }

    .opc-progress-bar-item._active>span,
    .opc-progress-bar-item>span {
        padding-top: 42px;
    }

    .checkout-index-index .modal-popup .form-shipping-address {
        max-width: unset !important;
    }

    .checkout-index-index .modal-popup .form-shipping-address>.address {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
    }

    .checkout-form-address-modal.modal-popup .modal-inner-wrap {
        max-width: 774px;
    }

    .mb-show.shipping-next-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .opc-wrapper .edit-address-link {
        position: unset;
        right: unset;
        top: unset;
    }

    .opc-wrapper .edit-address-link:before,
    .opc-wrapper .edit-address-link:hover:before {
        display: none;
    }
}

.shipping-address-type-group .shipping-address-type-item:nth-child(2) {
    display: none;
}

/* end checkout page */

/* split product on checkout page */
#checkout .shipping-next-btn .action.continue.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.split-products-container.mage-errors {
    border: 1px solid #e02b27;
}

#ship_data-error {
    color: #e02b27;
    font-size: 1.2rem;
    margin-top: 7px;
}

#split-products-by-shipping-method-load.hide {
    display: none;
}

#split-products-by-shipping-method-load .action-toolbar {
    text-align: right;
    margin-top: 15px;
}

#split-products-by-shipping-method-load .action-toolbar button {
    background: #fff;
    color: #000;
    padding: 10px 30px !important;
}

.split-products-container {
    padding-top: 20px;
}

.split-products-container.active {
    opacity: 0.6;
    pointer-events: none;
}

.split-products-container .ship-date {
    width: 300px;
    position: relative;
    max-width: 100%;
}

.split-products-container .ship-date input {
    padding-right: 30px;
}

.split-products-container .ship-date .ui-datepicker-trigger {
    position: absolute;
    right: 0px;
    font-size: 0px;
}

.split-products-container .ship-date .ui-datepicker-trigger:before {
    line-height: 32px;
}

.split-products-container .action.add {
    color: #f30000;
    text-decoration: underline;
    float: right;
    cursor: pointer;
}

.split-title {
    margin-bottom: 10px;
}

.split-products-items {
    border-bottom: 2px solid #ffffff;
    margin: 0 -20px 15px -20px;
    padding: 0 20px;
}

/*.split-products-items tbody{
    border-bottom: 2px solid #ffffff;
    position: relative;
}
.split-products-items tbody:last-child{
    border-bottom: 0px solid #ffffff;
}
.split-products-items tbody:before{
    content: '';
    border-bottom: 2px solid #fff;
    width: 20px;
    position: absolute;
    left: -20px;
    bottom: -3px;
}
.split-products-items tbody:after{
    content: '';
    border-bottom: 2px solid #fff;
    width: 20px;
    position: absolute;
    right: -20px;
    bottom: -3px;
}
.split-products-items tbody:last-child:before,.split-products-items tbody:last-child:after{
    display: none;
}*/
.split-products-items:last-child {
    border-bottom: 0px solid #E1E1E4;
    margin-bottom: 0px;
}

.split-products-items .shippdate-table th {
    padding: 20px 10px 0px 0px;
    font-weight: normal;
    border-bottom: none !important;
}

.split-products-items .shippdate-table th.date {
    padding-right: 0px;
    padding-left: 0px;
}

.split-products-items .shippdate-table td {
    padding: 15px 10px 15px 0;
}

.split-products-items .shippdate-table td.action.remove {
    padding-left: 0px;
    cursor: pointer;
}

.split-products-items .shippdate-table td.action.remove span:before {
    content: '\e604';
    font-size: 28px;
    font-family: 'icons-blank-theme';
    color: #f30000;
}

.split-products-items .shippdate-table td input {
    height: 40px;
    border-radius: 2px;
}

.split-products-items .shippdate-table td.ship-date {
    position: relative;
}

.ship-date .hide {
    display: none;
}

.split-products-items .shippdate-table td.ship-date .ui-datepicker-trigger {
    position: absolute;
    right: 10px;
    width: 38px;
    height: 38px;
    overflow: hidden;
}

.split-products-items .shippdate-table td.ship-date .ui-datepicker-trigger:before {
    font-size: 30px;
    line-height: 38px;
}

.split-products-items .shippdate-table td .product-name {
    min-height: 40px;
    background: #fff;
    border: 1px solid #c2c2c2;
    padding: 0 9px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 38px;
    border-radius: 2px;
}

.split-products-items .shippdate-table td.name,
.split-products-items .shippdate-table th.name {
    width: 50%;
}

.split-products-items .shippdate-table td .stepper-container {
    border: 1px solid #c2c2c2;
    border-radius: 2px;
    width: 130px;
    box-sizing: border-box;
}

.split-products-items .shippdate-table td.qty,
.split-products-items .shippdate-table th.qty {
    width: 130px;
}

#split-products-by-shipping-method-load {
    position: relative;
}

#split-products-by-shipping-method-load .msg-error {
    border-radius: 10px;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: center;
}

#split-products-by-shipping-method-load .msg-error div {
    margin: 0px;
    position: relative;
    padding: 8px 15px;
    display: inline-block;
}

#split-products-by-shipping-method-load .msg-error div span {
    z-index: 2;
    position: relative;
}

#split-products-by-shipping-method-load .msg-error div:before {
    background: #000;
    content: '';
    top: 0;
    bottom: 0px;
    position: absolute;
    opacity: 0.7;
    z-index: 1;
    left: 0;
    right: 0;
    border-radius: 10px;
}

@media (max-width: 820px) {

    .split-products-items .shippdate-table td.name,
    .split-products-items .shippdate-table th.name {
        width: 30%;
    }

    .split-products-items .shippdate-table td .stepper-container {
        border: 1px solid #c2c2c2;
        border-radius: 2px;
        width: 100px;
    }

    .split-products-items .shippdate-table td.qty,
    .split-products-items .shippdate-table th.qty {
        width: 100px;
    }
}

@media (max-width: 639px) {
    .split-products-container {
        padding: 15px 15px 0px 15px;
    }

    .split-products-items .shippdate-table td.name,
    .split-products-items .shippdate-table th.name {
        width: 100%;
    }

    .split-products-items .shippdate-table td .stepper-container {
        border: 1px solid #c2c2c2;
        border-radius: 2px;
        width: 100%;
    }

    .split-products-items .shippdate-table td.qty,
    .split-products-items .shippdate-table th.qty {
        width: 100%;
    }

    .split-products-items .shippdate-table td.action.remove {
        position: absolute;
        top: -10px;
        right: 14px;
        padding: 0px !important;
        height: 28px;
    }

    .split-products-items .shippdate-table td {
        padding: 0px 0px 15px 0px !important;
    }

    .split-products-items.table-wrapper .table:not(.cart):not(.totals):not(.table-comparison)>tbody>tr td[data-th]:before {
        font-weight: 600;
    }
}

.box-content .shipdata-item {
    margin-bottom: 15px;
}

.box-content .shipdata-item .date {
    color: #c3c3c3;
    padding-top: 4px;
    display: block;
}

.box-content .shipdata-detail-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.box-content .shipdata-detail-item p {
    line-height: 21px;
    margin-bottom: 0px;
}

.box-content .shipdata-detail-item .qty {
    text-align: right;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .box-content .shipdata-detail-item .qty {
        text-align: right;
        padding-right: 0px;
    }

    .box-content .shipdata-item {
        margin-bottom: 8px;
        border-bottom: 1px solid #E1E1E1;
        padding-bottom: 8px;
    }
}

/* end split product on checkout page */


/* my accont */
.account .page-main,
.cms-privacy-policy .page-main {
    padding-top: 0;
}

.aw_requisition_list-rlist-index .aw-rl__create-list-wrapper {
    top: 0;
}

@media (max-width: 767px) {
    .block-collapsible-nav {
        position: relative;
        left: unset;
        top: unset;
        z-index: unset;
        margin: 0;
        display: none;
    }

    .block-collapsible-nav .content {
        display: block;
    }

    .block-collapsible-nav .item {
        padding-left: 9px;
        padding-right: 6px;
        margin: 0;
    }

    .block-collapsible-nav .item a::after,
    .block-collapsible-nav .item strong::after {
        display: inline-block;
        content: "";
        width: 13px;
        height: 13px;
        background: url(../images/icons/arrow.png) no-repeat center;
        background-size: cover;
        margin-left: 5px;
    }

    .block-collapsible-nav .item a,
    .block-collapsible-nav .item strong {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .block-collapsible-nav .item.current a,
    .block-collapsible-nav .item.current>strong,
    .block-collapsible-nav .item a {
        border: none;
        font-weight: 500;
        color: #86868B;
    }

    .block-collapsible-nav .item a,
    .block-collapsible-nav .item>strong {
        color: #86868B;
        padding-left: 0;
        font-size: 16px;
        line-height: 24px;
        padding: 10px 0;
    }

    .block-collapsible-nav .content {
        background: none;
        border: none;
        padding: 0;
    }

    .block-collapsible-nav .item .delimiter {
        flex: 1;
        margin-left: 0;
    }

    .block-collapsible-nav .item:has(.delimiter)::after {
        display: none;
    }

    /*.customer-account-index .column.main {
        display: none;
    }*/

    .customer-account-index .page-main {
        padding: 0 15px;
    }

    .customer-account-index .block-collapsible-nav {
        display: block;
    }

    .dtc-order-detail-total .header {
        flex-direction: row;
    }

    body .page-wrapper {
        margin-top: 65px !important;
    }
}

/* end my account */

/* pdp page */
.product-add-form .out-of-stock-btn {
    height: 44px;
    font-size: 16px;
    width: 100%;
    margin-top: 25px;
}

/* end pdp page */

/* My Orders */
@media screen and (min-width: 768px) {
    .aw-ui-listing .custom-panel .header {
        position: absolute;
        top: -6px;
        left: 0;
    }

    .account .aw-ca-order-listing .admin__data-grid-outer-wrap .data-grid thead th:first-child,
    .aw-ui-listing .admin__data-grid-outer-wrap .data-grid tbody tr td:first-child {
        padding-left: 0;
    }

    .account .aw-ca-order-listing .admin__data-grid-outer-wrap .data-grid thead th:last-child,
    .aw-ui-listing .admin__data-grid-outer-wrap .data-grid tbody tr td:last-child {
        padding-right: 0;
    }

    .aw-ui-listing.aw-ca-order-listing .admin__data-grid-outer-wrap .admin__data-grid-wrap {
        border: 1px solid #E1E1E4;
        border-radius: 8px;
        padding: 0 30px;
        margin: 24px 0 32px;
    }

    .aw-ui-listing .admin__data-grid-action-columns-menu label.admin__field-label {
        padding-top: 0;
    }

    .aw-ui-listing .admin__data-grid-action-columns-menu .admin__action-dropdown-menu-footer {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
    }

    .aw-ui-listing .admin__data-grid-action-columns-menu .admin__action-dropdown-menu-footer .admin__action-dropdown-footer-main-actions {
        margin: 0;
    }

    th.data-grid-multicheck-cell {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap {
        display: inline-block;
        height: 1.8rem;
        position: relative;
        width: 3.5rem;
        z-index: 200;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap button.action-multicheck-toggle {
        display: block;
        border-radius: 0;
        margin-right: -2px;
        padding: 0;
        position: relative;
        transition: border-color 0.1s linear;
        width: 1.8rem;
        font-size: 0;
        float: left;
        background: #e3e3e3;
        border-color: #adadad;
        color: #514943;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap .action-multicheck-toggle:after {
        border-color: #000000 transparent transparent transparent;
        border-style: solid;
        border-width: 0.5rem 0.4rem 0 0.4rem;
        content: '';
        height: 0;
        margin-top: -0.2rem;
        position: absolute;
        right: 4px;
        top: 50%;
        transition: all .2s linear;
        width: 0;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap .action-multicheck-toggle._active:after {
        transform: rotate(180deg);
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap .action-menu {
        display: none;
        background-color: #ffffff;
        border: 1px solid #007bdb;
        border-radius: 1px;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        color: #41362f;
        font-weight: 400;
        right: 0;
        list-style: none;
        min-width: 0;
        position: absolute;
        top: 100%;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap .action-menu>li {
        border: none;
        margin: 0;
        cursor: pointer;
        padding: 0;
        transition: background-color 0.1s linear;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap .action-menu>li:hover {
        background-color: #e3e3e3;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap .action-menu span.action-menu-item {
        display: inline-block;
        width: 100%;
        padding: 1rem 0.6rem;
        border: none;
        white-space: nowrap;
    }

    th.data-grid-multicheck-cell .action-multicheck-wrap._active .action-menu {
        display: block;

    }

    td.data-grid-checkbox-cell {
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    .aw-ui-listing .custom-panel .header {
        margin-bottom: 10px;
    }

    .aw-ui-listing .admin__data-grid-action-columns-menu .admin__action-dropdown-menu-footer {
        text-align: center;
    }

    .aw-ui-listing .admin__data-grid-action-columns-menu .admin__action-dropdown-footer-secondary-actions {
        float: none;
        margin: 0 0 6px 0;
    }

    .aw-ui-listing .admin__data-grid-action-columns-menu .admin__action-dropdown-footer-main-actions {
        margin: 0;
        text-align: center;
    }

    .aw-ui-listing .admin__data-grid-filters-wrap._show {
        z-index: 1;
    }

    .aw-ui-listing .admin__data-grid-filters-wrap._show .admin__data-grid-filters-footer .admin__footer-main-actions {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .aw-ui-listing .admin__data-grid-wrap .data-grid .data-grid-cell-content::before {
        color: #444446;
        font-weight: 400;
    }

    .aw-ui-listing .admin__data-grid-filters-wrap._show .admin__data-grid-filters-footer .admin__footer-main-actions button {
        padding: 9px 36px;
    }

    .aw-ui-listing .admin__data-grid-wrap .data-grid tbody .data-row {
        border: 1px solid #ccc !important;
        border-radius: 10px;
        margin-bottom: 10px;
        padding: 16px;
    }

    .aw-ui-listing .admin__data-grid-wrap .data-grid tbody .data-row td {
        padding: 10px 0;
        max-width: unset;
    }

    .aw-ui-listing .admin__data-grid-wrap .data-grid .data-grid-cell-content {
        justify-content: space-between;
    }

    td.data-grid-checkbox-cell .admin__control-checkbox+label {
        display: inline-flex;
    }

    td.data-grid-checkbox-cell .admin__control-checkbox+label:before {
        float: left !important;
    }

    .aw-ca-order-listing .admin__data-grid-outer-wrap .data-grid tbody tr td.data-grid-actions-cell {
        text-align: right;
    }

    .aw-ui-listing .admin__data-grid-header-row {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
    }

    .aw-ui-listing .admin__data-grid-actions-wrap {
        display: inline-flex;
        flex: 1;
    }

    .aw-ui-listing .admin__data-grid-actions-wrap .admin__action-dropdown-wrap {
        width: 100%;
    }

    .aw-ui-listing .admin__data-grid-actions-wrap .admin__action-dropdown {
        min-width: 94px !important;
        width: 96%;
    }

    .aw-ui-listing .admin__data-grid-wrap .data-grid tbody .data-row:first-child {
        margin-top: 0;
    }
}

/* ================= Common ============== */
.account .aw-ca-order-listing .admin__data-grid-outer-wrap .data-grid td {
    min-width: auto !important;
}

.account .aw-ca-order-listing .admin__data-grid-outer-wrap .data-grid th {
    min-width: auto !important;
    white-space: nowrap;
    font-weight: 400;
    color: #86868B;
}

.aw-ui-listing {
    position: relative;
}

.aw-ui-listing .custom-panel {
    color: #444446;
}

.aw-ui-listing .admin__action-dropdown {
    color: #444446;
    letter-spacing: 0;
}

.aw-ui-listing .admin__data-grid-actions-wrap .admin__action-dropdown {
    border: 1px solid #E1E1E4;
    border-radius: 4px;
    padding: 8px 28px 8px 12px;
    min-width: 108px;
}

.aw-ui-listing .admin__action-dropdown-wrap._active .admin__action-dropdown::after {
    transform: rotate(180deg);
}

.aw-ui-listing .data-grid-filters-action-wrap .action-default {
    border: 1px solid #E1E1E4;
    border-radius: 4px;
    padding: 8px 50px;
    background: #fff !important;
    color: #444446 !important;
    font-weight: 400;
}

.aw-ui-listing .data-grid-filters-action-wrap .action-default:hover {
    background: #000 !important;
    color: #fff !important;
}

.aw-ui-listing .data-grid-filters-action-wrap .action-default._active {
    border: 1px solid #E1E1E4;
    font-weight: 400;
}

.aw-ui-listing input[type="text"] {
    min-height: 40px;
}

.aw-ui-listing button {
    padding: 12px 48px;
}

.aw-ui-listing .admin__footer-main-actions button.action-tertiary,
.aw-ui-listing .admin__action-dropdown-footer-main-actions button.action-tertiary {
    background: #F3F3F4;
    border-color: #F3F3F4;
    color: #000000;
}

.aw-ui-listing .admin__footer-main-actions button.action-tertiary:hover,
.aw-ui-listing .admin__action-dropdown-footer-main-actions button.action-tertiary:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
}

.aw-ui-listing .admin__data-grid-filters-wrap._show {
    background: #FBFBFB;
    padding: 20px 25px;
    border: 1px solid #E1E1E4;
    border-radius: 8px;
}

.aw-ui-listing .admin__data-grid-filters-wrap._show .admin__data-grid-filters-footer .admin__footer-main-actions {
    text-align: right;
}

.aw-ui-listing .admin__data-grid-filters-wrap._show .admin__data-grid-filters-footer .admin__footer-main-actions button.action-tertiary {
    margin-bottom: 0;
    margin-right: 10px;
}


.aw-ui-listing .admin__action-dropdown-wrap._active .admin__action-dropdown-menu {
    padding: 16px;
}

.aw-ui-listing .admin__action-dropdown-wrap._active .admin__data-grid-action-export-menu .admin__field-option {
    margin-bottom: 18px;
    padding: 6px 12px;
}

.aw-ui-listing .admin__action-dropdown-wrap._active .admin__data-grid-action-export-menu .action-tertiary {
    margin-bottom: 12px;
}

td.data-grid-actions-cell a {
    color: #F30000;
}

/* =========== checkbox =========== */
input.admin__control-checkbox,
input.admin__control-radio {
    display: none;
}

.admin__data-grid-wrap .admin__control-checkbox+label,
.admin__data-grid-wrap .admin__control-radio+label {
    padding-left: 0;
}

th.data-grid-multicheck-cell .admin__control-checkbox:not(:checked)._indeterminate+label:before,
th.data-grid-multicheck-cell .admin__control-checkbox:not(:checked):indeterminate+label:before {
    content: '-';
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

th.data-grid-multicheck-cell .admin__control-checkbox:not(:checked)._indeterminate+label::after {
    display: none;
}

th.data-grid-multicheck-cell .admin__control-checkbox+label:before {
    top: 0;
}

th.data-grid-multicheck-cell .admin__control-checkbox+label:after {
    top: 5px;
}

/* =========== checkbox =========== */

/* end My Orders */

div,
p,
table,
tr,
td,
th,
span,
p,
ul,
li,
ol {
    box-sizing: border-box;
}

.checkout-agreements-block .action-show {
    color: #F30000;
    text-decoration: underline;
}

.checkout-agreements-block .action-show:hover {
    color: #F30000;
}

.price-term-tips {
    padding-bottom: 18px;
    border-bottom: 1px solid #E1E1E4;
}

.pickup-message {
    line-height: 24px;
    padding-top: 18px;
}

.price-term-tips__title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #f30000;
}

.price-term-tips__content_yes {
    cursor: pointer;
    text-decoration: underline;
}

.price-term-tips__content_no {
    cursor: unset;
    text-decoration: none;
}

.price-term-tips__content {
    display: none;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-header {
    padding: 3.2rem 4rem 2rem 4rem;
    display: flex;
    justify-content: flex-end;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-header .action-close {
    position: static;
    padding: 0;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-header .action-close:before {
    color: #333;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-inner-wrap {
    width: 90%;
    max-width: 900px;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content {
    padding: 0 4rem;
    font-size: 1.8rem;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h1,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h2,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h3,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h4,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h5,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h6 {
    margin-top: 0;
    font-weight: bold;
    text-align: center;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h1 {
    margin-bottom: 5rem;
    font-size: 2.4rem;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h2 {
    font-size: 2rem;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-footer {
    padding: 3.2rem 4rem;
    display: flex;
    justify-content: center;
}

.modal-popup.custom-modal-popup.price-term-tips-popup .modal-footer button,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-footer .cart.table-wrapper .actions-toolbar>.action,
.modal-popup.custom-modal-popup.price-term-tips-popup .modal-footer .action-gift {
    max-width: 168px;
    text-transform: uppercase;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .modal-header {
    padding: 2.4rem 3rem 1.8rem 3rem;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .modal-header .action-close {
    padding: 0;
    top: 2rem;
    right: 2rem;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .modal-header .action-close:before {
    color: #333;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .header-title {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .modal-inner-wrap {
    max-width: 805px;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .modal-content {
    padding: 0 3.2rem 2.4rem 3.2rem;
}

.modal-popup.custom-modal-popup.commission-view__details-popup .modal-footer {
    display: none;
}

.product-info-price .price-box .price-label {
    font-size: 0;
    margin: 0 !important;
    line-height: 0;
}

.product-info-main .pickup-price .price-box .price-wrapper .price {
    font-weight: 600 !important;
    color: #1E253D;
}

.normal-pdp .product-info-main .special-price .price-wrapper .price {
    color: #1E253D;
    font-weight: 600 !important;
}

.normal-pdp .product-info-main .old-price .price-wrapper .price {
    font-size: 14px !important;
}

.normal-pdp .product-info-main .old-price {
    color: #86868B;
    display: none;
}

.normal-pdp .product-info-main .price-box .weee {
    margin-bottom: 0;
}

.normal-pdp .product-info-main .price-box {
    grid-gap: 8px;
    margin-top: 0;
}

.product-info-main .stock.available,
.product-info-main .stock.unavailable {
    margin: 0;
    color: #86868B;
}

.product-info-main .product-info-price .special-price {
    margin: 0;
}

.normal-pdp .product-info-price span:not(.old-price) .price-wrapper .price {
    font-weight: bold !important;
}

.product-item .price-box {
    flex-wrap: wrap;
}

.product-item .price-box .minimal-price-link {
    width: 100%;
    color: #000;
}

.product-item .price-box .minimal-price-link .price-container {
    display: flex;
    justify-content: center;
}

.product-item .price-box .minimal-price-link .price-label {
    display: block !important;
    margin-right: 5px;
    color: #000;
}

.payment-method-braintree .payment-method-content {

    padding: 0 0 16px 0;
}

.payment-method-braintree .braintree-block {
    background-color: #F3F3F4;
    padding: 20px 32px;
    margin-bottom: 16px;
}

.braintree-block .redmark {
    font-size: 14px;
    color: #F30000;
    margin: 5px 0;
    display: flex;
    align-items: center;
    line-height: 20px;
}

.redmark .fa.fa-exclamation-circle {
    background: #F30000;
    border-radius: 14px;
    border: 1px solid #F30000;
    margin-right: 5px;
    margin-top: 4px;
    float: left;
    width: 15px;
    height: 16px;
}

.redmark .fa.fa-exclamation-circle:before {
    content: "\f06a";
    color: #F3F3F4;
}

.braintree-block .redmark span {
    display: block;
    padding-left: 12px;
    position: relative;
}

.braintree-block .redmark span:before {
    content: "*";
    display: inline-block;
    font-size: 12px;
    position: absolute;
    left: 5px;
    top: -1px;
}

.payment-method-braintree .fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0 !important;
}

.payment-method-braintree .fieldset>.field:not(.choice) {
    width: calc(50% - 13px);
    margin-bottom: 12px;
}

.payment-method-braintree .fieldset>.field:not(.choice)>.label {
    font-weight: normal;
    border: 0;
    font-size: 14px;
    padding: 0 0 5px 0;
    color: #444446;
}

.payment-method-braintree .fieldset>.field:not(.choice) #braintree_expirationDate {
    width: 100%;
}

.payment-method-braintree .fieldset .hosted-control {
    height: 38px;
    max-width: 100%;
    border-color: #BBBBBD;
    background-color: #fff;
}

.payment-method-braintree .fieldset .hosted-control#braintree_cc_number {
    padding-left: 15px;
}

.payment-method-braintree .fieldset .cvv {
    max-width: 100%;
}

.payment-method-braintree .fieldset .cvv .field-tooltip {
    top: 2px;
    right: 10px;
}

.payment-method-braintree .braintree-credit-card-selected {
    top: 0;
    max-height: 38px;
}

.payment-method-braintree .braintree-credit-card-types {
    display: none;
}

.payment-method-braintree .braintree-credit-card-types li {
    margin-bottom: 0;
}

.payment-method-braintree .braintree-credit-card-types li:not(:last-child) {
    margin-right: 6px;
}

.payment-method-braintree .braintree-credit-card-types li img {
    max-height: 38px;
    display: block;
}

.checkout-agreements .checkout-agreement .action-show {
    font-size: 14px;
    color: #F30000;
    font-weight: normal;
    text-decoration: underline;
}

.payment-method-braintree .fieldset>.field:not(.choice)>.label {
    font-weight: normal;
    border: 0;
    font-size: 14px;
    padding: 0 0 5px 0;
    color: #444446;
    display: flex;
    margin-top: 0;
}

.payment-method-braintree .fieldset>.field:not(.choice)>.label .required {
    display: block;
    color: #F30000;
    margin-left: 4px;
}

.checkout-payment-method .ccard>.field.cvv>.control {
    padding-right: 0;
    width: 100%;
}

.commission-view__link {
    color: #f30000;
    text-transform: capitalize;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.commission-view__details {
    display: none;
}

.commission-view__details table:not(.cart):not(.totals) {
    display: block;
}

.commission-view__details table:not(.cart):not(.totals)>thead,
.commission-view__details table:not(.cart):not(.totals) td,
.commission-view__details table:not(.cart):not(.totals) tbody {
    display: block;
}

.commission-view__details table:not(.cart):not(.totals) tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.commission-view__details table:not(.cart):not(.totals) tr .col.item {
    width: 35%;
}

.commission-view__details table:not(.cart):not(.totals) tr .col.qty {
    width: 6.8%;
}

.commission-view__details table:not(.cart):not(.totals) tr .col.amount {
    width: 12.7%;
}

.commission-view__details table:not(.cart):not(.totals) tr .col.amount-commission {
    width: 18.75%;
}

.commission-view__details table:not(.cart):not(.totals) tr .col.assemble-fee {
    width: 13.375%;
}

.commission-view__details table:not(.cart):not(.totals) tr .col.shipping-fee {
    width: 13.375%;
}

.commission-view__details.has-delivery table:not(.cart):not(.totals)>thead>tr>th {
    display: flex;
    align-items: center;
}

.commission-view__details.has-delivery table:not(.cart):not(.totals) tr .col.item {
    width: 28.5%;
}

.commission-view__details.has-delivery table:not(.cart):not(.totals) tr .col.amount-commission {
    width: 13%;
}

.commission-view__details.has-delivery table:not(.cart):not(.totals) tr .col.assemble-fee {
    width: 13%;
}

.commission-view__details.has-delivery table:not(.cart):not(.totals) tr .col.delivery-fee {
    width: 13%;
}

.commission-view__details.has-delivery table:not(.cart):not(.totals) tr .col.shipping-fee {
    width: 13%;
}

.commission-view__details table:not(.cart):not(.totals)>thead>tr>th {
    padding: 10px;
    color: #86868B;
    border-color: #BBBBBD;
    font-weight: normal;
    vertical-align: middle;
    font-size: 12px;
}

.commission-view__details table:not(.cart):not(.totals)>thead>tr>th .item-count {
    display: inline-block;
    margin-left: 5px;
    color: #000;
}

.commission-view__details table:not(.cart):not(.totals)>thead>tr>th:not(:first-child) {
    text-align: center;
}

.commission-view__details table:not(.cart):not(.totals)>thead>tr>th:first-child {
    padding-left: 0;
}

.commission-view__details table:not(.cart):not(.totals)>tbody {
    margin-top: 12px;
    padding: 1.5rem;
    border-radius: 4px;
    background-color: #F3F3F4;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td {
    padding: 0;
    font-size: 12px;
    color: #86868B;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td:not(:first-child) {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-info__img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    background-color: transparent;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-info__img img {
    display: block;
    max-width: 100%;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-info__details {
    width: calc(100% - 50px);
    padding-left: 1rem;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-name {
    font-weight: normal;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-name a {
    font-size: 12px;
    color: #444446;
    text-decoration: none;
}

.commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-sku {
    margin-bottom: 0;
}

.commission-view__details table:not(.cart):not(.totals)>tbody.merge-row>tr:first-child {
    padding-bottom: 6px;
}

.commission-view__details table:not(.cart):not(.totals)>tbody.merge-row>tr:not(:first-child) {
    padding-top: 6px;
    position: relative;
}

.commission-view__details table:not(.cart):not(.totals)>tbody.merge-row>tr:not(:first-child):before {
    content: '';
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    background-color: #BBBBBD;
    position: absolute;
    top: 0;
    right: 0;
}

.creditcard-form .form-grid .form-control {
    height: 38px;
    border-radius: 2px;
    border: 1px solid #BBBBBD;
    padding: 8px;
}

.creditcard-form .form-grid .form-control+.mage-error {
    display: none;
    color: #e02b27;
    font-size: 1.2rem;
    margin-top: 7px;
}

.creditcard-form .form-grid .form-control.is-invalid+.mage-error {
    display: block !important;
}

.creditcard-form .credit-btn {
    margin-top: 2rem;
    width: 100%;
}

.product-info-main .product-info-price .special-price {
    margin: 0;
}

.box-order-billing-method .box-content .title {
    margin-bottom: 0;
}

.box-order-billing-method .box-content dl {
    margin-bottom: 0;
}

.box-order-billing-method .box-content .table:not(.cart):not(.totals) {
    display: block;
}

.box-order-billing-method .box-content .table:not(.cart):not(.totals) tbody,
.box-order-billing-method .box-content .table:not(.cart):not(.totals) th,
.box-order-billing-method .box-content .table:not(.cart):not(.totals) td {
    display: block;
}

.box-order-billing-method .box-content .table:not(.cart):not(.totals)>tbody>tr {
    display: flex;
}

.box-order-billing-method .box-content .table:not(.cart):not(.totals)>tbody>tr>th {
    padding: 0;
    font-weight: normal;
}

.box-order-billing-method .box-content .table:not(.cart):not(.totals)>tbody>tr>th:after {
    content: ":";
    display: inline-block;
    margin-right: 5px;
}

.box-order-billing-method .box-content .table:not(.cart):not(.totals)>tbody>tr>td {
    padding: 0;
}

.header.panel .header.right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: normal;
    margin-top: 5px;
}

.header.panel .header.right .minicart-wrapper {
    order: 3;
    margin-left: 2rem;
    padding-top: 0;
}

.message-icon-box {
    order: 2;
    font-size: 0;
    margin-left: 2rem;
}

.message-center-icon {
    display: block;
    width: 28px;
    height: 28px;
    text-decoration: none;
    background-image: url('../images/icons/news.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.message-center-icon.notice:before {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #f30000;
    display: inline-block;
    float: right;
    margin: 4px 4px 0 0;
    color: #fff;
    font-size: 12px;
    text-align: center;
    content: '';
}

header.page-header .header.panel .header.right .minicart-wrapper .action.showcart:before {
    margin-top: 3px !important;
}

.dashboard-info-list .block-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.dashboard-info-list .box {
    width: calc(33.3333% - 16px);
    border-radius: 8px;
    border: 1px solid #E1E1E4;
    margin-top: 24px;
}

.dashboard-info-list .box .box-item {
    display: block;
    text-decoration: none;
    padding: 20px;
}

.dashboard-info-list .box .box-item.flex {
    display: flex;
    height: 100%;
    justify-content: space-between;
}

.dashboard-info-list .box .box-title {
    font-size: 16px;
    color: rgba(30, 37, 61, 0.6);
}

.dashboard-info-list .box .box-number {
    margin-top: 20px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #1E253D;
}

.dashboard-info-list .box.box-merge-row {
    width: calc(66.6667% - 8px);
}

.dashboard-info-list .box-merge-row .box-item {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-info-list .box-merge-row .box-item__row {
    display: flex;
    align-items: center;
}

.dashboard-info-list .box-merge-row .box-item__row .box-number {
    margin-top: 0;
}

.dashboard-info-list .box-merge-row .box-item__row:not(.top) {
    width: 50%;
}

.dashboard-info-list .box-merge-row .top {
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E9ECEC;
}

.dashboard-info-list .box-merge-row .box-title {
    margin-right: 2.4rem;
}

.dashboard-info-list .box.box-merge-row.box-service {
    width: 100%;
}

.dashboard-info-list .box-service .box-item__row.top {
    justify-content: space-between;
}

@media only screen and (min-width: 767px) {
    .header.panel .header.right .block-search {
        left: auto;
    }
}

@media only screen and (max-width: 767px) {

    /*dashboard start*/
    .dashboard-info-list .box .box-item {
        padding: 12px;
    }

    .dashboard-info-list .box .box-title {
        font-size: 14px;
    }

    .dashboard-info-list .box .box-number {
        font-size: 18px;
        font-weight: 600;
    }

    .dashboard-info-list .box-merge-row .box-item__row:not(.top) {
        width: 100%;
        justify-content: space-between;
    }

    .dashboard-info-list .box-merge-row .box-item__row .box-number {
        font-size: 14px;
    }

    /*dashboard end*/
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .block-dashboard-info #filter-modal-button {
        margin-bottom: 14px;
    }

    .dashboard-info-list .box {
        width: calc(33.3333% - 10px);
    }

    .dashboard-info-list .box {
        margin-top: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .block-dashboard-info #filter-modal-button {
        margin-bottom: 22px;
    }

    .dashboard-info-list .box {
        width: calc(33.3333% - 4px);
    }

    .dashboard-info-list .box {
        margin-top: 8px;
    }
}

@media only screen and (max-width: 767px) {
    .custom-modal-popup.modal-popup._show {
        display: flex;
        align-items: center;
        justify-content: center;
        left: 0;
    }

    .custom-modal-popup.modal-popup._show .modal-inner-wrap {
        transform: translate(0, 0) !important;
        height: auto;
        width: 90%;
        position: static;
        max-height: 90vh;
        overflow-y: hidden;
    }

    .custom-modal-popup.modal-popup._show .modal-content {
        overflow-y: auto;
    }

    .custom-modal-popup.modal-popup.commission-view__details-popup .modal-header,
    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-header {
        padding: 1rem 1.5rem;
    }

    .custom-modal-popup.modal-popup.commission-view__details-popup .modal-header .action-close,
    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-header .action-close {
        top: 5px;
        right: 5px;
    }

    .custom-modal-popup.modal-popup.commission-view__details-popup .modal-content,
    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-content {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h1 {
        font-size: 20px;
        margin-bottom: 2.4rem;
    }

    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-content h2 {
        font-size: 18px;
    }

    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-content {
        font-size: 14px;
        line-height: 20px;
    }

    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-content ul,
    .modal-popup.custom-modal-popup.price-term-tips-popup .modal-content ol {
        padding-left: 1.5rem;
    }

    .payment-method-braintree .braintree-block {
        padding: 2rem;
    }

    .payment-method-braintree .fieldset>.field:not(.choice) {
        width: 100%;
    }

    .payment-method-braintree .fieldset>.field:not(.choice)>.label .required {
        display: none;
    }

    .commission-view__details {
        border-top: 1px solid #BBBBBD;
    }

    .commission-view__details table:not(.cart):not(.totals)>thead {
        display: none;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody {
        padding: 1rem;
        margin-top: 1rem;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody>tr>td:not(.item):before,
    .commission-view__details table:not(.cart):not(.totals)>tbody>tr .product-item-sku:before {
        content: attr(data-th) ': ';
        display: block;
        margin-right: 8px;
        width: 80px;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody>tr>td:not(.item) {
        margin-top: 1rem;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-name {
        overflow: visible;
        margin-bottom: 1rem;
        white-space: normal;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody>tr>td:not(:first-child) {
        text-align: left;
        justify-content: flex-start;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody>tr>td .product-item-info__details {
        padding-left: 0;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody.merge-row>tr:first-child {
        padding-bottom: 1.5rem;
    }

    .commission-view__details table:not(.cart):not(.totals)>tbody.merge-row>tr:not(:first-child) {
        padding-top: 1.5rem;
    }

    .commission-view__details table:not(.cart):not(.totals) tr {
        padding-left: 62px;
        position: relative;
        flex-direction: column;
    }

    .commission-view__details table:not(.cart):not(.totals) tr .product-item-info__img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .commission-view__details table:not(.cart):not(.totals) tr .product-item-sku {
        display: flex;
    }

    .commission-view__details table:not(.cart):not(.totals) tr .col {
        width: 100% !important;
    }

    .commission-view__link {
        display: flex;
        height: 40px;
        align-items: center;
        font-size: 0;
    }

    .commission-view__link:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 32px;
        line-height: inherit;
        color: #86868B;
        content: '\e608';
        font-family: 'icons-blank-theme';
        vertical-align: middle;
        display: inline-block;
        font-weight: normal;
        overflow: hidden;
        speak: none;
        text-align: center;
    }
}

/* results page */
.results-page-panel {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #E1E1E4;
    padding: 0 30px;
    text-align: center;
    width: 55%;
    margin: auto;
}

.results-page-panel .icon {
    margin: 24px 0 16px;
}

.results-page-panel h2 {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.results-page-panel p {
    font-size: 14px;
    color: #86868B;
    margin-bottom: 0;
    line-height: 22px;
}

.results-page-panel .btn {
    font-size: 16px;
    margin: 24px 0;
    padding: 0 78px;
    border-radius: 61px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s all ease-in-out;
    height: 44px;
    line-height: 44px;
}

@media screen and (max-width: 768px) {
    .results-page-panel {
        width: auto;
        padding: 0 25px 30px;
        margin-bottom: 25px;
    }

    .results-page-panel .btn {
        display: none;
    }

    .results-page-mb-btn {
        text-align: center;
        padding: 0 40px !important;
        color: #fff !important;
        height: 44px;
        line-height: 44px;
    }
}

/* results page */

/* checkout result page */
.checkout-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    color: #86868B;
    padding-top: 30px;
}

.checkout-success .icon {
    width: 60px;
}

.checkout-success p {
    margin: 0;
    text-align: center;
}

.checkout-success .number-title {
    font-size: 16px;
    line-height: 24px;
}

.checkout-success .title,
.checkout-success .number {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 600;
}

.checkout-success .title {
    margin-top: 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.checkout-success .number {
    margin-top: 6px;
    margin-bottom: 12px;
}

.checkout-success .actions-toolbar {
    margin-top: 24px;
}

.checkout-success .actions-toolbar .primary {
    border-radius: 60px;
    height: 44px;
}

/* end checkout result page */


/*login/forget passwordstart*/
.customer-account-login .page-main>.page-title-wrapper .page-title,
.customer-account-forgotpassword .page-main>.page-title-wrapper .page-title {
    font-size: 24px;
    max-width: 505px;
    margin: 0 auto 15px auto;
    display: block;
    text-transform: none;
    color: #000;
    font-weight: 500;
}

.customer-account-login .page-main>.page-title-wrapper .page-title span,
.customer-account-forgotpassword .page-main>.page-title-wrapper .page-title span {
    color: #000;
    font-weight: 500;
}

div.login-container,
form.form.password.forget {
    border: none;
    max-width: 545px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    min-width: 0px;
}

.login-container .block.block-customer-login {
    width: 100%;
    float: none;
}

.login-container .block.block-customer-login>.block-title {
    display: none;
}

#login-form .field.note,
form.form.password.forget .field.note {
    color: #222223;
}

#login-form .fieldset>.field,
form.form.password.forget .fieldset>.field {
    margin-bottom: 15px;
}

#login-form .fieldset>.field>.label,
#login-form .fieldset>.field:not(.choice)>.label,
.form.password.forget .fieldset>.field>.label,
.form.password.forget .fieldset>.field:not(.choice)>.label {
    font-weight: normal;
    padding: 0px 0 5px 0;
    color: #444446;
    font-size: 14px;
    margin: 0px;
}

#login-form .fieldset>.field.required>.label:after,
form.form.password.forget .fieldset>.field.required>.label:after {
    content: '*';
    color: #F30000;
    font-size: 13px;
    display: inline;
}

#login-form .fieldset>.field input:not[type="text"],
#login-form .fieldset>.field input:not[type="email"],
#login-form .fieldset>.field input[type="password"],
form.form.password.forget .fieldset>.field input:not[type="email"] {
    height: 39px;
    border-color: #BBBBBD;
}

#login-form #show-password {
    height: 20px;
    width: 20px;
    float: left;
    opacity: 0.6;
}

#login-form .fieldset>.field .label[for="show-password"] {
    font-size: 14px;
    color: #6E6E73;
    display: inline-block;
    padding: 0px;
    margin: 7px 0 0 5px;
}

div.login-container .actions-toolbar {
    margin-top: 30px;
}

div.login-container .actions-toolbar .action.login.primary,
form.form.password.forget .actions-toolbar .action.submit.primary {
    font-size: 16px;
    padding: 11px 25px !important;
    margin: 0 auto;
    float: none;
}

div.login-container .block .login .actions-toolbar>.primary,
form.form.password.forget .actions-toolbar>.primary {
    margin: 0 0 30px 0;
    display: block;
    float: none;
}

div.login-container .block .login .secondary {
    float: left;
    width: 50%;
    text-align: right;
    padding-right: 16px;
}

div.login-container .block .login .secondary a.remind,
div.login-container .block .login .secondary a.remind span {
    margin: 0px;
    color: #F30000;
    font-size: 14px;
}

div.login-container .fieldset:after {
    margin: 0px;
    float: right;
    width: 50%;
    text-align: left;
    color: #F30000;
    font-size: 14px;
    padding-left: 16px;
}

@media (max-width: 480px) {
    div.login-container .block .login .secondary {
        text-align: center;
        float: left;
        width: 100%;
        padding-right: 0px;
        margin-bottom: 10px;
    }

    div.login-container .fieldset:after {
        text-align: center;
        float: left;
        width: 100%;
        padding-left: 0px;
    }

    form.form.password.forget .actions-toolbar {
        position: fixed;
        bottom: 0px;
        left: 15px;
        right: 15px;
    }
}

/*login/forget password end*/

/* File a Cliam */

.cliam-form {
    margin-top: 24px;
}

.cliam-form .actions-toolbar {
    display: flex;
    justify-content: flex-end;
}

.cliam-form .actions-toolbar .primary .action {
    margin: 0;
}

.cliam-form .actions-toolbar button,
.cliam-form .actions-toolbar .cart.table-wrapper .actions-toolbar>.action,
.cliam-form .actions-toolbar .action-gift {
    width: 146px !important;
}

.cliam-form .actions-toolbar button.save,
.cliam-form .actions-toolbar .cart.table-wrapper .actions-toolbar>.action.save,
.cliam-form .actions-toolbar .action-gift.save {
    background-color: #F3F3F4;
    color: #000000;
    margin-right: 16px;
    border-color: #f3f3f4;
}

.cliam-form .actions-toolbar .primary .action.submit:active,
.cliam-form .actions-toolbar .primary .action.submit:focus {
    color: #fff;
    background-color: #000;
}

.custom-panel .fieldset {
    letter-spacing: 0;
    margin-bottom: 16px;
}

.custom-panel .fieldset>.field:not(.choice)>.label {
    color: #444446;
    font-size: 14px;
    font-weight: normal;
    padding: 0;
    display: flex;
    margin-bottom: 5px;
}

.custom-panel .fieldset>.field.required>.label:after {
    content: "*";
    display: block !important;
    color: rgba(255, 0, 0, 0.7);
    margin: 0;
    font-weight: bold;
}

.custom-panel .fieldset.braintree>.field.required>.label:after {
    display: none !important;
}

.custom-panel .fieldset>.field.required>.label:after .custom-panel .fieldset>.field.required.note>.label {
    color: #000;
    font-weight: bold;
}

.custom-panel .fieldset .radio-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.custom-panel .custom-fieldset {
    border: 1px solid #E1E1E4;
    border-radius: 8px;
    padding: 30px 30px 6px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.custom-panel .custom-fieldset.cliam-repair-diagnostic {
    padding-bottom: 30px;
}

.repair-list {
    width: 100%;
}

.cliam-parts-info {
    width: 100%;
}

.cliam-parts-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    display: flex;
    margin-bottom: 0;
}

.cliam-parts-info h3 .parts-info__title {
    display: block;
    margin-right: 4rem;
}

.cliam-parts-info h3 .edit {
    color: #86868B;
    text-decoration: underline;
    cursor: pointer;
}

.custom-panel .fieldset.repair-diagnostic {
    margin-bottom: 0;
}

.cliam-repair-diagnostic .repair-list:not(.repair-list-0) {
    border-top: 1px solid #E1E1E4;
    padding-top: 24px;
    margin-top: 24px;
}

.cliam-repair-diagnostic .action-toolbar {
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.cliam-repair-diagnostic .action-toolbar button {
    background-color: #fff;
    color: #000;
    padding: 7px 32px !important;
    font-size: 12px;
    font-weight: normal;
}

.repair-diagnostic {
    width: 100%;
    display: flex;
    gap: 24px;
}

.repair-diagnostic .field {
    width: calc(33.3333% - 16px);
}

.custom-panel .custom-fieldset .serial-number .control {
    position: relative;
}

.custom-panel .custom-fieldset .serial-number button {
    position: absolute;
    border-radius: 0;
    top: 3px;
    right: 2px;
    padding: 5px 10px !important;
    height: 34px;
    background-color: transparent;
    border: 0;
}

.custom-panel .custom-fieldset .serial-number.loading-api .control:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: url('../images/loader-2.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 160px auto;
}

.custom-panel .custom-fieldset label[for="media_upload"].loading-api {
    position: relative;
}

.custom-panel .custom-fieldset label[for="media_upload"].loading-api:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: url('../images/loader-2.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 160px auto;
}

.custom-panel .custom-fieldset>.field {
    margin-bottom: 24px;
}

.custom-panel .custom-fieldset .custom-select .control {
    display: flex;
    flex-direction: column;
}

.custom-panel .custom-fieldset .custom-select div.mage-error[generated] {
    order: 3;
}

.custom-panel .custom-fieldset .custom-select div.mage-error[generated]+.select2 .select2-selection--multiple {
    border-color: #e02b27;
}

.custom-panel .custom-fieldset>.field:not(.note) {
    width: calc(33.3333% - 16px);
}

.custom-panel .custom-fieldset>.field:not(.note).media {
    width: 100%;
}

.custom-panel .custom-fieldset>.field.note {
    width: 100%;
    font-weight: bold;
    color: #000000;
}

.custom-panel .custom-fieldset.cliam-product-info {
    padding: 20px 30px 6px 30px;
}

.custom-panel .custom-fieldset input#media_upload {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-panel .custom-fieldset label[for="media_upload"] {
    width: 70px;
    height: 70px;
    border: 1px dashed #E1E1E4;
    background-color: #F3F3F4;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-panel .custom-fieldset label[for="media_upload"] svg {
    display: block;
    width: 22px;
    height: 22px;
}

.custom-panel .custom-fieldset .upload-info-item {
    font-size: 12px;
    color: #BBBBBD;
}

.custom-panel .custom-fieldset .media .control {
    display: flex;
    flex-wrap: wrap;
}

.custom-panel .custom-fieldset .media .media-list {
    display: flex;
    flex-wrap: wrap;
    order: 0;
}

.custom-panel .custom-fieldset .media .media_upload {
    order: 1;
}

.custom-panel .custom-fieldset .media #upload-limit-message {
    order: 2;
    color: #e02b27;
    font-size: 1.2rem;
}

.custom-panel .custom-fieldset .media div.mage-error[generated] {
    order: 4;
    width: 100%;
}

.custom-panel .custom-fieldset .media .media-item {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.custom-panel .custom-fieldset .media .media-item__info {
    border: 1px solid #E5E9F1;
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    overflow: hidden;
}

.custom-panel .custom-fieldset .media .media-item img,
.custom-panel .custom-fieldset .media .media-item video {
    max-width: 100%;
    max-height: 100%;
}

.custom-panel .custom-fieldset .media .remove-thumbnail {
    position: absolute;
    display: block;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #86868B;
    color: #fff;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.custom-panel .custom-fieldset .purchase-date button.ui-datepicker-trigger,
.custom-panel .custom-fieldset .date button.ui-datepicker-trigger {
    display: none;
}

.cliam-parts {
    flex-wrap: wrap;
}

.cliam-parts-item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 16px;
}


.cliam-parts-item .label {
    color: #000;
}

.cliam-parts-item__left {
    width: 52%;
}

.cliam-parts-item__right {
    width: 48%;
    display: flex;
    justify-content: flex-end;
}

.cliam-parts-item__right .control {
    width: 120px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #BBBBBD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 8px;
}

.cliam-parts-item__right input[type="number"] {
    border: 0;
    max-width: 70px;
    text-align: center;
}

.cliam-parts-item__right .change-qty {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dtc-order-detail-button {
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dtc-order-detail-button .total-mark {
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
}

.dtc-order-detail-button .total-mark svg {
    margin-right: 5px;
}

.parts-total .label {
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.close-status .qty {
    display: flex;
    align-items: center;
    padding-left: 10%;
    color: #000;
}

.close-status .qty svg {
    display: block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
}

.service-type-images {
    width: 160px;
    overflow: hidden;
}

.service-type-images img {
    display: block;
    max-width: 100%;
}

.customer-account-login .message-icon-box,
.customer-account-forgotpassword .message-icon-box {
    display: none !important;
}

#paymentForm .operate-area .total,
.operate-area-mb .total {
    text-align: center;
}

#paymentForm .operate-area .total span,
#paymentForm .operate-area-mb .total span {
    display: block;
}

#paymentForm .operate-area .total span.hidden,
#paymentForm .operate-area-mb .total span.hidden {
    display: none;
}

.detail-content-wrapper .total-count#totalOldPrice,
.detail-content-wrapper .total-count#totalOldPriceMb {
    font-size: 14px;
    color: #86868B;
    text-decoration: line-through;
    line-height: normal;
}

@media (max-width: 767px) {

    .custom-panel .custom-fieldset,
    .custom-panel .custom-fieldset.cliam-product-info {
        padding: 15px 20px 0 20px;
    }

    .custom-panel .custom-fieldset>.field:not(.note) {
        width: 100%;
        margin-bottom: 20px;
    }

    .custom-panel .fieldset>.field.required>.label {
        margin-top: 0;
    }

    .cliam-form .actions-toolbar {
        justify-content: space-between;
    }

    .cliam-form .actions-toolbar>div {
        width: 46%;
    }

    .cliam-form .actions-toolbar>div button {
        width: 100% !important;
        margin: 0;
        height: 42px;
    }

    .cliam-parts-item__left {
        width: calc(100% - 100px);
    }

    .cliam-parts-item__right {
        width: 100px;
    }

    .cliam-parts-item__right .control {
        max-width: 90px;
        float: right;
    }

    .cliam-parts-item__left .min-count {
        color: rgba(30, 37, 61, 0.6);
    }

    .parts-total {
        display: flex;
        justify-content: space-between;
    }

    button.service-submit {
        width: 100%;
        height: 44px;
    }

    .cliam-parts-item {
        align-items: flex-start;
        justify-content: space-between;
    }

    .close-status .name {
        width: calc(100% - 60px);
    }

    .close-status .qty {
        padding-left: 0;
        width: 60px;
        justify-content: flex-end;
    }

    header.page-header {
        display: flex;
        justify-content: space-between;
        padding: 8px 64px 8px 20px;
        box-sizing: border-box;
    }

    .page-header .dealer-portal {
        display: none;
    }

    .page-header .panel.wrapper {
        background-color: #fff !important;
        order: 2;
    }

    .header.panel .header.right {
        margin-top: 0;
    }

    .block-search {
        margin-top: 0;
    }

    .message-center-icon {
        background-image: url("../images/icons/bell.png");
        width: 24px;
        height: 24px;
    }

    .block-search .label:before {
        content: '';
        background-image: url("../images/icons/search.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        display: block;
        width: 24px;
        height: 24px;
        background-color: transparent;
    }

    header.page-header .header .showcart:before {
        background-image: url("../images/icons/black_cart.png") !important;
    }

    header.page-header .panel.wrapper .header.panel {
        padding: 0;
    }

    .header.panel .header.right .minicart-wrapper,
    header.page-header .header.panel .header.right .minicart-wrapper .action.showcart:before {
        margin: 0 !important;
    }

    header.page-header .header.panel .header.right .minicart-wrapper .action.showcart:before {
        width: 24px;
        height: 24px;
    }

    .minicart-wrapper .action.showcart .counter.qty {
        position: absolute;
        background-color: #000 !important;
        width: 18px;
        height: 18px !important;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0;
        top: -5px;
        left: 8px;
    }

    header.page-header .header.content {
        padding: 0;
        position: static;
    }

    header.page-header .header.content .header.menu {
        flex-basis: auto;
    }

    header.page-header .header.content .menu a.logo {
        margin: 0;
        max-width: 100%;
    }

    .logo img {
        display: block;
        max-height: 40px;
    }

    span.nav-toggle {
        left: auto;
        right: 20px;
        line-height: 1;
        top: 17px !important;
    }

    .nav-toggle:before {
        font-size: 24px;
        color: #000;
    }

    .header.panel .header.right .minicart-wrapper {
        padding-left: 2rem;
    }

    .minicart-wrapper .action.showcart {
        position: relative;
    }

    .dtc-order-detail-button .total-mark {
        justify-content: center;
    }
}

.claim-details .wostatus-info {
    display: flex;
    align-items: center;
}

.claim-details .wostatus {
    margin: 0;
}

.claim-details .header {
    align-items: center;
}

.select-parts-pop.custom-modal-popup.modal-popup .modal-inner-wrap {
    max-width: 450px;
}

.select-parts-pop .modal-title {
    margin-bottom: 3rem;
    font-size: 18px;
}

.select-parts-pop.custom-modal-popup.modal-popup .modal-footer {
    padding-top: 8px;
    justify-content: center;
    border-top: 0;
}

.select-parts-pop.custom-modal-popup.modal-popup .modal-footer button {
    max-width: 165px;
}

.select-parts-pop.custom-modal-popup.modal-popup .modal-footer button.action-cancel {
    background-color: #F3F3F4;
    color: #000;
    border-color: #F3F3F4;
}

.cliam-tips {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background-color: transparent;
    top: 0;
    left: 0;
}

.cliam-tips .tips-info {
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
}

.cliam-list {
    margin-top: 24px;
}

.cliam-list .cliam-item {
    display: flex;
    max-width: 270px;
    margin-bottom: 12px;
    justify-content: space-between;
    align-items: center;
}

.cliam-list .cliam-item:last-child {
    margin-bottom: 0;
}

.cliam-list .cliam-item .item-name {
    width: calc(100% - 56px);
    line-height: normal;
}

.cliam-list .cliam-item .item-name p {
    margin-bottom: 0;
    line-height: normal;
}

.cliam-list .cliam-item .item-qty {
    text-align: right;
}

.file-cliam-pop.custom-modal-popup .modal-footer {
    display: block;
    text-align: center;
}

.file-cliam-pop.custom-modal-popup .modal-content {
    text-align: center;
}

.file-cliam-pop.custom-modal-popup .modal-footer button {
    min-width: 120px;
}

@media (max-width: 767px) {
    .logo img {
        width: auto;
    }

    .repair-diagnostic {
        flex-wrap: wrap;
    }

    .repair-diagnostic .field {
        width: 100%;
    }

    .select-parts-pop.custom-modal-popup.modal-popup .modal-inner-wrap {
        background-color: #fff;
    }
}


/* end File a Cliam */
.filter-head-box .filters-options {
    width: 100%;
}

.custom-panel .action.white-btn {
    background-color: #fff;
    color: #000;
    padding: 12px 48px !important;
    text-shadow: 0 0 black;
}

.custom-panel .action.white-btn:hover {
    background-color: #000;
    color: #fff;
}

.store-tag {
    display: inline-block;
    border: 1px solid #4A83F4;
    background-color: rgba(74, 131, 244, 0.08);
    border-radius: 4px;
    color: #4A83F4;
    padding: 6px;
    text-align: center;
    margin-left: 10px;
}


@media (max-width: 767px) {
    .custom-panel .filter-head-box .action.white-btn {
        padding: 10px 20px !important;
        margin-left: 10px;
    }

    .filter-head-box {
        margin-top: 24px;
    }

    .monthly-statements .filters-options {
        margin-top: 0;
    }

    .store-tag {
        font-size: 10px;
        padding: 2px 5px;
    }

    .claims-list .table-content-wrapper th {
        color: #000000;
        font-size: 14px;
        line-height: 22px;
        white-space: nowrap;
        padding: 16px 4px;
    }

    .claims-list .table-content-wrapper td {
        padding: 16px 4px;
        color: #000000;
    }

    .claims-list .table-content-wrapper td span {
        color: #000000;
    }
}

/*techhub start*/
.bom-techhub-index ol.product-items {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.bom-techhub-index .products-grid .product-item {
    width: 100%;
    float: none;
    background-color: #F3F3F4 !important;
    padding: 32px !important;
    border-radius: 20px !important;
    width: 100% !important;
    border: none !important;
    margin: 0px;
}

.bom-techhub-index .products-grid .product-item .product-item-info {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0px;
}

.bom-techhub-index .products-grid .product-item .product-item-info .product-image-container {
    width: 100% !important;
}

@media (max-width: 1024px) {
    .bom-techhub-index .products-grid .product-item {
        padding: 20px !important;
    }

    .bom-techhub-index ol.product-items {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .bom-techhub-index ol.product-items {
        grid-template-columns: 1fr 1fr;
    }

    body.bom-techhub-index .product-item .product-item-name .line-clamp {
        font-size: 16px;
    }
}

/*techhub end*/

/* Company Form */
.company-account-create .page-wrapper {
    background-color: #F8F8F8 !important;
}

.company-account-create .header-logo {
    display: flex;
    align-items: center;
}

.company-account-create .header-logo .logo {
    max-width: 100%;
}

.company-account-create header.page-header .header.content {
    max-width: 1200px !important;
}

.company-account-create header.page-header .header.content .header.menu {
    flex-basis: 100%;
    justify-content: space-between;
}

.company-account-create header.page-header .header.content .header.menu .links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.company-account-create header.page-header .header.content .header.menu .links li:not(.authorization-link) {
    display: none !important;
}

.company-account-create header.page-header .header.content .header.menu .links li a {
    color: #000;
}

.company-account-create .page-wrapper .page-main {
    max-width: 1200px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 35px;
}

.company-account-create .page-footer {
    margin-top: 0;
}

.company-account-create .page-footer .top-footer {
    display: none;
}

.company-account-create .page-footer .bottom-footer {
    background-color: #f8f8f8;
    padding-top: 0;
    padding-bottom: 55px;
}

.company-account-create footer.page-footer .bottom-footer address {
    font-size: 15px;
    font-weight: normal;
}

.company-account-create .custom-panel .fieldset {
    margin-bottom: 24px;
}

.company-account-create .custom-panel .fieldset.add-more a {
    color: #2E70FF;
    text-decoration: underline;
}

.company-account-create .custom-panel .fieldset>.field:not(.choice)>.label {
    margin-bottom: 1rem;
}

.company-account-create .currency-input {
    position: relative;
}

.company-account-create .currency-input input {
    padding: 0 12px 0 32px;
}

.company-account-create .currency-code {
    position: absolute;
    left: 12px;
    top: 0;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    color: #333333;
}

.form-trade-account fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-trade-account fieldset .legend {
    padding: 0 0 24px 0;
    border-bottom: 1px solid #E1E1E4;
    font-size: 24px;
    margin-bottom: 3rem;
    float: none;
    width: 100%;
}

.form-trade-account fieldset .legend-heading,
.form-trade-account fieldset .heading-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 16px;
    color: #444446;
    width: 100%;
    font-weight: 600;
}

.form-trade-account fieldset .legend-heading.shipping_address-heading {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #E1E1E4;
}

.form-trade-account fieldset .legend-heading.shipping_address-heading a {
    color: #2E70FF;
    text-decoration: underline;
    font-size: 14px;
    font-weight: normal;
}

.form-trade-account fieldset>.field {
    margin-bottom: 24px;
    width: 100%;
}

.form-trade-account fieldset>.field.authorize .control {
    flex-wrap: wrap;
}

.form-trade-account fieldset>.field .ui-datepicker-trigger {
    display: none !important;
}

.form-trade-account fieldset>.field.empty {
    margin-bottom: 0;
}

.form-trade-account fieldset>.field.two_rows {
    width: calc(50% - 12px);
}

.form-trade-account fieldset>.field.three_rows {
    width: calc(33.3333% - 12px);
}

.form-trade-account fieldset>.field.four_rows {
    width: calc(25% - 12px);
}

.form-trade-account fieldset>.field.radio-fields>.control {
    display: flex;
    flex-wrap: wrap;
}

.form-trade-account fieldset>.field.radio-fields>.control .radio-item:not(:first-child) {
    margin-left: 48px;
}

.form-trade-account fieldset>.field.radio-fields>.control div.mage-error {
    width: 100%;
}

.form-trade-account fieldset>.field.file-upload .control {
    display: flex;
    flex-wrap: wrap;
}

.form-trade-account fieldset>.field.file-upload input[type="file"] {
    /* display: none; */
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.form-trade-account fieldset>.field.file-upload input[type="file"]+div.mage-error {
    width: 100%;
}

.form-trade-account fieldset>.field.file-upload>.control label {
    border: 1px dashed #BBBBBD;
    background-color: #F3F3F4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    max-width: 572px;
    width: 100%;
    cursor: pointer;
}

.form-trade-account fieldset>.field.file-upload>.control label span {
    color: #BBBBBD;
    font-size: 12px;
}

.form-trade-account fieldset>.field.file-upload>.control label span.has-file {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.form-trade-account fieldset>.field.file-upload>.control label svg {
    margin: 1rem 0;
}

.form-trade-account fieldset>.field.checkbox>.control {
    display: flex;
    font-size: 12px;
    color: #000;
}

.form-trade-account fieldset>.field.checkbox>.control input[type="checkbox"] {
    position: static;
    width: 25px;
    height: 25px;
    border-radius: 0;
    margin-right: 1rem;
}

.form-trade-account fieldset>.field.checkbox>.control input[type="checkbox"]+label {
    width: calc(100% - 40px);
}

.form-trade-account fieldset>.field.checkbox>.control input[type="checkbox"]+label+div.mage-error {
    width: 100%;
}

.form-trade-account fieldset>.field .radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    border-color: rgba(0, 0, 0, 0.4);
    margin-right: 16px;
}

.form-trade-account fieldset>.field .radio-item label {
    font-size: 14px;
    color: #444446;
}

.form-trade-account .actions-toolbar>button.primary {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: normal;
}

@media (min-width: 992px) {
    .company-account-create header.page-header {
        padding-top: 47px;
        padding-bottom: 32px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
    }

    .company-account-create .page-title-wrapper h1 {
        font-size: 32px;
        font-weight: 600;
    }
}

@media (min-width: 767px) {
    .header-logo .logo {
        margin: 0;
    }

    .header-logo .dealer-portal {
        position: static;
        padding-top: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 767px) {
    .company-account-create .page-wrapper .page-main {
        margin-top: 0;
    }

    .company-account-create .page-wrapper .page-main h1 {
        font-weight: bold;
    }

    .form-trade-account fieldset .legend {
        padding-bottom: 1rem;
        font-size: 18px;
    }

    .form-trade-account fieldset>.field {
        margin-bottom: 16px;
    }

    .company-account-create .custom-panel .fieldset>.field:not(.choice)>.label {
        margin-top: 0;
        margin-bottom: 6px;
    }

    .form-trade-account fieldset>.field.two_rows {
        width: 100%;
    }

    .form-trade-account fieldset>.field.three_rows {
        width: 100%;
    }

    .form-trade-account fieldset>.field.four_rows {
        width: 100%;
    }

    .form-trade-account fieldset>.field.radio-fields>.control .radio-item:not(:first-child) {
        width: 100%;
        margin-left: 0;
    }
}

.settlement-view__details {
    display: none;
}

.settlement-view__details table:not(.cart):not(.totals) {
    display: block;
}

.settlement-view__details table:not(.cart):not(.totals) > thead,
.settlement-view__details table:not(.cart):not(.totals) td,
.settlement-view__details table:not(.cart):not(.totals) tbody {
    display: block;
}

.settlement-view__details table:not(.cart):not(.totals) tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.settlement-view__details table:not(.cart):not(.totals) tr .col.work_no {
    width: 25%;
}


.settlement-view__details table:not(.cart):not(.totals) tr .col.type {
    width: 12.7%;
}

.settlement-view__details table:not(.cart):not(.totals) tr .col.client {
    width: 35%;
}

.settlement-view__details table:not(.cart):not(.totals) tr .col.wo_status_label {
    width: 18%;
}

.settlement-view__details table:not(.cart):not(.totals) tr .col.action {
    width: 8%;
}

.settlement-view__details table:not(.cart):not(.totals) > thead > tr > th {
    padding: 10px;
    color: #86868B;
    border-color: #BBBBBD;
    font-weight: normal;
    vertical-align: middle;
    font-size: 14px;
}

.settlement-view__details table:not(.cart):not(.totals) > thead > tr > th .item-count {
    display: inline-block;
    margin-left: 5px;
    color: #000;
}

.settlement-view__details table:not(.cart):not(.totals) > thead > tr > th:not(:first-child) {
    text-align: center;
}

.settlement-view__details table:not(.cart):not(.totals) > thead > tr > th:first-child {
    padding-left: 0;
}

.settlement-view__details table:not(.cart):not(.totals) > tbody {
    margin-top: 4px;
    padding: 5px;
    border-radius: 4px;
    background-color: #F3F3F4;
}

.settlement-view__details table:not(.cart):not(.totals) > tbody > tr > td {
    padding: 0;
    font-size: 14px;
    color: #86868B;
}

.settlement-view__details table:not(.cart):not(.totals) > tbody > tr > td:not(:first-child) {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.settlement-view__details table:not(.cart):not(.totals) > tbody.merge-row > tr:first-child {
    padding-bottom: 6px;
}

.settlement-view__details table:not(.cart):not(.totals) > tbody.merge-row > tr:not(:first-child) {
    padding-top: 6px;
    position: relative;
}

.settlement-view__details table:not(.cart):not(.totals) > tbody.merge-row > tr:not(:first-child):before {
    content: '';
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    background-color: #BBBBBD;
    position: absolute;
    top: 0;
    right: 0;
}

/* -------------------------------- end silk -------------------------------- */
