html {
  font-size: 16px;
}

body {
  background-color: #141414;
  color: #F8F8F8;
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------- */

/*MW-Notificaiton Banner CSS */
/* Common, default styles for the notification box */

/* change the background color by editing "background"  */
/* change the text color by editing "color"  */
.ns-box {
  position: relative;
  background: rgba(192, 57, 43,0.85);
  padding: 10px 20px 20px 20px;
  line-height: 1.4;
  z-index: 1000;
  pointer-events: none;
  color: rgba(250,251,255,0.95);
  font-size: 85%;
  border-bottom: 1px solid #DDD;
}

.ns-box.ns-show {
  pointer-events: auto;
}

.ns-box a {
  color: inherit;
  opacity: 0.7;
  font-weight: 700;
}

.ns-box a:hover,
.ns-box a:focus {
  opacity: 1;
}

.ns-box p {
  margin: 0;
}

.ns-box.ns-show,
.ns-box.ns-visible {
  pointer-events: auto;
}

.ns-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 4px;
  top: 4px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ns-close:hover,
.ns-close:focus {
  outline: none;
}

.ns-close::before,
.ns-close::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #6e6e6e;
}

.ns-close:hover::before,
.ns-close:hover::after {
  background: #fff;
}

.ns-close::before {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg);
}

.ns-close::after {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg);
}

.ns-box-inner i {
  color: #fff;
  font-size: 3.8em;
}

.megaphone:before {
  content:'\1F4E3';
  font-family: "entypo";
  font-size: 2.2em;
}

/* Top bar notifications */
.ns-box.ns-bar {
  top: 0;
  left: 0;
  width: 100%;
}

