@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: #FF2577;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  color: #FF2577;
  text-decoration: none;
}

ul {
  padding-left: 0;
  list-style: none;
}

:focus {
  outline: 0 !important;
}

p {
  font-size: 16px;
}


/* .container{
    max-width: 1200px;
} */

.pr {
  position: relative;
}

.mr-d-10 {
  margin-right: 10px !important;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.justify-content-end {
  justify-content: end;
}

.gap10 {
  gap: 10px;
}

.justify-content-space-even {
  justify-content: space-evenly;
}

#mobile_rankbox_container,
#mobile_featured_container,
#mobile_sidebar {
  display: none;
}

header {
  padding: 5px 0px;
}

header .header_logo {
  max-width: 190px;
}

#mobile_menu {
  /* display: none; */
  position: fixed;
  top: 0px;
  left: 0;
  /* height: calc(100% - 60px); */
  height: calc(100% - 180px);
  width: 100vw;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1000;
}

#mobile_menu.show {
  display: flex;
  top: 60px;
  transform: translateY(0);
}

#mobile_menu .menus_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
}

#mobile_menu .menus_container:last-child {
  margin-top: 30px;
}

#mobile_menu .menus_container p {
  width: 100%;
  font-weight: 600;
  color: #FF2577;
  text-align: left;
}

#mobile_menu ul {
  width: auto;
  margin: auto;
  /* margin-top: -60px; */
  /* border: 1px solid; */
  margin-left: 50px;
}

#mobile_menu ul li {
  padding-bottom: 10px;
}

#mobile_menu ul li:last-child {
  padding: 0;
}

#mobile_menu ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}


.navbar {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link {
  color: #000 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  position: relative;
  outline: none;
  box-shadow: none;
  padding-right: 30px !important;
}


.nav-link:after {
  content: "";
  position: absolute;
  right: 0;
  background: url(../images/menu_arrow.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 11px;
  border: none;
  margin: 0;
}


ul.navbar-nav li {
  padding: 0px 0px 0px 15px;
  margin-left: 30px;
}

/* ul.navbar-nav li:last-child {
  padding-right: 0px;
} */


ul.navbar-nav li.has-megamenu {
  position: relative;
}

ul.navbar-nav li.has-megamenu.active::after {
  content: '';
  position: absolute;
  width: calc(100% - 30px);
  height: 4px;
  background: linear-gradient(269.95deg, #FFAD3C -17.85%, #FF2577 78.65%);
  bottom: -20px;
}

ul.navbar-nav li.has-megamenu.active a.nav-link {
  color: #FF2577 !important;
}

ul.navbar-nav li.has-megamenu.active a.nav-link:after {
  background: url(../images/pink_menu_arrow.svg) no-repeat;
}



.navbar .megamenu {
  padding: 1rem;
  background: #fff;
  border: none;
  padding: 10px;
  left: unset;
  right: 0;
  border-radius: 8px;
  margin-top: 25px;
  width: max-content;
}

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

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

.navbar .megamenu ul li:last-child {
  padding: 0px 0px 0px 0px;
}

.navbar .megamenu ul li a {
  color: #000;
  font-size: 16px;
  line-height: 22px;
}

.navbar .megamenu ul li a:hover {
  color: #FF2577;
}

.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: #000;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 30px;
}


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


.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);
}


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

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

/* ============ 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;
  }
}


.mobile-ib {
  display: none;
}

/*header */

/*hero*/

#hero {
  background: #F5F5F7;
  padding: 30px 0px 100px 0px;
  width: 95%;
  margin: auto;
  border-radius: 20px;
}

.hero-updated {
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  margin: 10px 0px 0px 0px;
}

.hero-updated img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

#hero h1 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 800;
  margin: 0;
  padding: 0px 0px;
  margin-bottom: 10px;
}

#hero h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

#hero p {
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  margin-bottom: 10px;
}

#hero .banner_links_container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin: 10px 0px;
  gap: 10px;
}

#hero .banner_links_container .banner_link {
  /* flex: 1; */
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 8px;
}

#hero .banner_links_container .banner_link a {
  color: #000;
  display: inline-flex;
  align-items: center;
}

#hero .banner_links_container .banner_link span {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  padding-left: 10px;
}

