body {
  margin: 24px;
}

.time {
  display: block;
  padding: 7px 24px;
  background-color: var(--light-background);
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  text-align: left;
  border-radius: 24px;
}

.input,
.box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--gray);
}

.input.wide {
  grid-column: 1 / -1;
}

.select2-container {
  width: auto !important;
  flex: 1;
  pointer-events: auto;
}

.select2-dropdown {
  z-index: 10000;
}

.input input,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple,
.select2-container--default .select2-search--dropdown .select2-search__field {
  width: 100%;
  padding: 8px 46px 8px 12px;
  background-color: var(--white);
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--black);
  border: 1px solid transparent;
  outline: none;
  min-height: 36px;
  border-radius: 8px;
  pointer-events: auto;
}

.select2-container .select2-selection--multiple  {
  padding: 4px 46px 4px 12px;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--black);
  background-color: var(--white);
  margin: 0;
}
.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove span {
  font-size: 16px;
  line-height: 20.11px;
  color: var(--black);
}
.input input {
  padding: 8px 12px 8px 12px;
}

.input input[type="date"] {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 100px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: var(--black);

}

textarea {
  width: 100%;
  flex: 1;
  border-radius: 24px;
  padding: 8px 12px;
  resize: none;
  background: var(--white);
  color: var(--black);
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  outline: none;
  border: none;
  margin: 0;
}

.input input::placeholder,
.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--multiple .select2-selection__placeholder,
textarea::placeholder {
  color: var(--gray);
  line-height: 20.11px;
}

.input input:focus {
  border-color: var(--primary-color);
}

.input .error {
  font-family: 'Source Sans 3';
  font-size: 12px;
  font-weight: 400;
  line-height: 15.08px;
  color: var(--red);
  display: inline-block;
  margin-left: 12px;
}

input.invalid {
  border-color: var(--red);
}

.select2-container--default .select2-selection--single.invalid,
.select2-container--default .select2-selection--multiple.invalid {
  border-color: var(--red);
}

.input.domain {
  position: relative
}

.input.domain input {
  padding-right: 128px;
}

.input.domain .domain-name {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--black);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: var(--black);
  margin-top: 6px;
  display: block;
  background: url('../images/icons/arrow-down.svg') no-repeat;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  width: 20px;
  height: 20px;
  background-image: url('../images/icons/arrow-down.svg');
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  right: 12px;
  transition: all .1s linear;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-50%) rotate(-180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-dropdown--below {
  border-radius: 24px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: var(--primary-color);
  border-top: none;
  overflow: hidden;

}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-dropdown--above {
  border-radius: 24px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--primary-color);
  border-bottom: none;
  overflow: hidden;
}

.select2-container--default.select2-container--multiple .select2-selection--multiple {
  min-height: 36px !important;
  height: auto !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 4px 12px;
}

.select2-container--default.select2-container--multiple .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.select2-container--default.select2-container--multiple .select2-selection--multiple .select2-selection__choice {
  margin: 4px;
}

.select2-search--dropdown {
  padding: 0;
  position: relative;
}

.select2-container--default .select2-search--dropdown::before {
  content: url('../images/icons/search.svg');
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
}

.select2-dropdown--above {
  padding: 16px 12px 8px;
}

.select2-dropdown--below {
  padding: 8px 12px 16px;
}

.select2-dropdown--above,
.select2-dropdown--below {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.select2-dropdown--above::before,
.select2-dropdown--below::before {
  content: '';
  width: calc(100% - 24px);
  left: 12px;
  border-top: 1px solid var(--primary-color);
  position: absolute;
}

.select2-dropdown--above::before {
  bottom: 0;
}

.select2-dropdown--below::before {
  top: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--gray-light2);
  padding-left: 40px;
}

.select2-results__option {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--gray);
  border-radius: 100px;
  padding: 8px 12px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: var(--opacity-primary-color);
  color: var(--gray);
}

.select2-container--default .select2-results>.select2-results__options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 600;
  line-height: 17.6px;
  color: var(--gray);
}

.pagination .select2-container {
  flex: 0;
}

.pagination ul {
  display: flex;
  gap: 8px;
}

.pagination .active {
    background-color: var(--primary-color);
    color: var(--white);
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-row>span {
  display: inline-block;
  width: 100%;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--gray);
  display: inline-block;
  margin-bottom: -8px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  height: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 28px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
}

