/*----------------------------------------------------------
Main Stylesheet for Cheat
Version: 1.0

STYLE CASE - COLOR
PRIMARY → null
SECONDARY → null
BLACK → null
WHITE → null
-----------------------------------------------------------*/

/* DESIGN TEXT */
.bold {
    font-weight: 600;
}

.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}

.w-100 {
    width: 100%;
}
.w-90 {
    width: 90%;
}
.w-80 {
    width: 80%;
}
.w-75 {
    width: 75%;
}
.w-50 {
    width: 50%;
}
.w-25 {
    width: 25%;
}

.min-h-280 {
    min-height: 280px;
}


.italic {
    font-style: italic;
}
.uppercase {
    text-transform: uppercase;
}
.underline {
    text-decoration: underline;
}

.fs-10 {
    font-size: 10px;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-28 {
    font-size: 28px;
}
.fs-30 {
    font-size: 30px;
}
.fs-32 {
    font-size: 32px;
}
.fs-34 {
    font-size: 34px;
}
.fs-36 {
    font-size: 36px;
}
.fs-38 {
    font-size: 38px;
}
.fs-40 {
    font-size: 40px;
}
.fs-42 {
    font-size: 42px;
}
.fs-44 {
    font-size: 44px;
}
.fs-46 {
    font-size: 46px;
}
.fs-48 {
    font-size: 48px;
}
.fs-64 {
    font-size: 64px;
}

/* ESPACEMENT */
.no-margin-impt {
    margin: 0 !important;
}
.no-padding-impt {
    padding: 0 !important;
}
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.no-margin-top {
    margin-top: 0 !important;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}
.no-margin-left {
    margin-left: 0 !important;
}
.no-margin-right {
    margin-right: 0 !important;
}

/* POSITIONNEMENT */
.d-none {
    display: none !important;
}
.d-grid {
    display: grid !important;
}
.d-flex {
    display: flex !important;
}
.flex-center {
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-self: center;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
}
.flex-start {
    display: flex;
    justify-content: flex-start;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-around {
    display: flex;
    justify-content: space-around;
}
.flex-evenly {
    display: flex;
    justify-content: space-evenly;
}
.flex-items-center {
    display: flex;
    align-items: center;
}
.flex-items-start {
    display: flex;
    align-items: flex-start;
}
.self-center {
    display: flex;
    align-self: center;
}
.as-center {
    align-self: center;
}
.as-flex-start {
    align-self: flex-start;
}
.jc-center {
    justify-content: center;
}

.text-start {
    text-align: start;
}
.text-end {
    text-align: end;
}
.text-justify {
    text-align: justify;
}
/* .text-center {
    text-align: center;
} */
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}

.text-male {
    color: #029EF6;
}
.text-female {
    color: #E547A1;
}
.text-disable {
    color: #74788d!important;
    opacity: 0.8;
    cursor: default!important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cursor-pointer {
    cursor: pointer;
}

/* ALERT */
.alert-margin-i,
.alert i {
    margin-right: 10px;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-heading {
    color: inherit;
}
.alert-link {
    font-weight: 700;
    transition: all .4s ease;
}
.alert-link:hover {
    opacity: 0.6;
    transition: all .4s ease;
}

.alert-success {
    background-color: #e0ffef;
    color: #43d39e;
    border-color: #43d39e;
}
.alert-success hr {
    border-top-color: #e0ffef;
}
.alert-success .alert-link {
    color: #43d39e;
}

.alert-info {
    background-color: #e0f2ff;
    color: #25c2e3;
    border-color: #25c2e3;
}
.alert-info hr {
    border-top-color: #e0f2ff;
}
.alert-info .alert-link {
    color: #25c2e3;
}

.alert-warning {
    background-color: #fef6e3;
    color: #ffbe0b;
    border-color: #ffbe0b;
}
.alert-warning hr {
    border-top-color: #fef6e3;
}
.alert-warning .alert-link {
    color: #ffbe0b;
}

.alert-danger {
    background-color: #ffebea;
    color: #ff5c75;
    border-color: #ff5c75;
}
.alert-danger hr {
    border-top-color: #ffebea;
}
.alert-danger .alert-link {
    color: #ff5c75;
}

.alert-brand {
    background-color: #eaedff;
    color: #374EAE;
    border-color: #374EAE;
}
.alert-brand hr {
    border-top-color: #eaedff;
}
.alert-brand .alert-link {
    color: #374EAE;
}

.alert-light {
    background-color: #f8f9fa;
    color: #818182;
    border-color: #818182;
}
.alert-light hr {
    border-top-color: #f8f9fa;
}
.alert-light .alert-link {
    color: #818182;
}

.alert-dark {
    background-color: #d6d6d6;
    color: #343a40;
    border-color: #343a40;
}
.alert-dark hr {
    border-top-color: #d6d6d6;
}
.alert-dark .alert-link {
    color: #343a40;
}

/* CALLOUT */
.callout {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 24px;
    border-color: #e7eaf3;
    border-width: 1px 1px 1px 0.25rem;
    border-style: solid;
    border-radius: 0.25rem;

    background-color: #fff;
    /* color: #6c757d; */
}
.callout p {
    margin-bottom: 0;
}
.callout.callout-primary {
    border-left-color: #5369f8;
}
.callout.callout-secondary {
    border-left-color: #1e2139;
}
.callout.callout-success {
    border-left-color: #43d39e;
}
.callout.callout-info {
    border-left-color: #25c2e3;
}
.callout.callout-warning {
    border-left-color: #ffbe0b;
}
.callout.callout-danger {
    border-left-color: #ff5c75;
}
.callout.callout-light {
    border-left-color: #f8f9fa;
}
.callout.callout-dark {
    border-left-color: #343a40;
}

.border-keyword {
    padding: 1rem;
    border-width: 1px 1px 1px 0.25rem;
    border-color: #e7eaf3;
    border-style: solid;
    border-radius: 0.25rem;
}
.bk-primary {
    border-left-color: #5369f8;
}
.bk-secondary {
    border-left-color: #1e2139;
}
.bk-success {
    border-left-color: #43d39e;
}
.bk-info {
    border-left-color: #25c2e3;
}
.bk-warning {
    border-left-color: #ffbe0b;
}
.bk-danger {
    border-left-color: #ff5c75;
}
.bk-light {
    border-left-color: #f8f9fa;
}
.bk-dark {
    border-left-color: #343a40;
}

.badge-tracker {
    padding: 4px 8px;
    border-radius: 2px;
    margin-right: 0.5rem;
}
.bt-primary {
    color: #fff;
    background-color: #5369f8;
}
.bt-secondary {
    color: #fff;
    background-color: #1e2139;
}
.bt-success {
    color: #fff;
    background-color: #43d39e;
}
.bt-info {
    color: #fff;
    background-color: #25c2e3;
}
.bt-warning {
    color: #212529;
    background-color: #ffbe0b;
}
.bt-danger {
    color: #fff;
    background-color: #ff5c75;
}
.bt-light {
    color: #212529;
    background-color: #f8f9fa;
}
.bt-dark {
    color: #fff;
    background-color: #343a40;
}

/* TO TOP */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: .3s ease-in-out;
    width: 50px;
    border-radius: 100%;
    line-height: 50px;
    text-align: center;
    color: #FAFAFA;
    background-color: #242B3A; 
}
.to-top:hover {
    background-color: #FFC418;
    color: #FAFAFA; 
}
.to-top.active {
    opacity: 1;
    pointer-events: auto; 
}

/* RIBBON CORNER */
.ribbon-c {
    position: fixed;
    width: 210px;

    color: #FAFAFA;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);

    top: auto;
    bottom: 25px;
    left: -50px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);

    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;

    z-index: 1005;
}
.ribbon-c span {
    display: block;
    max-width: 60%;
    margin: 0 auto;
    padding: 10px 0 15px 0;

    font-size: 14px;
    font-weight: 600;
    text-align: center;
    /* text-transform: uppercase; */
    line-height: 1.2;
}

/* OBFUSCATION DE LIENS */
.obfus-lien-interne,
.obfus-lien-externe,
.obfus-lien-externe-encode {
    cursor: pointer;
    transition: .25s ease-in;
}

/* PRELOADER */
#preloader-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /*background-color: #FFF;*/
    transition: 0.3s;
}
#preloader-wrap.loaded {
    visibility: hidden;
    opacity: 0;
}