#hero .banner_image_container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#hero .banner_image_container .banner_image {
  /* flex: 1; */
}

#hero .banner_image_container .banner_image.vertical_image {
  max-height: 250px;
}

#hero .banner_image_container .banner_image.horizontal_image {
  justify-content: center;
  display: inline-flex;
  gap: 20px;
  flex-direction: column;
  align-items: end;
}

#hero .banner_image_container .banner_image.vertical_image img {
  max-height: 250px;
  max-width: 160px;
}

#hero .banner_image_container .banner_image.horizontal_image img:first-child {
  max-height: 125px;
  max-width: 190px;
}

#hero .banner_image_container .banner_image.horizontal_image img:last-child {
  max-height: 100px;
  width: 100px;
}

#hero .banner_image_container .banner_image img {
  max-width: 100%;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

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

.hero_cards_container .hero_cards {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 75%;
  margin: auto;
  gap: 20px;
}

.hero_cards_container .hero_cards .hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 5px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
  width: 250px;
  height: 180px;
  position: relative;
  order: 3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero_cards_container .hero_cards .hero-card:hover {
  background: #F7F7F7;
  -webkit-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  transform: translate(0, -8px);
  cursor: pointer;
}

.hero_cards_container .hero_cards .hero-card.top {
  border-left: 1px solid #FF2577;
  border-right: 1px solid #FF2577;
  border-bottom: 1px solid #FF2577;
  /* height: 200px; */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

}

.hero_cards .hero-card.first {
  order: 2
}

.hero_cards .hero-card.second {
  order: 1
}

.hero_cards_container .hero_cards .hero-card.top .hero_card_top_tag {
  position: absolute;
  top: -15px;
  background: #FF2577;
  width: 101%;
  padding: 5px 0px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  text-align: center;
  color: #fff;
  border: 2px solid #FF2577;
}

.hero_cards_container .hero_cards .hero-card .card-logo img {
  width: 120px;
  height: 50px;
}

.hero_cards_container .hero_cards .card-content {
  text-align: center;
}


.rating_star_container {
  position: relative;
  display: flex;
  gap: 1px;
}

 .card_rating {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-right: 10px;
  /* color: #FF2577; */
}
 .card_rating .basescore {
    font-size: 13px;
    font-weight: 700;
    line-height: 15px; 
}

.rating_big_star {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 1px;
}

.rating_small_star {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 1px;
}

.fullstar {
  background: url(../images/full_star.svg) no-repeat 0 0;
  background-size: cover;
}

.halfstar {
  background: url(../images/half_star.svg) no-repeat 0 0;
  background-size: cover;
}

.emptystar {
  background: url(../images/empty_star.svg) no-repeat 0 0;
  background-size: cover;
}

.hero_cards_container .hero_cards .hero-card .card_link a,
#top_picks .review_link a {
  font-weight: 700;
  position: relative;
  margin-left: -24px;
}

.hero_cards_container .hero_cards .hero-card .card_link a::after,
#top_picks .review_link a::after {
  content: '';
  background: url("../images/right-arrow.svg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  right: -30px;
  position: absolute;
}

/* hero */


/* disclaimer */

.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: -24px;
  right: 15px;
	/* cursor: pointer; */
}
.banner_disclaimer_trigger {
	cursor: pointer;
}

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


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


.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 !important;
	font-size: 14px !important;
	font-weight: 300 !important;
	line-height: 18px !important;
	text-align: left !important;
	margin: 0;
}

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


.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;
}

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

/* footer */

footer {
  background: #000;
  text-align: center;
  padding: 80px 0px;
}


.footer-logo {
  padding: 0px 0px 20px 0px;
  max-width: 180px;
}

footer p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #f2f5f7;
  margin-bottom: 30px;
  font-weight: 400;
}

footer h3 {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: #ffffff;
  font-weight: 700;
  width: 60%;
}

footer h4 {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  color: #ffffff;
  font-weight: 700;
  padding-bottom: 20px;
}

ul.footer-nav {
  list-style: none;
  margin-bottom: 20px;
}

ul.footer-nav li {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  font-weight: normal;
  padding: 0px;
  padding-bottom: 15px;
  text-align: left;
}

ul.footer-nav li a {
  color: #fff;
}

