/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./webroot_src/scss/main.scss ***!
  \*********************************************************************************************************************/
@charset "UTF-8";
:root {
  --primary-color-light: teal;
  --primary-color-dark: teal;
  --primary-color-light-hover: #66b2b2;
  --primary-color-dark-hover: #66b2b2;
  --secondary-color-light: tomato;
  --secondary-color-dark: tomato;
  --tertiary-color-light: black;
  --tertiary-color-dark: aqua;
  --bg-light: rgb(255, 255, 255);
  --bg-dark: rgb(6, 9, 16);
  --bg2-light: rgb(240, 240, 240);
  --bg2-dark: rgb(25, 25, 25);
  --text-color-light: rgb(0, 0, 0);
  --text-color-dark: rgb(255, 255, 255);
  --shadow-color-light: rgb(4, 4, 4);
  --shadow-color-dark: white;
  --clr-green-light: rgba(0, 175, 0, 0.7);
  --clr-green-dark: rgba(0, 175, 0, 0.6);
  --clr-red-light: rgba(209, 116, 28, 0.7);
  --clr-red-dark: rgba(209, 116, 28, 0.7);
  --clr-blue-light: rgba(67, 67, 216, 0.7);
  --clr-blue-dark: rgba(67, 67, 216, 0.7);
  --clr-yellow-light: rgba(221, 221, 7, 0.7);
  --clr-yellow-dark: rgba(221, 221, 7, 0.7);
  --grey-light: rgb(124, 124, 124);
  --grey-medium-light: rgb(57, 57, 57);
}

button,
.button {
  background-color: var(--primary-color-dark);
  color: white;
  border: none;
  transition: all 0.4s ease-in-out;
}
button:hover,
.button:hover {
  background-color: var(--primary-color-dark-hover);
}
button.primary,
.button.primary {
  background-color: var(--primary-color-dark);
}

.light button,
.light .button {
  background-color: var(--primary-color-light);
}
.light button:hover, .light button.primary,
.light .button:hover,
.light .button.primary {
  background-color: var(--primary-color-light-hover);
}

.cancel-btn {
  background-color: gray !important;
}

a {
  color: var(--tertiary-color-dark);
}
a:hover {
  transition: all 0.4s ease-in-out;
  color: var(--text-color-dark);
}

.light a {
  color: var(--tertiary-color-light);
}
.light a:hover {
  color: var(--text-color-light);
}

.action-button {
  background-color: lightgreen;
  color: black;
  font-weight: bold;
  font-size: 2.5rem;
  padding: 10px 30px;
  border-radius: 15px;
  float: right;
  margin-right: 30px;
  margin-top: 50px;
  box-shadow: inset 0 0 15px var(--shadow-color-dark);
  border: 1px solid gray;
  transition: all 0.6s ease-in-out;
}
.action-button:hover {
  background-color: var(--tertiary-color-dark);
  color: black !important;
}

.light .action-button {
  box-shadow: inset 0 0 15px var(--shadow-color-light);
}
.light .action-button:hover {
  background-color: var(--tertiary-color-light);
}

.add-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background-color: rgb(25, 123, 145);
  color: var(--text-color-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: inset 0 0 15px var(--shadow-color-dark);
  float: right;
}

.light .add-button {
  color: var(--text-color-light);
  box-shadow: inset 0 0 15px var(--shadow-color-light);
}

.refresh-button {
  display: none;
}
.refresh-button.active {
  display: block;
  float: right;
  margin-right: 20px;
  animation: animate_refresh 2s infinite;
}

@keyframes animate_refresh {
  0% {
    box-shadow: 0 0 0 lightgreen;
  }
  50% {
    box-shadow: 0 0 30px lightgreen;
  }
  100% {
    box-shadow: 0 0 0 lightgreen;
  }
}
.close-window-btn {
  background-color: darkred;
  color: var(--text-color-dark);
}
.close-window-btn:hover {
  background-color: red;
  color: white !important;
}

.light .close-window-btn {
  color: var(--text-color-light);
}

