@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
html {
  scroll-behavior: smooth;
  height: 100%; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fafafa;
  height: 100%; }

a {
  color: #333;
  display: block; }

p {
  font-size: 14px; }

a:hover {
  text-decoration: none;
  font-weight: bolder;
  color: #333; }

a.btn:hover {
  font-weight: normal; }

li {
  list-style: none;
  display: inline; }

.nav a {
  letter-spacing: 0.36px; }

li a:link,
li a:visited {
  text-decoration: none;
  color: #333; }

li a:hover {
  text-decoration: none;
  font-weight: bold; }

.font-size-12 {
  font-size: 12px !important; }

.nav li a:hover,
.nav li a.active {
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0; }

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 38px;
  left: 0;
  right: 0; }

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  color: black; }

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; }

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff; }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto; }
  .pagination a, .pagination em.current, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    text-decoration: none;
    margin-right: -1px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    color: white;
    background-color: lightgrey;
    margin: 0px 3px; }
    .pagination a:hover, .pagination em.current:hover, .pagination span:hover {
      cursor: pointer;
      background: #333;
      color: white; }
  .pagination .current {
    background: #333 !important; }
  .pagination .previous_page {
    border-radius: 5px 0px 0px 5px; }
  .pagination .next_page {
    border-radius: 0px 5px 5px 0px; }

label.error {
  font-size: 12px;
  color: red;
  font-weight: bold; }

.avatar {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: 5px;
  overflow: hidden;
  width: 40px;
  min-width: 40px; }
  .avatar img {
    max-width: 100%;
    width: 100%; }

.user_name {
  max-width: 75px;
  font-size: 14px; }

.user-notifications {
  position: relative;
  padding-right: 10px; }
  .user-notifications .num-wrapper {
    display: flex;
    justify-content: center;
    position: absolute;
    background: #ffd000;
    color: #333;
    left: 19px;
    top: -5px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #333; }
    .user-notifications .num-wrapper .num {
      font-size: 12px;
      color: #333; }
  .user-notifications i {
    width: 24px;
    height: 24px;
    color: #333;
    display: flex;
    align-items: center; }

/* Hamburguer Menu */
.mobile_menu {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 99;
  margin: 0; }

.mobile_menu li {
  list-style: none;
  position: absolute;
  background: black;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  transition: .9s; }

.mobile_menu li:nth-of-type(1) {
  top: 20%; }

.mobile_menu li:nth-of-type(2) {
  top: 50%; }

.mobile_menu li:nth-of-type(3),
.mobile_menu li:nth-of-type(4) {
  width: 50%;
  top: 80%; }

.mobile_menu li:nth-of-type(1),
.mobile_menu li:nth-of-type(2),
.mobile_menu li:nth-of-type(3) {
  left: 0; }

.mobile_menu li:nth-of-type(4) {
  right: 0; }

.mobile_menu.active li:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg); }

.mobile_menu.active li:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg); }

.mobile_menu.active li:nth-of-type(3) {
  left: -50%;
  opacity: 0; }

.mobile_menu.active li:nth-of-type(4) {
  right: -50%;
  opacity: 0; }

.mobile_menu_container {
  position: fixed;
  top: 0px;
  right: -480px;
  padding: 40px;
  background: white;
  max-width: 380px;
  width: 100%;
  height: 100vh;
  z-index: 100;
  box-shadow: -17px 0px 32px rgba(0, 0, 0, 0.2);
  transition: right .4s ease;
  overflow-y: auto; }
  .mobile_menu_container #categories-menu {
    display: flex;
    flex-direction: column; }
    .mobile_menu_container #categories-menu li {
      min-width: 250px; }
    .mobile_menu_container #categories-menu .compensa_menu {
      position: relative;
      top: 0px;
      flex-direction: column;
      margin: 0px;
      padding: 0px; }
    .mobile_menu_container #categories-menu .dropdown-menu > li {
      display: block;
      width: 100%;
      margin: 3px;
      height: auto; }
    .mobile_menu_container #categories-menu .dropdown-menu.show {
      width: 100%;
      margin-top: 15px; }
  .mobile_menu_container .nav > li {
    padding: 10px 0px; }

