*,
*::before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-wrapper *:focus {
  outline: none !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

img {
  border-style: none;
}

li {
  list-style: none;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

sup {
  font-size: 0.6em;
  line-height: 0;
  vertical-align: super;
}

sub {
  font-size: 0.7em;
  line-height: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
}

@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Regular.woff");
  font-style: normal;
}

@font-face {
  font-family: "Open Sans SemiBold";
  src: url("../assets/fonts/OpenSans-SemiBold.woff");
  font-style: normal;
}

@font-face {
  font-family: "Open Sans Bold";
  src: url("../assets/fonts/OpenSans-Bold.woff");
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
}

.st-hidden {
  display: none !important;
}

.st-unscrollable {
  height: 100% !important;
  overflow: hidden !important;
}

.unscrollable {
  overflow-y: hidden;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 400;
}

.no-break {
  white-space: nowrap;
}

.display-none {
  display: none;
}

.hide-for-desktop {
  display: none;
}

.hide-for-large {
  display: none;
}

.show-for-large {
  display: block;
}

.br-desktop {
  display: block;
}

.br-tablet {
  display: none;
}

.br-mobile {
  display: none;
}

.mainColor {
  color: #e1242a;
}

@media screen and (max-width: 1023px) {
  .hide-for-large {
    display: block;
  }

  .show-for-large {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hide-for-tablet {
    display: none;
  }

  .hide-for-desktop {
    display: block;
  }

  .br-desktop {
    display: none;
  }

  .br-tablet {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .br-mobile {
    display: block;
  }
}

.cat-button {
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #34373f;
  padding: 12px 11px 12px;
  cursor: pointer;
  color: #34373f;
  font-family: "Open Sans", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  text-decoration: none;
  max-width: 140px;
}

.cat-button:hover {
  background-color: #34373f;
  color: #fff;
}

.cat-button:active {
  color: inherit;
}

@media screen and (max-width: 768px) {
  .cat-button {
    font-size: 9px;
    padding: 7px;
    height: 30px;
    max-width: 90px;
  }
}

.cat-header {
  height: 70px;
  background-color: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1607843137);
  z-index: 1;
  position: relative;
}

.cat-header>*:not(:last-child) {
  margin-right: 30px;
}

.cat-header__inner {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 61px 0 65px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-header__search {
  font-family: "Open Sans", sans-serif;
  width: 45vw;
  max-width: 620px;
  padding: 0 15px 0 37px;
  height: 40px;
  background-color: #edf2f4;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-image: url("../../assets/icons/search.svg");
  background-position: 15px 13px;
  background-repeat: no-repeat;
  font-size: 12px;
  border-radius: 3px;
}

.cat-header__search::placeholder {
  color: #9B9EA0;
}

.cat-header__user {
  display: flex;
  align-items: center;
  position: relative;
}

.cat-header__user-name {
  font-family: "Open Sans SemiBold", sans-serif;
  color: #34373f;
}

.cat-header__user-image {
  margin-right: 11px;
  cursor: pointer;
}

.cat-logout-btn-container {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 0px 3px 30px #00000029;
  position: absolute;
  left: 0;
  bottom: -42px;
  border-radius: 10px;
}

.cat-logout-btn-container a {
  width: fit-content;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  color: var(--color-fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.cat-logout-btn-container a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/icons/Icon feather-log-out.svg");
  position: absolute;
  left: 0;
  top: 3px;
}

.cat-logout-btn-container a:hover:before {
  background-image: url("../assets/icons/Icon feather-log-out red.svg");
}

.cat-logout-btn-container a:hover {
  color: var(--color-fg);
}

@media screen and (max-width: 768px) {
  .cat-header__inner {
    padding: 0 20px;
  }

  .cat-header__logo {
    max-width: 20vw;
    height: auto;
  }

  .cat-header__search {
    max-height: 30px;
    background-position: 15px 9px;
    margin: 0 10px;
  }

  .cat-header__search::placeholder {
    font-size: 10px;
  }

  .cat-header__user-image {
    width: 30px;
    height: auto;
  }

  .cat-header__user-name {
    font-size: 10px;
  }
}

.cat-main {
  width: 100%;
  max-width: 1423px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 0 0 0;
  border-radius: 10px;
}

.cat-main__inner {
  padding: 21px 0 26px 30px;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  margin-bottom: 50px;
}

.cat-main__top {
  display: flex;
  justify-content: space-between;
  padding-right: 19px;
}

.cat-main__sort {
  display: flex;
}

.cat-main__sort>*:not(:last-child) {
  margin-right: 20px;
}

.cat-main__sel {
  position: relative;
}

.cat-main__sel::after {
  position: absolute;
  right: 12.5px;
  top: 14px;
  content: "";
  border: solid #34373f;
  border-width: 0 2px 2px 0;
  width: 12px;
  height: 12px;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}

.cat-main__criteria {
  width: 213px;
}

.cat-main__criteria:hover {
  background-color: #fff;
  color: #34373f;
}

.cat-main__filter {
  display: flex;
  padding: 12px 11px 12px;
  align-items: center;
  margin-bottom: 10px;
  float: right;
  width: 90px;
}

.cat-main__filter:hover {
  background-color: #fff;
  color: #34373f;
}

.cat-main__btn {
  font-family: "Open Sans SemiBold", sans-serif;
}

.cat-main .fixed-table-pagination {
  display: flex;
  font-family: "Open Sans SemiBold", sans-serif;
}

.cat-main .fixed-table-pagination .pagination-detail .page-list {
  display: none;
}

.cat-main .fixed-table-pagination .pagination-detail .pagination-info {
  font-size: 12px;
}

.cat-main .fixed-table-pagination .pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
}

.cat-main .fixed-table-pagination .page-item.active .page-link {
  background-color: #e31c1c;
  color: #fff;
  border-color: transparent;
  border-radius: 5px;
}

.cat-main .fixed-table-pagination .page-link {
  color: #0d0d0d;
  padding: 7px 12px;
  border: none;
  background-color: transparent;
}

.cat-main .fixed-table-pagination .page-link:hover {
  background-color: #e31c1c;
  color: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 1023px) {
  .cat-main .fixed-table-pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cat-main .fixed-table-pagination .pagination {
    position: unset;
    left: unset;
    transform: unset;
  }
}

@media screen and (max-width: 768px) {
  .cat-main {
    padding: 17px 10px 39px;
  }

  .cat-main__inner {
    padding-left: 15px;
  }

  .cat-main__criteria {
    width: 20vw;
  }

  .cat-main__sel::after {
    right: 10px;
    top: 8px;
    width: 10px;
    height: 10px;
  }

  .cat-main__filter {
    max-width: 70px;
  }
}

.cat-table {
  border-spacing: 0;
  table-layout: fixed;
  border-collapse: collapse;
  border: none;
  margin-top: 0;
  min-width: 100%;
}

.cat-table__wrapper {
  overflow-x: scroll;
  margin-top: 10px;
}

.cat-table__wrapper::-webkit-scrollbar {
  height: 6px;
}

.cat-table__wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e8e8e8;
  border-radius: 10px;
}

.cat-table__wrapper::-webkit-scrollbar-thumb {
  background: #b4b4b4;
  border-radius: 10px;
}

.cat-table thead {
  height: 50px;
}

.cat-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #d5d7db;
}

.cat-table th {
  text-align: center;
  background-color: #e1242a;
  color: #fff;
  border-bottom: none;
  border-top: none;
}

.cat-table th:nth-child(1) {
  padding-left: 17px;
  border-top-left-radius: 5px;
}

.cat-table td {
  padding: 13px 0;
  text-align: center;
}

.cat-table td img {
  width: 24px;
  max-width: fit-content;
}

.cat-table td:nth-child(1) {
  padding-left: 17px;
}

.cat-table td>div.form-item {
  margin: 0;
}

.cat-table__col-narrow {
  max-width: 70px;
}

.cat-table__col-mid {
  width: 120px;
}

.cat-table__col-wide {
  width: 150px;
}

.cat-table__col-wider {
  width: 200px;
}

.cat-table__col--name {
  padding-right: 30px;
}

.cat-table__button {
  padding-left: 30px;
  width: 160px;
}

.cat-table__button::before {
  content: url("../assets/icons/eye.svg");
  position: absolute;
  left: 6px;
  top: 11px;
  width: 22px;
}

.cat-table__button:hover {
  background-color: #34373f;
  color: #fff;
}

.cat-table__button:hover::before {
  content: url("../assets/icons/eye-active.svg");
}

.cat-table__tags-container {
  display: flex;
  flex-wrap: wrap;
}

.cat-table__tag {
  padding: 4px 8px;
  color: #e1242a;
  background-color: #fce9ea;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 5px;
  margin-right: 5px;
}

.cat-table__link {
  color: #34373f;
}

@media screen and (max-width: 768px) {

  .cat-table th,
  .cat-table td {
    font-size: 10px;
  }

  .cat-table__tag {
    font-size: 8px;
  }

  .cat-table td {
    padding: 8px 0;
  }

  .cat-table__button {
    padding-left: 20px;
  }

  .cat-table__button::before {
    width: 15px;
    left: 4px;
    top: 6px;
  }

  .cat-table__col-narrow {
    width: 55px;
  }

  .cat-table__col-mid {
    width: 85px;
  }

  .cat-table__col-wide {
    width: 130px;
  }

  .cat-table__col-wider {
    width: 160px;
  }
}

.cat-filter-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
}

