@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
.top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  padding: 0 2rem;
  padding-top: 0.5rem;
  -webkit-box-shadow: 0px 3px 12px #eaeaea;
  box-shadow: 0px 3px 12px #eaeaea;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
}

.top-nav ul {
  margin: 0;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

.top-nav ul li {
  display: inline-block;
  list-style-type: none;
  padding: 1rem;
}

.top-nav ul li a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.top-nav ul li a:hover {
  color: #AF322D;
}

.top-nav ul li i {
  padding: 0 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.top-nav ul li:hover i {
  color: #AF322D;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.top-nav ul li.dropdown {
  position: relative;
}

.top-nav ul li.dropdown ul.dropdown-content {
  display: none;
  width: 12rem;
  background-color: #fff;
  padding-left: 0;
  -webkit-box-shadow: 0px 3px 12px #eaeaea;
  box-shadow: 0px 3px 12px #eaeaea;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  overflow: auto;
}

.top-nav ul li.dropdown ul.dropdown-content li {
  padding: 1rem;
}

.top-nav ul li.dropdown ul.dropdown-content li:not(:last-of-type) {
  border-bottom: 1px solid #eaeaea;
}

.top-nav ul li.dropdown:hover > ul.dropdown-content,
.top-nav ul li.dropdown:hover > ul.dropdown-content:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 3.4rem;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .top-nav ul li.dropdown:hover > ul.dropdown-content,
  .top-nav ul li.dropdown:hover > ul.dropdown-content:hover {
    top: 1.4rem;
    right: 0;
  }
}

.top-nav ul li.dropdown:hover > ul.dropdown-content li,
.top-nav ul li.dropdown:hover > ul.dropdown-content:hover li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.top-nav ul li.dropdown:hover > ul.dropdown-content li:hover,
.top-nav ul li.dropdown:hover > ul.dropdown-content:hover li:hover {
  background-color: #af322d;
  color: #fff;
  cursor: pointer;
}

.top-nav ul li.dropdown:hover > ul.dropdown-content li:hover a,
.top-nav ul li.dropdown:hover > ul.dropdown-content:hover li:hover a {
  color: white;
}

.top-nav .logo {
  width: 7rem;
}

.top-nav .logo img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.top-nav .account {
  display: block;
}

.top-nav .mobile .hamburger {
  display: none;
}

.top-nav .mobile {
  display: none;
}

.top-nav .mobile .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #af322d;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .top-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 4rem;
    background-color: #fff;
    z-index: 2;
    width: 100vw;
  }
  .top-nav > ul {
    position: fixed;
    left: -100%;
    top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100vw;
    background-color: #f5f5f5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2rem 1rem;
    -webkit-box-shadow: 0px 4px 4px #eaeaea;
            box-shadow: 0px 4px 4px #eaeaea;
  }
  .top-nav ul.active {
    left: 0;
  }
  .top-nav ul li {
    padding: 0;
    margin-bottom: 10px;
  }
  .top-nav .account {
    position: fixed;
    left: -100%;
    top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    background-color: #f5f5f5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2rem 3rem;
    -webkit-box-shadow: 0px 4px 4px #eaeaea;
    box-shadow: 0px 4px 4px #eaeaea;
  }
  .top-nav .account.active {
    left: 0;
  }
  .top-nav .logo {
    width: 4rem;
  }
  .top-nav .mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .top-nav .mobile .hamburger {
    display: block;
    cursor: pointer;
  }
  .top-nav .mobile .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .top-nav .mobile .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  .top-nav .mobile .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .top-nav ul > li > ul.dropdown-content > li {
    margin-bottom: 0;
  }
}

.side-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 17rem;
  height: 89vh;
  padding: 1rem;
  margin-top: 1rem;
  background-color: #f5f5f5;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-box-shadow: 0px 3px 12px #eaeaea;
  box-shadow: 0px 3px 12px #eaeaea;
}

.side-nav-title {
  position: absolute;
  left: 0;
  top: 2rem;
  background-color: #af322d;
  padding: 1rem;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-box-shadow: 0px 3px 12px #eaeaea;
  box-shadow: 0px 3px 12px #eaeaea;
}

.side-nav-title h1 {
  margin: 0;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.side-nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 90%;
  margin-top: 5.5rem;
  padding: 1rem;
  font-size: 15px;
}

.side-nav-content .side-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
}

