@import url("https://use.typekit.net/fcm1dgk.css");
:root {
  --white:#ffffff;
  --dark:#353535;
  --light-grey:#F1F1F1;
  --grey:#6F6F6E;
  --dark-grey:#4D4D4C;
  --red:#e30613;
  --red-hover:#D8121F;
}

html {
  background: var(--dark);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

body {
  margin: 0;
  padding-top: env(safe-area-inset-top);
  width: 393px;
  height: 852px;
  color: var(--grey);
  background: var(--light-grey);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "century-gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--grey);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: var(--red);
}

h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--dark-grey);
}

h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--dark-grey);
}

p {
  margin: 0 0 15px 0;
}

ul {
  padding-left: 12px;
  margin: 0;
}

.text-primary {
  color: var(--red);
}

.btn {
  font-size: 16px;
  font-size: 1rem;
  padding: .75rem 1.25rem;
  margin: auto auto 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: block;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  border: none;
  font-weight: bold;
  min-width: 160px;
  background: var(--red);
}

.btn:hover, .btn:active, .btn:focus {
  background: var(--red-hover);
}

.pill {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  -webkit-border-radius: 50rem;
     -moz-border-radius: 50rem;
          border-radius: 50rem;
  padding: .75rem 1.25rem;
  background: var(--light-grey);
  color: var(--dark-grey);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--light-grey);
  gap: 5px;
}

.pill:hover, .pill:active, .pill:focus {
  background: transparent;
  color: var(--dark-grey);
}

.pill:last-of-type {
  margin-top: 10px;
}

header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 30px 0 30px;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

header > img:last-of-type {
  margin: auto 0;
}

header .home, header .lang, header #closeModal {
  border: none;
  width: 38px;
  height: 38px;
  -webkit-border-radius: 50rem;
     -moz-border-radius: 50rem;
          border-radius: 50rem;
  background: var(--dark-grey);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 30px;
  top: 30px;
}

header .lang {
  right: 30px;
  left: auto;
}

header #closeModal {
  top: 15px;
  right: 15px;
  left: auto;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.numbers > div {
  -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
          border-radius: 30px;
  background: var(--light-grey);
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  padding: 10px 0 20px 0;
  font-size: 30px;
  font-size: 1.875rem;
}

.numbers > div i {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
}

.numbers > div b {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}

.numbers > div:first-of-type {
  color: var(--dark-grey);
}

.numbers > div:last-of-type {
  color: var(--red);
}

.numbers > div > div {
  font-weight: bold;
  background: var(--red);
  color: var(--white);
  position: absolute;
  font-size: 16px;
  font-size: 1rem;
  -webkit-border-radius: 50rem;
     -moz-border-radius: 50rem;
          border-radius: 50rem;
  bottom: 0;
  left: 50%;
  padding: 2px 10px;
  -webkit-transform: translate(-50%, 50%);
     -moz-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
       -o-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.cartouche {
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  background: var(--light-grey);
  text-align: center;
  padding: 10px;
  color: var(--dark-grey);
}

.cartouche.text-primary {
  color: var(--red);
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 26px;
  padding: 30px 20px 20px 20px;
}

.cartouche.text-primary i {
  font-size: 20px;
  font-size: 1.25rem;
  font-style: normal;
  display: block;
}

.cartouche table {
  text-align: left;
}

.cartouche table td {
  vertical-align: middle;
  padding: 5px 0;
}

.cartouche table .text-right {
  text-align: right;
  width: 100px;
  line-height: 13px;
  font-size: 20px;
  font-size: 1.25rem;
}

.cartouche table .text-right i {
  font-style: normal;
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
}

section {
  padding: 30px;
  background: var(--white);
  display: none;
  min-height: 350px;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
          border-radius: 30px;
}

section.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

section#role-selection > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

section#role-selection > div button {
  background: var(--red);
  color: var(--white);
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  padding: 30px 15px;
  text-align: center;
  border: none;
}

section#role-selection > div button:hover, section#role-selection > div button:active, section#role-selection > div button:focus {
  background: var(--red-hover);
}

section#role-selection > div button b {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  margin-top: 25px;
  margin-bottom: 8px;
}

section#role-selection > div button i {
  font-size: 12px;
  font-size: 0.75rem;
  font-style: normal;
}

section#role-selection a {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-top: auto;
}

