@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap");
h1, .msm-h1 {
  font-size: 3rem;
  font-weight: 300;
}

h2, .msm-h2 {
  font-size: 2rem;
  font-weight: 300;
}

.msm-text-danger {
  color: #c23939;
  font-size: 0.8rem;
}

* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

body {
  background-color: #F9F9F9;
  color: #1b1b1b;
}

.msm-wo-borders {
  border: none !important;
}

.msm-blue-btn, .msm-orange-btn, .msm-d-gray-btn, .msm-l-red-btn, .msm-green-btn {
  padding: 0.65rem 0.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  color: #F9F9F9;
}

.msm-blue-btn {
  background-color: #004F6F;
}

.msm-orange-btn {
  background-color: #DCA817;
}

.msm-d-gray-btn {
  background-color: #707070;
}

.msm-l-red-btn {
  background-color: #D88484;
}

.msm-green-btn {
  background-color: #78CB60;
}

.msm-btn-w-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.msm-btn-w-icon img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.65rem;
}

.msm-form-option, .msm-l-form-option, .msm-m-form-option, .msm-s-form-option, .msm-form-checkbox {
  border: 1px solid #A2A2A2;
  border-radius: 3px;
  -webkit-transition-property: border-color, background-color, -webkit-box-shadow;
  transition-property: border-color, background-color, -webkit-box-shadow;
  transition-property: box-shadow, border-color, background-color;
  transition-property: box-shadow, border-color, background-color, -webkit-box-shadow;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  outline: none;
}

.msm-form-option:hover, .msm-l-form-option:hover, .msm-m-form-option:hover, .msm-s-form-option:hover, .msm-form-checkbox:hover {
  border-color: #707070;
}

.msm-form-option:focus, .msm-l-form-option:focus, .msm-m-form-option:focus, .msm-s-form-option:focus, .msm-form-checkbox:focus {
  border-color: #004F6F;
  -webkit-box-shadow: 0px 0px 0px 3px #1988B5;
          box-shadow: 0px 0px 0px 3px #1988B5;
  color: #1b1b1b;
}

.msm-form-option, .msm-l-form-option, .msm-m-form-option, .msm-s-form-option {
  padding: 0.375rem 0.75rem;
  width: 100%;
  height: 2.4rem;
}

.msm-form-option {
  width: 24rem;
}

.msm-l-form-option {
  max-width: 24rem !important;
}

.msm-m-form-option {
  max-width: 12rem !important;
}

.msm-s-form-option {
  max-width: 6rem !important;
}

.msm-form-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.msm-form-options input {
  margin-right: 0.2rem;
}

.msm-form-options label {
  margin-right: 1rem;
}

.msm-form-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
}

.msm-form-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-color: #004F6F;
  border: none;
}

.msm-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #A2A2A2;
  text-align: left;
  margin-top: 0.5rem;
}

.msm-table thead {
  background-color: #004F6F;
  color: #F9F9F9;
}

.msm-table thead th {
  font-weight: 400;
  padding: 0.65rem;
}

.msm-table tbody tr:nth-child(even) {
  background-color: #ebebeb;
}

.msm-table tbody td {
  padding: 0.4rem 0.65rem;
}

.msm-table tbody .msm-table-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.msm-table thead .msm-table-options {
    width: 2rem;
}

.msm-table tbody .msm-table-options a, .msm-table tbody .msm-table-options button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  background-color: #A2A2A2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  margin-right: 1rem;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.msm-table tbody .msm-table-options a img, .msm-table tbody .msm-table-options button img {
  width: 60%;
}

.msm-table tbody .msm-table-options a:hover, .msm-table tbody .msm-table-options button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #004F6F;
}