#preloader-table {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #FFF;
    transition: 0.3s;
}
#preloader-table.loaded {
    visibility: hidden;
    opacity: 0;
}

.p-spinner-3 {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.p-spinner-3 > div {
    /*background-color: #5369f8;*/
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: ms-stretchdelay 1.2s infinite ease-in-out;
    animation: ms-stretchdelay 1.2s infinite ease-in-out;
}

.p-spinner-3 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.p-spinner-3 .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
.p-spinner-3 .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.p-spinner-3 .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes ms-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}
@keyframes ms-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/* DIVERS */
.filter-custom label input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;

    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: .75rem;
    line-height: 1.2;
    border-radius: 0.2rem;

    color: #4b4b5a;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e2e7f1;
}
.filter-custom label input:focus {
    color: #4b4b5a;
    background-color: #fff;
    border-color: #5369f8;
    outline: 0;
}

.paginate-custom {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}
.paginate-custom .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;

    position: relative;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #5369f8;
    background-color: #fff;
    border: 1px solid #e2e7f1;

    border-radius: 30px !important;
    margin: 0 3px;
    border: none;
}
.paginate-custom .paginate_button:hover {
    z-index: 2;
    color: #0a29f5;
    text-decoration: none;
    background-color: #f6f6f7;
    border-color: #e2e7f1;
}
.paginate-custom .paginate_button.active {
    z-index: 1;
    color: #fff;
    background-color: #5369f8;
    border-color: #5369f8;
}

.avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(83, 105, 248, 0.2);
    color: #5369f8;
    border-radius: 50% !important;
    font-size: 16px;
    font-weight: 700;
}
.avatar-letter i {
    color: #5369f8;
}

span.word-title {
    padding: 4px 12px;
    border-radius: 2px;
}

/* ELEMENTS WIP */
.b-wip {
    background-color: rgba(255, 190, 11, 0.2);
}
.wip-card {
    height: 275px;
    background: #DCDCDC;
}
.badge-wip {
    color: #212529;
    background-color: hsla(44, 100%, 52%, 0.2);
}
a.badge-wip:focus,
a.badge-wip:hover {
    color: #212529;
    background-color: rgba(255, 190, 11, 0.2);
}
a.badge-wip.focus,
a.badge-wip:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.15rem rgba(255, 190, 11, 0.2);
    box-shadow: 0 0 0 0.15rem rgba(255, 190, 11, 0.2);
}


/* ****** */
/* SWIPER */
/* ****** */
@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, 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");
}
:root {
    --swiper-theme-color: #007aff;
}
.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
    z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0);
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}
.swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-css-mode > .swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}
[dir="ltr"] .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-left: var(--swiper-centered-offset-before);
}
[dir="rtl"] .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-right: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-top: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}

/* ********* */
/* TIPPY BOX */
/* ********* */
.tippy-box[data-animation="fade"][data-state="hidden"] {
    opacity: 0;
}
[data-tippy-root] {
    max-width: calc(100vw - 10px);
}
.tippy-box {
    background-color: #333;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    outline: 0;
    position: relative;
    transition-property: transform, visibility, opacity;
    white-space: normal;
}
.tippy-box[data-placement^="top"] > .tippy-arrow {
    bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
    border-top-color: initial;
    border-width: 8px 8px 0;
    bottom: -7px;
    left: 0;
    transform-origin: center top;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
    top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
    border-bottom-color: initial;
    border-width: 0 8px 8px;
    left: 0;
    top: -7px;
    transform-origin: center bottom;
}
.tippy-box[data-placement^="left"] > .tippy-arrow {
    right: 0;
}
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
    border-left-color: initial;
    border-width: 8px 0 8px 8px;
    right: -7px;
    transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
    left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
    border-right-color: initial;
    border-width: 8px 8px 8px 0;
    left: -7px;
    transform-origin: center right;
}
.tippy-box[data-inertia][data-state="visible"] {
    transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-arrow {
    color: #333;
    height: 16px;
    width: 16px;
}
.tippy-arrow:before {
    border-color: transparent;
    border-style: solid;
    content: "";
    position: absolute;
}
.tippy-content {
    padding: 5px 9px;
    position: relative;
    z-index: 1;
}

/* ****** */
/* CUSTOM */
/* ****** */

/* .ul-nav-custom li.group a:focus, */
a:focus,
button:focus {
    outline: none !important;
    /* border: none; */
    /* box-shadow: none; */
}

.closer i,
.icon-possibility {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.closer {
    position: absolute;
    cursor: pointer;
    top: 25px;
    right: 25px;
    opacity: 0.6;
    z-index: 10;
    height: 50px;
    width: 50px;
    border-radius: 50%!important;
}
.closer i {
    font-size: 1.85rem;
}
.closer:hover {
    opacity: 1;
    transition: 0.3s;
}

.icon-possibility {
    font-size: 3rem;
}

img.img-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ht-250 {
    height: 250px;
}

.crossed-text {
    text-decoration: line-through;
}

.btn-client-area,
.btn-thin-custom {
    line-height: 12px !important;
    font-weight: 700 !important;
    transform: initial !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 9px 12px !important;
    font-size: 10px !important;
}

.subtitle-underline-custom {
    padding-bottom: 10px;
    position: relative;
}
.subtitle-underline-custom:after {
    content: "";
    width: 20%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.modal-dialog-centered-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 3rem * 2);
}

/* .breadcrumb {
    padding: 20px;
} */

.breadcrumb span {
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 0 5px;
    font-size: 14px;
}

.breadcrumb span:last-child::after {
    content: none;
}
.breadcrumb span:last-child a {
    cursor: default;
}
.breadcrumb span::after {
    content: "\ed3b";
    font-family: "boxicons"  !important;
    display: inline-block;
    font-size: 12px;
    padding-left: 8px;
}

.breadcrumb span i {
    margin-right: 5px;
}

/* .page-header.breadcrumb-wrap {
    padding: 20px;
    background-color: #f7f8f9;
  }
  
  .page-header .breadcrumb {
    display: inline-block;
    padding: 0;
    text-transform: capitalize;
    color: #6e6e6e;
    font-size: 0.875rem;
    background: none;
    margin: 0;
    border-radius: 0;
  }
  
  .page-header .breadcrumb span {
      position: relative;
      text-align: center;
      padding: 0 10px;
  }
  .page-header .breadcrumb span:first-child:before {
      content: none;
  }
  .page-header .breadcrumb span::before {
      content: "\ecb3";
      font-family: "boxicons"  !important;
      display: inline-block;
      font-size: 12px;
  }
  
  .page-header .breadcrumb i {
      margin-right: 5px;
  } */

#progress-bar-scroll {
    /* background-color: #FFDD00; */
    height: 5px;
    width: 0;
    position: fixed;
    top: 95px;
    left: 0;
    z-index: 1;
}

