:root {
  --primary-color: #337f5d;
  --primary-color-s: #ffffff;
  --secondary-color: #001F3F;
  --light-secondary-color: #005fbf;
  --secondary-color-s: #dddddd;
  --link-color: #005fbf;
  --link-secondary-color: #7C68BA;
  --nav-color: rgb(32, 32, 32);
  --white-color: #ffffff;
  --white-text-color: rgba(255, 255, 255, 0.87);
  --black-color: #333333;
  --gray-color: #757575;
  --light-gray-color: #ccc;
  --green-color: rgb(67, 187, 65);
  --blue-color: rgb(0, 140, 135);
  --orange-color: rgb(204, 75, 0);
  --red-color: rgb(163, 15, 12);
  --pink-color: rgb(147, 112, 219);

  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;

  color: #333;
  background-color: #ededed;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

#app span,
#app b,
#app u,
#app i {
  font-size: inherit;
}

*:focus,
button[type]:focus,
button:focus,
input:focus {
  outline: var(--primary-color) solid;
  outline-offset: 1px;
}

[role="alert"]:empty {
	display: none;
}

/* loading for text  */
[data-translate].text-loading,
[data-placeholder-translate].text-loading {
  color: transparent;
  background: #e0e0e0;
  background: linear-gradient(100deg, var(--white-color) 30%, #e0e0e0 50%, var(--white-color) 70%);
  background-size: 400%;

  animation: text-loading 1.2s ease-in-out infinite;
}

@keyframes text-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

a {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-secondary-color);
}

a:focus {
  box-shadow: 0 0 5px var(--link-secondary-color);
}

a[onclick] {
  cursor: pointer;
}

a.no-underline {
  text-decoration: none;
}

button,
.button {
  position: relative;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms linear;
  font-weight: bold;
  color: var(--black-color);
}

button.text-btn,
.button.text-btn {
  color: var(--primary-color);
  background: none;
  transition: all 250ms linear;
}

button.icon,
.button.icon {
  padding: 0px 10px;
  margin: auto 0;
  font-size: 1rem;
  background: none;
  color: var(--black-color);
}

button.icon:hover,
.button.icon:hover,
button.icon:focus,
.button.icon:focus {
  color: var(--primary-color);
}

button.white,
.button.white {
  background: var(--white-color);
  color: #757575;
}

button.white:hover,
.button.white:hover,
button.white:focus,
.button.white:focus {
  background: #e1e1e1;
  color: var(--black-color);
}

button.white.active,
.button.white.active {
  color: var(--black-color);
}

button[disabled],
button[disabled]:hover,
button[disabled]:focus {
  background: var(--light-gray-color);
  color: var(--gray-color);
  cursor: default;
}

button.loading,
button.loading:hover,
button.loading:focus {
  color: transparent !important;
  display: inline-block;
}

button.loading:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f3f4";
  display: block;
  vertical-align: middle;
  color: var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.5rem;
  animation: loading-spin 1s ease-in-out infinite;
}

select {
  -webkit-appearance: initial;
  -moz-appearance: initial;
  appearance: initial;
}