.msm-table-selectable > tbody > tr {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.msm-table-selectable > tbody > tr:hover {
  background-color: #b6b6b6;
  cursor: pointer;
}

.msm-tab-pane {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.msm-tab-pane .msm-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.msm-tab-pane .msm-tabs .msm-tab, .msm-tab-pane .msm-tabs .msm-tab-selected {
  padding: 0.75rem;
  color: #F9F9F9;
}

    .msm-tab-pane .msm-tabs .msm-tab {
        cursor: pointer;
        background-color: #A2A2A2;
    }
    .msm-tab-pane .msm-tabs .msm-tab:hover {
        background-color: #AdAdAd;
    }

.msm-tab-pane .msm-tabs .msm-tab-selected {
  background-color: #DCA817;
}
    .msm-tab-pane .msm-tabs .msm-tab-selected:hover {
        background-color: #ffc219;
    }

.msm-tab-pane .msm-tabs div {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin-right: 1px;
}


.msm-tab-pane .msm-tab-pane-container {
  width: 100%;
  border: 1px solid #ebebeb;
  padding: 1rem;
}

.msm-tab-pane .msm-tab-pane-container .msm-pane {
  display: none;
}

.msm-tab-pane .msm-tab-pane-container .msm-pane-selected {
  display: block;
  width: 100%;
}

.msm-warning-title-list {
  padding: 0.35rem 0.75rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
}

.msm-error-title-list {
  padding: 0.35rem 0.75rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
}

.msm-list {
  margin-top: 0.5rem;
  list-style: none;
  padding: 1rem;
  background-color: white;
  width: 50%;
}

.msm-list li {
  margin-bottom: 0.4rem;
}

.msm-feedback {
  background-color: #0F3544;
  padding: 1rem 1.25rem;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  position: fixed;
  -webkit-animation-name: animation;
          animation-name: animation;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  color: #F9F9F9;
  cursor: pointer;
  z-index: 5;
}

@-webkit-keyframes animation {
  from {
    bottom: 0px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

@keyframes animation {
  from {
    bottom: 0px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

.msm-login {
  border-radius: 3px;
  background-color: white;
  width: 425px;
  padding: 1.25rem;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 3px 3px 6px 0px #A2A2A2;
          box-shadow: 3px 3px 6px 0px #A2A2A2;
}

.msm-login .msm-login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.msm-login .msm-login-form > * {
  width: 100%;
}

.msm-login .msm-login-form img {
  width: 10rem;
  margin-bottom: 1rem;
}

.msm-login .msm-login-form h1 {
  margin-bottom: 1rem;
}

.msm-login .msm-login-form label {
  margin-bottom: 0.5rem;
}

.msm-login .msm-login-form input[type="text"] {
  margin-bottom: 1rem;
}

.msm-login .msm-login-form input[type="password"] {
  margin-bottom: 1.75rem;
}

.msm-login .msm-login-form .msm-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.msm-login .msm-login-form .msm-checkbox .msm-form-checkbox {
  margin-right: 0.75rem;
}

.msm-header {
  background-color: #DCA817;
  /*

  -webkit-box-shadow: 0px 1px 0px 0px rgba(15, 53, 68, 0.6);
          box-shadow: 0px 1px 0px 0px rgba(15, 53, 68, 0.6);
  */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  padding: 0.75rem 1.5rem;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
}

.msm-header .msm-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: 0;
}

.msm-header .msm-help-and-user {
  height: 100%;
}

.msm-header .msm-help-and-user .msm-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #F9F9F9;
  position: relative;
  cursor: pointer;
}

.msm-header .msm-help-and-user .msm-user img {
  margin-left: 1rem;
  height: 100%;
}

.msm-header .msm-help-and-user .msm-user .msm-logout {
  display: none;
  position: absolute;
  width: 9rem;
  top: 100%;
  right: 0;
  background-color: #0F3544;
  border-radius: 3px;
  text-align: center;
}

.msm-header .msm-help-and-user .msm-user .msm-logout::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #0F3544;
  right: 10px;
  top: -19px;
}

.msm-header .msm-help-and-user .msm-user .msm-logout .msm-logout-btn {
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  cursor: pointer;
  border: none;
  color: #F9F9F9;
  padding: 1rem;
}

.msm-nav {
  position: fixed;
  top: 4rem;
  bottom: 0;
  width: 12rem;
  background-color: #004F6F;
  padding-top: 0.5rem;
  z-index: 1;
}

.msm-nav .msm-nav-item a, .msm-nav .msm-nav-item-selected a {
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #F9F9F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 1rem 0.85rem;
}

.msm-nav .msm-nav-item a img, .msm-nav .msm-nav-item-selected a img {
  width: 1.65rem;
  height: 1.65rem;
  margin-right: 1rem;
}

.msm-nav .msm-nav-item {
  position: relative;
}

.msm-nav .msm-nav-item:hover {
  background-color: #0F3544;
}

.msm-nav .msm-nav-item:hover .msm-submenu {
  display: block;
}

.msm-nav .msm-nav-item .msm-submenu {
  position: absolute;
  top: 0;
  left: 12rem;
  display: none;
  width: 12rem;
  background-color: #0F3544;
}

.msm-nav .msm-nav-item .msm-submenu a {
  font-size: 0.8rem;
  color: #707070;
  padding: 0.75rem;
}

.msm-nav .msm-nav-item .msm-submenu a:hover {
  color: #F9F9F9;
}

.msm-nav .msm-nav-item-selected {
  background-color: #DCA817;
}

.msm-nav .msm-nav-item-selected .msm-submenu {
  -webkit-box-shadow: inset 0 12px 7px -13px rgba(0, 0, 0, 0.75), inset 0 -12px 7px -13px rgba(0, 0, 0, 0.75);
          box-shadow: inset 0 12px 7px -13px rgba(0, 0, 0, 0.75), inset 0 -12px 7px -13px rgba(0, 0, 0, 0.75);
  background-color: #0F3544;
}

.msm-nav .msm-nav-item-selected .msm-submenu a {
  padding: 0.75rem;
  font-size: 0.8rem;
  color: #707070;
}

.msm-nav .msm-nav-item-selected .msm-submenu .msm-submenu-item-selected {
  color: #F9F9F9;
}

.msm-nav .msm-credits {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #F9F9F9;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #0F3544;
  cursor: pointer;
}

.msm-made-by {
  position: fixed;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #F9F9F9;
  z-index: 4;
  display: none;
  border-radius: 3px;
  -webkit-box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.25);
  text-align: start;
  color: #1b1b1b;
  padding: 1rem;
}

.msm-made-by a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  color: #004F6F;
}

.msm-made-by hr {
  margin: 0.5rem 0;
}

.msm-made-by img.msm-close-credits {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.msm-wrap {
  margin-top: 4rem;
  margin-left: 12rem;
  display: block;
}

.msm-wrap .msm-content {
  padding: 1.5rem 2.5rem;
  width: 100%;
  position: relative;
}

.msm-dark-window {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(27, 27, 27, 0.5);
  z-index: 3;
}

.msm-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.msm-split .msm-split-container {
  width: 100%;
}

.msm-split .msm-split-container:not(:last-child) {
  margin-right: 1.5rem;
}

.msm-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}

.msm-title-container .msm-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.msm-title-container .msm-title .msm-h1, .msm-title-container .msm-title .msm-h2 {
  max-width: 60rem;
  line-height: 1;
}

.msm-title-container .msm-title > * {
  margin-right: 1rem;
}

.msm-title-container .msm-btns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.msm-title-container .msm-btns-container > * {
  margin-left: 1rem;
}

.msm-details {
  margin: 0 auto;
}

.msm-details .msm-details-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
}