.ns-bar .ns-close {
  background: transparent;
  margin-top: 15px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ns-bar .ns-close::before,
.ns-bar .ns-close::after {
  background: #b7b5b3;
}

[class^="ns-effect-"].ns-bar.ns-hide,
[class*=" ns-effect-"].ns-bar.ns-hide {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/* Slide on top */
.ns-effect-slidetop {
  box-shadow: inset 5.4em 0 rgba(0,0,0,0.1);
}

.ns-effect-slidetop .icon {
  position: absolute;
  display: block;
  font-size: 109%;
  top: 50%;
  left: 1em;
  -webkit-transform: translate3d(0,-20%,0);
  transform: translate3d(0,-20%,0);
}

.ns-effect-slidetop p {
  padding: 0 3.2em;
  font-size: 1.2em;
  display: inline-block;
}

.ns-effect-slidetop .ns-close::before,
.ns-effect-slidetop .ns-close::after {
  width: 2px;
  background: #fff;
}

.ns-effect-slidetop .ns-close:hover::before,
.ns-effect-slidetop .ns-close:hover::after {
  background: #fff;
}

.ns-effect-slidetop.ns-show .icon,
.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animScaleUp;
  animation-name: animScaleUp;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animFade;
  animation-name: animFade;
}

@-webkit-keyframes animScaleUp {
  0% { opacity: 0; -webkit-transform: translate3d(0,-50%,0) scale3d(0,0,1); }
  100% { opacity 1; -webkit-transform: translate3d(0,-50%,0) scale3d(1,1,1); }
}

@keyframes animScaleUp {
  0% { opacity: 0; -webkit-transform: translate3d(0,-50%,0) scale3d(0,0,1); transform: translate3d(0,-50%,0) scale3d(0,0,1); }
  100% { opacity 1; -webkit-transform: translate3d(0,-50%,0) scale3d(1,1,1); transform: translate3d(0,-50%,0) scale3d(1,1,1); }
}

.ns-effect-slidetop.ns-show,
.ns-effect-slidetop.ns-hide {
  -webkit-animation-name: animSlideTop;
  animation-name: animSlideTop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@-webkit-keyframes animSlideTop {
  0% { -webkit-transform: translate3d(0,-100%,0); }
  100% { -webkit-transform: translate3d(0,0,0); }
}

@keyframes animSlideTop {
  0% { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
  100% { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}

/* ------------------------------- */

/* -- drawer -- */
.sc-drawer {
  background-color: #303030;
}
/** ----------- */

.header-link {
  padding: 6px 8px;
}

.custom-select-container {
  display: flex;
  padding-right: 10px;
}

@media (min-width: 769px) {
  select[name="locale-picker"] {
    display: none;
  }
}

.locale-picker-selector {
  position: inherit !important;
}

.custom-select-container {
  width: fit-content !important;
}

.custom-select-container.is-open .custom-select-panel {
    max-height: 20rem !important;
}
.custom-select-container.is-open .custom-select-panel::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}
.custom-select-container.is-open .custom-select-panel::-webkit-scrollbar-track {
  background: #303030 !important;
}
.custom-select-container.is-open .custom-select-panel::-webkit-scrollbar-thumb {
  background: rgba(248, 248, 248, 0.10) !important;
  border-radius: 4px !important;
}
.custom-select-container.is-open .custom-select-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(248, 248, 248, 0.10) !important;
}

.custom-select-opener {
  background: none !important;
  padding: 0 !important;
}

.custom-select-panel {
  background: #303030 !important;
  transition: none !important;
  width: max-content !important;
  right: -12px !important;
  margin-top: 16px !important;
}

.custom-select-panel:lang(ar) {
  margin-left: -12px !important;
  right: auto !important;
  left: 0 !important;
}

.custom-select-option {
  text-align: center !important;
}

.custom-select-option.has-focus {
  background-color: #141414 !important;
  cursor: pointer !important;
  border-radius: 10px !important;
}

.header-link:hover {
  color: #F8F8F8;
}

.main-link {
  color: #9DC0FD;
}

.main-link:hover {
  color: #F8F8F8;
}

input[type="search"] {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
}

input[type="search"]::-webkit-search-cancel-button {
  /* Your styles here */
  appearance: none;
  height: 16px;
  width: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.3514 2.65698C13.0202 2.3257 12.485 2.3257 12.1537 2.65698L7.9999 6.8023L3.84609 2.64849C3.51481 2.3172 2.97965 2.3172 2.64837 2.64849C2.31708 2.97977 2.31708 3.51493 2.64837 3.84621L6.80218 8.00002L2.64837 12.1538C2.31708 12.4851 2.31708 13.0203 2.64837 13.3516C2.97965 13.6828 3.51481 13.6828 3.84609 13.3516L7.9999 9.19775L12.1537 13.3516C12.485 13.6828 13.0202 13.6828 13.3514 13.3516C13.6827 13.0203 13.6827 12.4851 13.3514 12.1538L9.19763 8.00002L13.3514 3.84621C13.6742 3.52342 13.6742 2.97977 13.3514 2.65698Z" fill="white" fill-opacity="0.4"/></svg>');
  cursor: pointer;
}

.search-result-text > em {
  font-weight: 700;
  padding: 0 2px;
  font-style: normal;
  line-height: 150%;
  background-color: #702D34;
}

/* article */

.article-body * {
  background-color: transparent !important;
  color: #F8F8F8 !important;
}

.article-body h2 {
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 32px !important;
  margin: 24px 0 16px !important;
}

.article-body h3 {
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 28px !important;
  margin: 24px 0 16px !important;
}

.article-body h4 {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  margin: 24px 0 16px !important;
}

.article-body b, .article-body strong {
  font-weight: 500 !important;
}

.article-body i, .article-body em {
  font-style: italic !important;
}

.article-body a, .article-body a * {
  color: #9DC0FD !important;
}

.article-body img {
  max-width: 100% !important;
  height: auto !important;
  margin: 24px auto !important;
}

/* article vote up and down */

.vote-button:hover {
  background-color: #F8F8F8;
  color: #141414;
}
.vote-button[aria-pressed=true] {
  background-color: #F8F8F8;
  color: #141414;
}

/* search results */

.search-result-link {
  color: #9DC0FD;
}

.search-result-link:hover {
  color: #F8F8F8;
}

.pagination-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.pagination-list li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  height: 40px;
  border: 1px solid #F8F8F8;
  border-radius: 20px;
  cursor: pointer;
  font-size: 15px;
}

.pagination-list li:hover {
  background-color: #F8F8F8;
  color: #141414;
}

.pagination-list a [aria-hidden] {
  display: none;
}

/* zendesk breadcrumbs */

.breadcrumbs {
  display: inline-flex;
  gap: 12px;
  opacity: 0.6;
  flex-shrink: 0;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.breadcrumbs > li:not(:first-child)::before {
  content: '>';
  margin-right: 8px;
}

/* zendesk article */

.article-body ul, .article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul, [dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol, .article-body li > ul, .article-body li > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body ol {
  list-style-type: decimal !important;
}

.article-body a {
  color: $brand_color;
  text-decoration: underline;
}

.article-body code {
  background: #141414;
  border: 1px solid #141414;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #141414;
  border: 1px solid #141414;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #141414;
  color: #fff;
  font-style: italic;
  padding: 0 15px;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-content {
  line-height: 1.6;
  word-wrap: break-word;
}

/* zendesk search autocomplete */

zd-autocomplete {
  margin-top: 8px;
  margin-left: -1em;
  display: flex;
  width: 524px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  background-color: #303030;
  border-radius: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);

  @media (max-width: 1023px) {
    left: 20px !important;
    width: calc(100% - 40px) !important;
    margin: 20px auto !important;
  }
}

zd-autocomplete-header {
  border-bottom: none;
  display: inline;
  color: #F8F8F8;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  padding: 0 0 16px;
  width: 100%;
  border-bottom: 1px solid rgba(248, 248, 248, 0.10);
}

zd-autocomplete-announcement {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

zd-autocomplete-option {
  cursor: pointer;
  color: #F8F8F8;
  display: block;
  font-size: 13px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  padding: 8px;
}

zd-autocomplete-option[aria-selected=true] {
  background-color: #303030;
}

zd-autocomplete-option:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #303030;
}

zd-autocomplete-option em {
  font-style: normal;
  font-weight: bold
}

zd-autocomplete-option zd-autocomplete-breadcrumbs {
  color: #F8F8F8;
  font-size: 80%
}

zd-autocomplete-multibrand {
  border-bottom: 1px solid rgba(248, 248, 248, 0.10);
  color: #F8F8F8;
  width: 100%;
  display: block;
  padding: 20px;
  cursor: pointer;
  font-size: 13px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: -2.5em;
}

/*last multibrand*/
zd-autocomplete-multibrand:last-child {
  border-bottom: none;
}

zd-autocomplete-multibrand[aria-selected=true] {
  background-color: #303030;
}

zd-autocomplete-multibrand:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px
}

zd-autocomplete-multibrand em {
  font-style: normal;
  font-weight: bold
}

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
  color: #9DC0FD;
  font-size: 15px;
  padding-bottom: 4px;
  text-decoration: underline;
}

zd-autocomplete-multibrand zd-autocomplete-breadcrumbs-multibrand {
  color: #F8F8F8;
  opacity: 0.6;
  font-size: 13px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

zd-autocomplete-multibrand zd-autocomplete-community-breadcrumbs-multibrand {
  padding-left: 16px
}

/***** Attachments *****/

/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item .attachment-icon {
  color: #F8F8F8;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item .attachment-icon {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #fff;
}

/***** Forms *****/

.form > form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #303030;
}

.tox-edit-area__iframe {
  background: #141414;
  color: #F8F8F8;
}

.request_description_ifr {
  background: #141414;
  color: #F8F8F8;
}

.form > form p[id*="_hint"] {
  color: #F8F8F8;
  opacity: 60%;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}

.form > form div[id*="_error"] {
  color: #FA5365;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  font-size: 12px;
}

.form-field input::placeholder {
  opacity: 0.5;
}

.form-field label {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.form-field input {
  display: flex;
  padding: 10px 16px;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-radius: 20px;
  background: #141414;
}

.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid #666666;
}

.form-field .nesty-input {
  display: flex;
  padding: 10px 16px;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-radius: 20px;
  background: #141414;
  color: #F8F8F8;
  min-height: 40px;
  border: none;
}

.form-field .nesty-input::after {
  margin-right: 8px;
}

div[role=application] {
  border: none !important;
  outline: 1px solid #141414 !important;
  border-radius: 20px !important;
  resize: none !important;
  height: 220px !important;
}

.wysiwyg-icon-formats {
  background-image: none !important;
}

div[role=toolbar] {
  display: flex !important;
  border-bottom: none !important;
}

div[role=toolbar] span[role=button] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-bottom: none !important;
}

