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

html {
    font-size: 10px;
}

@font-face {
    font-family: Toyota Type;
    font-weight: 300;
    src: url(../font/ToyotaType-Light.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-style: italic;
    font-weight: 300;
    src: url(../font/ToyotaType-LightIt.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-weight: 400;
    src: url(../font/ToyotaType-Regular.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-style: italic;
    font-weight: 400;
    src: url(../font/ToyotaType-RegularIt.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-weight: 600;
    src: url(../font/ToyotaType-Semibold.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-style: italic;
    font-weight: 600;
    src: url(../font/ToyotaType-SemiboldIt.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-weight: 700;
    src: url(../font/ToyotaType-Bold.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-style: italic;
    font-weight: 700;
    src: url(../font/ToyotaType-BoldIt.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-weight: 900;
    src: url(../font/ToyotaType-Black.ttf);
}

@font-face {
    font-family: Toyota Type;
    font-style: italic;
    font-weight: 900;
    src: url(../font/ToyotaType-BlackIt.ttf);
}

body {
    font-family: "Toyota Type", sans-serif;
    background-color: #F8F8F8;
    font-size: 1.6rem;
}

: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;
    --red-50: #D71921;
}

.text-ellipsis{
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 37rem;
    width: 100%;
    display: block;
    margin: auto;
}

.color-success {
    color: #23AC00 !important;
}

.color-danger {
    color: #D71921 !important;
}

label {
    cursor: inherit;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    column-gap: 2.4rem;
    row-gap: 1.6rem;
}

.btn-secondary {
    gap: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem !important;
    color: var(--gray-70);
    background-color: var(--gray-30);
    border: .1rem solid var(--gray-50);
    padding: 1.2rem 2.4rem;
}

.btn-secondary:hover {
    background-color: var(--gray-50) !important;
    color: var(--gray-70) !important;
    border-color: var(--gray-50) !important;
}

.btn-group .btn-secondary {
    font-weight: 600;
}

.btn-group .btn-primary {
    font-weight: 700;
}

.btn-group .btn {
    max-width: fit-content;
    min-width: 12rem;
}

/* common-input */
.input-parent {
    position: relative;
    flex-grow: 1;
    min-width: 1px;
}

.input-parent .input-link-error a {
    color: #D71921;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    margin-left: auto;
    display: block;
    width: fit-content;
    flex-shrink: 0;
}

.input-parent .input-link-error a:hover{
    text-decoration: underline;
}

.input-link-error{
    margin-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    gap: 2.2rem;
}

.input-link-error .input-error{
    position: unset;
}

.common-input {
    padding: 1.9rem 2.4rem;
    border: 0.1rem solid var(--gray-60);
    border-radius: 0.8rem;
    background: transparent !important;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    max-width: 50rem;
    color: var(--gray-70) !important;
}

.common-input::placeholder {
    color: rgb(115, 118, 119, .5);
}

.common-input:focus {
    box-shadow: none;
    border-color: var(--gray-60);
}

.input-error {
    font-size: 1.6rem;
    color: #D71921;
    position: absolute;
}

.input-icon {
    max-width: 4.8rem;
    position: absolute;
    right: 2.4rem;
    top: 0.8rem;
    z-index: 0;
}

.input-icon img {
    width: 100%;
}

.common-text-editor .ck.ck-reset.ck-editor.ck-rounded-corners {
    max-width: 50rem;
}

.common-text-editor .ck-sticky-panel__content {
    border-color: var(--gray-60) !important;
    border-radius: .8rem .8rem 0 0 !important;
    min-height: 5.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.common-text-editor .ck-restricted-editing_mode_standard {
    height: 25rem !important;
    overflow: auto !important;
    padding: 1.2rem !important;
    border-color: var(--gray-60) !important;
    border-top-color: #E7E9E9 !important;
    box-shadow: none !important;
    border-radius: 0 0 .8rem .8rem !important;
}

.common-text-editor .ck.ck-icon path {
    fill: var(--gray-70) !important;
}

.common-text-editor .ck.ck-toolbar {
    background-color: transparent !important;
}

.common-text-editor .ck-placeholder,
.common-text-editor .ck-restricted-editing_mode_standard p {
    color: var(--gray-70) !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    line-height: 2.567rem !important;
    margin-top: 0 !important;
}

.common-text-editor .ck-restricted-editing_mode_standard p.ck-placeholder {
    opacity: .5 !important;
}

.ck-powered-by,
.ck-powered-by-balloon {
    display: none !important;
}

.ck.ck-icon {
    max-width: 2rem;
}

.common-text-editor .ck.ck-button {
    border: none !important;
    box-shadow: none !important;
}

.common-text-editor .ck.ck-button.ck-on,
a.ck.ck-button.ck-on {
    background: var(--gray-20) !important;

}

.common-text-editor .ck.ck-button.ck-on path,
a.ck.ck-button.ck-on path {
    fill: var(--gray-70) !important;
}

.common-text-editor .ck-restricted-editing_mode_standard:focus {
    border-color: var(--gray-60) !important;
}

.price-input .price-label {
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    padding: 1.9rem 2.4rem;
    min-height: 6.4rem;
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    border-right: 0.1rem solid var(--gray-60);
    transition: border-color .15s ease-in-out;
}

.price-input .common-input:focus+.price-label {
    border-color: var(--orange-50);
}

.price-input .common-input {
    padding-left: 9.1rem;
}

/* Common Color Picker */
.common-color-picker input {
    appearance: none;
    width: 3.6rem;
    height: 3.6rem;
    cursor: pointer;
    border: none;
    box-shadow: none;
    outline: none;
}

.common-color-picker .clr-field button {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 100%;
    border: 0.2rem solid #737677;
}

.clr-picker.clr-polaroid:before {
    content: none;
}

.clr-polaroid .clr-gradient {
    width: 100%;
    height: 16.5rem;
    margin: 0 0 2.4rem;
    border-radius: 0;
}

.clr-polaroid .clr-preview {
    display: none;
}

.clr-polaroid input.clr-color {
    width: 100%;
    height: 4.2rem;
    margin: 2.4rem 0 0;
    border: .1rem solid var(--gray-50);
    border-radius: 1.2rem;
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.clr-segmented label {
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.clr-segmented input:checked+label {
    background-color: var(--gray-20);
    color: var(--gray-70);
}

.clr-segmented {
    height: 4.2rem;
    border: .1rem solid var(--gray-50);
    border-radius: 1.2rem;
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.clr-polaroid .clr-format {
    margin: 2.4rem 0;
    width: 100%;
}

.clr-picker.clr-polaroid {
    max-width: 35.8rem;
    width: 100%;
    box-shadow: .4rem .4rem 2rem 0 #0000000D;
    border-radius: 1.2rem;
    border: .2rem solid var(--gray-50);
    bottom: calc(100% + 1rem);
    top: unset !important;
    padding: 2.4rem;
}

.clr-polaroid .clr-swatches button {
    margin: 0;
    width: 3.6rem;
    height: 3.6rem;
}

.clr-polaroid .clr-swatches div {
    padding: 0;
    column-gap: 1.8rem;
    row-gap: 1.2rem;
}

.clr-swatches div {
    justify-content: start;
}

.clr-polaroid .clr-swatches {
    width: 100%;
    margin: 0;
}

.clr-swatches button:after {
    border-color: var(--gray-50);
}

/* common checkbox */
.common-checkbox label {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: fit-content;
    cursor: pointer;
    user-select: none;
}

.common-checkbox input {
    cursor: pointer;
    position: relative;
    width: 2.4rem;
    min-width: 2.4rem;
    height: 2.4rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.common-checkbox input::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.2rem solid var(--gray-60);
    background: var(--white);
    border-radius: .4rem;
}

.common-checkbox input:not(:checked)::after {
    scale: 0;
}

.common-checkbox input::after {
    content: "";
    background: #E7757A;
    height: 1.4rem;
    width: 1.4rem;
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: .2rem;
}

.common-checkbox span {
    color: var(--gray-60);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
}

/* Common Radio */
.common-radio {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.common-radio label {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.567rem;
    color: rgb(115 118 119 / 70%);
    cursor: pointer;
}

.common-radio input {
    appearance: none;
    background-color: #ffffff;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.2rem solid var(--gray-60);
    margin: 0;
    border-radius: 100%;
    position: relative;
    cursor: pointer;
}

.common-radio input::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    transform: scale(0);
    background: #E7757A;
}

.common-radio input:checked::before {
    transform: scale(1);
}

/* Select2 */
.common-select2 .select2-container {
    max-width: 50rem;
    width: 100% !important;
}

.select2-search__field,
.common-select2 .select2-container--default .select2-selection .select2-selection__rendered {
    font-size: 1.8rem !important;
    font-weight: 400;
    line-height: 2.567rem;
    margin-top: 0 !important;
    color: var(--gray-70) !important;
}

.select2-selection--multiple .select2-selection__choice__display {}

/* .select2-selection--multiple .select2-selection__rendered {
  min-height: 3.4rem;
  height: fit-content;
} */

/* .select2-selection--multiple .select2-search__field {
  margin-left: 1.2rem !important;
} */

/* .common-select2 .select2-selection.select2-selection--multiple {
  padding: 0.4rem 0.4rem 1.2rem 1.2rem !important;
} */

/* .select2-selection--multiple .select2-selection__rendered {
  margin: 0 !important;
} */

/* .select2-search.select2-search--inline {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.567rem;
  list-style: none;
  margin-top: 0.8rem;
} */

.common-select2 .select2-container--default .select2-selection--multiple.select2-selection {
    padding: 0.4rem 0.4rem 1.2rem 1.2rem;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    vertical-align: top;
}

.select2-selection--multiple .select2-search__field {
    height: 3.7rem !important;
    line-height: 4.766rem;
    transform: translateY(0.4rem);
    font-family: inherit !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: transparent;
    padding: 0.8rem 0.8rem 0 0;
    margin: 0;
    border: none;
    position: relative;
}

.select2-container--default .select2-selection--multiple>.select2-search {
    display: inline-block;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    display: inline-flex;
    align-items: center;
    border: none;
    border-radius: .4rem;
    border: none;
    background: linear-gradient(95.63deg, #E7757A 5.09%, #D71921 96.11%);
    gap: 1rem;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    padding: 0.4rem 4rem 0.4rem 1.2rem;
    list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    position: absolute;
    right: 1.2rem;
    top: 0;
    bottom: 0;
    left: unset;
    margin: auto;
    color: var(--white);
    padding: 0;
    width: 1.8rem;
    height: 1.8rem;
    border: none;
    background-color: transparent !important;
    transform: translateY(0.4rem);
}

/* .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding: 0;
} */

.select2-selection__choice__remove::after {
    content: '';
    background: url(../images/icons/close-light-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.select2-selection__choice__remove span {
    display: none;
}

.common-input,
.common-select2 .select2-container .select2-selection {
    min-height: 6.4rem !important;
}

.common-select2 .select2-search__field::placeholder,
.common-select2 .select2-selection__placeholder {
    color: rgb(115, 118, 119, .5) !important;
}

.common-select2 .select2-container--default .select2-selection {
    padding: 1.9rem 2.4rem;
    border: 0.1rem solid var(--gray-60);
    border-radius: 0.8rem !important;
    background: transparent !important;
}

.common-select2 .select2-container .select2-selection {
    height: auto;
}

.common-select2 .select2-container--default .select2-selection .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 2.0rem;
    width: 1.1rem;
}

.common-select2 .select2-container--default .select2-selection .select2-selection__arrow b {
    border-color: var(--gray-70) transparent transparent transparent;
    border-width: 0.7rem 0.7rem 0 0.7rem;
    inset: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
}

.common-select2 .select2-dropdown {
    overflow: hidden;
    border: .1rem solid var(--gray-60);
}

.common-select2 .select2-container--open .select2-dropdown--above {
    border-radius: 0.8rem;
    transform: translateY(-0.4rem);
}

.common-select2 .select2-container--default.select2-container--open .select2-selection .select2-selection__arrow b {
    border-color: transparent transparent var(--gray-70) transparent;
    border-width: 0 0.7rem 0.7rem 0.7rem;
}

.common-select2 .select2-container--open .select2-dropdown--below {
    margin-top: 0.4rem;
    border-radius: .8rem;
}

.common-select2 .select2-search--dropdown {
    padding: 1rem;
}

.common-select2 .select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 0.6rem;
    padding: 0.8rem;
    outline: none;
}

.common-select2 .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--gray-80);
}

.common-select2 .select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #E7E7E7;
}

.common-select2 .select2-search--dropdown .select2-search__field {
    padding: 1rem 2.0rem;
}

.common-select2 .select2-search--dropdown .select2-search__field {
    font-size: 1.6rem;
    font-weight: 400;
    color: #222328;
}

.common-select2 .select2-results__option {
    padding: 1.8rem 2.4rem;
    color: var(--gray-70);
    font-size: 1.8rem;
    line-height: 2.567rem;
}

.common-select2 .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--gray-30);
    color: var(--gray-80);
}

.common-select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

/* Common Datepicker */
.common-datepicker {
    position: relative;
    flex-grow: 1;
    min-width: 1px;
    max-width: 50rem;
    width: 100%;
}

.common-datepicker .common-input {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.datepicker-dropdown:before,
.datepicker-dropdown:after {
    content: none;
}

.datepicker table{
    width: 100%;
}

.datepicker.dropdown-menu {
    padding: 2.6rem 3.6rem;
    border: none;
    box-shadow: 0px 4px 20px 0px #0000000D;
    border-radius: 1.6rem;
    margin-block: 0.4rem;
    max-width: 48rem;
    width: 100%;
}

.datepicker-days td {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.567rem;
    position: relative;
}

.datepicker-days td.active::after,
.datepicker-days td:hover::after{
    z-index: -1;
    content: '';
    position: absolute;
    inset: 0;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    margin: auto;
    background-color: #FBEBEA;
}

.datepicker-days td.active::after{
    background-color: var(--orange-70);
}

.datepicker-days td.active,
.datepicker-days td:hover {
    background-color: transparent !important;
    background-image: none !important;
}

.datepicker .datepicker-switch {
    color: var(--gray-70);
    font-size: 2.4rem !important;
    font-weight: 600 !important;
    line-height: 3.422rem;
}

.datepicker .dow {
    text-transform: uppercase;
    color: var(--gray-70);
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    line-height: 2.567rem;
}

.datepicker .old.day {
    color: var(--gray-50) !important;
}

.datepicker-switch {
    padding: 1.2rem;
}

.datepicker-switch:hover {
    background-color: #FDF3F3 !important;
}

.datepicker .next,
.datepicker .prev {
    position: relative;
}

.datepicker .next::before,
.datepicker .prev::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1;
}

.datepicker .next::after,
.datepicker .prev::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    width: 2.4rem;
    height: 2.4rem;
    margin: auto;
    z-index: 2;
}

.datepicker .next::after {
    background: url(../images/icons/next-icon.svg);
    right: 0;
}

.datepicker .prev::after {
    background: url(../images/icons/prev-icon.svg);
    left: 0;
}

.datepicker .next:hover,
.datepicker .prev:hover {
    background-color: transparent !important;
}

.datepicker-centuries .century,
.datepicker-decades .decade,
.datepicker-years .year,
.datepicker-months .month {
    width: 8.4rem;
    height: 8.4rem;
    margin: 0 0.9rem .6rem;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
}

.datepicker-centuries .century.focused,
.datepicker-decades .decade.focused,
.datepicker-years .year.focused,
.datepicker-months .month.focused {
    background-color: var(--orange-60);
    color: var(--white);
}

.datepicker-centuries .century.focused:hover,
.datepicker-centuries .century:hover,
.datepicker-decades .decade.focused:hover,
.datepicker-decades .decade:hover,
.datepicker-years .year.focused:hover,
.datepicker-years .year:hover,
.datepicker-months .month.focused:hover,
.datepicker-months .month:hover {
    background-color: #FDF3F3 !important;
    color: var(--gray-70);
}

.datepicker-centuries table tr td span.active.active,
.datepicker-centuries table tr td.active,
.datepicker-centuries table tr td.active:hover,
.datepicker-decades table tr td span.active.active,
.datepicker-decades table tr td.active,
.datepicker-decades table tr td.active:hover,
.datepicker-years table tr td span.active.active,
.datepicker-years table tr td.active,
.datepicker-years table tr td.active:hover,
.datepicker-months table tr td span.active.active,
.datepicker-months table tr td.active,
.datepicker-months table tr td.active:hover {
    background-color: var(--orange-60) !important;
    background-image: none;
    color: #fff;
}

.datepicker-centuries td,
.datepicker-decades td,
.datepicker-years td,
.datepicker-months td {
    padding: 0 !important;
}

/* Common Dropdown */
.common-dropdown .dropdown-menu {
    box-shadow: 0 0.4rem 2rem 0 #0000000D;
    border-radius: 0.4rem;
    border: none;
    border: 1px solid var(--gray-30);
    padding: 0.8rem 0;
}

.common-dropdown .dropdown-menu a {
    color: var(--gray-80);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    padding: 1.2rem 3.6rem;
    min-width: 20rem;
}

.common-dropdown .dropdown-menu a:hover {
    background-color: var(--gray-20);
    color: var(--gray-80);
}

/* Common Elements */
.btn-primary {
    gap: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem !important;
    background: linear-gradient(95.63deg, #8C8C8C, #505050);
    color: var(--white);
    border: 0.1rem solid #F8F8F8 !important;
    padding: 1.2rem 2.4rem;
    font-weight: 400;
    line-height: 2.3rem;
    font-size: 1.6rem;
}

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

.btn-primary img {
    width: 2rem;
}

.btn-outline-primary{
    font-weight: 600;
    border: .2rem solid var(--gray-90);
    color: var(--gray-90);
}

.btn-outline-primary:hover{
    border: .2rem solid var(--gray-90) !important;
    color: var(--gray-90) !important;
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    line-height: 2rem;
}

.btn-sm img {
    width: 1.6rem;
}

.btn-lg {
    padding: 1.2rem 2.4rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
}

.btn-lg img {
    width: 2.4rem;
}

.main-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 2.4rem;
    row-gap: 1.6rem;

    margin-bottom: 3.1rem;
}

.main-heading h1 {
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.4rem;
    margin: 0;
}

.main-heading .table-actions {
    gap: 1.2rem;
}

.main-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 2.4rem;
    row-gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.main-actions .main-search {
    background-color: var(--white);
    max-width: 40.2rem;
}

.main-actions .main-search input {
    height: 6rem;
    padding: 1.7rem 3.2rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.6rem;
}

.main-actions .main-search img {
    width: 2.8rem;
}

.border-box {
    border: .2rem solid #D0D1D2;
    padding: 3.6rem 6.4rem 4.8rem;
    background-color: var(--white);
    margin-bottom: 2.4rem;
}

.box-update {
    padding: 3.6rem 4.8rem;
    background-color: var(--gray-10);
}

.box-update p {
    color: var(--gray-70);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.422rem;
    margin-bottom: 0;
}

.common-form-group {
    display: flex;
    flex-wrap: wrap;
    column-gap: 18rem;
    row-gap: 1.8rem;
    align-items: center;
    padding: 3.6rem 0;
}

.common-form-group p:not(:first-child) {
    max-width: 70rem;
    width: 100%;
}

.common-form-group>p,
.common-form-group>label {
    color: var(--gray-70);
    font-size: 2.4rem;
    margin: 0;
    font-weight: 400;
    line-height: 3.4224rem;
    max-width: 18rem;
    width: 100%;
    padding: 1rem 0;
}
.display-description {
    max-width: 70rem;
    width: 100%;
    color: var(--gray-70);
    font-size: 2.4rem;
    margin: 0;
    font-weight: 400;
    line-height: 3.4224rem;
    padding: 1rem 0;
}
.border-bottom {
    border-bottom: .1rem solid #E7E9E9 !important;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.2;
    z-index: 1053;
}

/* Table */
.common-table {
    position: relative;
}

.table-actions {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    justify-content: center;
}

.table-actions .btn {
    width: 4.8rem;
    height: 4.8rem;
    padding: 0;
}

.action-table .btn,
.table-dlt-btn {
    background: var(--gray-30) !important;
}

.action-table .btn:hover,
.action-table .btn:active,
.table-dlt-btn:focus,
.table-dlt-btn:active,
.table-dlt-btn.show,
.table-dlt-btn:hover {
    background: var(--gray-50) !important;
}

.common-table .row:nth-child(2) {
    overflow: auto;
    margin-top: 0 !important;
}

.common-table .row:first-child {
    display: none;
}

.common-table table {
    border-radius: 0.4rem 0.4rem 0 0;
    background-color: var(--white);
}

.common-table .table>:not(caption)>*>* {
    border-color: var(--gray-30);
}

.common-table th {
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.7rem;
    text-transform: uppercase;
    padding: 2.4rem 2.2rem !important;
    border: none;
    outline: none !important;
    text-wrap: nowrap;

}

.common-table .action-table th {
    padding: 1.35rem 2.2rem !important;
    min-width: 22.65rem;
}

.action-table {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: none;
}

.common-table th.dt-orderable-asc,
.common-table th.dt-orderable-desc,
.common-table td.dt-orderable-asc,
.common-table td.dt-orderable-desc {
    padding-right: 4.6rem !important;
}

.common-table td {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: var(--gray-80);
    padding: 1rem 2.2rem;
    height: 10rem;
    vertical-align: middle;
}

.common-table th:last-child {
    border-top-right-radius: .4rem;
}

.common-table th:first-child {
    border-top-left-radius: .4rem;
}

.common-table .dt-column-order {
    right: unset !important;
    transform: translateX(0.8rem);
}

.common-table .dt-orderable-asc .dt-column-order::after {
    top: calc(50% + 0.2rem) !important;
    border-width: 0.7rem 0.7rem 0 0.7rem;
    content: '' !important;
    border-color: var(--gray-70) transparent transparent transparent;
    opacity: .5 !important;
    border-style: solid;
}

.common-table .dt-orderable-asc .dt-column-order:before {
    bottom: calc(50% + 0.2rem) !important;
    border-width: 0 0.7rem 0.7rem 0.7rem;
    content: '' !important;
    opacity: .5 !important;
    border-color: transparent transparent var(--gray-70) transparent;
    border-style: solid;
}

.common-table table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
.common-table table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before {
    opacity: 1 !important;
}

.common-table .page-link.last,
.common-table .page-link.first {
    display: none;
}

.common-table .row:last-child {
    flex-direction: column;
    margin-top: 3.2rem !important;
    position: relative;
    align-items: center;
    row-gap: 2rem;
}

.common-table .row:last-child .col-md-auto:last-child {
    margin: auto;
    padding: 0;
}

.common-table .row:last-child .col-md-auto:first-child {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0;
    bottom: 0;
    margin: auto;
}

.common-table .dt-info {
    padding: 0 !important;
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
}

.common-table .page-item .page-link {
    color: var(--gray-70);
    background-color: var(--white);
    font-size: 1.728rem;
    font-weight: 400;
    line-height: 2.464rem;
    text-align: center;
    padding: 1.6rem 2.2rem;
    box-shadow: none !important;
    border: 0.2rem solid var(--gray-30);
    height: 5.7rem;
}

.common-table .page-item .page-link img {
    max-width: 1.6rem;
    width: 100%;
}

.page-item:not(:first-child) .page-link {
    border-left-width: .1rem;
}

.common-table .page-item.active .page-link,
.common-table .page-item .page-link:hover {
    background: var(--gray-20);
}

.page-link.previous {
    border-radius: .8rem 0 0 .8rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
}

.page-link.next {
    border-radius: 0 .8rem .8rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
}

.common-table tbody tr.selected:not(.action-tr) td:not(.dt-empty),
.common-table tbody tr:hover:not(.action-tr) td:not(.dt-empty) {
    background-color: #F8F8F8;
    box-shadow: none;
    color: var(--gray-80);
}

.action-tr.selected td {
    box-shadow: none !important;
}

table.dataTable th.dt-empty,
table.dataTable td.dt-empty {
    vertical-align: middle;
}

.action-tr {
    display: none;
}

.thead-checkbox .common-checkbox {
    display: inline-flex;
}

.carshow-img {
    max-width: 3.6rem;
    width: 100%;
}

/* Common File Uploader */
.file-upload {
    max-width: 50rem;
    background-color: var(--gray-10);
    border: 0.1rem solid var(--gray-60);
    border-radius: 1.4rem;
    height: 28rem;
    display: flex;
    overflow: hidden;
}

.file-upload.active {
    border-color: var(--orange-50);
    background-color: var(--white);
}

.file-upload.has-img {
    border-color: transparent;
    background-color: transparent;
}

.file-upload>label {
    width: 100%;
}

.file-uplaod-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.file-uplaod-placeholder>img {
    max-width: 100%;
    width: 6.6rem;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.file-uplaod-placeholder>p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.2rem;
    text-align: center;
    color: var(--gray-60);
    cursor: text;
}

.file-upload-action-btn {
    max-width: 70rem;
    margin-block: 2.4rem;
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.file-upload-action-btn .btn-secondary {
    padding-inline: 4.2rem;
}

.file-upload-action-btn .btn-primary {
    font-weight: 700;
    white-space: nowrap;
}

.file-upload-help-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    font-style: italic;
    color: var(--gray-70);
    opacity: 0.7;
    margin-bottom: 0;
}

.uploaded-file-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: #D71921;
    margin-bottom: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 1px;
}

.uploaded-file-text .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.uploaded-file-text .file-size {
    color: #000000;
    margin-left: 0.4rem;
}

.uploaded-file-preview {
    display: none;
    width: 100%;
}

.uploaded-file-preview>img {
    max-width: 100%;
    width: 100%;
    height: fit-content;
    max-height: 100%;
    object-fit: contain;
}

.multifile-parent {
    max-width: calc(100% - 38rem);
    width: 100%;
}

.multifile-add-btn {
    display: flex;
    justify-content: end;
    margin-bottom: 2.4rem;
}

.multifile-add-btn .btn {
    background: var(--white);
    color: var(--orange-60);
    border: 0.3rem dashed var(--orange-60) !important;
    font-weight: 600;
}

.multifile-preview-card {
    padding: 2.4rem;
    display: flex;
    gap: 6.4rem;
    border-radius: 2.4rem;
    position: relative;
    margin-bottom: 2rem;
}

.multifile-preview-card.active,
.multifile-preview-card:hover {
    background-color: #FDF3F3;
}

.multifile-parent-view .multifile-drag-card {
    cursor: default !important;
}

.multifile-parent-view .multifile-preview-card:not(.active) {
    background-color: var(--white);
}

.multifile-preview-order {
    padding-top: 5.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.multifile-drag-card {
    width: 3.6rem;
    height: 3.6rem;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: move !important;
}

.multifile-drag-card>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.multifile-number {
    display: inline-block;
    width: 4.2rem;
    height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    background-color: var(--gray-30);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    text-align: center;
    color: var(--gray-70);
}

.multifile-preview-content {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    flex-grow: 1;
    min-width: 1px;
}

.multifile-preview-content>img {
    max-width: 30rem;
    width: 100%;
    max-height: 19.6rem;
    object-fit: contain;
}

.multifile-preview-content .table-actions {
    margin-left: auto;
}

.main-asset-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    text-align: center;
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 0.4rem;
    background: linear-gradient(95.63deg, #E7757A 5.09%, #D71921 96.11%);
}

.multi-file-uploader {
    max-width: calc(100% - 38rem);
}

.file-sel-box {
    height: 28rem;
    max-width: 50rem;
    background-color: var(--gray-10);
    border: 0.1rem solid var(--gray-60);
    border-radius: 1.4rem;
    display: flex;
    overflow: hidden;
}

.file-uploader>input[multiple]+.file-up-container.file-selected .file-sel-box {
    height: auto;
    max-width: none;
    border-radius: 0;
    justify-content: end;
}

.file-up-container.file-selected .file-sel-box {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
}

.file-sel-box.file-drag-over {
    border-color: var(--orange-50) !important;
    background-color: var(--white) !important;
}

.file-up-label {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-up-container.file-selected .file-sel-box .file-up-label {
    display: none;
}

.file-up-label>img {
    width: 6.6rem;
    max-width: 100%;
    margin-bottom: 0.8rem;
}

.file-up-label>p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.2rem;
    text-align: center;
    color: var(--gray-60);
}

.file-add-label {
    display: none;
    background: var(--white) !important;
    color: var(--gray-70) !important;
    border: 0.3rem dashed var(--gray-70) !important;
    font-weight: 600;
}

.file-add-label:hover {
    background: var(--gray-20) !important;
}

.file-up-container.file-selected .file-add-label {
    display: flex;
}

.file-sel-box .file-prev {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-up-container:not(.file-selected) .file-prev {
    display: none;
}

.file-uploader>input[multiple]+.file-up-container .file-prev {
    margin-top: 2.4rem;
}

.file-sel-box .file-prev img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.bg-file-uploader .file-prev img {
    object-fit: cover;
}
.file-uploader>input[multiple]+.file-up-container.file-selected .input-error {
    text-align: right;
    right: 0;
}

.file-uploader>input[multiple]+.file-up-container.file-selected .file-up-action {
    display: none;
}

.file-uploader-view .file-drag {
    cursor: default;
}

.file-up-action {
    max-width: 70rem;
}

.file-details {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-block: 2.4rem;
}

.file-details>.btn {
    flex-shrink: 0;
}

.file-details .btn-secondary {
    padding-inline: 4.2rem;
}

.file-details .btn-primary {
    font-weight: 700;
}

.file-info {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    color: #D71921;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 1px;
    white-space: nowrap;
    max-width: unset !important;
}

.file-info .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-info .file-size {
    color: var(--black);
    margin-left: 0.4rem;
}

.file-sup-formats {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    font-style: italic;
    color: var(--gray-70);
    opacity: 0.7;
    margin-bottom: 0;
}

.file-prev-card {
    border: 0.2rem solid transparent;
    display: flex;
    gap: 6.4rem;
    position: relative;
}

.file-prev-card:last-child {
    margin-bottom: 0;
}

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

.file-prev-card,
.ui-state-highlight {
    background-color: var(--white);
    padding: 2.4rem;
    border-radius: 2.4rem;
    margin-bottom: 2rem;
}

.custom-table .ui-state-highlight {
    border-radius: 0 !important;
    padding: 2.6rem 0 !important;
    margin: 1rem 0 !important;
}

.ui-state-highlight {
    border: 0.2rem dashed var(--gray-60);
}

.file-prev-main-asset {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.422rem;
    text-align: center;
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 0.4rem;
    background: linear-gradient(95.63deg, #E7757A 5.09%, #D71921 96.11%);
}

.file-prev-order {
    padding-top: 5.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-height: 20rem;
}

.file-drag {
    width: 3.6rem;
    height: 3.6rem;
    cursor: move;
}

.file-drag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.file-no {
    width: 4.2rem;
    height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    background-color: var(--gray-30);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    text-align: center;
    color: var(--gray-70);
}

.file-prev-info {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    flex-grow: 1;
    min-width: 1px;
}

.file-prev-info>img {
    width: 30rem;
    height: 19.6rem;
    object-fit: contain;
    flex-shrink: 0;
}

.file-prev-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.file-prev-action .btn {
    width: 4.8rem;
    height: 4.8rem;
    padding: 0;
}

.file-prev-del {
    background: var(--gray-30);
}

.file-prev-del:hover {
    background: var(--gray-50) !important;
}

.file-alt-text {
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
    margin: 0;
}

.file-alt-text:not(:last-child) {
    margin: 2.4rem 0 .8rem;
}

.image-alt-text {
    padding-top: 2.4rem;
}

.image-alt-text label {
    margin: 0 0 .8rem .8rem;
    color: var(--gray-70);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.567rem;
}

/* Badge */
.multiple-badge {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.2rem;
    row-gap: .8rem;
}

.multi-badge {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.64rem;
    background: linear-gradient(95.63deg, #E7757A 5.09%, #D71921 96.11%);
    padding: 0.4rem 1.2rem;
    border-radius: .4rem;
}

/* Alert */
.alert{
    position: fixed;
    display: flex;
    align-items: center;
    column-gap: 2.4rem;
    row-gap: 1.4rem;
    border-radius: 0;
    left: 0;
    right: 0;
    max-width: 74.8rem;
    background: #00000080;
    padding: 2.5rem 4.8rem;
    margin: auto;
    border-width: 0 0 .4rem 0;
    border-bottom: 0.4rem solid;
    border-image: linear-gradient(to left, #D71921, #FB762A) 1 0;
    transition: all .4s ease-in-out;
    z-index: 1051;
    bottom: -11.6rem;
}

.alert.show{
    bottom: 2.4rem;
}

.alert p{
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.282rem;
    color: var(--white);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.alert a{
    color: var(--white);
}

.alert .btn{
    text-wrap: nowrap;
    border: none !important;
    font-weight: 700;
}

.alert .btn.btn-light{
    border: .2rem solid var(--white) !important;
    color: var(--white);
    background: none;
    font-weight: 400;
}

.alert .btn.btn-light:hover{
    background: rgb(255, 255, 255, .2);
}

.active-status, .inactive-status {
    color: var(--gray-90);
    padding-left: 2.6rem;
    position: relative;
}

.car-nav .nav-link {
    color: var(--gray-70);
    font-size: 2.4rem;
    margin: 0;
    font-weight: 400;
    line-height: 3.4224rem;
    padding: 1rem 0;
}

.car-nav .nav-link.active {
    font-weight: 600;
    border-bottom: 3px solid #D71921 !important;
}

.pdf-form {
    align-items: normal;
}

.pdf-details {
    margin-top: 0;
}
.csv-error {
    font-size: 1.8rem;
    color: #D71921;
}
#manage_article_table th:nth-child(3),
#manage_article_table td:nth-child(3) {
    text-align: left !important;
}

.manage-article .common-textarea {
    max-width: 95% !important;
}

.manage-article .category-section {
    background-color: var(--gray-10);
    border-top: 1px solid var(--gray-30);
    border-bottom: 1px solid var(--gray-30);
}

.category-content .common-form-group {
    column-gap: 1rem !important;
}

.category-content .delete-category-btn {
    padding: 1.8rem 2.4rem !important;
}

.manage-article .common-text-editor .ck.ck-reset.ck-editor.ck-rounded-corners {
    max-width: 95% !important;
}

.manage-article .common-text-editor .ck-sticky-panel__content {
    justify-content: left !important;
}
#editDateIcon {
    visibility: hidden;
    width: 10px;
    height: 10px;
    background-color:var(--gray-70);
}

#otrDateContainer:hover #editDateIcon {
    visibility: visible; /* Show the icon when hovering over the date */
    cursor: pointer;
}
#otrDateContainer sup {
    top: -1.1em !important;
}
.otr-label{
    color:var(--gray-70);
    display: block;
    text-align: left;
    font-size: 1.3em;
}