.mobile_menu_wrapper {
  background: transparent;
  position: relative;
  z-index: 101; }

.show_mobile_menu {
  right: 0px !important; }

/* Header container */
#compensa-header {
  padding: 0px 0px 0px 0px;
  background-color: #ffd000;
  z-index: 9; }
  #compensa-header .compensa_search {
    border-radius: 20px 0px 0px 20px;
    background-color: #F5F5F5 !important;
    border: none; }
  #compensa-header .search_button {
    border-radius: 0px 20px 20px 0px;
    background-color: #F5F5F5;
    border: none; }
  #compensa-header .search-box {
    border: none;
    background-color: #F5F5F5;
    border-radius: 0px 20px 20px 0px; }

#compensa_menu {
  background: #ffd000; }

#menu_profile {
  position: absolute;
  right: 0px; }

.fixed-top {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  animation-duration: 0.5s; }

#compensa-header .row {
  height: 100%; }

.header-box,
.balance-box {
  width: 100%;
  font-size: 13px; }

.balance-box-wrapper {
  background: #333;
  padding: 10px 20px;
  border-radius: 20px; }
  .balance-box-wrapper a {
    color: #ffd000; }

#compensa-header .header-box a {
  text-transform: uppercase; }

.banner-container {
  padding-bottom: 65px; }

#banner {
  align-items: center;
  background-color: #333;
  display: flex;
  justify-content: center;
  min-height: 200px; }

.widget-item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  min-height: 200px;
  margin-top: 10px; }

.offer-box {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px 15px;
  width: 100%; }

.offer-box-item {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px 10px;
  width: 20%; }
  @media (min-width: 551px) and (max-width: 768px) {
    .offer-box-item {
      width: 33%; } }
  @media (max-width: 551px) {
    .offer-box-item {
      width: 50%; } }

#continuation-bar {
  background-color: #333;
  color: #ffd000 !important; }
  #continuation-bar a.active {
    font-weight: bolder; }
  #continuation-bar li a {
    color: #ffd000 !important; }

.content-box {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
  text-align: center; }

.dropdown-menu.show {
  width: 100%; }

.categories-button {
  width: 100%;
  border-radius: inherit;
  background-color: #333;
  border: none;
  text-align: left; }

.categories-button::after {
  position: absolute;
  top: 43%;
  right: 15px; }

#categories-menu::after,
#categories-menu::before {
  display: table;
  content: " "; }

.navbar-nav > li > a {
  text-transform: uppercase; }

.nav > li {
  position: relative;
  display: block;
  float: left;
  padding: 10px 15px; }

.nav > li.dropdown.show {
  position: relative; }

.nav > li.dropdown.show .dropdown-menu {
  background-color: #333;
  border-radius: 10px;
  border-top: 1px solid #333;
  border-bottom: 5px solid #333;
  width: 220px;
  display: block;
  padding: 5px;
  line-height: 1.1;
  margin-top: 0px;
  font-size: 0.9em; }