input,
textarea,
select {
  padding: 10px 15px 8px 15px;
  border-radius: 3px;
  border: 2px solid #757575;
  color: var(--black-color);
  background: var(--white-color);
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

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

input[type="checkbox"],
input[type="radio"] {
  min-width: auto;
}

input:focus,
textarea:focus,
select:focus {
  border: 2px solid var(--primary-color);
}

hr {
  border-color: rgba(0, 0, 0, .12);
  margin: 0;
  border-width: 1px 0 0;
  width: 100%;
}

.button.uppercase,
button.uppercase {
  padding: 12px 26px;
}

.uppercase {
  text-transform: uppercase;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: .75rem !important;
}

.m-2 {
  margin: 1.5rem !important;
}

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

.p-1 {
  padding: .75rem !important;
}

.p-2 {
  padding: 1.5rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.p-4 {
  padding: 4.5rem !important;
}

.pl-1 {
  padding-left: .75rem !important;
}

.pl-2 {
  padding-left: 1.5rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.pl-4 {
  padding-left: 4.5rem !important;
}

.pr-1 {
  padding-right: .75rem !important;
}

.pr-2 {
  padding-right: 1.5rem !important;
}

.pt-1 {
  padding-top: .75rem !important;
}

.pt-2 {
  padding-top: 1.5rem !important;
}

.pb-1 {
  padding-bottom: .75rem !important;
}

.pb-2 {
  padding-bottom: 1.5rem !important;
}

.px-1 {
  padding-left: .75rem !important;
  padding-right: .75rem !important;
}

.px-2 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-1 {
  padding-top: .75rem !important;
  padding-bottom: .75rem !important;
}

.py-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.mt-05 {
  margin-top: 0.375rem !important;
}

.mt-1 {
  margin-top: .75rem !important;
}

.mt-2 {
  margin-top: 1.5rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4.5rem !important;
}

.mt-5 {
  margin-top: 9rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.ml-05 {
  margin-left: 0.375rem !important;
}

.ml-1 {
  margin-left: .75rem !important;
}

.ml-2 {
  margin-left: 1.5rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-05 {
  margin-right: 0.375rem !important;
}

.mr-1 {
  margin-right: .75rem !important;
}

.mr-2 {
  margin-right: 1.5rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mr-4 {
  margin-right: 4.5rem !important;
}

.my-1 {
  margin-top: .75rem !important;
  margin-bottom: .75rem !important;
}

.my-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mx-1 {
  margin-left: .75rem !important;
  margin-right: .75rem !important;
}

.mx-2 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .75rem !important;
}

.mb-2 {
  margin-bottom: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4.5rem !important;
}

.mb-5 {
  margin-bottom: 9rem !important;
}

.flex {
  display: flex !important;
}

.overflow-auto {
  overflow: auto;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33.3333%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.min-vh-20 {
  min-height: 20vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.h-25 {
  height: 25%;
}

.h-33 {
  height: 33.3333%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

.clear {
  clear: both;
}

.clear::after {
  content: ' ';
  display: block;
  clear: both;
}

.black-background {
  background: var(--black-color);
}

.text-white {
  color: var(--white-color) !important;
}

a.text-white:hover {
  color: var(--link-secondary-color) !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-font-bold {
  font-family: "Trade Gothic Bold Condensed No20", Arial Narrow, sans-serif;
}

.text-small {
  font-size: .75rem !important;
  line-height: 1rem;
}

.text-small a,
.text-small p,
.text-small span,
.text-small div {
  font-size: 1em;
}

.text-slightly-smaller {
  font-size: .9rem !important;
  line-height: 1rem;
}

.text-medium {
  font-size: 1.25rem !important;
  line-height: 1.5rem;
}

.text-large {
  font-size: 1.75rem !important;
  line-height: 2rem;
}

.text-xl {
  font-size: 2.75rem !important;
  line-height: 3.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-primary-color {
  color: var(--primary-color);
}

.text-green {
  color: var(--green-color);
}

.text-blue {
  color: var(--blue-color);
}

.text-orange {
  color: var(--orange-color);
}

.text-red {
  color: var(--red-color);
}

.text-teal-300 {
  color: rgba(0, 208, 200, 1);
}

.text-green-400 {
  color: rgba(0, 207, 99, 1);
}

.text-yellow-600 {
  color: rgba(255, 176, 0, 1);
}

.text-red-700 {
  color: rgba(235, 61, 26, 1);
}

.text-shadow {
  text-shadow: 0 0 3px var(--black-color);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group.required.invalid input,
.form-group.required.invalid textarea,
.form-group.required.invalid select {
  border-color: var(--red-color);
}

.checkbox-group.required.invalid input {
  box-shadow: 0px 0px 0px 2px var(--red-color);
}

.form-group .label {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
}

.form-group button:last-child,
.form-group .button:last-child,
.form-group input:last-child {
  margin-right: 0;
}

.form-group.right {
  justify-content: flex-end;
}

.form-group input[type="file"]:focus+div label.outline-rounded-btn.black-color {
  background: var(--black-color);
  color: var(--white-color);
  box-shadow: 0 0 5px var(--black-color);
}

.form-group.right button,
.form-group.right .button,
.form-group.right input {
  margin-right: 0;
  margin-left: 15px;
}

.form-group .multiselect-scroll {
  max-height: 125px;
  overflow-y: auto !important;
}

.auto-complete-input {
  position: relative;
  display: flex;
  flex-direction: column;
}

.auto-complete-input input {
  padding: 0.5em 1em;
  font-size: 1em;
  line-height: 1.2;
}

.auto-complete-input .result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 120px;
  max-height: 200px;
  overflow: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #1a1a1a;
  transform: translate(0, 100%);
  z-index: 9999;
}

.auto-complete-input .result-list li {
  list-style: none;
  padding: 0.5em 1em;
  font-size: 1em;
  line-height: 1.2;
}

.auto-complete-input .result-list li:hover,
.auto-complete-input .result-list li.auto-complete-focus {
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
}

.input-group {
  border-bottom: 2px solid #757575;
  overflow: hidden;
  display: flex;
  background: var(--white-color);
}

.input-group div.icon {
  margin: auto 0;
  padding: 0 0 0 16px;
}

.input-group input,
.input-group textarea,
.input-group select {
  border-radius: 0;
  border: none;
  padding: 10px 15px 8px 15px;
  background: transparent;
  min-width: 250px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.input-group input:focus,
.input-group textarea:focus {
  border: none;
}

.input-group:hover,
.input-group:focus {
  border-bottom: 2px solid var(--primary-color);
}

.input-group.large input,
.input-group.large textarea,
.input-group.large select {
  font-size: 1.25rem;
}

.input-group.large .icon {
  font-size: 1rem;
}

.headline {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

table {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--white-color);
}

table th {
  font-size: 18px;
  color: var(--white-color);
  line-height: 1.4;
  background-color: var(--primary-color);
  padding-top: 16px;
  padding-bottom: 16px;
}

table td {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
}

table td:nth-child(1) {
  padding-left: 32px;
}

table tr:nth-child(2n) {
  background-color: #e7f0ef;
}

.text-normal {
  font-weight: normal;
}

.bold,
.text-bold {
  font-weight: 700;
}

.list {
  line-height: 20px;
}

.list li:first-child {
  border-top: 1px solid #ccc;
}

.list li {
  display: flex;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

.list .list-icon {
  display: block;
  margin: auto 12px auto 0;
  font-size: 24px;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  text-align: center;
}

.list .list-icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.list .list-meta {
  margin: auto 0 auto auto;
}

.contain-image {
  width: 100%;
  object-fit: contain;
  height: auto !important;
}

/* Utilities - Checkboxes */
.checkbox {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  line-height: 30px;
}

.checkbox:before {
  content: '';
  display: block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 7px;
  left: 7px;
  background-color: var(--white-color);
  border: 1px solid #222222;
  border-radius: 2px;
}

.checkbox.checkbox-round:before {
  border-radius: 100%;
}

.checkbox.active:before {
  background-color: #222222;
  border: 2px solid #222222;
  box-shadow: inset var(--white-color) 0 0 0 2px;
}

.main-wrapper h2,
.main-wrapper h3,
.main-wrapper h4 {
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--primary-color-s);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-color);
}

.btn-primary.loading::before {
  color: var(--primary-color-s);
}

.btn-light-primary {
  background: #00D0C8;
}

.btn-light-primary:hover,
.btn-light-primary:focus {
  opacity: 0.75;
}

.btn-white-primary {
  background: var(--white-color);
  color: var(--black-color);
}

.btn-white-primary:hover,
.btn-white-primary:focus {
  opacity: 0.75;
}

.btn-grey-primary {
  background: #E1E1E1;
  color: var(--black-color);
}

.btn-grey-primary:hover,
.btn-grey-primary:focus {
  opacity: 0.75;
}

.outline-rounded-btn {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 999px;
  padding: 8px 20px;
  text-transform: none;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.outline-rounded-btn .icon {
  margin-right: .25em;
}

.outline-btn {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 2px;
  text-transform: none;
  display: inline-block;
  cursor: pointer;
  min-width: unset;
}

.outline-btn.primary-color,
.outline-rounded-btn.primary-color {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.outline-btn.primary-color:hover,
.outline-rounded-btn.primary-color:hover,
.outline-btn.primary-color:focus,
.outline-rounded-btn.primary-color:focus {
  background: var(--primary-color);
  color: var(--primary-color-s);
  box-shadow: 0 0 5px var(--primary-color);
}

.outline-btn.black-color,
.outline-rounded-btn.black-color {
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

.outline-btn.black-color:hover,
.outline-rounded-btn.black-color:hover,
.outline-btn.black-color:focus,
.outline-rounded-btn.black-color:focus {
  background: var(--black-color) !important;
  color: var(--white-color);
}

.outline-btn.black-color.loading,
.outline-btn.black-color.loading {
  color: transparent !important;
}

.outline-btn.black-color.loading::before,
.outline-rounded-btn.black-color.loading::before {
  color: var(--black-color);
}

.outline-btn.black-color.loading:hover::before,
.outline-btn.black-color.loading:focus::before,
.outline-rounded-btn.black-color.loading:hover::before,
.outline-rounded-btn.black-color.loading:focus::before {
  color: var(--white-color);
}

section.header {
  position: relative;
  color: var(--white-color);
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
}

.result-list {
  position: absolute;
  background: var(--white-color);
  left: 0;
  right: 0;
  z-index: 999;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-top-right {
  right: 0;
  top: 0;
}

.position-top-left {
  left: 0;
  top: 0;
}

div.section {
  padding: 20px 0;
}

div.card-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

a.card {
  color: var(--black-color);
  text-decoration: none;
  cursor: pointer;
}

a.card2 {
  color: var(--black-color);
  text-decoration: none;
  cursor: pointer;
}

.card2 {
  background: var(--white-color);
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  overflow: hidden;
}

.card2:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.32);
}

.card2-body {
  padding: 2px 16px;
}

.card,
a.card {
  transition: all 0.2s ease-in-out;
  background: var(--white-color);
  border-radius: 5px;
  overflow: hidden;
  display: block;
}

.card p {
  overflow: hidden;
  text-overflow: ellipsis;
}

.card.outline {
  background: var(--white-color);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.card.outline:hover,
.card.outline:focus {
  position: relative;
  transform: none;
  box-shadow: none;
}

.card.outline:focus {
  border: 1px solid var(--primary-color);
}

.card:hover,
.card:focus {
  position: relative;
  transform: translateY(-6px);
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

.card.slide:hover,
.card.slide:focus {
  position: relative;
  transform: translateX(-6px);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.18);
}

.card.row {
  display: flex;
}

.card>img {
  width: 100%;
}

.card .card-title {
  padding: 10px 15px;
}

.card .card-body {
  padding: 0px 15px 10px;
}

.card .card-content {
  padding: 10px 15px;
}

.card .card-content .card-title {
  padding: 0;
  padding-bottom: .25rem;
}

.card .card-content .card-body {
  padding: 0;
}

.loading-text-small {
  background: #e0e0e0;
  background: linear-gradient(270deg, #e0e0e0, var(--white-color));
  background-size: 400% 400%;
  padding: 0;
  height: 20px;
  width: 80%;

  -webkit-animation: loading-card 2s ease infinite;
  -moz-animation: loading-card 2s ease infinite;
  animation: loading-card 2s ease infinite;
}

.card.loading-small .card-title,
.card.loading-small .card-body {
  background: #e0e0e0;
  background: linear-gradient(270deg, #e0e0e0, var(--white-color));
  background-size: 400% 400%;

  -webkit-animation: loading-card 2s ease infinite;
  -moz-animation: loading-card 2s ease infinite;
  animation: loading-card 2s ease infinite;
}

.card.loading-small .card-title {
  margin: 10px 15px;
  padding: 0;
  height: 20px;
  width: 80%;
}

.card.loading-small .card-body {
  margin: 0px 15px 10px;
  padding: 0;
  height: 60px;
}

@-webkit-keyframes loading-card {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@-moz-keyframes loading-card {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes loading-card {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.card-menu .product {
  margin: 0;
  padding: 5px;
  flex-grow: 0;
  max-width: calc(100%/6);
  flex-basis: calc(100%/6);
}

.card-menu .product .card {
  width: 100%;
  height: 100%;
}

.card-menu .product .card img {
  width: 100%;
  height: 14vw;
  object-fit: cover;
  max-height: 260px;
}

.card-menu .product .card .card-body p {
  font-size: .85rem;
}

.secondary-background {
  background: var(--secondary-color);
  color: var(--secondary-color-s);
}

.dark-blue-back {
  background: var(--secondary-color);
  color: var(--secondary-color-s);
}

.btn-group-vertical {
  display: flex;
  flex-direction: column;
}

.btn-group-vertical button,
.btn-group-vertical .button {
  border-radius: 0;
  text-align: left;
  border-bottom: 1px solid #D5D5D5;
  padding: 15px 20px;
  font-weight: normal;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 1px;
  background: var(--white-color);
  color: var(--black-color);
}

.btn-group-vertical span {
  font-size: 0.85rem;
}

.btn-group-vertical button:first-child,
.btn-group-vertical .button:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.btn-group-vertical button:last-child,
.btn-group-vertical .button:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom: none;
}

.btn-group-vertical button.active,
.btn-group-vertical .button.active,
.btn-group-vertical[role="tablist"] .button[role="tab"][aria-selected="true"] {
  font-weight: bold;
  border-bottom: solid 2px var(--black-color);
}

.btn-group-horizontal {
  display: flex;
  flex-direction: row;
}

.btn-group-horizontal button,
.btn-group-horizontal .button {
  border-radius: 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-color);
  padding: 15px 20px;
  font-weight: normal;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 1px;
  background: var(--white-color);
  color: var(--black-color);
  flex: 1 1 auto;
}

.btn-group-horizontal span {
  font-size: 0.85rem;
}

.btn-group-horizontal button:first-child,
.btn-group-horizontal .button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.btn-group-horizontal button:last-child,
.btn-group-horizontal .button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.btn-group-horizontal button.active,
.btn-group-horizontal .button.active,
.btn-group-horizontal[role="tablist"] .button[role="tab"][aria-selected="true"] {
  font-weight: bold;
  border-bottom: solid 2px var(--white-text-color);
}

.tags {
  display: flex;
  margin: 10px 0;
}

.tags .tag,
.pill {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--black-color);
  color: var(--black-color);
  font-size: .9rem !important;
  font-weight: normal;
  text-transform: none;
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 10px;
}

.fill-pill {
  display: inline-block;
  background-color: var(--black-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: .9rem !important;
  text-transform: none;
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 10px;
  font-weight: normal;
}

.fill-pill.small {
  border: none;
  font-size: .75rem !important;
  padding: 2px 10px;
  margin-right: 0;
  font-weight: normal;
}

.fill-pill>span {
  font-size: .9rem !important;
  font-weight: normal;
}

.fill-pill.white {
  background-color: var(--white-color);
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

.pill.white {
  background: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.pill.white.active,
.button.pill.white:hover,
.button.pill.white:focus {
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--black-color);
}

.pill.active,
.button.pill:hover,
.button.pill:focus {
  background-color: var(--black-color);
  color: var(--white-color);
}

.pill.secondary-color {
  background: transparent;
  border: 1px solid var(--secondary-color-s);
  color: var(--secondary-color-s);
}

.pill.secondary-color.active,
.button.pill.secondary-color:hover,
.button.pill.secondary-color:focus {
  background-color: var(--secondary-color-s);
  border: 1px solid var(--secondary-color-s);
  color: var(--secondary-color);
}

.tags .tag .close,
.pill .close {
  color: var(--black-color);
  margin: 0 0 0 6px;
  padding: 0;
  cursor: pointer;
}

.tab {
  padding: 15px;
  text-align: center;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  color: #606060;
  background: var(--white-color);
  cursor: pointer;
  border-radius: 0;
}

a.tab {
  text-decoration: none;
}

.tab.active {
  background: var(--white-color);
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.tab:hover,
.tab:focus {
  background: #8ce4de;
}

.tab-full {
  display: flex;
}

.tab-full .tab {
  flex: 1 0 auto;
}

#search-bar {
  margin: 30px auto 0;
}

#search .has-results .input-group {
  border-bottom: 2px solid var(--primary-color);
}

#search .has-results .result-list {
  border: 2px solid var(--primary-color);
  border-top: none;
}

#search-bar input {
  width: 100%;
  font-size: 20px;
  padding: 0;
  border: 0;
}

#search-bar .form-group i {
  margin: 0 5px;
  font-size: 22px;
  color: #757575;
}

#search-bar>div {
  padding: 10px;
  display: flex;
}

#search-results {
  position: absolute;
  background: var(--white-color);
  border-width: 0 2px 2px 2px;
  border-radius: 0 0 5px 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  text-align: left;
  overflow: hidden;
}

#search-results li {
  color: var(--black-color);
}

#messages .message .row.title-back {
  background: #175384;
}

#messages .message .title {
  padding: 10px 32px;
  margin: 0 auto;
  max-width: 1680px;
  display: block;
  color: var(--white-color);
  font-size: 1.2em;
}

#messages .message .image {
  min-width: 24px;
}

#messages .message span.icon,
.step-alert .message span.icon {
  display: block;
  width: 24px;
  float: left;
  text-align: center;
  font-size: 1em;
  color: var(--black-color);
  padding: 10px 5px;
}

#messages .message .row.body-back {
  background: var(--white-color);
  border-bottom: solid 4px #175384;
}

#messages .message .card-body {
  font-size: 1rem;
}

#messages .message.warning .row.title-back {
  background: #994f4f;
  color: var(--white-color);
}

#messages .message.warning .row.body-back {
  border-bottom: solid 4px #994f4f;
}

#messages .message.info .row.title-back {
  background: var(--primary-color);
}

#messages .message.info .row.body-back {
  border-bottom: solid 4px var(--primary-color);
}

#answer-window>h2 {
  width: 100%
}

