:root {
  --vh: 100vh;
}

.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .pagination {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1260px) {
  .pagination {
    margin-top: 40px;
  }
}
@media screen and (max-width: 780px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination > nav > *:first-child {
  display: none;
}
.pagination > nav > *:last-child {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 780px) {
  .pagination > nav > *:last-child {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .pagination > nav > *:last-child > *:first-child {
    margin-bottom: 15px;
  }
}
.pagination > nav > *:last-child > *:last-child {
  flex: 1;
}
.pagination > nav > *:last-child > *:last-child > span {
  display: flex;
  justify-content: center;
}
.pagination > nav > *:last-child > *:last-child > span > * {
  margin: 0px 3px;
  padding: 6px 10px;
  background: white;
  color: #005E52;
  border: 1px solid white;
  display: flex;
  align-items: center;
  min-width: 42px;
  justify-content: center;
}
.pagination > nav > *:last-child > *:last-child > span > *:hover {
  border-color: #005E52;
}
.pagination > nav > *:last-child > *:last-child > span > *[aria-current=page] {
  background: #005E52;
  color: white;
}
.pagination > nav > *:last-child > *:last-child svg {
  display: block;
  height: 20px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
select,
input,
button,
textarea,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: inherit;
  font-size: inherit;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

ol,
ul {
  list-style: none;
}

html {
  margin: 0 !important;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:root {
  --vh: 100vh;
}

.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .pagination {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1260px) {
  .pagination {
    margin-top: 40px;
  }
}
@media screen and (max-width: 780px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination > nav > *:first-child {
  display: none;
}
.pagination > nav > *:last-child {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 780px) {
  .pagination > nav > *:last-child {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .pagination > nav > *:last-child > *:first-child {
    margin-bottom: 15px;
  }
}
.pagination > nav > *:last-child > *:last-child {
  flex: 1;
}
.pagination > nav > *:last-child > *:last-child > span {
  display: flex;
  justify-content: center;
}
.pagination > nav > *:last-child > *:last-child > span > * {
  margin: 0px 3px;
  padding: 6px 10px;
  background: white;
  color: #005E52;
  border: 1px solid white;
  display: flex;
  align-items: center;
  min-width: 42px;
  justify-content: center;
}
.pagination > nav > *:last-child > *:last-child > span > *:hover {
  border-color: #005E52;
}
.pagination > nav > *:last-child > *:last-child > span > *[aria-current=page] {
  background: #005E52;
  color: white;
}
.pagination > nav > *:last-child > *:last-child svg {
  display: block;
  height: 20px;
}

.flex {
  display: flex;
}
.flex > * {
  position: relative;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.flex-column {
  flex-direction: column;
}
.flex.wrap {
  flex-flow: row wrap;
}
.flex.flex-center {
  align-items: center;
}
.flex.flex-bottom {
  align-items: flex-end;
}
.flex.flex-text-center {
  justify-content: center;
}
.flex.flex-text-right {
  justify-content: flex-end;
}
.flex .flex-item-right {
  margin-left: auto !important;
}
.flex .flex-item-left {
  margin-right: auto !important;
}
.flex .flex-1 {
  flex: 1;
}
.flex .flex-2 {
  flex: 2;
}
.flex .flex-3 {
  flex: 3;
}
.flex .flex-4 {
  flex: 4;
}
.flex .flex-5 {
  flex: 5;
}
.flex .flex-6 {
  flex: 6;
}
.flex .flex-7 {
  flex: 7;
}
.flex .flex-8 {
  flex: 8;
}
.flex .flex-9 {
  flex: 9;
}
.flex .flex-10 {
  flex: 10;
}
.flex.fixed-columns-count {
  flex-wrap: wrap;
}
.flex.fixed-columns-count > * {
  width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
  max-width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
  min-width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
}
.flex.fixed-columns-count.bleed {
  margin-left: calc( var(--bleed) * -1 );
  margin-right: calc( var(--bleed) * -1 );
}
.flex.fixed-columns-count.bleed > *:first-child {
  margin-left: var(--bleed);
}
.flex.fixed-columns-count.bleed > *:last-child {
  margin-right: var(--bleed);
}
.flex.bleed > * {
  margin-left: var(--bleed);
  margin-right: var(--bleed);
}
.flex.bleed > *:first-child {
  margin-left: 0;
}
.flex.bleed > *:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .flex.break-laptop {
    flex-direction: column;
  }
  .flex.break-laptop.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-laptop.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-laptop.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-laptop.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1260px) {
  .flex.break-tablet {
    flex-direction: column;
  }
  .flex.break-tablet.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-tablet.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-tablet.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-tablet.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-mobile {
    flex-direction: column;
  }
  .flex.break-mobile.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-mobile.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-mobile.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-mobile.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}

:root {
  --vh: 100vh;
}

.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .pagination {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1260px) {
  .pagination {
    margin-top: 40px;
  }
}
@media screen and (max-width: 780px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination > nav > *:first-child {
  display: none;
}
.pagination > nav > *:last-child {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 780px) {
  .pagination > nav > *:last-child {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .pagination > nav > *:last-child > *:first-child {
    margin-bottom: 15px;
  }
}
.pagination > nav > *:last-child > *:last-child {
  flex: 1;
}
.pagination > nav > *:last-child > *:last-child > span {
  display: flex;
  justify-content: center;
}
.pagination > nav > *:last-child > *:last-child > span > * {
  margin: 0px 3px;
  padding: 6px 10px;
  background: white;
  color: #005E52;
  border: 1px solid white;
  display: flex;
  align-items: center;
  min-width: 42px;
  justify-content: center;
}
.pagination > nav > *:last-child > *:last-child > span > *:hover {
  border-color: #005E52;
}
.pagination > nav > *:last-child > *:last-child > span > *[aria-current=page] {
  background: #005E52;
  color: white;
}
.pagination > nav > *:last-child > *:last-child svg {
  display: block;
  height: 20px;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Open Sans", sans-serif;
  color: #777776;
  font-size: 16px;
  line-height: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: calc( 10px + ( 6 * ( 100vw - 960px ) / 640 ) );
  }
}
@media screen and (max-width: 780px) {
  html {
    font-size: 14px;
  }
}

h1 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.25rem;
  color: #333333;
}
h1.bolded {
  font-weight: bold;
}

h2 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25rem;
  color: #333333;
}

.subheadline-text {
  font-size: 1.5rem;
  font-weight: normal;
}

.small-text {
  font-size: 0.87rem;
  letter-spacing: 0.02em;
}

.smaller-text {
  font-size: 0.81rem;
  font-weight: normal;
  line-height: 1.25rem;
}
.smaller-text.letter-spacing {
  letter-spacing: 0.02em;
}
.smaller-text.light {
  font-weight: 300;
}
.smaller-text.bold {
  font-weight: bold;
}

.rich-text > * {
  word-break: break-word;
  margin-bottom: 14px;
}
.rich-text ul,
.rich-text ol {
  margin-left: 20px;
}
.rich-text ul li {
  list-style: circle;
}
.rich-text ol li {
  list-style: decimal;
}

body.logged-in .site-wrapper .site-content {
  margin-top: 4.62rem;
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 1.56rem;
  padding-bottom: 1.56rem;
  width: calc(100% - 20rem);
  max-width: calc(100% - 20rem);
}
body.logged-in .site-wrapper .site-content .site-footer {
  display: flex;
}

@media screen and (min-width: 961px) {
  body.admin.logged-in .site-wrapper .site-content {
    max-width: calc(100% - 270px);
  }
}
@media screen and (max-width: 780px) {
  body.admin.logged-in .site-wrapper .site-content {
    max-width: calc(100% - 270px);
  }
}
.ajax-table .table-wrapper {
  min-height: 54rem;
}

.table-wrapper {
  max-width: 100%;
  overflow: auto;
}
.table-wrapper table {
  width: 100%;
}
.table-wrapper table th, .table-wrapper table td {
  text-align: left;
  padding-right: 0.5rem;
}
.table-wrapper table tr th {
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 1.12rem;
  line-height: 1.25rem;
  border-bottom: 2px solid #E4E4E3;
  --bleed: 0.46rem;
}
.table-wrapper table tr th:first-child {
  padding-left: 0.75rem;
}
.table-wrapper table tr th:last-child {
  padding-right: 0.75rem;
}
.table-wrapper table tr th .filter img {
  opacity: 0.25;
  min-width: 1rem;
  width: 1rem;
  height: 1rem;
  object-fit: cover;
  cursor: pointer;
}
.table-wrapper table tr th .filter img:hover, .table-wrapper table tr th .filter img.active {
  opacity: 1;
}
.table-wrapper table tr th .sorting {
  display: flex;
  flex-direction: column;
  --bleed: 0rem;
}
.table-wrapper table tr th .sorting img {
  opacity: 0.25;
  min-width: 0.62rem;
  width: 0.62rem;
  height: 0.62rem;
  object-fit: cover;
  cursor: pointer;
}
.table-wrapper table tr th .sorting img:hover, .table-wrapper table tr th .sorting img.active {
  opacity: 1;
}
.table-wrapper table tr th .filter {
  position: relative;
}
.table-wrapper table tr th .filter.active .filter-expander {
  display: block;
}
.table-wrapper table tr th .filter .filter-expander {
  position: absolute;
  top: calc(100% + 10px);
  right: -1.375rem;
  padding: 1.375rem;
  border-radius: 0.3125rem;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  background: white;
  min-width: 20rem;
  z-index: 5;
  display: none;
}
.table-wrapper table tr th .filter .filter-expander p {
  text-transform: none;
  font-weight: normal;
  font-size: 0.81rem;
  margin-bottom: 1.56rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.table-wrapper table tr th .filter .filter-expander .label-checkbox {
  display: block;
  text-transform: none;
  font-weight: normal;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.table-wrapper table tr th .filter .filter-expander .label-checkbox:last-child {
  margin-bottom: 0;
}
.table-wrapper table tr th .filter .filter-expander .advanced-select .select-options {
  display: block;
  border: none;
}
.table-wrapper table tr th .filter .filter-expander .advanced-select .select-options .option img {
  display: none;
}
.table-wrapper table tr th .filter .filter-expander .advanced-select .select-options .option .spacer {
  width: 0.5rem;
}
.table-wrapper table tr th .filter .filter-expander .advanced-select .select-options .option .children {
  display: block;
}
.table-wrapper table tr th .filter .filter-expander .advanced-select .select-options .option .option-text {
  display: flex;
  padding-right: 0.5rem;
  padding-left: 0.25rem;
}
.table-wrapper table tr th .filter .filter-expander .advanced-select .select-options .option .option-text input {
  margin-left: auto;
}
.table-wrapper table tbody tr:nth-child(odd) {
  background-color: #F9F9F9;
}
.table-wrapper table tbody tr td {
  vertical-align: middle;
  padding-top: 1.87rem;
  padding-bottom: 1.87rem;
  min-height: 5.31rem;
  line-height: 1.5rem;
}
.table-wrapper table tbody tr td:first-child {
  padding-left: 0.75rem;
}
.table-wrapper table tbody tr td:last-child {
  padding-right: 0.75rem;
}
.table-wrapper table tbody tr td.main-cell {
  font-weight: bold;
}
.table-wrapper table tbody tr td.short {
  min-width: 0;
}
.table-wrapper table tbody tr td.text-links {
  font-size: 0.81rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.table-wrapper table tbody tr td a {
  --bleed: 0.31rem;
}
.table-wrapper table tbody tr td a img {
  height: 0.87rem;
  width: 0.81rem;
}
.table-wrapper table tbody tr td .ajax-table-more {
  display: block;
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
}

table.first-col-heading tr td:first-child {
  font-weight: bold;
}
table tr td {
  min-width: 9.37rem;
  padding-bottom: 1rem;
}
table tr:last-child td {
  padding-bottom: 0;
}

.filters {
  background: #005E52;
  padding: 10px 0px;
  margin-bottom: 20px;
}
.filters .form-element {
  background: white;
}

.floating-bar {
  position: fixed;
  width: 100%;
  background: #005e52;
  padding: 15px 10px;
}
.floating-bar.bottom {
  bottom: 0;
}

.items-list .item {
  padding: 15px;
  margin: 15px 0px;
  border-top: 1px solid #005E52;
}
.items-list .item:last-child {
  border-bottom: 1px solid #005E52;
  margin-bottom: 0;
}
.items-list .item h3 {
  margin-bottom: 0;
}
.items-list .item small {
  display: block;
  opacity: 0.75;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1550px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.container.short {
  max-width: 1556px;
}
@media screen and (max-width: 780px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.site-wrapper {
  display: flex;
}
.site-wrapper .site-nav {
  left: 0;
  width: 20rem;
  min-width: 20rem;
  border-right: 1px solid rgba(112, 112, 112, 0.5);
  position: relative;
  z-index: 100;
  background: white;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 780px) {
  .site-wrapper .site-nav {
    position: fixed;
    top: 0px;
    left: 0;
    bottom: 0;
    margin-left: -100vw;
    width: 100vw;
  }
}
.site-wrapper .site-nav .site-nav-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 20rem;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2.25rem 0 2.81rem 0;
}
@media screen and (max-width: 780px) {
  .site-wrapper .site-nav .site-nav-inner {
    padding: 40px 10px 0px 10px;
  }
}
.site-wrapper .site-nav .group .group-name, .site-wrapper .site-nav .group a {
  padding-left: 3.31rem;
}
.site-wrapper .site-nav .logo {
  display: block;
  margin-bottom: 2.68rem;
}
.site-wrapper .site-nav .logo img {
  width: 12.43rem;
}
.site-wrapper .site-nav nav {
  width: 20rem;
}
@media screen and (max-width: 780px) {
  .site-wrapper .site-nav nav {
    width: 100%;
  }
}
.site-wrapper .site-nav nav .group-name {
  font-size: 0.81rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.12rem;
  color: #777776;
}
.site-wrapper .site-nav nav .group {
  margin-bottom: 3.18rem;
}
.site-wrapper .site-nav nav .group:last-child {
  margin-bottom: 0;
}
.site-wrapper .site-nav nav a {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #333333;
  height: 3.12rem;
  padding-right: 2.81rem;
}
.site-wrapper .site-nav nav a:last-child {
  margin-bottom: 0;
}
.site-wrapper .site-nav nav a .img-wrapper .icon {
  display: block;
}
.site-wrapper .site-nav nav a .img-wrapper .icon.active {
  display: none;
}
.site-wrapper .site-nav nav a .img-wrapper img {
  height: 1.12rem;
  width: 1.12rem;
  object-fit: contain;
  margin-right: 0.93rem;
}
.site-wrapper .site-nav nav a .name {
  margin-right: 1rem;
}
.site-wrapper .site-nav nav a.active, .site-wrapper .site-nav nav a:hover {
  color: #D73648;
  background-color: rgba(228, 228, 227, 0.5);
}
.site-wrapper .site-nav nav a.active .img-wrapper .icon:not(.active), .site-wrapper .site-nav nav a:hover .img-wrapper .icon:not(.active) {
  display: none;
}
.site-wrapper .site-nav nav a.active .img-wrapper .icon.active, .site-wrapper .site-nav nav a:hover .img-wrapper .icon.active {
  display: block;
}
.site-wrapper .site-nav nav a.active .arrow-wrapper img.active, .site-wrapper .site-nav nav a:hover .arrow-wrapper img.active {
  display: block;
}
.site-wrapper .site-nav nav a.active .arrow-wrapper img:not(.active), .site-wrapper .site-nav nav a:hover .arrow-wrapper img:not(.active) {
  display: none;
}
.site-wrapper .site-nav nav a .name {
  margin-right: 1rem;
}
.site-wrapper .site-nav nav a .arrow-wrapper {
  height: 0.87rem;
  width: 0.43rem;
  margin-left: auto;
}
.site-wrapper .site-nav nav a .arrow-wrapper img.active {
  display: none;
}
.site-wrapper .site-nav nav a .arrow-wrapper img:not(.active) {
  display: block;
}
.site-wrapper .site-header {
  position: fixed;
  top: 0;
  left: 20rem;
  z-index: 10;
  width: calc(100% - 20rem);
  background-color: #D73648;
  color: #FFFFFF;
  padding: 0 1.37rem;
  height: 4.62rem;
}
.site-wrapper .breadcrumb {
  font-weight: normal;
}
.site-wrapper .breadcrumb.dark-gray {
  color: #4D4E4D;
}
.site-wrapper .breadcrumb.small {
  font-size: 0.87rem;
  font-weight: 300;
}
.site-wrapper .breadcrumb.small .delimiter img {
  height: 1rem;
  width: 0.42rem;
}
.site-wrapper .breadcrumb .delimiter {
  margin: 0 1rem;
}
.site-wrapper .breadcrumb .delimiter img {
  height: 1.25rem;
  width: 0.62rem;
}
.site-wrapper .site-content {
  background-color: #E4E4E3;
  flex: 1;
}
@media screen and (max-width: 1260px) {
  .site-wrapper .site-content {
    padding-bottom: 100px;
    margin-top: 55px;
  }
}
@media screen and (max-width: 780px) {
  .site-wrapper .site-content {
    padding-bottom: 80px;
    margin-top: 40px;
  }
}
.site-wrapper .site-content > .container > .error-messages {
  margin-bottom: 1.56rem;
}
.site-wrapper .site-content * + .error-messages {
  margin-top: 1.56rem;
}
.site-wrapper .site-content .site-footer {
  display: none;
  margin-top: auto;
  height: 5.62rem;
  font-size: 0.81rem;
  font-weight: normal;
  color: #8A8B8A;
}

.content-box {
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 1.56rem;
  margin-bottom: 1.56rem;
}
.content-box.big-bottom-padding {
  padding-bottom: 2.12rem;
}
.content-box:last-child {
  margin-bottom: 0;
}
.content-box .box-title-wrapper {
  margin-bottom: 1.56rem;
}
.content-box .box-title {
  text-transform: uppercase;
  margin-bottom: 1.56rem;
  line-height: 1.25rem;
  letter-spacing: normal;
}
.content-box .box-title.big-margin {
  margin-bottom: 5.06rem;
}
.content-box .box-title.small-margin {
  margin-bottom: 1rem;
}
.content-box .box-title.no-margin {
  margin-bottom: 0;
}
.content-box .quick-filter {
  font-weight: normal;
  margin-bottom: 1rem;
  gap: 1rem;
}
.content-box .quick-filter label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.25rem;
}

.box {
  width: fit-content;
  min-width: 36.87rem;
  padding: 1.43rem 1.06rem 1.56rem;
  -webkit-box-shadow: 1.5px 2.6px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 1.5px 2.6px 10px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 1.5px 2.6px 10px 0px rgba(0, 0, 0, 0.16);
}

.status {
  position: relative;
  display: block;
  padding-left: 1.875rem;
  letter-spacing: 0.02em;
}
.status.active {
  color: #85A352;
}
.status.active::before {
  background-color: #85A352;
}
.status.draft {
  color: #D8873D;
}
.status.draft::before {
  background-color: #D8873D;
}
.status:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 1rem;
  width: 1rem;
  border-radius: 4px;
  background-color: #777776;
}

.fake-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 54, 72, 0.66);
  height: 1rem;
  width: 1rem;
  border-radius: 4px;
}
.fake-checkbox.checked {
  background-color: rgba(215, 54, 72, 0.66);
}
.fake-checkbox.checked img {
  display: block;
}
.fake-checkbox.gray {
  border: 1px solid #707070;
}
.fake-checkbox.gray.checked {
  background-color: #707070;
}
.fake-checkbox img {
  display: none;
  height: 0.56rem;
  width: 0.56rem;
}

.accordion {
  padding: 1.56rem 1.56rem 1.87rem;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.accordion.no-shadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.accordion.no-padding {
  padding: 0;
}
.accordion.opened .content {
  display: block;
}
.accordion.opened .content.flex {
  display: flex;
}
.accordion.content-paddin-top-big .content {
  padding-top: 1.56rem;
}
.accordion.content-padding-right-big .content {
  max-width: 67.625rem;
}
.accordion .header {
  cursor: pointer;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.accordion .header img {
  height: 1rem;
  width: 0.62rem;
}
.accordion .content {
  padding-top: 0.43rem;
  display: none;
}
.accordion .content.right-column-offseted .col:last-child {
  padding-top: 3rem;
}

.active-status-delete-wrapper {
  padding: 3.93rem 0;
}
.active-status-delete-wrapper .active-status-delete .status-text {
  color: #777776;
}
.active-status-delete-wrapper .active-status-delete .divider {
  background-color: #9F9F9E;
  width: 1.5px;
  height: 2.81rem;
  margin: 0 1.5rem;
}
.active-status-delete-wrapper .active-status-delete .delete {
  color: #D73648;
  --bleed: 0.37rem;
}
.active-status-delete-wrapper .active-status-delete .delete img {
  height: 1.1rem;
}

.search-box {
  margin-bottom: 1.5625rem;
  max-width: 17rem;
  background: white;
  box-shadow: 1.5px 2.6px 10px 0px rgba(0, 0, 0, 0.16);
  border-radius: 0.25rem;
  position: relative;
}
.search-box .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.3125rem;
  z-index: 1;
}
.search-box .form-element {
  padding-left: 1.3125rem;
  padding-right: 2.3125rem;
  font-weight: bold;
  border: none;
  border-radius: 0.25rem;
}
.search-box .form-element::-webkit-input-placeholder {
  color: #D73648;
}

.search-box .form-element:-moz-placeholder {
  color: #D73648;
}

.search-box .form-element::-moz-placeholder {
  color: #D73648;
}

.search-box .form-element:-ms-input-placeholder {
  color: #D73648;
}

.category-list {
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.category-list .cat-arrow {
  height: 0.81rem;
  margin: 0 1.12rem;
}
.category-list span {
  min-width: max-content;
}

.percent-indicator {
  gap: 0.625rem;
}

.circular-progress {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  --percent-color: #D73648;
}
.circular-progress.full {
  --percent-color: #85A352;
}
.circular-progress .circular-progress-circle {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  border-radius: 50%;
  overflow: hidden;
}
.circular-progress .circular-progress-circle .segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--percent-color);
  transform-origin: 0 0;
}
.circular-progress .circular-progress-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.375rem;
  height: 1.375rem;
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
  border-radius: 50%;
}

.subnavigation {
  position: sticky;
  top: calc( 4.62rem - 5px );
  z-index: 5;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}