@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

/**
* primary color: #fe4985
*
*/
html,
body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	font-size: 15px;
	color: #000000;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 18px;
	padding: 0 !important;
	overflow-x: hidden;
}

a {
	color: #000;
	font-weight: 500;
	text-decoration: none;
}

a:hover {
	color: #0098d3;
}

p {
	font-size: 16px;
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 15px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 100px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.ff-gb {
	/* font-family: 'Proximanova Bold' !important; */
}

.text-right {
	text-align: right;
}

.relative {
	position: relative;
}

.container {
	max-width: 1090px;
}

header {
	background-color: #fff;
	clear: both;
	position: relative;
	z-index: 20;
}



.nav-link {
	color: #000 !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
	/* font-family: 'Proximanova Medium'; */
	position: relative;
	outline: none;
	box-shadow: none;
}

/* .nav-link.dropdown-toggle::before{
		content: '';
		width: 30px;
		height: 30px;
		background: url('../images/arrowdown.svg') 0 0  no-repeat #f7f7f7;    
		border-radius: 50%;    
		position: absolute;
		top: 15px;
		left: -35px;    
		background-size: 40%;
		background-position: 50% 60%;
		transition: all 0.5s;
	}
	
	.nav-link.dropdown-toggle.show::before{
		content: '';
		width: 30px;
		height: 30px;
		background: url('../images/arrowup.svg') 0 0  no-repeat #f7f7f7;    
		border-radius: 50%;    
		position: absolute;
		top: 15px;
		left: -35px;    
		background-size: 40%;
		background-position: 50% 60%;
		transition: all 0.5s;
	} */

ul.navbar-nav li.nav-item:last-child {
	margin-left: 80px;
}

.dropdown-toggle::after {
	display: none;
}

.dropdown-toggle span {
	display: block;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	/* font-family: 'Proximanova Regular'; */
	padding-top: 7px;
}


.navbar .megamenu {
	padding: 1rem;
	background: #F5F5F5;
	border: none;
	padding: 5px;
}

.navbar .megamenu h4 {
	color: #000;
	/* font-size: 17px; */
	font-size: 16px;
	font-weight: 500;
	line-height: 17px;
	/* font-family: 'Proximanova Medium'; */
	padding: 10px;
}

.navbar .megamenu h4::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 7%;
	border-bottom: solid 3px #0098d3;
	padding-top: 5px;
	margin-left: 0px;
}

.navbar .megamenu ul {
	list-style: none;
}

.navbar .megamenu ul li {
	padding: 0px 10px 15px 0px;
	/* font-size: 15px; */
	font-size: 14px;
}

span.nav-close {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}



.navbar-light .navbar-nav.main-nav .nav-link::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 60%;
	border-bottom: solid 6px #1664bf;
	padding-top: 2px;
	margin-left: 2px;
}

.navbar-toggler {
	padding: 0 !important;
	border: none;
	box-shadow: none !important;
	outline: none !important;
}

/* menu icon */

.menu-icon {
	cursor: pointer;
	/* display: inline-block; */
	float: right;
	/* padding: 28px 20px; */
	position: relative;
	user-select: none;
	right: 20px;
}

.navbar-toggler.collapsed .menu-icon .navicon {
	background: #0098d3;
	display: block;
	height: 4px;
	position: relative;
	transition: background .2s ease-out;
	width: 35px;
}


.menu-icon .navicon:before,
.menu-icon .navicon:after {
	background: #0098d3;
	content: '';
	display: block;
	height: 4px;
	position: absolute;
	transition: all .2s ease-out;
	width: 35px;
}


.navbar-toggler.collapsed .menu-icon .navicon:before {
	top: 10px;
	transform: rotate(0deg);
}

.navbar-toggler.collapsed .menu-icon .navicon:after {
	top: -10px;
	transform: rotate(0deg);
}



.navbar-toggler .menu-icon .navicon {
	background: transparent;
}

.navbar-toggler .menu-icon .navicon:before {
	top: 0px;
	right: 0px;
	transform: rotate(-45deg);
}

.navbar-toggler .menu-icon .navicon:after {
	top: 0px;
	right: 0px;
	transform: rotate(45deg);
}



.menuarrow {
	border-radius: 50%;
	position: absolute;
	height: 10px;
	width: 10px;
	display: inline-block !important;
	left: -40px;
	top: 15px;
	background: #f2f2f2;
	transition: all 0.5s;
	padding: 15px 15px !important;
}

.menuarrow::before,
.menuarrow::after {
	content: "";
	position: absolute;
	bottom: 10px;
	width: 0.1rem;
	height: 30%;
	transition: all 0.5s;
}

.menuarrow::before {
	background-color: #333;
	left: 11px;
	transform: rotate(-45deg);
}

.menuarrow::after {
	background-color: #333;
	left: 17px;
	transform: rotate(45deg);
}

.nav-link.dropdown-toggle.show .menuarrow::before {
	/* left: -11px;  */
	transform: rotate(45deg);
}

.nav-link.dropdown-toggle.show .menuarrow::after {
	left: 17px;
	transform: rotate(-45deg);
}


/* ============ desktop view ============ */
@media all and (min-width: 769px) {

	.navbar .has-megamenu {
		position: static !important;
	}

	.navbar .megamenu {
		left: 0;
		right: 0;
		width: 100%;
		margin-top: 0;
	}

}

/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px) {

	.navbar.fixed-top .navbar-collapse,
	.navbar.sticky-top .navbar-collapse {
		overflow-y: auto;
		max-height: 90vh;
		margin-top: 10px;
	}
}

.breadcrumb-container {
	margin: 15px 0px 30px 0px;
}

.breadcrumb {
	font-size: 15px;
	position: relative;
	margin: 10px 0px 15px 0px;
}

.breadcrumb .breadcrumb-item {
	padding: 0px 30px 0px 40px;
	position: relative;
}

.breadcrumb .breadcrumb-item a {
	color: #909090;
}