#answer-window .answer {
  position: relative;
}

#answer-window .answer.active {
  box-shadow: 0px 0px 999px 999px rgba(237, 237, 237, 0.72);
  z-index: 1;
}

a.list-item {
  color: var(--black-color);
  text-decoration: none;
}

.list-item {
  display: flex;
  cursor: pointer;
  padding: 15px;
}

.list-item:hover,
.list-item:focus {
  background-color: #ececec
}

.list-item>i {
  font-size: 24px;
  padding-right: 10px;
  width: 40px;
  text-align: center;
  margin: auto 0;
}

.list-item .title {
  font-size: 1.2em;
}

.list-item .list-meta .button,
.list-item .list-meta button {
  font-size: 1rem;
}

.float-right {
  float: right;
}

.pagination {
  font-size: 18px;
}

.pagination li {
  list-style: none;
  float: left;
}

.pagination .page-item {
  color: rgb(105, 105, 105);
  background: transparent;
  font-size: 18px;
  font-family: Roboto Condensed Bold;
  border-radius: 0;
  font-weight: normal;
}

.pagination .page-item:hover,
.pagination .page-item:focus {
  color: var(--black-color);
}

.pagination .page-item.active {
  border-bottom: 2.5px solid #3f51b5;
  background-color: transparent;
  color: var(--black-color);
}

