﻿* {
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}

input:focus, button:focus, textarea:focus {
	outline: none;
}

html {
	font-family: 'Roboto Condensed', sans-serif;
}

body {
	color: var(--ct-dark-blue);
	margin: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.875em;
}

	body.noscroll {
		overflow: hidden;
	}

a {
	color: inherit;
	text-decoration: none;
}

ol, ul, li {
	list-style: none;
}
.popup-overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 20;
	justify-content: center;
}

.popup-overlay-content {
	padding: 2em;
	border-radius: 0.5em;
	background-color: white;
	max-width: 375px;
}

#diagCookies {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #222222bf;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
    opacity: 1;
    transition: opacity ease 1s;
}

#divCookiesContent {
    background: white;
    height: 50%;
    max-height: 250px;
    width: 90%;
    max-width: 350px;
    border: 3px solid var(--ct-sky-blue);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 25px 3px var(--ct-sky-blue);
}

    #divCookiesContent p {
        padding: 15px;
        color: black;
    }

    #divCookiesContent h2 {
        color: #072541;
        width: 80%;
        border-bottom: 2px solid var(--ct-sky-blue);
        box-shadow: 0 10px 8px -10px var(--ct-sky-blue);
        margin-left: auto;
        margin-right: auto;
    }

    .divCookiesButtons {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .divCookiesButtons button {
        width: 50%;
        margin-left: 2px;
        margin-right: 2px;
    }

.btnCookieCancel {
	padding: 5px 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.9em;
	transition: all ease 0.5s;
}

.btnCookieAccept {
	background-color: var(--ct-sky-blue);
	cursor: pointer;
	color: white;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.9em;
	transition: background-color 0.2s ease-in;
}

	.btnCookieAccept:hover {
		color: white;
		background-color: #072541;
	}

    .common-link {
        color: var(--ct-sky-blue);
        transition: color 0.2s ease-in;
    }

	.common-link:hover {
		color: #072541;
	}

.no-margin {
	margin: 0;
}

.large-button {
	border: none;
	cursor: pointer;
	color: white;
	display: block;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	padding: 15px 20px;
	transition: background-color 0.2s ease-in;
}

.large-button__pale {
	background-color: var(--ct-sky-blue);
}

	.large-button__pale:hover {
		background-color: #072541;
	}

.large-button__disabled {
	background-color: #808080;
}

.large-button__dark {
	background-color: #072541;
}

	.large-button__dark:hover {
		background-color: var(--ct-sky-blue);
	}

.large-button__red {
	background-color: indianred;
}

	.large-button__red:hover {
		background-color: palevioletred;
	}

/*
    Form common elements
*/

	input[type=number] {
		-moz-appearance: textfield;
	}

	input[type=datetime] {
		-moz-appearance: textfield;
	}

input, select, textarea {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	min-height: 26px;
	border-radius: 0;
}

textarea {
	padding-top: 1px;
	padding-bottom: 1px;
}

select {
	background-color: white;
	-moz-appearance: none;
}

::placeholder {
	color: #a2a1a1 !important;
}

input[type=radio], input[type=checkbox] {
	margin: 0;
}

.box {
	background: #fbfbfb;
	border: 1px solid #dddddd;
	margin: 0 0 30px 0;
	line-height: 23px;
}

textarea {
	resize: none;
	font-family: 'Roboto Condensed', sans-serif;
}

.call_action_structure,
.dropdown-container,
.form-row {
	display: flex;
}


.form-row__radio {
	display: flex;
	align-items: center;
}

.form-field {
	display: flex;
	flex-direction: column;
}

.feature {
	background-color: var(--ct-light-gray);
}
.feature > .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding-top: 2em;
}
.feature-item {
	flex: 1 0 19%;
	margin-bottom: 2em;
	text-align: center;
	a {
		text-decoration: none;
		transition: ease-in color 0.2s;	
	}
}
.feature-container-img {
	background-color: white;
	width: 13em;
	height: 13em;
	align-content: center;
}
.feature-img {	
	height: 9em;
	object-fit: scale-down;
}


.fake-radio-field {
	border: 1px solid #cbcbcb;
	width: 16px;
	height: 16px;
	background: #FFFFFF;
	border-radius: 50px;
	margin-right: 10px;
	display: inline-block;
	cursor: pointer;
	position: relative;
}

.fake-radio-field__checked {
	background-color: var(--ct-sky-blue);
}

.fake-radio-field input {
	padding: 0 !important;
	margin: 0 !important;
	opacity: 0;
	cursor: pointer;
	width: 100%;
}

.fake-checkbox-field {
	border: 1px solid #cbcbcb;
	width: 16px;
	height: 16px;
	background: #FFFFFF;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;
	margin-right: 10px;
	cursor: pointer;
	position: relative;
}

.fake-checkbox-field__checked {
	background-image: url(../../Images/check-mark.svg);
}

.fake-checkbox-field input {
	padding: 0 !important;
	margin: 0 !important;
	opacity: 0;
	cursor: pointer;
	width: 100%;
}

.select-wrapper {
	position: relative;
	width: 100%;
}

	.select-wrapper select {
		appearance: none;
		width: 100%;
	}

	.select-wrapper:after {
		color: #979797;
		width: 15px;
		height: 15px;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f078";
		font-size: 15px;
		position: absolute;
		right: 5px;
		top: 7px;
		pointer-events: none;
	}

.container {
	width: 100%; 
}

.content-row {
	display: flex;
}

/*
    Product common elements
*/

.product-quantity input[type=number] {
	border: 1px solid #818283;
	text-align: right;
	padding-right: 5px;
	width: 60px;
	margin: 0;
}

	.product-quantity input[type=number]::-webkit-inner-spin-button,
	.product-quantity input[type=number]::-webkit-outer-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

.product-quantity {
	display: flex;
}

.product-quantity-button {
	background-color: #edf3f5;
	border: 1px solid #818283;
	cursor: pointer;
	font-family: Arial;
	line-height: 26px;
	text-align: center;
	width: 25px;
	transition: background-color 0.2s ease-in;
}

	.product-quantity-button:hover {
		background-color: #cedee4;
	}

.product-quantity-button__decrease {
	border-right: none;
}

.product-quantity-button__increase {
	border-left: none;
}

.product-stock-status__available {
	color: green;
	font-weight: bold;
}

.product-stock-status__unavailable {
	color: red;
	font-weight: bold;
}

.product-stock-status__specialorder {
	color: #df7f18;
	font-weight: bold;
}

/*
    Drawers
*/

.drawer-content {
	overflow: hidden;
	position: relative;
	transition: height 1s ease-in-out;
}

/*
    Page separator
*/

.page-separator {
	border-bottom: 2px solid var(--ct-sky-blue);
	box-shadow: 0 10px 8px -10px var(--ct-sky-blue);
	margin-bottom: 15px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 3px;
}

	.page-separator > * {
		font-size: 25px !important;
		font-weight: normal;
		margin: 0;
	}

.page-separator-action {
	font-size: 13px !important;
	font-weight: normal;
	display: flex;
	align-items: center;
}

.page-separator-small {
	border-bottom: 2px solid var(--ct-sky-blue);
	box-shadow: 0 10px 8px -10px var(--ct-sky-blue);
	margin-bottom: 5px;
	margin-top: 5px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 3px;
}

/*
    Site header
*/

.site-header {
	padding-bottom: 0 !important;
	background: var(--ct-logo-color);
}

.site-header a {
	transition: color 0.2s ease-in;
/*	font-size: 16px;*/
}

.site-header-top {
	display: none;
}

@media only screen and (min-width: 758px) {
	.site-header-top {
		display: flex;
		flex-direction: row;
		margin-left: 0;
		margin-right: 0;
		width: auto;
		align-items: center;
	}
}

.site-header-top .column-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
}

.top-menu {
	display: flex;
	background: var(--ct-dark-blue);
	color: white;
	line-height: 1em;
}

.submenu-wrapper {
	display: none;
	line-height: 1em;
}

.search-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media only screen and (min-width: 758px) {
	.submenu-wrapper {
		display: flex;
	}
	
	.search-wrapper {
		flex-direction: row;
		
		position: absolute;
		top: 1em;
	}
	
	.top-menu > .container {
		display: flex;
		justify-content: flex-end;
	}
}

.submenu-wrapper ul {
	display: flex;
	margin: 0;
}

.submenu-wrapper li:not(:last-child) {
	padding-right: 0.5em;
	padding-left: 0.5em;
	border-right: 0.1em solid;
}

.submenu-wrapper li:last-child {
	padding-left: 0.5em;
}

.connection-menu {
	padding-left: 45px;
}

.connection-menu-link a {
	display: flex;
	align-items: center;
}

.connection-menu-link-icon {
	border: 1px solid #0082ad;
	border-radius: 50px;
	padding: 3px;
	margin-right: 5px;
	margin-top: -1px;
	font-size: 8px;
}

	.connection-menu-link-icon img {
		height: 9px;
		width: 8px;
	}

.top-menu-links {
	padding-bottom: 20px;
}

.searchbar-wrapper {
	display: flex;
	justify-content: flex-end;
	align-content: center;
	margin-right: 2em;
	flex-grow: 1;
}

.searchbar-wrapper form {
	display: flex;
	width: 40em;
}

.searchbar-wrapper input {
	border: 1px solid #cbcbcb;
	border-radius: 0;
}

.searchbar-wrapper input[type=text] {
	border-top-left-radius: 1em;
	border-bottom-left-radius: 1em;
}

.searchbar-wrapper input[type=submit] {
	background-color: var(--ct-sky-blue);
	background-image: url('../../images/search-icon.svg');
	background-size: 1.2em;
	border-top-right-radius: 1em;
	border-bottom-right-radius: 1em;
	transition: background-color 0.2s ease-in;
}

.field-input{
	border: 1px solid #cbcbcb;
	border-radius: 0;	
	
	padding-left: 20px;
	flex: 1 0 auto;
	height: 2.75em;
}
.field-input-icon {
	border: 1px solid #cbcbcb;
	border-radius: 0;
	
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	width: 3em;
}

@media only screen and (max-width: 1024px) {
	.searchbar-wrapper input[type=submit] {
		background-size: 22px;
		width: 55px;
	}
}

.toggle-footer {
	margin-top: 1em;
}
.toggle-footer > li {
	display: flex;
	align-items: center;
	color: #777;
	font-size: 1.2em;
	margin: 0.6em 0;
	
	a {
		text-decoration: none;
	}
	a:hover {
		transition: color 0.2s ease-in;
		color: var(--ct-light-gray);
	}
	
	i {
		color: var(--ct-sky-blue);
		font-size: 1.3em;
		margin-right: 0.3em;
	}
	
	span {
		margin-left: 0.3em;
	}
}

.footer-block
{
	margin-top: 1em;
	padding-bottom: 0.5em;
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 767px) {
	.footer-block > h6 {
		position: relative;
		margin-bottom: 0;
		padding-bottom: 0;
	}
}
.searchbar-wrapper input[type=submit]:hover {
	background-color: #cbcbcb;
}

.site-header-bottom {
	display: flex;
}

.site-header-bottom > div:last-child {
	margin-left: auto;
	margin-bottom: auto;
	margin-top: auto;
}

.cart-button-wrapper {
	position: relative;
}

	.cart-button-wrapper a {
		align-items: center;
		height: 42px;
		max-height: 42px;
		display: flex;
		padding-right: 30px;
		padding-left: 15px;
		background-color: var(--ct-dark-blue);
		color: white;
		transition: background-color 0.2s ease-in;
	}

		.cart-button-wrapper a:hover {
			background-color: var(--ct-sky-blue);
			color: white;
		}