.cat-filter-popup--active {
  visibility: visible;
  opacity: 1;
}

.cat-filter-popup__content {
  position: absolute;
  right: -500px;
  background-color: #fff;
  width: 0;
  min-width: 400px;
  height: 100vh;
  padding: 30px 61px 17px 30px;
  transition: 300ms;
  overflow: auto;
}

.cat-filter-popup__content--active {
  right: 0;
  transition: 300ms;
}

.cat-filter-popup__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cat-filter-popup__heading h1 {
  font-size: 16px;
}

.cat-filter-popup__clear-close {
  font-size: 12px;
  display: flex;
  align-items: center;
}

.cat-filter-popup__clear {
  cursor: pointer;
}

.cat-filter-popup__clear:hover {
  border-bottom: 1px solid #e1242a;
}

.cat-filter-popup__close-icon {
  margin-left: 25px;
  cursor: pointer;
}

.cat-filter-popup__filters-container,
.cat-filter-popup__filter,
.cat-filter-popup__all-filters {
  display: flex;
  flex-direction: column;
}

.cat-filter-popup__all-filters {
  max-height: 200px;
  overflow: auto;
  margin-top: 6px;
  padding-top: 5px;
}

.cat-filter-popup__all-filters::-webkit-scrollbar {
  width: 6px;
}