ul.footer-nav li a:hover {
  color: #FF2577;
}

footer .copyrights {
  width: 100%;
  padding: 100px 0px 0px 0px;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 0;
}

/* footer */


/* page */
#page_content {
  margin: 10px 0px 30px 0px;
}

#page_content h2,
#terms_page_content h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
  margin-top: 40px;
}

#page_content h2 span:not(.country),
#terms_page_content h2 span {
  padding: 3px;
  width: 32px;
  height: 32px;
  background: #FF2577;
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  /* line-height: 20px; */
  text-align: center;
  display: inline-block;
  font-size: 22px;

}

#terms_page_content {
  margin: 0px 0px 0px 0px;
  padding: 15px 0px 30px 0px;
  background: #F5F5F7;
}

/* page */

/* ranking */

#desktop_rankbox_container {
  margin-top: 20px;
  margin-bottom: 50px;
}

#mobile_rankbox_container {
  margin-top: 0px;
  margin-bottom: 30px;
}

.rankbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}

.rankbox.toprank {
  border: 2px solid #FF2577;
  padding-top: 50px;
  /* box-shadow: 3px 14px 24px rgba(0, 0, 0, 0.05); */
  cursor: pointer;
}

.rankbox .topoffer-title {
  position: absolute;
  top: 0;
  padding: 10px;
  background: #FF2577;
  width: 100%;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  text-align: center;
  color: #fff;
  left: 0;
  font-weight: 600;
}

.rankbox .rankcounter {
  padding: 10px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: #D9D9D9;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  left: -17px;
}

.rankbox.toprank .rankcounter {
  background: #FF2577;
  color: #fff;
}

.rankbox .rankrow {
  width: 100%;
}

.rank-logo img {
  width: 200px;
  max-width: 100%;
}


.rankbox ul.features_list,
.top-picks-rankbox ul.features_list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rankbox ul.features_list li,
.top-picks-rankbox ul.features_list li {
  padding: 0;
  display: inline-block;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  padding-left: 18px;
  padding-bottom: 5px;
}

.rankbox.toprank ul.features_list li:last-child,
.top-picks-rankbox ul.features_list li:last-child {
  text-decoration: underline;
}

.rankbox.toprank ul.features_list li:last-child:hover,
.top-picks-rankbox ul.features_list li:last-child:hover {
  color: #FF2577;
  cursor: pointer;
}


.top-picks-rankbox ul.features_list li a {
  text-decoration: none;
  color: #000;
}

.top-picks-rankbox ul.features_list li a:hover {  
  color: #FF2577;
}

.rankbox.toprank ul.features_list li:last-child:hover,
.top-picks-rankbox ul.features_list li:last-child:hover {
  color: #FF2577;
  cursor: pointer;
}

.rankbox .ideal_age_container {
  background: #F4F4F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100%;
  width: 100%; */
  flex-direction: column;
  width: 106px;
  height: 106px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.rankbox .ideal_age_container:hover {
  -webkit-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  transform: translate(0, -8px);
}

.rankbox .ideal_age_container .ideal_age-title {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  padding-bottom: 5px;
}

.rankbox .ideal_age_container .ideal_age {
  padding: 0;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}


/* .rankbox ul.features_list li::before,
.top-picks-rankbox ul.features_list li::before {
  content: '';
  position: absolute;
  background: url(../images/green_tick.svg) no-repeat 0 0;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 12px;
  left: 0;
  top: 5px;
} */

.visit_btn {
  background: linear-gradient(269.95deg, #FFAD3C -17.85%, #FF2577 78.65%);
  box-shadow: 0px 4px 10px rgba(17, 41, 61, 0.25);
  border-radius: 30px;
  padding: 15px 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  width: 98%;
  max-width: 250px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.visit_btn:hover {
  color: #FFFFFF;
  -webkit-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  transform: translate(0, -8px);
}

.btn-outline {
  background: #fff;
	border: 2px solid #FF2577;
	color: #FF2577;
}

.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
	background: #fff;
  border: 2px solid #FF2577;
	color: #FF2577;
}

.popup_btn {
  font-size: 14px;
  text-decoration: underline;
  color: #000;
}
.popup_btn:hover {
  text-decoration: underline;
}


/* top offer popup */
#topoffer_popup {
  position: fixed;
  bottom: 0;
  transition: opacity 0.3s;
  display: none;
}

#topoffer_popup .rankbox {
  padding: 15px;
  /* background: #e9e9e9; */
  box-shadow: 5px 5px 5px 9px rgba(13, 55, 122, 0.15);
  border-radius: 0px;
  margin-bottom: 0px;
  position: relative;
}