.shopping-cart-link-icon {
	margin-right: 12px;
	height: 20px;
	width: 20px;
}

.cart-item-count {
	background-color: #ff0000;
	border-radius: 50px;
	color: white;
	font-weight: bold;
	position: absolute;
	text-align: center;
	height: 26px;
	width: 26px;
	right: -7px;
	top: -7px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 26px;
}

/*
    Mobile header
*/

.site-mobile-header {
	color: white;
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

@media only screen and (min-width: 758px) {
	.site-mobile-header {
		display: none;
	}
}

.site-mobile-header > .column-right {
	display: flex;
	margin: 0 !important; 
}

	.site-mobile-header > .column-right .connection-menu {
		margin-right: 20px;
	}

.menu-button-wrapper {
	align-items: center;
	justify-content: center;
	display: flex;
	height: 4em;
	font-size: 14px;
}

.menu-button {
	cursor: pointer;
	flex: 0 0 auto;
	padding-right: 10px;
	z-index: 15;
	position: relative;
}

	.menu-button > input {
		display: block;
		width: 32px;
		height: 32px;
		position: absolute;
		top: -7px;
		left: -5px;
		cursor: pointer;
		opacity: 0;
		z-index: 2;
		-webkit-touch-callout: none;
	}

	.menu-button > span {
		background-color: white;
		display: block;
		width: 25px;
		height: 3px;
		margin-bottom: 4px;
		position: relative;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 4px 0;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
	}

	.menu-button span:first-child {
		transform-origin: 0 0;
	}

	.menu-button span:nth-last-child(1) {
		transform-origin: 0 100%;
		margin-bottom: 0;
	}

	.menu-button input:checked ~ span {
		background-color: white;
		opacity: 1;
		transform: rotate(45deg) translate(5px, -2px);
	}

		.menu-button input:checked ~ span:nth-last-child(2) {
			opacity: 0;
			transform: rotate(0deg) scale(0.2, 0.2);
		}

		.menu-button input:checked ~ span:nth-last-child(1) {
			transform: rotate(-45deg) translate(3px, 6px);
		}

.mobile-menu {
	background-color: #072541;
	color: white;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 20;
	transform: translateX(-100%);
	transition: transform 0.3s ease-in;
	overflow-y: scroll;
}

	.mobile-menu.menu-open {
		transform: translateX(0);
	}

	.mobile-menu ul {
		font-size: 24px;
		padding-left: 0;
		text-align: center;
		text-transform: uppercase;
	}

		.mobile-menu ul li {
			margin-bottom: 40px;
		}

.mobile-menu-label {
	display: flex;
	align-items: center;
}

.menu-button-active .mobile-menu-label {
	display: none;
}

.mobile-menu-close {
	position: fixed;
	left: 50px;
	top: 50px;
	font-size: 20px;
	color: white;
	cursor: pointer;
}

.mobile-menu-close-label {
	display: none;
	color: white;
	position: relative;
	z-index: 15;
}

.menu-button-active .mobile-menu-close-label {
	display: inline;
}

.mobile-menu-close-label {
	display: none;
	color: white;
	position: relative;
	z-index: 15;
}

/*
    Page
*/
.page {
	padding-top: 10px;
	padding-bottom: 25px;
}

.page__no-shadow {
	background: none;
	padding-top: 0;
}

.page__regular {
	padding-top: 0;
}

/*
    Category menu
*/

.product-navigation-menu {
	border-bottom: 1px solid #667479;
	font-size: 16px;
	margin-bottom: 15px;
}

@media only screen and (min-width: 1024px) {
	.product-navigation-menu {
		width: 270px;
	}

	.product-navigation-menu-content-wrapper {
		height: auto !important;
	}
}

.product-navigation-menu-content {
    background-color: #f3f3f3;
    margin-top: 4px;
}

.product-navigation-menu ul {
    padding-left: 0;
    margin: 0;
}

.product-navigation-menu a {
	display: block;
	padding: 10px 20px;
	transition: color 0.2s ease-in, background-color 0.2s ease-in;
}

.product-navigation-menu .product-navigation-sublist {
	padding-left: 10px;
	font-size: 14px;
}

	.product-navigation-menu .product-navigation-sublist a {
		padding-top: 6px;
		padding-bottom: 6px;
	}

.product-navigation-menu a:hover, .product-navigation-menu .product-menu-item__active > a {
	background-color: var(--ct-sky-blue);
	color: white;
	text-decoration: none;
}

.product-navigation-menu .category-menu-parent-list > .product-menu-item > a:hover .product-menu-item-button:after, .product-navigation-menu .category-menu-parent-list > .product-menu-item__active > a .product-menu-item-button:after {
	background-color: white;
	color: var(--ct-sky-blue);
}

.product-navigation-menu-header {
	background-color: var(--ct-dark-blue);
	color: white;
	font-size: 20px;
	padding: 14px 20px;
	position: relative;
}

@media only screen and (max-width: 1024px) {
	.product-navigation-menu-header {
		cursor: pointer;
	}

		.product-navigation-menu-header::after {
			content: "";
			display: block;
			width: 0;
			height: 0;
			border-left: 8px solid transparent;
			border-right: 8px solid transparent;
			border-top: 8px solid #fff;
			border-bottom: none;
			position: absolute;
			right: 20px;
			top: calc(50% - 4px);
		}

	.product-navigation-menu-header__open::after {
		border-bottom: 8px solid #fff;
		border-top: none;
	}

	.product-navigation-menu.product-menu-header__open .product-navigation-menu-header::after {
		border-bottom: 8px solid #fff; 
		border-top: none; 
	}

	.product-navigation-menu .product-navigation-menu-content-wrapper { 
		display: none;
	}

	.product-navigation-menu.product-menu-header__open .product-navigation-menu-content-wrapper {
		display: block;
	}
}

.product-menu-item .product-navigation-sublist {
	height: 0;
	overflow: hidden;
}

.product-menu-item .product-navigation-sublist {
	height: 0;
	overflow: hidden;
}

.product-navigation-menu-list > .product-menu-item .product-navigation-sublist > .product-menu-item:last-child {
	margin-bottom: 15px;
}

.product-menu-item.product-menu-item__open > .product-navigation-sublist {
	height: auto;
}

.product-menu-item {
    position: relative;
}

.product-menu-item a {
	position: relative;
}

.product-menu-item-button::after {
	background-color: #c2c2c2;
	border-radius: 50px;
	color: #f3f3f3;
	cursor: pointer;
	position: absolute;
	width: 15px;
	height: 15px;
	top: 1em;
	right: 15px;
	text-align: center;
	line-height: 15px;
	vertical-align: middle;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f067";
	font-size: 10px;
	transition: all 0.2s ease-in;
}

.product-menu-item__open > .product-menu-item-button::after {
	content: '\f068';
}

.product-menu-item__has-children {
	position: relative;
}

.product-navigation-sublist .product-menu-item__has-children > a::after {
	top: 0.75em;
}

.product-navigation-menu .product-menu-item__has-children .product-navigation-sublist a {
	color: #667479;
}

	.product-navigation-menu .product-menu-item__has-children .product-navigation-sublist a:hover {
		background-color: transparent;
		color: #000000;
	}

.product-navigation-menu-list > li li .product-menu-item-button::after {
	top: 5px;
}

/*
    Filter menu
*/

.filter-menu .filter-type {
	padding: 10px 20px;
	position: relative;
	cursor: pointer;
	transition: color 0.2s ease-in, background-color 0.2s ease-in;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

	.filter-menu .filter-type:hover {
		background-color: #667479;
		color: white;
	}

.filter-menu .filter-arrow:after {
	color: #979797;
	width: 15px;
	height: 15px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f078";
	font-size: 15px;
}

.filter-menu .product-menu-item__open .filter-arrow:after {
	content: "\f077";
}

.filter-menu .product-navigation-sublist li {
	cursor: pointer;
	padding-top: 5px;
	padding-bottom: 5px;
}

.filter-menu-content > .filter-menu-list > li:not(:first-child) {
	border-top: 1px solid #c2c2c2;
}

.filter-menu-filter {
	cursor: pointer;
	display: flex;
	align-items: center;
	padding-left: 10px;
	transition: color 0.2s ease-in;
}

	.filter-menu-filter:hover {
		color: #667479;
	}


	.filter-menu-filter input {
		margin-right: 10px;
	}

	.filter-menu-filter label {
		cursor: pointer;
		margin-bottom: 0px !important;
	}

/*	.filter-menu-filter input[type=checkbox] {
		-webkit-appearance: none;
		appearance: none;
		border: 1px solid #072541;
		border-radius: 0;
		cursor: pointer;
		height: 10px;
		width: 10px;
		min-height: auto;
	}

		.filter-menu-filter input[type=checkbox]:checked {
			background-color: #072541;
		}
*/
.filter-menu-action {
	background-color: var(--ct-sky-blue);
	color: white;
	cursor: pointer;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	transition: background-color 0.2s ease-in;
}

	.filter-menu-action:hover {
		background-color: var(--ct-dark-blue);
	}

/*
    Main screen
*/

.page-main-screen-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (min-width: 1024px) {
	.page-main-screen-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
}

.page-main-screen-wrapper > .column-left {
	display: flex;
	flex-direction: column;
	max-width: 420px;
	width: 100%;
}

.page-main-screen-wrapper > .column-right {
	flex-grow: 99;
}

@media only screen and (min-width: 1024px) {
	.page-main-screen-wrapper > .column-left {
		width: 270px;
	}
}


@media only screen and (max-width: 1024px) {
	.page-main-screen-wrapper > .column-right {
		width: 100%;
	}
}

.main-screen-content {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
}

@media only screen and (min-width: 1024px) {
	.main-screen-content {
		flex-direction: row;
	}
}

.main-screen-content > .column-left {
	padding-bottom: 20px;
}

@media only screen and (min-width: 1024px) {
	.main-screen-content > .column-left {
		padding-bottom: 0;
		padding-right: 20px;
	}
}

.main-screen-content > .column-right {
	flex: 1 0 auto;
}

@media only screen and (min-width: 1024px) {
	.main-screen-content > .column-right {
		padding-left: 20px;
	}
}

.main-screen-content .main-screen-image {
	background: white;
	box-shadow: 0px 6px 6px -4px #777;
	border: 1px solid #dddddd;
	padding: 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.main-screen-content .main-screen-image img {
		max-width: 100%;
	}

.main-screen-content .main-screen-thumbnails {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-screen-content .main-screen-thumbnail {
	background: white;
	box-shadow: 0 6px 6px -4px #777;
	border: 1px solid #9d9d9d;
	padding: 5px;
	margin-bottom: 10px;
}

.main-screen-content .product-actions {
	justify-content: space-between;
}

.main-screen-content .product-pricing {
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

	.main-screen-content .product-pricing .column-left {
		display: flex;
		flex-direction: column;
	}

.main-screen-content .product-stock {
	color: black;
	display: flex;
	flex-direction: column;
}

.main-screen-content .product-company-logo {
	background: white;
	border-radius: 10px;
	border: 1px solid #dddddd;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	height: 100px;
	width: 120px;
}

	.main-screen-content .product-company-logo img {
		height: auto;
		width: 100%;
	}

.main-screen-content .main-screen-form {
	width: 100%;
}

	.main-screen-content .main-screen-form .product-quantity {
		margin-top: 30px;
	}

	.main-screen-content .main-screen-form input[type=submit] {
		border: none;
		color: white;
		cursor: pointer;
		display: block;
		background-color: #0082ad;
		font-size: 16px;
		margin-top: 30px;
		padding: 15px;
		width: 100%;
		transition: background-color 0.2s ease-in;
	}

		.main-screen-content .main-screen-form input[type=submit]:hover {
			background-color: #072541;
		}

.main-screen-content p {
	color: black;
	margin-top: 5px;
	margin-bottom: 5px;
}

/*
    Product listing common elements
*/

.product-new-tag {
	background: red;
	color: white;
	text-transform: uppercase;
	padding: 5px 10px;
}

.liquidation-new-tag {
	background-color: #F13340;
	color: whitesmoke;
	text-transform: uppercase;
	padding: 5px 10px;
}

.product-price {
	color: black;
	font-size: 25px;
	font-weight: bold;
}
	.product-price-fees {
		font-size: 14px;
		color: green;
	}


/*
    Product summary
*/

.page-product-summary-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (min-width: 1024px) {
	.page-product-summary-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
}

.page-product-summary-wrapper > .column-left {
	display: flex;
	flex-direction: column;
	max-width: 420px;
	width: 100%;
}

@media only screen and (min-width: 1024px) {
	.page-product-summary-wrapper > .column-left {
		flex: 0 0 270px;
	}
}

.page-product-summary-wrapper > .column-right {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product-summary {
	padding-top: 30px;
}

@media only screen and (min-width: 1024px) {
	.product-summary {
		padding-left: 30px;
	}
}

.pagination {
	display: flex;
	padding-top: 15px;
	padding-bottom: 20px;
}

.pagination-wrapper {
	display: flex;
	border: 1px solid #dddddd;
	border-radius: 6px;
	overflow: hidden;
}

.pagination-item {
	cursor: pointer;
	height: 33px;
	width: 33px;
	transition: all 0.2s ease-in;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.pagination-item:not(:first-child) {
		border-left: 1px solid #dddddd;
	}

	.pagination-item__active, .pagination-item:hover {
		background-color: #428bca;
		color: white;
	}

.pagination-item__previous-button:after {
	content: '\f100';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 10px;
}

.pagination-item__next-button:after {
	content: '\f101';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 10px;
}

.product-summary-grid {
	display: flex;
	flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
}

.product-summary-grid-item-wrapper {
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 25px;
	flex: 0 0 100%;
}

@media only screen and (min-width: 650px) {
	.product-summary-grid-item-wrapper {
		flex: 0 0 50%;
	}
}

@media only screen and (min-width: 1200px) {
	.product-summary-grid-item-wrapper {
		flex: 0 0 33.33%;
	}
}

.product-summary-grid-item {
	border: 1px solid #dddddd;
	border-radius: 10px;
	color: black;
	padding: 20px 15px;
	position: relative;
	box-shadow: 0 6px 6px -4px #777;
	a {
		text-decoration: none;
	}
	a:hover {
		transition: color 0.2s ease-in;
		color: #515151;
	}
}

	.product-summary-grid-item .product-new-tag {
		position: absolute;
		top: 0;
		left: 0;
	}

	.product-summary-grid-item .liquidation-new-tag {
		position: absolute;
		top: 0;
		left: 0;
	}

	.product-summary-grid-item .grid-item-image {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 195px;
		max-height: 195px;
	}

		.product-summary-grid-item .grid-item-image img {
			display: block;
			margin-left: auto;
			margin-right: auto;
			width: 80%;
			width: auto;
			max-height: 193px;
		}

	.product-summary-grid-item .grid-item-code {
		border-bottom: 1px solid #dddddd;
		padding-top: 30px;
		padding-bottom: 3px;
	}

	.product-summary-grid-item .grid-item-name {
		font-weight: bold;
		font-size: 21px;
		line-height: 24px;
		padding-top: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		word-break: break-word;
		display: -webkit-box;
		-webkit-line-clamp: 3; /* number of lines to show */
		-webkit-box-orient: vertical;
		height: 90px;
	}

	.product-summary-grid-item .grid-item-price {
		display: flex;
		flex-direction: column;
		padding-top: 30px;
		padding-bottom: 20px;
	}

/*
    Product detail
*/

.page-product-detail-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (min-width: 1024px) {
	.page-product-detail-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
}

.page-product-detail-wrapper > .column-left {
	display: flex;
	flex-direction: column;
	max-width: 420px;
	width: 100%;
}

@media only screen and (min-width: 1024px) {
	.page-product-detail-wrapper > .column-left {
		width: 270px;
	}
}

.page-product-detail-wrapper > .column-right {
	flex-grow: 99;
}

@media only screen and (max-width: 1024px) {
	.page-product-detail-wrapper > .column-right {
		width: 100%;
	}
}

.product-detail {
	padding-top: 30px;
}

@media only screen and (min-width: 1024px) {
	.product-detail {
		padding-left: 30px;
	}
}

.product-detail-content {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	
}

	.product-detail-content .product-detail-image-url {
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		width: 100%;
		height: 100%;
		cursor: pointer;
	}

	.product-detail-content.accessoires {
		flex-wrap: wrap;
		flex-direction: row;
		//ajouter cette ligne aussi pour la compatibilité mobile
	}

	.product-detail-content.product-detail-caracteristique {
		display: block;
		font-size: 16px;
		line-height: 24px;
	}

@media only screen and (min-width: 1024px) {
	.product-detail-content {
		flex-direction: row;
	}
}

.product-detail-content > .column-left {
	padding-bottom: 20px;
	display: flex;
}

@media only screen and (min-width: 1024px) {
	.product-detail-content > .column-left {
		padding-bottom: 0;
		padding-right: 20px;
	}
}

.product-detail-content > .column-right {
	flex-grow: 99;
}

@media only screen and (min-width: 1024px) {
	.product-detail-content > .column-right {
		padding-left: 20px;
	}
}

.product-detail-content .product-detail-image {
	background: white;
	border: 1px solid #dddddd;
	padding: 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 550px;
	height: 550px;
	max-width: 100%;
}

.product-detail-content .product-detail-thumbnails {
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-right: 0.75em;
}

.product-detail-content .product-detail-thumbnail {
	background: white;
	border: 1px solid #dddddd;
	padding: 5px;
	margin-bottom: 10px;
	height: 100px;
	width: 100px;
	margin-right: 2px;
	cursor: pointer;
}
.product-detail-content .product-detail-thumbnail img {
	max-height: 100%;
}

.product-detail-content .product-actions {
	justify-content: space-between;
}

.product-detail-content .product-action-menu {
	align-items: flex-end;
	color: #0082ad;
	display: flex;
	flex-direction: column;
	font-size: 13px;
	margin: 0;
}

@media only screen and (min-width: 768px) {
	.product-detail-content .product-action-menu {
		flex-direction: row;
		align-items: center;
	}
	
	.product-detail-content .product-action-menu li {
		padding-right: 7px;
		padding-left: 7px;
		position: relative;
	}
}

@media only screen and (max-width: 768px) {
	.product-detail-content .column-left{
		flex-direction: column;
	}
	.product-detail-content .product-detail-image
	{
		height: 300px;
		width: 100%;
	}
	.product-detail-content .product-detail-thumbnails {
		display: flex;
		flex-direction: row;
		justify-content: center;
		margin-right: unset;
		margin-bottom: 0.75em;
		order: 1;
	}
}

.product-detail-content .product-action-menu li a {
	transition: color 0.2s ease-in;
}

	.product-detail-content .product-action-menu li a:hover {
		color: var(--ct-dark-blue);
	}

@media only screen and (min-width: 768px) {
	.product-detail-content .product-action-menu li:not(:last-child):after {
		content: '|';
		display: block;
		position: absolute;
		right: -1px;
		top: 0;
	}
}

.product-detail-content .product-information {
	color: black;
}

	.product-detail-content .product-information h2 {
		margin-bottom: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		word-break: break-word;
		display: -webkit-box;
		-webkit-line-clamp: 3; /* number of lines to show */
		-webkit-box-orient: vertical;
	}

	.product-detail-content .product-information p {
		margin-top: 5px;
	}

.product-detail-content .product-pricing {
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

	.product-detail-content .product-pricing .column-left {
		display: flex;
		flex-direction: column;
	}

.product-detail-content .product-stock {
	color: black;
	display: flex;
	flex-direction: column;
}

.product-detail-content .product-company-logo {
	background: white;
	border-radius: 10px;
	border: 1px solid #dddddd;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	height: 100px;
	width: 120px;
}

	.product-detail-content .product-company-logo img {
		height: auto;
		width: 100%;
	}

.product-detail-content .product-detail-form {
	width: 100%;
}

	.product-detail-content .product-detail-form .product-quantity {
		margin-top: 30px;
	}

	.product-detail-content .product-detail-form input[type=submit] {
		border: none;
		color: white;
		cursor: pointer;
		display: block;
		background-color: var(--ct-sky-blue); 
		font-size: 16px;
		margin-top: 30px;
		padding: 15px;
		width: 100%;
		transition: background-color 0.2s ease-in;
		border-radius: 1em;
	}

		.product-detail-content .product-detail-form input[type=submit]:hover {
			background-color: #072541;
		}

.product-detail-content p {
	color: black;
	margin-top: 5px;
	margin-bottom: 5px;
}


/*
    Shopping cart summary
*/

.shopping-cart-summary {
	background-color: #f4f4f4;
	color: black;
	padding: 20px 20px;
	font-size: 13px;
}

	.shopping-cart-summary + .shopping-cart-summary {
		margin-top: 15px;
	}

	.shopping-cart-summary input[type=text], .shopping-cart-summary select {
		border-radius: 0;
		border: 1px solid #cbcbcb;
		padding-left: 12px;
		padding-right: 12px;
		width: 100%;
	}

	.shopping-cart-summary .large-button {
		width: 100%;
	}

	.shopping-cart-summary .common-link {
		text-align: center;
		width: 100%;
	}

	.shopping-cart-summary .itemlist {
		max-height: 500px;
		overflow-y: auto;
		margin-bottom: 10px;
	}

.shopping-cart-summary-row {
	display: flex;
	justify-content: space-between;
	padding-bottom: 10px;
}

.shopping-cart-summary-row__large-padding {
	padding-bottom: 20px;
}

.shopping-cart-summary-row__no-padding {
	padding: 0 !important;
}

.shopping-cart-summary-row__medium-text {
	font-size: 14px;
}

.shopping-cart-summary-row__large-text {
	font-size: 16px;
}

.shopping-cart-summary-row__border-bottom {
	border-bottom: 1px solid #909090;
	margin-bottom: 10px;
}

.shopping-cart-summary-row__border-bottom-large {
	border-bottom: 2px solid #909090;
	margin-bottom: 10px;
}

.shopping-cart-summary-row__item-wrapper {
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #d5d4d4;
}

.shopping-cart-summary-row .order-summary-item {
	display: flex;
	width: 100%;
}

.shopping-cart-summary-row .order-summary-item-description {
	flex: 1 0 auto;
}

	.shopping-cart-summary-row .order-summary-item-description > div:not(:last-child) {
		padding-bottom: 6px;
	}

.shopping-cart-summary-row .order-summary-item-image {
	margin-right: 10px;
	max-width: 66px;
}

	.shopping-cart-summary-row .order-summary-item-image img {
		max-width: 100%;
	}

.shopping-cart-summary-row .order-summary-item-title {
	color: #072541;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}

.shopping-cart-summary-row .order-summary-item-pricing {
	display: flex;
	justify-content: space-between;
}

.shopping-cart-summary-row .order-summary-item-price {
	font-size: 16px;
	font-weight: bold;
}

.shopping-cart-summary-header {
	font-size: 25px;
}

.shopping-cart-shipping-option-input {
	display: flex;
	align-items: center;
}

	.shopping-cart-shipping-option-input input[type=radio] {
		margin: 0;
		margin-right: 10px;
	}

	.shopping-cart-shipping-option-input label {
		margin-left: 5px;
		margin-bottom: 0px !important;
	}
/*
    Shopping cart page
*/

.page-shopping-cart-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (min-width: 900px) {
	.page-shopping-cart-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}

		.page-shopping-cart-wrapper > .column-left {
			padding-right: 15px;
			min-width: 70%;
			flex-grow: 99;
		}
}

@media only screen and (max-width: 900px) {
	.page-shopping-cart-wrapper > .column-left {
		padding-bottom: 25px;
	}
}

.page-shopping-cart-wrapper > .column-right {
	flex: 0 0 300px;
	max-width: 300px;
}



@media only screen and (min-width: 900px) {
	.page-shopping-cart-wrapper .page-separator-action a {
		padding-right: 25px;
		cursor: pointer;
	}
}

.page-shopping-cart-wrapper .page-separator-action a:after {
	content: url('../images/import.svg');
	display: inline-block;
	padding-left: 10px;
	width: 25px;
}

.shopping-cart-item {
	display: flex;
	flex-direction: column;
	padding: 20px 12px;
	border-bottom: 1px solid #aaaaaa;
	font-size: 13px;
}

@media only screen and (min-width: 1200px) {
	.shopping-cart-item {
		flex-direction: row;
		padding: 50px 25px;
	}
}

.shopping-cart-item > .column-left {
	display: flex;
	align-items: center;
}

@media only screen and (min-width: 1200px) {
	.shopping-cart-item > .column-left {
		flex: 0 0 50%;
	}
}

@media only screen and (max-width: 1200px) {
	.shopping-cart-item > .column-left {
		padding-bottom: 15px;
	}
}

.shopping-cart-item .product-information {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 15px;
	padding-right: 15px;
}

	.shopping-cart-item .product-information > * {
		margin-bottom: 10px;
	}

	.shopping-cart-item .product-information .product-name {
		font-weight: bold;
		text-transform: uppercase;
		font-size: 16px;
	}

	.shopping-cart-item .product-information .product-company-name {
		font-weight: bold;
	}

.shopping-cart-item > .column-right {
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
	justify-content: space-between;
}

@media only screen and (min-width: 475px) {
	.shopping-cart-item > .column-right {
		flex-direction: row;
	}
}

.shopping-cart-item .product-pricing {
	color: black;
	display: flex;
	flex-direction: column;
	max-width: 170px;
}

	.shopping-cart-item .product-pricing > span {
		margin-bottom: 10px;
	}

.shopping-cart-item .product-subtotal {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

.shopping-cart-item .product-subtotal-value {
	color: black;
	font-size: 16px;
	font-weight: bold;
}

.shopping-cart-actions {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.prixSAD {
	color: #fad102 !important;
}

.prixSADGroupe {
	color: orange !important;
}

.prixSADSGroupe {
	color: #fa8072 !important;
}

.prixSADVendantSeul {
	color: mediumblue !important;
}

@media only screen and (min-width: 1200px) {
	.shopping-cart-actions {
		flex-direction: row;
	}
}

.shopping-cart-actions > .column-left {
	display: flex;
	flex-direction: column;
}

	.shopping-cart-actions > .column-left .large-button {
		margin-bottom: 15px;
	}

@media only screen and (min-width: 475px) {
	.shopping-cart-actions > .column-left {
		flex-direction: row;
	}

		.shopping-cart-actions > .column-left .large-button {
			margin-bottom: 0;
		}
}

@media only screen and (max-width: 1200px) {
	.shopping-cart-actions > .column-left {
		padding-bottom: 15px;
	}
}

.shopping-cart-actions > .column-left a {
	margin-right: 15px;
}

.shopping-cart-actions > .column-right a {
	font-weight: bold;
}

.shopping-cart-payment-options p {
	margin-bottom: 5px;
}
/*
    Checkout
*/

.page-checkout-indicator {
	background-color: #072541;
	color: #0082ad;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 25px;
}

.page-checkout-indicator-wrapper {
	display: flex;
	text-transform: uppercase;
}

.page-checkout-indicator-item {
	padding-top: 30px;
	padding-bottom: 30px;
	margin-right: 30px;
	position: relative;
}

.page-checkout-indicator-item__selected {
	color: white;
}

	.page-checkout-indicator-item__selected::after {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-left: 16px solid transparent;
		border-right: 16px solid transparent;
		border-bottom: 16px solid white;
		position: absolute;
		bottom: 0;
		left: calc(50% - 8px);
	}

/*
    Checkout Page
*/

.page-checkout input[type=text], .page-checkout input[type=tel], .page-checkout input[type=email], .page-checkout textarea, .page-checkout select, .page-checkout input[type=date] {
	border: 1px solid #cbcbcb;
	border-radius: 0;
	padding-left: 12px;
	padding-right: 12px;
}

.page-checkout .form-section__full-width {
	max-width: 700px;
}

	.page-checkout .form-section__full-width .form-field {
		flex: 1 1 auto;
		width: 100%;		
	}

.page-checkout .form-row {
	margin-top: 20px;
	margin-bottom: 20px;
	flex-direction: column;
}

.page-checkout .form-field:not(:last-child) {
	padding-bottom: 25px;
}

@media only screen and (min-width: 500px) {
	.page-checkout .form-row {
		flex-direction: row;
	}

	.page-checkout .form-field:not(:last-child) {
		padding-right: 30px;
		padding-bottom: 0;
	}

	.page-checkout .form-section__full-width .form-field {
		width: 50%;
	}
}

.page-checkout .form-row label {
	margin-bottom: 5px;
}

.page-checkout-shipping-wrapper {
	color: black;
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 900px) {
	.page-checkout-shipping-wrapper {
		flex-direction: row;
	}
}

.page-checkout-shipping-wrapper h2 {
	font-weight: normal;
	font-size: 21px;
}

.page-checkout-shipping-wrapper > .column-left {
	flex: 1 1 auto;
}

@media only screen and (min-width: 900px) {
	.page-checkout-shipping-wrapper > .column-left {
		padding-right: 15px;
	}
}

.page-checkout-shipping-wrapper > .column-right {
	flex: 0 0 300px;
}

.page-checkout-shipping-wrapper .form-section {
	margin-bottom: 40px;
}

@media only screen and (min-width: 900px) {
	.page-checkout-shipping-wrapper .form-section {
		padding-left: 30px;
	}
}

@media only screen and (max-width: 900px) {
	.page-checkout-shipping-wrapper .large-button {
		margin-left: auto;
		margin-right: auto;
	}
}

.page-checkout-shipping-wrapper .form-row__radio label {
	margin-bottom: 0;
	margin-left: 5px;
}

.page-checkout-shipping-wrapper .form-row__account-creation {
	margin-top: 5px;
}

.page-checkout-shipping-wrapper .page-checkout-terms-section .form-row {
	flex-direction: row;
}

.page-checkout-shipping-wrapper .page-checkout-terms-section .form-section__terms {
	padding-left: 15px;
	padding-right: 15px;
}

@media only screen and (min-width: 900px) {
	.page-checkout-shipping-wrapper .page-checkout-terms-section .form-section__terms {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.page-checkout-shipping-wrapper .page-checkout-terms-section .form-row__radio label {
	margin-left: 10px;
}

.page-checkout-shipping-wrapper .form-section__terms {
	background-color: #f6f6f6;
	margin-top: 40px;
	margin-bottom: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
}

	.page-checkout-shipping-wrapper .form-section__terms .form-row {
		margin: 0;
	}

.page-checkout-shipping-wrapper .form-field__short input {
	max-width: 170px;
}

.page-checkout-shipping-wrapper .form-saved-addresses {
	border-bottom: 1px solid #909090;
}

.page-checkout-shipping-wrapper .form-saved-addresses-wrapper {
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: -10px;
}

.page-checkout-shipping-wrapper .form-saved-addresses table {
	border-collapse: collapse;
	width: 100%;
}

@media only screen and (max-width: 675px) {
	.page-checkout-shipping-wrapper .form-saved-addresses tr {
		display: flex;
		flex-direction: column;
		padding: 10px;
	}

	.page-checkout-shipping-wrapper .form-saved-addresses td:not(:first-child) {
		padding-left: 38px;
	}
}

.page-checkout-shipping-wrapper .form-saved-addresses table tr:nth-child(odd) {
	background-color: #f6f7f7;
}

.page-checkout-shipping-wrapper .form-saved-addresses table td {
	padding-top: 3px;
	padding-bottom: 3px;
}

.page-checkout-shipping-wrapper .form-saved-addresses .form-saved-address-radio {
	align-items: center;
	display: flex;
	margin-left: 10px;
}

	.page-checkout-shipping-wrapper .form-saved-addresses .form-saved-address-radio label {
		margin-bottom: 0;
	}

.page-checkout-shipping-wrapper .shopping-cart-shipping-options {
	max-width: 270px;
	width: 100%;
}

.page-checkout-shipping-wrapper .shopping-cart-shipping-options-checkout {
	max-width: 400px;
	width: 100%;
}

.page-checkout-shipping-wrapper .shopping-cart-shipping-option {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}

	.page-checkout-shipping-wrapper .shopping-cart-shipping-option label {
		margin-bottom: 0;
	}

/*
    Payment Page
*/

.page-checkout-payment-wrapper {
	color: black;
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 900px) {
	.page-checkout-payment-wrapper {
		flex-direction: row;
	}
}

.page-checkout-payment-wrapper > .column-left {
	flex: 1 1 auto;
	padding-right: 15px;
}

.page-checkout-payment-wrapper > .column-right {
	flex: 0 0 300px;
}

.page-checkout-payment-wrapper .payment-methods-wrapper {
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 1200px) {
	.page-checkout-payment-wrapper .payment-methods-wrapper {
		flex-direction: row;
	}

		.page-checkout-payment-wrapper .payment-methods-wrapper > .column-left {
			flex: 0 1 300px;
		}

		.page-checkout-payment-wrapper .payment-methods-wrapper > .column-right {
			flex: 1 1 auto;
		}
}

.page-checkout-payment-wrapper .payment-methods-picker {
	margin-top: 20px;
}

.page-checkout-payment-wrapper .payment-method-picker {
	align-items: center;
	display: flex;
	margin-bottom: 15px;
}

	.page-checkout-payment-wrapper .payment-method-picker label {
		margin-left: 10px;
	}

.page-checkout-payment-wrapper .payment-method-picker__selected label {
	font-weight: bold;
}

.page-checkout-payment-wrapper .form-field {
	justify-content: flex-end;
}

.page-checkout-payment-wrapper .form-section__full-width {
	max-width: 435px;
}

.page-checkout-payment-wrapper .payment-method-wrapper {
	display: none;
}

	.page-checkout-payment-wrapper .payment-method-wrapper.payment-method-wrapper__active {
		display: block;
	}

.page-checkout-payment-wrapper .form-field__expiration {
	min-width: 170px;
}

.page-checkout-payment-wrapper .form-field__cvv {
	min-width: 0;
	max-width: 110px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

.navbar a {
    color: white !important;
}

/* Set width on the form input elements since they're 100% wide by default */
.colorElectro5 {
    color: var(--ct-sky-blue) !important;
}

#searchBar 
{
    margin-top: 10px;
    margin-bottom: 10px;    
}

.editor
{
    margin-bottom : 5px;
    clear : both;
}

.editor label 
{
    float : left;
    width : 90px;
}

.editor span
{   
   display : block;
   color : red;
}

.editor input[type=text], input[type=password], select
{  
    min-width: 150px; 
}

.validation-summary-errors ul
{
    display: block;
    color: red;
    list-style-type: none;
    padding: 0;
}

.dropdown-menu
{
   padding: 0px;
}

.dropdown-menu > li > a
{
    background-color: #222222;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-menu > li > a:hover
{
    color: #222 !important;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown.open {
    color:black;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.navbar-right .dropdown-menu
{
    right:initial;
}

.transportActive
{
    background-color : #689aad;
    color:#fff;
}

.filtreParent
{
    font-weight: bolder;
    padding-top: 2px;
    padding-bottom: 2px;
}

.logo-filtre {
	max-width: 5em !important;
}

.pageXofY 
{
    font-weight: bold;
}

.errorMsg
{
    color: indianred;
    font-weight: bold;
}

.padTop20
{
    padding-top: 20px;
}

.addressInfoFooter
{
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.totalLabel
{
    font-weight: bold;
}

.total-display {
	font-weight: bold;
	font-size: 16px;
}

.totalSection {
    padding: 10px;
}

.normalLine {
    margin-top: 5px;
    margin-bottom: 5px;
}

.tdLeft {
    text-align:left;
}

.tdRight {
    text-align:right;
}

.tdRadioTransport {
    text-align: left;
    width: 25px;
    padding-left: 5px;
}

.tdPrixTransport {
   width: 70px;
   text-align: right;
}

.grandTotal {
    color: indianred;
    font-size: 16px;
    font-weight: bold;
}

/* JQuery UI Dialog on top */
.ui-dialog { 
    z-index: 9999 !important;
}

.ebayLink {
    padding-top: 5px !important;
    width: 75px !important;
}

.stockDispo {
    color: green;
    font-weight: bold;
}

.stockNonDispo {
    color: darkorange;
    font-weight: bold;
}

.Detail-Price-No {
    margin-top: 3px;
    font: bold 16px "Roboto";
}

.heuresOuverture li {
    padding-bottom: 5px !important;
}

.aboutTitle {
  font: 500 19px "Arial", sans-serif;
  color: #555454;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden; }

.serviceTitle {
	font-family: "Arial";
	color: #0070B9;
	font-size: 12px;
	font-weight: bold;
}

.back-color-main {
	background-color: var(--ct-sky-blue) !important;
}

.text-main-color {
	color: var(--ct-sky-blue) !important;
}

.bold {
	font-weight: bold;
}

.main-panel {
	background: var(--ct-sky-blue); 
	color: #fff;
	font-weight: bold;
}

.main-color-borders {
	border: 1px solid var(--ct-sky-blue);
}

.slim-margin-1 {
	margin: 1px !important;
}

.product-container {
    box-shadow: 0px 6px 6px -4px #777;
    min-height: 460px;
    max-height: 460px;
    min-width: 200px !important;
    max-width: 450px;
	border-radius: 15px;
	transition: all 2s;
}

	.product-container:hover {
		box-shadow: 0px 7px 6px -4px #333;
	}

.detail-card {
	max-width: 150px !important;
	min-width: 150px !important;
	max-height: 230px !important;
	min-height: 230px !important;
	border: 1px solid #ddd;
	margin: 5px;
	margin-right: 15px;
	word-wrap: break-word;
	transition: all 0.3s;
}

	.detail-card:hover {
		border: 1px solid var(--ct-sky-blue);
		cursor: pointer;
	}

.detail-card-p {
	margin: 0;
	margin-bottom: 9px;
	margin-top: 9px;
}

.shoppingcart-img-container {
	height: 75px;
	text-align: center;
	display: flex; /* add */
	justify-content: center; /* add to align horizontal */
	align-items: center; /* add to align vertical */
}

    .shoppingcart-img-container > img {
        max-width: 65px;
        border: 1px solid var(--ct-sky-blue);
        max-height: 65px;
    }

.detail-card-img-container {
	height: 75px;
	text-align: center;
	margin-top: 5px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex; /* add */
	justify-content: center; /* add to align horizontal */
	align-items: center; /* add to align vertical */
}

	.detail-card-img-container > img {
		max-height: 75px;
		max-width: 75px;
		border: 1px solid var(--ct-sky-blue);
	}

.robotic {
    height : 172px;
}

.robotic-title {
    font-weight: bold;
    font-size: 20px;
}

.robotic-title-small {
    font-weight: bold;
    font-size: 14px;
}

.robotic-content {
    text-align: justify;
}

    .robotic-content > ul {
        list-style-position: outside;
        list-style-type: circle !important;
    }

.robotic-separateur {
    height: 5px;
    border-bottom: 2px solid var(--ct-sky-blue);
    padding-left: 11px;
    margin-top: 5px;
    box-shadow: 0px 10px 8px -10px var(--ct-sky-blue);
    margin-bottom: 15px;
}

.robotic-img-container {
    height: 160px;
    text-align: left;
    padding: 0 !important;
    display: flex; /* add */
    justify-content: center; /* add to align horizontal */
    align-items: center; /* add to align vertical */
}

    .robotic-img-container > img {
        max-height: 160px;
        max-width: 160px;
        border: 1px solid var(--ct-sky-blue);
    }

.robotic-fiche {
    position: absolute;
    top: -3px;
    right: 15px;
}

.product-card {
    min-width: 275px !important;
    max-width: 275px !important;
    float: left;
    margin-left: 15px;
    margin-right: 7px;
}

.itemCard > a {
	height: 150px;
   padding: 0 !important;
}

.paypal-button {
	box-shadow: 0 0 5px -4px #ddd !important;
}

	.itemCard > a > img {
		max-height: 100%;
		max-width: 100%;
		margin-top: 7px !important;
	}

.itemCardDescription {
   height:110px;
   max-width: 260px;
}
	.itemCardDescription > a {
		font: bold 16px "Roboto";
		color: black;
		max-width: 260px;
	}

.itemDescription {
	font: 12px "Roboto";
	color: var(--ct-sky-blue);
}

.listeFiltre {
   width:190px;
   margin-right: 15px;
}

.listeFiltreLiner {
	border-bottom: 1px solid #ddd;
}

.listeFiltreSecondCell {
   width: 100%;
}

.div-box {
	border: 1px solid #ddd;
	box-shadow: 0px 0px 3px #bbb; 
	padding: 10px;
	border-radius: 12px;
}

.rechercheResult {
	border-bottom: 2px solid var(--ct-sky-blue);
	font-size: x-large;
	padding-left: 11px;
	margin-top: 5px;
	box-shadow: 0 10px 8px -10px var(--ct-sky-blue);
	margin-bottom: 15px;
}

	.rechercheResult h3 {
		margin-top: -1px;
	}

	.rechercheResult p {
		font-size: medium !important;
		padding-bottom: -3px !important;
	}

   .rechercheResult a {
      position: relative;
      top: -40px;
      right: 11px;
      background-color: var(--ct-sky-blue);
      border: 1px solid var(--ct-sky-blue);
      border-radius: 7px;
      font-weight: bold;
      color: white;
      transition: 0.3s;
   }

      .rechercheResult a:hover {
         background-color: #777;
         border: 1px solid #777;
         color: white;
      }

.loadToCartBtn {
   background-color: var(--ct-sky-blue);
   border: 1px solid var(--ct-sky-blue);
   border-radius: 7px;
   font-weight: bold;
   color: white;
   transition: 0.3s;
}

   .loadToCartBtn:hover {
      background-color: #777;
      border: 1px solid #777;
      color: white;
   }

.loadToCartTextZone {
   width: 100% !important;
   min-height : 125px !important;
}

.category-list {
    margin-top: 0.5em;
    margin-bottom: 1.2em;
}

	.category-list li {
		display: inline-block;
		cursor: pointer;
	}

		.category-list li:not(:last-child):after {
			content: "/";
			padding-left: 5px;
			padding-right: 2px;
		}

		.category-list li a {
			color: var(--ct-sky-blue) !important;
			font-weight: bold;
			transition: all 0.2s;
			text-decoration: none;
		}

			.category-list li a:hover {
				color: #777 !important;
				font-weight: bold;
			}

.contactMap {
   width:100%;
   height:325px; 
   margin-top:15px;
}

.faq-block {
    border: 1px solid var(--ct-sky-blue);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 6px 6px -4px #777;
}

    .faq-block h4 {
        background: var(--ct-sky-blue);
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        padding: 15px;
        margin: 0;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

.btnAchat {
	width: 25px;
}

.btnAchatDetail {
	width: 35px;
	height: 35px;
	font-weight: 900;
	font-size: 14px;
	border: 1px solid #999;
	background-color: lightgray;
}

.loginTable {
	width: 100%;
}

	.loginTable tr {
		width: 100%;
	}

.loginTableTd1 {
	width: 40%;
	text-align:left;
	font-weight:900;
	font-family:Roboto;
	color: var(--ct-sky-blue);
}

.loginTableTd2 {
	width: 30%;
	text-align: left;
	font-weight: 900;
	font-family: Roboto;
	color: var(--ct-sky-blue) !important;
}

.loginTableTd3 {
	width: 20%;
	text-align: left;
	font-weight: 900;
	font-family: Roboto;
	color: var(--ct-sky-blue);
}

.login-container {
	display: flex;
	flex-direction: row;
	max-width: 50%;
	margin-top: 0.7em;
}

@media only screen and (max-width: 767px) {
	.login-container {
		max-width: 75%;
	}
}

@media only screen and (max-width: 480px) {
	.login-container {
		flex-direction: column-reverse;
		max-width: unset;
	}
}
.table-cumulatif {
	width: 100%;
}

	.table-cumulatif td {
		width: 100%;
		text-align: right;
	}

.inline-list {
	display: inline;
	margin-left: 33px;
}

.inline-list-no-margin {
	display: inline;
}

.txtEditor {
	background-color: transparent;
	border-style: none;
	border-bottom: 1px solid var(--ct-sky-blue);
	box-shadow: 0px 10px 8px -10px var(--ct-sky-blue);
	width: 100%;
	max-width: 100%;
}

.memoEditor-100 {
	height: 100px;
	background-color: transparent;
	border-style: none;
	border: 1px solid var(--ct-sky-blue);
	border-bottom: 1px solid var(--ct-sky-blue);
	box-shadow: 0px 10px 8px -10px var(--ct-sky-blue);
	width: 100%;
	max-width: 100%;
}

.dropDownEditor {
	background-color: transparent;
	border-style: none;
	border-bottom: 1px solid var(--ct-sky-blue);
	box-shadow: 0px 8px 8px -8px var(--ct-sky-blue);
	width: 100%;
	max-width: 100%;
}

.loginUl {
	margin-left: 12px;
}

	.loginUl > tr {
		height: 30px;
	}

	.loginUl > p {
		margin-top: 12px;
	}

.leftSeparateur {
	border-left: 1px solid #ddd;
}

.rightSeparateur {
	border-right: 1px solid #ddd;
}

.bottomSeparateur {
	border-bottom: 1px solid #ddd;
}

.bottomSpacer-5 {
	padding-bottom: 5px;
}

.bottomSpacer-10 {
	padding-bottom: 10px;
}

.bottomSpacer-15 {
	padding-bottom: 15px;
}

.bottomSpacer-20 {
	padding-bottom: 20px;
}

.bottomSpacer-25 {
	padding-bottom: 25px;
}

.trSelected {
	border-left: 2px solid var(--ct-sky-blue);
}

.lblSale {
	background-color: #f3f3f3;
	font: bold 16px "Roboto";
	padding: 3px 8px;
}

.lblPromo {
	background-color: #F13340;
	color: whitesmoke;
	font: bold 16px "Roboto";
	padding: 3px 8px;
}

.productCode {
	margin-top: 10px !important;
	margin-bottom: 20px !important;
	color: black;
	border-bottom: 1px solid #ddd;
	min-height: 44px;
	max-height: 44px;
}

	.productCode a {
		color: var(--ct-sky-blue);
	}

	.productCode span {
		position: absolute;
		bottom: 255px;
		left: 19px;
		max-width: 260px;
		font: bold 18px "Roboto" !important;
	}

.productDetail {
	display:block;
	margin-top: 5px;
	border: 1px solid #ddd;
}

.productFooter {
	position: absolute;
	bottom: 10px;
	right: 30px;
}

.productDetailDesc {
	height: 82px;
	width: 96%;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.DetailPrice {
	margin-top: 3px;
	font: bold 20px/22px "Roboto";
}

	.DetailPrice span {
		vertical-align:middle;
		font: bold 12px "Roboto";
	}

.text-12 {
	font-size: 12px;
}

.DetailPriceEcofrais {
	margin-top: 5px;
	font: bold 28px "Roboto";
}
.DetailMainDescription {
	border: 1px solid #ddd;
	width: 100%;
}
	.DetailMainDescription > p {
		margin: 5px;
		width: 100%;
	}

.ImageProductCard {
	margin-top: 2px;
}

.loader {
    /*position: fixed;
    left: 30%;
    top: 30%;*/
    width: 100%;
    height: 300px;
    z-index: 9999;
    /*background: url('/Images/loader2.gif') 50% 50% no-repeat rgba(5,5,5,0.9);*/ /*Loader avec fond noir*/
    background: url('/Images/loader.gif') 50% 50% no-repeat rgb(255,255,255); /*Loader avec fond blanc*/
}

.Qte-Buttons {
	margin-left: 20px;
}

.Qte-Buttons button {
    margin-right: -5px;
    border: 1px solid var(--ct-sky-blue);
    background-color: white;
    color: #555;
    font-weight: bold;
    transition: all 0.3s;
}

    .Qte-Buttons button:hover {
        background-color: #689aad;
        color: white;
    }

.btn-ext-left {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.btn-ext-right {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.Selected-Qte-Btn {
    background-color: var(--ct-sky-blue) !important;
    color: white !important;
}

.MarqueCard {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    width: 120px;
    height: 100px;
    border-radius: 10px;
}

.MarqueCard-img-container {
    height: 90px;
    display: flex; /* add */
    justify-content: center; /* add to align horizontal */
    align-items: center; /* add to align vertical */
}

    .MarqueCard-img-container > img {
        max-height: 90px;
        max-width: 90px;
    }

.Font-Medium {
    font-size: medium;
}

.FournisseurCard {
	float: left;
	margin: 10px;
	padding: 5px;
	border: 1px solid #ddd;
	box-shadow: 0px 6px 6px -4px #777;
	width: 270px;
	height: 120px;
	transition: all 0.3s;
	border-radius: 10px;
}

	.FournisseurCard:hover {
		border: 1px solid var(--ct-sky-blue);
		background-color: #aaa;
		cursor: pointer;
	}

		.FournisseurCard:hover p {
			color: white !important;
		}

		.FournisseurCard:hover span {
			color: white;
		}

.FournisseurCard-text {
	color: var(--ct-sky-blue);
	font: bold 14px "Roboto";
	width: 124px;
	margin-left: -25px;
}

.FournisseurCard-desc {
	margin-left: -9px;
	margin-top : -18px;
	max-height: 89px;
	min-height: 69px !important;
	max-width: 122px;
	min-width: 122px;
	word-wrap: break-word;
	overflow-y: hidden;
}

.FournisseurCard-img-container {
	height: 100px;
	margin-top: 5px;
	/*position: absolute;*/
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex; /* add */
	justify-content: center; /* add to align horizontal */
	align-items: center; /* add to align vertical */
}

	.FournisseurCard-img-container > img {
		max-height: 100px;
		max-width: 100px;
	}

.Contact {
	float:left;
	margin: 10px;
	padding: 5px;
	border: 1px solid var(--ct-sky-blue);
	box-shadow: 0px 6px 6px -4px #777;
	width: 270px;
	border-radius: 10px;
	height: 180px;
}

.ContactTable {
	width: 100%;
	margin-bottom: 4px;
}

.ContactTableTd {
	padding-top: 0px;
	padding-bottom: 0px;
	width: 10px;
	text-align: left;
	vertical-align: top;
}

.ContactTableTitle {
	color: #428bca;
	font: bold 14px "Roboto";
}

.ContactTableP {
	color: black;
	font: bold 12px "Roboto";
}

.ContactTableA {
	font: bold 1em "Roboto Condensed", sans-serif;
	color: var(--ct-sky-blue);
	word-break: break-word;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
}

.OverFloat-x {
	overflow-x: auto;
}

.OverFlowElement-125 {
	overflow: auto;
	max-height: 125px;
}

.OverFlowElement-135 {
	overflow: auto;
	max-height: 135px;
}

.OverFlowElement-150 {
	overflow: auto;
	max-height: 150px;
}

.overflow-x-200 {
	max-height: 200px;
	overflow-x: auto;
}

.overflow-x-212 {
	max-height: 212px;
	overflow-x: auto;
}

.overflow-x-225 {
	max-height: 225px;
	overflow-x: auto;
}

.overflow-x-242 {
	max-height: 242px;
	overflow-x: auto;
}

.Spacer {
	height: 50px;
}

.padding-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.padding-top-15 {
	padding-top: 15px;
}

.padding-left-10 {
    padding-left: 10px;
}

.Element-Spacer {
	margin-top: 30px;
	margin-bottom: 25px;
}

.fixedHeader {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	box-shadow: 0px 0px 4px #333;
}

.errorText {
	color: red;
	font-size: 10px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 0.5em;
}

.errorText-color {
	color: red !important;
}

.errorPayment {
	padding: 5px;
}

.successText {
    color: green;
    font-weight: bold;
}

.anchor-text {
	color: white !important;
}

.stop-scrolling {
	height: 100%;
	overflow: hidden;
}

.two-by-two {
	min-width: 50px !important;
	margin-left: 3px;
	margin-right: 3px;
}

.popupCodeText {
	color: var(--ct-sky-blue);
	font: bold 14px "Roboto";
	border-bottom: 1px solid var(--ct-sky-blue);
	padding-bottom: 7px;
}

.popupDescriptionText {
	color: black;
	font: bold 12px "Roboto";
	padding-top: 10px;
	padding-bottom: 10px;
}

.popupMessage {
	color: black;
	font: bold 14px "Roboto";
}

.shadowBox {
	box-shadow: 0 6px 6px -4px #777;
}

.button-change {
	margin-top: -7px;
}

	.button-change a {
		border-radius: 5px;
	}

/*Placeholder*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #689aad;
}

::-moz-placeholder { /* Firefox 19+ */
	color: #689aad;
}

:-ms-input-placeholder { /* IE 10+ */
	color: #689aad;
}

:-moz-placeholder { /* Firefox 18- */
	color: #689aad;
}
/*end Placeholder*/

.link-all {
	margin-left: 15px;
	margin-bottom: 15px !important;
	width: calc(100% - 30px);
	/*border: 1px solid var(--ct-sky-blue) !important;*/
	color: white !important;
	background-color: var(--ct-sky-blue) !important;
	padding-top: 5px !important;
	padding-bottom: 5px !important;
	font: bold 18px "Roboto" !important;
	box-shadow: 0px 6px 6px -4px #777;
	transition: all 0.3s;
}

	.link-all:hover {
		background-color: #111 !important;
		box-shadow: 0px 6px 6px -4px #333;
	}

.save-box {
	background-color: lightgreen !important;
	transition: all 0.3s;
}

	.save-box p {
		color: black !important;
	}

.no-horizontal-margin {
    margin-left: 0;
    margin-right: 0;
}

.no-vertical-margin {
    margin-top: 0;
    margin-bottom: 0;
}

.no-margin {
    margin: 0;
}

.download-img {
    max-width: 100%;
    height: 45px;
    float: right;
    margin-top: -49px;
    margin-right: 16px;
    transform: rotate(50deg);
}

.download-text {
    float: right;
    margin-top: -35px;
    margin-right: 48px;
    color: #eee;
    font: bold 14px "Roboto";
    text-decoration: none;
    transition: all 0.3s;
}

    .download-text:hover {
        color: black;
    }

.link-faq {
    margin-left: 27px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .link-faq li {
        padding-bottom: 5px;
        cursor: grab;
        color: var(--ct-sky-blue) !important;
    }

    .link-faq li > a {
        color: var(--ct-sky-blue) !important;
        font: bold 16px "Roboto";
        transition: all 0.3s;
    }

        .link-faq li > a:hover {
            color: #333 !important;
            text-decoration: none;
        }


.button-payment {
    background-color: #4CAF50;
    margin-top: 10px;
    margin-bottom: 32px;
    width: 25vw;
    color: white;
    font: bold 16px "Roboto";
    border: 2px solid #4CAF50;
    max-height: 50px;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0px 6px 6px -4px #777;
    transition: all 0.3s;
}

	.button-payment:hover {
		background-color: transparent;
		border-radius: 0;
		color: black;
	}

	.loginImg {
		margin-left: -125px;
	}

	.UpperCase {
		text-transform: uppercase;
	}

	.adresse-mainText {
		margin-left: 10px !important;
		font-weight: 900;
		font-family: Roboto;
		color: var(--ct-sky-blue);
	}

	.Margin-Left-20 {
		margin-left: 20px;
	}

	.margin-top-10 {
		margin-top: 10px !important;
	}

	.float-left {
		float: left;
	}

   .float-right {
      float: right;
   }

	.form-payment {
		background-color: #f7f6ed !important;
	}

	.termesLink {
		cursor: pointer;
	}

	.full-width {
		width: 100% !important;
	}

	.no-padding {
		padding: 0 !important;
	}

	/*slider*/
	.item {
		background: #004e67;
		text-align: center;
		max-height: 300px !important;
	}

.bouton-detail-print {
    margin-left: -7px;
    margin-top: -15px;
    color: white;
    background-color: #428bca;
    border-color: #357ebd;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5 !important;
    border-radius: 8px !important;
    transition: all 0.3s;
}

    .bouton-detail-print:hover {
        background-color: #357ebd;
        border-radius: 3px !important;
    }

.bouton-detail-info {
    margin-left: -7px;
    margin-top: -15px;
    color: white;
    background-color: #46a74e;
    border-color: #3e9546;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5 !important;
    border-radius: 8px !important;
    transition: all 0.3s;
}

    .bouton-detail-info:hover {
        background-color: #3e9546;
        border-radius: 3px !important;
    }

.bouton-detail-promo {
    margin-left: -7px;
    margin-top: -15px;
    color: white;
    background-color: #ff9900;
    border-color: #cc7a00;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5 !important;
    border-radius: 8px !important;
    transition: all 0.3s;
}

    .bouton-detail-promo:hover {
        background-color: #cc7a00;
        border-radius: 3px !important;
    }


	/* mobile 480px- */
	@media all and (max-width:479px) {
		.mobile-fullsize-button {
			width: 100% !important;
			max-width: 100%;
			height: 50px !important;
			vertical-align: middle !important;
			text-align: center !important;
			max-height: 50px;
			margin-left: 0;
			font-size: 18px !important;
			font-weight: bold;
			font-family: Roboto;
			border: none;
			margin-bottom: 5px !important;
		}

		.mobile-fullHeight-button {
			width: 100% !important;
			max-width: 100%;
			max-height: 100% !important;
			vertical-align: middle !important;
			text-align: center !important;
			margin-left: 0;
			padding-top: 25% !important;
			padding-bottom: 25% !important;
			font-family: Roboto;
			border: none;
			margin-bottom: 5px !important;
		}

		.mobile-fullsize-anchor {
			width: 100% !important;
			max-width: 100%;
			height: 50px !important;
			line-height: 50px !important;
			padding-top: 0px !important;
			max-height: 50px;
			margin-left: 0;
			font-size: 18px !important;
			font-family: Roboto;
			color: white !important;
			margin-bottom: 5px !important;
		}

		.mobile-button-payment {
			background-color: #4CAF50;
			margin-top: 10px;
			margin-bottom: 32px;
			width: 100%;
			color: white;
			font: bold 16px "Roboto";
			border: 2px solid #4CAF50;
			height: 50px;
			border-radius: 50px;
			padding: 10px;
			box-shadow: 0px 6px 6px -4px #777;
			transition: all 0.3s;
		}

		.mobile-align-center {
			text-align: center;
		}

		.mobile-img-full-width {
			width: 100% !important;
		}

		.mobile-product-detail-button {
			width: 50em;
			padding: 0;
		}

		.mobile-Table {
			width: 93%;
			margin-bottom: 25px;
		}

		.mobile-table-tr {
			height: 45px !important;
		}

		.mobile-Tr-Unselected {
			border: 1px solid #ddd;
			font-size: 18px !important;
		}

		.mobile-Tr-Selected {
			background-color: var(--ct-sky-blue);
			margin-right: 2px;
			border-left: 0;
			border-right: 1px solid var(--ct-sky-blue);
			font-size: 18px !important;
		}

			.mobile-Tr-Selected > td > a {
				color: white !important;
				font-weight: bold;
			}

		.mobile-remove-separateur {
			border: none;
		}

		.mobile-bottom-separateur {
			border-left: none;
			border-right: none;
			border-bottom: 1px solid #ddd;
		}
	}

@media (max-width: 767px){

	.politique-div {
		display: block !important;
	}
}

#clientLoginCheckout {
	position: absolute;
	top: 0px;
	right: 5px;
}

.field-validation-error {
	color: Red;
}

.lienTelEmail {
	color: #fff !important;
	font-size: 17px !important;
	font-weight: bold !important;
}

.lienTelEmailContact {
	color: black !important;
}

#liste_poste_v2 {
	list-style-type: circle !important;
	padding-left: 20px;
}

	#liste_poste_v2 > li {
		padding-bottom: 5px;
	}

	#liste_poste_v2 > li > a {
		font-weight: bold;
	}

.entry_idea > ul {
	list-style-type: circle !important;
	padding-left: 20px;
}

.product-thumbnail {
	max-height: 100px;
	max-width: 100px;
}

.product-thumbnail-wrapper {
	width: 100px;
	text-align: center;
}

/* Images Modal */
.imageModal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: RGBA(0,0,0,0.4);
}

/* Modal Content */
.imgmodal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	width: 90%;
	/*max-width: 1200px;*/
	max-width: 500px;
}

/* The Close Button */
/*.close {
	color: white;
	position: fixed;
	top: 10px;
	right: 25px;
	font-size: 35px;
	font-weight: bold;
	border-radius: 100%;
	width: 35px;
	text-align: center;
}

	.close:hover,
	.close:focus {
		color: #999;
		text-decoration: none;
		cursor: pointer;
	}*/

/* Hide the slides by default */
.mySlides {
	display: none;
}

/* Next & previous buttons */
.prevImg,
.nextImg {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.nextImg {
	right: 0;
	border-radius: 3px 0 0 3px;
}

	/* On hover, add a black background color with a little bit see-through */
	.prevImg:hover,
	.nextImg:hover {
		background-color: rgba(0, 0, 0, 0.8);
	}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* Caption text */
.imgcaption-container {
	text-align: center;
	background-color: RGBA(0,0,0,0.4);
	padding: 2px 16px;
	color: white;
}

img.imgmodal-thumb {
	opacity: 0.6;
	max-width: 5.5em;
}

.active,
.imgmodal-thumb:hover {
	opacity: 1;
}

img.hover-shadow {
	transition: 0.3s;
}

.hover-shadow:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Create four equal columns that floats next to eachother */
.columnImg {
	padding: 0 8px;
	float: left;
	width: 20%;
}

/* /Images Modal */

.ui-dialog-titlebar-close {
	background-image: url(../../Images/close.svg);
	background-size: 15px 15px;
}

/* Ajouts thèmes Avril 2021 */

.column-right img {
	max-width: 100%;
	height: auto;
}
/*
.top_30 {
	padding-top: 30px;
}

.top_20 {
	padding-top: 20px;
}

.top_27 {
	padding-top: 27px;
}

.page-separator > h2 {
	padding-bottom: 5px;
}

input, select, textarea {
	min-height: 0;
	line-height: 1.2em;
}
*/
.page-checkout input[type=text],
.page-checkout input[type=tel],
.page-checkout input[type=email],
.page-checkout textarea,
.page-checkout select {
	padding-top: 5px;
	padding-bottom: 5px;
}

.page-checkout select {
	padding-top: 7px;
	padding-bottom: 6px;
}

.page-checkout input[type=date] {
	padding-top: 3px;
	padding-bottom: 3px;
}

.shopping-cart-summary input[type="text"],
.shopping-cart-summary select {
	padding-top: 5px;
	padding-bottom: 5px;
}

.grid-item-stock-level {
	font-size: 16px;
}

.pagination-item__active, .pagination-item:hover {
	background-color: var(--ct-sky-blue);
}

.product-eco-frais {
	font-size: 13px;
	line-height: 14px;
	padding-bottom: 5px;
	display: block;
	height: 17px;
}

.grid-item-stock-level {
	padding-top: 5px;
}

.cart-item-count {
	background-color: #f13340;
}

/*header*/
.logo-wrapper {
	width: 16.875em;
	max-width: 16.875em;
}

@media only screen and (max-width: 991px)
{
	.searchbar-wrapper{
		margin-right: unset;
		max-width: 29em;
		margin-left: 2em;
	}
}

@media only screen and (max-width: 757px)
{
	.searchbar-wrapper{
		margin-right: unset;
		margin-left: 0;
		max-width: 27em;
	}
}

@media only screen and (max-width: 375px)
{
	.searchbar-wrapper{
		max-width: 24em;
	}
}
@media only screen and (min-width: 1200px)
{
	#searchbox{
		width: 90%;
	}
}
.site-header a:hover,
.site-header a.current_page_or_ancestor {
	text-shadow: 1px 0 0 var(--ct-light-gray);
	color: var(--ct-light-gray);
	text-decoration: none;
	transition: ease-in color 0.2s;
}

.cart-button-wrapper a:hover {
	color: #fff !important;
}

.site-header-top .column-right {
	margin-top: auto;
}

@media only screen and (min-width: 758px) {
	.site-header-bottom {
		width: 100%;
		height: 3em;
	}

	.submenu-wrapper {
		color: white;
		margin-top: 0.5em;
		margin-bottom: 0.5em;
	}
}


/*accueil*/
.page-main-screen-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (min-width: 1024px) {
	.page-main-screen-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
}

.page-main-screen-wrapper > .column-left {
	display: flex;
	flex-direction: column;
	max-width: 420px;
	width: 100%;
}

@media only screen and (min-width: 1024px) {
	.page-main-screen-wrapper > .column-left {
		flex: 0 0 270px;
	}
}
/*accueil carrousel
#DemoCarousel {
	margin-bottom: 24px;
	max-height: 601px;
	max-width: 1064px;
	margin-left: auto;
	margin-right: auto;
}


	.carousel img {
		height: auto;
		width: 100%;
	}

	.carousel a {
		line-height: 0;
		vertical-align: bottom;
	}


.shadowBox {
	box-shadow: 0px 6px 6px -4px #777;
}

/*accueil produit*/
.section_separator {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
}

.page-product-summary-wrapper .section_separator {
	padding-bottom: 0;
}

.section_separator h2 {
	font-size: 25px;
	font-weight: normal;
	margin: 0;
}

.section_separator a {
	color: #0082ad;
}

/*call action*/
.call_action {
	background: #f9f9f9;
	padding: 20px;
	margin-bottom: 15px;
	border-radius: 10px;
}

	.call_action h2 {
		padding: 0;
		margin: 0 0 24px;
		font-size: 25px;
		font-weight: normal;
	}

	.call_action h3 {
		padding: 0;
		margin: 0 0 25px;
		font-size: 20px;
		line-height: 24px;
		font-weight: bold;
	}

	.call_action .entry {
		padding-bottom: 15px;
		font-size: 16px; 
		line-height: 24px;
	}

	.call_action a:not(.large-button) {
		color: #0082ad;
	}

	.call_action_structure .call_action_content {
		padding-right: 20px;
		flex-grow: 1;
	}


	.call_action_structure img {
		width: 100%;
		height: auto;
		display: none;
		padding-left: 20px; 
	}

	.call_action_structure .large-button {
		display: inline-block;
		min-width: 230px;
	}

@media only screen and (min-width: 1250px) {
	.call_action_structure .call_action_img {
		flex: 0 0 250px;
	}

	.call_action_structure img {
		display: block;
	}
}

/*bouton*/
.large-button {
	font-weight: normal; /*ou enlever le gras simplement dans l'autre balise*/
}

	.large-button:hover {
		color: #fff !important;
		text-decoration: none;
	}

.large-button__red {
	color: #fff;
	background: #ff0000;
}

	.large-button__red:hover {
		color: #fff;
		background-color: #072541;
	}

/*page de destination*/
.page-simple-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media only screen and (min-width: 1024px) {
	.page-simple-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
}

.page-simple-wrapper > .column-left {
	display: flex;
	flex-direction: column;
	max-width: 420px;
	width: 100%;
}

.page-simple-wrapper > .column-right {
	width: 100%;
}

@media only screen and (min-width: 1024px) {
	.page-simple-wrapper > .column-left {
		flex: 0 0 270px;
	}
}

.line_ico {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	display: flex !important;
	justify-content: flex-end !important;
}

	.line_ico.under_page_separator {
	}

.ico {
	width: 20px;
	height: 20px;
	background-position: center !important;
	background-size: contain !important;
	margin-left: 10px;
}

.printer {
	background: url('../../images/print-blue-24px.svg') no-repeat;
}

.info {
	background: url('../../images/info-blue-24px.svg') no-repeat;
}

.document {
	background: url('../../images/description-blue-24px.svg') no-repeat;
}

.printer:hover {
	background: url('../../images/print-24px.svg') no-repeat;
}

.info:hover {
	background: url('../../images/info-24px.svg') no-repeat;
}

.document:hover {
	background: url('../../images/description-24px.svg') no-repeat;
}

/*style general pour le contenu*/
.content h3 {
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
	padding-bottom: 7px;
	padding-top: 30px;
}

.content h4 {
	color: #0082ad;
	font-size: 17px;
	line-height: 24px;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 5px;
}

.content ul {
	list-style: disc;
	list-style: outside;
	padding-left: 22px; 
	padding-top: 0; 
	padding-bottom: 15px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 24px;
	margin-top: 0; 
}

.content > ul {
	padding-bottom: 20px;
}

.content p, .content div {
	font-size: 16px; 
	line-height: 24px;
	padding-bottom: 15px; 
	padding-top: 15px;
	margin: 0; 
}

.content a {
	color: #0082ad;
}

/*section onglet*/
.conteneur_onglet {
	padding-top: 20px;
	padding-bottom: 10px;
}

.onglet_principal {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	overflow: hidden
}

	.onglet_principal > h2 {
		background: #0082ad;
		margin: 0 0 10px;
		font-weight: normal;
	}

	.onglet_principal h2 {
		position: relative;
		font-size: 24px;
		line-height: 1em;
		padding: 12px 20px;
		color: #fff;
		cursor: pointer;
	}

.no_inner_onglet .onglet_principal .onglet {
	margin-top: -10px;
	margin-bottom: 10px;
}

.onglet_interne .onglet,
.no_inner_onglet .onglet { 
	background: #f8f8f8;
	padding: 0 15px;
}

.onglet_interne.actif .onglet,
.no_inner_onglet .actif .onglet { 
	padding: 15px 15px 15px;
}

.conteneur_onglet h2:after {
	position: absolute;
	right: 20px;
	top: 17px;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	color: #fff;
	background: #c2c2c2;
	text-align: center;
	line-height: 15px;
	vertical-align: middle;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f067";
	font-size: 10px;
	transition: all 0.2s ease-in;
}

.conteneur_onglet .actif > h2:after {
	content: '\f068';
}

.conteneur_onglet .onglet {
	opacity: 0;
	transition: all ease 0.5s;
	max-height: 0;
	overflow: hidden;
}

.onglet_principal.actif > .onglet,
.onglet_interne.actif .onglet {
	opacity: 1;
	max-height: 10000px;
}

.onglet_principal > .onglet {
	padding: 0 10px 0;
}

.onglet_principal.actif > .onglet {
	padding: 0 10px 10px;
}

.onglet_interne {
	margin-bottom: 10px;
}

	.onglet_interne > h2 {
		background: #072541;
		padding: 12px 20px;
		margin: 0;
		font-weight: normal;
	}

	.onglet_interne:last-child {
		margin-bottom: 0;
	}

.onglet {
	padding: 0 10px;
}

	.onglet .content {
		position: relative;
	}

.onglet_interne .onglet {
	background: #f8f8f8;
	padding: 0 15px;
}

.onglet_interne.actif .onglet {
	padding: 15px 15px 30px;
}

.entete_onglet_content .right_part {
	padding: 0; 
}

@media only screen and (min-width: 560px) {
	.entete_onglet_content {
		display: flex;
	}

		.entete_onglet_content .left_part {
			padding: 0;
			flex: 0 0 235px;
		}

		.entete_onglet_content .right_part {
			padding: 0 0 0 28px; 
		}
}

.entete_onglet_content > div > h3 {
	padding-top: 0;
}

.entete_onglet_content h3 {
	display: flex;
	justify-content: space-between;
}

.entete_onglet_content > div > h3,
h3.titre_plus_document, 
.onglet h3 { 
	padding-top: 15px;
}

.entete_onglet_content h3,
h3.titre_plus_document { 
	display: flex;
	justify-content: space-between;
}

/*panier*/
.common-link.delete-ico:after {
	content: "";
	width: 15px;
	height: 18px;
	background: url(../../images/delete-blue-24px.svg) no-repeat center;
	background-size: cover;
	display: inline-block;
	vertical-align: -4px;
	margin-left: 9px;
}

.common-link.delete-ico:hover:after {
	background: url(../../images/delete-24px.svg) no-repeat center;
	background-size: cover;
}

.page-shopping-cart .product-stock-status__available {
	font-size: 13px;
}

/*liste produits*/
.pagination_conteneur > div {
	display: inline-block;
	padding-right: 20px;
}

.product-summary {
	padding-top: 27px;
}

/*single produit*/
.product-detail {
	padding-top: 27px;
}

.product-detail-content .product-information h2 {
	margin-top: 18px;
}

.product-detail-content .product-detail-form input[type=submit] {
	margin-top: 20px;
}

.page-product-detail-wrapper > .column-left {
	min-width: 270px;
}

@media only screen and (min-width: 1024px) {
	.page-product-detail-wrapper > .column-right {
		flex: none;
		width: calc(100% - 270px);
	}
}

.product-detail-content > .column-right {
	flex: 1 auto;
}

.product-new-tag {
	padding: 9px 13px;
	font-weight: bold;
	background: #f13340;
}

.liquidation-new-tag {
	background: #f13340;
	color: white;
	text-transform: uppercase;
	padding: 9px 13px;
	font-weight: bold;
	text-align: center;
	display: inline-block;
}

.liquidation-new-tag-conteneur span {
	color: #757575;
	font-size: 13px;
	display: block;
	padding-top: 6px;
	font-weight: 300;
}

.product-action-menu a {
	display: block;
	width: 20px;
	height: 20px;
}

.print_ico {
	height: 24px;
	width: 24px;
	fill: var(--ct-sky-blue);
}

	.print_ico:hover {
		fill: var(--ct-dark-blue);
	}

.promo_ico {
	background: url(../../images/local_offer-blue-24px.svg) no-repeat center;
}

	.promo_ico:hover {
		background: url(../../images/local_offer-24px.svg) no-repeat center;
	}

.info_ico {
	background: url(../../images/info-blue-24px.svg) no-repeat center;
}

	.info_ico:hover {
		background: url(../../images/info-24px.svg) no-repeat center;
	}

.product-detail-content .product-actions {
	align-items: flex-start;
}

.product-detail-content .product-action-menu {
	padding-top: 5px;
}

.product-detail-content .product-action-menu {
	flex-direction: row;
	align-items: center;
}

	.product-detail-content .product-action-menu li {
		padding-right: 9px;
		padding-left: 9px;
	}

@media only screen and (min-width: 768px) {
	.product-detail-content > .column-right {
		padding-top: 9px;
	}

	.product-detail-content .product-action-menu li:not(:last-child):after {
		display: none;
	}
}

.product-detail-content .product-detail-form .product-quantity {
	margin-top: 10px;
}

.product-detail-content .product-pricing {
	align-items: flex-start;
	flex-wrap: wrap;
}

	.product-detail-content .product-pricing .column-left {
		width: 200px;
		padding-bottom: 10px;
	}

.product-detail-content .product-stock-status__available {
	padding-top: 32px;
	color: #33a257;
	font-size: 16px;
	font-weight: bold;
}

.page-product-detail-wrapper .product-price {
	margin-top: 15px;
}

.product-stock-type {
	font-size: 14px;
}

.product-stock-qty-tab {
	border-top: 2px solid #0082ad;
	border-bottom: 2px solid #0082ad;
	padding: 2px 0 2px;
	margin: 19px 0 15px;
	font-size: 14px;
	line-height: 14px;
}

	.product-stock-qty-tab > div {
		display: flex;
		justify-content: space-between;
		padding: 6px 0;
	}

.product-stock-multiplier {
	padding-bottom: 10px;
}

.product-stock-minimum {
	padding-bottom: 0;
}

.product-quantity span {
	padding-left: 8px;
	align-self: center;
}

#searchbox {
	margin-top: 0.7em;
	margin-bottom: 0.7em;
}

/* Ajouts thème 2021 */
.carousel-indicators {
	z-index: 19;
}

.liste_caracteristique h3 {
	border-bottom: 2px solid #e0e6ef;
	margin-bottom: 0;
	padding-bottom: 16px;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
}

.liste_caracteristique_item {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

	.liste_caracteristique_item .liste_caracteristique_item_col_1 {
		width: calc(33% - 10px);
	}

	.liste_caracteristique_item .liste_caracteristique_item_col_2 {
		width: calc(66% - 10px);
	}

	.liste_caracteristique_item:nth-child(odd) {
		background: #f9f9f9;
	}

@media only screen and (max-width: 1024px) {
	.liste_caracteristique_item .liste_caracteristique_item_col_1,
	.liste_caracteristique_item .liste_caracteristique_item_col_2 {
		width: calc(50% - 10px);
	}

	.liste_caracteristique_item {
		padding: 20px 10px;
		font-size: 13px;
	}
}

blockquote {
	padding: 20px;
	background: transparent;
	border: 1px solid #000;
	border-radius: 10px;
	margin: 0 0 20px 0;
}

.entry {
	font-size: 16px;
	line-height: 24px;
}

.entry ul {
	list-style: disc outside;
	margin-left: 20px;
	line-height: 1.2em;
	padding-bottom: 20px;
}

.entry > ul {
	padding-top: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.entry li > ul {
	padding-top: 8px;
}

.entry ol {
	list-style: decimal outside;
	margin-left: 20px;
	line-height: 1.2em;
	padding-bottom: 20px;
}

.entry > ol {
	padding-top: 0;
	padding-bottom: 10px;
	padding-left: 13px;
}

.entry li {
	padding-bottom: 8px;
	padding-left: 4px;
}

	.entry li:last-child {
		padding-bottom: 0;
	}

.cookie-overlay {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	background: #fff;
	z-index: 2051;
	line-height: 20px;
	font-size: 14px;
	border-radius: 6px;
	padding: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

	.cookie-overlay > div:first-child {
		width: 458px;
	}
	.cookie-overlay a {
		text-decoration: underline;
	}
	
.close-cookies {
	cursor: pointer;
}

.print_only {
	display: none !important;
}

.footer-container {
	background: var(--ct-dark-blue); 
}
.ft-text-color{
	color: #777;
	font-size: 1.2em;
}

.copyright {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #777;
	padding: 0.5em;
	margin-top:1em;
	font-weight: normal;
	width: 100%;
	font-size: 12px; }
	.copyright div a {
		font-weight: normal; }
	
@include media-breakpoint-down(md) {
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 0;

	> div:first-child {
		width: auto;
	}
}
/* PRINT */


@media print {
	.mobile-menu,
	.site-mobile-header,
	.site-header-top .column-right,
	.page-product-detail-wrapper > .column-left,
	.block-fb-cms,
	#footer > .row > * {
		display: none !important;
	}

	.site-header-top {
		max-width: none !important;
		margin: 0 !important;
		display: block !important;
	}

	.container {
		max-width: 100% !important;
	}

	.page-product-detail-wrapper {
		display: block !important;
	}

	.product-detail-content .product-detail-thumbnails {
		justify-content: flex-start !important;
	}

	.footer-container .container {
		padding-bottom: 1.875em;
	}

	#footer > .row > #block_contact_infos {
		display: block !important;
		width: 100% !important
	}

	.print_only {
		display: block !important;
	}

	.product-detail-image img {
		max-height: 100%;
	}

	.product-detail-content .product-detail-image-url {
		display: none;
	}
}

input[type=checkbox] {
	height: 15px;
	width: 15px;
}

.paymentOptionLabel {
	margin-top:5px;
}

.error-panel {
	background-color: #fce4e4;
	border: 1px solid #fcc2c3;
	padding: 20px 30px;
	text-align: center;
	width: 100%;
}

.error-panel-text {
	color: red;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	text-shadow: 1px 1px rgba(250,250,250,.3);
}

.toggle-content {
	display: none;
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 350ms ease-in-out, opacity 750ms linear;
}

.toggle-content.is-visible {
	display: block;
	height: auto;
}

.toggle-content.is-visible.active {
	opacity: 1;
}