.breadcrumb .breadcrumb-item:first-child a {
	/* font-family: 'Proximanova Medium'; */
	font-weight: 600;
}

.breadcrumb .breadcrumb-item:first-child::before {
	content: '';
	background: url('../images/home.svg') 0 0 no-repeat;
	width: 25px;
	height: 28px;
	position: absolute;
	display: inline-block;
	background-size: contain;
	left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
	position: absolute;
	left: 0;
	color: #909090;
}

.breadcrumb-item.active {
	color: #909090;
}

.desktop {
	display: block;
}

.mobile-hide {
	display: block;
}

.mobile {
	display: none !important;
}

.hd_mob_trigger {
	display: none;
}


.overlay {
	position: fixed;
	background: rgba(216, 216, 216, 0.7);
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 15;
	display: none;
}


.top-content {
	padding-top: 10px;
	background: #eaf0fb;
	border-top: 1px solid #CBD0DD;
	border-bottom: 1px solid #CBD0DD;
}

.top-content h1 {
	/* font-family: 'Proximanova Semibold'; */
	font-size: 32px;
	line-height: 40px;
	font-weight: 600;
	text-align: center;

}

.pagetitle {
	padding: 0px 0px;
	text-align: center;
}

.sub-heading {
	/* font-family: 'Proximanova Regular'; */
	font-size: 20px;
	line-height: 22px;
	padding: 0px 15%;
	text-align: left;
}

.top-content .highlight {
	font-weight: bolder;
}

