:root {
    --white: #ffffff;
    --orange-10: #FEEBD3;
    --orange-20: #FED1A8;
    --orange-30: #FEB17D;
    --orange-40: #FF9051;
    --orange-50: #FB762A;
    --orange-60: #D8411D;
    --orange-70: #D8411D;
    --orange-80: #92140C;
    --orange-90: #780709;
    --gray-10: #F8F8F8;
    --gray-20: #ECEDED;
    --gray-30: #E3E3E4;
    --gray-40: #D9DADB;
    --gray-50: #D0D1D2;
    --gray-60: #A2A3A5;
    --gray-70: #737677;
    --gray-80: #45484A;
    --gray-90: #161A1D;
    --black: #000000;
    --green-70: #156700;
    --red-50: #f56565;
}

.main-container {
    display: flex;
    min-height: 100vh;
}

aside {
    max-width: 37.4rem;
    transition: left .4s ease-in-out;
    position: fixed;
    width: 100%;
    left: 0;
    background: var(--white);
    z-index: 1053;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-left: 37.4rem;
    min-width: 0.1rem;
}

/* Sidebar */
.aside-logo {
    padding: 1.9rem 2.4rem;
    display: flex;
    gap: 1.8rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.2rem solid #E7E9E9;
}

.aside-logo img {
    height: 6rem;
}

.closesidebar-btn {
    display: none;
    padding: 0;
    border: none;
}

.show-sidebar svg,
.closesidebar-btn img {
    width: 4.8rem;
}