#answer-window .answer .card {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.answer .card {
  flex-wrap: nowrap;
  flex-direction: column;
}

#answer-window .answer .card2 {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.answer .card2 {
  flex-wrap: nowrap;
  flex-direction: column;
}

.answer .answer-body a:visited {
  color: var(--link-secondary-color);
}

/* Loading */
.loading {
  display: none;
}

.loading.active {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}

section.loading.active {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
}

.loading.active .icon {
  position: absolute;
  top: 50%;
  border: 16px solid #212121;
  width: 60px;
  height: 60px;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loading-spin 2s ease-in-out infinite;
}

@keyframes loading-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#product-background {
  position: absolute;
	inset: 0 0 0 0;
  z-index: -2;
  overflow: hidden;
}

#search-header.dark::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0 0 0 0;
	background: rgba(0,0,0,0.25);
}

#product-background .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#product-background .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#product-background .filter {
  background: rgba(237, 237, 237, 1);
  background: radial-gradient(circle, rgba(237, 237, 237, 0.75) 0%, rgba(237, 237, 237, 1) 75%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Answer-Page */
.answer-response {
  margin: 20px 0
}

#answer-page p {
  margin-bottom: .6em;
}

#answer-page .answer-body img {
  max-width: 100%;
  object-fit: contain;
  height: auto !important;
}