.checkbox-container input:checked~.checkmark {
  background-color: var(--primary-color);
}

.checkbox-container input[type="radio"]:checked~.checkmark {
  background-color: var(--white);
}

.checkbox-container input[type="radio"]~.checkmark {
  border-radius: 50%;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  content: url('../images/icons/checkbox.svg');
  position: absolute;
  left: 2px;
  top: 1px;
}

.checkbox-container input[type="radio"]:checked~.checkmark:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 3px;
  left: 3px;
}

.checkbox-title {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--gray);
}

.success-message,
.pending-access,
.notifications {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 3px 9px 21px 0px rgba(171, 171, 171, 0.1), 14px 35px 37px 0px rgba(171, 171, 171, 0.09), 31px 78px 50px 0px rgba(171, 171, 171, 0.05), 56px 139px 60px 0px rgba(171, 171, 171, 0.01), 87px 217px 65px 0px rgba(171, 171, 171, 0);
  position: absolute;
  right: 24px;
  top: 24px;
  width: 408px;
  padding: 20px;
  border-radius: 20px;
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 1000;
}

.success-message {
  position: static;
}

.success-messages-container {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pending-access {
  width: 278px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  right: 12px;
  top: 12px;
}

.pending-access__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.pending-access__buttons button {
  flex: 1;
}

.pending-access__title {
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 500;
  line-height: 23.4px;
  color: var(--black);
}

.pending-access__info .email {
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  color: var(--gray);
  margin-bottom: 4px;
}

.pending-access__info p {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: var(--black);
}

.success-message.show,
.pending-access.show {
  display: flex;
}

.success-message__icon {
  border-radius: 50%;
  min-width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message p {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: var(--black);
}

.content .success-message {
  right: 8px;
  top: 8px;
}

.content .success-message .close-btn {
  align-self: flex-start;
}

.table-wrapper {
  overflow-x: auto;
  min-height: 300px;
  /* padding-top: 150px;
  margin-top: -150px; */
}

.horizontal-scroll::-webkit-scrollbar,
.popup-content::-webkit-scrollbar {
  height: 20px;
}

/* Track */
.horizontal-scroll::-webkit-scrollbar-track,
.popup-content::-webkit-scrollbar-track {
  background-color: var(--scroll-track);
  border-radius: 10px;
}

/* Handle */
.horizontal-scroll::-webkit-scrollbar-thumb,
.popup-content::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 10px;
  height: 8px;
  border: 6px solid var(--scroll-track);
  cursor: pointer;
}

.off-scroll {
  scrollbar-width: none;
  border-radius: 24px;
}

.off-scroll::-webkit-scrollbar {
  display: none;
}

.grey-block {
  padding: 16px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--light-background);
}

.grey-block .select2-container {
  flex: 0;
}

.col-2 {
  display: flex;
  gap: 12px
}

.col-2 .grey-block {
  width: calc(50% - 6px);
}

.page-title {
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
}

.gray-title {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--gray);
  margin-bottom: 8px;
}

.filter,
.filter form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.filter .nav__search {
  flex-wrap: nowrap;
}

.filter .select2-container--default .select2-selection--single {
  min-width: 206px !important;
}

.left {
  margin-left: auto;
}

