/* Variables */
/* Shorthands and fuctions */
.site-header {
  position: relative;
  z-index: 1000;
  background-color: rgb(206, 129, 78);
  min-height: 80px;
  min-height: 80px;
  display: flex;
}
.site-header a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}
.site-header ul {
  list-style: inside none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.site-header li {
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
  position: relative;
  color: #fff;
}
.site-header li:after {
  content: "";
  width: 0;
  left: 50%;
  top: calc(100% - 5px);
  transform: translateX(-50%);
  height: 1px;
  background-color: #fff;
  position: absolute;
  display: flex;
  transition: all 0.3s ease-in-out;
}
.site-header li:hover:after {
  width: calc(100% + 0.5rem);
}
.site-header #menu-toggle {
  display: none;
}
.site-header .brand-header svg {
  max-height: 80px;
  position: relative;
  transform-origin: 50% 50%;
}
.site-header .main-header {
  display: grid;
  gap: 2rem;
  grid-template: ". nav burger logout" 1fr/1fr auto auto 100px;
  width: 100%;
  padding-left: min((100% - 1600px) / 2, 80px);
  padding-right: min((100% - 1600px) / 2, 80px);
}
@media only screen and (max-width: 1679px) {
  .site-header .main-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.site-header .main-header .burger {
  grid-area: burger;
}
.site-header .main-header > ul {
  flex-direction: column;
  grid-area: logout;
  justify-content: center;
  gap: 1px;
}
.site-header .main-header > ul li {
  padding-top: 0;
  padding-bottom: 0.3rem;
}
.site-header .main-header > ul li.current_page_item {
  font-weight: bold;
}
.site-header .main-header .mascotte-wrapper-header {
  grid-area: logout;
  position: relative;
  transform: translateY(40px);
}
.site-header .main-header .mascotte-wrapper-header .user-initials {
  position: absolute;
  background-color: rgb(0, 165, 124);
  color: #fff;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: pointer;
  border: 2px solid rgb(206, 129, 78);
}
.site-header .main-header .mascotte-wrapper-header .mascotte-wrapper {
  cursor: pointer;
}
.site-header .main-header .mascotte-wrapper-header .mascotte-wrapper .mascotte {
  pointer-events: none;
}
.site-header .main-header .mascotte-wrapper-header .menu-after-mascotte {
  position: absolute;
  top: 100%;
  right: 0;
  width: 230px;
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  background: #fff;
  overflow: hidden;
}
.site-header .main-header .mascotte-wrapper-header input {
  display: none;
}
.site-header .main-header .mascotte-wrapper-header input:checked ~ .menu-after-mascotte {
  max-height: 94px;
}
.site-header .main-header .mascotte-wrapper-header input:checked ~ .menu-after-mascotte ul {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex-direction: column;
  width: 100%;
}
.site-header .main-header .mascotte-wrapper-header input:checked ~ .menu-after-mascotte ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.site-header .main-header .mascotte-wrapper-header input:checked ~ .menu-after-mascotte ul li a {
  color: rgb(0, 165, 124);
}
.site-header .main-header .brand-header {
  min-width: 140px;
}
.site-header .main-header .brand-header .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.site-header .main-header .brand-header .svg-wrapper svg {
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-area: nav;
}
.site-header nav li.current_page_item {
  font-weight: bold;
}
.site-header nav li ul {
  position: absolute;
  flex-direction: column;
  overflow: hidden;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  top: 100%;
  left: -0.5rem;
  width: 200px;
  max-height: 0;
  height: auto;
  transition: max-height 0.3s ease-in-out;
  background-color: #fff;
  border: 1px solid rgb(206, 129, 78);
}
.site-header nav li ul li {
  color: rgb(206, 129, 78);
}
.site-header nav li ul li:after {
  background-color: rgb(206, 129, 78);
}
.site-header nav li ul > li:first-child {
  margin-top: 0.5rem;
}
.site-header nav li ul > li:last-child {
  margin-bottom: 0.5rem;
}
.site-header nav li:hover ul {
  max-height: 50vh;
}
@keyframes bounce-in-top-rotate {
  0% {
    transform: translateY(-500px) rotate(3turns);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px) rotate(-1turn);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px) rotate(0.5turn);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px) rotate(-0.25turn);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top-rotate-invert {
  0% {
    transform: translateY(-500px) rotate(-3turns);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px) rotate(1turn);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px) rotate(-0.5turn);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px) rotate(0.25turn);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.drop-coin {
  opacity: 1;
  animation: bounce-in-top-rotate 0.5s linear;
  animation-fill-mode: forwards;
  transform: translateY(-500px);
}
.drop-coin-1 {
  transform-origin: 223px 779px;
  animation-delay: 0.6s;
  animation-name: bounce-in-top-rotate-invert;
}
.drop-coin-2 {
  transform-origin: 277px 790px;
  animation-delay: 1.34s;
}
.drop-coin-3 {
  transform-origin: 247px 829px;
  animation-delay: 0.15s;
}
.drop-coin-4 {
  transform-origin: 117px 790px;
  animation-delay: 0.4s;
}
.drop-coin-5 {
  transform-origin: 127px 805px;
  animation-name: bounce-in-top-rotate-invert;
}
.drop-coin-6 {
  transform-origin: 150px 801px;
  animation-delay: 0.7s;
  animation-name: bounce-in-top-rotate-invert;
}
.drop-coin-7 {
  transform-origin: 206px 811px;
  animation-delay: 1.2s;
}

