body {
	display: flex;
	flex-direction: column;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

header {	
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #E4E9EB;
}

header .top {
	background-color: white;
	height: 5px;	
}

header .center {	
	display: flex;
	padding: 20px 50px 10px 50px;
	align-items: center;
	column-gap: 15px;
}

header .center .logo-ctn {
	display: flex;
	flex-basis: 20%;	
}

header .center .logo-ctn .logo {
    height: 60px;
	max-width: 250px;
}

header .center .logo img {
	height: 100%;
	width: 100%;
    object-fit: contain;
	display: none;
}

header .center .search-ctn {
	flex-basis: 60%;
}

header .center .search-ctn .search {
	position: relative;
	display: flex;
	column-gap: 10px;
	display: flex;
    column-gap: 10px;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
	padding: 10px 40px 10px 20px;	
}

header .center .search-ctn .search input {
	border: 0;
	width: 100%;
}

header .center .search-ctn .search input:focus {
    outline: none;
}

header .center .search-ctn .search svg {
	position: absolute;
	top: 9px;
	right: 11px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

header .center .search-ctn .search svg path {
	fill: #7B7A7A
}

header .center .search-ctn .search .right {
	flex-basis: 20%;
}

header .bottom {
	display: flex;
	padding: 20px 50px 15px 50px;	
}


header .bottom .personalize-button {
	display: flex;
	column-gap: 10px;
	cursor: pointer;
	align-items: center;
	flex-grow: 1;
}

header .bottom .personalize-button svg {
	height: 16px;
}

header .bottom .personalize-button svg path {
	fill: #15477B
}

header .bottom .personalize-button .text {
	color: #15477B;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
}

header .bottom .powered-by {
	display: flex;
	column-gap: 10px;
	cursor: pointer;
	align-items: center;
}

header .bottom .powered-by svg {
	height: 16px;
}

header .bottom .powered-by svg path {
	fill: #15477B
}

header .bottom .powered-by .text {
	color: #15477B;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
}

.content {
	flex-grow: 1;
	overflow-y: auto;
	padding: 50px 50px 50px 50px;
}

.content .accordion .item .header {
	display: flex;
	column-gap: 15px;
	border-bottom: 1px solid #E2E2E2;
	align-items: center;
	padding: 10px 0px 10px 0px;
	cursor: pointer;
	align-items: center;
}

.content .accordion .item .header .title {
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
}

.content .accordion .item.selected .header .title {
	font-weight: 600;
}

.content .accordion .item .header .checked {
	height: 20px;
}

.content .accordion .item .header .checked path {
	fill: #82C67C;
}

.content .accordion .item .body {
	display: none;
	position: relative;
	min-height: 300px;
}

.content .accordion .item.selected .body {
	display: flex;
}

#productReferences {
	display: flex;
	column-gap: 10px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	flex-grow: 1;
    justify-content: center;
}

#products {
	display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    padding: 20px 0px 20px 0px;
    justify-content: center;
    max-height: 600px;
    overflow-y: auto;
}

#products > a {
	flex-basis: 150px;
    /* height: 150px; */
    padding: 10px;
    border: 1px solid #E2E2E2;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#products > a .title {
	
	font-size: 14px;
	font-weight: 600;	
	color: black;
}

#products > a .image {
	padding: 5px;
    height: 100px;
}

#products > a .image img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

footer {
	background-color: white;	
	display: flex;
	padding: 10px 50px 10px 50px;
	align-items: center;
	column-gap: 15px;
}

footer .logo-ctn {
	flex-grow: 1;	
	display: flex;
}

footer .logo-ctn .logo {
    height: 60px;
	max-width: 250px;
}

footer .logo img {
	height: 100%;
	width: 100%;
    object-fit: contain;
}

footer .help-ctn .help {
	display: flex;
    flex-direction: column;
    row-gap: 10px;
}

footer .help-ctn .help .text {
	display: flex;
    justify-content: center;
	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: #FFFFFF;	
}

footer .help-ctn .help .button {
	display: flex;
    justify-content: center;
	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	padding: 10px 20px 10px 20px;
	border-radius: 15px;
	background-color: #FEFEFE;
	cursor: pointer;
	color: #736DBE;
}

.loader {
	display: none;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 15000;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	background-image: url('../img/ajax-loader.gif');
	background-repeat: no-repeat;
	background-position: center center;
	opacity: .7;
}