div.paragraphs-children-margin p {
    margin-bottom: 16px;
}
div.paragraphs-children-margin p:last-child {
    margin-bottom: 0;
}

div.paragraphs-children-margin table th,
div.paragraphs-children-margin table td {
    border: 1px solid black;
    font-size: 14px;
    padding: 10px 20px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    word-break: normal;
}
html.dark div.paragraphs-children-margin table th,
html.dark div.paragraphs-children-margin table td {
    border: 1px solid white;
}



/* TMP */
.mp-list-filter,
.dp-list-filter {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-list-filter li,
.dp-list-filter li {
    display: inline-block;
    /* margin-bottom: 8px; */
    margin-bottom: 0.5rem;
}

.mp-list-filter li.active a,
.dp-list-filter li.active a {
    --tw-shadow: 5px 5px 10px rgba(108, 106, 213, 0.25), inset 2px 2px 6px #A78DF0, inset -5px -5px 10px #6336E4;
    --tw-shadow-colored: 5px 5px 10px var(--tw-shadow-color), inset 2px 2px 6px var(--tw-shadow-color), inset -5px -5px 10px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));

    --tw-bg-opacity: 1;
}

.mp-list-filter li.active a:hover,
.dp-list-filter li.active a:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(116 68 255 / var(--tw-bg-opacity));
}

.thumbnail-active {
    /* filter: grayscale(0); */
    transform: scale(1.25);
}

/* 
    .attr-detail.attr-size {
        margin-bottom: 10px;
    }
    .attr-detail .mr-10 {
        min-width: 40px
    }
    .attr-color, .attr-size {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    } 
*/

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

/* Firefox */
input[type=number].input-code {
    -moz-appearance: textfield;
}