.container {
  display: flex;
  gap: 12px;
  min-height: calc(100vh - 48px);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

nav {
  background-color: var(--light-background);
  border-radius: 100px;
  display: flex;
  padding: 12px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.nav__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

main {
  max-width: calc(100% - 300px);
  width: 100%;
}

.big-sidebar main {
  max-width: calc(100% - 422px);
}

.sidebar {
  width: 288px;
  background-color: var(--light-background);
  padding: 12px;
  max-width: 100%;
  border-radius: 12px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 24px;
}

.big-sidebar .sidebar {
  width: 410px;
}

.sidebar>svg {
  min-height: 40px;
}

.sidebar__title {
  margin-top: 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  color: var(--black);
  margin-bottom: 24px;
}

.sidebar__back-button {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  color: var(--green);
  margin-bottom: 12px;
}

.sidebar__content {
  height: 100%;
  overflow-y: auto;
  border-radius: 0px;
  position: relative;
}

.summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary__title {
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
  color: var(--black);
  margin-bottom: 8px;
}

.status__info,
.status__info li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status__info li {
  gap: 4px;
}

.status__info li {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 600;
  line-height: 20.11px;
  text-align: left;
  color: var(--black);
}

.status__info li span:last-child {
  font-weight: 400;
}

.menu {
  margin-bottom: -151px;
}

.shadow-top,
.shadow-bottom {
  position: sticky;
  left: 0;
  right: 0;
  height: 151px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.shadow-top {
  top: 0;
  margin-top: -151px;
  background: linear-gradient(180deg, #F6F6F6 0%, rgba(246, 246, 246, 0) 100%);
}

.shadow-bottom {
  bottom: 0;
  background: linear-gradient(0deg, #F6F6F6 0%, rgba(246, 246, 246, 0) 100%);
}

.sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.sidebar__footer a, .sidebar__footer button {
  font-family: 'Source Sans 3';
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.profile__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile__title .name {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--black);
}

.profile__title img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.nav__search {
  height: 36px;
  border-radius: 100px;
  background-color: var(--white);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__search input {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--black);
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  width: 100%;
}

.nav__search input::placeholder {
  color: var(--gray);
}

table {
  width: 100%;
  min-width: 1456px;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 24px 24px 0 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.full table {
  min-width: 500px;
  margin-bottom: 0;
  border-radius: 24px;
}

thead {
  background-color: var(--light-background);
}

.grey-block thead {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

th,
td {
  padding: 16px 32px;
}

th:first-child,
td:first-child {
  padding-left: 24px;
}

th:last-child,
td:last-child {
  padding-right: 24px;
}

th {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  color: var(--gray);
  white-space: nowrap;
}

td {
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  color: var(--black);
  vertical-align: baseline;
}

td a {
  color: var(--blue);
  text-decoration: underline;
}

td a:hover {
  text-decoration: none;
}

td ul {
  padding-left: 26px;
  list-style: inherit;
}

td ul li {
  list-style: inherit;
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  color: var(--black);

}

tbody tr {
  border-bottom: 1px solid var(--border);
}

.severity {
  text-align: center;
  width: 31px;
  height: 24px;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  background-color: var(--green-light);
  color: var(--green);
}

.severity-1 {
  background-color: var(--red-light);
  color: var(--red);
}

.severity-2 {
    background-color: var(--red-light);
    color: var(--red);
}

.severity-3 {
  background-color: var(--orange-light);
  color: var(--orange);
}

.status {
  padding: 3px 12px;
  border-radius: 100px;
  text-align: center;
}

.status-work-in-progress {
  background-color: var(--gray-light2);
  color: var(--gray);
}

.status-open {
  background-color: var(--blue-light);
  color: var(--blue);
}

.status-pending {
  background-color: var(--orange-light);
  color: var(--orange);
}

.status-resolved {
  background-color: var(--green-light);
  color: var(--green);
}

.status-researching {
  background-color: var(--soft-cream);
  color: var(--olive-gold);
}

.assignee {
  display: flex;
  align-items: center;
  gap: 6px;
}

.assignee img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.menu li+li {
  margin-top: 12px;
}

.menu li a,
.dropdown-toggle,
.submenu li a {
  padding: 12px;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.3s;
  display: inline-block;
  width: 100%;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  color: var(--black);
}

.menu li:not(.dropdown) a:hover,
.submenu li a:hover,
.dropdown-toggle:hover,
.submenu li.active a,
.menu li.active a {
  background-color: var(--white);
}

.dropdown-toggle {
  position: relative;
  padding-right: 44px;
}

.dropdown-toggle::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url('../images/icons/arrow-down.svg');
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  right: 12px;
  transition: all .1s linear;
}

.dropdown.open .dropdown-toggle::after {
  transform: translateY(-50%) rotate(-180deg);
}

.dropdown .submenu {
  margin-top: 4px;
  display: none;
}

.submenu li a {
  color: var(--black);
  opacity: .8;
  font-weight: 400;
}

.submenu li+li {
  margin-top: 4px;
}

.dashboard {
  display: flex;
  gap: 16px;
}

.dashboard.two {
  flex-wrap: wrap;
}

.card {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: var(--white);
  gap: 16px;
  border-radius: 26px;
  width: 25%;
}

.dashboard.two .card {
  width: calc(50% - 8px);
}

.card h3 {
  margin: 3px 0 0 0;
  font-family: 'Source Sans 3';
  font-size: 24px;
  font-weight: 600;
  line-height: 30.17px;
  color: var(--black);
}

.card p {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--gray-light);
}

.tabs {
  display: flex;
  gap: 10px;
}

.tab.button {
  background: var(--white);
  color: var(--green);
}

.tab.button.active {
  background: var(--green);
  color: var(--white);
}

.tab-content {
  margin-top: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.grey-block.tab-pane.active {
  display: flex;
}

.description-box {
  min-height: 118px;
}
textarea.description-box {
  resize: vertical;
}

.overview {
  display: flex;
  gap: 24px;
}

.comment-input {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-textarea {
  height: 76px;
}

.comment-item {
  display: flex;
  gap: 16px;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.comment-author,
.comment-date {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 600;
  line-height: 20.11px;
  color: var(--black);
}

.comment-date {
  color: var(--gray);
  font-weight: 400;
}

.comment-text {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--black);
}

.grid-container {
  display: grid;
  gap: 16px;
}

.two {
  grid-template-columns: repeat(2, 1fr);
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-item {
  background-color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-family: 'Source Sans 3';
  font-size: 18px;
  font-weight: 400;
  line-height: 22.63px;
  color: var(--black);
}

.card-item.column {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.card-item.column b {
  font-weight: 600;
}

.popup .card-item {
  height: auto;
  padding: 2px 12px;
  margin-right: 44px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.popup .card-item .ellipse-button-small {
  position: relative;
  right: -56px;
}

.tags-section,
.attachments-section {
  margin-bottom: 24px;
}

.tag {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tag span {
  display: inline-block;
  flex: 1;
  background-color: var(--white);
  padding: 8px 12px;
  border-radius: 100px;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  text-align: left;
  color: var(--primary-color);
}

.tags-input form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tags-input form .input {
  flex: 1;
}

.dz-message {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px dashed var(--primary-color);
  border-radius: 24px;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  margin-bottom: 8px;
}

.backdrop {
  position: fixed;
  z-index: 200;
  background-color: #242424;
  opacity: .2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.backdrop.show {
  display: block;
}

.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--light-background);
  padding: 28px;
  border-radius: 24px;
  max-width: 528px;
  width: 100%;
  z-index: 211;
}

.popup.loading {
    min-height: 300px;
}

.popup.show {
  display: block;
}

.popup form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.popup-header {
  display: flex;
  align-items: center;
}

.popup-header h3 {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 31.2px;
  font-weight: 600;
  margin: 0;
  color: var(--black);
  width: 100%;
  text-align: center;
}

.popup-content textarea {
  min-height: 112px;
}

textarea.select2-search__field {
  min-height: 0;
}

.popup-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.popup-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 70vh;
  overflow-y: auto;
  /* padding-right: 24px; */
}

.popup-content.grid-container {
  display: grid;
}

.popup-content.grid-container>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.popup-content p {
  margin: 0;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  text-align: center;
  color: var(--gray);
}

.popup-content.help p {
  text-align: left;
}

.popup-content.help hr {
  border-bottom: 1px solid var(--gray-light2);
  margin: 0;
  opacity: .2;
}

.popup-footer .secondary-button,
.popup-footer .button,
.popup-footer .delete-button {
  max-width: 180px;
  width: 100%;
}

.close-btn {
  cursor: pointer;
}

.popup .error,
.popup .pending {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  text-align: center;
  width: 100%;
  padding: 8px;
  color: var(--red);
  background-color: var(--red-light);
  border-radius: 24px;
  display: none;
}

.popup .pending {
  color: var(--orange);
  background-color: var(--orange-light);
}

.popup .error.show,
.popup .pending.show {
  display: block;
}

.input-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup .full {
  grid-column: 1 / -1;
  gap: 0;
  display: flex;
  flex-wrap: wrap;
}

.dropzone {
  border: 1px dashed var(--green);
  height: 55px;
  width: 100%;
  border-radius: 24px;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.dropzone-title {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--gray);
  display: inline-block;
  margin-bottom: 8px;
}

.popup .full .dropzone {
  width: calc(50% - 8px);
}

.popup .dropzone {
  background-color: var(--white);
  height: 36px;
  padding: 8px 12px;
}

.fileList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.popup .full .fileList {
  margin-top: -40px;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: row;
  min-height: 40px;
}

.dropzone-file {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
}

.popup .full .dropzone-file {
  width: calc(50% - 8px);
}

.popup .full .dropzone-file:first-child {
  margin-left: calc(50% + 8px);
}

.dropzone-file>div {
  background-color: var(--white);
  padding: 8px 12px;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--green);
  flex: 1;
  border-radius: 100px;
}

.dropzone-file>div span {
  color: var(--gray);
}

.copy-button {
  margin-left: -34px;
  margin-right: 9px;
  height: 18px;
  cursor: pointer;
}

.notifications-box {
  position: relative;
}

.notifications {
  width: 327px;
  top: 48px;
  right: 0;
  z-index: 1;
}

.notifications.show {
  display: block;
}

.notifications__title {
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 500;
  line-height: 23.4px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.notifications__title button,
.notifications__title a {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--primary-color);
  cursor: pointer;
}

.notifications__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notifications__item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.notifications__status {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  color: var(--black);
}

.notifications__date {
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  text-align: left;
  color: var(--gray);
  margin-top: 4px;
}

.notifications__item+.notifications__item {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--gray-light2);
}

.actions-box {
  position: relative;
  width: 40px;
  height: 40px;
}

.actions-menu {
  position: absolute;
  z-index: 200!important;
  width: 168px;
  top: 45px;
  right: 0;
  padding: 20px;
  border-radius: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background-color: var(--light-background);
  box-shadow: 3px 9px 21px 0px #ABABAB1A, 14px 35px 37px 0px #ABABAB17, 31px 78px 50px 0px #ABABAB0D, 56px 139px 60px 0px #ABABAB03, 87px 217px 65px 0px #ABABAB00;
}

.actions-menu button {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: var(--black);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.actions-menu button.delete {
  padding-top: 12px;
  border-top: 1px solid var(--gray-light2);
  color: var(--red);
}

.actions-menu.show {
  display: flex;
}

.mobile-nav {
  display: none;
}

/* start sing in/sing up page */

.sign-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  padding: 28px;
  position: relative;
}

.sign-container {
  background-color: var(--light-background);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  max-width: 1000px;
  min-height: 613px;
  width: 100%;
  height: 100%;
}

.sign-description {
  background-color: var(--white);
  border-radius: 24px 0 0 24px;
  width: 50%;
  padding: 40px 60px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
}

.sign-description .logo {
  position: absolute;
  left: 60px;
  top: 40px;
  height: auto;
}

.sign-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sign-title__badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  background-color: var(--orange-light);
  font-family: 'Source Sans 3';
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  color: var(--orange);
}

.sign-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 72.8px;
  color: var(--black);
  margin: 0;
}

.sign-title p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--gray-light);
}

.sing-form {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 32px 56px;
}

.sing-form__container {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.sing-form__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sing-form__title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 31.2px;
  color: var(--black);
  margin: 0;
}

.sing-form__title p {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  color: var(--gray);
}

.sing-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sing-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.sing-form a {
  color: var(--primary-color);
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  transition: color .1s linear;
  text-decoration: none;
  text-align: center;
}

.sing-form a:hover {
  color: var(--secondary-color);
}

.step {
  display: none;
}

.step.active {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step h2 {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--gray);
  margin: 0 0 12px 0;
}

.step-buttons {
  margin-top: auto;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}

.step-buttons button {
  flex: 1;
}

.multistep_progress {
  display: flex;
  gap: 13px;
  margin-bottom: 24px;
}

.multistep_progress div {
  height: 8px;
  background-color: var(--green-light);
  border-radius: 8px;
  flex: 1;
}

.multistep_progress div.active {
  background-color: var(--green);
}

/* end sing in/sing up page*/

/* start error page (403/404) */
.error-page {
  background-color: var(--light-background);
  border-radius: 24px;
  display: flex;
  height: calc(100vh - 48px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-number {
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 180px;
  font-weight: 600;
  line-height: 234px;
  margin-bottom: 28px;
}

.error-title {
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 72.8px;
  margin-bottom: 20px;
}

.error-text {
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  margin-bottom: 28px;
  max-width: 678px;
}

/* end error page (403/404) */

.plans {
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  gap: 32px;
  max-width: 1296px;
  min-height: 610px;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 56px;
}

.plans h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
  text-align: center;
  color: var(--black);
  margin: 0;
}

.plans>a {
  color: var(--primary-color);
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  transition: color .1s linear;
  text-decoration: none;
  text-align: center;
}

.plans>a:hover {
  color: var(--secondary-color);
}

.plans-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.plan {
  padding: 32px 24px;
  background-color: var(--light-background);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(33% - 18px);
  gap: 20px;
}

.plan .button {
  width: 100%;
  margin-bottom: 20px;
}

.price-wrapper {
  text-align: center;
}

.price-wrapper h2 {
  font-family: 'Poppins';
  font-size: 24px;
  font-weight: 600;
  line-height: 31.2px;
  text-align: center;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 12px;
}

.price-wrapper .price {
  font-family: 'Poppins';
  font-size: 56px;
  font-weight: 600;
  line-height: 72.8px;
  color: var(--green);
  margin-bottom: 4px;
}

.price-wrapper .price span {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  text-align: left;
  color: var(--gray);
}


.price-wrapper .discount,
.price-wrapper .year-price {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  text-align: center;
  color: var(--orange);
}

.price-wrapper .year-price {
  display: block;
  color: var(--gray);
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan li {
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.11px;
  text-align: left;
  position: relative;
  color: var(--gray);
  padding-left: 32px;
}

.plan li::before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' fill='%2304696F' stroke='%2304696F'/%3E%3Cpath d='M5 11.7765L7.73562 13.8306C7.91023 13.9617 8.12867 14.0202 8.34532 13.9938C8.56197 13.9674 8.76007 13.8583 8.89823 13.6892L16 5' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  left: 0;
  top: 0;
}

.plan li.no::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' fill='%23C9ECEC' stroke='%23C9ECEC'/%3E%3Cpath d='M10.0016 11.05L6.32656 14.725C6.18906 14.8625 6.01406 14.9313 5.80156 14.9313C5.58906 14.9313 5.41406 14.8625 5.27656 14.725C5.13906 14.5875 5.07031 14.4125 5.07031 14.2C5.07031 13.9875 5.13906 13.8125 5.27656 13.675L8.95156 10L5.27656 6.32501C5.13906 6.18751 5.07031 6.01251 5.07031 5.80001C5.07031 5.58751 5.13906 5.41251 5.27656 5.27501C5.41406 5.13751 5.58906 5.06876 5.80156 5.06876C6.01406 5.06876 6.18906 5.13751 6.32656 5.27501L10.0016 8.95001L13.6766 5.27501C13.8141 5.13751 13.9891 5.06876 14.2016 5.06876C14.4141 5.06876 14.5891 5.13751 14.7266 5.27501C14.8641 5.41251 14.9328 5.58751 14.9328 5.80001C14.9328 6.01251 14.8641 6.18751 14.7266 6.32501L11.0516 10L14.7266 13.675C14.8641 13.8125 14.9328 13.9875 14.9328 14.2C14.9328 14.4125 14.8641 14.5875 14.7266 14.725C14.5891 14.8625 14.4141 14.9313 14.2016 14.9313C13.9891 14.9313 13.8141 14.8625 13.6766 14.725L10.0016 11.05Z' fill='%2304696F'/%3E%3C/svg%3E");
}

.plan li b {
  color: var(--black);
}

.input input,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple,
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 100px;
}

.popup.show .input input,
.popup.show .select2-container .select2-selection--single,
.popup.show .select2-container .select2-selection--multiple,
.popup.show .select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 8px;
}

@media screen and (max-width: 1200px) {
  body {
    margin: 16px;
  }

  .sidebar,
  nav {
    display: none;
  }

  main,
  .big-sidebar main {
    max-width: 100%;
  }

  nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-bottom: 12px;
  }

  .mobile-header {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    padding: 8px 12px;
  }

  .logo {
    height: 28px;
    z-index: 2;
  }

  .mobile-header .nav__buttons,
  .mobile-header #mobileMenuButton {
    z-index: 2;
  }

  .mobile-menu {
    position: absolute;
    border-radius: 0 0 24px 24px;
    top: calc(100% - 18px);
    left: 0;
    right: 0;
    z-index: 2;
    background-color: var(--light-background);
    padding: 30px 12px 12px;
    display: none;
    box-shadow: 3px 9px 21px 0px #ABABAB1A, 14px 35px 37px 0px #ABABAB17, 31px 78px 50px 0px #ABABAB0D, 56px 139px 60px 0px #ABABAB03, 87px 217px 65px 0px #ABABAB00;
  }

  .mobile-menu .sidebar {
    display: flex;
    width: 100%;
    padding: 0;
    gap: 24px;
    margin-top: 24px;
  }

  .sidebar__title {
    margin: 0;
    font-size: 18px;
    line-height: 23.4px;
  }

  .menu li+li {
    margin-top: 4px;
  }

  .sidebar__footer a {
    font-size: 18px;
  }

  .sidebar__content {
    max-height: 55vh;
  }

  .sidebar__back-button {
    margin: 0;
  }

  .nav__search {
    width: 100%;
  }

  .four,
  .three {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-2 {
    flex-direction: column;
  }

  .col-2 .grey-block {
    width: 100%;
  }

  .dashboard {
    flex-wrap: wrap;
  }

  .card {
    width: calc(50% - 8px);
  }

  .sign-container {
    flex-direction: column;
  }

  .sign-description,
  .sing-form {
    width: 100%;
    padding: 24px 12px;
    border-radius: 0;
  }

  .sign-description .logo {
    position: static;
    margin-bottom: 24px;
  }

  .sign-title h1 {
    font-size: 40px;
    line-height: 52px;
  }

  .sign-page {
    padding: 28px 16px;
  }

  .plans-wrapper {
    gap: 24px;
  }

  .plan {
    width: calc(33% - 18px);
  }
}