.hr-dropdown {
  border-top: #ffd000 1px solid !important;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  width: 90%; }

.compensa_menu_link {
  width: auto;
  display: block;
  padding: 5px 10px;
  color: #ffd000 !important; }
  .compensa_menu_link:hover {
    background-color: #333; }

#categories-menu > li.dropdown.show > ul > li > a:hover {
  color: #ffd000 !important;
  border-radius: 10px; }

.dropdown-menu > li {
  margin: 0px;
  width: 20%; }

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

.summary-box,
.summary-box-widgets {
  background-color: white;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 1s;
  min-height: 215px;
  width: 100%; }

.summary-box:hover,
.summary-box-widgets:hover {
  -ms-transform: scale(1.05);
  /* IE 9 */
  -webkit-transform: scale(1.05);
  /* Safari 3-8 */
  transform: scale(1.05); }

.box-shadow-white {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #ffffff; }

/* Banner */
.banner_number {
  height: 40px;
  width: 40px;
  background-color: lightgray;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer; }

.banner_wrapper {
  position: absolute;
  width: 135px;
  margin: 0;
  z-index: 0;
  bottom: -70px; }

.carousel-indicators .active {
  background-color: #ffd000 !important;
  color: white; }

.button {
  font-weight: bolder;
  background-color: #ffd000;
  color: #333;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin: 2.5px 2.5px; }
  .button:hover {
    font-weight: bolder !important;
    background-color: #333;
    color: #ffd000;
    border: 1px solid #ffd000; }
  .button.no-hover {
    font-weight: normal;
    background-color: #ffd000;
    color: #333;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin: 2.5px 2.5px; }
    .button.no-hover:hover {
      font-weight: bolder !important;
      background-color: #ffd000;
      color: #333; }

.button-secondary {
  font-weight: bolder;
  background-color: #333;
  color: #ffd000;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin: 2.5px 2.5px; }
  .button-secondary:hover {
    font-weight: bolder !important;
    background-color: #ffd000;
    color: #333;
    border: 1px solid #333; }
  .button-secondary.no-hover {
    font-weight: normal;
    background-color: #333;
    color: #ffd000;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin: 2.5px 2.5px; }
    .button-secondary.no-hover:hover {
      font-weight: bolder !important;
      background-color: #333;
      color: #ffd000; }

/* Cancel buttons on users profile */
.button-cancel {
  font-weight: bolder;
  background-color: #333;
  color: #ffd000;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin: 2.5px 2.5px; }
  .button-cancel:hover {
    font-weight: bolder !important;
    background-color: #ffd000;
    color: #333;
    border: 1px solid #333; }

/*Landing buttons*/
.button-black {
  font-weight: bolder;
  background-color: #333;
  color: #ffd000 !important;
  border-radius: 0.5rem;
  padding: 1em;
  font-size: 14px; }
  .button-black:hover {
    background-color: #ffd000 !important;
    color: #333 !important;
    font-weight: bolder !important;
    border: 1px solid #333; }

.button-white {
  font-weight: bolder;
  background-color: #ffd000 !important;
  color: #333 !important;
  border-radius: 0.5rem;
  padding: 1em;
  border: 1px solid #333;
  font-size: 14px; }
  .button-white:hover {
    font-weight: bolder !important;
    background-color: #333 !important;
    color: #ffd000 !important; }

/*products*/
.product_image {
  width: 100px; }
  .product_image p {
    font-size: 14px;
    font-weight: 900;
    margin-top: 12px;
    text-align: center; }

.product_description {
  font-size: 0.7rem; }

.product_cashback {
  background: lightgray;
  padding: 10px;
  margin-left: auto;
  width: fit-content;
  border-radius: 20px; }

.single_product_description {
  width: 100%; }
  .single_product_description img {
    max-width: 100%; }

/* Users */
#user_profile h1, #user_profile h2, #user_profile h3, #user_profile h4, #user_profile h5, #user_profile h6 {
  margin-bottom: 15px; }
#user_profile p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  margin-bottom: 0.5rem; }

/* Static Pages */
#static-page {
  text-align: justify;
  margin-top: 30px; }
  #static-page a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block; }
  #static-page li {
    display: block; }
  #static-page h1, #static-page h2, #static-page h3 {
    color: #333;
    font-weight: bold;
    background: none !important;
    border-bottom: 0 !important;
    width: 100%; }
  #static-page h1 {
    font-size: 1.692em; }
  #static-page h2 {
    font-size: 1.538em; }
  #static-page h3 {
    font-size: 1.385em; }
  #static-page h4 {
    font-size: 1.231em; }
  #static-page h5 {
    font-size: 1.077em; }
  #static-page h6 {
    font-size: 1em; }

.height-100vh {
  height: 100vh; }

.max-w-50 {
  max-width: 50%; }
  @media (max-width: 768px) {
    .max-w-50 {
      max-width: inherit; } }

.min-width-100px {
  min-width: 100px; }

.w-32 {
  width: 32% !important; }

.w-max-content {
  width: max-content; }

.overflow-cookies {
  overflow-y: scroll;
  height: 65vh; }

.bg-shadow-cookies {
  background: rgba(0, 0, 0, 0.5); }

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

.fs-14 {
  font-size: 14px; }

.fs-16 {
  font-size: 16px; }

.fs-18 {
  font-size: 18px; }

.logo-welcome {
  width: 50%;
  /* Por defecto */ }
  @media (max-width: 768px) {
    .logo-welcome {
      /* En pantallas pequeñas */
      width: 100%;
      /* Ocupan todo el ancho disponible */ } }

.logo-sub {
  margin-left: auto;
  display: block; }

@media (max-width: 768px) {
  .logo-sub {
    width: 80%;
    margin-left: auto; } }
@media (min-width: 768px) {
  .welcome-mobile {
    visibility: hidden;
    margin-top: -55px; } }
@media (min-width: 1200px) {
  .welcome-mobile {
    visibility: hidden;
    margin-top: -120px; } }
@media (max-width: 767px) {
  .welcome-desktop {
    visibility: hidden;
    margin-top: -50px; } }
.gift-card-background {
  background-size: cover !important;
  background-position: center center !important; }

.field_with_errors {
  min-width: 25%; }

.field_with_errors input {
  border: 1px solid red; }

.field_with_errors .col-form-label {
  max-width: 100%; }

.form-group select {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  margin-right: 5px; }

.custom-file-label::after {
  content: attr(data-content); }

@media (min-width: 991px) {
  .navbar-nav > li {
    float: left;
    min-width: 90px; } }
@media (max-width: 991px) {
  .dropdown-menu > li {
    display: block; }

  .nav > li.dropdown.show .dropdown-menu {
    flex-direction: column; }

  .nav > li {
    padding: 10px 13px; }

  .balance-box {
    flex-direction: column-reverse; } }
@media (max-width: 768px) {
  .pagination a a, .pagination a em.current, .pagination a span, .pagination em.current a, .pagination em.current em.current, .pagination em.current span, .pagination span a, .pagination span em.current, .pagination span span {
    padding: 5px 7px;
    font-size: 14px; } }
footer {
  color: #ffd000;
  background-color: #333 !important;
  font-size: 14px; }
  footer li a {
    color: #ffd000 !important;
    font-weight: bolder; }
  footer .nav li a:hover {
    letter-spacing: 0.36px; }

@media (min-width: 991px) {
  .navbar-nav > li {
    float: left;
    min-width: 90px; } }
@media (max-width: 991px) {
  .dropdown-menu > li {
    display: block; }

  .nav > li.dropdown.show .dropdown-menu {
    flex-direction: column; }

  .nav > li {
    padding: 10px 13px; }

  .balance-box {
    flex-direction: column-reverse; } }
@media (max-width: 768px) {
  .pagination a a, .pagination a em.current, .pagination a span, .pagination em.current a, .pagination em.current em.current, .pagination em.current span, .pagination span a, .pagination span em.current, .pagination span span {
    padding: 5px 7px;
    font-size: 14px; } }
.material-symbols-outlined {
  display: flex !important;
  align-items: center;
  justify-content: center; }

.material-symbols-outlined.mail {
  font-size: 2.2em; }

.material-symbols-outlined.copy,
.material-symbols-outlined.check {
  cursor: pointer; }

.list-bullets li {
  display: list-item;
  list-style-type: disc; }

/*# sourceMappingURL=prosegur.css.map */