.cardcontainer {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.cardcontainer .cards {
	width: 32%;
}

.topcards {
	width: 100%;
	padding: 20px 0px 15px 0px;

}


/* a:before{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events: auto;
	content: "";
	background-color: rgba(0,0,0,0);
  } */

.topcard:hover {
	box-shadow: 0 10px 10px rgb(0 0 0 / 25%);
	-webkit-transform: translate(0, -5px);
	transform: translate(0, -5px);
}

.topcards .topcard {
	position: relative;
	background: #fff;
	transition: all 200ms ease-in-out;
	box-sizing: border-box;
	border-radius: 5px;
}

.topcards .topcard span.card-badge {
	position: absolute;
	width: 40px;
	height: 40px;
	color: #fff;
	padding: 18px 13px;
	font-size: 20px;
	top: -20px;
	left: -19px;
}

.topcards .topcard.card1 {
	/* display: inline-block; */
	/* width: 31%; */
	border: 2px solid #000;
}

.topcards .topcard.card2 {
	/* display: inline-block; */
	/* width: 33%; */
	/* border: 2px solid #E59E34; */
	/* border: 2px solid #FFD505; */
	border: 2px solid #FFCE0B;
	/* margin: 0px 2%; */
}

.topcards .topcard.card3 {
	/* display: inline-block; */
	/* width: 31%; */
	border: 2px solid #000;
}

.topcards .topcard .card-logo {
	width: 100%;
	text-align: center;
	margin: 10px auto 0px;
	display: flex;
	align-items: center;
}

.topcards .topcard .card-logo .rating-star {
	flex: 0 0 45%;
	text-align: right;
	padding-right: 10px;
}

.topcards .topcard .card-logo .rating-star .star-svg,
.topcards .topcard .card-logo .rating-star .halfstar-svg,
.topcards .topcard .card-logo .rating-star .emptystar-svg {
	width: 15px;
	height: 15px;
}

.topcards .topcard .card-logo .rating-star .score {
	font-size: 18px;
}

.topcards .topcard .card-logo img {
	width: 100%;
	position: relative;
	display: block;
	margin: auto;
	max-height: 60px;
	object-fit: contain;
}

.topcards .topcard.card2 .card-logo {
	/* margin: 20px auto 0px;	 */
	margin: 15px auto 0px;
}

.topcards .topcard.card1 span.card-badge {
	background: url("../images/pink.svg");
	background-repeat: no-repeat;
	background-size: 95%;
}

.topcards .topcard.card2 span.card-badge {
	width: 40px;
	height: 40px;
	background: url(../images/gold.svg);
	background-repeat: no-repeat;
	background-size: 95%;
	padding: 18px 13px;
	font-size: 20px;
	top: -25px;
	left: -19px;
}

.topcards .topcard.card3 span.card-badge {
	background: url("../images/black.svg");
	background-repeat: no-repeat;
	background-size: 95%;
}

.topcards .topcard .card-text {
	padding: 0px 10px;
	display: inline-flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	min-height: 46px;
	position: relative;
	line-height: 20px;
}

/*
.topcards .topcard .card-text div:nth-child(1){
	width: 52%;
}

.topcards .topcard .card-text div:nth-child(2){
	width: 46%;
    display: inline-flex;
}*/

.topcards .topcard .card-text p {
	text-align: left;
	color: #111111;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
}

.topcards .topcard .card-text div.link {
	color: #0098d3;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	text-align: right;
	justify-content: end;
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.topcards .topcard .card-text img {
	/* margin-top: -1px; */
	width: 20px;
	height: 20px;
}

.topcards .topcard.card2 .card-text img {
	margin-top: -1px;
	width: 22px;
	height: 22px;
}

.topcards .topcard.card2 .card-text div {
	font-size: 15px;
}

.topcards .topcard .card-text div span {
	float: right;
	color: #0098d3;
}

.topcards .topcard.card2 .card-text a {
	font-size: 17px;
}



.topcards .topcard.card1 div.card-tag {
	position: absolute;
	height: 30px;
	color: #fff;
	padding: 5px 10px;
	font-size: 17px;
	top: -15px;
	right: -15px;
	background: #FF7854;
	font-weight: 600;
	border-radius: 5px;
	-ms-transform: skewX(162deg);
	-webkit-transform: skewX(162deg);
	transform: skewX(162deg);
}

.topcards .topcard.card1 div.card-tag span {
	-ms-transform: skewX(-162deg);
	-webkit-transform: skewX(-162deg);
	transform: skewX(-162deg);
	display: inline-block;
}

.topcards .topcard.card2 div.card-tag {
	position: absolute;
	height: 30px;
	color: #000;
	padding: 5px 10px;
	font-size: 17px;
	top: -15px;
	right: 5px;
	/* background: linear-gradient(0deg, #F4D58E, #FFD505); */
	background: linear-gradient(0deg, #ffe57e, #FFCE0B);
	font-weight: 600;
	border-radius: 5px;
	-ms-transform: skewX(162deg);
	-webkit-transform: skewX(162deg);
	transform: skewX(162deg);
}

.topcards .topcard.card2 div.card-tag span {
	-ms-transform: skewX(-162deg);
	-webkit-transform: skewX(-162deg);
	transform: skewX(-162deg);
	display: inline-block;
}

.topcards .topcard.card3 div.card-tag {
	position: absolute;
	height: 30px;
	color: #fff;
	padding: 5px 10px;
	font-size: 17px;
	top: -15px;
	right: 5px;
	background: #373737;
	font-weight: 600;
	border-radius: 5px;
	-ms-transform: skewX(162deg);
	-webkit-transform: skewX(162deg);
	transform: skewX(162deg);
}

.topcards .topcard.card3 div.card-tag span {
	-ms-transform: skewX(-162deg);
	-webkit-transform: skewX(-162deg);
	transform: skewX(-162deg);
	display: inline-block;
}


/* blog */
.article {
	margin-bottom: 30px;
	margin-top: 20px;
}

.article-image {

	margin: 20px 0px;
}

.main-content h2 {
	font-size: 19px;
	margin-bottom: 15px;
}

.main-content h3,
.article h3 {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 600;
	margin-top: 20px;
}

.main-content {
	margin-bottom: 30px;
}

.main-content p,
.article p {
	line-height: 20px;
	/* display: inline-block; */
	padding: 0;
	margin-bottom: 20px;
}

.main-content p b {
	/* font-family: 'Proximanova Bold'; */
}

.article p b {
	padding-left: 20px;
	/* font-family: 'Proximanova Bold'; */
}

.main-content p b::before,
.article p b::before {
	content: '';
	background: #0098d3;
	border-radius: 50%;
	width: 7px;
	height: 7px;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 4px;
	margin-right: 5px;
}

/* blog */



/* ranking */

.ranking-container {
	margin: 20px;
	padding-top: 24px;
	clear: both;
}

.ranking-container p.heading,
.featured-container p.heading {
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	/* font-family: 'Proximanova Bold'; */
	/* font-family: 'Proximanova Semibold';/ */
	/* padding-bottom: 20px; */
}

.featured-container p.heading {
	font-size: 18px;
	/* font-family: 'Proximanova Regular'; */
}

.rankbox {
	width: 100%;
	border: 1px solid #d8d9da;
	/* padding: 15px; */
	margin-bottom: 20px;
	border-radius: 5px;
}

.rankrow {
	padding: 10px 0px;
	margin: 0;
	background: #fff;
	border-radius: 5px;
}

.top-rank {
	border: 2px solid #0098d3;
	/* background: #0098d3; */
	/* padding: 2px; */
	position: relative;
	/* border: none; */
	margin-bottom: 0px;
	border-radius: 5px;
}


.rankrow .tag {
	position: absolute;
	/* background-color: #005e4c; */
	/* background-color: #FFD505; */
	background-color: #FFCE0B;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-weight: 600;
	color: #000;
	top: -25px;
	left: -10px;
	border-radius: 5px;
}

.rankrow .tag:after {
	content: '';
	width: 0px;
	height: 0px;
	position: absolute;
	bottom: -7px;
	left: 0px;
	border-style: solid;
	border-width: 0px 10px 8px 0px;
	border-color: transparent #d0b013 transparent transparent;
	/* border-color: transparent transparent #005e4c transparent; */

}

.month {
	position: absolute;
	left: 0px;
	top: -35px;
	font-size: 12px;
	color: #555555;
}

.mobile-month {
	position: absolute;
	right: 5px;
	top: -25px;
	font-size: 12px;
	color: #555555;
	text-align: left;
}

.month img,
.mobile-month img {
	margin-bottom: 5px;
	margin-right: 5px;
}


.mobileranktable .box-card .box-top .tag {
	position: absolute;
	background-color: #005e4c;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-weight: 600;
	color: #fff;
	border-radius: 5px;
	top: -10px;
	left: -10px;
}

.moreinfo-trigger {
	color: #015fb9;
	font-size: 13px;
	position: absolute;
	/* right: 20px; */
	right: 12px;
	bottom: -5px;
	font-weight: 600;
}

.moreinfo-trigger:hover {
	color: #015fb9;
}


.moreinfo-trigger .sarrow {
	position: relative;
	height: 10px;
	width: 10px;
	display: inline-block;
	margin-left: 10px;
}

.moreinfo-trigger .sarrow::before,
.moreinfo-trigger .sarrow::after {
	content: "";
	position: absolute;
	bottom: 0px;
	width: 0.11rem;
	height: 100%;
	transition: all 0.5s;
}

.moreinfo-trigger .sarrow::before {

	background-color: #015fb9;
	/* left: -3px; */
	transform: rotate(-45deg);
}

.moreinfo-trigger .sarrow::after {
	background-color: #015fb9;
	left: 6px;
	transform: rotate(45deg);
}

.moreinfo-trigger.open .sarrow::before {
	/* left: -3px; */
	transform: rotate(45deg);
}

.moreinfo-trigger.open .sarrow::after {
	left: 6px;
	transform: rotate(-45deg);
}

.featured-container .rankrow {
	padding: 10px 0px 10px 0px !important;
}

.featured-rank {
	margin: 15px 0px 30px 0px;
	clear: both;
}

.featured-rank.rankbox {
	padding: 0;
}

.featured-title p {
	/* font-family: 'Proximanova Bold'; */
	margin: auto 0;
	padding: 10px 0px;
	text-align: center;
	background: #eaf0fb;
	font-size: 18px;
	font-weight: 600;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.featured-rank .rankrow {
	padding: 0px;
	margin: 0;
}

.rank-logo {
	padding: 0px;
	text-align: center;
}

.rank-logo img {
	width: 100%;
	max-height: 90px;
	/* min-height: 80px; */
	max-width: 200px;
	/* padding-left: 25px; */
	margin: 0;
}

.rank-logo span.rankcounter {
	position: absolute;
	border: 2px solid #d8d9da;
	width: 35px;
	border-radius: 50%;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	background: #fff;
	left: -19px;
	top: 50%;
	transform: translateY(-50%);
	color: #000;
	margin: 0;
	line-height: 25px;
	font-weight: 700;
	/* font-family: 'Number Font'; */
}

.top-rank .rank-logo span.rankcounter {
	border-color: #0098d3;
	/* color: #0098d3; */
}

.offer-name {
	font-weight: 700;
	margin-bottom: 10px;
	padding: 0;
}

.ranking_score {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid #0098d3;
	background-color: #F7FAFF;
	border-radius: 5px;
	color: #02A2D8;
	min-width: 65%;
}

.ranking_score .ranking_text {
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 5px;
	text-transform: uppercase;
	line-height: 15px;
}

.ranking_score .score {
	font-size: 24px;
	font-weight: 800;
	line-height: 30px;
	color: #02A2D8;
	margin-bottom: 5px;
}

.ranking_score .score .basescore {
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
	color: #02A2D8;
}

.ranking_score .review_link {
	font-size: 13px;
	font-weight: 500;
	line-height: 15px;
	color: #02A2D8;
	text-decoration: underline;
}

.btn-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.more_link {
	margin-top: 10px;
	color: #02A2D8;
	text-decoration: underline;
}

.toprank_tag {
	padding: 20px;
	width: 90%;
	margin: auto;
	margin-bottom: 20px;
	background-color: #F7FAFF;
	border: 2px solid #0098d3;
	border-top: none;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tag_button {
	background: #000;
	color: #fff;
	font-size: 16px;
	padding: 10px 15px;
	margin-left: 15px;
	border-radius: 5px;
}

.d-center {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.d-left {
	display: flex;
	align-items: center;
	justify-content: left;
	position: relative;
}

.rank-rating {
	/* width: 100%; */
}

.rank-rating p {
	margin: 0;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	/* font-family: 'Proximanova Bold'; */
	padding-bottom: 5px;
}

.rating-star {
	position: relative;
	/* text-align: center; */
	margin-top: 5px;
}

.star-svg {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/star.svg) no-repeat 0 0;
	margin-left: 2px;
}

.halfstar-svg {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/halfstar.svg) no-repeat 0 0;
	margin-left: 2px;
}

.emptystar-svg {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/emptystar.svg) no-repeat 0 0;
	margin-left: 2px;
}

.hint-svg {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/hint.svg) no-repeat 0 0;
	margin-left: 5px;
	vertical-align: bottom;
	cursor: pointer;
	position: relative;
}

.hint-note {
	background: #fff;
	width: 280px;
	font-size: 12px;
	padding: 5px;
	display: inline-block;
	position: absolute;
	border: 1px solid #979797;
	padding: 10px;
	margin-top: 30px;
	left: 10%;
	display: none;
	z-index: 10;
}

.hint-note:before {
	content: '';
	display: block;
	position: absolute;
	left: 120px;
	bottom: 100%;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-bottom-color: #979797;
}

.hint-note:after {
	content: '';
	display: block;
	position: absolute;
	left: 121px;
	bottom: 100%;
	width: 0;
	height: 0;
	border: 9px solid transparent;
	border-bottom-color: #fff;
}

.score {
	display: inline-flex;
	align-items: center;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	color: #015fb9;
}


.basescore {
	font-size: 14px;
	margin-top: 5px;
	padding-left: 3px;
	color: #000;
}

.tags .tags-title {
	color: #63666a;
	font-size: 16px;
	font-weight: 500;
	/* font-family: 'Proximanova Semibold'; */
	margin-bottom: 5px;
}

.tags .tags-detail {
	margin: 0;
	font-size: 16px;
	/* font-family: 'Proximanova Semibold'; */
	font-weight: 600;
}

.tags .tags-detail span {
	font-size: 15px;
	font-weight: 500;
	/* padding-right: 5px; */
}

.currency {
	font-size: 20px !important;
	font-weight: 600 !important;
	color: #000 !important;
}

.black {
	color: #000 !important;
}

.grey {
	color: #63666a !important;
}

.simul-btn {
	background: #0098d3;
	/* font-family: 'Proximanova Bold'; */
	/* font-family: 'Proximanova Semibold'; */
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	padding: 13px 10px;
	text-align: center;
	width: 90%;
	border-radius: 5px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.simul-btn .endIcon {
	opacity: 0;
	transition: opacity ease 0.3s, margin ease 0.3s;
	margin-inline-start: -12px;
	margin-top: -4px;
}

.simul-btn .endIcon svg {
	font-size: 12px;
}

.simul-btn:hover .endIcon {
	opacity: 1;
	margin-inline-start: 8px;
}

.simul-btn:hover {
	background: #0098d3;
	color: #fff;
}

.btn-outline {
	background: #fff;
	border: 1px solid #0090d3;
	color: #0090d3;
}

.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
	background: #fff;
	border: 1px solid #0090d3;
	color: #0090d3;
}


.moreinfo-row {
	padding: 0px 11px 0px 11px;
}

.infocontainer {
	/* border-top:1px solid #d8d9da; */
	display: none;
}

.bt-1 {
	border-top: 1px solid #d8d9da;
}

ul.avantages {
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.avantages li {
	padding: 0;
	line-height: 28px;
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	width: 100%;
}

ul.avantages li span.tick {
	font-weight: 500;
	background: url(../images/done.svg) no-repeat 0 0;
	display: inline-block;
	background-size: contain;
	padding: 5px 5px 5px 5px;
	padding-left: 15px;
	line-height: 35px;
	width: 15px;
	height: 15px;
}


.moreinfo-bg {
	background: #e5e5e5;
	padding: 15px 15px 0px 15px;
	margin: 10px 0px 0px 0px;
	height: 92%;
}

.moreinfo-score {
	color: #545454;
	font-size: 28px;
	/* font-family: 'Proximanova Bold'; */
	float: left;
	padding-top: 5px;
}

.moreinfo-basescore {
	font-size: 16px;
	margin-top: 10px;
	padding-left: 5px;
}


.moreinfo-img {
	width: 95%;
	max-height: 50px;
	float: right;
}

.moreinfo-content {
	color: #545454;
	font-size: 15px;
	padding-top: 10px;
}

.moreinfo-content p {
	margin-bottom: 10px;
}


.recommended-content {
	background: #eaf0fb;
	margin-bottom: 20px;
	border-top: 2px solid #CBD0DD;
	border-bottom: 2px solid #CBD0DD;
}

.recommended-content h2 {
	/* font-family: 'Proximanova Semibold'; */
	font-size: 30px;
	text-align: center;
	padding: 15px;
	font-weight: bolder;
}

.recommended-content h2 img {
	width: 45px;
	height: 45px;
	margin-right: 5px;
	margin-bottom: 5px;
}

.survey-content {
	background: url("../images/grey-banner.svg"), #525252;
	padding: 25px 0px;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
}


.survey-content h2 {
	font-size: 30px;
	font-weight: 600;
	padding: 15px;
}

.survey-content h3 {
	font-size: 30px;
	font-weight: 400;
	padding: 0px 0px 15px 0px;
}

.survey-content p {
	font-size: 22px;
	font-weight: 600;
	padding: 15px;
}

.survey-content p img {
	width: 35px;
	height: 35px;
	margin-right: 5px;
	margin-bottom: 5px;
}

/* ranking */

.advert-text {
	font-size: 10px;
	color: #979797;
	font-weight: 400;
}

.advert-text:hover {
	color: #0098d3;
}


.sticky-sidebar {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
}

.right-sidebar {
	background-color: #f6f6f6;
	width: 95%;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: 4%;
}

.sidebar-heading {
	/* font-family: 'Proximanova Bold'; */
	text-align: center;
	/* font-size: 15px; */
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 10px;
}

.sidebar-list {
	list-style: none;
	/* padding-left: 10px; */
	padding-bottom: 10px;
	padding: 0px 5px 10px 5px;
}

.sidebar-list li {
	/* font-size:13px; */
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	padding-top: 10px;
}

.sidebar-list li span {
	padding-left: 15px;
	margin-left: -1em;
	width: 1em;
	position: relative;
	left: -5px;
	padding: 5px 0px 5px 0px;
	padding-left: 15px;
}

.sidebar-list li span img {
	height: 18px;
	padding: 1px;
}

footer {
	padding: 10px;
	padding-bottom: 0px;
	margin-top: 20px;
	background-color: #eaf0fb;
	color: #222222;
	/* font-family: 'Proximanova Bold'; */
}

.footer-logo {
	margin-left: -10px;
}

footer h3 {
	font-size: 22px;
	font-weight: 600;
	padding: 10px 50px 10px 0px;
	line-height: 28px;
	color: #000000;
}

footer h4 {
	font-size: 22px;
	margin-top: 15px;
	font-weight: 500;
}

footer h4::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 70px;
	border-bottom: solid 3px #0098d3;
	padding-top: 5px;
	margin-left: 0px;
}

footer p {
	font-size: 15px;
	font-weight: 600;
}

footer ul {
	list-style: none;
}

footer ul li {
	padding: 5px 10px 10px 0px;
}

footer ul li a {
	/* font-family: 'Proximanova Regular'; */
	font-weight: 500;
}


.ft-bk-nm {
	/* font-family: 'Proximanova Regular' !important; */
	color: #000 !important;
	font-weight: 500 !important;
}

/* ad pop */
.left-banner,
.right-banner {
	width: 120px;
	display: inline-block;
	margin-left: 10px;
	position: absolute;
	top: 253px;
}

.left-banner img,
.right-banner img {
	width: 100%;
	height: 100%;
	/* border-radius: 5px; */
}

.stickybanner {
	position: fixed;
	z-index: 5;
	margin-top: 0px;
	/* bottom: 200px; */
}

.stickybanner:before {
	content: "";
	background-color: #fff;
	position: absolute;
	height: 100%;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}


#footerpop {
	position: fixed;
	bottom: 0;
	width: 100%;
	/* background: #fff; */
	z-index: 45;
}

#footerpopimg img {
	/* width: 100%; */
	max-height: 130px;
}