.cat-filter-popup__all-filters::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e8e8e8;
  border-radius: 10px;
}

.cat-filter-popup__all-filters::-webkit-scrollbar-thumb {
  background: #b4b4b4;
  border-radius: 10px;
}

.cat-filter-popup__filter {
  margin-bottom: 20px;
}

.cat-filter-popup__filter-content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms;
}

.cat-filter-popup__filter-content--active {
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 200ms;
}

.cat-filter-popup__filter-criteria {
  font-size: 14px;
  color: #e1242a;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

.cat-filter-popup__filter-criteria::after {
  position: absolute;
  right: 12.5px;
  top: 5px;
  content: "";
  border: solid #e1242a;
  border-width: 0 2px 2px 0;
  width: 9px;
  height: 9px;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: all 200ms;
}

.cat-filter-popup__filter-criteria--active::after {
  transform: rotate(225deg);
}

.cat-filter-popup__search {
  font-family: "Open Sans", sans-serif;
  padding: 0 15px 0 37px;
  height: 32px;
  background-color: #edf2f4;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-image: url("../../assets/icons/search.svg");
  background-position: 13px 9px;
  background-repeat: no-repeat;
  background-size: 12px 13px;
  font-size: 12px;
  border-radius: 3px;
  width: 95%;
}

.cat-filter-popup__search::placeholder {
  color: #9B9EA0;
}

.cat-filter-popup__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cat-filter-popup__icon {
  position: absolute;
  left: 3%;
  width: 12px;
}

.cat-filter-popup__checkbox {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 12px;
}

.cat-filter-popup__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 2px;
}