@media screen and (max-width: 968px) {
  .plan {
    width: calc(50% - 16px);
  }
  .filter .select2 {
    width: 100% !important;
  }
  #filter-form .input, #filter-form .box {
    width: 100%;
  }
  .filter .button {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .plans {
    padding: 32px 12px;
  }

  .plan {
    padding: 24px 8px;
    width: 100%;
    gap: 20px;
  }

  .plans h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 31.2px;
  }


  .price-wrapper h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .price-wrapper .price {
    font-size: 44px;
    line-height: 57.2px;
  }

  .popup .full .dropzone {
    width: 100%;
  }

  .popup {
    width: calc(100% - 32px);
    padding: 28px 12px;
  }

  .popup .dropzone {
    height: 119px;
    text-align: center;
  }

  .popup-header h3 {
    font-size: 20px;
  }

  .popup-footer {
    flex-direction: column;
    gap: 12px;
  }

  .popup form {
    gap: 12px;
  }

  .popup-content {
    gap: 12px;
  }

  .popup-footer .secondary-button,
  .popup-footer .button,
  .popup-footer .delete-button {
    max-width: 100%;
  }

  .card {
    width: 100%;
  }

  .tabs {
    overflow-x: auto;
    gap: 4px;
  }

  .overview {
    flex-direction: column;
  }

  .comment-input {
    flex-wrap: wrap;
  }

  .comment-input .button {
    width: 100%;
  }

  .grey-block:not(.mobile-header) .nav__buttons {
    justify-content: space-between;
  }

  .page-title {
    font-size: 18px;
    line-height: 23.4px;
    flex-direction: column;
    gap: 20px;
  }

  .grey-block {
    gap: 20px;
  }

  .select2-container {
    flex: 0;
  }

  .error-number {
    font-size: 120px;
    line-height: 156px;
    margin-bottom: 24px;
  }

  .error-title {
    font-size: 36px;
    line-height: 46.8px;
  }

  .error-text {
    margin-bottom: 24px;
  }

  .two,
  .four,
  .three {
    grid-template-columns: repeat(1, 1fr);
  }

  table {
    min-width: auto;
  }
}
@media screen and (max-width: 706px) {

  .filter {
    flex-direction: column;
    justify-content: center;
  }
  span.select2.select2-container.select2-container--default {
    width: 100% !important;
  }
}
@media screen and (max-width: 500px) {
  .success-message,
  .pending-access,
  .notifications,
  .success-messages-container {
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .success-message {
    width: 100%;
    transform: none;
  }
}
@media screen and (max-width: 370px) {
  .dropzone {
    font-size: 14px;
  }
}


/* Styled popup error box */
.popup-content-wrapper {
  max-width: 600px;
  margin: 80px auto;
  background-color: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.popup-content-wrapper .error-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c2c6e;
  margin-bottom: 12px;
}

.popup-content-wrapper .error-message {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.popup-content-wrapper .button {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  background-color: #04696f;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.popup-content-wrapper .button:hover {
  background-color: #034b4f;
}

/* Optional: body background for popup mode */
.popup-body {
  background-color: #e5e5e5;
}

/* Admin dashboard quick links */
.link-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.link-card:hover {
  box-shadow: 0 4px 12px rgba(4, 105, 111, 0.15);
}