div[role=toolbar] > span[role=button]:hover, div[role=toolbar] > span > span[role=button]:hover {
  border-bottom: 1px solid #F8F8F8 !important;
}

div[role=toolbar] > span[role=button]:focus, div[role=toolbar] > span > span[role=button]:focus {
  border-bottom: 1px solid #F8F8F8 !important;
}

div[role=toolbar], div[role=toolbar] * {
  background: #141414 !important;
  border-bottom-color: rgba(#F8F8F8, 0.7) !important;
  color: #F8F8F8 !important;
}

div[role=toolbar] span[role=menu], div[role=toolbar] span[role=menu] * {
  background-color: #303030 !important;
}

div[role=application] div[role=form] {
  background-color: #141414 !important;
  border-bottom-width: 0 !important;
}

div[role=application] div[role=form] span[role=button]:last-child {
  color: #F8F8F8 !important;
}

div[role=toolbar] span[role=menu][aria-hidden=false] {
  width: 100px !important;
  display: flex !important;
  padding: 8px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  border-radius: 8px !important;
  border: 1px solid #141414 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
  cursor: pointer !important;
}

#hc-wysiwyg [role=separator] {
  background: #F8F8F8 !important;
  opacity: 0.2 !important;
  display: flex !important;
  height: 12px !important;
  align-self: center !important;
}