.btn-save-close {
  height: 40px;
  background-color: lightgreen;
  color: black;
  padding: 12px 30px;
  border-radius: 5px;
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
}
.btn-save-close:hover {
  background-color: var(--primary-color-dark);
  color: white !important;
}

.light .btn-save-close:hover {
  background-color: var(--primary-color-light);
  color: white !important;
}

.button-up {
  display: none;
}
.button-up.active {
  position: fixed;
  bottom: 50px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--primary-color-dark);
  z-index: 1000;
  box-shadow: 0 0 15px var(--shadow-color-dark);
  cursor: pointer;
}

.light .button-up.active {
  background-color: var(--primary-color-light);
  box-shadow: 0 0 15px var(--shadow-color-light);
}

.button.download-button {
  background-color: var(--primary-color-dark);
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  margin: 15px 0 15px 15px;
}
.button.download-button.without-bg {
  background-color: transparent;
}
.button.download-button:hover {
  box-shadow: 0 0 15px var(--shadow-color-dark), inset 0 0 15px var(--shadow-color-dark);
}
.button.download-button svg {
  fill: white;
  width: 32px;
  height: auto;
  aspect-ratio: 1;
}

.light .button.download-button {
  background-color: var(--primary-color-light);
}
.light .button.download-button:hover {
  box-shadow: 0 0 15px var(--shadow-color-light), inset 0 0 15px var(--shadow-color-light);
}

.small-btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  margin: 5px;
  background-color: var(--bg-dark);
  color: var(--text-color-dark);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  outline: 1px solid var(--primary-color-dark);
}
.small-btn.active {
  background-color: var(--primary-color-dark);
  color: white;
  font-weight: bold;
}
.small-btn:hover {
  background-color: var(--primary-color-dark-hover);
}

.light .small-btn {
  background-color: var(--bg-light);
  color: var(--text-color-light);
}
.light .small-btn.active {
  background-color: var(--primary-color-light);
  color: white;
}
.light .small-btn:hover {
  background-color: var(--primary-color-light-hover);
}

.top-nav-links {
  display: flex;
}
.top-nav-links > a:hover, .top-nav-links > div:hover {
  text-decoration: underline;
}

.menu-trigger {
  margin: 0 20px;
  position: relative;
  display: block;
  cursor: pointer;
}
.menu-trigger.active span {
  color: var(--tertiary-color-dark);
}
.menu-trigger .menu-container {
  display: none;
}
.menu-trigger .menu-container.active {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--bg2-dark);
  padding: 10px;
  width: 210px;
  min-height: 380px;
  z-index: 9999;
  border: 1px solid gray;
  cursor: default;
}
.menu-trigger .menu-container.active a {
  color: var(--primary-color-dark) !important;
  cursor: pointer;
}
.menu-trigger .menu-container.active a:hover {
  color: var(--tertiary-color-dark) !important;
}
.menu-trigger .menu-container.active hr {
  margin: 1rem 0 !important;
}

.light .menu-trigger.active span {
  color: var(--tertiary-color-light);
}
.light .menu-trigger .menu-container.active {
  background-color: var(--bg2-light);
  box-shadow: none;
}
.light .menu-trigger .menu-container.active a {
  color: var(--primary-color-light) !important;
}
.light .menu-trigger .menu-container.active a:hover {
  color: var(--tertiary-color-light) !important;
}
.light .menu-trigger .menu-container hr {
  border-top-color: var(--text-color-light);
}

.menu-leyer {
  display: none;
}
.menu-leyer.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.menu-admin {
  margin: 0;
}

.select2-dropdown, .select2-results__option {
  background-color: rgb(72, 72, 72) !important;
  color: white !important;
  padding: 4px !important;
  margin-bottom: 5px !important;
}

.select2-selection, .select2-selection__rendered {
  background-color: var(--bg2-dark) !important;
  color: var(--text-color-dark) !important;
}

.light .select2-selection, .light .select2-selection__rendered {
  background-color: var(--bg2-light) !important;
  color: var(--text-color-light) !important;
}

