/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");
/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-open {
  overflow: hidden;
}
/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

/* line 36, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
/* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  /* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
/* line 48, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

/* line 53, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable {
  display: -webkit-box;
  display: flex;
  max-height: calc(100% - 1rem);
}
/* line 57, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
/* line 62, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
/* line 67, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

/* line 72, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-centered {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}
/* line 78, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
/* line 85, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
}
/* line 90, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
/* line 94, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

/* line 101, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-content {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

/* line 119, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
/* line 129, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-backdrop.fade {
  opacity: 0;
}
/* line 130, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 135, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
/* line 143, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

/* line 151, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 158, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-body {
  position: relative;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 1rem;
}

/* line 167, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
/* line 176, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}
/* line 177, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

/* line 181, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 192, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  /* line 197, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  /* line 200, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  /* line 205, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  /* line 208, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  /* line 217, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 221, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  /* line 228, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_modal.scss */
  .modal-xl {
    max-width: 1140px;
  }
}
/* line 3, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_align.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 4, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_align.scss */
.align-top {
  vertical-align: top !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_align.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_align.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_align.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_align.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-primary {
  background-color: #007bff !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-secondary {
  background-color: #6c757d !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-success {
  background-color: #28a745 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-info {
  background-color: #17a2b8 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-warning {
  background-color: #ffc107 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-danger {
  background-color: #dc3545 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-light {
  background-color: #f8f9fa !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_background-variant.scss */
.bg-dark {
  background-color: #343a40 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

/* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_background.scss */
.bg-white {
  background-color: #fff !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_background.scss */
.bg-transparent {
  background-color: transparent !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border {
  border: 1px solid #dee2e6 !important;
}

/* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-top {
  border-top: 1px solid #dee2e6 !important;
}

/* line 9, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-right {
  border-right: 1px solid #dee2e6 !important;
}

/* line 10, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-left {
  border-left: 1px solid #dee2e6 !important;
}

/* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-0 {
  border: 0 !important;
}

/* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 15, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-right-0 {
  border-right: 0 !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-left-0 {
  border-left: 0 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-primary {
  border-color: #007bff !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-secondary {
  border-color: #6c757d !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-success {
  border-color: #28a745 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-info {
  border-color: #17a2b8 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-warning {
  border-color: #ffc107 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-danger {
  border-color: #dc3545 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-light {
  border-color: #f8f9fa !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-dark {
  border-color: #343a40 !important;
}

/* line 25, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.border-white {
  border-color: #fff !important;
}

/* line 33, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-sm {
  border-radius: 0.2rem !important;
}

/* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded {
  border-radius: 0.25rem !important;
}

/* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

/* line 46, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

/* line 51, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 56, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 61, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-lg {
  border-radius: 0.3rem !important;
}

/* line 65, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 69, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-pill {
  border-radius: 50rem !important;
}

/* line 73, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_borders.scss */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 2, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_clearfix.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-none {
  display: none !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-inline {
  display: inline !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-block {
  display: block !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-table {
  display: table !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-table-row {
  display: table-row !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-flex {
  display: -webkit-box !important;
  display: flex !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-none {
    display: none !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-inline {
    display: inline !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-block {
    display: block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-table {
    display: table !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-table-row {
    display: table-row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-none {
    display: none !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-inline {
    display: inline !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-block {
    display: block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-table {
    display: table !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-table-row {
    display: table-row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-none {
    display: none !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-inline {
    display: inline !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-block {
    display: block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-table {
    display: table !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-table-row {
    display: table-row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-none {
    display: none !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-inline {
    display: inline !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-block {
    display: block !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-table {
    display: table !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-table-row {
    display: table-row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media print {
  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-none {
    display: none !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-inline {
    display: inline !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-block {
    display: block !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-table {
    display: table !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-table-row {
    display: table-row !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-table-cell {
    display: table-cell !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_display.scss */
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
/* line 3, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
/* line 10, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive::before {
  display: block;
  content: "";
}
/* line 15, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-direction: row !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
          flex-direction: column !important;
}

/* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
          flex-direction: row-reverse !important;
}

/* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
          flex-direction: column-reverse !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 19, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-fill {
  -webkit-box-flex: 1 !important;
          flex: 1 1 auto !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-grow-0 {
  -webkit-box-flex: 0 !important;
          flex-grow: 0 !important;
}

/* line 21, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-grow-1 {
  -webkit-box-flex: 1 !important;
          flex-grow: 1 !important;
}

/* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 25, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.justify-content-start {
  -webkit-box-pack: start !important;
          justify-content: flex-start !important;
}

/* line 26, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.justify-content-end {
  -webkit-box-pack: end !important;
          justify-content: flex-end !important;
}

/* line 27, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.justify-content-center {
  -webkit-box-pack: center !important;
          justify-content: center !important;
}

/* line 28, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.justify-content-between {
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
}

/* line 29, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-items-start {
  -webkit-box-align: start !important;
          align-items: flex-start !important;
}

/* line 32, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-items-end {
  -webkit-box-align: end !important;
          align-items: flex-end !important;
}

/* line 33, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-items-center {
  -webkit-box-align: center !important;
          align-items: center !important;
}

/* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-items-baseline {
  -webkit-box-align: baseline !important;
          align-items: baseline !important;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-items-stretch {
  -webkit-box-align: stretch !important;
          align-items: stretch !important;
}

/* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 38, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-content-center {
  align-content: center !important;
}

/* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 42, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 45, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 46, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-self-center {
  align-self: center !important;
}

/* line 48, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 49, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  /* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  /* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  /* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  /* line 19, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  /* line 25, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  /* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }

  /* line 38, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-center {
    align-content: center !important;
  }

  /* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }

  /* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }

  /* line 42, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  /* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }

  /* line 45, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }

  /* line 46, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-center {
    align-self: center !important;
  }

  /* line 48, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  /* line 49, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  /* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  /* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  /* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  /* line 19, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  /* line 25, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }

  /* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }

  /* line 38, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-center {
    align-content: center !important;
  }

  /* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }

  /* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }

  /* line 42, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }

  /* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }

  /* line 45, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }

  /* line 46, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-center {
    align-self: center !important;
  }

  /* line 48, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }

  /* line 49, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  /* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  /* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  /* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  /* line 19, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  /* line 25, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  /* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }

  /* line 38, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-center {
    align-content: center !important;
  }

  /* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }

  /* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }

  /* line 42, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  /* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }

  /* line 45, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }

  /* line 46, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-center {
    align-self: center !important;
  }

  /* line 48, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  /* line 49, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  /* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  /* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  /* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  /* line 19, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  /* line 25, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  /* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }

  /* line 38, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-center {
    align-content: center !important;
  }

  /* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }

  /* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }

  /* line 42, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  /* line 44, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }

  /* line 45, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }

  /* line 46, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-center {
    align-self: center !important;
  }

  /* line 48, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  /* line 49, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
.float-left {
  float: left !important;
}

/* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
.float-right {
  float: right !important;
}

/* line 9, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-sm-left {
    float: left !important;
  }

  /* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-sm-right {
    float: right !important;
  }

  /* line 9, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  /* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-md-left {
    float: left !important;
  }

  /* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-md-right {
    float: right !important;
  }

  /* line 9, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  /* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-lg-left {
    float: left !important;
  }

  /* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-lg-right {
    float: right !important;
  }

  /* line 9, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-xl-left {
    float: left !important;
  }

  /* line 8, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-xl-right {
    float: right !important;
  }

  /* line 9, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_float.scss */
  .float-xl-none {
    float: none !important;
  }
}
/* line 4, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_overflow.scss */
.overflow-auto {
  overflow: auto !important;
}

/* line 4, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_overflow.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.position-static {
  position: static !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.position-relative {
  position: relative !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.position-absolute {
  position: absolute !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.position-fixed {
  position: fixed !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

/* line 10, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 18, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  /* line 26, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_position.scss */
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_screenreaders.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_screen-reader.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* line 3, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_shadows.scss */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* line 4, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_shadows.scss */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 5, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_shadows.scss */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_shadows.scss */
.shadow-none {
  box-shadow: none !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.w-25 {
  width: 25% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.w-50 {
  width: 50% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.w-75 {
  width: 75% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.w-100 {
  width: 100% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.w-auto {
  width: auto !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.h-25 {
  height: 25% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.h-50 {
  height: 50% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.h-75 {
  height: 75% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.h-100 {
  height: 100% !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.h-auto {
  height: auto !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.min-vw-100 {
  min-width: 100vw !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.min-vh-100 {
  min-height: 100vh !important;
}

/* line 19, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.vw-100 {
  width: 100vw !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_sizing.scss */
.vh-100 {
  height: 100vh !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_stretched-link.scss */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-0 {
  margin: 0 !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.p-0 {
  padding: 0 !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-n1 {
  margin: -0.25rem !important;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

/* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

/* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

/* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-n2 {
  margin: -0.5rem !important;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

/* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

/* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

/* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-n3 {
  margin: -1rem !important;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

/* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

/* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

/* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-n4 {
  margin: -1.5rem !important;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

/* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

/* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

/* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-n5 {
  margin: -3rem !important;
}

/* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

/* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

/* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

/* line 55, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.m-auto {
  margin: auto !important;
}

/* line 56, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 60, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 64, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 68, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-0 {
    margin: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-0 {
    padding: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n3 {
    margin: -1rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n5 {
    margin: -3rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  /* line 55, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-auto {
    margin: auto !important;
  }

  /* line 56, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  /* line 60, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  /* line 64, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  /* line 68, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-0 {
    margin: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-3 {
    margin: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-5 {
    margin: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-md-0 {
    padding: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-md-3 {
    padding: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-md-5 {
    padding: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n1 {
    margin: -0.25rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n2 {
    margin: -0.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n3 {
    margin: -1rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n4 {
    margin: -1.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n5 {
    margin: -3rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  /* line 55, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-md-auto {
    margin: auto !important;
  }

  /* line 56, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  /* line 60, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  /* line 64, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  /* line 68, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-0 {
    margin: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-0 {
    padding: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n3 {
    margin: -1rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n5 {
    margin: -3rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  /* line 55, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-auto {
    margin: auto !important;
  }

  /* line 56, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  /* line 60, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  /* line 64, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  /* line 68, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-0 {
    margin: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-0 {
    padding: 0 !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  /* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }

  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  /* line 16, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  /* line 20, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n3 {
    margin: -1rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n5 {
    margin: -3rem !important;
  }

  /* line 35, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  /* line 43, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  /* line 47, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  /* line 55, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-auto {
    margin: auto !important;
  }

  /* line 56, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  /* line 60, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  /* line 64, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  /* line 68, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-justify {
  text-align: justify !important;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-wrap {
  white-space: normal !important;
}

/* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* line 14, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-left {
  text-align: left !important;
}

/* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-right {
  text-align: right !important;
}

/* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-sm-left {
    text-align: left !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-sm-right {
    text-align: right !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-md-left {
    text-align: left !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-md-right {
    text-align: right !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-lg-left {
    text-align: left !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-lg-right {
    text-align: right !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  /* line 22, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-xl-left {
    text-align: left !important;
  }

  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-xl-right {
    text-align: right !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
  .text-xl-center {
    text-align: center !important;
  }
}
/* line 30, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 32, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 36, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.font-weight-light {
  font-weight: 300 !important;
}

/* line 37, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.font-weight-lighter {
  font-weight: lighter !important;
}

/* line 38, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.font-weight-normal {
  font-weight: 400 !important;
}

/* line 39, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.font-weight-bold {
  font-weight: 700 !important;
}

/* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.font-weight-bolder {
  font-weight: bolder !important;
}

/* line 41, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.font-italic {
  font-style: italic !important;
}

/* line 45, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-white {
  color: #fff !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-primary {
  color: #007bff !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-secondary {
  color: #6c757d !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-success {
  color: #28a745 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-info {
  color: #17a2b8 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-warning {
  color: #ffc107 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-danger {
  color: #dc3545 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-light {
  color: #f8f9fa !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

/* line 6, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_text-emphasis.scss */
.text-dark {
  color: #343a40 !important;
}

/* line 17, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/mixins/_hover.scss */
a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

/* line 51, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-body {
  color: #212529 !important;
}

/* line 52, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-muted {
  color: #6c757d !important;
}

/* line 54, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 55, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 59, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 63, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-decoration-none {
  text-decoration: none !important;
}

/* line 65, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* line 72, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_text.scss */
.text-reset {
  color: inherit !important;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_visibility.scss */
.visible {
  visibility: visible !important;
}

/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/utilities/_visibility.scss */
.invisible {
  visibility: hidden !important;
}

@media print {
  /* line 13, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  /* line 24, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  a:not(.btn) {
    text-decoration: underline;
  }

  /* line 34, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /* line 49, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  pre {
    white-space: pre-wrap !important;
  }

  /* line 52, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  /* line 63, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 67, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 72, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 79, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  /* line 92, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  body {
    min-width: 992px !important;
  }

  /* line 95, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .container {
    min-width: 992px !important;
  }

  /* line 100, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .navbar {
    display: none;
  }

  /* line 103, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .badge {
    border: 1px solid #000;
  }

  /* line 107, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 110, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }

  /* line 117, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  /* line 123, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .table-dark {
    color: inherit;
  }
  /* line 126, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  /* line 134, /Users/henriquecaiano/apps/producttradeoffs/node_modules/bootstrap/scss/_print.scss */
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
/* line 11, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
/* line 23, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
/* line 31, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* line 40, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
/* line 53, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 64, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
/* line 76, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/* line 85, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/* line 95, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 105, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
/* line 116, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
/* line 125, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 133, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
sub {
  bottom: -0.25em;
}

/* line 137, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
/* line 148, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
/* line 160, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
/* line 176, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
/* line 186, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
/* line 195, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
/* line 206, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
/* line 218, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
/* line 229, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
/* line 240, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
/* line 253, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
/* line 261, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
/* line 270, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
/* line 280, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
/* line 290, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
/* line 299, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
/* line 308, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
/* line 320, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
/* line 328, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
/* line 339, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
/* line 347, /Users/henriquecaiano/apps/producttradeoffs/node_modules/normalize.css/normalize.css */
[hidden] {
  display: none;
}

/* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_global.scss */
body {
  font-family: "Roboto", "Franklin Gothic Medium", Tahoma, sans-serif;
  margin: 0;
  min-height: 100%;
}

/* line 7, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_global.scss */
html {
  height: 100%;
  margin: 0;
}

/* line 12, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_global.scss */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* line 18, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_global.scss */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
.site-wrapper {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  min-height: 100vh;
}
@media only screen and (max-width: 1150px) {
  /* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
  .site-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 960px) {
  /* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
  .site-wrapper {
    margin-bottom: -19px;
  }
}
@media only screen and (max-width: 550px) {
  /* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
  .site-wrapper {
    margin-bottom: -19px;
  }
}

/* line 23, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
.content-wrapper {
  padding: 65px 50px;
  background: #0E5456;
  min-height: calc(100vh - 130px);
  margin-bottom: -18px;
}
@media only screen and (max-width: 1150px) {
  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
  .content-wrapper {
    overflow: hidden;
  }
}
@media only screen and (max-width: 960px) {
  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
  .content-wrapper {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 550px) {
  /* line 23, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
  .content-wrapper {
    padding: 20px;
    margin-bottom: 0;
  }
}

/* line 43, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
.background-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url(/assets/texture-8938777dc500b8c410871cdfd0f8e1e8d095a0780d2e7599ba911442c0422d4e.png);
  background-color: #f35a5b;
}

/* line 53, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/base/_containers.scss */
.background-right {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #0E5456;
}

/* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.navbar {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media only screen and (max-width: 960px) {
  /* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .navbar {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 550px) {
  /* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .navbar {
    display: block;
  }
}

/* line 14, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-wrapper {
  background: #084A4E;
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  display: inline-grid;
  padding: 20px;
  margin-left: auto;
}
@media only screen and (max-width: 960px) {
  /* line 14, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .cta-wrapper {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}

/* line 29, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group {
  width: 570px;
  display: grid;
  grid-template-columns: auto 260px;
}
@media only screen and (max-width: 960px) {
  /* line 29, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .cta-group {
    width: 100%;
  }
}
/* line 38, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-input {
  font-weight: 400;
  font-size: 17px;
  color: #3B4547;
  background-color: #FFFFFF;
  border-radius: 4px 0 0 4px;
  border: none;
  padding: 20px;
}
/* line 47, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-input::-webkit-input-placeholder {
  color: #767D7E;
}
/* line 51, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-input:-ms-input-placeholder {
  color: #767D7E;
}
/* line 55, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-input::-webkit-input-placeholder {
  color: #767D7E;
}
.cta-group .cta-input::-moz-placeholder {
  color: #767D7E;
}
.cta-group .cta-input:-ms-input-placeholder {
  color: #767D7E;
}
.cta-group .cta-input::-ms-input-placeholder {
  color: #767D7E;
}
.cta-group .cta-input::placeholder {
  color: #767D7E;
}
@media only screen and (max-width: 550px) {
  /* line 38, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .cta-group .cta-input {
    width: 100px;
    font-size: 15px;
    padding: 15px;
    border-radius: 2px;
    -webkit-box-flex: 1;
            flex-grow: 1;
    margin-right: 10px;
  }
}
/* line 69, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-submit {
  background-color: #0666F6;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.09px;
  text-align: center;
  border-radius: 0 4px 4px 0;
  border: none;
  cursor: pointer;
}
/* line 80, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-submit:hover {
  background-color: #0551c4;
}
/* line 84, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
.cta-group .cta-submit .arrow {
  margin-left: 10px;
  vertical-align: middle;
}
@media only screen and (max-width: 550px) {
  /* line 69, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .cta-group .cta-submit {
    font-size: 15px;
    padding: 15px;
    border-radius: 2px;
  }
}
@media only screen and (max-width: 550px) {
  /* line 97, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .cta-group.mobile-only {
    font-weight: 400;
    font-size: 15px;
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  /* line 104, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/components/_cta.scss */
  .cta-group.mobile-only label {
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.08px;
    margin-bottom: 10px;
    display: block;
    display: -webkit-box;
    display: flex;
    flex-basis: 100%;
  }
}

/* line 2, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .left-sidebar {
  background: url(/assets/texture-8938777dc500b8c410871cdfd0f8e1e8d095a0780d2e7599ba911442c0422d4e.png);
  background-attachment: fixed;
  position: relative;
  background-color: #f35a5b;
}
@media only screen and (max-width: 1150px) {
  /* line 2, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .left-sidebar {
    display: none;
  }
}
/* line 12, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .left-sidebar .logo {
  width: 376px;
  height: auto;
  position: absolute;
  top: 65px;
  left: 50px;
}
@media only screen and (max-width: 1150px) {
  /* line 12, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .left-sidebar .logo {
    width: 270px;
  }
}
/* line 24, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .left-sidebar .copyright {
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 1;
  margin: 30px 0;
}
/* line 39, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .main-title {
  font-weight: 700;
  font-size: 55px;
  color: #FFFFFF;
  letter-spacing: 1.1px;
  line-height: 70px;
  text-shadow: 0 2px 0 rgba(12, 63, 74, 0.1);
  z-index: 1;
  position: relative;
  margin-top: 60px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 960px) {
  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .main-title {
    margin-top: 30px;
    font-size: 45px;
    line-height: 60px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 550px) {
  /* line 39, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .main-title {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 28px;
    text-shadow: 0 2px 0 rgba(12, 63, 74, 0.1);
    margin-bottom: 15px;
    margin-top: 20px;
  }
}
/* line 69, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .main-title.title-position {
  margin-left: -185px;
}
@media only screen and (max-width: 1150px) {
  /* line 69, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .main-title.title-position {
    margin-left: 0;
  }
}
/* line 77, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .secondary-title {
  font-weight: 700;
  font-size: 50px;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-shadow: 0 2px 0 rgba(12, 63, 74, 0.1);
  margin-bottom: 10px;
  margin-top: 55px;
}
@media only screen and (max-width: 550px) {
  /* line 77, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .secondary-title {
    font-size: 30px;
    letter-spacing: 0.6px;
    margin-top: 25px;
  }
}
/* line 93, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .main-subtitle {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.6px;
  margin: 0;
}
@media only screen and (max-width: 550px) {
  /* line 93, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .main-subtitle {
    font-size: 13px;
    letter-spacing: 0.32px;
  }
}
@media only screen and (max-width: 550px) {
  /* line 105, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .site-wrapper .main-subtitle.change-on-mobile {
    font-size: 16px;
  }
}
/* line 111, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.site-wrapper .main-subtitle span {
  color: #F56061;
}

/* line 117, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 40px;
  margin-top: 60px;
}
@media only screen and (max-width: 1150px) {
  /* line 117, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .trailer-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 550px) {
  /* line 117, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .trailer-grid {
    margin-top: 25px;
    grid-gap: 20px;
  }
}
/* line 132, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid .trailer-wrapper {
  position: relative;
}
/* line 136, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid .trailer-wrapper:hover .trailer-btn {
  background: #f23031;
}
/* line 142, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid .trailer-img {
  width: 100%;
  height: auto;
}
/* line 147, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid .trailer-gradient {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 4px;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
  background: linear-gradient(transparent, black);
}
/* line 156, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid .trailer-btn {
  position: absolute;
  right: 0;
  bottom: 4px;
  z-index: 1;
  background: #F56061;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.45px;
  padding: 19px 36px;
}
/* line 168, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.trailer-grid .trailer-btn img {
  vertical-align: middle;
  margin-right: 19px;
}
@media only screen and (max-width: 550px) {
  /* line 156, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .trailer-grid .trailer-btn {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 36px;
    text-align: center;
    border-radius: 2px;
    padding: 0;
    line-height: 1.8;
    opacity: 0.7;
  }
  /* line 187, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .trailer-grid .trailer-btn img {
    width: 15px;
  }
  /* line 191, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .trailer-grid .trailer-btn span {
    display: none;
  }
  /* line 195, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .trailer-grid .trailer-btn img {
    margin: 0;
  }
}

@media only screen and (max-width: 960px) {
  /* line 202, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper {
    text-align: center;
    margin: 0 auto;
  }
}
/* line 209, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.powered-wrapper .profitwell {
  max-width: 186px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}
@media only screen and (max-width: 960px) {
  /* line 209, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper .profitwell {
    text-align: center;
    margin: 0 auto 15px;
  }
}
@media only screen and (max-width: 1150px) {
  /* line 209, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper .profitwell {
    display: inline-block;
  }
}
/* line 225, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.powered-wrapper .producthabits {
  max-width: 260px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 960px) {
  /* line 225, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper .producthabits {
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1150px) {
  /* line 225, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper .producthabits {
    display: inline-block;
    vertical-align: top;
    margin-top: -6px;
    margin-left: 25px;
  }
}
/* line 243, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.powered-wrapper .powered-subtitle {
  opacity: 0.7;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0.45px;
  margin-top: 50px;
  margin-bottom: 30px;
  display: block;
}
@media only screen and (max-width: 960px) {
  /* line 243, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper .powered-subtitle {
    text-align: center;
    margin: 0 auto 25px;
  }
}
@media only screen and (max-width: 1150px) {
  /* line 243, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .powered-wrapper .powered-subtitle {
    margin: 0 auto 12px;
  }
}

/* line 264, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: justify;
  justify-content: space-between;
  grid-gap: 35px;
  margin-top: 40px;
}
@media only screen and (max-width: 1150px) {
  /* line 264, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episodes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 960px) {
  /* line 264, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 550px) {
  /* line 264, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
    margin-top: 20px;
  }
}

/* line 287, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item {
  cursor: pointer;
}
/* line 290, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
/* line 296, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked:hover .locked-episode-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
/* line 301, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked .icon-locked {
  height: auto;
  width: 75%;
}
/* line 306, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked .locked-episode-img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
/* line 312, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked .episode-locked-info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
/* line 326, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked .trailer-gradient {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
  background: linear-gradient(transparent, black);
}
/* line 335, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item.episode-locked h4 {
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 0.38px;
  text-align: center;
}
@media only screen and (max-width: 550px) {
  /* line 344, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episode-item:nth-child(even) {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 550px) {
  /* line 352, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episode-item:nth-child(odd) {
    grid-column-start: 3;
    grid-column-end: 2;
    margin-left: 5px;
  }
}
/* line 361, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item:first-child .episode-play {
  border: 2px solid #0666F6;
  box-sizing: border-box;
  border-radius: 2px;
}
@media only screen and (max-width: 550px) {
  /* line 360, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episode-item:first-child {
    grid-column-start: 1;
    grid-column-end: 4;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
/* line 381, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item img {
  width: 100%;
  height: auto;
}
/* line 386, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item .episode-play {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  cursor: pointer;
}
/* line 394, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item .episode-play:hover .play-icon {
  opacity: 1;
}
/* line 399, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.episode-item .episode-play .play-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  height: auto;
  margin: auto;
  opacity: 0.5;
}
@media only screen and (max-width: 960px) {
  /* line 399, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .episode-item .episode-play .play-icon {
    opacity: 0.7;
  }
}

/* line 417, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.cta-footer {
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-top: 35px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 960px) {
  /* line 417, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .cta-footer {
    grid-template-columns: repeat(1, auto);
  }
}
/* line 427, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.cta-footer .cta-group {
  margin-left: auto;
}
@media only screen and (max-width: 960px) {
  /* line 432, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .cta-footer .producthunt-badge.secondary-badge {
    margin-bottom: 30px;
    text-align: center;
  }
}
/* line 439, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.cta-footer .producthunt-badge img {
  margin-bottom: -4px;
}

/* line 445, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.authors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 960px) {
  /* line 445, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .authors-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 550px) {
  /* line 445, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .authors-grid {
    max-width: 290px;
    margin: 0 auto;
  }
}
/* line 458, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.authors-grid .author-item {
  text-align: center;
}
@media only screen and (max-width: 960px) {
  /* line 461, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .authors-grid .author-item:first-child {
    margin-bottom: 30px;
  }
}
/* line 468, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.authors-grid .author-img {
  width: 140px;
  height: 140px;
  border-radius: 140px;
  box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
/* line 476, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.authors-grid .twitter-link {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #F56061;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;
}
/* line 485, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.authors-grid .twitter-link img {
  vertical-align: middle;
  margin-right: 3px;
}
/* line 491, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.authors-grid p {
  opacity: 0.8;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 25px;
  max-width: 365px;
  margin: 0 auto;
}

/* line 502, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.modal-backdrop.show {
  opacity: 0.8;
}

/* line 506, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.modal-backdrop {
  background-color: #000000;
}

/* line 510, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.logo-tablet-img {
  max-width: 250px;
  margin-right: 30px;
  display: none;
}
@media only screen and (max-width: 1150px) {
  /* line 510, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .logo-tablet-img {
    display: block;
  }
}

@media only screen and (max-width: 960px) {
  /* line 520, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  a.logo-tablet {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 550px) {
  /* line 520, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  a.logo-tablet {
    margin-bottom: 0;
  }
  /* line 528, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  a.logo-tablet .logo-tablet-img {
    margin-top: 20px;
    display: inline-block;
    width: 210px;
  }
}

/* line 536, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.badge-tablet {
  margin-left: auto;
  align-self: flex-start;
  margin-top: 3px;
  display: none;
}
@media only screen and (max-width: 960px) {
  /* line 536, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .badge-tablet {
    display: block;
  }
}

@media only screen and (max-width: 960px) {
  /* line 547, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .remove-from-tablet {
    display: none;
  }
}

@media only screen and (max-width: 550px) {
  /* line 553, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .remove-from-phone {
    display: none;
  }
}

/* line 559, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.mobile-footer {
  background: #F56061;
  text-align: center;
  display: none;
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;
  text-align: center;
  padding: 30px;
}
/* line 569, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.mobile-footer.thank_you_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 550px) {
  /* line 569, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .mobile-footer.thank_you_footer {
    position: relative;
  }
}
@media only screen and (max-width: 1150px) {
  /* line 559, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .mobile-footer {
    display: block;
  }
}

@media only screen and (max-width: 1150px) {
  /* line 585, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .badge-laptop {
    float: right;
    margin-top: 10px;
  }
}

/* line 592, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.mobile-only {
  display: none;
}
/* line 595, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.mobile-only img {
  width: 100% !important;
}
@media only screen and (max-width: 550px) {
  /* line 592, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .mobile-only {
    display: block;
    width: 100%;
  }
}

/* line 605, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.badge-tablet-thank-you {
  margin-left: auto;
  align-self: flex-start;
  margin-top: 3px;
  display: block;
}
@media only screen and (max-width: 550px) {
  /* line 605, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
  .badge-tablet-thank-you {
    display: none;
  }
}

/* line 616, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link {
  text-decoration: none;
}
/* line 619, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  background-color: #FFFFFF;
  cursor: pointer;
  font-family: Helvetica,Arial,sans-serif;
  position: relative;
  z-index: 3;
}
/* line 629, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge.custom-badge-2 {
  border-radius: 6px;
  margin-top: 20px;
}
/* line 634, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .icon {
  margin: 14px;
  height: 35px;
}
/* line 638, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .icon img {
  width: 35px;
  height: 35px;
}
/* line 644, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .featured-on-ph {
  color: #EA532A;
  font-weight: bold;
}
/* line 648, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .featured-on-ph h5 {
  font-size: 9px;
  text-transform: uppercase;
  margin: 14px 0 0;
}
/* line 654, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .featured-on-ph h4 {
  font-size: 20px;
  margin: 4px 0 0;
}
/* line 660, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .upvotes-ph {
  margin-left: auto;
  margin-right: 14px;
  margin-top: 12px;
  text-align: center;
}
/* line 666, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .upvotes-ph img {
  width: auto;
  height: 11px;
}
/* line 671, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_home.scss */
.custom-badge-link .custom-badge .upvotes-ph .upvotes-number {
  font-family: Helvetica,Arial,sans-serif;
  color: #EA532A;
  font-weight: bold;
  font-size: 13px;
  margin-top: 3px;
}

/* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 30px;
  margin-bottom: 60px;
}
/* line 7, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper img {
  border-radius: 150px;
  max-width: 100%;
}
/* line 12, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper input {
  background: transparent;
  border: none;
  background-color: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  width: 5px;
  color: transparent;
  cursor: default;
}
/* line 25, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper input::-moz-selection {
  background: transparent;
}
.social-wrapper input::selection {
  background: transparent;
}
/* line 30, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper .social-item {
  margin-right: 20px;
  box-shadow: 0 4px 10px 0 rgba(8, 24, 27, 0.2);
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  /* line 30, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
  .social-wrapper .social-item {
    margin-right: 8px;
  }
}
/* line 40, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper .copy-link {
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: #F56061;
  border-radius: 30px;
  padding: 14px 29px;
  border: none;
}
@media only screen and (max-width: 550px) {
  /* line 40, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
  .social-wrapper .copy-link {
    font-size: 15px;
  }
}
/* line 57, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_thank_you.scss */
.social-wrapper .copy-link:hover {
  background: #f23031;
}

/* line 1, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper {
  background-color: #0E5456;
  color: white;
  max-width: 330px;
  margin: 0 auto;
  overflow: hidden;
}
/* line 8, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper a {
  text-align: center;
  color: white;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  margin-top: 15px;
}
/* line 17, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper .field {
  width: 100%;
}
/* line 20, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper .field input {
  width: 100%;
  line-height: 1;
  border-radius: 3px;
  border: none;
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 12px 15px;
  box-sizing: border-box;
}
/* line 31, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper .field #user_remember_me,
.devise-wrapper .field em,
.devise-wrapper .field label {
  display: inline-block;
  font-size: 14px;
}
/* line 38, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper .field #user_remember_me {
  width: 20px;
  margin: 10px 0;
  vertical-align: baseline;
  margin-top: 0;
  margin-left: -3px;
  margin-bottom: 19px;
}
/* line 48, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper h2 {
  text-align: center;
  margin-top: 6rem;
}
/* line 54, /Users/henriquecaiano/apps/producttradeoffs/app/assets/stylesheets/pages/_sessions.scss */
.devise-wrapper .actions input {
  background-color: #0666F6;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.09px;
  text-align: center;
  border-radius: 0 4px 4px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  line-height: 2.2;
}