.footerpopimg {
	width: auto;
	/* border: 1px solid #fff; */
	position: relative;
	display: inline-block;
}

.footerpopimg button {
	position: absolute;
	z-index: 99999;
	top: -28px;
	right: 0px;
	border-radius: 3px;
	width: auto;
	height: 30px;
	vertical-align: middle;
	text-align: center;
	/* padding: 5px 10px; */
	color: red;
	font-size: 14px;
	font-weight: 500;
	border: none !important;
	background: transparent;
}

.footerpopimg button:hover {
	border: none !important;
}

/* ad pop */


/* modal */
.modal_logo_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.modal_logo_container img {
	max-width: 200px;
	margin-bottom: 15px;
}

.modal_logo_container .ranking_score {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid #0098d3;
	background-color: #F7FAFF;
	border-radius: 5px;
	color: #02A2D8;
	min-width: 100px;
	margin-bottom: 15px;
}

.modal_logo_container .simul-btn {
	width: 80%;
}

.modal_features_container {
	background-color: #E8E8E8;
	border-radius: 5px;
	padding: 10px;
	font-size: 14px;
	line-height: 20px;
	margin: 15px 0px;
}

.modal_features_container p {
	font-size: 14px;
	line-height: 20px;
}

.modal_features_list {
	margin: 0px 0px 15px 0px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.modal_features_list p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 20px;
}