.msm-details .msm-details-group .msm-detail {
  min-width: 10rem;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 0.5rem;
}

.msm-details .msm-details-group .msm-detail label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #707070;
}

.msm-details .msm-details-group .msm-detail p {
  margin-top: 0.1rem;
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 100%;
  word-wrap: break-word;
}

.msm-details .msm-details-group .msm-detail div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.msm-details .msm-details-group .msm-detail div p {
  margin-right: 0.5rem;
}

.msm-details .msm-details-group .msm-detail div a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  background-color: #A2A2A2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  margin-right: 1rem;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.msm-details .msm-details-group .msm-detail div a img {
  width: 60%;
}

.msm-details .msm-details-group .msm-detail div a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #004F6F;
}

.msm-details .msm-details-group .msm-detail ul {
  margin-top: 0.1rem;
  padding: 0;
}

.msm-details .msm-details-group .msm-detail ul li {
  list-style: none;
  font-size: 1.1rem;
  font-weight: 400;
}

.msm-details .msm-details-group .msm-detail ul li:not(:last-child) {
  margin-bottom: 0.2rem;
}

.msm-details .msm-details-group .msm-detail:not(:last-child) {
  padding-right: 1rem;
}

/* #region FORM */
.msm-form {
  width: 100%;
  border-top: 1px solid #ebebeb;
  margin: 1rem 0 1rem;
}