.site-footer {
  height: 200px;
  position: relative;
  display: grid;
  grid-area: footer;
  background-color: rgb(0, 165, 124);
}
.site-footer a {
  text-decoration: none;
}
.site-footer .main-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer .footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  flex: 1;
}
.site-footer .copyright {
  background-color: #908A91;
  color: #fff;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
form .input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
form .input-wrapper input[type=text],
form .input-wrapper input[type=email],
form .input-wrapper input[type=number],
form .input-wrapper input[type=password],
form .input-wrapper input[type=date],
form .input-wrapper select,
form .input-wrapper textarea {
  border: 1px solid gray;
  min-height: 43px;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
form .input-wrapper input[type=text],
form .input-wrapper input[type=number],
form .input-wrapper input[type=email],
form .input-wrapper input[type=password],
form .input-wrapper input[type=date],
form .input-wrapper select {
  height: 43px;
}
form .input-wrapper select {
  padding-right: 1.5em;
}
form .field-repeater {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
form .field-repeater .repeater-0 {
  display: none;
}
form .field-repeater.themi-variable-expense-recurrences {
  display: grid;
  grid-template: "receiver button" 1fr/1fr auto;
  gap: 1rem;
}
form .field-repeater.themi-variable-expense-recurrences .receiver-group:after {
  background-color: rgb(0, 165, 124);
}

.custom-um-form {
  flex-direction: column;
}
.custom-um-form .um-field {
  position: relative;
}
.custom-um-form a {
  color: #fff;
}
.custom-um-form label {
  grid-area: label;
  color: #fff;
  position: relative;
  font-size: 1rem;
}
.custom-um-form label span {
  display: inline-flex;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.custom-um-form .um-field {
  display: grid;
  grid-template: "label" auto "input" auto/1fr;
  gap: 0.4rem;
}
.custom-um-form .um-form-field {
  grid-area: input;
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 2px solid #fff;
  min-height: 43px;
  display: inline-block;
}
.custom-um-form .um-form-field + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-um-form .um-form-field:-webkit-autofill {
  background: transparent;
  background-color: transparent !important;
}
.custom-um-form .um-form-field:not(.has-value):not(:-webkit-autofill):not(.is-focused) + label > span {
  transform: translate(11px, 42px);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.custom-um-form .um-form-field:focus + label > span {
  transform: translate(0, 0);
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-BlackItalic.eot");
  src: url("../fonts/Roboto-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BlackItalic.woff2") format("woff2"), url("../fonts/Roboto-BlackItalic.woff") format("woff"), url("../fonts/Roboto-BlackItalic.ttf") format("truetype"), url("../fonts/Roboto-BlackItalic.svg#Roboto-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-BoldItalic.eot");
  src: url("../fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BoldItalic.woff2") format("woff2"), url("../fonts/Roboto-BoldItalic.woff") format("woff"), url("../fonts/Roboto-BoldItalic.ttf") format("truetype"), url("../fonts/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.eot");
  src: url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype"), url("../fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-MediumItalic.eot");
  src: url("../fonts/Roboto-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-MediumItalic.woff2") format("woff2"), url("../fonts/Roboto-MediumItalic.woff") format("woff"), url("../fonts/Roboto-MediumItalic.ttf") format("truetype"), url("../fonts/Roboto-MediumItalic.svg#Roboto-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-LightItalic.eot");
  src: url("../fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-LightItalic.woff2") format("woff2"), url("../fonts/Roboto-LightItalic.woff") format("woff"), url("../fonts/Roboto-LightItalic.ttf") format("truetype"), url("../fonts/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Italic.eot");
  src: url("../fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Italic.woff2") format("woff2"), url("../fonts/Roboto-Italic.woff") format("woff"), url("../fonts/Roboto-Italic.ttf") format("truetype"), url("../fonts/Roboto-Italic.svg#Roboto-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.eot");
  src: url("../fonts/Roboto-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto-Black.woff") format("woff"), url("../fonts/Roboto-Black.ttf") format("truetype"), url("../fonts/Roboto-Black.svg#Roboto-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Thin.eot");
  src: url("../fonts/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto-Thin.woff") format("woff"), url("../fonts/Roboto-Thin.ttf") format("truetype"), url("../fonts/Roboto-Thin.svg#Roboto-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-ThinItalic.eot");
  src: url("../fonts/Roboto-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-ThinItalic.woff2") format("woff2"), url("../fonts/Roboto-ThinItalic.woff") format("woff"), url("../fonts/Roboto-ThinItalic.ttf") format("truetype"), url("../fonts/Roboto-ThinItalic.svg#Roboto-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype"), url("../fonts/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.eot");
  src: url("../fonts/Montserrat-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff"), url("../fonts/Montserrat-Black.ttf") format("truetype"), url("../fonts/Montserrat-Black.svg#Montserrat-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BlackItalic.eot");
  src: url("../fonts/Montserrat-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-BlackItalic.woff2") format("woff2"), url("../fonts/Montserrat-BlackItalic.woff") format("woff"), url("../fonts/Montserrat-BlackItalic.ttf") format("truetype"), url("../fonts/Montserrat-BlackItalic.svg#Montserrat-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype"), url("../fonts/Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-MediumItalic.eot");
  src: url("../fonts/Montserrat-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/Montserrat-MediumItalic.woff") format("woff"), url("../fonts/Montserrat-MediumItalic.ttf") format("truetype"), url("../fonts/Montserrat-MediumItalic.svg#Montserrat-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLight.eot");
  src: url("../fonts/Montserrat-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff"), url("../fonts/Montserrat-ExtraLight.ttf") format("truetype"), url("../fonts/Montserrat-ExtraLight.svg#Montserrat-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBoldItalic.eot");
  src: url("../fonts/Montserrat-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBoldItalic.woff") format("woff"), url("../fonts/Montserrat-ExtraBoldItalic.ttf") format("truetype"), url("../fonts/Montserrat-ExtraBoldItalic.svg#Montserrat-ExtraBoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.eot");
  src: url("../fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype"), url("../fonts/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBoldItalic.eot");
  src: url("../fonts/Montserrat-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-SemiBoldItalic.woff") format("woff"), url("../fonts/Montserrat-SemiBoldItalic.ttf") format("truetype"), url("../fonts/Montserrat-SemiBoldItalic.svg#Montserrat-SemiBoldItalic") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.eot");
  src: url("../fonts/Montserrat-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Italic.woff") format("woff"), url("../fonts/Montserrat-Italic.ttf") format("truetype"), url("../fonts/Montserrat-Italic.svg#Montserrat-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-LightItalic.eot");
  src: url("../fonts/Montserrat-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-LightItalic.woff2") format("woff2"), url("../fonts/Montserrat-LightItalic.woff") format("woff"), url("../fonts/Montserrat-LightItalic.ttf") format("truetype"), url("../fonts/Montserrat-LightItalic.svg#Montserrat-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype"), url("../fonts/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype"), url("../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLightItalic.eot");
  src: url("../fonts/Montserrat-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLightItalic.woff") format("woff"), url("../fonts/Montserrat-ExtraLightItalic.ttf") format("truetype"), url("../fonts/Montserrat-ExtraLightItalic.svg#Montserrat-ExtraLightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ThinItalic.eot");
  src: url("../fonts/Montserrat-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-ThinItalic.woff2") format("woff2"), url("../fonts/Montserrat-ThinItalic.woff") format("woff"), url("../fonts/Montserrat-ThinItalic.ttf") format("truetype"), url("../fonts/Montserrat-ThinItalic.svg#Montserrat-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.eot");
  src: url("../fonts/Montserrat-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff"), url("../fonts/Montserrat-Thin.ttf") format("truetype"), url("../fonts/Montserrat-Thin.svg#Montserrat-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.eot");
  src: url("../fonts/Montserrat-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.ttf") format("truetype"), url("../fonts/Montserrat-ExtraBold.svg#Montserrat-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.eot");
  src: url("../fonts/Montserrat-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-BoldItalic.woff") format("woff"), url("../fonts/Montserrat-BoldItalic.ttf") format("truetype"), url("../fonts/Montserrat-BoldItalic.svg#Montserrat-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes heightchange1 {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}
@keyframes heightchange2 {
  0%, 100% {
    transform: scaleY(1);
  }
  45% {
    transform: scaleY(1.1);
  }
  70% {
    transform: scaleY(0.8);
  }
}
@keyframes heightchange3 {
  0%, 100% {
    transform: scaleY(1);
  }
  25% {
    transform: scaleY(0.2);
  }
  50% {
    transform: scaleY(0.8);
  }
  75% {
    transform: scaleY(0.3);
  }
}
@keyframes heightchange4 {
  0%, 100% {
    transform: scaleY(1);
  }
  12.5% {
    transform: scaleY(1.2);
  }
  25% {
    transform: scaleY(0.8);
  }
  37.5% {
    transform: scaleY(1.25);
  }
  50% {
    transform: scaleY(0.6);
  }
  62.5% {
    transform: scaleY(1.1);
  }
  75% {
    transform: scaleY(0.7);
  }
  87.5% {
    transform: scaleY(1.3);
  }
}
@keyframes growing-4-times-then-deflate {
  0%, 16%, 100% {
    transform: scale(1);
  }
  17%, 34% {
    transform: scale(1.05);
  }
  40%, 59% {
    transform: scale(1.1);
  }
  60%, 79% {
    transform: scale(1.15);
  }
  80%, 90% {
    transform: scale(1.2);
  }
}
@keyframes drop-coin-into-pig1 {
  0%, 7% {
    transform: translateY(0);
  }
  15%, 100% {
    transform: translateY(40%);
  }
}
@keyframes drop-coin-into-pig2 {
  0%, 27% {
    transform: translate(1%, -40%);
  }
  35%, 100% {
    transform: translate(1%, 0);
  }
}
@keyframes drop-coin-into-pig3 {
  0%, 47% {
    transform: translate(2%, -40%);
  }
  55%, 100% {
    transform: translate(2%, 0);
  }
}
@keyframes drop-coin-into-pig4 {
  0%, 67% {
    transform: translate(3%, -40%);
  }
  75%, 100% {
    transform: translate(3%, 0);
  }
}
html {
  padding: 0;
  font-size: 20px;
  box-sizing: border-box;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: rgb(206, 129, 78) rgba(80, 40, 45, 0.03);
  scrollbar-width: thin;
  scroll-behavior: smooth;
  border-radius: 0;
  color: #16161D;
}
html * {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  border-radius: 0;
  display: grid;
  grid-template: "header" auto "main" 1fr "footer" auto/1fr;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  position: relative;
  font-family: "Roboto", sans-serif;
}
body > * {
  width: 100%;
  max-width: 100vw;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .title,
body .montserrat .h1,
body .h2,
body .h3,
body .h4,
body .h5,
body .h6 {
  font-family: "Montserrat", sans-serif;
}
body h1 {
  color: rgb(206, 129, 78);
}
body .themi-modal-title {
  color: rgb(0, 165, 124);
}

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-color: #FDF9F6;
  position: relative;
  z-index: 1;
}
main.unlogged-page {
  background-color: #e2f0d9;
}
main > *:not(.full-width) {
  width: 100%;
  padding-left: min((100% - 1200px) / 2, 40px);
  padding-right: min((100% - 1200px) / 2, 40px);
}
@media only screen and (max-width: 1239px) {
  main > *:not(.full-width) {
    padding-left: 20px;
    padding-right: 20px;
  }
}
a {
  color: rgb(0, 165, 124);
}
a.button, a.btn {
  border: 1px solid rgb(0, 165, 124);
  background: rgb(0, 165, 124);
  overflow: hidden;
  background: rgb(0, 165, 124);
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
a.button:hover, a.button:active, a.button:focus, a.btn:hover, a.btn:active, a.btn:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
a.button-small, a.btn-small {
  min-width: 43px;
}
a.button-secondary, a.btn-secondary {
  border: 1px solid rgb(206, 129, 78);
  background: rgb(206, 129, 78);
  overflow: hidden;
  background: rgb(206, 129, 78);
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
a.button-secondary:hover, a.button-secondary:active, a.button-secondary:focus, a.btn-secondary:hover, a.btn-secondary:active, a.btn-secondary:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
a.button-secondary-small, a.btn-secondary-small {
  min-width: 43px;
}
a.button-tertiary, a.btn-tertiary {
  border: 1px solid #ffde59;
  background: #ffde59;
  overflow: hidden;
  background: #ffde59;
  color: rgb(206, 129, 78);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
a.button-tertiary:hover, a.button-tertiary:active, a.button-tertiary:focus, a.btn-tertiary:hover, a.btn-tertiary:active, a.btn-tertiary:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
a.button-tertiary-small, a.btn-tertiary-small {
  min-width: 43px;
}
a.button-danger, a.btn-danger {
  border: 1px solid #c61c42;
  background: #c61c42;
  overflow: hidden;
  background: #c61c42;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
a.button-danger:hover, a.button-danger:active, a.button-danger:focus, a.btn-danger:hover, a.btn-danger:active, a.btn-danger:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
a.button-danger-small, a.btn-danger-small {
  min-width: 43px;
}

.button,
.btn {
  border: 1px solid rgb(0, 165, 124);
  background: rgb(0, 165, 124);
  overflow: hidden;
  background: rgb(0, 165, 124);
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.button:hover, .button:active, .button:focus,
.btn:hover,
.btn:active,
.btn:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
.button-small,
.btn-small {
  min-width: 43px;
}
.button-secondary,
.btn-secondary {
  border: 1px solid rgb(206, 129, 78);
  background: rgb(206, 129, 78);
  overflow: hidden;
  background: rgb(206, 129, 78);
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.button-secondary:hover, .button-secondary:active, .button-secondary:focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
.button-secondary-small,
.btn-secondary-small {
  min-width: 43px;
}
.button-tertiary,
.btn-tertiary {
  border: 1px solid #ffde59;
  background: #ffde59;
  overflow: hidden;
  background: #ffde59;
  color: rgb(206, 129, 78);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.button-tertiary:hover, .button-tertiary:active, .button-tertiary:focus,
.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
.button-tertiary-small,
.btn-tertiary-small {
  min-width: 43px;
}
.button-danger,
.btn-danger {
  border: 1px solid #c61c42;
  background: #c61c42;
  overflow: hidden;
  background: #c61c42;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.button-danger:hover, .button-danger:active, .button-danger:focus,
.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
  background-color: transparent;
  color: rgb(0, 165, 124);
  gap: 2ch;
}
.button-danger-small,
.btn-danger-small {
  min-width: 43px;
}
.button-lg,
.btn-lg {
  font-size: 1.3rem;
}
.button-sm,
.btn-sm {
  font-size: 0.8rem;
}
.button.themi-close,
.btn.themi-close {
  min-width: 43px;
}
.button.themi-close:not(.btn-full),
.btn.themi-close:not(.btn-full) {
  max-width: 43px;
  width: 43px;
}
.button.themi-close:not(.btn-full):hover, .button.themi-close:not(.btn-full):focus,
.btn.themi-close:not(.btn-full):hover,
.btn.themi-close:not(.btn-full):focus {
  background-color: rgb(0, 165, 124);
}
.button.themi-close:not(.btn-full):before, .button.themi-close:not(.btn-full):after,
.btn.themi-close:not(.btn-full):before,
.btn.themi-close:not(.btn-full):after {
  background: #fff;
}

.mascotte {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  width: 100%;
}
.mascotte-wrapper {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #00a57c;
  width: 90px;
  max-width: 90px;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mascotte .svg-wrapper {
  display: flex;
  position: absolute;
  top: 35px;
  left: 5px;
  transform: scaleX(-1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 83px;
  height: 73px;
  align-items: center;
  justify-content: center;
}
.mascotte .svg-wrapper svg {
  width: 100%;
  height: auto;
}

.themi-item-sliding-aside {
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template: "a aside" 1fr/106% 100%;
  transition: all 0.3s ease-in-out;
}
.themi-item-sliding-aside h2,
.themi-item-sliding-aside p,
.themi-item-sliding-aside a,
.themi-item-sliding-aside > span {
  color: #fff;
}
.themi-item-sliding-aside > a,
.themi-item-sliding-aside aside {
  position: relative;
  transform: translateX(0);
  padding: 1rem;
}
.themi-item-sliding-aside a {
  background-color: rgb(0, 165, 124);
  text-decoration: none;
  grid-area: a;
  width: 100%;
  min-width: 100%;
  transition: all 0.3s ease-in-out;
}
.themi-item-sliding-aside aside {
  height: 100%;
  grid-area: aside;
  background: #908A91;
  color: #fff;
  transition: all 0.3s ease-in-out;
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.themi-item-sliding-aside aside p {
  text-align: center;
}
.themi-item-sliding-aside .sliding-aside-button {
  position: absolute;
  right: calc(6% + 5px);
  top: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(78px);
  transition: all 0.3s ease-in-out;
  max-width: 43px;
  min-width: 43px;
  width: 43px;
}
.delete-mode .themi-item-sliding-aside > a .sliding-aside-button {
  opacity: 1;
  pointer-events: initial;
  transform: translateX(0);
}
.themi-item-sliding-aside.delete-mode > a,
.themi-item-sliding-aside.delete-mode aside {
  transform: translateX(-90%);
}
.themi-budget-date .btn {
  max-width: 43px;
  min-width: 43px;
  width: 43px;
}
.themi-budget-line {
  padding-left: 1ch;
}
.themi-budget-line.line-negative .amount {
  color: rgb(206, 129, 78);
}
.themi-budget-line.line-positive .amount {
  color: rgb(0, 165, 124);
}
.themi-budget-line:nth-child(odd) {
  background-color: rgba(206, 129, 78, 0.07);
}
.themi-budget-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.themi-budget-list > .button-wrapper {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.themi-budget-list > .button-wrapper button {
  max-width: 320px;
  width: 100%;
}
.themi-budget-lines + .balance {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.themi-budget-lines + .balance > section {
  max-width: 620px;
  padding-top: 1rem;
  border: 1px solid rgb(0, 165, 124);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-radius: 15px;
  padding-left: 2rem;
  background: rgb(0, 165, 124);
  color: #fff;
}
.themi-budget-lines + .balance .line {
  min-height: 43px;
  align-items: center;
}
.themi-budget-lines + .balance .line span {
  color: inherit;
}
.themi-budget-lines + .balance .line span.title {
  font-weight: bold;
}
.themi-budget-lines + .balance .line:last-of-type span.amount {
  font-size: 1.2rem;
}
.themi-budget-type-group-title {
  border: 1px solid rgb(0, 165, 124);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-radius: 15px;
}
.themi-budget-type-group-title > h3 {
  position: relative;
  background-color: rgb(0, 165, 124);
  color: #fff;
  border-radius: 10px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  min-height: 43px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(2rem, -50%);
}
.themi-budget-type-group-amount {
  min-height: 43px;
  align-items: center;
}
.themi-budget-type-group-amount span.title {
  font-weight: bold;
  color: rgb(206, 129, 78);
}
.themi-budget-type-group-amount span.amount {
  color: rgb(206, 129, 78);
}
.themi-budget-type-group-amount.positive span.amount {
  color: rgb(0, 165, 124);
}
.themi-budget-monthly-lines .day {
  border: 1px solid rgb(206, 129, 78);
  border-radius: 15px;
  background: rgb(229, 189, 162);
}
.themi-budget-monthly-lines .day .btn {
  min-width: 43px;
}
.themi-budget-monthly-lines .day .themi-budget-monthly-day-lines {
  border-left: 1px solid rgb(206, 129, 78);
  border-right: 1px solid rgb(206, 129, 78);
  background: rgb(229, 189, 162);
}
.themi-budget-monthly-lines .day input:checked ~ .themi-budget-monthly-day-lines {
  border-bottom: 1px solid rgb(206, 129, 78);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.themi-budget-monthly-lines .themi-modal-content {
  background-color: rgb(242, 250, 248);
}
.themi-budget-monthly-lines .themi-modal-content .themi-budget-monthly-day-line + .total .line-amount {
  color: rgb(0, 165, 124);
}
.themi-budget-monthly-lines .themi-modal-content .themi-budget-monthly-day-line + .total:before {
  background-color: rgb(0, 165, 124);
}
.themi-budget-monthly-lines .themi-budget-monthly-lines-balance > section {
  max-width: initial;
}
.themi-variable-expense-item {
  background-color: rgb(0, 165, 124);
  color: #fff;
  padding: 0.5rem;
}

.tip-figure {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgb(0, 165, 124);
  width: 90px;
  height: 90px;
}
.tip-figure img {
  top: 19%;
  width: 80px;
  left: 5px;
}

.wrapper-primary {
  background-color: rgb(0, 165, 124);
  color: #fff;
  max-width: 600px;
  margin: 5rem auto;
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
  border-radius: 15px;
  width: 100%;
  position: relative;
  color: #fff;
}
.wrapper-primary h1,
.wrapper-primary h2,
.wrapper-primary h3 {
  color: inherit;
}
.wrapper-primary .mascotte-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
}
.wrapper-primary label {
  color: #fff !important;
}
.wrapper-primary label .um-field-checkbox-option {
  color: #fff !important;
  font-size: 0.8rem;
}
.wrapper-primary label.um-field-checkbox .um-field-checkbox-state {
  transition: all 0.3s ease-in-out;
}
.wrapper-primary label.um-field-checkbox .um-field-checkbox-state i {
  color: #fff !important;
}
.wrapper-primary label.um-field-checkbox .um-field-checkbox-state:hover {
  opacity: 0.7;
}
.wrapper-primary label.um-field-checkbox.active .um-field-checkbox-state i {
  color: #fff;
}
.wrapper-primary > h1 {
  text-align: center;
  margin: 0;
}
.wrapper-primary .um-field-c {
  color: #fff;
}
.wrapper-primary .um-forgottom-password {
  color: #fff;
  grid-area: forgotten;
}
.wrapper-primary form .um-field-block {
  color: #fff;
}
.wrapper-primary .custom-um-form {
  display: grid;
}
.wrapper-primary .custom-um-form.login-form {
  grid-template: "name" auto "password" auto "forgotten" auto "buttons" auto/1fr;
}
.wrapper-primary .custom-um-form.register-form {
  grid-template: "login" auto "first" auto "name" auto "mail" auto "password" auto "confirm" auto "buttons" auto/1fr;
}
.wrapper-primary .custom-um-form.password-reset-form {
  grid-template: "p" auto "reset" auto "buttons" auto/1fr;
}
.wrapper-primary .custom-um-form.password-reset-form .um-field-block {
  grid-area: p;
}
.wrapper-primary .custom-um-form.password-reset-form .um-buttons {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper-primary .custom-um-form .um-field-username_b {
  grid-area: reset;
}
.wrapper-primary .custom-um-form .um-field-first_name {
  grid-area: first;
}
.wrapper-primary .custom-um-form .um-field-last_name,
.wrapper-primary .custom-um-form .um-field-username {
  grid-area: name;
}
.wrapper-primary .custom-um-form .um-field-user_login {
  grid-area: login;
}
.wrapper-primary .custom-um-form .um-field-user_password {
  grid-area: password;
}
.wrapper-primary .custom-um-form .um-field-user_email {
  grid-area: mail;
}
.wrapper-primary .custom-um-form .um-field-user_password {
  grid-area: password;
}
.wrapper-primary .custom-um-form .um-field-confirm_user_password {
  grid-area: confirm;
}
.wrapper-primary section.um {
  width: 100%;
  left: 0;
  position: relative;
  min-width: 100%;
  float: initial;
}
.wrapper-primary div.um-buttons {
  color: #fff;
  grid-area: buttons;
}
.wrapper-primary div.um-buttons input.button-secondary,
.wrapper-primary div.um-buttons a.button-secondary {
  border: 1px solid rgb(206, 129, 78);
  background: rgb(206, 129, 78);
  overflow: hidden;
  background: rgb(206, 129, 78);
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
  min-height: 43px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.wrapper-primary div.um-buttons input.button-secondary:hover, .wrapper-primary div.um-buttons input.button-secondary:active, .wrapper-primary div.um-buttons input.button-secondary:focus,
.wrapper-primary div.um-buttons a.button-secondary:hover,
.wrapper-primary div.um-buttons a.button-secondary:active,
.wrapper-primary div.um-buttons a.button-secondary:focus {
  background-color: rgb(206, 159.6796875, 129);
  color: #fff;
  gap: 2ch;
}
.wrapper-primary div.um-buttons input.button-secondary-small,
.wrapper-primary div.um-buttons a.button-secondary-small {
  min-width: 43px;
}
.wrapper-primary div.um-buttons .um-login {
  margin-top: 1.5rem;
}
.wrapper-primary div.um-buttons .um-login,
.wrapper-primary div.um-buttons .um-register {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-primary div.um-buttons p {
  text-align: center;
  font-size: 1.3rem;
  opacity: 1;
}
.wrapper-primary div.um-buttons-b {
  color: #fff;
}

.tile {
  width: 100%;
  border: 1px solid rgb(0, 165, 124);
}
.tiles {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 1239px) {
  .tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1023px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 799px) {
  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tile-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tile-icon {
  height: auto;
  margin: 0;
  order: 1;
  padding: 5px;
  aspect-ratio: 1/1;
  width: 100%;
}
.tile-icon svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: auto;
}
.tile-icon.svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tile-icon.svg-wrapper-tirelire svg .pig {
  animation-play-state: paused;
  animation-name: growing-4-times-then-deflate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  transform-origin: 50% 50%;
}
.tile:hover .tile-icon.svg-wrapper-tirelire svg .pig, .tile:focus .tile-icon.svg-wrapper-tirelire svg .pig, .tile.touching .tile-icon.svg-wrapper-tirelire svg .pig {
  animation-play-state: running;
}
.tile-icon.svg-wrapper-tirelire svg .drop-coin {
  animation-play-state: paused;
  animation-name: drop-coin-into-pig1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  transform-origin: 0 50%;
}
.tile:hover .tile-icon.svg-wrapper-tirelire svg .drop-coin, .tile:focus .tile-icon.svg-wrapper-tirelire svg .drop-coin, .tile.touching .tile-icon.svg-wrapper-tirelire svg .drop-coin {
  animation-play-state: running;
}
.tile-icon.svg-wrapper-tirelire svg .drop-coin-2 {
  animation-name: drop-coin-into-pig2;
}
.tile-icon.svg-wrapper-tirelire svg .drop-coin-3 {
  animation-name: drop-coin-into-pig3;
}
.tile-icon.svg-wrapper-tirelire svg .drop-coin-4 {
  animation-name: drop-coin-into-pig4;
}
.tile-icon.svg-wrapper-ampoule svg path.on-off {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.tile:hover .tile-icon.svg-wrapper-ampoule svg path.on-off, .tile:focus .tile-icon.svg-wrapper-ampoule svg path.on-off, .tile.touching .tile-icon.svg-wrapper-ampoule svg path.on-off {
  opacity: 1;
}
.tile-icon.svg-wrapper-histogramme svg path {
  animation-play-state: paused;
  animation-name: heightchange1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  transform-origin: bottom;
}
.tile-icon.svg-wrapper-histogramme svg path:last-of-type {
  animation: none;
}
.tile-icon.svg-wrapper-histogramme svg path:nth-of-type(2) {
  animation-name: heightchange2;
  animation-duration: 2.1s;
}
.tile-icon.svg-wrapper-histogramme svg path:nth-of-type(3) {
  animation-name: heightchange3;
  animation-duration: 4.3s;
}
.tile-icon.svg-wrapper-histogramme svg path:nth-of-type(4) {
  animation-name: heightchange4;
  animation-duration: 6.33s;
}
.tile:hover .tile-icon.svg-wrapper-histogramme svg path, .tile:focus .tile-icon.svg-wrapper-histogramme svg path, .tile.touching .tile-icon.svg-wrapper-histogramme svg path {
  animation-play-state: running;
}
.tile-icon.svg-wrapper-roue-crantee svg {
  max-width: 78%;
}
.tile-icon.svg-wrapper-roue-crantee svg .big-gear {
  animation-duration: 11s;
  transform-origin: 43% 42%;
}
.tile-icon.svg-wrapper-roue-crantee svg .small-gear {
  animation-duration: 5.5s;
  transform-origin: 71% 74%;
  animation-direction: reverse;
}
.tile-icon.svg-wrapper-roue-crantee svg .gear {
  animation-play-state: paused;
  animation-name: rotate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.tile:hover .tile-icon.svg-wrapper-roue-crantee svg .gear, .tile:focus .tile-icon.svg-wrapper-roue-crantee svg .gear, .tile.touching .tile-icon.svg-wrapper-roue-crantee svg .gear {
  animation-play-state: running;
}
.tile-title {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  order: 2;
  margin: 0;
  padding-left: 5px;
  flex: 1;
  padding-right: 5px;
}

.variable-expense-total {
  font-weight: bold;
}
.variable-expense-total.updated {
  color: rgb(0, 165, 124);
}/*# sourceMappingURL=main.css.map */