.modal_features_list .modal_feature_content h3 {
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: #02A2D8;
}

.modal_features_list .modal_ranking_score {
	background-color: #F7FAFF;
	color: #02A2D8;
	font-size: 20px;
	font-weight: 700;
	padding: 5px;
	border-radius: 5px;
}

.modal_features_list .modal_ranking_score .score {
	color: #02A2D8;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.modal_features_list .modal_ranking_score .score span {
	font-size: 14px;
	font-weight: 600;
}

.modal_content_container p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 20px;
}

.modal_content_container .simul-btn {
	width: 280px;
	margin: auto;
	display: block;
	margin-top: 20px;
}

.modal_content_container .modal_tabular {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	margin-bottom: 20px;
}

.modal_content_container .modal_tabular .cols {
	padding: 15px 15px 0px 15px;
	flex: 1;
}

.modal_content_container .modal_tabular .cols p {
	margin-bottom: 15px;
}

.modal_content_container .modal_tabular .cols ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.modal_content_container .modal_tabular .cols ul li {
	list-style: none;
	padding-bottom: 10px;
	position: relative;
	padding-left: 20px;
}

.modal_content_container .modal_tabular .cols.pros ul li::before,
.modal_content_container .modal_tabular .cols.plan ul li::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/green_tick.svg) no-repeat;
	position: absolute;
	left: -5px;
}