.select2-selection {
  min-height: 45px !important;
  margin-bottom: 15px !important;
  padding-top: 5px !important;
}

.select2-search input {
  color: white !important;
}
.select2-search.select2-search--inline textarea {
  min-width: 99% !important;
}

.select2-selection__choice {
  background-color: black !important;
  margin-right: 20px;
}
.select2-selection__choice button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.select2-selection__choice button span {
  transform: translateY(-20%);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px !important;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 51px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #cbcbcb transparent transparent transparent !important;
  border-style: solid;
  border-width: 10px 6px 0 6px !important;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--text-color-dark) !important;
}

.light .select2-container--default .select2-selection--single {
  border: 1px solid var(--text-color-light) !important;
}

.accordion-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: rgb(25, 25, 25);
  padding: 70px 20px;
}
.accordion-wrapper .accordion {
  width: 160px;
  height: 130px;
  background-color: var(--secondary-color-dark);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
}
.accordion-wrapper .accordion-header {
  width: 100%;
  min-height: 80%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.accordion-wrapper .accordion-content {
  display: none;
  width: 100%;
  height: 100%;
  background-color: lightgreen;
  color: black;
  font-weight: bold;
  text-align: center;
  border-radius: 0 0 8px 8px;
}
.accordion-wrapper .accordion-content a {
  color: black;
  min-height: 100%;
}
.accordion-wrapper .accordion-content a:hover {
  color: black !important;
  text-decoration: underline;
}
.accordion-wrapper .active {
  display: block;
}

.light .accordion-wrapper .accordion {
  background-color: var(--secondary-color-light);
}

.search-headline {
  font-weight: 700;
  margin-bottom: 5px;
}

h6 {
  padding-left: 10px;
  font-size: 2rem;
}

.search-row,
.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 0 30px 0;
}
.search-row form,
.search-form form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 10px !important;
}
.search-row form .input,
.search-form form .input {
  width: 80%;
  margin-right: 20px !important;
  background-color: var(--bg-dark) !important;
  border-radius: 8px !important;
}
.search-row .search-form-input-wrapper,
.search-form .search-form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.light .search-row form .input,
.light .search-form form .input {
  background-color: var(--bg-light) !important;
}

#search {
  margin: 0 !important;
  padding: 10px 5px !important;
}

.btn-search {
  margin: 0;
  align-self: flex-start;
}

.cms_version_search_container p {
  cursor: pointer;
}

.cms_version_search .input {
  width: 20% !important;
}
.cms_version_search .input input {
  margin-bottom: 0 !important;
}

.cms_version_search_arrow {
  display: inline-block;
  transition: all 0.3s ease;
}

.cms_version_search_arrow--active {
  transform: rotate(180deg);
}

.btn-search-reset {
  position: absolute;
  right: 5%;
  padding: 0 20px;
  display: none;
  background-color: darkred;
  color: white;
  transition: all 0.3s ease-in-out;
}
.btn-search-reset:hover {
  box-shadow: 0 0 20px darkred;
}

.section-statistic .statistic {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 750px;
  margin: 0 auto;
}
.section-statistic .statistic .statistic-item {
  background-color: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid;
  border-color: darkslategray;
  padding: 20px;
  text-align: center;
  width: 180px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-statistic .statistic .statistic-item.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-statistic .statistic .statistic-item.clickable:hover {
  transform: scale(1.05);
}
.section-statistic .statistic .statistic-item.active {
  background-color: var(--primary-color-dark);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.402);
}
.section-statistic .statistic .statistic-item.active h4 {
  color: black !important;
}
.section-statistic .statistic .statistic-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color-dark);
  margin-bottom: 10px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.section-statistic .statistic .statistic-item p {
  font-size: 3rem;
  color: var(--tertiary-color-dark);
  font-weight: bold;
  margin: 0;
}