#topoffer_popup .rankbox .ideal_age_container {
  margin-top: 5px;
  width: 100%
}

.top_close {
  position: absolute;
  z-index: 1;
  right: 2px;
  top: 2px;
  cursor: pointer;
}

/* top offer popup */

/* ranking */

/* sidebar */

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

.sidebar {
  width: 100%;
  max-width: 250px;
  margin-top: 85px;
}

.sidebar_box {
  margin-bottom: 20px;
}

.sidebar_image_box {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/Frame_55.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* min-height: 270px; */
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

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

.sidebar_image_box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar_image_box ul li {
  color: #fff;
  padding-bottom: 10px;
}



.sidebar_content_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 6px;
  min-height: 200px;
  background: #F5F5F7;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
}

.sidebar_content_box .heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

.sidebar_content_box .heading span {
  font-size: 16px;

}

.sidebar_content_box .content {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 5px;
}

.sidebar_content_box img {
  max-height: 50px;
  max-width: 50px;
}

#article_sidebar {
  margin-top: 0;
  max-width: 100%;
}

#article_sidebar .rankrow:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}

#article_sidebar h2 {
  margin-top: 0;
}

#article_sidebar .rankboxContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
  /* cursor: pointer; */
}

#article_sidebar .rankboxContainer {
  flex-direction: column;

}

#article_sidebar .rank-logo img {
  max-width: 90% !important;
  margin: auto;
}

#article_sidebar .rankboxContainer .rankcounter {
  padding: 6px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: #D9D9D9;
  border-radius: 0px 20px 20px 0px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  color: #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 22px;
  left: -10px;
}

#article_sidebar .rankboxContainer .rankrow:first-of-type .rankcounter {
  background: #FF2577;
  color: #fff;
}

#article_sidebar .visit_btn {
  margin-top: 20px;
  width: 90%;
}

#article_sidebar .rankboxContainer .ideal_age_container {
  background: #F4F4F4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  /* gap: 10px; */
  /* margin-bottom: 20px; */
  flex-direction: column;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  margin: auto;
}

#article_sidebar .card_rating {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  /* color: #FF2577; */
}
#article_sidebar .card_rating  .basescore {
    font-size: 13px;
    font-weight: 700;
    line-height: 15px; 
}

/* sidebar */

/* top picks */
#top_picks h2 {
  font-size: 24px;
  list-style: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

#top_picks h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

#top_picks .top-picks-rankbox {
  margin-bottom: 30px;
}

#top_picks .top-picks-rankbox .rank-logo {

  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 35px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 30px;
  width: 85%;
}

#top_picks .review_link a {
  /* margin: 0;
  margin-bottom: 20px;
  display: inline-block; */

  margin: 0;
    position: relative;
    width: fit-content;
}

#top_picks .points_table {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#top_picks .pros,
#top_picks .cons {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 30px 30px 30px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
  flex: 1;
  position: relative;

}

#top_picks .pros .heading,
#top_picks .cons .heading {
  background: #000000;
  border-radius: 20px 20px 0px 0px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  margin: 0;
}

#top_picks .pros ul,
#top_picks .cons ul {
  margin: 15px 0px 0px 0px;
  padding: 0;
}

#top_picks .pros ul li,
#top_picks .cons ul li {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}

#top_picks .pros ul li:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/green_tick.svg) no-repeat;
  background-size: cover;
  background-position: center;
  left: 0;
  top: 0px;
}

#top_picks .cons ul li:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/red_cross.svg) no-repeat;
  background-size: auto;
  background-position: center;
  left: 0;
  top: 0px;
}

#top_picks .sepator {
  border: 1px solid #D9D9D9;
  width: 98%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 30px;
}

.footer_disclaimer {
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  margin: 50px 0px;
}

/* top picks */

/* home content */