.msm-form .msm-form-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 75%;
      grid-template-columns: 25% 75%;
  padding-top: 0.4rem;
  border-bottom: 1px solid #ebebeb;
}

.msm-form .msm-form-group > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.msm-form .msm-form-group > div label {
  margin-bottom: 0.2rem;
}

.msm-form .msm-form-group > div .msm-form-option {
  margin-bottom: 0.35rem;
}

.msm-form .msm-form-group > div:not(.msm-form-option) {
  margin-bottom: 0.35rem;
}

.msm-form .msm-form-group .msm-form-option {
  margin-bottom: 0.7rem;
}

.msm-form button, .msm-form input[type="button"] {
  margin-top: 1rem;
}

.msm-form .msm-button-row {
    display: flex;
    flex-direction: row;
    margin-top: 0.35rem;
}

.msm-form .msm-button-row :nth-child(n) {
    margin-right: 0.35rem;
}


/* #endregion FORM */
/* #region INFO DELETE */
.msm-info .msm-info-row {
  margin-bottom: 0.4rem;
}

.msm-info .msm-info-row > * {
  display: inline-block;
}

.msm-info .msm-info-row label {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1b1b1b;
}

.msm-info .msm-info-danger {
  margin-top: 1rem;
  color: #c23939;
}

.msm-info .msm-info-btns {
  margin-top: 1rem;
}

/* #endregion INFO DELETE */
/* #region UPLOAD-FILE */
.msm-upload-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.msm-upload-file label {
  position: relative;
  text-align: center;
  background-color: #ebebeb;
  padding: 2rem;
  width: 100%;
  border-radius: 3px;
  border: 3px solid #A2A2A2;
  outline: 3px dashed #A2A2A2;
  outline-offset: -15px;
  color: #707070;
  font-weight: bold;
  margin-bottom: 1rem;
}

.msm-upload-file input[type="file"] {
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.msm-upload-file span {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* #endregion UPLOAD-FILE */
/* #region FILTERS */
.msm-show-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.msm-show-filters > * {
  margin-right: 1rem;
}

.msm-filters {
  width: 64rem;
  position: fixed;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #F9F9F9;
  z-index: 4;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 3px;
  -webkit-box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.25);
}

.msm-filters .msm-filters-title {
  width: 100%;
  padding: 1rem;
  border-bottom: 2px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.msm-filters .msm-filters-title h2 {
  font-size: 2rem;
  font-weight: 300;
}

.msm-filters .msm-filters-title div > * {
  margin-left: 0.7rem;
}

.msm-filters .msm-filters-container {
  width: 100%;
  max-height: 28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.msm-filters .msm-filters-container .msm-filter {
  width: 33.33%;
  padding: 1rem;
  border-bottom: 1px solid #A2A2A2;
}

.msm-filters .msm-filters-container .msm-filter .msm-filter-title {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-bottom: 0.5rem;
}

.msm-filters .msm-filters-container .msm-filter .msm-filter-input {
  width: 100%;
}

.msm-filters .msm-filters-container .msm-filter .msm-filter-input > * {
  width: 100%;
}

.msm-filters .msm-filters-container .msm-filter .msm-filter-input .msm-range-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.msm-filters .msm-filters-container .msm-filter .msm-filter-input .msm-range-input div label {
  margin-right: 0.3rem;
}

table[sort-table] thead th[sort-column=""] {
    cursor:pointer
}


.msm-error-box {
    color: rgb(239,68,68);
    background-color: rgba(239,68,68,.2);
    border:  2px solid rgb(239,68,68);
    padding: 16px;
}

/*# sourceMappingURL=site.css.map */