.light .section-statistic .statistic .statistic-item {
  background-color: var(--bg-light);
  border-color: var(--primary-color-light);
}
.light .section-statistic .statistic .statistic-item.active {
  background-color: var(--primary-color-light);
}
.light .section-statistic .statistic .statistic-item h4 {
  color: var(--primary-color-light);
}
.light .section-statistic .statistic .statistic-item p {
  color: var(--tertiary-color-light);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-color-dark);
}
body.light {
  background-color: var(--bg-light);
  color: var(--text-color-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color-dark);
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6 {
  color: var(--text-color-light);
}

.top-nav {
  max-width: 140rem;
}

.top-nav-title a {
  color: var(--primary-color-dark);
}

.light .top-nav-title a {
  color: var(--primary-color-light);
}

.container {
  max-width: 140rem;
}

.content {
  background-color: var(--bg2-dark);
}
.content.content-small {
  max-width: 400px;
  margin: 0 auto;
}

.light .content {
  background-color: var(--bg2-light);
}

.user-greeting {
  margin-right: 50px;
  color: var(--tertiary-color-dark);
}

.light .user-greeting {
  color: var(--tertiary-color-light);
}

input {
  color: var(--text-color-dark);
  border: 1px solid var(--text-color-dark);
}

.light input {
  color: var(--text-color-light);
  border: 1px solid var(--text-color-light);
}

select,
textarea {
  color: var(--text-color-dark) !important;
  border: 1px solid var(--text-color-dark) !important;
}

.light select,
.light textarea {
  color: var(--text-color-light) !important;
  border: 1px solid var(--text-color-light) !important;
}

.side-nav-danger {
  color: var(--secondary-color-dark) !important;
}

.light .side-nav-danger {
  color: var(--secondary-color-light) !important;
}

table {
  font-size: 14px;
}

th {
  padding: 1rem;
}
th a {
  color: var(--text-color-dark);
}
th a:hover {
  text-decoration: underline;
}

.light th a {
  color: var(--text-color-light);
}

td {
  color: var(--text-color-dark);
  padding: 1rem;
}
td a:hover {
  text-decoration: underline;
}

.light td {
  color: var(--text-color-light);
}

.cms-versions-select,
.cms-sub-versions-select {
  display: none;
}
.cms-versions-select.active,
.cms-sub-versions-select.active {
  display: block;
}

.side-nav a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.icon-flag {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0 10px 20px;
  border-radius: 5px;
}
.icon-flag.icon-warn {
  background: linear-gradient(90deg, #850f0f 0%, transparent 100%);
}
.icon-flag.icon-check {
  background: linear-gradient(90deg, #0f8536 0%, transparent 100%);
}

.icon-power {
  color: red;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  margin-left: 40px;
}
.icon-power:hover {
  box-shadow: 0 0 25px red;
}

.add_to_db_button {
  background-color: var(--primary-color-dark) !important;
  color: white !important;
  padding: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  border-radius: 5px !important;
  transition: all 0.4s ease-in-out !important;
  margin: 15px 0 !important;
}
.add_to_db_button.without-bg {
  background-color: transparent;
}
.add_to_db_button:hover {
  box-shadow: 0 0 15px var(--shadow-color-dark), inset 0 0 15px var(--shadow-color-dark);
}

.light .add_to_db_button {
  background-color: var(--primary-color-light) !important;
}
.light .add_to_db_button:hover {
  box-shadow: 0 0 15px var(--shadow-color-light), inset 0 0 15px var(--shadow-color-light);
}

aside {
  background-color: var(--bg2-dark);
  border-radius: 0.4rem;
  padding: 20px !important;
}
aside .side-nav-item {
  color: var(--text-color-dark) !important;
}

.light aside {
  background-color: var(--bg2-light);
}
.light aside .side-nav-item {
  color: var(--text-color-light) !important;
}

input[type=checkbox] {
  width: 25px;
  height: 25px;
  appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
input[type=checkbox]:checked {
  background-color: var(--tertiary-color-dark);
  box-shadow: inset 0 0 9px black;
}
input[type=checkbox]:checked::before {
  content: "✔";
  font-size: 1.5rem;
  color: var(--primary-color-dark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.light input[type=checkbox]:checked {
  background-color: var(--tertiary-color-light);
}
.light input[type=checkbox]:checked::before {
  color: var(--primary-color-light);
}

label {
  width: fit-content;
}

.bigger-col {
  min-width: 155px !important;
}

.error-message {
  color: white;
  background-color: darkred;
  margin-bottom: 30px;
}

td.service {
  background-image: linear-gradient(to right, var(--clr-bg, transparent) 0%, var(--clr-bg, transparent) 40%, transparent 100%);
  font-weight: bold;
}
td.service.service-type {
  font-size: 2rem;
}
td.service.service-type-s {
  --clr-bg: teal;
  color: white;
}
td.service.service-type-m {
  --clr-bg: teal;
  color: white;
}
td.service.service-type-l {
  --clr-bg: teal;
  color: white;
}
td.service.service-type-custom {
  --clr-bg: var(--clr-blue-dark);
  font-size: 1.3rem;
  font-weight: normal;
  color: white;
}

.light td.service.service-type-custom {
  --clr-bg: var(--clr-blue-light);
}
.light svg.icon-check {
  filter: invert(1);
}

.horizontal-wrapper {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--bg2-dark);
  color: var(--text-color-dark);
  padding: 5px;
  width: fit-content;
  border-radius: 8px;
  flex-wrap: wrap;
}
.horizontal-wrapper p {
  margin: auto 10px auto 0;
}

.light .horizontal-wrapper {
  background-color: var(--bg2-light);
  color: var(--text-color-light);
}

span.red-text {
  color: #d74949;
  cursor: help;
}
span.update-avialable {
  background-image: url(../img/update.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25em;
  aspect-ratio: 1;
  margin-left: 0.5em;
  vertical-align: text-bottom;
  display: inline-block;
  cursor: help;
}

.highlight-text {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.text-muted {
  color: rgba(211, 211, 211, 0.75);
  font-size: 1.4rem;
}

.project-checkbox {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  margin-bottom: 0 !important;
}

.td-hidden {
  display: none;
}

code {
  color: black;
  background-color: #f8f9fa;
  padding: 2px 4px;
  border-radius: 3px;
}

.send-mail-textarea {
  height: 20rem !important;
}

.flex {
  display: flex;
}

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

.w-100 {
  width: 100%;
}

.table-wrapper {
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 4rem;
}

.light-background {
  background-color: var(--grey-medium-light);
}

.mailing-recipient {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--grey-medium-light);
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.mailing-recipient p {
  margin: 0;
}
.mailing-recipient h4 {
  margin-bottom: 0.5rem;
}

.text-warning {
  color: var(--secondary-color-dark);
  font-weight: bold;
}

.text-success {
  color: var(--clr-green-dark);
  font-weight: bold;
}

.project-checkbox:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.select2-results__option:first-child {
  color: var(--grey-light) !important;
}

.d-block {
  display: block;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 4rem;
}

.my-2 {
  margin: 2rem 0;
}

.mb-4 {
  margin-bottom: 4rem;
}

.gap-1 {
  gap: 1rem;
}

.p-1 {
  padding: 1rem;
}

.align-center {
  align-items: center;
}

.container-y-border {
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  padding: 2rem 0;
  margin: 1rem 0 2rem;
}

.wrapper-gray {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 6px;
}

.th-sortable:hover {
  cursor: pointer;
  text-decoration: underline;
}

.sorting-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}

.no-padding {
  padding: 0 !important;
}

#sendMailBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 2rem;
  margin-top: 15px;
}

.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4e4e4e;
  color: #fff;
  padding: 0px 6px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
  text-transform: none;
}

.tooltip:hover::after {
  opacity: 1;
}

.highlight-background {
  background-color: rgba(255, 255, 255, 0.25);
}

.d-inline {
  display: inline;
}

.inactive-project {
  display: none;
}

#filter-active-projects {
  width: 180px;
}
