/*  Imports */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;700&family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Source+Sans+Pro:wght@400;600;700&display=swap");
/*
** Fonts
*/
/*
** media query widths
*/
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&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: #000; }

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: #233047;
      color: white; }
  .pagination .current {
    background: #233047 !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: #233047;
    color: #ffffff;
    left: 19px;
    top: -5px;
    height: 18px;
    width: 18px;
    border-radius: 50%; }
    .user-notifications .num-wrapper .num {
      font-size: 12px;
      color: #ffffff; }
  .user-notifications i {
    width: 24px;
    height: 24px;
    color: #000;
    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; }
      @media (max-width: 991px) {
        .mobile_menu_container #categories-menu .compensa_menu {
          border: none; } }
    .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: white;
  position: relative;
  z-index: 101; }

.show_mobile_menu {
  right: 0px !important; }

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

#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: #F5F5F5;
  padding: 10px 20px;
  border-radius: 10px; }

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

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

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

.widget-item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  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: #efefef;
  color: #233047 !important; }
  #continuation-bar a.active {
    font-weight: bolder; }

.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: #efefef;
  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: white;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  width: 220px;
  display: block;
  padding: 5px;
  line-height: 1;
  font-size: 0.9rem; }

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

.compensa_menu_link {
  width: 100%;
  display: block;
  padding: 5px 10px; }
  .compensa_menu_link:hover {
    background-color: #efefef; }

.dropdown-menu > li {
  margin: 10px;
  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: #233047 !important;
  color: white; }

.button {
  background-color: #233047;
  color: white; }
  .button:hover {
    background-color: white;
    color: #233047;
    border: 1px solid #233047; }
  .button.no-hover {
    background-color: #233047;
    color: white; }
    .button.no-hover:hover {
      background-color: #233047;
      color: white;
      font-weight: bold; }

.button-secondary {
  background-color: white;
  color: #233047;
  border: 1px solid #233047; }
  .button-secondary:hover {
    background-color: #233047;
    color: white; }
  .button-secondary.no-hover {
    background-color: white;
    color: #233047;
    border: 1px solid #233047; }
    .button-secondary.no-hover:hover {
      background-color: white;
      color: #233047;
      font-weight: bold; }

/*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: 20px;
  margin-left: auto;
  width: fit-content; }

.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: #5b98d7;
    text-decoration: none;
    display: inline-block; }
  #static-page li {
    display: block; }
  #static-page h1, #static-page h2, #static-page h3 {
    color: #233047;
    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; }

@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: #333;
  background-color: white;
  font-size: 14px; }

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

#cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1032;
  background: #A0ACAD;
  color: white;
  border-top: 1px solid #A0ACAD;
  width: 100%; }
  #cookies-banner .container {
    width: 100%;
    max-width: 100%; }
    #cookies-banner .container .alert-cookie {
      border: none;
      margin: 0;
      background: #A0ACAD !important; }
      #cookies-banner .container .alert-cookie p {
        color: #ffffff; }
      #cookies-banner .container .alert-cookie a:not(.btn) {
        color: #233047; }
      #cookies-banner .container .alert-cookie .text {
        max-width: 1140px;
        margin: 0 auto; }

#box-shadow {
  background-color: rgba(3, 3, 3, 0.5);
  bottom: -200px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1031; }

@media (max-width: 768px) {
  #cookies-banner .container .alert .text {
    font-size: 12px; }
    #cookies-banner .container .alert .text a.btn.btn-red {
      font-size: 12px;
      width: 100%; } }
#modal-cookies-beruby {
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7); }
  #modal-cookies-beruby .close {
    color: #A0ACAD !important; }
  #modal-cookies-beruby .modal-dialog .modal-content {
    padding: 10px;
    width: 100%; }
    #modal-cookies-beruby .modal-dialog .modal-content .modal-body .cookie-modal-section {
      cursor: pointer; }
    #modal-cookies-beruby .modal-dialog .modal-content .modal-body .cookies-body .cookies-body-other hr {
      margin: 0; }
    #modal-cookies-beruby .modal-dialog .modal-content .modal-body .cookies-body .cookies-body-other strong {
      display: block; }
    #modal-cookies-beruby .modal-dialog .modal-content .modal-body .cookies-body .cookies-body-other .form-check.form-check-inline {
      float: right; }
      @media (max-width: 768px) {
        #modal-cookies-beruby .modal-dialog .modal-content .modal-body .cookies-body .cookies-body-other .form-check.form-check-inline {
          float: unset; } }
    @media (max-width: 768px) {
      #modal-cookies-beruby .modal-dialog .modal-content .modal-body .cookies-body p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        text-align: justify; } }
    #modal-cookies-beruby .modal-dialog .modal-content .modal-footer .btn {
      font-size: 14px; }
  @media (min-width: 576px) {
    #modal-cookies-beruby .modal-dialog {
      max-width: 60%; } }
  @media (max-width: 768px) {
    #modal-cookies-beruby .modal-dialog {
      max-width: 100%; } }
  #modal-cookies-beruby .cookies-body-other {
    display: none; }
  #modal-cookies-beruby .cookies-section-active {
    font-weight: bold;
    text-decoration: underline; }
  #modal-cookies-beruby a:not(.btn) {
    color: #233047; }

#close-form {
  justify-content: flex-end !important; }

#close-modal.material-symbols-outlined {
  justify-content: flex-end !important; }

.bg-grey {
  background-color: #F7F7F8 !important; }

.bg-red {
  background-color: #FF344C !important; }

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

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