.modal_content_container .modal_tabular .cols.cons ul li::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/green_tick.svg) no-repeat;
	position: absolute;
	left: -5px;
}

.modal_content_container .modal_tabular .cols:not(:first-child) {
	border-left: 1px solid #EFEFF0;
}

.modal_content_container .modal_tabular .btnblock {
	display: inline-flex;
}

.modal_content_container .modal_tabular .btnblock .simul-btn {
	width: auto;
	background-color: #EA663B;
	color: #fff;
	border-radius: 25px;
	padding: 10px 15px;
	margin: auto;
}

.btn-close {
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 9;
}

/* modal */



@media only screen and (min-width:992px) and (max-width:1190px) {

	.modal-xl {
		max-width: 90%;
	}

	.top-content h1 {
		font-size: 32px;
		line-height: 40px;
	}

	.sub-heading {
		font-size: 18px;
		line-height: 22px;
	}

	.moreinfo-trigger {
		font-size: 11px;
		right: 10px;
	}

	/* .top-rank{
		margin-top: 10px;
	} */

	.ranking_disclaimer_container {
		font-size: 13px;
	}
}

@media only screen and (min-width:951px) and (max-width:1150px) {
	.topcards .topcard .card-text div.link {
		font-size: 13px !important;
	}
}

@media only screen and (min-width: 769px) and (max-width: 950px) {
	.topcards {
		display: none;
	}

	.ranking_disclaimer {
		/* display: none; */
		/* max-width: 65% !important; */
	}

	/* .top-rank{
		margin-top: 10px;
	} */

	.toprank_tag {
		padding: 20px 10px;
		width: 95%;
		font-size: 14px;
	}

	.tag_button {
		font-size: 14px;
	}

}

@media only screen and (min-width: 769px) and (max-width: 991px) {

	.modal-xl {
		max-width: 95%;
	}

	.desktop {
		display: none;
	}

	.mobile {
		display: none;
	}

	.hd_mob_trigger {
		display: none;
	}

	.tablet {
		display: block;
	}

	.top-content h1 {
		font-size: 32px;
		line-height: 40px;
	}

	.sub-heading {
		font-size: 18px;
		line-height: 20px;
		padding: 0;
	}

	.disclosure {
		display: none;
	}

	.ranking-container p.heading,
	.featured-container p.heading {
		padding-bottom: 20px;
	}

	.featured-rank .score,
	.recommended-content .score {
		font-size: 20px;
	}

	.featured-rank .tags .tags-title,
	.recommended-content .tags .tags-title {
		font-size: 12px;
	}

	.featured-rank .tags .tags-detail,
	.recommended-content .tags .tags-detail {
		font-size: 15px;
	}

	.featured-rank .rankrow {
		padding: 10px;
		margin: 0;
	}

	.star-svg,
	.emptystar-svg,
	.halfstar-svg,
	.hint-svg {
		width: 15px;
		height: 15px;
	}

	.tags {
		margin: 10px 10px;
	}

	.simul-btn {
		width: 95%;
	}

	.hint-note:before {
		left: 95px;
	}

	.hint-note:after {
		left: 96px;
	}

	.rank-logo {
		text-align: center;
	}

	.rank-logo img {
		width: 85%;
	}

	.moreinfo-trigger {
		font-size: 11px;
		right: 10px;
	}

	.moreinfo-bg {
		text-align: center;
	}

	.moreinfo-img {
		float: none;
		margin: 15px 0px;
	}



	.right-sidebar {
		margin-left: 0px;
		width: 100%;
	}

	.footerpopimg {
		width: 100%;
	}

	.footerpopimg img {
		width: 100%;
	}


}