.home_content h2 {
  font-weight: 800;
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 25px;
}

.home_content p strong,
#top_picks p strong {
  color: #FF2577;
}

.home-content-container {
  padding: 10px 0px;
  margin-bottom: 70px;
}

.home-content-container .goto-title {
  font-size: 18px;
  line-height: 24px;
  color: #253655;
  font-weight: 600;
  border-bottom: 1px solid rgba(93, 112, 121, 0.19);
  padding: 0px 0px 15px 15px;
}

.home-content-container .goto-link {
  font-size: 16px;
  line-height: 24px;
  color: #5d7079;
  display: block;
  margin-bottom: 10px;
  padding: 0px 0px 5px 15px;
}

.home-content-container .goto-link:hover {
  color: #00b9ff;
}

.home-content {
  border-left: 1px solid rgba(93, 112, 121, 0.19);
  padding: 5px 0px 5px 30px;
  height: 100%;
  position: relative;
}

.home-content h2 {
  font-size: 32px;
  line-height: 40px;
  /* color: #253655; */
  font-weight: 600;
}

.home-content p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 400;
}

.home-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-content ul li {
  padding-left: 1em;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  position: relative;
  padding-bottom: 10px;
  font-weight: 400;
}

.home-content ul li::before {
  content: "";
  background: #00b9ff;
  border-radius: 10px;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0px;
  top: 9px;
}