#answer-page .list {
  font-size: 1rem;
}

#answer-page ol {
  list-style: decimal;
}

#answer-page ul {
  list-style: revert;
}

#answer-page .answer-title {
  background: var(--secondary-color);
  color: var(--secondary-color-s);
}

#answer-page .answer-body {
  line-height: 20px;
  background: var(--white-color);
}

#answer-page .answer-menu .dropdown-menu {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  background: var(--nav-color);
  transform: none;
}

spoiler {
  position: relative;
  display: block;
  min-height: 100px;
}

spoiler.hide-spoiler>*:not(overlay) {
  display: none;
}

spoiler.hide-spoiler>overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4b4b4b;
  text-align: center;
  opacity: 1;
}

spoiler>overlay {
  display: none;
}

#answer-page .back-to-top-wrapper {
  position: relative;
  height: 100%;
  pointer-events: none;
}

#answer-page .back-to-top-link {
  position: fixed;
  position: sticky;
  pointer-events: all;
  top: calc(100% - 5rem);
  display: inline-block;
  text-align: center;
  transition: -webkit-transform 80ms ease-in;
}

/* Incident-Page */
#incident-page .incident>label {
  display: block;
  font-size: 16px;
  padding-bottom: 10px;
}

#incident-page .incident .file .content {
  background: var(--white-color);
  display: block;
}

#incident-page .incident .file .triangle {
  display: flex;
  flex-direction: column;
}

#incident-page .incident .file .triangle .fill {
  height: 100%;
  background: var(--white-color);
}

#incident-page .incident .file .triangle::after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid var(--secondary-color);
  border-right: 12px solid transparent;
}

#incident-list-page tbody tr {
  cursor: pointer;
}

