html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}

:root {
  --font1: 'Roboto'
;
}

/*Hamburger*/
#nav-icon3 {
  width: 40px;
  height: 30px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  outline: none;
  z-index: 4;
  right: 0;
  top: 30px;
  display: none;
}

@media (max-width: 767px) {
  #nav-icon3 {
    width: 30px;
  }
}

@media (max-width: 991px) {
  #nav-icon3 {
    right: 30px;
    display: block;
  }
}

@media (max-width: 576px) {
  #nav-icon3 {
    right: 20px;
  }
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

@media (max-width: 767px) {
  #nav-icon3 span {
    height: 3px;
  }
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 12px;
}

@media (max-width: 767px) {
  #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
    top: 10px;
  }
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

@media (max-width: 767px) {
  #nav-icon3 span:nth-child(4) {
    top: 20px;
  }
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.quantity {
  position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.quantity input {
  width: 45px;
  height: 42px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  border: 1px solid #eee;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eee;
  width: 20px;
  text-align: center;
  color: #333;
  font-size: 13px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 1.7;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #eee;
}

.quantity-button.quantity-down {
  position: absolute;
  bottom: -1px;
  height: 50%;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #707070;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 20px;
  border: 0.5px solid #04306E;
  border-radius: 5px;
  background: transparent;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 10px;
  background: #04306E;
  position: absolute;
  top: 5px;
  left: 6px;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.container {
  max-width: 812px;
}

@media (max-width: 991px) {
  .container {
    max-width: 682px;
  }
}

.page_wraper {
  padding-bottom: 100px;
}

body {
  font-family: var(--font1);
  line-height: 1.67;
  color: #04306E;
  font-size: 18px;
  font-weight: normal;
  background-color: #F4F4F4;
}

.page_wraper {
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: 2.625rem;
  color: #fff;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.5rem;
  }
}

.banner {
  min-height: 197px;
  background: url(../imgs/banner_bg.jpg) no-repeat center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner h1 {
  text-align: center;
}

.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -25px;
}

.logos li {
  padding: 0 25px;
}

.logos li img {
  mix-blend-mode: multiply;
}

.logos + .ranking_page_navigator {
  margin-bottom: 1.25rem;
  margin-top: 2.8125rem;
}

.intro {
  padding: 1em 0 2em;
}

.intro .txt {
  text-align: center;
}

.intro .txt p {
  font-size: 1.375rem;
}

@media (max-width: 1600px) {
  .intro .txt p {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .intro .txt p {
    font-size: .875rem;
  }
}

.intro .user_details {
  padding: 40px 60px;
  background-color: #fff;
  border-radius: 25px;
  margin-top: 50px;
}

@media (max-width: 1600px) {
  .intro .user_details {
    padding: 4vh 5vh;
  }
}

.intro .user_details .row {
  margin: 0 -8px;
  margin-bottom: 1.875em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro .user_details .row > div {
  padding: 0 8px;
}

.intro .user_details .left span {
  font-weight: bold;
  display: block;
  text-align: right;
}

@media (max-width: 767px) {
  .intro .user_details .left span {
    text-align: left;
    font-size: 1rem;
  }
}

.intro .user_details input[type=text], .intro .user_details input[type=number] {
  width: 397px;
  height: 38px;
  line-height: 38px;
  border: 0.5px solid #04306E;
  border-radius: 11px;
  padding: 0 30px;
  outline: none;
  background-color: transparent;
}

@media (max-width: 991px) {
  .intro .user_details input[type=text], .intro .user_details input[type=number] {
    width: 100%;
  }
}

.intro .user_details input[type=text]#country, .intro .user_details input[type=number]#country {
  padding-left: 50px;
}

.intro .user_details .quantity {
  width: 397px;
  height: 38px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .intro .user_details .quantity {
    width: 100%;
  }
}

.intro .user_details .quantity .quantity_input input[type=number] {
  text-align: center;
  font-size: .875rem;
  background: #F4F4F4;
}

.intro .user_details .quantity .quantity_input > span {
  font-size: .875rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.intro .user_details .quantity .quantity_input > span.prevValue {
  top: -9px;
}

.intro .user_details .quantity .quantity_input > span.nxtVal {
  bottom: -9px;
}

.intro .user_details .quantity .quantity-nav {
  position: absolute;
  height: 35px;
  right: 8px;
}

.intro .user_details .quantity .quantity-button {
  font-weight: bold;
  border: 0;
  -webkit-box-shadow: 0px 3px 47px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 47px 0px rgba(0, 0, 0, 0.75);
}

.intro .user_details .radio_grup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro .user_details .radio_grup .radio_box {
  margin-right: 2.5em;
}

.intro .user_details .custom-select {
  font-family: var(--font1);
  max-width: 397px;
}

@media (max-width: 991px) {
  .intro .user_details .custom-select {
    max-width: 100%;
  }
}

.intro .user_details .custom-select .select-items {
  background-color: #04306E;
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}

.intro .user_details .custom-select .select-selected {
  border-radius: 11px;
  border: 0.5px solid #04306E;
  background-color: transparent;
  color: #707070;
}

.intro .user_details .custom-select .select-selected::after {
  border: 15px solid transparent;
  border-color: #04306E transparent transparent transparent;
}

@media (max-width: 991px) {
  .intro .user_details .custom-select .select-selected::after {
    border: 10px solid transparent;
    border-color: #04306E transparent transparent transparent;
  }
}

.intro .user_details .custom-select .select-selected.select-arrow-active::after {
  top: 14px;
}

.intro .what_you_do {
  font-size: 1.375rem;
  text-align: center;
  padding: 50px 0 20px;
  color: #04306E;
}

@media (max-width: 1600px) {
  .intro .what_you_do {
    font-size: 1.125rem;
    padding: 5vh 0 2vh;
  }
}

@media (max-width: 767px) {
  .intro .what_you_do {
    font-size: 1rem;
  }
}

.ranking_details {
  padding: 32px;
  background-color: #fff;
  border-radius: 25px;
  margin-bottom: 40px;
}

@media (max-width: 1600px) {
  .ranking_details {
    padding: 3vh;
    margin-bottom: 4vh;
  }
}

.ranking_details h3 {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #60B185;
  margin-bottom: 1.5em;
}

@media (max-width: 1600px) {
  .ranking_details h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .ranking_details h3 {
    font-size: 1rem;
  }
}

.ranking_details .question_group .question {
  margin-bottom: 1.875rem;
  font-weight: bold;
  font-size: 1.3125rem;
}

@media (max-width: 1600px) {
  .ranking_details .question_group .question {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .ranking_details .question_group .question {
    font-size: .875rem;
  }
}

.ranking_details .question_group > li {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #04306E;
}

@media (max-width: 1600px) {
  .ranking_details .question_group > li {
    margin-bottom: 5vh;
    padding-bottom: 5vh;
  }
}

.ranking_details .question_group > li:last-child {
  border-bottom: 0;
}

.ranking_details .question_group > li .answer_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 537px;
  margin: 0 auto;
}

.ranking_details .question_group > li .answer_group > .radio_box {
  max-width: calc(100% / 6);
  -ms-flex-preferred-size: calc(100% / 6);
      flex-basis: calc(100% / 6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:checked + label:before, .ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:not(:checked) + label:before {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:checked + label:after, .ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:not(:checked) + label:after {
  width: 14px;
  height: 14px;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
}

.ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:checked + label, .ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:not(:checked) + label {
  padding-top: 34px;
  padding-left: 0;
}

@media (max-width: 767px) {
  .ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:checked + label, .ranking_details .question_group > li .answer_group > .radio_box [type="radio"]:not(:checked) + label {
    font-size: .875rem;
  }
}

.ranking_details .question_group > li .answer_group > .radio_box span {
  font-size: .875rem;
}

.ranking_details .question_group .level_of_spend {
  padding-left: 40px;
}

@media (max-width: 1600px) {
  .ranking_details .question_group .level_of_spend {
    padding-left: 4vh;
  }
}

@media (max-width: 767px) {
  .ranking_details .question_group .level_of_spend {
    padding-left: 0;
  }
}

.ranking_details .question_group .level_of_spend li {
  margin-bottom: 2.5em;
}

.ranking_details .question_group .level_of_spend li:last-child {
  margin-bottom: 0;
}

.ranking_details .question_group .level_of_spend h5 {
  font-size: 1.375rem;
  font-weight: normal;
  margin-bottom: 0.8em;
}

@media (max-width: 1600px) {
  .ranking_details .question_group .level_of_spend h5 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .ranking_details .question_group .level_of_spend h5 {
    font-size: .875rem;
  }
}

@media (max-width: 767px) {
  .ranking_details .question_group .level_of_spend .answer_group .radio_box {
    max-width: calc(100% / 4);
    -ms-flex-preferred-size: calc(100% / 4);
        flex-basis: calc(100% / 4);
  }
  .ranking_details .question_group .level_of_spend .answer_group .radio_box span {
    font-size: .75rem;
  }
}

.ranking_page_navigator {
  margin-bottom: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1600px) {
  .ranking_page_navigator {
    margin-bottom: 10vh;
  }
}

.ranking_page_navigator .page_count {
  font-size: 1.375rem;
}

@media (max-width: 1600px) {
  .ranking_page_navigator .page_count {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .ranking_page_navigator .page_count {
    font-size: .875rem;
  }
}

.ranking_page_navigator .goto_page {
  display: block;
  max-width: 190px;
  height: 38px;
  line-height: 38px;
  color: #fff;
  border-radius: 11px;
  background-color: #04306E;
  text-align: center;
  position: relative;
  margin-left: auto;
  font-size: 1.375rem;
}

@media (max-width: 1600px) {
  .ranking_page_navigator .goto_page {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .ranking_page_navigator .goto_page {
    font-size: .875rem;
  }
}

.ranking_page_navigator .goto_page::after {
  content: '';
  display: block;
  border: 8px solid #fff;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 9px;
  top: 10px;
}

.vote_of_thanks {
  padding: 15px 0;
}

.vote_of_thanks .logos {
  margin-bottom: 25px;
}

.vote_of_thanks p {
  font-size: 1.375rem;
  text-align: center;
}

footer .footer_cnt {
  padding: 20px 0;
  border: 1px solid #000;
  border-left: 0;
  border-right: 0;
}

footer .col-md-6 {
  text-align: center;
}

@media (max-width: 767px) {
  footer .col-md-6 {
    margin-bottom: 3vh;
  }
  footer .col-md-6:last-child {
    margin-bottom: 0;
  }
}

footer h3 {
  text-align: center;
  font-size: 14px;
  margin-bottom: 1em;
  color: #000;
}

footer .cpy_right {
  color: #60B185;
  font-size: .875rem;
  text-align: center;
}

footer .logo_list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo_list li:first-child {
  text-align: right;
}

@media (max-width: 767px) {
  footer .logo_list li:first-child {
    text-align: center;
  }
}

footer .logo_list li img {
  mix-blend-mode: multiply;
}

.country-select .country-list {
  overflow: hidden;
  overflow-y: scroll;
}

.logo-img {
    max-height: 100px;
    object-fit: contain;
}

/* Ajuste fino para lograr mejor alineación en fila */
@media (min-width: 992px) {
    /* col-lg-3 = 4 logos por fila (100% / 4) */
    .custom-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
/*# sourceMappingURL=custom.css.map */