:root {
	--blue: #1A3A4D;
	--orange: #F57C00;
	--yellow: #FDB813;
	--black: #1D1D1D;
}
html{
	overflow-x: hidden;
}
body{
	margin: 0;
	background-color: #F2F4F7;
	font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
	margin: 0;
}
img{
	max-width: 100%;
}
.header{
	max-width: 1096px;
	margin: 16px auto;
	display: flex;
	justify-content: space-between;
}
.main-wrapper{
	display: flex;
	gap: 42px;
	max-width: 1096px;
  margin: auto;
}
.main{
	background: #fff;
	width: 800px;
	padding: 37px 32px 15px;
}
.sidebar{
	display: flex;
	width: 250px;
	flex-direction: column;
	gap: 26px;
}
.main > h4{
	font-size: 14px;
	text-transform: uppercase;
	color: var(--blue);
}
.main > h1{
	font-size: 40px;
	color: var(--blue);
	margin-top: 16px;
	/*overflow: hidden;*/
	line-height: 43px;
}
.sidebar-heading{
	background: var(--blue);
	font-size: 14px;
	color: #fff;
	padding: 6px 14px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.sidebar-para{
	padding: 9px 13px;
	background: #fff;
	font-size: 12px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
.sidebar-para a.active {
  font-weight: bold;
}
.sidebar-sec-2 {
	position: sticky;
	top: 26px;
}

.sidebar-sec-2 > .sidebar-para{
	display: grid;
}
.sidebar-sec-2 > .sidebar-para > a{
	margin-bottom: 10px;
	background: url(../images/like.png) no-repeat left center;
	padding-left: 18px;
}
.tag-container{
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.tag{
	background: var(--blue);
	padding: 0 6px 3px;
	border-radius: 3px;
}
.tag-counter{
	color: var(--yellow);
}
.tag-description{
	color: #fff;
}
.tag-counter,.tag-description{
	font-size: 12px;
}
.margin-bottom{
	margin-bottom: 16px;
}
.margin-top{
	margin-top: 16px;
}
.date-para{
	color: #848471;
	margin-bottom: 11px;
}
/*.dynamic-date{
	color: #54E32D;
}*/
.post-para{
	margin-bottom: 16px;
	line-height: 26px;
}
.author-container{
	display: flex;
	column-gap: 16px;
	margin-top: 33px;
}
.author-details{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.author-name{
	display: flex;
	column-gap: 5px;
	align-items: center;
}
.post-img-container{
	margin-top: 26px;
	background: #F6F6F6;
	border-radius: 6px;
}
.post-img-container img{
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	width: 100%;
}
.img-caption{
	font-size: 14px;
	line-height: 18px;
	padding: 5px 16px 10px;
}
.margin-b-26{
	margin-bottom: 26px;
}
.margin-t-26{
	margin-top: 26px;
}
.margin-t-16{
	margin-top: 16px;
}
.margin-b-16{
	margin-bottom: 16px;
}
.main > h2{
	margin-bottom: 16px;
}
.red-highlight{
	background: #FCF4F4;
	border-radius: 6px;
	padding: 16px 23px;
}
.highlights-container{
	display: flex;
	column-gap: 33px;
}
.highlights-container img{
	border-radius: 6px;
}
.red-highlight ul,.blue-highlight ul,.comparison-ul{
	padding: 0;
	list-style: none;
	margin: 0;
}
.red-highlight li,.blue-highlight li, .comparison-ul li {
	position: relative;
	padding-left: 24px; /* space for the icon */
	line-height: 26px;
}
.red-highlight li::before,.blue-highlight li::before,.comparison-ul li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.37em;
	width: 16px;
	height: 17px;
	background-image: url('../images/red-highlight.svg');
	background-size: contain;
	background-repeat: no-repeat;
}
.blue-highlight{
	background: #E5F1F9;
	border-radius: 6px;
	padding: 16px 23px;
}
.blue-highlight li::before{
	background-image: url('../images/blue-highlight.svg');
}
.red-highlight.unique li:before{
	background-image: url('../images/unique-red-highlight.svg');
}
.comparison-container{
	display: flex;
	flex-direction: column;
}
.comparison{
	display: flex;
	column-gap: 32px;
	justify-content: space-between;
}
ul.comparison-ul.adv-ul li::before{
	background-image: url('../images/adv.svg');
}
ul.comparison-ul.disadv-ul li::before{
	background-image: url('../images/disadv.svg');
}
.comparison-container > h3{
	font-size: 20px;
}
.advantages,.disadvantages{
	width: 312px;
}
.blue-highlight-2{
	background: #C9E7FA;
	padding: 17px;
}
.blue-highlight-2 div{
	display: flex;
	gap: 16px;
}
.evaluation-list{
	display: flex;
	flex-direction: column;
	row-gap: 8px;
}
.evaluation-list-item{
	display: flex;
	column-gap: 16px;
	align-items: center;
}
.main > ul ::marker{
	font-size: 0.85em;
}
.evaluation-product-container{
	display: flex;
	flex-direction: column;
	background: #F4F8FA;
	border-radius: 6px;
	border: solid 1px #dcdcdc;
	box-shadow: 0 16px 32px 0 rgb(72 140 166 / 17%);
	margin-bottom: 60px;
}
.evaluation-product-header{
	background: #1A3A4D;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 35px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.evaluation-product-header h1{
	line-height: 26px;
}
.evaluation-product-body{
	margin: 42px 16px;
}
.product-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
.evaluation-product-body .comparison h2{
	font-size: 20px;
	margin-bottom: 8px;
}
.availability-btn{
	width: 500px;
	background: #F57C00;
	padding: 21px;
	display: flex;
	justify-content: center;
	text-decoration: none;
	color: #0C0D0E;
	font-size: 20px;
	font-weight: 600;
	border-radius: 8px;
	transition: all .3s ease;
}
.availability-btn:hover{
	background: #E65100;
	color: #fff;
}
.progress-bar-container{
	display: flex;
	flex-direction: column;
	/*align-items: flex-end;*/
}
.progress-bar-item{
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	margin: 8px 0;
}
.progress-bar-item label,.progress-bar-container p{
	font-size: 14px;
	font-weight: 600;
}
.progress-bar-container p{
	margin-bottom: 2px;
}
.margin-t-40{
	margin-top: 40px;
}
.margin-b-40{
	margin-bottom: 40px;
}
progress{
	width: 544px;
	height: 10px;
	appearance: none;
}

progress::-webkit-progress-value {
	background-color: #4BA8FF;
	border-radius: 19px;
}

/* Firefox */
progress::-moz-progress-bar {
	background-color: #4caf50;
	border-radius: 19px;
}
progress::-webkit-progress-bar {
	background-color: #D1D1D1;
	border-radius: 19px;
}
.progress-bar-item-container{
	display: flex;
	align-items: flex-end;
	column-gap: 20px;
}
.evaluation-product-body > p:last-of-type{
	margin-bottom: 0;
}
#last-product {
	margin-bottom: 0 !important;
}
.availability-btn-2{
	background: #2D9FE3;
	display: flex;
	gap: 4.6px;
	color: #fff;
	width: 604px;
	transition: all .3s ease;
}
.availability-btn-2:hover{
	background: #0288D1;
}
.references-h{
	margin-top: 111px;
	font-size: 16px;
	color: #5A5A5A;
}
ol{
	padding: 0 1.2em;
}
ol li{
	color: #5A5A5A;
	padding-bottom: 8px;
	font-size: 14px;
	word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}
.footer{
	padding: 37px 0;
	background: #1A3A4D;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 47px;
}
.footer-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
}
.footer-ul li {
	margin-right: 30px;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}
.footer-ul li:last-child {
	margin-right: 0;
}
.footer-ul li:first-child{
	margin-left: 30px;
}
.footer-ul a{
	text-decoration: none;
	color: #fff;
}



/*Mobile*/
@media (max-width: 1095px) {
	.mobile-hidden{
		display: none !important;
	}
	body{
		overflow-x: hidden;
	}
	.header{
		margin: 16px;
	}
	i{
		line-height: 120%;
	}
	.sidebar{
		display: none;
	}
	.main{
		width: 100%;
		padding: 25px 16px 15px;
	}
	.main > h4,i{
		font-size: 12px;
	}
	.main > h1{
		font-size: 32px;
		line-height: 120%;
	}
	.main > h2{
		font-size: 20px;
		line-height: 26px;
	}
	.tag-container{
		gap: 8px;
	}
	.date-para,.author-details{
		font-size: 14px;
	}
	.highlights-container{
		flex-direction: column;
		row-gap: 16px;
	}
	.red-highlight h2, .blue-highlight h2, .evaluation-product-body > h2{
		font-size: 20px;
		line-height: 26px;
	}
	.comparison{
		flex-direction: column;
		row-gap: 12px;
	}
	.blue-highlight-2 div{
		align-items: flex-start;
	}
	.evaluation-product-header h1{
		font-size: 24px;
		text-align: center;
		line-height: 140%;
	}
	.product-image-container{
		flex-direction: column;
	}
	.availability-btn{
		width: auto;
		padding: 19px;
		font-size: 16px;
		line-height: 120%;
	}
	progress{
		width: 100%;
	}
	.progress-bar-item-container{
		justify-content: space-between;
	}
	.progress-bar-item{
		width: -webkit-fill-available;
	}
	.availability-btn-2{
		line-height: 120%;
		padding: 15px;
	}
	.references-h{
		margin-top: 78px;
	}
}