body {
    font-size: 16px;
}

/* Japanese text line-breaking rules */
:lang(ja) {
    word-break: normal;          /* évite le word-break agressif */
    overflow-wrap: anywhere;     /* permet le retour à la ligne si un mot dépasse */
    line-break: strict;          /* applique les règles strictes du japonais :
                                    empêche les petits kana (っ、ゃ、ュ etc.),
                                    les signes de ponctuation (。、」）) 
                                    et les suffixes de se retrouver en début de ligne */
}

p {
	line-height: 26px;
	margin: 0 0 20px;
	color: inherit;
}

.pricing-table .plan .plan-header h3 {
    font-size: 0.94rem;
}

.accordion.accordion-modern-status.accordion-modern-status-borders.plan-features > .card {
    border: 0 !important;
}

.pricing-table .plan .plan-features ul li {
    border-bottom: 1px solid #ededed;
    line-height: 1.7;
    list-style: none;
    font-size: 0.9em;
    padding: 7px 0;
}
.price-pt-btn {
    padding: 0;
    border: 0;
    background: #ffffff03;
    color: inherit;
    line-height: 1.2;
}

.price-pt-btn .text-muted {
    color: #d9d9d9 !important
}

.pricing-table .plan img {
    width: 100%;
}
.card {
    height: 100%
}
.card-footer-2 {
    background-color: #FFFFFF;
    text-align: center;
    border-top: 0;
    padding-bottom: 20px;
}

.btn-bottom {    
    position: absolute;
    bottom: 25px;
    transform: translateX(-50%);
    white-space: nowrap;
}
legend{
    font-size: 1rem
}
.text-right {
    text-align: right;
}
.table>:not(caption)>*>* {
    vertical-align: middle;
}
.cart-button {
    background-color: #ffffff00;
    border: 0;text-transform: uppercase;
    font-weight: 400;
    color: #444444;
}
.cart-button:hover {
    text-decoration: none!important;
}
.pricing-table .plan .plan-price .price {
    font-size: 1.75rem
}
.discount {
    font-size: 18px;
    margin-top: 10px;

}
.originprice {
    font-size: 16px;
    line-height: 1;
    color: #777;
    text-decoration-line: line-through;
}

#headerTopCartDropdown table {
	font-size: 12px;
}
#headerTopCartDropdown {
    width: 400px
}

.cart.table .product a {
    color: #696969;
}

.table > thead > tr > th {
    border-bottom: 1px solid var(--primary);;
    background-color: var(--primary);
    color: #ffffff;
}


/* Buttons Demo Consulting 3*/
.custom-btn-style-1 {
		position: relative;
		transition: ease transform 300ms;
}

.custom-btn-style-1 > span {
		position: relative;
		z-index: 1;
}

.custom-btn-style-1:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: inherit;
		opacity: 0.7;
		border-radius: inherit;
		transform: translate3d(5px, 5px, 0);
		transition: ease transform 300ms;
		z-index: 0;
}

.custom-btn-style-1:hover {
		transform: translate3d(2.5px, 2.5px, 0);
}

.custom-btn-style-1:hover:before {
		transform: translate3d(0, 0, 0);
}


.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label-danger {
    background-color: #d9534f;
}

.pull-right {
    float: right !important;
}



/* Fix: Header navigation links */
#header .header-nav-main nav > ul.nav-pills > li > a,
#header .nav-pills .nav-link {
    color: #444;
    background: transparent !important;
}

#header .header-nav-main nav > ul.nav-pills > li:hover > a,
#header .header-nav-main nav > ul.nav-pills > li > a:hover,
#header .nav-pills .nav-link:hover {
    color: var(--primary);
    background: transparent !important;
}

#header .nav-pills .nav-link.active,
#header .header-nav-main nav > ul.nav-pills > li.active > a {
    color: var(--primary);
    background: transparent !important;
}

/* Fix: Scroll to Top button */
html .scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1040;
    display: none;
    text-decoration: none;
    background: rgba(33, 37, 41, 0.7);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all 0.3s;
}

html .scroll-to-top:hover {
    background: rgba(33, 37, 41, 0.9);
    text-decoration: none;
    color: #fff;
}

html .scroll-to-top.visible {
    display: block;
}

html .scroll-to-top i {
    line-height: 40px;
}