.aside-links {
    margin: 2.4rem 0 2.4rem 0;
    height: calc(100vh - 14.8rem);
    overflow: auto;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar,
.common-text-editor .ck-restricted-editing_mode_standard::-webkit-scrollbar,
.common-textarea::-webkit-scrollbar,
.aside-links::-webkit-scrollbar {
    width: 1.8rem;
    height: 1.8rem;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb,
.common-text-editor .ck-restricted-editing_mode_standard::-webkit-scrollbar-thumb,
.common-textarea::-webkit-scrollbar-thumb,
.aside-links::-webkit-scrollbar-thumb {
    background: rgb(69, 72, 74, .1);
    border-radius: 10rem;
    border: 0.6rem solid transparent;
    background-clip: padding-box;
}

.aside-links p {
    color: var(--gray-60);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.996rem;
    margin: 0;
    padding: 1.2rem 2.4rem;
    text-transform: uppercase;
}

.aside-links .accordion-button:not(.collapsed),
.aside-links a {
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    display: flex;
    align-items: center;
    padding: 1.2rem 2.2rem 1.2rem 2.6rem;
    gap: 1.7rem;
    text-decoration: none;
}

.aside-links .accordion-button span,
.aside-links a span {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aside-links .accordion-item a,
.aside-links .accordion-item {
    border: none;
    box-shadow: none;
}

.aside-links a img {
    max-width: 3.6rem;
    margin-right: 0.5rem;
    max-height: 3.6rem;
}

.accordion-button:not(.collapsed),
.aside-links a:hover {
    background-color: var(--gray-20);
}

.aside-links a.active {
    background-color: var(--gray-20);
}

.aside-links .accordion-body {
    padding: 1.2rem 4.7rem;
}

.aside-links .accordion-body a {
    padding: 1.6rem 1rem 1.6rem 4.8rem;
    border-radius: 0.8rem;
    margin-bottom: .3rem;
}

.aside-links .accordion-body a.active {
    background-color: var(--gray-20);
}

.accordion-button::after {
    background-image: url(../images/icons/down.svg) !important;
    background-position: center;
    background-size: contain;
    width: 2.4rem;
    height: 2.4rem;
}

/* Top bar */
.show-sidebar {
    padding: 0;
    border: none;
    display: none;
}

.show-sidebar path {
    transition: all .4s ease-in-out;
}

.show-sidebar:hover path {
    stroke: var(--orange-60);
}

.top-bar {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.3rem 2.5rem;
    border: 0.2rem solid #E7E9E9;
    border-width: 0 0 0.2rem 0.2rem;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1052;
}

.main-search {
    position: relative;
    z-index: 0;
    max-width: 62.7rem;
    width: 100%;
    margin-right: auto;
}

.main-search input {
    padding: 1.9rem 3.2rem;
    border: 0.2rem solid var(--gray-50);
    border-radius: 0.4rem;
    height: 7.2rem;
    background: transparent !important;
    box-shadow: none !important;
    width: 100%;
    color: var(--gray-70) !important;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 34.2rem;
}

.main-search input:focus {
    border-color: var(--gray-70);
}

.main-search img {
    position: absolute;
    inset: 0 3.2rem 0 auto;
    margin: auto;
    z-index: -1;
    width: 3.6rem;
}

.main-search input::placeholder {
    color: var(--gray-60);
}

.profile-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.profile-dropdown .dropdown-menu {
    min-width: 22rem;
}

.profile-text {
    background: var(--gray-70);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dropdown-toggle::after {
    border: none;
    background: url(../images/icons/down-filled.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0;
}

.profile-dropdown .dropdown-toggle .profile-img {
    object-fit: cover;
    font-size: 1.867rem;
    font-weight: 600;
    line-height: 2.662rem;
    color: var(--white);
    background: linear-gradient(95.63deg, #FB762A 5.09%, #D71921 96.11%);
    border-radius: 100%;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    padding: 3.6rem 2rem 3.7rem;
    border-top: 0.1rem solid #EAECEC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
}

footer p {
    color: var(--gray-70);
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin: 0;
}

footer span {
    color: #D71921;
}

/* Main Contents */
.main-content {
    flex-grow: 1;
    padding: 2rem 3.1rem 5.6rem;
}

/* Product Category Page*/
.listing-table th:not(:nth-child(2)),
.listing-table td:not(:nth-child(2)) {
    text-align: center !important;
}

.listing-table th,
.listing-table td {
    vertical-align: middle;
}

/* Delete Modal */
.delete-modal .modal-dialog {
    max-width: 48rem;
    margin: auto;
}

.delete-modal .modal-content {
    text-align: center;
}

.modal-content {
    box-shadow: 0 .4rem 2rem 0 #0000000D;
    border-radius: 2.4rem;
    border: none;
    padding: 2.4rem 3.6rem 2.4rem;
}

.modal-body {
    padding: 0;
}

.delete-modal .delete-img {
    margin-bottom: 0.8rem;
    max-width: 6.4rem;
}

.delete-modal h4 {
    margin-bottom: 1.2rem;
    color: #000000;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.delete-modal p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: #000000;
    margin-bottom: 3.6rem;
}

.delete-modal p span {
    color: #D71921;
}

.delete-modal .btn-group {
    gap: 1rem;
}

.delete-modal .btn {
    border-radius: .4rem;
    border: none !important;
    padding: 0.8rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.282rem;
}

.delete-modal .btn-secondary {
    color: #000000;
    background-color: #E5E5E5;
}

.delete-modal .btn-secondary:hover {
    color: #000000 !important;
    background-color: #E5E5E5 !important;
}

.delete-modal .btn-primary {
    background: linear-gradient(95.63deg, #8C8C8C, #505050);
}

/* Color Options Page */
.exterior-table tr td:nth-child(4) span,
.color-options-table tr td:nth-child(3) span,
.configuration_table tr td:nth-child(5) span,
.transmission_table tr td:nth-child(5) span {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 37rem;
    width: 100%;
    display: block;
    margin: auto;
}

.color-options-table tr td:nth-child(2) span {
    max-width: 20rem;
    width: 100%;
    display: block;
}

/* Login Page */
.login-container {
    background-color: var(--gray-10);
    background-image: url(../images/login-bg-gray.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.1rem;
    min-height: 100vh;
    padding: 10.7rem 0 10.7rem 14.4rem;
}

.login-content {
    max-width: 59.1rem;
    width: 100%;
}

.login-car-img {
    max-width: 114.4rem;
    max-height: 39.9rem;
}

.login-car-img img {
    object-fit: contain;
    width: 100%;
}

.login-content h1 {
    color: #1E1E1E;
    font-size: 6.4rem;
    font-weight: 700;
    line-height: 9.126rem;
    margin: 0;
}

.login-content h5 {
    color: #1E1E1E;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 4.563rem;
    margin-bottom: 2.4rem;
}

.login-badge {
    padding: 1.2rem 2.4rem;
    background: linear-gradient(95.63deg, #8C8C8C, #505050);
    border-radius: .4rem;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    color: var(--white);
    margin-bottom: 3rem;
    display: block;
    width: fit-content;
    cursor: pointer;
}

.login-badge:hover {
    background: linear-gradient(95.63deg, #666666, #000000);
}


.login-box {
    padding: 6.8rem 6rem;
    background-color: rgb(255, 255, 255, .8);
    box-shadow: .4rem .4rem 2rem 0 #0000000D;
    border-radius: 3.4rem;
    overflow: hidden;
}

.login-box .form-group {
    margin-bottom: 2.4rem;
}

.login-box .input-error {
    position: relative;
}

.login-box label {
    margin-bottom: 0.8rem;
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.login-box .common-input {
    padding: 1.8rem 2.4rem;
    max-width: unset;
}

.login-box .btn {
    width: 100%;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    margin-bottom: 2.4rem;
    padding: 1.1rem 2.4rem;
}

.login-box .btn:last-child {
    margin-bottom: 0;
}

.password-input {
    position: relative;
}

.toggole-password {
    position: absolute;
    inset: 0 2.4rem 0 auto;
    margin: auto;
    cursor: pointer;
    max-width: 2.4rem;
    max-height: 2.4rem;
}

.login-box .g-recaptcha {
    margin: 3.6rem 0 1.2rem;
    width: 100%;
}

/* Product Asset Pages*/
.feature-add-btn {
    padding: 3.6rem 2.4rem;
    border: .3rem dashed var(--gray-70);
    color: var(--gray-90);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    width: 100%;
    margin-bottom: 2.4rem;
}

.feature-add-btn:hover {
    border-color: var(--gray-80) !important;
    color: var(--gray-80) !important;
    background-color: var(--gray-20) !important;
}

.selected-base-color {
    border: .2rem solid var(--gray-70);
    border-radius: 100%;
    width: 3.6rem;
    height: 3.6rem;
}

.common-table .thumbnail-img {
    max-width: 8rem;
    width: 100%;
    height: 100%;
    max-height: 8rem;
    object-fit: contain;
}

.attach-background-img {
    max-width: 64rem;
    max-height: 42rem;
    object-fit: cover;
    width: 100%;
}

.attach-img {
    max-width: 64rem;
    max-height: 42rem;
    object-fit: contain;
    width: 100%;
}

/* Exterior Css */
.exterior-table-flex {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}

.exterior-table-flex p {
    margin-bottom: 0;
    max-width: 20rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
}

.common-textarea {
    height: 16rem;
    resize: none;
}

.configuration-box {
    border: none;
    padding: 0;
}

/* t-intouch */
.bg-file-uploader .t-intouch-icon img {
    object-fit: contain;
}

/* Product Specification */
.custom-table .t-heade {
    display: flex;
    border-bottom: .1rem solid #E7E9E9;
    padding: 1.2rem 0;
    align-items: center;
    gap: 8.4rem;
}

.custom-table .t-heade span,
.custom-table .t-heade .btn {
    visibility: hidden;
    flex-shrink: 0;
}

.custom-table-view p,
.custom-table .tr label,
.custom-table .t-heade p {
    color: var(--gray-70);
    margin: 0;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    flex-basis: 50%;
}

.custom-table-view .label,
.custom-table .tr label {
    margin-bottom: 0.8rem;
    display: none;
}

.custom-table-view .file-drag {
    cursor: inherit;
}

.custom-table .tr {
    padding: 2.6rem 0;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 8.4rem;
    border: 0.2rem solid transparent;
    background-color: var(--white);
}

.custom-table .form-group {
    flex-grow: 1;
    flex-basis: 15%;
}

.custom-table .t-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

/* Product */
.table-dropdown .dropdown-toggle::after {
    content: none;
}

/* Car */
.url-text {
    word-break: break-all;
    text-decoration: underline;
}

.custom-table-aftersales .common-textarea,
.custom-table-parent-car .common-textarea {
    height: 8.4rem;
}

.service-fee-table .custom-table .tr,
.custom-table-aftersales .custom-table .tr,
.custom-table-parent-car .custom-table .tr {
    border-bottom: .1rem solid #E7E9E9;
}

.usp-table .custom-table .t-heade,
.usp-table .custom-table .tr {
    column-gap: 10.4rem;
}

.usp-table .t-heade p,
.usp-table .form-group:nth-child(2) {
    max-width: 36rem;
}

.aftersales-table .custom-table .tr textarea,
.usp-table .custom-table .tr textarea {
    max-width: unset;
    width: 100%;
}

.aftersales-table .custom-table .t-heade,
.aftersales-table .custom-table .tr {
    column-gap: 5.3rem;
}

.aftersales-table .t-heade > *:nth-child(2),
.aftersales-table .tr > div:nth-child(2) {
    max-width: 13rem;
}

.aftersales-table .tr > div:nth-child(2) input {
    max-width: 10rem;
}

.usp-view-table .form-group,
.usp-view-table p {
    max-width: 60rem;
}

.aftersales-view-table .form-group,
.aftersales-view-table p {
    max-width: 20rem;
}

.usp-view-table.custom-table .t-heade,
.usp-view-table.custom-table .tr {
    justify-content: space-evenly;
}

.usp-view-table .t-heade p:first-child,
.usp-view-table .form-group:first-child {
    max-width: 36rem;
}

.custom-table-view:not(.usp-view-table) p, .custom-table:not(.usp-view-table) .tr label, .custom-table:not(.usp-view-table) .t-heade p {
    flex-basis: 15% !important;
}

.aftersales-view-table.custom-table .t-heade,
.aftersales-view-table.custom-table .tr {
    justify-content: space-evenly;
}
.aftersales-view-table .t-heade p:nth-child(2),
.aftersales-view-table .form-group:nth-child(2) {
    max-width: 20rem;
}

/* Trash Page */
.trash-table-actions {
    display: flex;
    gap: 1.8rem;
}

.trash-table-actions .btn {
    text-wrap: nowrap;
}

/* Roles Page*/
.roles-table table {
    width: 100%;
    text-wrap: nowrap;
}

.roles-table table td {
    padding-right: 3.6rem;
}

.roles-table label {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    color: var(--gray-70);
    cursor: pointer;
    width: fit-content;
}

.roles-table th {
    padding: 2.4rem 0;
    border-bottom: .1rem solid #E7E9E9;
    background-color: var(--gray-10);
}

.roles-table td label {
    margin: 3.6rem 0;
}

.roles-table td label:last-child {
    margin-bottom: 0;
}

.roles-table td {
    padding: 2.8rem 0 0;
}

.roles-table td:first-child label:not(:first-child) {
    margin-left: 4.8rem;
}

.roles-table-view label {
    pointer-events: none;
    cursor: default;
}

/* After Sales */
.service-fee-table .t-heade>*:nth-child(2),
.service-fee-table .form-group:nth-child(2) {
    max-width: 20rem;
}

.service-fee-table .t-heade>*:nth-child(3),
.service-fee-table .form-group:nth-child(3) {
    max-width: 30rem;
}

.service-fee-table .t-heade>*:nth-child(4),
.service-fee-table .form-group:nth-child(4) {
    max-width: 50rem;
}

.file-input {
    position: relative;

}

label.file-input {
    padding: 1.9rem 2.4rem 1.9rem 18.8rem;
    margin: 0 !important;
    border: 0.1rem solid var(--gray-60);
    border-radius: 0.8rem;
    background: transparent !important;
    font-size: 1.8rem !important;
    line-height: 2.567rem !important;
    max-width: 50rem;
    height: 5.8rem;
    display: flex !important;
    align-items: center;
}

.file-input input {
    display: none;
}

.placeholder-text {
    font-style: italic;
    color: var(--gray-70) !important;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input::after {
    content: 'CHOOSE FILE';
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.567rem;
    background: linear-gradient(95.63deg, #FB762A 5.09%, #D71921 96.11%);
    position: absolute;
    border-radius: 0.8rem 0 0 0.8rem;
    left: -0.1rem;
    top: -0.1rem;
    bottom: -0.1rem;
    width: 16.4rem;
    border-right: .1rem solid var(--gray-60);
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-input .file-info {
    display: none;
}

.service-fee-table .form-group div {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.service-fee-table .form-group div img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
}

.service-fee-table .form-group div p .file-size {
    color: #000000;
}

.service-fee-table .form-group div p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: #000000;
}

.service-fee-table .form-group div span {
    color: #D71921;
}

.service-fee-table.custom-table .t-heade,
.service-fee-table.custom-table .tr {
    column-gap: 6.8rem;
    row-gap: 3.8rem;
    justify-content: space-evenly;
}

.service-fee-table.custom-table .t-heade *:nth-child(1),
.service-fee-table.custom-table .tr .form-group:nth-child(1) {
    max-width: 20rem;
    min-width: .1rem;
}

.service-fee-table.custom-table .t-heade *:nth-child(2),
.service-fee-table.custom-table .tr .form-group:nth-child(2) {
    max-width: 30rem;
    min-width: .1rem;
}

.service-fee-table.custom-table .t-heade *:nth-child(3),
.service-fee-table.custom-table .tr .form-group:nth-child(3) {
    max-width: 50rem;
    min-width: .1rem;
}

/* Get your offer */
.sub-heading {
    padding: 4.8rem 3.6rem;
    background-color: var(--gray-10);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.8rem;
}

.sub-heading h3 {
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.422rem;
    margin: 0;
}

.custom-table-label-view .custom-table .tr label,
.custom-table-label-view .label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
}

.custom-item-table .feature-add-btn {
    margin-bottom: 3.6rem;
}

/* Dashboard */
.main-page .main-heading {
    margin-bottom: 2.4rem;
}

.main-page.main-content {
    padding-top: 5.6rem;
}

.recent-card {
    padding: 1.6rem 2.4rem;
    box-shadow: 0 .162rem .81rem 0 #0000000D;
    background-color: var(--white);
    border-radius: 1.5rem;
    text-align: center;
    height: 100%;
}

.recent-card img {
    max-height: 17rem;
    max-width: 25.9rem;
    object-fit: contain;
    width: 100%;
    margin-bottom: 2.4rem;
}

.recent-card a {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    margin: 0 auto 0.7rem;
    color: #D71921;
    text-decoration: none;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 25.9rem;
}

.recent-card p {
    color: var(--gray-70);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.282rem;
    margin: 0 auto;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 25.9rem;
}

.recent-card:hover a {
    text-decoration: underline;
}

.recent-product-slider {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.recent-product-slider .swiper-slide {
    height: unset;
}

.recent-product-slider .swiper-button-next,
.recent-product-slider .swiper-button-prev {
    position: unset;
    box-shadow: 0 .4rem 1rem 0 #0000001A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 4.4rem;
    min-width: 4.4rem;
    height: 4.4rem;
    background-color: var(--white);
    transition: all .4s ease-in-out;
}

.recent-product-slider .swiper-button-next img,
.recent-product-slider .swiper-button-prev img {
    width: 1.6rem;
    height: 1.6rem;
}

.recent-product-slider .swiper-button-next:hover,
.recent-product-slider .swiper-button-prev:hover {
    background-color: var(--gray-20);
}

.recent-product-slider .swiper-button-disabled {
    background-color: #D9DADB;
    opacity: 1;
}

.recent-product-slider .swiper-button-prev:after,
.recent-product-slider .swiper-button-next:after {
    content: unset;
}

.recent-product-slider .swiper-pagination {
    position: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.4rem 0;
    gap: 0.96rem;
}

.recent-product-slider .swiper-pagination-bullet {
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 !important;
    border-radius: 3.3rem;
    opacity: 1;
    background-color: #D9D9D9;
    transition: all .3s ease-in-out;
}

.recent-product-slider .swiper-pagination-bullet:hover {
    background-color: var(--gray-80);
}

.recent-product-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 4rem;
    background-color: var(--gray-70);
}

.overview-cards {
    row-gap: 2.4rem;
}

.overview-card {
    box-shadow: 0 .162rem .81rem 0 #0000000D;
    background-color: var(--white);
    border-radius: 1.9rem;
    display: flex;
    align-items: start;
    height: 100%;
    column-gap: 2.4rem;
    row-gap: 1.6rem;
    text-decoration: none;
    justify-content: space-between;
    padding: 2rem 3.6rem 2.4rem;
    transition: all .2s ease-in-out;
    cursor: default;
}

.overview-card:hover {
    background-color: var(--gray-20);
}

.overview-card .card-img {
    box-shadow: 0 .9rem 1.5rem 0 #00000026;
    width: 8.4rem;
    height: 8.4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    border-radius: 1.8rem;
    background: linear-gradient(95.63deg, #8C8C8C, #505050);
}

.overview-card .card-img img {
    max-width: 5.4rem;
    max-height: 5.4rem;
    object-fit: contain;
}

.card-img2 {
    background: linear-gradient(95.63deg, #F9D966 5.09%, #F5BF00 96.11%) !important;
}

.card-img3 {
    background: linear-gradient(95.63deg, #FEB17D 5.09%, #FB762A 96.11%) !important;
}

.card-img4 {
    background: linear-gradient(95.63deg, #94A5FF 5.09%, #4D69FF 96.11%) !important;
}

.card-img5 {
    background: linear-gradient(95.63deg, #6A91C2 5.09%, #07489A 96.11%) !important;
}

.card-img6 {
    background: linear-gradient(95.63deg, #68D9E7 5.09%, #03BFD7 96.11%) !important;
}

.card-img7 {
    background: linear-gradient(95.63deg, #7BCD66 5.09%, #23AC00 96.11%) !important;
}

.card-img8 {
    background: linear-gradient(95.63deg, #E7757A 5.09%, #D71921 96.11%) !important;
}

.overview-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: end;
    height: 100%;
}

.overview-card h5 {
    flex-grow: 1;
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    margin-top: 0.4rem;
}

.overview-card h4 {
    color: var(--gray-70);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 6.845rem;
    margin-bottom: -0.6rem;
}

.overview-card p {
    color: var(--gray-70);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.996rem;
}

/* User Profile */
.user-profile .main-actions {
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.user-listgrid-btns {
    display: flex;
}

.user-listgrid-btns .btn {
    border: none;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    width: 7.8rem;
    border: .15rem solid var(--gray-30) !important;
}

.user-listgrid-btns .btn:hover {
    background-color: #EAEAF0;
}

.user-listgrid-btns .btn:first-child {
    border-radius: .9rem 0 0 .9rem;
}

.user-listgrid-btns .btn:last-child {
    border-radius: 0 .9rem .9rem 0;
    border-left: none;
}

.user-listgrid-btns .btn img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.active-status::after {
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    background: linear-gradient(95.63deg, #7BCD66 5.09%, #23AC00 96.11%);
    inset: 0 auto 0 0;
    position: absolute;
    margin: auto;
}

.inactive-status::after {
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    background: linear-gradient(95.63deg, #FB762A 5.09%, #D71921 96.11%);
    inset: 0 auto 0 0;
    position: absolute;
    margin: auto;
}

.grid-view-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.3rem;
}

.grid-view-footer .dt-info {
    position: absolute;
    inset: 0 auto 0 0;
    margin: auto;
    height: fit-content;
}

.grid-view-footer .pagination {
    width: fit-content;
    margin: auto;
}

.user-grid-view {
    display: none;
}

.users {
    display: flex;
    flex-wrap: wrap;
    gap: 2.1rem;
}

.user-card {
    height: 23rem;
    border: .1rem solid var(--gray-50);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2rem;
    padding: 3.15rem 2.4rem;
    position: relative;
    width: calc(20% - 1.68rem);
    border-radius: .4rem;
}

.user-card h5 {
    color: var(--gray-90);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.282rem;
    margin: 0;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-card p {
    color: var(--gray-90);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.996rem;
    margin: 0;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-img {
    width: 10rem;
    height: 10rem;
    border-radius: 100%;
    background: linear-gradient(95.63deg, #E7757A, #D71921);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.user-img.active::after {
    content: '';
    position: absolute;
    inset: auto 1rem 1rem auto;
    margin: auto;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    background: linear-gradient(95.63deg, #7BCD66 5.09%, #23AC00 96.11%);
}

.user-img p {
    color: var(--white);
    font-size: 4rem;
    font-weight: 400;
    line-height: 5.704rem;
    margin: 0;
}

.user-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: contain;
}

.user-card .common-dropdown {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.user-card .common-dropdown .dropdown-menu {
    right: 0 !important;
    left: unset !important;
    padding: 0;
}

.user-card .common-dropdown .dropdown-menu a {
    padding: 1.2rem 1.6rem;
    min-width: 12rem;
}

.user-card .common-dropdown .btn::after {
    content: none;
}

.user-card .common-dropdown .btn {
    border: none !important;
}

.user-card .common-dropdown .btn:focus,
.user-card .common-dropdown .btn:hover {
    border: none;
    background-color: var(--gray-20);
}

.user-card .common-dropdown .btn img {
    max-width: 2.4rem;
}

.user-add-card {
    text-decoration: none;
    background-color: transparent;
    border: .2rem dashed var(--gray-70);
}

.user-add-card .user-img {
    background: transparent;
}

.user-add-card .user-img img {
    object-fit: contain;
    max-width: 3.6rem;
    max-height: 3.6rem;
}

.user-add-card h5 {
    color: var(--gray-70);
}

.user-add-box {
    display: flex;
    column-gap: 6.4rem;
    row-gap: 3.4rem;
}

.user-profile-img .profile-label {
    margin-bottom: 3.6rem;
    color: var(--gray-70);
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.852rem;
}

.user-profile-img .user-img {
    min-width: 24rem;
    min-height: 24rem;
    margin-bottom: 2.4rem;
}

.user-profile-img .user-img p {
    font-size: 6.4rem;
    line-height: 9.126rem;
}

.user-profile-img .btn {
    margin: auto;
}

.user-profile-detail {
    flex-grow: 1;
    padding-bottom: 2.4rem;
}

.user-profile-detail .user-label {
    margin-bottom: 0.8rem;
    color: var(--gray-70);
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.852rem;
    margin-top: 2.4rem;
}

.user-add-box .password-input{
    max-width: 50rem;
}

.user-add-box .input-parent{
    max-width: 51.4rem;
    padding-right: 1.4rem;
}

.user-img-upload .modal-dialog {
    max-width: 57.2rem;
    position: relative;
}

.user-img-upload .modal-header {
    padding: 0;
    margin-bottom: 2.4rem;
    border: none;
}

.toyoto-sso .btn{
    margin-top: 1.4rem;
}

.user-img-upload .btn-close {
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 3.6rem;
    height: 3.6rem;
    position: absolute;
    top: 2.3rem;
    right: 1.6rem;
    opacity: 1;
}

.user-img-upload .btn-close img {
    width: 100%;
    max-width: 2.8rem;
}

.user-img-upload .input-error{
    position: unset;
}

.user-img-upload .common-form-group{
    padding: 0;
}
.user-img-upload .btn-group .btn{
    max-width: unset;
}

.user-img-upload .modal-title {
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.toyoto-sso .input-parent{
    display: none;
}

.unlink-account-modal .modal-dialog{
    max-width: 43.2rem;
    text-align: center;
}

.unlink-account-modal .btn-group{
    flex-direction: column;
}
.unlink-account-modal .btn-group .btn{
    max-width: unset;
    width: 100%;
}

.unlink-account-modal h4 {
    margin-bottom: 1.2rem;
    color: #000000;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.unlink-account-modal .delete-img {
    margin-bottom: 0.8rem;
    max-width: 6.4rem;
}

.unlink-account-modal p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: #000000;
    margin-bottom: 3.6rem;
}

.user-img-upload .btn-secondary,
.unlink-account-modal .btn-secondary{
    color: var(--gray-90) !important;
    border-color: var(--gray-30);
}

.link-account-modal .modal-dialog{
    max-width: 47.2rem;
}

.link-account-modal .modal-content{
    padding: 6.4rem 5.6rem;
}

.link-account-modal img{
    margin-bottom: 3.6rem;
    max-width: 21.5rem;
    max-height: 7rem;
    width: 100%;
}

.link-account-modal h4{
    margin-bottom: 3.6rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.567rem;
}

.link-account-modal h5{
    margin-bottom: 3.6rem;
    color: #000000;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
}

.link-account-modal .btn{
    font-weight: 400;
}

.link-account-modal p{
    font-size: 1.4rem;
    line-height: 1.996rem;
    margin: 1.2rem 0 0;
}

.user-profile .user-label:first-child{
    margin: 2.4rem 0 1.2rem;
}

.user-profile .user-label:last-child{
    margin-bottom: 2.4rem;
}

.user-profile .user-label{
    margin: 0;
}

.toyota-sso-view{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.4rem;
}

.toyota-sso-view img{
    width: 3.6rem;
}

.toyota-sso-view p{
    margin: 0 !important;
}

.user-profile .user-img{
    margin-bottom: 0;
}

/* disabled form field */
.disabled-form-field {
    background-color: var(--gray-20) !important;
    border-color: var(--gray-60) !important;
    color: var(--gray-70) !important;
}
/*.fl-icon{*/
/*    height: 50% !important;*/
/*    width: 15% !important;*/
/*}*/
.fl-wrapper {
    z-index: 10000;
    width: 30em !important;
}

.fl-flasher .fl-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}
.fl-flasher .fl-message {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
}


/* Toast Message */

.toast-container .bg-success {
    background-color: #EAFDE6 !important;
    color: var(--green-70) !important;
    font-size: 18px !important;
    border-color: var(--green-70) !important;
}

.toast-container .bg-danger {
    background-color: #F8DADB !important;
    color: #810F14 !important;
    font-size: 18px !important;
    border-color: #810F14 !important;
}

.toast-container img {
    width: 30px !important;
}

.custom-toast-close-btn  {
    background: none !important;
    border: none !important;
}
.delete-banner-btn,
.delete-category-btn {
    visibility: hidden; /* Hide by default */
}

.add-price-modal .modal-dialog {
    max-width: 72rem;
    margin: auto;
}

.add-price-modal .common-select2 .select2-container {
    max-width: 100%;
}

.add-price-modal h4 {
    margin-bottom: 1.2rem;
    color: #000000;
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.add-price-modal .price-input .common-input {
    padding-left: 18.1rem;
}

.add-price-modal .common-form-group>label {
    max-width: 100% !important;
    padding-bottom: 0 !important;
}

.add-price-modal .common-form-group {
    row-gap: 1rem !important;
}

.add-price-modal #fileName {
    color: red;
    margin-right: 10px;
}

.add-price-modal #fileSize {
    color: grey;
}


.delete-modal p, .add-price-modal p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: #000000;
    margin-bottom: 3.6rem;
}

.delete-modal p span, .add-price-modal p span {
    color: #D71921;
}

.delete-modal .btn-group, .add-price-modal .btn-group {
    gap: 1rem;
}
.add-price-modal .btn {
    border-radius: .4rem;
    border: none !important;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.282rem;
}

.delete-modal .btn-secondary, .add-price-modal .btn-secondary {
    color: #000000;
    background-color: #E5E5E5;
}

.delete-modal .btn-secondary:hover, .add-price-modal .btn-secondary:hover {
    color: #000000 !important;
    background-color: #E5E5E5 !important;
}

.delete-modal .btn-primary, .add-price-modal .btn-primary {
    background: linear-gradient(95.63deg, #8C8C8C, #505050);
}
.breadcrumb .breadcrumb-item a {
    font-size: 16px !important;
    line-height: 20px;
    color: var(--red-50) !important;
}
.main-heading span {
    color: var(--red-50);
}