#incident-list-page tr:hover {
  background: lightsteelblue;
}

#incident-list-page tr.warning {
  border-left: solid 2px #f91212;
  color: #f91212;
}

#incident-list-page tr.warning td:nth-child(1) {
  padding-left: 12px;
}

#incident-list-page .list {
  background: var(--white-color);
}

#incident-list-page .list .incident {
  border-left: solid 2px transparent;
  cursor: pointer;
  color: var(--black-color);
}

#incident-list-page .list .incident .list-icon {
  margin: auto 0 !important;
}

#incident-list-page .list .incident:hover,
#incident-list-page .list a.row:focus {
  background: lightsteelblue;
}

#incident-list-page .list .incident.warning {
  border-left: solid 2px #f91212;
  color: #f91212;
}

#incident-list-page .list a,
#incident-list-page .list a.warning {
  text-decoration: none;
}

#incident-list-page .list .list-meta {
  text-align: right;
}

#incident-list-page .incident-list {
  margin-bottom: 32px;
}

#incident-list-page .incident-list .list {
  width: 100%;
}

.incident-bar .incident {
  background-color: #f91212;
  padding: 10px;
  text-align: center;
  margin: 20px auto 0;
  border-radius: 2px;
  overflow: hidden;
  display: table;
}

.incident.fixed {
  position: fixed;
  top: 50px;
  left: 50%;
  z-index: 1;
  margin: 0 auto !important;
  border-radius: 0 0 2px 2px !important;
  transform: translate(-50%, 0);
  animation: slide-in 500ms ease-out;
}

.incident-bar .incident label {
  font-size: 16px;
  color: var(--white-color);
}

.incident-thread:not(.messages-shown) {
  margin-top: 20px;
}

.incident-thread.messages-shown {
  position: relative;
  max-height: 720px;
  overflow: auto;
}

.incident-thread.messages-shown::before {
  content: "";
  position: sticky;
  background: linear-gradient(rgba(237, 237, 237, 1), rgba(237, 237, 237, 0));
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  width: 100%;
  z-index: 1;
  display: block;
}

.incident-thread .message .header {
  display: flex;
  justify-content: space-between;
  color: var(--white-color);
}

.incident-thread .message :not(.fa) {
  font-family: 'Montserrat', sans-serif !important;
}

.incident-thread .message.customer .header {
  background: #242424;
  color: var(--white-color);
}

.incident-thread .message.agent {
  margin-right: auto;
  border-radius: 4px 4px 4px 0;
}

.incident-thread .message.agent .header {
  background: var(--primary-color);
  color: var(--white-color);
}

.incident-thread .message.customer {
  margin-left: auto;
  border-radius: 4px 4px 0 4px;
}

.incident-thread .customer .datetime,
.incident-thread .agent .datetime {
  display: block;
  position: absolute;
  bottom: 0;
  padding: .5rem;
  transform: translate(0, -10px);
}

.incident-thread .agent .datetime {
  right: 0;
}

.incident-thread .message.customer::after,
.incident-thread .message.agent::after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: var(--white-color) transparent transparent;
  transform: translate(0, 100%);
}

.incident-thread .message.customer::after {
  right: 0;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: var(--white-color) transparent transparent;
}

.incident-thread .message {
  position: relative;
  background: var(--white-color);
  margin-bottom: 3rem;
  line-height: 1.5;
  filter: drop-shadow(3px 3px 0px var(--primary-color)) drop-shadow(2px 2px 0px var(--primary-color)) drop-shadow(1px 1px 0px var(--primary-color));
}

.incident-thread .agent.message {
  filter: drop-shadow(3px 3px 0px var(--secondary-color)) drop-shadow(2px 2px 0px var(--secondary-color)) drop-shadow(1px 1px 0px var(--secondary-color));
}

.incident-thread .message p {
  padding: 30px 10px;
}

.incident-thread .icon {
  min-width: 36px;
  min-height: 36px;
  background: #212121;
  border-radius: 50px;
  margin: auto 10px 0;
}

.incident-thread .icon {
  background: url('../images/clipart/bethesda.jpg');
  background-size: cover;
}

.incident-thread .customer .icon {
  background: #495057;
  color: var(--white-color);
  background-size: cover;
  overflow: hidden;
  font-size: 2.15em;
}

@keyframes slide-in {
  0% {
    transform: translate(-50%, -300%);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

.page .side {
  min-width: 20%;
  max-width: 20%;
  width: 20%;
}

/* search-page */
#search-page {
  font-size: 16px;
}

#search-page .side {
  margin-right: 30px;
}

#search-page .filter-nav .list {
  max-height: 200px;
  overflow-y: auto;
  border-radius: 3px;
  background: var(--white-color);
}

#search-page .filter-nav .list li.focus {
  background: var(--light-gray-color);
  outline: dotted;
}

#search-page .filter-nav .list li {
  border-bottom: none;
}

#search-page .list li:first-child {
  border-top: none;
}

#search-product-page-results .product .card {
  height: 100%;
}

#search-product-page-results .product img {
  height: 8vw;
  object-fit: cover;
  max-height: 130px;
}

#search-answer-page-results .card .card-title {
  padding: 10px 15px 0;
}

#search-page .card .card-body {
  font-size: .9rem;
}

#search-page .card .card-body>i {
  font-size: .9rem;
}

#search-answer-page-results .card.slide .image {
  display: flex;
  align-items: center;
}