.input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto 0;
  position: relative;
}

.input-group input {
  width: -webkit-calc(100% - 92px);
  width: -moz-calc(100% - 92px);
  width: calc(100% - 92px);
  font-size: 70px;
  font-size: 4.375rem;
  text-align: center;
  border: none;
  font-family: "century-gothic", sans-serif;
  color: var(--grey);
}

.input-group input:focus {
  background: var(--light-grey);
  border: none;
  outline: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.input-group input::-webkit-outer-spin-button, .input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

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

.input-group .percent {
  position: absolute;
  font-size: 70px;
  font-size: 4.375rem;
  color: var(--grey);
  top: 50%;
  right: 50px;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.input-group .decrease, .input-group .increase {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  text-transform: uppercase;
  font-weight: block;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  border: none;
  font-weight: bold;
  background: var(--dark-grey);
}

.input-group .decrease:hover, .input-group .decrease:active, .input-group .decrease:focus, .input-group .increase:hover, .input-group .increase:active, .input-group .increase:focus {
  background: var(--dark);
}

.selectorCurrency {
  margin: auto;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.selectorCurrency li {
  list-style: none;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  border: 1px solid var(--dark-grey);
  color: var(--dark-grey);
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: -1px;
}

.selectorCurrency li:first-child {
  -webkit-border-radius: 5px 0 0 5px;
     -moz-border-radius: 5px 0 0 5px;
          border-radius: 5px 0 0 5px;
}

.selectorCurrency li:last-child {
  -webkit-border-radius: 0 5px 5px 0;
     -moz-border-radius: 0 5px 5px 0;
          border-radius: 0 5px 5px 0;
}

.selectorCurrency li.active {
  background: var(--dark-grey);
  color: var(--white);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s;
  -o-transition: opacity 0.3s ease, visibility 0.3s;
  -moz-transition: opacity 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.modal .modal-content {
  background: white;
  padding: 20px;
  -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
          border-radius: 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 300px;
  text-align: center;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

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

.modal ul li + li {
  border-top: 1px solid var(--light-grey);
}

.modal ul a {
  display: block;
  text-align: center;
  padding: 30px;
}

@media print {
  html {
    display: block !important;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background: #fff !important;
  }
  body {
    -webkit-transform-origin: 0 !important;
       -moz-transform-origin: 0 !important;
        -ms-transform-origin: 0 !important;
         -o-transform-origin: 0 !important;
            transform-origin: 0 !important;
    -webkit-transform: none !important;
       -moz-transform: none !important;
        -ms-transform: none !important;
         -o-transform: none !important;
            transform: none !important;
    top: 0 !important;
    left: 0 !important;
    margin: !important;
    width: 100% !important;
    height: auto !important;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background: #fff !important;
  }
  body header {
    background: #fff !important;
    display: block;
    padding: 0;
  }
  body header button {
    display: none;
  }
  body.vet #vet1, body.vet #vet2 {
    display: block;
  }
  body.farm #farm1, body.farm #farm2 {
    display: block;
  }
  body section {
    display: block !important;
    min-height: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
  }
  body section.active {
    display: block !important;
  }
  body section > div {
    display: inline;
  }
  body section > div p {
    display: inline;
  }
  body section > div + div:not(.input-group) {
    display: block;
  }
  body .selectorCurrency {
    display: inline !important;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  body .selectorCurrency li {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
  }
  body .selectorCurrency li.active {
    display: inline !important;
    background: transparent;
  }
  body button.btn, body .home, body #openModal {
    display: none;
  }
  body .input-group {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    display: inline;
  }
  body .input-group button {
    display: none !important;
  }
  body .input-group .percent {
    position: relative;
    font-size: 16px;
    font-size: 1rem;
    top: 0;
    left: 0;
    font-weight: bold;
  }
  body .input-group input {
    width: 26px !important;
    margin: 0;
    font-weight: bold;
    padding: 0;
    height: auto;
    display: inline;
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
  }
  body .pill {
    display: none;
  }
  body h2 {
    margin-bottom: 0px;
  }
  body .imv {
    display: none;
  }
  body .cartouche, body .numbers > div {
    border: 1px solid #f1f1f1;
    margin-bottom: 5px;
  }
}

#hubspot-container-investment-breakdown {
  padding: 30px;
}

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