/* .side-nav-content .side-nav-item:first-of-type {
  margin-bottom: 0;
}

.side-nav-content .side-nav-item:first-of-type, .side-nav-content .side-nav-item:last-of-type {
  border-bottom: none;
} */
.side-nav-content .side-nav-item:hover,
.side-nav-content .side-nav-item.active {
  color: #af322d;
}

.side-nav-content .side-nav-item .side-nav-icon {
  min-width: 1.5rem;
  color: #4e00ff;
}

.side-nav-content .side-nav-all-db-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 1rem;
  border-radius: 20px;
  -webkit-box-shadow: 0px 3px 12px #eaeaea;
  box-shadow: 0px 3px 12px #eaeaea;
}

.side-nav-content .side-nav-all-db-filter .filter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.5rem 1.2rem;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eaeaea;
  font-size: 13px;
}

.side-nav-content .side-nav-all-db-filter .filter-item:first-of-type {
  position: relative;
  padding-top: 0.8rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.side-nav-content .side-nav-all-db-filter .filter-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0.8rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.side-nav-content .side-nav-all-db-filter .filter-item-orange {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-orange .filter-icon {
  color: #ffb610;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-orange:hover,
.side-nav-content .side-nav-all-db-filter .filter-item-orange.active {
  background-color: #ffb610;
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-orange:hover .filter-icon,
.side-nav-content .side-nav-all-db-filter .filter-item-orange.active .filter-icon {
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-green {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-green .filter-icon {
  color: #27aa00;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-green:hover,
.side-nav-content .side-nav-all-db-filter .filter-item-green.active {
  background-color: #27aa00;
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-green:hover .filter-icon,
.side-nav-content .side-nav-all-db-filter .filter-item-green.active .filter-icon {
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-black {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-black .filter-icon {
  color: #000;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-black:hover,
.side-nav-content .side-nav-all-db-filter .filter-item-black.active {
  background-color: #000;
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-black:hover .filter-icon,
.side-nav-content .side-nav-all-db-filter .filter-item-black.active .filter-icon {
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-grey {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-grey .filter-icon {
  color: #707070;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-grey:hover,
.side-nav-content .side-nav-all-db-filter .filter-item-grey.active {
  background-color: #707070;
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-grey:hover .filter-icon,
.side-nav-content .side-nav-all-db-filter .filter-item-grey.active .filter-icon {
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-paleblue {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-paleblue .filter-icon {
  color: #5da7b4;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-paleblue:hover,
.side-nav-content .side-nav-all-db-filter .filter-item-paleblue.active {
  background-color: #5da7b4;
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-paleblue:hover .filter-icon,
.side-nav-content .side-nav-all-db-filter .filter-item-paleblue.active .filter-icon {
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-pink {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-pink .filter-icon {
  color: #de7979;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.side-nav-content .side-nav-all-db-filter .filter-item-pink:hover,
.side-nav-content .side-nav-all-db-filter .filter-item-pink.active {
  background-color: #de7979;
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item-pink:hover .filter-icon,
.side-nav-content .side-nav-all-db-filter .filter-item-pink.active .filter-icon {
  color: #fff;
}

.side-nav-content .side-nav-all-db-filter .filter-item .filter-icon {
  min-width: 1.5rem;
}

.side-nav-mobile {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .side-nav {
    position: fixed;
    left: -100vw;
    top: 4rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
  }
  .side-nav.active {
    left: 0;
  }
  .side-nav-mobile {
    display: block;
    position: fixed;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    top: 50vh;
    left: 0;
    padding: 1rem;
    font-size: 1rem;
    background-color: #af322d;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: #fff;
    z-index: 1;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .side-nav-mobile i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .side-nav-mobile.active {
    left: 19rem;
  }
  .side-nav-mobile.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.text-green {
  color: #27AA00 !important;
}

.text-lightgreen {
  color: #68C085 !important;
}

.text-purple {
  color: #4E00FF !important;
}

.text-orange {
  color: #FFB610 !important;
}

.text-paleorange {
  color: #E6A954 !important;
}

.text-brown {
  color: #774305 !important;
}

.text-sapin {
  color: #1D5F00 !important;
}

.text-pink {
  color: #DE7979 !important;
}

.text-paleblue {
  color: #5DA7B4 !important;
}

.text-yellow {
  color: #FFE72F !important;
}

.text-red {
  color: #FF4141 !important;
}

.text-darkcyan {
  color: #4AD1BC !important;
}

.text-blue {
  color: #3894FF !important;
}

.text-primary {
  color: #AF322D !important;
}

.text-grey {
  color: #707070 !important;
}

.text-white {
  color: #FFF !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-normal {
  font-weight: normal !important;
}

.title-with-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table {
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
}

table thead tr th {
  border-bottom: 1px solid #EAEAEA;
  border-right: 1px solid #EAEAEA;
  padding: 1rem 0;
  white-space: nowrap;
}

table thead tr th:last-of-type {
  border-right: none;
}

@media screen and (min-width: 992px) and (max-width: 1999px) {
  table {
    width: 100%;
  }
}

table tbody tr:last-of-type {
  border-bottom: none;
}

table tbody tr:last-of-type td {
  border-bottom: none;
}

table tbody tr td {
  padding: 1rem;
  border-bottom: 1px solid #EAEAEA;
}

table thead tr td {
  padding: 1rem;
  border-bottom: 1px solid #EAEAEA;
}

table thead tr td:not(last-of-type) {
  border-right: 1px solid #EAEAEA;
}

table tbody tr td:first-of-type {
  width: 30%;
  //max-width: 30%;
}

table tbody tr td:not(last-of-type) {
  border-right: 1px solid #EAEAEA;
}

table tbody tr td:last-of-type {
  border-right: none;
}

table tbody tr td a {
  padding-right: 1rem;
  color: #67809b;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

table tbody tr td a:hover {
  color: #AF322D;
}

table tbody tr td i:not(:last-of-type) {
  padding-right: 1rem;
}

.border-green {
  border-left: 5px solid #27AA00;
}

.border-lightgreen {
  border-left: 5px solid #68C085;
}

.border-purple {
  border-left: 5px solid #4E00FF;
}

.border-paleblue {
  border-left: 5px solid #5DA7B4;
}

.border-red {
  border-left: 5px solid #FF4141;
}

.border-orange {
  border-left: 5px solid #FFB610;
}

.border-darkcyan {
  border-left: 5px solid #4AD1BC;
}

.border-yellow {
  border-left: 5px solid #FFE72F;
}

.border-blue {
  border-left: 5px solid #3894FF;
}

.border-pink {
  border-left: 5px solid #DE7979;
}

.border-sapin {
  border-left: 5px solid #1D5F00;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  table {
    display: block;
    width: 100%;
  }
}

.badge {
  padding: 3px 10px;
  color: white;
  border-radius: 10px;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.badge.badge-paleblue {
  background-color: #5DA7B4;
}

.badge.badge-purple {
  background-color: #4E00FF;
}

.badge.badge-orange {
  background-color: #FFB610;
}

.badge.badge-green {
  background-color: #27AA00;
}

.badge.badge-primary {
  background-color: #AF322D;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .badge {
    white-space: nowrap;
  }
}

.bg-primary {
  background-color: #AF322D !important;
}

.bg-lightgreen {
  background-color: #68C085 !important;
}

.bg-purple {
  background-color: #4E00FF !important;
}

.bg-yellow {
  background-color: #FFE72F !important;
}

.bg-pink {
  background-color: #DE7979 !important;
}

.bg-sapin {
  background-color: #1D5F00 !important;
}

.bg-blue {
  background-color: #3894FF !important;
}

.bg-orange {
  background-color: #FFB610 !important;
}

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

.bg-darkcyan {
  background-color: #4AD1BC !important;
}

.bg-green {
  background-color: #27AA00 !important;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form p {
  margin-bottom: 1.5rem;
}

form p.text-bold {
  cursor: pointer;
}

form .form-group {
  display: block;
  margin-bottom: 1rem;
}

form .form-group:last-of-type {
  margin-bottom: 2rem;
}

form .form-range {
  font-family: "Open Sans";
}

form .form-range label {
  display: inline-block;
}

form .form-range input[type="text"] {
  display: inline-block;
  border: none;
  background-color: transparent;
  font-weight: bold;
}

form .form-range .slider {
  margin-top: 1rem;
}

form button[type="submit"], form button {
  margin: 1rem 0;
  padding: 0.8rem 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 10px;
  color: #FFF;
  background-color: #AF322D;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
}

form label {
  display: inline-block;
  min-width: 3rem;
  font-size: 12px;
}

form input[type="number"] {
  width: 50%;
  border: 1px solid lightgray;
  border-radius: 5px;
}

form select {
  background-color: transparent;
  border: 1px solid lightgray;
  padding: 0.5rem;
  border-radius: 10px;
}

/* Accordion styles */
.tabs {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tabs .tab {
  display: none;
  width: 100%;
  color: white;
  overflow: hidden;
}

.tabs .tab input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tabs .tab .form-group:last-of-type {
  margin-bottom: 0;
}

.tabs .tab-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
  /* Icon */
}

.tabs .tab-label:hover {
  background: #1a252f;
}

.tabs .tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.tabs .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.tabs .tab-content h4 {
  margin-top: 0;
}

.tabs .tab-content input[type="checkbox"] {
  position: static;
  opacity: 1;
  z-index: 1;
}

.tabs .tab-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}

.tabs .tab-close:hover {
  background: #1a252f;
}

input:checked + .tab-label {
  background: #1a252f;
}

input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

input:checked ~ .tab-content {
  max-height: 150vh;
  padding: 1em;
}

button, .btn {
  margin-bottom: 0.5rem !important;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  background-color: #FFF;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
  color: #AF322D;
  font-weight: bold;
  font-size: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

button:hover, .btn:hover {
  -webkit-box-shadow: 0px 3px 15px #B9D3FF;
          box-shadow: 0px 3px 15px #B9D3FF;
}

button.btn-primary, .btn.btn-primary {
  background-color: #AF322D;
  color: #FFF;
}

button.btn-green, .btn.btn-green {
  background-color: #27AA00;
  color: #FFF;
}

button.btn-paleblue, .btn.btn-paleblue {
  background-color: #5DA7B4;
  color: #FFF;
}

button.btn-red, .btn.btn-red {
  background-color: #FF4141;
  color: #FFF;
}

button.btn-purple, .btn.btn-purple {
  background-color: #4E00FF;
  color: #FFF;
}

button.btn-yellow, .btn.btn-yellow {
  background-color: #FFE72F;
  color: #FFF;
}

button.btn-pink, .btn.btn-pink {
  background-color: #DE7979;
  color: #FFF;
}

button.btn-toggle-modal-tutorial, .btn.btn-toggle-modal-tutorial {
  position: fixed;
  right: 2%;
  bottom: 1rem;
  z-index: 900;
  font-size: 1.5rem;
  padding: 0.4rem 0.7rem;
  background-color: #AF322D;
  color: #FFF;
  -webkit-box-shadow: 2px 3px 10px #B9D3FF;
          box-shadow: 2px 3px 10px #B9D3FF;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  z-index: 9999;
}

.modal-bg {
  position: fixed;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  -webkit-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);
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
  height: 80%;
  /*overflow-y: auto;
  overflow-x: hidden;*/
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal.modal-tutorial {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.modal.modal-tutorial .modal-body .tutorial:not(:last-child) {
  margin-bottom: 2rem;
}

.modal.modal-tutorial .modal-body .tutorial-title {
  font-weight: bold;
  color: #AF322D;
  font-size: 1.3rem;
}

.modal.modal-tutorial .modal-body .tutorial-body .tutorial-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.modal.modal-tutorial .modal-body .tutorial-body .tutorial-image img {
  width: 40%;
  margin: 1rem 0;
}

.modal.modal-tutorial .modal-body .tutorial-body .tutorial-image div {
  width: 55%;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  height: 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;
  overflow-y: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1.5rem;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal.show .modal-dialog .max-height {
  height: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.pagination > button {
  background-color: #AF322D;
  color: #FFF;
  margin: 0 0.5rem;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100vw;
  height: 345px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 150%;
  padding: 3rem;
  margin-top: 50px;
  background-color: #EAEAEA;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .footer {
    width: auto;
    position: static;
    height: auto;
    padding: 3rem 0;
  }
}

.block {
  width: 30vw;
  padding: 3rem;
  border-radius: 20px;
}

.block-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-body .block-title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

.block-body .block-content {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
}

.block-body .block-content h3 {
  margin-top: 0;
}

.block-body .block-content a {
  color: #AF322D;
}

@media screen and (min-width: 0) and (max-width: 1199px) {
  .block {
    width: 60vw;
    padding: 1rem;
  }
}

.card {
  position: relative;
  width: 85%;
  height: 100%;
  margin: 3rem 5rem 0 5rem;
  background-color: #FFF;
  border-radius: 20px;
}

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-header form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.card-header form p {
  margin-right: 1rem;
}

.card-header form input[type='text'] {
  padding: 0.5rem;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
}

.card-header form select {
  background-color: transparent;
  border: 1px solid #EAEAEA;
  padding: 0.5rem;
  border-radius: 10px;
}

.card-header .badge {
  padding: 0.5rem 1rem;
  color: #AF322D;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 1rem;
  border-radius: 20px;
  border: 1px solid #AF322D;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-header .badge.selected {
  padding: 0.5rem 1rem;
  background-color: #AF322D;
  color: #FFF;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 1rem;
  border-radius: 20px;
}

.card-header .badge:hover {
  color: #FFF;
  background-color: #AF322D;
  cursor: pointer;
}

.card-header #filters-container {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.card-header #filters-container button {
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

@media screen and (min-width: 992px) and (max-width: 1999px) {
  .card-header #filters-container {
    width: 88%;
  }
}

.card-header .filters {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.card-header .filters.scrollable {
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.card-header .filters.scrollable::-webkit-scrollbar {
  display: none;
}

.card-header .filters:not(.scrollable) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.card-header .filters > .badge {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: 1rem;
  white-space: nowrap;
}

.card .search-bar {
  position: relative;
  width: 50%;
}

.card .search-bar input[type="search"] {
  padding: 0.8rem 1rem;
  font-size: 15px;
  border-radius: 100px;
  border: none;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
  width: 100%;
}

.card .search-bar input[type="search"]:focus {
  outline: none;
  -webkit-box-shadow: 2px 3px 10px #B9D3FF;
          box-shadow: 2px 3px 10px #B9D3FF;
}

.card .search-bar button.search-btn, .card .search-bar a.search-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.8rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 20px;
  color: #AF322D;
  font-weight: bold;
  font-size: 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

.card-body {
  width: 100%;
}

.card-body .card-info {
  padding: 1rem;
  background-color: #d2dcf2;
  border-radius: 10px;
  color: #26499b
}

.card-body .card-title h2 {
  font-weight: bold;
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  .card-body .card-title h2 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1600px) and (max-width: 2499px) {
  .card-body .card-title h2 {
    font-size: 2rem;
  }
}

.card-body .card-title h2 span {
  padding-left: 1rem;
}

.card-body .card-description {
  color: #707070;
}

.card-body .card-content .partial-wrapper {
  width: 100%;
}

.card-body .card-content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-body .card-content-title {
  min-width: 10rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #AF322D;
  padding: 1rem;
  margin: 2rem 0;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
  -webkit-transform: translateX(-3rem);
          transform: translateX(-3rem);
}

.card-body .card-content-title h3 {
  margin: 0;
  font-family: "Montserrat";
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFF;
}

.card-body .card-content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card-body .card-content-flex div.inline-block {
  display: inline-block;
}

.card-body .card-content-flex div.grow {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.card-body .card-content-flex div.shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.card-body .card-content-flex div.shrink-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.card-body .card-content-flex div.flex {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.card-body .card-content-flex div.flex-50 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.card-body .card-content-flex.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-body .card-content-flex.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-body .card-content-flex .search-bar {
  width: 90%;
}

.card-body .list-blocks {
  max-height: 50vh;
  overflow-y: auto;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 20px;
}

.card-body .list-blocks li {
  list-style-type: none;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
}

.card-body .list-blocks li:not(:last-of-type) {
  margin-bottom: 1rem;
}

.card-body .list-blocks li:hover {
  -webkit-box-shadow: 2px 3px 10px #B9D3FF;
          box-shadow: 2px 3px 10px #B9D3FF;
  cursor: pointer;
}

.card-body .list-blocks li a {
  text-decoration: none;
  color: #707070;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-body .list-blocks li a:hover {
  color: #AF322D;
}

.card-body .list-blocks-backgrounded {
  background-color: #F2F7FF;
}

.card-body .list-blocks-backgrounded li {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.card-body .list-blocks .recapElement i {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .card {
    width: 90%;
    margin: 0;
    margin-top: 2rem !important;
    padding-left: 2.5rem;
  }
  .card-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-header #filters-container {
    margin-top: 1rem;
  }
  .card-header #filters-container .filters > .badge {
    font-size: 12px;
  }
  .card-header #filters-container #forward {
    margin-top: 0;
    padding-right: 0;
  }
  .card-header #filters-container #back {
    padding-left: 0;
  }
  .card-header .filters {
    margin-top: 1rem;
  }
  .card-header .filters:not(.scrollable) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-header .filters > .badge:first-of-type {
    margin-left: 0;
  }
  .card .search-bar {
    width: 100%;
    margin-bottom: 1rem;
  }
  .card .search-bar button.search-btn, .card .search-bar a.search-btn {
    margin-top: 0;
  }
}

.card-with-sidebar {
  width: 90%;
}

.card-with-sidebar .card-header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-with-sidebar .card-body table {
  display: block;
  overflow-x: auto;
  width: 100%;
}

.card-with-sidebar .card-sidebar {
  position: fixed;
  right: -100vw;
  top: 4rem;
  width: 15rem;
  max-width: 18rem;
  padding: 1rem 2rem;
  background-color: #F2F7FF;
  border-radius: 5px;
  -webkit-box-shadow: -6px 6px 30px rgba(185, 211, 255, 0.5);
          box-shadow: -6px 6px 30px rgba(185, 211, 255, 0.5);
  overflow-y: auto;
  max-height: 80vh;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-with-sidebar .card-sidebar.active {
  right: 0;
}

.card-with-sidebar .card-sidebar ul {
  padding-left: 0;
}

.card-with-sidebar .card-sidebar ul li {
  list-style-type: none;
  margin-bottom: 0.5rem;
}

.card-with-sidebar .card-sidebar ul li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}

.card-with-sidebar .card-sidebar-title h3 {
  font-size: 1.5rem;
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  .card-with-sidebar .card-sidebar-title h3 {
    font-size: 1rem;
  }
}

.card-with-sidebar .card-sidebar-icon {
  padding-right: 1rem;
}

.sidebar-mobile {
  display: block;
  position: fixed;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: 2.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: 20vh;
  right: 0;
  padding: 1rem;
  font-size: 1rem;
  background-color: #AF322D;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #FFF;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

.sidebar-mobile.active {
  right: 19rem;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .card-with-sidebar .card-sidebar {
    padding: 1rem;
  }
  .sidebar-mobile.active {
    right: 17rem;
  }
}

.card-with-sidebar-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-with-sidebar-blocks .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-top: 3rem;
}

.card-with-sidebar-blocks .card-content table {
  display: block;
  width: 100%;
  height: 650px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.card-with-sidebar-blocks .card-content table tbody {
  display: table;
  width: 100%;
  height: 100%;
}

.card-with-sidebar-blocks .card-sidebar-blocks {
  position: relative;
  width: 18rem;
  height: 620px;
  margin-left: 1rem;
  padding: 1rem 2rem;
  background-color: #F2F7FF;
  border-radius: 5px;
  -webkit-box-shadow: -6px 6px 30px rgba(185, 211, 255, 0.5);
          box-shadow: -6px 6px 30px rgba(185, 211, 255, 0.5);
  overflow-y: auto;
}

@media screen and (min-width: 1600px) and (max-width: 2499px) {
  .card-with-sidebar-blocks .card-sidebar-blocks {
    width: 22rem;
  }
}

.card-with-sidebar-blocks .card-sidebar-blocks ul {
  padding-left: 0;
}

.card-with-sidebar-blocks .card-sidebar-blocks ul a {
  color: #707070;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  .card-with-sidebar-blocks .card-sidebar-blocks ul a {
    font-size: 12px;
  }
}

.card-with-sidebar-blocks .card-sidebar-blocks ul a li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background-color: #FFF;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-sidebar-blocks .card-sidebar-blocks ul a li span {
  font-weight: bold;
}

.card-with-sidebar-blocks .card-sidebar-blocks ul a li:hover {
  -webkit-box-shadow: 2px 2px 15px #B9D3FF;
          box-shadow: 2px 2px 15px #B9D3FF;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .card-with-sidebar-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-with-sidebar-blocks .card-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-with-sidebar-blocks .card-content table {
    width: 100%;
  }
  .card-with-sidebar-blocks .card-sidebar-blocks {
    width: 100%;
    margin-left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .card-with-sidebar-blocks .card-sidebar-blocks ul a li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.card-with-tab {
  width: 90%;
  margin: 7rem 5rem 0 5rem;
  border-top-left-radius: 0;
  padding: 3rem;
  -webkit-box-shadow: 0px 3px 12px #EAEAEA;
          box-shadow: 0px 3px 12px #EAEAEA;
}

.card-with-tab .card-body table {
  display: block;
  overflow-x: auto;
}

.card-with-tab .card-body table tbody {
  display: table;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 0) and (max-width: 1199px) {
  .card-with-tab .card-body table tbody tr td > button {
    padding: 0.5rem;
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 1600px) and (max-width: 1999px) {
  .card-with-tab {
    margin: 7rem 5rem 0 2rem;
  }
}

.card-with-tab .card-top-tab {
  position: absolute;
  top: -4.3rem;
  left: 0;
  overflow-x: auto;
  width: 95%;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .card-with-tab .card-top-tab {
    top: -5.5rem;
  }
}

.card-with-tab .card-top-tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}

.card-with-tab .card-top-tab ul a {
  padding: 1rem 2rem;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: bold;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card-with-tab .card-top-tab-item-green {
  color: #27AA00;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-green:hover, .card-with-tab .card-top-tab-item-green.active {
  background-color: #27AA00;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-orange {
  color: #FFB610;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-orange:hover, .card-with-tab .card-top-tab-item-orange.active {
  background-color: #FFB610;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-red {
  color: #FF4141;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-red:hover, .card-with-tab .card-top-tab-item-red.active {
  background-color: #FF4141;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-purple {
  color: #4E00FF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-purple:hover, .card-with-tab .card-top-tab-item-purple.active {
  background-color: #4E00FF;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-blue {
  color: #3894FF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-blue:hover, .card-with-tab .card-top-tab-item-blue.active {
  background-color: #3894FF;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-paleblue {
  color: #5DA7B4;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-paleblue:hover, .card-with-tab .card-top-tab-item-paleblue.active {
  background-color: #5DA7B4;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-darkcyan {
  color: #4AD1BC;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-darkcyan:hover, .card-with-tab .card-top-tab-item-darkcyan.active {
  background-color: #4AD1BC;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-pink {
  color: #DE7979;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-pink:hover, .card-with-tab .card-top-tab-item-pink.active {
  background-color: #DE7979;
  color: #FFF;
}

.card-with-tab .card-top-tab-item-primary {
  color: #AF322D;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-with-tab .card-top-tab-item-primary:hover, .card-with-tab .card-top-tab-item-primary.active {
  background-color: #AF322D;
  color: #FFF;
}

.card-with-tab .card-top-tab-icon {
  padding-right: 1rem;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  .card-with-tab {
    padding: 1rem;
    margin: 0;
    margin-top: 6rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 0;
  }
  .card-with-tab .card-top-tab {
    right: 0;
    left: auto;
    top: -4.3rem;
  }
  .card-with-tab .card-top-tab ul a {
    padding: 1rem 1.5rem;
  }
  .card-with-tab .card-top-tab ul a span:last-of-type {
    display: none;
  }
  .card-with-tab .card-top-tab-icon {
    padding-right: 0 !important;
  }
}

@media screen and (min-width: 0) and (max-width: 575px) {
  .card-with-tab {
    width: 100%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .card-with-tab {
    width: 70%;
  }
}

html {
  overflow-x: hidden;
  height: 100%;
}

html body {
  position: relative;
  min-height: 100%;
  margin: 0;
  font-family: "Open Sans";
}

html body .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html body .flex-container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  html body .flex-container .content {
    width: 88%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  html body .flex-container .content {
    width: 85%;
  }
}

html body .flex-container .content > h1 {
  margin-top: 3rem;
  margin-left: 5rem;
  font-weight: bold;
  color: #707070;
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  html body .flex-container .content > h1 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 0) and (max-width: 991px) {
  html body .flex-container .content > h1 {
    font-size: 1.5rem;
    margin-left: 0;
    margin-bottom: 3rem;
    padding-left: 2.5rem;
  }
}

html body .flex-container .content > h2 {
  margin-left: 5rem;
  margin-bottom: 1rem;
  color: #707070;
  font-weight: normal;
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  html body .flex-container .content > h2 {
    font-size: 1rem;
  }
}

@media screen and (min-width: 0) and (max-width: 991px) {
  html body .flex-container .content > h2 {
    font-size: 1rem;
    margin-left: 0;
    padding-right: 1rem;
  }
}

html body .charts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

html body .chart-container p {
  font-weight: bold;
}

html body .chart-container-90 {
  margin-top: 3rem;
  width: 90%;
  padding: 2%;
  border: solid;
  border-radius: 5px;
}

html body .chart-container-50 {
  margin-top: 3rem;
  width: 45%;
  padding: 2%;
  border: solid;
  border-radius: 5px;
}

html body .chart-container-30 {
  margin-top: 3rem;
  width: 25%;
  padding: 2%;
  border: solid;
  border-radius: 5px;
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  html body .chart-container-30 {
    margin-top: 0;
    width: 45%;
    padding: 2%;
    border: solid;
    border-radius: 5px;
  }
}

html body .chart-container-50 {
  margin-top: 3rem;
  width: 45%;
  padding: 2%;
  border: solid;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  html body #vmap {
    width: 100% !important;
  }
  html body .chart-container-30 {
    width: 97%;
  }
  html body .chart-container-50 {
    width: 97%;
  }
}

#vmap {
  margin: 3rem auto;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  html body #vmap {
    width: 100% !important;
  }
  html body .chart-container-30 {
    width: 97%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
  html body {
    margin: 0 auto;
  }
}

@media screen and (min-width: 0) and (max-width: 1199px) {
  .card-container {
    margin-left: 0 !important;
  }
  .card-container .card {
    max-width: 100% !important;
  }
  .card-container .card-header {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .user-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .user {
    margin-bottom: 1rem;
  }
  .subscriptions-container {
    margin-left: 0 !important;
  }
  .subscriptions-container .subscription {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: auto !important;
  }
  .favs li > a {
    word-wrap: break-word;
    white-space: pre-wrap;
  }
  .tab-container {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 0) and (max-width: 1199px) {
  .legal-page p {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .legal-page ul {
    margin-left: 2rem;
  }
}

#entrepriseId {
  width: 30%;
}

@media screen and (min-width: 0) and (max-width: 991px) {
  #entrepriseId {
    width: 100%;
  }
}

.container-flex-space-arround {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.link-blue-red-hover {
  color: #67809b;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.link-blue-red-hover:hover {
  color: #c1443e;
  -webkit-text-decoration: solid;
          text-decoration: solid;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

.text-organisation-patronal {
  width: 50%;
  text-align: center;
  margin-top: 20px;
}

hr {
  /* flex-grow: 1; */
  width: 75%;
  /* or this */
}

.div-info-salaire {
  width: 600px;
  margin-right: 2%;
}

@media screen and (min-width: 0) and (max-width: 1199px) {
  .div-info-salaire {
    width: 500px;
  }
}

.div-info-age {
  width: 80%;
}

.table-head-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  text-align: center;
}

.table-header {
  font-weight: bold;
  text-align: center;
}

.table-header td {
  border: 1px solid #eaeaea;
  border-top: none;
}

.table-header td:first-child {
  border-left: none;
}

.table-header td:last-child {
  border-right: none;
}

#organisation_employeur #chart-table-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#chart-table-container #chart-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0px;
}

#chart-table-container #table-container {
  width: 50%;
  padding: 15px;
}

.actualite-card {
  background-color: #fff;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.actualite-card-date {
  margin-top: 5px;
}

.gps-title {
  text-align: center;
  border-bottom: solid 1.25px rgba(39, 39, 39, 0.35);
  padding-bottom: 10px;
}

.gps-table {
  width: 100%;
}

/* HOME PAGE */
.home-company-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#boutique-product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#boutique-product-list .card {
  width: 300px;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 25px;
}

#boutique-product-list .card .crop {
  height: 300px;
  overflow: hidden;
  position: relative;
  display: block;
}

#boutique-product-list .card .img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

#boutique-product-list .card .btn {
  margin: 0px;
}

@media screen and (max-width: 991px) {
  #organisation_employeur #chart-table-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #chart-table-container #table-container {
    width: 100%;
  }
}

.text-color-principal {
  color: #af322d;
}

.big-span {
  font-weight: bold;
  font-size: 1.5rem;
}

.medium-span {
  font-weight: bold;
}

.flex {
  display: flex;
}

.justify-around {
  justify-content: space-around;
}