#search-answer-page-results .card.slide .image img {
  border: 0;
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
}

#platform-list {
  overflow: auto;
  margin: 0 24px;
}

#platform-parent {
  position: relative;
}

#platform-parent .btn-previous {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

#platform-parent .btn-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

#home-page #answer-window .answer .card {
  min-height: 85px;
  justify-content: space-evenly;
}

#home-page #answer-window .answer .card2 {
  min-height: 85px;
  justify-content: space-evenly;
}

#home-page #answer-window .answer-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.product-view #answer-window {
  padding: 0;
  flex-wrap: unset;
  justify-content: unset;
  display: flex;
  flex-direction: column;
}

.product-view #answer-window>h2 {
  width: auto;
}

.product-view #answer-window>h4 {
  width: auto;
}

.product-view .stepper {
  position: relative;
  padding-left: 32px;
}

.product-view .stepper .step .step-content.list.answer img {
  max-width: 100%;
  object-fit: contain;
  height: auto !important;
}

.product-view .step .step-content .description,
.step .step-content .question {
  margin: 0 0 1rem 0;
}

.product-view .step .step-answers {
  margin-left: 32px;
}

.product-view .step .step-answers .answer-title {
  line-height: 1.25;
}

.product-view .stepper>.loading {
  min-height: 350px;
}

.product-view .stepper .step .form-group.required .label::after {
  content: '*';
}

.product-view .stepper .step .step-content.list li {
  display: list-item;
  border: none;
}

.product-view span.answer-title {
  font-size: 1.2rem;
}

.product-view .answer-product {
  padding-bottom: 0;
  font-size: 12px;
}

.product-view .answer .answer-date {
  font-size: 12px;
}

.breadcrumb {
  position: relative;
}

.breadcrumb::after,
.product-view .stepper::after {
  position: absolute;
  content: ' ';
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  margin-left: 12px;
  border-left: 1px solid var(--primary-color);
}

.product-view .stepper::after {
  border-left: 1px dashed var(--primary-color);
}

.breadcrumb .step.disabled {
  color: #a1a1a1;
}

.breadcrumb .step .step-title {
  text-align: left;
  position: relative;
  display: flex;
  padding: 0;
  background: transparent;
}

.breadcrumb .step .step-title::before {
  content: ' ';
  display: block;
  background: var(--primary-color);
  width: 14px;
  height: 14px;
  margin: auto 12px auto 6px;
  border-radius: 100px;
  flex-shrink: 0;
}

.breadcrumb .step::after {
  content: ' ';
  display: block;
  height: 2rem;
  margin-left: 12px;
  padding-left: 20px;
  padding-right: 8px;
}

.breadcrumb .step:last-child:after {
  display: none;
}

.breadcrumb .step.active .step-title::before,
.step.done .step-title::before {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 2px solid #ededed;
  box-shadow: 0 0 0px 2px var(--primary-color);
  margin: auto 10px auto 3px;
}

.breadcrumb .step.active::after,
.step.done::after {
  border-left: 1px solid var(--primary-color);
  height: 0;
}

#product-selector .page {
  display: none !important;
}

#product-selector .page.active {
  display: flex !important;
}

#home-page.home-view .product .product-status .operational,
#home-page.home-view .product .product-status .unavailable {
  display: none !important;
}

.second-nav {
  position: relative;
  color: var(--white-color);
  background-color: var(--nav-color);
  height: 60px;
  padding: 0 16px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  transition: all 175ms ease-in;
}

.second-nav.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translate(0, 0);
}

.second-nav.fixed.hide {
  transform: translate(0, -100%);
}

.second-nav .separator {
  height: 60px;
  width: 1px;
  background-color: var(--white-color);
}

.second-nav .form-group {
  margin-bottom: 0;
}

dialog {
  display: none !important;
}

dialog[open] {
  display: block !important;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

#router-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1101;
}

#router-modal {
  overflow: auto;
}

#router-modal .nav {
  margin: 0 -15px;
}

#router-modal.hidden .model {
  transform: translate(0, 100%);
}

#router-modal .modal {
  margin-top: 60px;
  border-radius: 16px 16px 0 0;
  min-height: calc(100vh - 60px);
  background: #ededed;
  overflow: hidden;
  transform: translate(0, 0);
  animation: slide-in-r 250ms ease-out;
}

@keyframes slide-in-r {
  0% {
    transform: translate(0, 200%);
  }

  100% {
    transform: translate(0, 0%);
  }
}

#modal.card {
  position: fixed;
  padding: 0;
  border: 2px solid var(--secondary-color);
  overflow-y: auto;
}

#modal.card header {
  background: #ededed;
  padding: 1.5rem;
}

#modal.card .title {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-box-orient: vertical;
}

#modal.card .body {
  display: flex;
  flex-flow: column;
  width: 845px;
  max-height: 80vh;
}

#modal.card #modal-content {
  background: var(--white-color);
  padding: 1.5rem;
  overflow: auto;
  flex-grow: 2;
}

#modal.card footer {
  background: #ededed;
  width: 100%;
  padding: 1.5rem;
}

#cp-dialog.card {
  position: fixed;
  padding: 0;
  border: 2px solid var(--secondary-color);
  overflow-y: auto;
}

#cp-dialog.card header {
  padding: 4rem 4rem 0.75rem 4rem;
}