.decor {
  background: url("../images/decor.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  right: 0px;
  width: 65px;
  height: 30px;
}

.diamond {
  background: url("../images/yellow-diamond.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: -15px;
  width: 25px;
  height: 25px;
}

/* home content */



/* 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;
  background-size: contain;
	left: -5px;
  top: 3px;
}

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

.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;
}


.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;
}



.modal_content_container .points_table {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.modal_content_container .pros,
.modal_content_container .cons {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 30px 30px 30px;
  background: #FFFFFF;
  box-shadow: 5px 5px 25px 10px rgba(13, 55, 122, 0.15);
  border-radius: 20px;
  flex: 1;
  position: relative;

}

.modal_content_container .pros .heading,
.modal_content_container .cons .heading {
  background: #000000;
  border-radius: 20px 20px 0px 0px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  margin: 0;
}

.modal_content_container .pros ul,
.modal_content_container .cons ul {
  margin: 15px 0px 0px 0px;
  padding: 0;
}

.modal_content_container .pros ul li,
.modal_content_container .cons ul li {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}

.modal_content_container .pros ul li:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/green_tick.svg) no-repeat;
  background-size: cover;
  background-position: center;
  left: 0;
  top: 0px;
}

.modal_content_container .cons ul li:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/red_cross.svg) no-repeat;
  background-size: auto;
  background-position: center;
  left: 0;
  top: 0px;
}

/* modal */


.mobile {
  display: none;
}


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

  footer h3 {
    width: 80%;
  }

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

@media only screen and (max-width: 992px) {
  
  .modal-xl {
    max-width: 90%;
    margin: auto;    
	}


  footer h3 {
    width: 100%;
  }

  .tablethide {
    display: none;
  }

  .banner_image_container {
    display: none !important;
  }

  .hero_cards_container .hero_cards {
    width: 95%;
  }

  .sticky-sidebar {
    display: none;
  }

  .art_sidebar {
    display: block;
  }

  #mobile_sidebar {
    display: block;
    margin: 50px auto;
  }

  .sidebar {
    max-width: none;
  }

}


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



@media only screen and (max-width: 768px) {

  .desktop {
    display: none !important;
  }

  .mobile-ib {
    display: inline-block;
  }

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

  .mobile {
    display: block;
  }

  #desktop_rankbox_container,
  #desktop_featured_container {
    display: none;
  }

  #mobile_rankbox_container,
  #mobile_featured_container {
    display: block;
  }

  /*header*/

  .navbar-brand img {
    max-width: 150px;
  }

  #main_nav {
    background: #000;
    color: #fff;
    padding: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 60px;
    left: 0;
  }

  .navbar-nav .nav-item .nav-link {
    color: #fff !important;
  }

  ul.navbar-nav li {
    padding: 0;
  }

  .navbar .megamenu {
    padding: 0;
    background: transparent;
    border: none;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
  }

  .navbar .megamenu ul {
    height: 100%;
  }

  .navbar .megamenu ul li a {
    color: #fff;
  }


  #hero {
    padding: 15px 0px 15px 0px !important;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 46.39%, rgba(0, 0, 0, 0.6) 98.84%), url(../images/img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
  }

  .hero_cards_container {
    display: none !important;
  }

  .banner_links_container {
    display: none !important;
  }

  #hero p {
    /* display: none; */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }


  #hero h1 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 800;
    color: #fff;
    width: 75%;
  }

  #hero .hero-updated {
    padding: 5px 10px;
    /* gap: 8px; */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: #fff;
    margin-top: 5px;
    width: fit-content;
  }

  .hero_desc_mobile p {
    font-weight: 800;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #000000;
    padding: 15px 0px;
    margin: 0;
  }

  /*header*/


  /* disclaimer */
  .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 {
		bottom: 0px;
		right: 10px;
    color: #fff;
	}

	.banner_disclaimer_trigger {
		font-size: 12px;
	}
  /* disclaimer */

  /* footer */

  footer {
    /* text-align: center; */
    padding: 60px 0px;
  }

  ul.footer-nav {
    margin-bottom: 0;
  }

  ul.footer-nav li:last-child {
    padding-bottom: 0;
  }

  footer h3 {
    width: 100%;
  }

  footer h4 {
    margin-top: 30px;
    padding-bottom: 10px;
  }

  footer .copyrights {
    padding-top: 50px;
    font-size: 13px;
  }


  /* footer */

  #page_content {
    margin: 15px 0px;
  }

  /*ranking*/

  .rankbox .topoffer-title {
    padding: 5px;
  }

  .rankbox .rankcounter {
    padding: 5px;
    width: 25px;
    height: 25px;
    font-size: 16px;
    line-height: 18px;
    left: -23px;
  }

  .rankbox ul.features_list {
    margin: 15px 0px;
  }

  .rankbox .ideal_age_container {
    background: #F4F4F4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    gap: 10px;
    margin-bottom: 20px;
    flex-direction: row;
    width: 50%;
    height: 40px;
    max-width: none;
    max-height: none;
  }

  .rankbox .ideal_age_container .ideal_age-title {
    padding-bottom: 0;
  }

  .popup_btn{
    margin-top: 10px;
  }

  .card_rating{
    margin-right: 0;
  }

  /*ranking*/

  /* top picks */

  #top_picks .top-picks-rankbox .rank-logo {
    width: 100%;
    padding: 40px;
    margin-bottom: 30px;
  }

  .top-picks-rankbox ul.features_list {
    margin-bottom: 20px;
  }

  #top_picks .points_table {
    flex-direction: column;
    align-items: center;
  }


  /* top picks */

  /* sidebar */
  .sticky-sidebar {
    display: none;
  }

  .art_sidebar {
    display: block;
  }

  #mobile_sidebar {
    display: block;
  }

  .sidebar {
    max-width: none;
    margin-top: 50px;
  }

  /* sidebar */


  /* modal */
  .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;
    gap: 15px;
	}
  /* modal */
  

}

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


@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1210px;
  }
}

.w-95 {
  width: 95%;
}




/*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;
  position: relative;
  z-index: 10;
  /* max-width: 1020px; */
  border: 1px solid #e6e7e9;
  /* border-radius: 5px; */
  top: 0px;
  /* max-width: 1130px; */
  background-color: #f4f4f6;
  color: #0a1443;
}

.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: 73%;
  display: inline-block;
}

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

.cookieConsent .tc-privacy-text a {
  font-weight: 500;
  color: inherit;
  text-decoration: underline;
}
.cookieConsent .tc-privacy-text a:hover {
  color: inherit;
}


.cookieConsent .tc-privacy-text a::after {
  content: ' ';
}

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

.cookieConsent .tc-privacy-block-button {
  width: 25%;
  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: #0a1443;
  color: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  border: 1px solid #0a1443;
}

.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;
  font-weight: 700;
}

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

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

  .cookieConsent .tc-privacy-block-button {
    width: 100%;
    display: inline-block;
    right: 10px;
    margin: auto;
    text-align: 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;
  }

}


/*cookies */