@media screen and (min-width: 320px) and (max-width: 767px) {

	.mm-auto {
		margin: auto;
	}

	.desktop {
		display: none;
	}

	.mobile-hide {
		display: none !important;
	}

	.mobile {
		display: block !important;
	}

	.hd_dsk_trigger {
		display: none;
	}

	.hd_mob_trigger {
		display: inline;
	}

	.navbar-nav .nav-link,
	ul.navbar-nav li.nav-item:last-child {
		margin-left: 40px;
	}

	ul.navbar-nav li.nav-item:last-child {
		margin: 0;
	}

	.navbar .megamenu ul li {
		padding: 10px 10px 10px 0px;
	}

	.breadcrumb .breadcrumb-item {
		padding: 0;
	}

	.breadcrumb .breadcrumb-item:first-child a {
		display: none;
	}

	.breadcrumb-item+.breadcrumb-item::before {
		/* left: 10px; */
		left: 35px;
	}

	.breadcrumb-item.active {
		color: #909090;
		/* padding-top: 10px; */
		padding: 0px 0px 0px 55px !important;
	}

	footer h3 {
		font-size: 18px;
		font-weight: 600;
		padding: 0px;
		line-height: 20px;
		text-align: center;
		margin: 0;
	}

	.pagetitle {
		padding: 0;
		text-align: left;
	}

	.top-content {
		background: none;
		border-top: 1px solid #CBD0DD;
		border-bottom: none;
	}

	.top-content h1 {
		font-size: 20px;
		line-height: 22px;
		text-align: left;
		/* margin-top: 25px; */
	}

	.sub-heading {
		font-size: 16px;
		line-height: 18px;
		padding: 0;
		margin-bottom: 10px;
	}

	.ranking-container {
		margin-top: 25px;
	}

	.rank-rating {
		width: 100%;
		padding-left: 25px;
	}

	.featured-rank .rankrow {
		padding: 10px;
		margin: 0;
	}

	.featured-container p.heading {
		font-size: 15px;
	}

	.main-content h2 {
		font-size: 17px;
	}

	p {
		font-size: 16px;
	}

	.recommended-content h2 {
		font-size: 17px;
	}

	.recommended-content h2 img {
		width: 25px;
		height: 25px;
	}

	.survey-content {
		background: url(../images/grey-banner-mobile.svg), #525252;
		padding: 15px 0px;
		background-repeat: no-repeat;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-position: center;
	}

	.survey-content h2 {
		font-size: 20px;
	}

	.survey-content h3 {
		font-size: 20px;
	}

	.survey-content p {
		font-size: 19px;
	}

	.rankrow .tag {
		font-size: 14px;
		top: -28px
	}

	.tags {
		margin: 10px 0px;
	}

	.tags .tags-title {
		font-size: 13px;
	}

	.simul-btn {
		width: 95%;
		font-size: 18px;
		margin-top: 5px;
	}

	.simul-btn .endIcon {
		opacity: 1;
		margin-inline-start: 8px;
	}

	.tags.tprank {
		margin: 0px;
		display: inline-block;
		width: 100%;
	}

	.tags.tprank .tags-title {
		font-size: 12px;
		padding: 0px;
		margin: 0;
	}

	.tags.tprank .tags-detail {
		font-size: 16px;
	}

	.rank-logo {
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.rank-logo img {
		width: 65%;
	}

	.rank-logo p {
		position: relative;
		padding: 23px;
		left: 12px;
		top: 0;
		font-size: 24px;
	}

	.ranking-container {
		margin: 35px 0;
		padding: 0;
	}

	.mobile-month {
    	top: -40px;
	}

	.tags-desc {
		text-align: center;
		padding: 0px;
		margin: 5px auto;
		font-size: 17px;
		font-weight: 600;
		width: 95%;
	}

	.rank-logo span.rankcounter {
		width: 30px;
		height: 30px;
		font-size: 20px;
		left: 10px;
		transform: translateY(-50%);
		line-height: 25px;
		top: auto;
	}

	.toprank_tag {
		flex-direction: column;
		padding: 10px;
	}

	.right-sidebar {
		margin-left: 0px;
		width: 100%;
	}



	.footerpopimg {
		width: 100%;
	}

	.footerpopimg img {
		width: 100%;
	}


	.btn-close {
		top: -15px;
		background-color: #fff;
		opacity: 1;
		padding: 10px;
		right: 0;
		border-radius: 50%;
	}

	.modal_logo_container {
		flex-direction: row;
		justify-content: space-between;
		margin-bottom: 10px;
	}

	.modal_logo_container img {
		max-width: 150px;
	}

	.modal_logo_container p {
		flex-basis: 100%;
		margin-bottom: 5px;
		font-size: 14px	;
	}

	.modal_logo_container .ranking_score {
		border: none;
	}

	.modal_btns {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
}

/*  (max-width: 767px) */




.disclosure {
	width: 100%;
	float: left;
	margin-bottom: 5px;
	position: relative;
	z-index: 999;
}

.disclosure_box {
	background-color: #fff;
	border: 1px solid #cdcdcd;
	width: 75%;
	position: absolute;
	z-index: 999;
	top: 25px;
	text-align: center;
	border-radius: 10px;
	max-width: 350px;
}

.disclosure_text {
	padding: 20px 20px 10px 20px;
}

.disclosure_text p {
	color: #343434;
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
	text-align: left;
	margin: 0;
}

.disclosure-close {
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	font-weight: 600;
}

.pr {
	position: relative;
}

.disclosure-mobile {
	max-width: 110px;
	float: right;
	top: -10px;
	position: absolute;
	right: 0;
}

.disclosure-mobile .disclosure_box {
	background-color: #fff;
	border: 1px solid #cdcdcd;
	width: 320px;
	position: absolute;
	z-index: 999;
	top: 30px;
	text-align: center;
	right: 5px;
}

.disclosure-mobile .disclosure_box .disclosure_text {
	padding: 10px;
}

.disclosure-mobile .disclosure_box:before {
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid #cdcdcd;
	right: 10%;
	top: -21px;
}

.disclosure-mobile .disclosure_box:after {
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid #fff;
	right: 10%;
	top: -18px;
}


.header_disclaimer {
	border-bottom: 1px solid #BDBDBD;
	text-align: left;
	padding: 10px;
	position: relative;
}

.header_disclaimer .hd_content {
	margin: 0;
	padding: 0px 15px;
	color: #979797;
	font-size: 12px;
	position: relative;
	display: revert;
	text-align: center;
}

.header_disclaimer .hd_content .content,
.header_disclaimer .hd_content .hd_footer {
	display: inline;
}

.header_disclaimer .hd_content .hd_footer {
	position: relative;
}

.header_disclaimer span.header_disclaimer_trigger {
	cursor: pointer;
	-webkit-text-decoration: underline;
	text-decoration: underline;
	font-weight: 600;
	padding: 0px 10px;
	color: #383838;
}

.banner_disclaimer {
	position: absolute;
	top: 10px;
	right: 0;
	/* cursor: pointer; */
}

.banner_disclaimer_trigger {
	cursor: pointer;
}

.ranking_disclaimer {
	position: absolute;
	top: -35px;
	right: 0;
	text-align: right;
	max-width: 85%;
}

.ranking_disclaimer .disclaimer_trigger {
	display: flex;
	justify-content: end;
	gap: 0;
}

.ranking_disclaimer_trigger {
	cursor: pointer;
	position: relative;
}

.ranking_disclaimer_box {
	/* left: 120px; */
}

.ranking_disclaimer_container {
	display: flex;
	justify-content: end;
	font-size: 13px;
}


.disclosure-desktop {
	max-width: 380px;
	float: right;
	top: -1px;
	position: absolute;
	right: 0;
	display: none;
}

.disclosure-desktop .disclosure_box {
	background-color: #fff;
	border: 1px solid #cdcdcd;
	width: 320px;
	position: absolute;
	z-index: 999;
	top: 30px;
	text-align: center;
	right: 5px;
}

.disclosure-desktop .disclosure_box .disclosure_text {
	padding: 10px;
}

.disclosure-desktop .disclosure_box:before {
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid #cdcdcd;
	right: 10%;
	top: -21px;
}

.disclosure-desktop .disclosure_box:after {
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid #fff;
	right: 10%;
	top: -18px;
}


.header_disclaimer span.header_disclaimer_close {
	content: '';
	width: 15px;
	height: 15px;
	background: url("../images/close.svg") no-repeat;
	position: absolute;
	top: -5px;
	right: -5px;
	background-size: contain;
	cursor: pointer;
}

.hd_mob_close_trigger {
	text-align: center;
	margin: 10px 0px;
	color: #147dc2;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 767px) {

	.header_disclaimer {
		padding: 0;
	}

	.header_disclaimer p {
		padding: 0px;
	}

	.header_disclaimer span.header_disclaimer_close {
		right: -10px;
	}

	.header_disclaimer .hd_content {
		text-align: left;
		padding: 10px 0px;
	}

	.banner_disclaimer {
		        top: unset;
        right: 10px;
        /* bottom: -10PX; */
        z-index: 9;
	}

	.banner_disclaimer_trigger {
		font-size: 12px;
	}
}


/*cookies */

#cookieConsent {
	display: none;
	/* max-width: 1130px; */
	margin: auto;
	width: 100%;
}

.cookieConsent .tc-privacy-banner {}

.cookieConsent .tc-privacy-footer {
	bottom: 0px;
}

.cookieConsent .tc-privacy-banner {
	width: 100%;
	text-align: left;
	/* opacity: 0.9; */
	font-size: 16px;
	background: #fff;
	position: relative;
	z-index: 9;
	/* max-width: 1020px; */
	border: 1px solid #e6e7e9;
	/* border-radius: 5px; */
	top: 0px;
	/* max-width: 1130px; */
	/* background-color: #424242; */
	background-color: #f4f4f6;
	color: #fff;
}

.tc-reset-css {
	border: none;
	background: none;
}

.cookieConsent .tc-privacy-block-button,
.cookieConsent .tc-privacy-block-text {
	vertical-align: middle;
}

.cookieConsent .tc-privacy-block-text {
	width: 80%;
	display: inline-block;
}

.cookieConsent .tc-privacy-text {
	color: #0a1443;
	padding: 10px;
	font-size: 0.75em;
	text-align: left;
}

.cookieConsent .tc-privacy-text p {
	padding: 0px 0px 0px 0px;
	margin: 0;
	font-size: 12px;
}

.cookieConsent .tc-privacy-block-button {
	width: 18%;
	display: inline-flex;
	right: 10px;
	justify-content: end;
}

.cookieConsent .tc-privacy-block-button,
.cookieConsent .tc-privacy-block-text {
	vertical-align: middle;
}

.footer_privacy_button {
	background: #424242;
	color: #fff;
	padding: 5px 20px;
	border-radius: 5px;
	font-weight: 500;
}

.cookieConsent .tc-privacy-button {
	margin: 10px 0px;
}

.cookieConsent .tc-privacy-button {
	float: right;
	margin: 10px 0px 10px 10px;
	display: block;
	cursor: pointer;
	font-size: 0.75em;
	padding: 5px 10px;
}

.cookieConsent .tc-privacy-button.outline {
	background: #fff !important;
	color: #424242 !important;
	border: 1px solid #424242 !important;
}


@media (max-width: 970px) {
	.cookieConsent .tc-privacy-block-text {
		width: 100%;
	}

	.cookieConsent .tc-privacy-block-button {
		width: 100%;
		display: inline-flex;
		right: 10px;
		margin: auto;
		text-align: center;
		justify-content: center;
	}

	.cookieConsent .tc-privacy-button {
		display: inline-block;
		/* float: none; */
	}
}

@media (max-width: 767px) {
	.cookieConsent .tc-privacy-text {
		padding: 5px 0px;
	}

	.cookieConsent .tc-privacy-text p {
		padding: 0;
	}

	.cookieConsent .tc-privacy-button {
		margin: 5px 10px 10px 0px;
		/* float: right; */
		width: 40%;
		padding: 6px 20px !important;
	}

}


.main-content a,
.single-detail a {
	color: blue;
}

.updatemonth {
	position: absolute;
	background: #2b2525;
	top: -10px;
	right: 0;
	padding: 3px 5px;
	border-radius: 0px;
	border-bottom-left-radius: 10px;
}

.updatemonth .month {
	color: #fff;
	position: relative;
	top: 0;
	right: 0;
}

.info-circle {
	width: 20px;
	height: 18px;
}