#cp-dialog.card .body {
  display: flex;
  flex-flow: column;
  width: 630px;
  max-height: 80vh;
}

#cp-dialog.card #dialog-content {
  background: var(--white-color);
  padding: 0.75rem 4rem 1.5rem 4rem;
  overflow: auto;
  flex-grow: 2;
  line-height: 1.25;
}

#cp-dialog.card footer {
  width: 100%;
  padding: 1.5rem 4rem 4rem 4rem;
}

#cp-dialog.card footer button {
  min-width: 200px;
}

#cp-image-viewer {
  max-width: 100vw;
  max-height: 100vh;
  height: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

#cp-image-viewer::backdrop {
  background: rgba(0,0,0,0.90);
}

#cp-image-viewer header {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 1.5rem;
}

#cp-image-viewer .title {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-box-orient: vertical;
}

#cp-image-viewer .body {
  display: flex;
  flex-flow: column;
  height: 100%;
}

#cp-image-viewer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: auto;
  overflow: auto;
}

#cp-image-viewer-content img {
  transition: all ease-out 275ms;
}

.dropdown-group {
  position: relative;
}

.dropdown-group .dropdown-menu.top {
  position: absolute;
  right: 0;
  background: var(--white-color);
  transform: translate(0%, -140%);
  z-index: 999;
  border: 1px solid var(--black-color);
  min-width: 250px;
}

#snackbar .card {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 344px;
  min-height: 48px;
  background: var(--black-color);
  color: var(--white-color);
  z-index: 9999;
  animation: slide-in-snackbar 250ms ease-out;
}

#snackbar .card .message {
  padding: 16px;
  line-height: 1.35;
  word-break: break-word;
}

@keyframes slide-in-snackbar {
  0% {
    transform: translate(-50%, 200%);
  }

  100% {
    transform: translate(-50%, 0%);
  }
}

#side-answer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 2rem;
}

#side-answer .card2 {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0px 0px 999px 999px rgba(237, 237, 237, 0.72);
  max-height: 100%;
}

#side-answer .body {
  overflow: auto;
}

#search-header {
  min-height: 225px;
}

.search-header .pill.white {
  background: rgba(0, 0, 0, 0.3);
}

.my-support-header-button.unread[data-unread]::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f12a";
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 8px;
  border-radius: 100%;
  background: var(--red-color);
  color: var(--white-color);
  font-size: 0.9em;
  font-weight: bold;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 15px
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 15px;
  border: 5px solid var(--white-color);
  background-color: var(--gray-color);
}

details.style-2 summary::marker {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f054";
}

details.style-2[open] summary::marker {
  content: "\f078";
}

details.style-2 summary {
  padding: .75em;
  cursor: pointer;
}

details.style-2 summary>span {
  margin-left: 0.7em;
}

details.outline-collapsible {
  border: 2px solid #aaa;
  border-radius: 0.5em;
}

details.outline-collapsible[open] {
  padding: 0 .75em .75em .75em;
}

details.outline-collapsible[open] summary {
  border-bottom: 2px solid #aaa;
  padding: .75em 0;
  margin-bottom: .75em;
}

details.outline-collapsible.warning {
  border-color: var(--orange-color);
}

details.outline-collapsible.warning[open] summary {
  border-color: var(--orange-color);
}

details.outline-collapsible.important {
  border-color: var(--red-color);
}

details.outline-collapsible.important[open] summary {
  border-color: var(--red-color);
}

details.gray-collapsible {
  background: rgba(0, 0, 0, 0.075);
  border-radius: 0.5em;
}

details.gray-collapsible[open] {
  padding: 0 .75em .75em .75em;
}

details.gray-collapsible>summary {
  padding: .75em;
  cursor: pointer;
}

details.gray-collapsible[open]>summary {
  padding: .75em 0;
}

details.gray-collapsible:hover {
  background: rgba(0, 0, 0, 0.1);
}

details.link-collapsible>summary>span {
  color: var(--link-color);
  text-decoration: underline;
  cursor: pointer;
}

details.link-collapsible>summary>span:hover {
  color: var(--pink-color);
}

blockquote {
  border-left: 5px solid var(--gray-color);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: auto;
}

.bing-reset {
  box-sizing: border-box !important;
}

/* rn_DevelopmentHeader hide */
#rn_DevelopmentHeader {
  display: none;
}

/* additional icons */
.fab.fa-nintendo-switch {
  display: flex;
  height: 3.5rem;
  align-items: center;
}

.fab.fa-nintendo-switch::before {
  display: block;
  content: ' ';
  background: url('../img/switch-dark.svg') no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}

.fab.fa-epic-games {
  display: flex;
  height: 3.5rem;
  align-items: center;
}

.fab.fa-epic-games::before {
  display: block;
  content: ' ';
  background: url('../img/epic-games-logo.svg') no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}

.fab.fa-slayer-points {
  display: flex;
  height: 3.5rem;
  align-items: center;
}

.fab.fa-slayer-points::before {
  display: block;
  content: ' ';
  background: url('../img/slayer-points-icon.svg') no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}

.fab.fa-stadia-logo {
  display: flex;
  height: 3.5rem;
  align-items: center;
}

.fab.fa-stadia-logo::before {
  display: block;
  content: ' ';
  background: url('../img/stadia_logo.svg') no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}

/* Fix for icon size */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  font-size: inherit;
}