.cat-filter-popup__indicator::after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cat-filter-popup__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.cat-filter-popup__input:checked~.cat-filter-popup__indicator {
  background: #e1242a;
  border: none;
}

.cat-filter-popup__input:checked~.cat-filter-popup__indicator::after {
  display: block;
}

.cat-filter-popup__button {
  background-color: #e31c1c;
  color: #fff;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
  border: none;
}

@media screen and (max-width: 768px) {
  .cat-filter-popup__content {
    padding: 20px;
    min-width: 250px;
  }

  .cat-filter-popup__search {
    font-size: 8px;
    height: 25px;
    background-position: 9px 7px;
  }

  .cat-filter-popup__checkbox {
    font-size: 9px;
  }

  .cat-filter-popup__indicator {
    width: 13px;
    height: 13px;
  }

  .cat-filter-popup__indicator::after {
    width: 3px;
    height: 5px;
    left: 4px;
    top: 2px;
  }
}

.cat-details {
  position: relative;
  padding: 32px 0 153px 58px;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  width: 100%;
  max-width: 1244px;
  margin: 0 auto;
}

.cat-details__wrapper {
  width: 100vw;
  background-color: #F3F6F9;
  padding: 17px 0 31px;
}

.cat-details__heading {
  color: #e1242a;
  font-size: 30px;
  font-family: "Open Sans Bold", sans-serif;
  margin-bottom: 30px;
}

.cat-details__buttons {
  position: absolute;
  right: 99px;
  top: 83px;
}

.cat-details__button {
  display: unset;
}

.cat-details__button:nth-child(1) {
  margin-right: 10px;
}

.cat-details__back-to-prev {
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
}

.cat-details__line {
  display: flex;
  margin-bottom: 18px;
  color: #34373f;
}

.cat-details__category {
  font-weight: bold;
  width: 180px;
}

.cat-details__data {
  max-width: 550px;
}

@media screen and (max-width: 1023px) {
  .cat-details {
    padding: 30px;
  }

  .cat-details__heading {
    margin-bottom: 80px;
  }

  .cat-details__buttons {
    left: 50%;
    transform: translateX(-50%);
    right: unset;
  }
}

@media screen and (max-width: 768px) {

  .cat-details__data,
  .cat-details__category {
    width: 50%;
  }

  .cat-details__data--tags {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  .cat-details__buttons {
    display: flex;
  }

  .cat-details__button {
    font-size: 8px;
  }

  .cat-logout-btn-container a {
    padding-left: 12px;
    font-size: 12px;
  }

  .cat-logout-btn-container a:before {
    width: 10px;
    height: 10px;
    top: 4px;
  }

  .cat-header__search {
    width: 40vw;
  }

}

.cat-login {
  background-color: #fff;
  width: 673px;
  border-radius: 25px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1607843137);
  margin: 0 auto;
  position: relative;
  padding: 54px 0;
}

.cat-login__title {
  font-size: 30px;
  color: #34373f;
  margin-bottom: 24px;
}

.cat-login__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cat-login__logo {
  position: absolute;
  top: 30px;
  left: 30px;
}

.cat-login__image {
  margin-bottom: 37px;
}

.cat-login__button {
  background-color: #e1242a;
  color: #fff;
  padding: 10.5px 74.5px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .cat-login {
    width: 100%;
    max-width: 80vw;
    padding: 30px;
  }

  .cat-login__logo {
    top: 20px;
    left: 20px;
    width: 25%;
    max-width: 110px;
    height: auto;
  }

  .cat-login__title {
    font-size: 25px;
  }

  .cat-login__image {
    width: 100%;
    margin-bottom: 30px;
  }

  .cat-login__button {
    padding: 10px 20px;
    font-size: 12px;
  }
}