#hc-wysiwyg [class^=wysiwyg-icon-] {
  border: none !important;
}

#hc-wysiwyg [class^=wysiwyg-icon-]:hover, #hc-wysiwyg [class^=wysiwyg-icon-][aria-selected=true] {
  border: 1px solid #F8F8F8 !important;
}

.nesty-panel {
  background: #141414;
  border-radius: 20px;
  padding: 10px 16px;
  border-color: #303030;
  border-width: 2px;
}

.nesty-panel::-webkit-scrollbar {
  background-color: #141414;
  width: 8px;
  border-radius: 20px;
}
.nesty-panel::-webkit-scrollbar-thumb {
  background-color: #303030;
  border-radius: 20px;
}

.nesty-panel ul {
  background: #141414;
  color: #F8F8F8;
}
.nesty-panel li {
  color: #F8F8F8;
  background-color: #141414;
  padding-left: 12px !important;
}
.nesty-panel li:hover {
  background: #303030;
  border-radius: 20px;
}
.nesty-panel li:focus {
  background: #303030;
  border-radius: 20px;
}

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

.form-field textarea {
  vertical-align: middle;
  display: flex;
  padding: 10px 16px;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-radius: 20px;
  background: #141414;
  height: 80px;
}

.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}


.form .suggestion-list label {
  border-bottom: 1px solid #F8F8F8;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.upload-dropzone {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px dashed #F8F8F8;
}

.upload-dropzone span {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
}

.upload-dropzone span a {
  color: #9DC0FD;
  text-decoration: underline;
}

.upload-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  opacity: 60%;
}
.upload-item:hover {
  opacity: 100%;
  background: none;
}

.upload-item-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.upload-item .upload-link {
  width: 100%;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: inherit;
}
.upload-item .upload-remove {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-item .upload-remove:hover {
  color: #F8F8F8;
}

.upload-item .upload-progress {
  background-color: #F8F8F8;
}

.form > form input[type="submit"] {
  display: flex;
  height: 41px;
  cursor: pointer;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 41px;
  background: #79943D;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;

  @media (max-width: 1023px) {
    width: 100%;
  }
}
.form > form input[type="submit"]:hover {
  background: #5E7826;
}

span.optional {
  padding-left: 3px;
}
