@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");
.motivation-box {
  background: linear-gradient(
    135deg,
    rgb(254, 243, 199) 0%,
    rgb(255, 255, 255) 100%
  );
  border: 1px solid rgb(252, 211, 77);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0px;
  text-align: center;
}
.motivation-box p {
  font-size: 18px;
  font-weight: 600;
  color: rgb(146, 64, 14);
  margin: 8px 0px;
  line-height: 1.5;
}
.motivation-box p:first-child {
  font-size: 20px;
}
.earnings-grid {
  display: flex;
  gap: 12px;
  margin: 20px 0px;
  flex-wrap: wrap;
}
.earn-card {
  flex: 1 1 0%;
  min-width: 140px;
  background: linear-gradient(
    135deg,
    rgb(240, 253, 244) 0%,
    rgb(255, 255, 255) 100%
  );
  border: 1px solid rgb(134, 239, 172);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.earn-days {
  font-size: 13px;
  color: rgb(107, 114, 128);
  margin-bottom: 6px;
}
.earn-amount {
  font-size: 22px;
  font-weight: 800;
  color: rgb(22, 163, 74);
}
@media (max-width: 480px) {
  .earnings-grid {
    flex-direction: column;
  }
  .earn-card {
    min-width: 100%;
  }
}
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0px;
}
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgb(248, 249, 255) 0%,
    rgb(255, 255, 255) 100%
  );
  border-radius: 12px;
  border-left: 4px solid rgb(26, 95, 180);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px;
  & .step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgb(26, 95, 180), rgb(13, 35, 71));
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }
  & .step-text {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(28, 33, 56);
  }
  & .attention-card {
    background: linear-gradient(
      135deg,
      rgb(255, 245, 245) 0%,
      rgb(255, 255, 255) 100%
    );
    border: 1px solid rgb(254, 202, 202);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    margin: 20px 0px;
  }
  & .attention-card strong {
    color: rgb(220, 53, 69);
    font-size: 16px;
  }
}
.spots-warning {
  display: flex;
  gap: 12px;
  margin: 20px 0px;
  flex-wrap: wrap;
}
.spots-card {
  flex: 1 1 0%;
  min-width: 200px;
  background: linear-gradient(
    135deg,
    rgb(254, 242, 242) 0%,
    rgb(255, 255, 255) 100%
  );
  border: 1px solid rgb(252, 165, 165);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.spots-card.green {
  background: linear-gradient(
    135deg,
    rgb(240, 253, 244) 0%,
    rgb(255, 255, 255) 100%
  );
  border-color: rgb(134, 239, 172);
}
.spots-label {
  font-size: 13px;
  color: rgb(107, 114, 128);
  margin-bottom: 4px;
}
.spots-value {
  font-size: 24px;
  font-weight: 800;
  color: rgb(22, 163, 74);
}
.spots-card.red .spots-value {
  color: rgb(220, 38, 38);
}
.lf-card {
  background: rgb(255, 255, 255);
  border-radius: 22px;
  border: 1px solid rgb(227, 230, 240);
  box-shadow:
    rgba(255, 255, 255, 0.7) 0px 1px 0px inset,
    rgba(22, 27, 56, 0.45) 0px 30px 60px -28px,
    rgba(255, 255, 255, 0.8) 0px 0px 0px 4px;
  overflow: hidden;
  font-family: Manrope, system-ui, sans-serif;
}
.lf-head {
  padding: 30px 32px 26px;
  text-align: center;
  background: linear-gradient(
    165deg,
    rgb(35, 42, 82) 0%,
    rgb(22, 27, 56) 48%,
    rgb(15, 19, 41) 100%
  ) !important;
}
.lf-title {
  margin: 0px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: rgb(255, 255, 255) !important;
}
.lf-title span {
  color: rgb(125, 211, 252);
}
.lf-urgency {
  display: block;
  text-align: center;
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  padding: 12px 15px;
  background: rgb(220, 53, 69);
  border-radius: 8px;
  margin: 10px 0px;
  animation: 1.5s ease-in-out 0s infinite normal none running lfurgency !important;
}
.lf-urgency strong {
  display: inline;
}
@media (max-width: 768px) {
  .lf-urg-line {
    display: block;
  }
}
@keyframes lfurgency {
  0%,
  100% {
    box-shadow: rgba(220, 53, 69, 0.7) 0px 0px 0px 0px;
  }
  50% {
    box-shadow: rgba(220, 53, 69, 0) 0px 0px 0px 15px;
  }
}
h1,
h2,
h3 {
  padding-bottom: 1.5rem !important;
}
a,
article,
b,
body,
div,
footer,
form,
h1,
h2,
h3,
header,
html,
i,
img,
label,
li,
nav,
p,
section,
span,
strong,
table,
time,
ul {
  margin: 0px;
  padding: 0px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
}
.cus-kicker-txt * {
  text-transform: uppercase !important;
}
.award-highlight {
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px;
  border-radius: 8px;
  padding: 12px 20px 8px;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px !important;
  text-decoration: none !important;
  color: inherit !important;
}
.award-icon {
  max-height: 25px;
  margin-right: 8px;
}
.award-text span.awardcat {
  font-weight: 700;
}
#navbar-main .navbar-right {
  align-items: center;
  float: right;
  display: flex !important;
}
#navbar-main .navbar__interact {
  display: none !important;
}
@media (max-width: 991px) {
  #navbar-main .container {
    display: flex;
    align-items: center;
  }
  #navbar-main .navbar-header {
    width: auto;
    float: left;
    margin: 0px;
  }
}
.info__interact {
  display: flex;
  gap: 10px;
}
.info__interact .material-symbols-outlined {
  font-size: 24px;
  color: rgb(68, 68, 68);
  cursor: pointer;
  user-select: none;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}
.info__interact .material-symbols-outlined:hover {
  color: rgb(0, 0, 0);
}
.story-pg .primary-heading {
  margin-bottom: 10px;
}
.footer-n__newsletter {
  background-color: rgb(51, 51, 51);
  text-align: center;
  padding: 30px 15px !important;
}
.newsletter-title {
  color: rgb(173, 173, 173);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.newsletter-input {
  flex: 1 1 0%;
  padding: 12px 15px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  outline: none;
  font-size: 14px;
  color: rgb(51, 51, 51);
}
.newsletter-btn {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  padding: 10px 25px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-btn:hover {
  background-color: rgb(34, 34, 34);
}
@media (max-width: 480px) {
  .newsletter-input,
  .newsletter-btn {
    border-radius: 4px;
  }
}
.footer-n__newsletter {
  text-align: center;
  background-color: rgb(51, 51, 51) !important;
  padding: 40px 15px !important;
  display: block !important;
}
.newsletter-title {
  color: rgb(173, 173, 173);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
}
.newsletter-fake-form {
  display: flex;
  max-width: 500px;
  margin: 0px auto;
  background: rgb(255, 255, 255);
  border-radius: 2px;
  overflow: hidden;
}
.newsletter-input {
  flex: 1 1 0%;
  padding: 12px 15px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  outline: none;
  font-size: 14px;
  background: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
}
.newsletter-btn {
  background-color: rgb(0, 0, 0);
  padding: 10px 25px;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
  color: rgb(255, 255, 255) !important;
  text-decoration: none !important;
}
.newsletter-btn:hover {
  background-color: rgb(17, 17, 17);
  color: rgb(255, 255, 255) !important;
}
@media (max-width: 480px) {
  .newsletter-fake-form {
    flex-direction: row;
    background: transparent;
    display: flex;
  }
  .newsletter-input {
    width: 100%;
    border-radius: 2px;
  }
}
#story-recom-div {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #story-recom-div {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0px 5px;
  }
  #story-recom-div [id*="template-TextElement--wrapper"] {
    padding: 8px 10px !important;
  }
}
@media (min-width: 992px) {
  #story-recom-div .ants-w-full {
    max-width: 800px !important;
    margin-left: 15px;
  }
}
.across-web {
  display: block !important;
}
.across-web-mob {
  display: none !important;
}
@media (max-width: 991px) {
  .across-web {
    display: none !important;
  }
  .across-web-mob {
    display: block !important;
  }
}
:root {
  --color-neutral: #ffffff;
  --color-neutral-10: #f7f7f7;
  --color-neutral-20: #eeeeee;
  --color-neutral-30: #d6d6d6;
  --color-neutral-40: #bbbbbb;
  --color-neutral-50: #adadad;
  --color-neutral-60: #939393;
  --color-neutral-70: #707070;
  --color-neutral-80: #595959;
  --color-neutral-90: #4a4a4a;
  --color-neutral-110: #333333;
  --color-neutral-120: #202020;
  --color-primary: #bb0000;
  --color-on-primary: #ffffff;
  --color-bg-hover: #eeeeee;
  --color-on-hover: #333333;
  --color-border: #d6d6d6;
  --color-text: #4a4a4a;
  --color-link: #0066cc;
  --color-bg-1: #ffffff;
  --color-bg-2: #f2f2f2;
  --color-bg-3: #eeeeee;
  --color-on-bg: #4a4a4a;
  --color-bg-footer: #333333;
  --color-on-footer: #d6d6d6;
  --color-color-white: #ffffff;
  --color-border-footer: #707070;
}
.topics {
  padding: 10px 0px 10px 0.3rem;
  align-items: center;
  gap: 10px;
  display: flex;
  position: relative;
}
.topics__section {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg-2);
  position: relative;
}
.topics__title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  color: rgb(74, 74, 74);
}
.topics__scroll {
  left: 1px;
  display: flex;
  overflow-y: scroll;
  position: relative;
  scrollbar-width: none;
  scroll-behavior: smooth;
  user-select: none;
  top: -1px;
  &::-webkit-scrollbar {
    display: none;
  }
}
.topics__arrow {
  display: none;
  position: absolute;
  top: 1px;
  background-color: var(--color-bg-2);
}
.topics__arrow-l {
  padding: 0px 13px 0px 0px;
  left: 0px;
  background: linear-gradient(
    to left,
    rgba(242, 242, 242, 0.5) 0%,
    rgb(242, 242, 242) 40%
  );
}
.topics__arrow-r {
  padding: 0px 6px 0px 10px;
  right: 0px;
  background: linear-gradient(
    to right,
    rgba(242, 242, 242, 0.5) 0%,
    rgb(242, 242, 242) 30%
  );
}
.topics__links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 12px;
  padding: 0px 12px;
}
.topics__links a {
  position: relative;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
  padding-right: 12px;
}
.topics__links a::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0px;
  width: 0.5px;
  height: 70%;
  background-color: var(--color-border);
}
.topics__links a:last-child::after {
  display: none;
}
.topics__links a:hover {
  text-decoration: underline;
}
.topics__content {
  overflow: hidden;
  position: relative;
}
.topics__content::before {
  content: "";
  width: 2px;
  display: block;
  background-color: var(--color-bg-2);
}
.container-topic-bar {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-topic-bar {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-topic-bar {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-topic-bar {
    max-width: 960px;
  }
}
.container-topic-bar {
  max-width: 1260px;
}
.story-set-group img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 10%;
}
@media only screen and (max-width: 960px) {
  #sideNote {
    position: initial !important;
  }
}
.story-wrapper {
  overflow: visible;
  padding-top: 0px !important;
}
.articleDetails {
  padding-top: 25px !important;
}
.related-articles--side .in-sec-story .timestamp {
  font-size: 0.781em;
  margin-right: 6px;
}
.lander-form-field .lander-submit:hover:not(:disabled) {
  filter: brightness(0.93);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.lander-form-field .lander-submit:active:not(:disabled) {
  transform: scale(0.99);
}
img.fb-comment__person-photo {
  object-fit: contain;
}
.end-line {
  padding-top: 10px;
  padding-bottom: 20px;
}
.end-line span {
  font-size: 1em;
  font-style: italic;
}
.end-line span a {
  color: rgb(16, 127, 201);
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  .mobile-pad {
    padding: 0px 20px !important;
  }
  .fb-comment__text {
    padding-right: 26px !important;
  }
}
html #mt-77785-1f6gcrwjl9-usv0nnvy4k .cus-ellip-text a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: rgb(74, 74, 74);
  font-weight: 700;
  text-align: left;
}
body {
  margin: 0px;
  padding-top: 36px;
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 20px;
  font-family: Lato, Arial, Helvetica, Arial, Tahoma, sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
#thestar-global-bar a {
  cursor: pointer;
}
#thestar-global-bar .float-left {
  float: left;
}
#thestar-global-bar .float-right {
  float: right;
}
#thestar-global-bar .clearfix::after {
  clear: both;
  height: 0px;
  line-height: 0;
  content: ".";
  display: block;
  visibility: hidden;
}
#thestar-global-bar .global-bar-overlay {
  display: none;
  position: fixed;
  inset: 0px;
  background: url("/img/overlay-bg.png") 0px 0px repeat scroll transparent;
  z-index: 99990;
}
#thestar-global-bar .global-bar-container {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  font: bold 12px / 15px Lato;
  z-index: 99999;
}
#thestar-global-bar .global-bar-color {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 36px;
  background: rgb(0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px 1px;
  z-index: 99998;
}
#thestar-global-bar .global-bar-container a {
  display: block;
  float: left;
  margin-top: 3px;
  padding: 5px 10px;
  text-decoration: none;
  color: rgb(143, 143, 143);
}
#thestar-global-bar .global-bar-container a:hover {
  color: rgb(255, 255, 255);
}
#thestar-global-bar .global-bar-container .float-left {
  margin-left: 4px;
}
#thestar-global-bar .global-bar-container .float-left .float-left {
  margin-right: 18px;
}
#thestar-global-bar .global-bar-container .float-left .float-left:last-child {
  margin-right: 0px;
}
#thestar-global-bar .global-bar-container a.btn-network-sites {
  color: rgb(255, 255, 255);
  background-color: rgb(205, 46, 46);
  border-radius: 3px;
}
#thestar-global-bar .global-bar-container a.btn-network-sites:hover {
  color: rgb(51, 51, 51);
  background-color: rgb(242, 242, 242);
}
#thestar-global-bar .global-bar-container a:hover span {
  background: url("/img/toggle_down_dark.png") 100% 50% no-repeat transparent;
}
#thestar-global-bar .global-bar-container a span,
#thestar-global-bar .global-bar-container a.btn-more:hover span {
  padding: 4px 0px 6px 13px;
  margin: 0px 0px 0px 5px;
  background: url("/img/toggle_down_light.png") 100% 50% no-repeat transparent;
}
#thestar-global-bar
  .global-bar-container
  .float-left
  .float-left
  .globalbar-dropdown {
  position: absolute;
  top: 31px;
  z-index: 1;
  width: 168px;
  padding: 8px 0px;
  color: rgb(119, 136, 153);
  background: rgb(243, 241, 241);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 3px 0px;
  display: none;
}
#thestar-global-bar
  .global-bar-container
  .float-left
  .float-left
  .globalbar-dropdown
  a {
  display: block;
  padding: 0px;
  margin: 0px;
  width: 100%;
  color: rgb(43, 42, 41);
}
#thestar-global-bar
  .global-bar-container
  .float-left
  .float-left
  .globalbar-dropdown
  a
  span {
  display: block;
  padding: 10px 0px 10px 10px;
  margin: 0px;
  background: 0px 0px;
  border-left: 5px solid rgb(227, 5, 4);
}
#thestar-global-bar
  .global-bar-container
  .float-left
  .float-left
  .globalbar-dropdown
  a:hover
  span {
  color: rgb(227, 5, 4);
  background-color: rgb(255, 255, 255);
  border-left: 5px solid rgb(255, 95, 7);
}
.global-bar-powered {
  padding: 12px;
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 0px;
  }
  #thestar-global-bar {
    display: none;
  }
}
@media screen and (max-width: 1328px) {
  #thestar-global-bar {
    display: none;
  }
  body {
    padding-top: 0px !important;
  }
}
html {
  font-family: sans-serif;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(50% - 200px);
}
body {
  margin: 0px;
}
article,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0px;
}
b,
strong {
  font-weight: 700;
}
h1 {
  margin: 0.67em 0px;
  font-size: 2em;
}
img {
  border: 0px;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0px;
  box-sizing: content-box;
}
button,
input,
select,
textarea {
  margin: 0px;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"] {
  appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input {
  line-height: normal;
}
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0px;
}
textarea {
  overflow: auto;
}
table {
  border-spacing: 0px;
  border-collapse: collapse;
}
td {
  padding: 0px;
}
@media xprint {
  *,
  ::after,
  ::before {
    color: rgb(0, 0, 0) !important;
    text-shadow: none !important;
    background: 0px 0px !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    break-after: avoid;
  }
  .navbar {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
::after,
::before {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: rgb(51, 51, 51);
  background-color: rgb(255, 255, 255);
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: rgb(51, 122, 183);
  text-decoration: none;
}
a:focus,
a:hover {
  color: rgb(35, 82, 124);
  text-decoration: underline;
}
a:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px;
}
figure {
  margin: 0px;
}
img {
  vertical-align: middle;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-width: 1px 0px 0px;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
p {
  margin: 0px 0px 10px;
}
.text-center {
  text-align: center;
}
ul {
  margin-top: 0px;
  margin-bottom: 10px;
}
ul ul {
  margin-bottom: 0px;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-lg-5,
.col-lg-7,
.col-md-12,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9,
.col-sm-12,
.col-sm-4,
.col-sm-5,
.col-sm-7,
.col-xs-12,
.col-xs-5,
.col-xs-6,
.col-xs-7 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-12,
.col-xs-5,
.col-xs-6,
.col-xs-7 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-7 {
  width: 58.3333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.6667%;
}
@media (min-width: 768px) {
  .col-sm-12,
  .col-sm-4,
  .col-sm-5,
  .col-sm-7 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-7 {
    width: 58.3333%;
  }
  .col-sm-5 {
    width: 41.6667%;
  }
  .col-sm-4 {
    width: 33.3333%;
  }
}
@media (min-width: 992px) {
  .col-md-12,
  .col-md-3,
  .col-md-4,
  .col-md-8,
  .col-md-9 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.6667%;
  }
  .col-md-4 {
    width: 33.3333%;
  }
  .col-md-3 {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .col-lg-5,
  .col-lg-7 {
    float: left;
  }
  .col-lg-7 {
    width: 58.3333%;
  }
  .col-lg-5 {
    width: 41.6667%;
  }
}
table {
  background-color: transparent;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type="checkbox"] {
  margin: 4px 0px 0px;
  line-height: normal;
}
input[type="checkbox"]:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: rgb(85, 85, 85);
  background-color: rgb(255, 255, 255);
  background-image: none;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  border-color: rgb(102, 175, 233);
  outline: 0px;
  box-shadow:
    rgba(0, 0, 0, 0.075) 0px 1px 1px inset,
    rgba(102, 175, 233, 0.6) 0px 0px 8px;
}
.form-control::-webkit-input-placeholder {
  color: rgb(153, 153, 153);
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:active:focus,
.btn:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: -2px;
}
.btn:focus,
.btn:hover {
  color: rgb(51, 51, 51);
  text-decoration: none;
}
.btn:active {
  background-image: none;
  outline: 0px;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 3px 5px inset;
}
.btn[disabled] {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.65;
}
.btn-default {
  color: rgb(51, 51, 51);
  background-color: rgb(255, 255, 255);
  border-color: rgb(204, 204, 204);
}
.btn-default:focus {
  color: rgb(51, 51, 51);
  background-color: rgb(230, 230, 230);
  border-color: rgb(140, 140, 140);
}
.btn-default:hover {
  color: rgb(51, 51, 51);
  background-color: rgb(230, 230, 230);
  border-color: rgb(173, 173, 173);
}
.btn-default:active {
  color: rgb(51, 51, 51);
  background-color: rgb(230, 230, 230);
  border-color: rgb(173, 173, 173);
}
.btn-default:active:focus,
.btn-default:active:hover {
  color: rgb(51, 51, 51);
  background-color: rgb(212, 212, 212);
  border-color: rgb(140, 140, 140);
}
.btn-default:active {
  background-image: none;
}
.btn-default[disabled]:focus,
.btn-default[disabled]:hover {
  background-color: rgb(255, 255, 255);
  border-color: rgb(204, 204, 204);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0px;
  margin: 2px 0px 0px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: rgb(255, 255, 255);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.176) 0px 6px 12px;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857;
  color: rgb(51, 51, 51);
  white-space: nowrap;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  color: rgb(38, 38, 38);
  text-decoration: none;
  background-color: rgb(245, 245, 245);
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0px;
    left: auto;
  }
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0px;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group .form-control {
  display: table-cell;
}
.input-group .form-control:first-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.nav {
  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:focus,
.nav > li > a:hover {
  text-decoration: none;
  background-color: rgb(238, 238, 238);
}
.nav > li > a > img {
  max-width: none;
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(51, 122, 183);
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.container > .navbar-header {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header {
    margin-right: 0px;
    margin-left: 0px;
  }
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0px;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: rgb(0, 0, 0);
  text-shadow: rgb(255, 255, 255) 0px 1px 0px;
  opacity: 0.2;
}
.close:focus,
.close:hover {
  color: rgb(0, 0, 0);
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
}
.clearfix::after,
.clearfix::before,
.container-fluid::after,
.container-fluid::before,
.container::after,
.container::before,
.nav::after,
.nav::before,
.navbar-header::after,
.navbar-header::before,
.navbar::after,
.navbar::before,
.row::after,
.row::before {
  display: table;
  content: " ";
}
.clearfix::after,
.container-fluid::after,
.container::after,
.nav::after,
.navbar-header::after,
.navbar::after,
.row::after {
  clear: both;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
@media print {
  #thestar-global-bar {
    display: none !important;
  }
}
.material-icons-round {
  font-family: "Material Icons Round";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  overflow-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
a {
  font-weight: 600;
}
a,
p {
  color: rgb(74, 74, 74);
}
.kicker,
a.kicker:hover {
  color: rgb(187, 0, 0);
}
#navbar-main.navbar {
  min-height: 42px;
}
.headline h1 {
  letter-spacing: 0.5px;
}
.button-more a,
a,
a:focus,
a:hover {
  text-decoration: none;
}

.navbar-nav > li:hover > .dropdown-menu,
article,
figure,
footer,
header,
nav,
section {
  display: block;
}
a {
  cursor: pointer;
}
.timestamp,
body {
  font-weight: 400;
}
a:focus,
a:hover {
  color: rgb(94, 94, 94);
}
ul,
ul li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.col-lg-5,
.col-lg-7,
.col-md-12,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9,
.col-sm-12,
.col-sm-4,
.col-sm-5,
.col-sm-7,
.col-xs-12,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.container {
  padding-left: 10px;
  padding-right: 10px;
}
html {
  height: 100%;
}
.navbar-brand.brand-mobile,
.side-div .market-movers ul li:nth-child(3),
.side-div .market-movers ul li:nth-child(5),
.side-div ul.biz-sec-wrap td:nth-child(2),
.side-div ul.biz-sec-wrap td:nth-child(3),
.side-div ul.biz-sec-wrap td:nth-child(4),
.side-div ul.biz-sec-wrap td:nth-child(7) {
  display: none;
}
.img-sticker {
  position: relative;
}

p {
  overflow: hidden;
  font-size: 1em;
  line-height: 1.35em;
  margin-bottom: 8px;
}
h1,
h2,
h3 {
  font-weight: 900;
}
.container {
  max-width: 1260px;
  width: 100%;
}
.wrapper-maincontent {
  flex: 1 1 0%;
}
.button-more,
.right {
  float: right;
}
.left,
.sponsored-panel header h3 {
  float: left;
}
.med-rec {
  margin: 0px auto;
  text-align: center;
}
.kicker {
  text-transform: uppercase;
  text-align: left;
  margin-right: 6px;
}
.button-more a,
.button-view a {
  text-transform: capitalize;
}
.timestamp {
  font-size: 0.781em;
  color: rgb(74, 74, 74);
  margin-right: 6px;
}
.bot-20 {
  margin-bottom: 20px;
}
.bot-15 {
  margin-bottom: 15px;
}
#wrapper,
.biz-sec-wrap,
.story-set-group {
  overflow: hidden;
  display: block;
}
.sprite-icon {
  display: inline-block;
}
.sprite-icon {
  background: url("/img/tsol-spritesv5.svg") no-repeat;
  vertical-align: middle;
}
.home-light .icon.sprite-icon {
  background-position: -100px -389px;
  width: 17px;
  height: 16px;
}
.navbar-nav li a.log-in {
  padding: 9px;
}
.appstore-large .icon.sprite-icon {
  background-position: -731px -309px;
  width: 120px;
  height: 40px;
}
.playstore-large .icon.sprite-icon {
  background-position: -587px -309px;
  width: 120px;
  height: 40px;
}
.huawei .icon.sprite-icon {
  background-position: -299px -376px;
  height: 41px;
  width: 121px;
}
.youtube .icon.sprite-icon {
  background-position: -596px -381px;
  height: 31px;
  width: 31px;
}
.instagram-white .icon.sprite-icon {
  background-position: -668px -381px;
  height: 31px;
  width: 31px;
}
.twitter-white .icon.sprite-icon {
  background-position: -740px -381px;
  height: 31px;
  width: 31px;
}
.facebook-white .icon.sprite-icon {
  background-position: -812px -381px;
  height: 31px;
  width: 31px;
}
.telegram .icon.sprite-icon {
  background-position: -22px -447px;
  height: 25px;
  width: 25px;
}
.title-02 {
  font-weight: 900;
}
.img-sticker {
  float: left;
}
.img-sticker a,
.img-sticker img,
.story-set {
  display: block;
  overflow: hidden;
}
.Inline.Ads-slot {
  background: rgb(237, 237, 243);
}
.Ads-slot .ads {
  margin: 0px auto 20px;
  display: block;
}
.MidRectTop {
  display: table;
  margin: 0px auto;
}
.arrow-l,
.arrow-r {
  border-top: 2px solid rgb(74, 74, 74);
  margin-bottom: 3px;
}
.arrow-l,
.arrow-r {
  vertical-align: middle;
  display: inline-block;
  width: 7px;
  height: 7px;
  line-height: 7px;
  border-right: 2px solid rgb(74, 74, 74);
}
.button-more a {
  font-size: 0.813em;
  line-height: 1.154em;
  color: rgb(187, 0, 0);
}
.button-more label {
  cursor: pointer;
  border: 1px solid rgb(74, 74, 74);
  padding: 4px 8px;
  margin: 0px 3px;
}
.button-more a:hover label {
  background: rgb(214, 214, 214);
}
.arrow-r {
  transform: rotate(45deg);
  margin-right: 2px;
}
.arrow-l {
  transform: rotate(-136deg);
  margin-left: 2px;
}
.button-view {
  margin: 10px auto 0px;
  display: block;
  text-align: center;
  overflow: hidden;
  padding: 10px 0px;
}
.button-view a {
  border: 2px solid rgb(187, 0, 0);
  padding: 8px 25px;
  background: 0px 0px;
  color: rgb(187, 0, 0);
  border-radius: 8px;
}
.market-movers-wrap .market-trans tbody td:first-child {
  text-transform: uppercase;
}
.button-view a:hover {
  color: rgb(187, 0, 0);
  background: rgb(240, 240, 240);
}
.f13 {
  font-size: 0.813em;
  line-height: 1.35em;
}
.f18 {
  font-size: 1.125em;
  line-height: 1.5em;
}
.headline h1 a {
  color: rgb(187, 0, 0);
  font-weight: 900;
}
.button-more a:hover {
  color: rgb(74, 74, 74);
}
.title-02 {
  color: rgb(187, 0, 0);
  font-size: 1.563em;
  line-height: 1.24em;
}
#navbar-main.navbar,
.branding {
  background: rgb(255, 255, 255);
  border-color: rgb(214, 214, 214) currentcolor;
  margin-bottom: 0px;
  border-right-width: medium;
  border-right-style: none;
  border-left-width: medium;
  border-left-style: none;
  border-radius: 0px;
}
.branding .navbar-brand {
  min-height: 67px;
  padding: 4px;
}
.social-branding {
  display: inline-block;
  padding: 0px;
  margin: 0px;
}
ul.social-branding li {
  float: left;
  padding: 10px 0px;
}
.market-trans tr td:last-child,
ul.social-branding li:last-child {
  padding-right: 0px;
}
.active {
  background: rgb(223, 223, 223);
}
.navbar-toggle,
.navbar-toggle:hover {
  background: 0px 0px !important;
}
#page-header .navbar-right {
  margin-right: 0px;
}
#tsolnavbar ul.nav li a {
  color: rgb(56, 56, 56);
  font-size: 14px;
  font-weight: 600;
}
.nav > li > a.login {
  border: 1px solid rgb(214, 214, 214);
  padding: 5px 10px;
  margin-top: 4px;
  margin-right: 12px;
  border-radius: 2px;
  font-size: 0.813em;
}
#tsolnavbar .nav > li > a {
  padding: 11px 10px !important;
}
ul.dropdown-menu.log-in {
  padding: 0px;
  left: inherit;
  right: 0px !important;
}
ul.dropdown-menu.log-in li {
  width: 100%;
}
ul.dropdown-menu.log-in li a {
  padding: 10px 12px;
}
li.log-out {
  border-top: 1px solid rgb(214, 214, 214);
}
ul.dropdown-menu.log-in > .log-out a {
  background: rgb(238, 238, 238);
  margin: 10px;
  border-radius: 0px;
  padding: 5px 10px;
  text-align: center;
  font-weight: 600;
}
.form-control:focus {
  border-color: rgb(204, 204, 204);
}
.navbar-toggle {
  margin-right: 35px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
}
.navbar-toggle .icon-bar {
  width: 22px;
  transition: 0.2s;
  border: 2px solid rgb(56, 56, 56);
}
.topics {
  display: block;
  overflow: hidden;
  margin: 0px;
  padding: 10px 0px;
  position: relative;
  background: rgb(255, 255, 255);
}
.market-trans a:hover {
  text-decoration: underline;
}
.headline {
  border-bottom: 1px solid rgb(214, 214, 214);
}
.headline {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 18px;
  overflow: hidden;
}
.headline hr {
  position: absolute;
  bottom: 0px;
}
.headline hr {
  border: 1.5px solid rgb(187, 0, 0);
  width: 100px;
  left: 0px;
  margin: 0px;
}
.headline p {
  margin-top: 5px;
  margin-bottom: 0px;
}
.headline p span {
  padding: 0px 10px 2px 0px;
  border-right: 1px solid rgb(221, 221, 221);
  margin-right: 8px;
  display: inline-block;
  font-size: 0.889em;
}
.headline p span:last-child {
  padding-right: 0px;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  margin-right: 0px;
}
.headline p span:last-child {
  margin-left: 0px;
}
.across-web,
.trending {
  overflow: hidden;
  display: block;
  margin-bottom: 25px;
}
.tab-panel-2 .nav-pills > li > a {
  border-radius: 0px;
  color: rgb(74, 74, 74);
}
.tab-panel-2 .nav-pills > li.active > a {
  background: rgb(255, 255, 255);
  color: rgb(187, 0, 0);
  border-top: 2px solid rgb(187, 0, 0);
}
.tab-content > .tab-pane,
.tab-content > .tab-pane.active {
  background: rgb(255, 255, 255);
  padding: 20px 0px;
}
.in-sec-story img {
  margin-bottom: 2px;
}
.sponsored-panel .panel-content img {
  margin-bottom: 10px;
}
ul.social-branding li > ul > li {
  padding: 0px;
}
.klci {
  border: 1px solid rgb(214, 214, 214);
}
.in-sec-story {
  margin-bottom: 25px;
}
.in-sec-story h2 {
  font-size: 1.125em;
  line-height: 1.18em;
}
.summary label {
  display: block;
  margin-bottom: 4px;
}
.summary label.timestamp {
  margin: 0px;
}
.klci {
  display: block;
  overflow: hidden;
}
.sponsored-panel .panel-content {
  margin-bottom: 5px;
}
.market-trans tbody td,
.market-trans thead td {
  text-align: center;
}
.market-trans tbody td:last-child,
.market-trans-head tr.header td:last-child {
  text-align: right;
}
.market-trans-head tr.header {
  vertical-align: top;
}
.market-movers-wrap .tab-content > .tab-pane {
  padding: 10px 15px;
  border-width: 0px 1px 1px;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-color: rgb(221, 221, 221);
  border-bottom-color: rgb(221, 221, 221);
  border-left-color: rgb(221, 221, 221);
  border-image: initial;
  border-top-style: initial;
  border-top-color: initial;
}
.market-trans {
  border-collapse: collapse;
  line-height: 1.333em;
  font-size: 0.9em;
  width: 100%;
}
.market-trans-head {
  color: rgb(68, 68, 68);
  font-weight: 700;
}
.market-trans tbody tr {
  margin: 5px 0px;
}
.market-trans tbody td:first-child,
.market-trans thead td:first-child {
  text-align: left;
  padding-left: 0px;
}
.market-trans .linedlist {
  border-top: 1px solid rgb(229, 229, 226);
  border-bottom: 0px;
}
.market-trans tr.linedlist:hover {
  background: rgb(239, 239, 239);
}
.footer-bottom .container,
.market-movers-wrap .market-trans tr.linedlist:hover {
  background: 0px 0px;
}
.market-trans tr td {
  padding: 8px 4px;
  text-align: right;
}
.quote_text_up {
  color: rgb(0, 140, 0);
  padding: 2px 0px;
  font-weight: 900;
}
.quote_text_down {
  color: rgb(204, 0, 0);
  padding: 2px 0px;
  font-weight: 900;
}
.market-trans a {
  color: rgb(16, 127, 201);
}
.sponsored-panel {
  overflow: hidden;
  display: block;
  background: rgb(255, 255, 255);
  padding: 10px 15px 20px;
  margin-bottom: 20px;
}
.sponsored-panel header {
  margin-bottom: 15px;
  overflow: hidden;
}
.tab-panel-2 .nav-pills {
  color: rgb(74, 74, 74);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border-bottom: 1px solid rgb(221, 221, 221);
}
.trending ul.trend-list {
  border-bottom: 1px solid rgb(214, 214, 214);
  overflow: hidden;
}
.tab-panel-2 .nav-pills > li {
  margin: 0px;
  padding: 0px;
  text-align: center;
  border-top: 2px solid transparent;
}
.tab-panel-2 .nav-pills > .active {
  border-width: 1px 1px medium;
  border-style: solid solid none;
  border-color: rgb(221, 221, 221) rgb(221, 221, 221) currentcolor;
  border-image: initial;
  background: rgb(255, 255, 255);
  margin-bottom: -2px !important;
}
.trending p {
  line-height: 1.15em;
}
.trending ul.trend-list {
  display: block;
  margin: 0px 0px 11px;
  padding: 0px 0px 10px;
  height: 100px;
  list-style: none;
}
.trending ul.trend-list li {
  list-style: none;
}
.trending ul.trend-list p.trend-list-num {
  font-size: 2.813em;
  vertical-align: middle;
  padding: 15px 10px 15px 0px;
  color: rgb(155, 155, 155);
}
.trend-list h3 {
  font-size: 1em;
}
.kicker {
  font-weight: 400;
}
.footer-bottom {
  background: rgb(40, 40, 40);
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-bottom p {
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 11px;
  letter-spacing: 0.5px;
  margin: 0px;
}
.btn-login a {
  padding: 5px 10px;
  font-size: 0.813em;
}
.btn-login a {
  border: 1px solid rgb(214, 214, 214);
  margin-right: 12px;
  border-radius: 2px;
  margin-top: 10px;
}
li.top-bar:hover > .dropdown-menu {
  display: block;
  margin-top: -8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-toggle,
  ul.navbar-nav {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  #tsolnavbar,
  .navbar-brand.brand-prime {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-brand.brand-mobile {
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -12px;
    text-align: center;
    margin: 0px auto;
  }
  #tsolnavbar .nav > li > a {
    padding: 10px !important;
  }
  .headline p {
    text-align: right;
    font-size: 0.875em;
  }
}
@media only screen and (min-width: 992px) {
  .in-sec-story img {
    width: 100%;
    margin-bottom: 2px;
  }
  .headline p {
    text-align: right;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nav > li > a {
    padding: 10px 12px;
  }
}
.topics {
  display: flex;
}
.branding .navbar-brand {
  position: relative;
  top: 8px;
  z-index: 1;
}
.btn-more a {
  line-height: 16px;
}
@media only screen and (max-width: 767px) {
  .btn--follow {
    min-width: 30px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    padding: 5px 0px;
  }
}
@media (max-width: 991px) {
  .branding {
    display: none;
  }
  .content-wrap {
    padding-top: 0px;
  }
}
.slider-controls {
  display: inline-flex;
}
.btn-more a {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .navbar-nav li a.log-in {
    padding: 7px 9px 7px 7px;
  }
}
.btn-more a {
  color: var(--color-primary);
  font-size: 12px;
}
.btn-more span:hover {
  background-color: var(--color-bg-2);
  color: var(--color-on-bg-2);
}
.btn-more span {
  width: 22px;
  display: inline-flex;
  background: rgb(255, 255, 255);
  padding: 0px;
  cursor: pointer;
  height: 22px;
  box-sizing: border-box;
}
.slider-controls {
  gap: 1rem;
  display: inline-flex !important;
}
.btn-more span {
  justify-content: center;
  align-items: center;
}
.btn-more a {
  display: inline-flex;
  align-items: center;
}
.heading-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  border-bottom: 1px solid rgb(214, 214, 214);
  padding-bottom: 6px;
  margin-bottom: 18px;
  overflow: hidden;
}
.heading-flex h1 a {
  color: var(--color-primary);
  font-weight: 900;
}
.heading-flex hr {
  background-color: var(--color-red-2);
  border: 1.5px solid var(--color-primary);
  width: 40px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin: 0px;
}
.button-more a:hover label {
  background-color: rgb(242, 242, 242);
  color: rgb(74, 74, 74);
  cursor: pointer;
}
.material-icons-round.person {
  vertical-align: middle;
}
@media (max-width: 768px) {
  .navbar-nav li a.log-in {
    padding: 0px 8px 0px 0px;
  }
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02)) {
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  overflow: hidden;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  > .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  border-bottom: 1px solid rgb(214, 214, 214);
  padding-bottom: 6px;
  gap: 10px;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  > .row
  > h1,
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  > .row
  > p {
  flex: 0 0 auto;
  float: none;
  padding-left: 0px;
  padding-right: 0px;
  min-width: 0px;
  margin: 0px;
  width: auto !important;
  max-width: none !important;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  > .row
  > h1.title-02 {
  flex: 1 1 auto;
  margin: 0px;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  > .row
  > p {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
  align-items: baseline;
  margin: 0px;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  > .row
  > hr {
  background-color: var(--color-red-2);
  border: 1.5px solid var(--color-primary);
  width: 50px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin: 0px;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more {
  color: var(--color-primary);
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  a {
  color: var(--color-primary);
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  a:hover {
  color: rgb(74, 74, 74);
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  label,
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  span {
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  display: inline-flex;
  justify-content: center;
  box-sizing: border-box;
  background: rgb(255, 255, 255);
  padding: 0px;
  align-items: center;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  a:hover
  label,
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  span:hover {
  background-color: rgb(242, 242, 242);
  color: rgb(74, 74, 74);
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  label
  i.arrow-l,
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  .button-more
  label
  i.arrow-r {
  margin-bottom: 0px;
}
:is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
  p
  span {
  padding: 0px;
}
@media (max-width: 576px) {
  :is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
    > .row {
    flex-wrap: wrap;
  }
  :is(.headline.type-02, .headline:not(.type-02):has(> .row > h1.title-02))
    > .row
    > p {
    flex: 0 0 auto;
  }
}
.story-wrapper {
  overflow: hidden;
  display: block;
  padding-top: 25px;
}
.story-wrapper .story-pg h1 {
  font-size: 2.438em;
  line-height: 1.154em;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.story-wrapper .story-pg h1 a {
  font-weight: 900;
}
.story-wrapper ul {
  margin: 0px 20px 20px;
  list-style: none;
  padding-left: 15px;
}
.story-wrapper ul li {
  margin-bottom: 10px;
  list-style: none;
  font-size: 0.95em;
}
.story-wrapper .side-note .timestamp {
  margin: 0px;
  font-size: 1em;
}
.story-wrapper article p {
  margin-bottom: 15px;
  overflow: visible;
  line-height: 1.533em;
  overflow-wrap: break-word;
}
.story-content .inline-img {
  margin-bottom: 25px;
}
.story-wrapper .inline-img img {
  margin: 0px auto;
  text-align: center;
  max-height: 500px;
  display: block;
  object-fit: cover;
  object-position: 0% 10%;
}
.tags {
  overflow: hidden;
  display: block;
  margin-bottom: 15px;
}
.tags label {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.75em;
  color: rgb(102, 102, 102);
  letter-spacing: 0.5px;
  display: block;
}
.tags a {
  text-transform: capitalize;
  color: rgb(187, 0, 0);
  font-weight: 600;
  font-size: 0.83em;
}
.content-holder {
  position: relative;
}
ul.side-note {
  position: absolute;
  top: 0px;
  margin-bottom: 10px;
  max-width: 200px;
  padding-right: 0px;
  list-style: none;
  padding-left: 0px;
  margin-left: 10px;
}
.story-content {
  position: relative;
  margin-left: 25%;
}
.story a {
  color: rgb(0, 75, 209);
  font-weight: 400;
}
.story a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .story-wrapper {
    padding-top: 0px;
  }
  .side-note {
    position: static;
    max-width: 100%;
  }
  .story-content {
    margin-left: 0px;
  }
  .story-wrapper .story-pg h1 {
    font-size: 1.75em;
  }
  ul.side-note {
    position: static;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .story-content {
    margin-left: 0px;
  }
  .story-wrapper article p {
    font-size: 1.125em;
    line-height: 1.444em;
  }
  .story-wrapper .inline-img img {
    max-height: 649px;
  }
}
.article__widgets {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.m-t-32 {
  margin-top: 32px !important;
}
.m-b-32 {
  margin-bottom: 32px !important;
}
.m-t-8 {
  margin-top: 8px !important;
}
.article__widgets .article__related-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0px 32px;
  line-height: 20px;
}
.end-line {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.tags {
  margin-bottom: 0px;
}
.ratestar .rating-group {
  display: inline-flex;
  flex-direction: row-reverse;
}
.fa-star {
  cursor: pointer;
  padding: 0px 0.1em;
  font-size: 2rem;
}
@media (max-width: 519px) {
  .widget--reactions .widget__content {
    width: 100%;
    justify-content: space-between;
  }
}
.widget--reactions {
  flex-wrap: wrap;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
}
.widget--reactions .widget__content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.widget--reactions .widget__message {
  transform: translateX(-12px);
  opacity: 0;
  transition: 0.2s ease-in-out;
  height: 0px;
}
.widget--reactions .widget__message.reveal {
  height: auto;
  opacity: 1;
  transform: translateX(0px);
}
.article__feedback {
  display: flex;
  flex-direction: column;
}
.article__feedback > :last-child {
  border-top: 1px solid var(--color-border);
}
.widget--feedback {
  padding: 8px 0px;
}
.widget--article-report .panel-heading {
  background-color: inherit;
  padding: 0px;
  position: relative;
}
.widget--article .widget__title {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  width: 100%;
}
.med-rec:has(iframe[style*="display:none"]) {
  display: none;
}
.relative {
  position: relative;
}
.bookmark {
  position: relative;
}
@media only screen and (max-width: 991px) {
  ul.side-note {
    margin: 0px;
    padding: 0px 10px;
  }
}
:root {
  --color-icon: #231f20;
  --color-text: #4a4a4a;
  --color-text-2: #4a4a4a;
  --color-text-3: #333333;
  --color-text-4: #444444;
  --color-text-5: #979797;
  --color-bg-1: #ffffff;
  --color-on-bg-1: #4a4a4a;
  --color-bg-2: #f2f2f2;
  --color-on-bg-2: #4a4a4a;
  --color-bg-3: #303030;
  --color-on-bg-3: #8f8f8f;
  --color-bg-primary: #bb0000;
  --color-on-bg-primary: #ffffff;
  --color-on-bg-dark: #ffffff;
  --color-border: #d6d6d6;
  --color-border-2: #dddddd;
  --color-text-1: #4a4a4a;
  --color-primary: #bb0000;
  --color-primary-alt: #cc0000;
  --color-white-1: #ffffff;
  --color-red-2: #dd0000;
  --color-red-3: #da2128;
  --color-gold: #c89414;
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-icon: #231f20;
    --color-text: #4a4a4a;
    --color-text-2: #4a4a4a;
    --color-text-3: #333333;
    --color-text-4: #444444;
    --color-text-5: #979797;
    --color-bg-1: #ffffff;
    --color-on-bg-1: #4a4a4a;
    --color-bg-2: #f2f2f2;
    --color-on-bg-2: #4a4a4a;
    --color-bg-3: #303030;
    --color-on-bg-3: #8f8f8f;
    --color-bg-primary: #bb0000;
    --color-on-bg-primary: #ffffff;
    --color-on-bg-dark: #ffffff;
    --color-border: #d6d6d6;
    --color-border-2: #dddddd;
    --color-text-1: #4a4a4a;
    --color-primary: #bb0000;
    --color-primary-alt: #cc0000;
    --color-white-1: #ffffff;
    --color-red-2: #dd0000;
    --color-red-3: #da2128;
    --color-gold: #c89414;
  }
}
a {
  color: var(--color-text);
}
.kicker {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
  text-align: left;
  margin-right: 6px;
}
.btn {
  font-size: 16px;
  font-weight: bold;
}
.btn--subscribe {
  color: rgb(255, 255, 255);
  background-color: var(--color-red-3);
  padding: 5px 10px;
  margin-top: 4px;
  margin-right: 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.813em;
}
.btn--subscribe:hover {
  background-color: var(--color-primary);
  color: rgb(255, 255, 255);
}
.footer-n {
  color: rgb(143, 143, 143);
  background-color: rgb(48, 48, 48);
  border-top: 1px solid rgb(112, 112, 112);
  padding: 30px 10px;
}
.footer-n__inner {
  max-width: 800px;
  margin: 0px auto 30px;
}
.footer-n__inner:last-child {
  margin: 0px auto;
}
.footer-n__links {
  display: inline-block;
  float: left;
  width: 20%;
}
@media (max-width: 1024px) {
  .footer-n__links {
    width: 50%;
    margin-bottom: 30px;
  }
}
.footer-n__links b {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgb(187, 187, 187);
}
.footer-n__links ul li a {
  color: rgb(143, 143, 143);
  display: block;
  font-size: 13px;
  font-weight: 400;
  padding: 0px 0px 5px;
  cursor: pointer;
}
.footer-n__clearfix {
  display: none;
}
@media (max-width: 1024px) {
  .footer-n__clearfix {
    display: block;
  }
}
.footer-n__socials {
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer-n__socials {
    display: block;
    margin-bottom: 20px;
  }
}
.footer-n__socials li {
  display: inline-block;
  padding: 0px 6px;
}
@media (max-width: 1024px) {
  .footer-n__socials li {
    margin: 0px 5px;
  }
}
.footer-n__downloads {
  display: inline-block;
}
.footer-n__downloads li {
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer-n__downloads li {
    display: block;
    margin-bottom: 5px;
  }
}
.footer-n__socials .icon.sprite-icon,
.footer-n__downloads .icon.sprite-icon {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.footer-n__socials a.youtube .icon.sprite-icon {
  width: 30px;
  height: 30px;
  background-position: -597px -381px;
}
.footer-n__socials a.instagram-white .icon.sprite-icon {
  width: 30px;
  height: 30px;
  background-position: -669px -381px;
}
.footer-n__socials a.twitter-white .icon.sprite-icon {
  width: 30px;
  height: 30px;
  background-position: -741px -381px;
}
.footer-n__socials a.facebook-white .icon.sprite-icon {
  width: 30px;
  height: 30px;
  background-position: -813px -381px;
}
.footer-n__socials a.telegram .icon.sprite-icon {
  width: 25px;
  height: 21px;
  background-position: -21px -449px;
}
.footer-n__downloads a.playstore-large .icon.sprite-icon {
  width: 120px;
  height: 40px;
  background-position: -588px -309px;
}
.footer-n__downloads a.appstore-large .icon.sprite-icon {
  width: 120px;
  height: 40px;
  background-position: -731px -309px;
}
.footer-n__downloads a.huawei .icon.sprite-icon {
  width: 120px;
  height: 40px;
}
.footer-n__newsletter {
  padding: 10px 0px;
}
.footer-n__newsletter input {
  flex: 1 1 0%;
  border-radius: 0px;
}
.timestamp {
  color: var(--color-text-2);
}
.nav .btn--subscribe {
  padding: 5px 10px;
  margin-top: 4px;
  margin-right: 12px;
  color: rgb(255, 255, 255) !important;
}
@media (max-width: 767px) {
  .nav .btn--subscribe {
    padding: 3px 10px;
    margin-right: 5px;
  }
}
.nav .btn--subscribe:active,
.nav .btn--subscribe:focus,
.nav .btn--subscribe:hover {
  color: rgb(56, 56, 56) !important;
}
.navbar-right .dropdown-menu li a {
  padding: 10px;
}
.navbar-right .dropdown--subscribe {
  display: none;
}
@media (max-width: 991px) {
  .navbar-right .dropdown--subscribe {
    display: inline-block;
  }
}
#navbar-main.navbar {
  background-color: var(--color-bg-1);
  border-radius: 0px;
  border-bottom: 1px solid;
  border-top: 1px solid;
  color: var(--color-border);
}
@media (max-width: 991px) {
  #navbar-main.navbar {
    background-color: var(--color-bg-1);
    min-height: 47px;
  }
}
@media (max-width: 768px) {
  #navbar-main.navbar a {
    color: rgb(85, 85, 85);
  }
}
@media (max-width: 767px) {
  .tab-panel-2 .nav-pills > li.active > a {
    border-top: 2px solid var(--color-primary) !important;
  }
}
.topics {
  padding: 10px 0px 10px 10px;
  background-color: var(--color-bg-2);
}
.btn-login .login {
  border: 1px solid var(--color-border);
  padding: 5px 10px;
  margin-top: 4px;
  margin-right: 12px;
  border-radius: 2px;
  font-size: 0.813em;
  line-height: 20px;
}
.btn-login .login:hover {
  color: rgb(56, 56, 56);
}
ul.social-branding li {
  padding: 10px 0px;
}
#navbar-main .nav__headline {
  display: none;
  position: absolute;
  margin-left: 40px;
  max-width: 1260px;
  color: var(--color-on-bg-1);
}
#navbar-main .nav__headline__logo {
  display: inline-block;
  float: left;
}
#navbar-main .nav__headline__logo img {
  display: block;
  margin: auto;
  max-width: 64px;
}
#navbar-main .nav__headline span {
  float: left;
  padding: 11px 10px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  width: 950px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1230px) {
  #navbar-main .nav__headline span {
    width: 835px;
  }
}
@media (max-width: 1120px) {
  #navbar-main .nav__headline span {
    width: 720px;
  }
}
#navbar-main .nav__button {
  padding: 7px 10px;
  display: inline-block;
  float: right;
  line-height: 28px;
}
#navbar-main .nav__button.button--share {
  padding-top: 7px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  #navbar-main .nav__button {
    padding: 7px 10px;
  }
  #navbar-main .nav__button.button--share {
    padding-top: 7px;
    padding-bottom: 0px;
  }
}
.sponsored-panel {
  border: 1px solid var(--color-border);
}
.mobilenav {
  display: block;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  width: 100%;
  position: fixed;
  bottom: 0px;
  border-top: 1px solid rgb(239, 239, 239);
  padding-top: 5px;
}
.mobilenav ul > li {
  display: inline-block;
  width: 6%;
  float: left;
  text-align: center;
  font-size: 10px;
  cursor: pointer;
  margin: 0px 7%;
}
@media (max-width: 765px) {
  .mobilenav ul > li {
    display: inline-block;
    width: 8%;
    float: left;
    text-align: center;
    font-size: 10px;
    cursor: pointer;
    margin: 0px 6%;
  }
}
@media (max-width: 589px) {
  .mobilenav ul > li {
    display: inline-block;
    width: 20%;
    float: left;
    text-align: center;
    font-size: 10px;
    cursor: pointer;
    margin: 0px;
  }
}
.mobilenav ul > li.active,
.mobilenav ul > li:hover {
  background-color: rgb(255, 255, 255);
}
.mobilenav ul > li.active div,
.mobilenav ul > li:hover div {
  padding: 7px 0px;
  display: block;
  color: rgb(151, 151, 151);
}
.mobilenav ul > li.active a,
.mobilenav ul > li:hover a {
  color: var(--color-primary);
}
.mobilenav ul > li.active a::before,
.mobilenav ul > li:hover a::before {
  color: var(--color-primary);
}
.mobilenav ul > li.active .home,
.mobilenav ul > li:hover .home {
  background-image: url("/img/home-red.svg");
}
.mobilenav ul > li:hover .paper {
  background-image: url("/img/for-you-red.svg");
}
.mobilenav ul > li:hover .bookmark {
  background-image: url("/img/bookmark-red.svg");
}
.mobilenav ul > li:hover .search {
  background-image: url("/img/search-red.svg");
}
.mobilenav ul > li:hover .podcast {
  background-image: url("/img/podcast-icon-red.svg");
}
.mobilenav ul > li:hover > div {
  color: var(--color-primary);
}
.mobilenav ul > li a {
  padding: 7px 0px;
  display: block;
  color: rgb(151, 151, 151);
}
.mobilenav ul > li div {
  padding: 7px 0px;
  display: block;
  color: rgb(151, 151, 151);
}
.mobilenav__icon {
  width: 20px;
  height: 20px;
  margin: auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: contain;
}
.mobilenav__icon.home {
  background-image: url("/img/home-grey.svg");
}
.mobilenav__icon.paper {
  background-image: url("/img/for-you-grey.svg");
}
.mobilenav__icon.bookmark {
  background-image: url("/img/bookmark-grey.svg");
}
.mobilenav__icon.search {
  background-image: url("/img/search-grey.svg");
}
.mobilenav__icon.podcast {
  background-image: url("/img/podcast-icon-grey.svg");
}
.mega-nav-toggle {
  display: block;
  margin: 0px;
  padding: 10px;
}
@media (max-width: 768px) {
  .mega-nav-toggle {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .navbar-right .dropdown--subscribe {
    top: 1px;
  }
}
#hllogin:focus,
#hllogin:hover {
  background-color: rgb(238, 238, 238);
}
.headline {
  padding-bottom: 8px;
}
.headline hr {
  background-color: var(--color-red-2);
  border: 1.5px solid var(--color-primary);
  width: 100px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin: 0px;
}
#tsolnavbar {
  display: block;
}
@media (max-width: 991px) {
  #tsolnavbar {
    display: none;
  }
}
#tsolnavbar ul.nav li a {
  color: var(--color-on-bg-1);
  padding: 11px 10px !important;
}
#tsolnavbar ul.nav li a.active,
#tsolnavbar ul.nav li a:active,
#tsolnavbar ul.nav li a:hover,
#tsolnavbar ul.nav li a:focus {
  color: var(--color-on-bg-primary);
  background-color: var(--color-bg-primary);
  box-shadow: none;
  outline: none !important;
}
.home-light .icon.sprite-icon {
  filter: none;
  background-position: -603px -27px;
  width: 17px;
  height: 17px;
}
.home-light:active .icon.sprite-icon,
.home-light:hover .icon.sprite-icon,
.home-light:focus .icon.sprite-icon {
  filter: invert(0);
  background-position: -100px -389px;
}
.branding .login {
  color: var(--color-on-bg-1);
}
.branding .login:hover {
  color: rgb(85, 85, 85) !important;
  background-color: rgb(238, 238, 238);
}
.branding a {
  color: var(--color-on-bg-1);
}
@media (max-width: 768px) {
  .branding a {
    color: rgb(85, 85, 85);
  }
}
.navbar__interact {
  display: inline-block;
  float: left;
  margin-left: -70px;
  margin-top: -4px;
}
@media (max-width: 1024px) {
  .navbar__interact {
    display: none;
  }
}
.navbar-brand {
  position: relative;
}
.navbar-header .navbar-brand.brand-mobile {
  display: none;
}
@media (max-width: 991px) {
  .navbar-header .navbar-brand.brand-mobile {
    display: inline-block;
    position: relative;
    padding: 5px 0px;
    top: 5px;
    max-height: 38px;
  }
}
@media (max-width: 767px) {
  .navbar-header .navbar-brand.brand-mobile {
    top: 2px;
  }
}
.branding {
  background-color: var(--color-bg-1);
  border-color: var(--color-bg-1);
}
.nav > li > a.login {
  color: var(--color-on-bg-1);
  border: 1px solid var(--color-on-bg-1);
}
@media (max-width: 991px) {
  .navbar-toggle {
    display: block;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 15px;
    padding: 11px 10px;
  }
}
@media (max-width: 767px) {
  .navbar-toggle {
    margin-right: 0px;
  }
}
.navbar-toggle .icon-bar {
  border: 2px solid var(--color-on-bg-1);
  border-radius: 0px;
  background-color: var(--color-on-bg-1);
}
.navbar-toggle .icon-x {
  display: none;
  color: var(--color-on-bg-1);
  width: 22px;
  height: 22px;
  font-size: 22px;
  line-height: 22px;
}
#page-header nav .navbar-right {
  margin-right: 15px;
}
@media (max-width: 1024px) {
  #page-header nav .navbar-right {
    top: 3px;
    right: 10px;
    margin-right: 0px;
  }
}
button:focus,
button:active {
  box-shadow: none;
  outline: none !important;
}
ul.dropdown-menu.log-in li {
  padding: 0px;
}
#wrapperFooter {
  padding-bottom: 60px;
}
.story-wrapper .btn--follow {
  margin-right: 5px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .story-wrapper .btn--follow {
    min-width: 0px;
  }
}
.story-wrapper .btn--follow:hover {
  cursor: pointer;
}
.show-sd {
  display: block;
}
@media (max-width: 1024px) {
  .show-sd {
    display: none;
  }
}
@media (min-width: 1200px) {
  .show-sd {
    display: none;
  }
}
.navbar-nav > li:hover > .dropdown-menu {
  display: block;
}
@media (max-width: 1024px) {
  .navbar-nav > li:hover > .dropdown-menu {
    display: none;
  }
}
.Inline.Ads-slot {
  background: var(--color-bg-1);
}
.videos {
  padding-top: 15px;
}
.trending--10 {
  padding-top: 8px;
}
.related-sect {
  display: block;
}
.related-articles--side {
  display: none;
}
@media (min-width: 1024px) {
  .related-articles--side {
    display: block;
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .related-articles--side {
    padding-top: 15px;
  }
}
.related-articles--side .story-set {
  display: inline-block;
}
.related-articles--side .in-sec-story {
  padding: 0px 0px 10px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 15px;
}
.related-articles--side .in-sec-story h2 {
  font-size: 16px;
}
.related-articles--side .in-sec-story .timestamp {
  font-size: 0.781em;
}
.related-articles--side .img-sticker {
  margin-bottom: 4px;
}
.info {
  padding-bottom: 18px;
}
.info__interact {
  display: inline-block;
  float: right;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .info__interact {
    float: none;
    display: block;
    padding: 14px 0px 20px;
  }
}
.credit {
  height: 28px;
  font-size: 14px;
  color: rgb(173, 173, 173);
}
ul.side-note {
  border-top: 0px;
}
@media (min-width: 1024px) {
  ul.side-note {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    margin-left: 10px;
    max-width: 141px;
  }
}
@media (min-width: 1100px) {
  ul.side-note {
    max-width: 160px;
  }
}
@media (min-width: 1230px) {
  ul.side-note {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  ul.side-note {
    max-width: none;
  }
}
.button--bookmark {
  float: right;
}
@media (max-width: 1024px) {
  .button--bookmark {
    float: none;
  }
}
@supports (-webkit-touch-callout: none) and (not (-moz-appearance: none)) {
  .navbar__interact {
    margin-left: -65px;
  }
}
.top-search {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.top-search:hover {
  border: 1px solid rgb(238, 238, 238);
  background-color: rgb(238, 238, 238);
  color: rgb(56, 56, 56);
}
.login-search {
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.login-search:hover {
  border: 1px solid rgb(238, 238, 238);
  background-color: rgb(238, 238, 238);
  color: rgb(56, 56, 56);
}
ul.nav.social-branding {
  gap: 8px;
  align-items: center;
  display: inline-flex !important;
}
.nav a.btn--subscribe {
  margin: 0px !important;
}
.btn-login a {
  margin: 0px !important;
}
@media only screen and (max-width: 767px) {
  .side-note,
  ul.side-note {
    position: static;
    max-width: 100%;
  }
  .story-content {
  }
}
.headline .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.story-wrapper h1.primary-heading {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.5px;
  color: rgb(74, 74, 74);
}
.story-wrapper .heading-flex.story-pg {
  flex-direction: column;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.story-wrapper .kicker-container {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style-type: none;
  margin-bottom: 8px;
}
.story-content ul li {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 8px;
  padding-left: 10px;
  margin-left: 15px;
}
.story-content ul li {
  list-style: none;
}
.story-wrapper .kicker {
  margin-right: unset;
  font-weight: unset;
}
.story-wrapper .info {
  margin-bottom: 10px;
  padding-bottom: 0px;
}
.story-wrapper .info .credit__date {
  color: var(--color-text-2);
}
.story-wrapper .side-note {
  list-style: none;
  position: absolute;
  top: 0px;
  margin-bottom: 10px;
  max-width: 180px;
  padding-right: 0px;
  padding-left: 0px;
  margin-left: 10px;
  border-top: 1px solid var(--color-border);
  width: calc(25% - 30px);
}
@media screen and (max-width: 1023px) {
  .story-wrapper .side-note {
    margin-bottom: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding-right: 20px;
    max-width: unset;
    position: static !important;
  }
}
.related-articles--side {
  margin-top: 30px;
}
.related-articles--side h2 {
  color: var(--color-primary);
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .heading-flex.story-pg h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
.story-content .inline-img {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .content-wrap {
    padding-top: 0px;
  }
}
.btn--icon {
  padding: 0px;
  border: 0px;
  border-radius: 4px;
}
.btn--icon:hover {
  background: none;
  border: 0px;
}
.slider-controls {
  display: inline-flex;
  gap: 1rem;
}
.slider-controls span.arrow-box {
  border: 1px solid rgb(74, 74, 74);
  width: 30px;
  height: 30px;
}
.trending ul.trend-list {
  border-color: rgb(214, 214, 214);
}
.trending--10 .trending__group {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .trending--10 .trending__group {
    display: inline-block;
    float: left;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .trending--10 .trending__group {
    display: block;
    float: none;
    width: 100%;
  }
}
.trending ul.trend-list {
  height: auto;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}
.trend-list .trend-item {
  border-bottom: 1px solid rgb(214, 214, 214);
  margin: 0px 0px 12px;
  padding: 0px 0px 12px;
  height: 100px;
}
.trend-list h3 {
  font-size: 1em;
  line-height: 20px;
}
.trend-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trend-item {
  width: 100%;
}
.trend-flex {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 12px;
}
.trend-num {
  flex: 0 0 30px;
  min-width: 17%;
  text-align: center;
}
.trend-text {
  flex: 1 1 0%;
  overflow: hidden;
}
.trend-img {
  flex: 0 0 90px;
}
.img-sticker {
  width: 100%;
  padding-bottom: 67%;
  overflow: hidden;
  position: relative;
}
.trending ul.trend-list p.trend-list-num {
  font-size: 2.813em;
  vertical-align: middle;
  padding: 0px;
  color: rgb(151, 151, 151);
  margin: 0px;
}
@media (max-width: 767px) {
  .trend-list .trend-item {
    height: auto;
  }
  .trend-num {
    min-width: auto;
  }
}
@media (min-width: 768px) {
  .trend-list {
    flex-flow: wrap;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .trending ul.trend-list {
    display: inline-block;
    width: 100%;
  }
  li.trend-item {
    float: left;
    box-sizing: border-box;
    width: 50% !important;
  }
  li.trend-item:nth-child(2n + 1) {
    padding-right: 10px;
  }
  li.trend-item:nth-child(2n) {
    padding-left: 10px;
  }
  .trending--10 .trending__group {
    display: flex;
    float: none;
    width: 100%;
  }
  .trend-num {
    min-width: 12%;
  }
  .trending ul.trend-list p.trend-list-num {
    font-size: 1.813em;
  }
}
@media (max-width: 767px) {
  .trending ul.trend-list p.trend-list-num {
    font-size: 1.813em;
    text-align: center;
  }
  .trend-list .trend-item:nth-last-child(1) {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    margin-bottom: 0px;
  }
  .trending ul.trend-list {
    padding: 0px;
    margin-bottom: 0px;
  }
}
.kicker {
  font-size: 12px;
}
.market-trans-head .header {
  display: table-row;
}
.btn--follow {
  min-width: 120px;
  padding: 5px 10px;
  border-radius: 18px;
  border: 1.2px solid;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .buttons .btn--follow {
    min-width: 120px;
  }
}
.articleDetails.story-wrapper .info .info__credit.credit {
  height: auto;
}
.nav__button span.material-symbols-outlined.share,
.nav__button span.material-symbols-outlined.bookmark {
  font-size: 20px;
}
.navbar__interact__inner {
  display: flex;
  gap: 8px;
  margin-left: auto;
  align-items: center;
  flex-direction: row-reverse;
}
#navbar-main .navbar__interact__inner .nav__button.button--share {
  padding-bottom: 0px;
}
#navbar-main .navbar__interact__inner .nav__button {
  padding: 8px 0px 0px;
  line-height: normal;
}
.navbar__interact {
  display: inline-block;
  float: left;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 10px;
}
@media (min-width: 1024px) {
  ul.side-note {
    padding-top: 0px;
  }
}
.story-wrapper article .story p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
.story-wrapper article .story ul li {
  color: rgb(74, 74, 74);
}
.story-wrapper article h1,
.story-wrapper article h2,
.story-wrapper article h3 {
  color: rgb(74, 74, 74);
}
.navbar-nav li a.log-in {
  padding: 7px;
}
@media (max-width: 768px) {
  .navbar-nav li a.log-in {
    padding: 7px 8px 0px 0px;
  }
}
@font-face {
  font-family: "FontAwesome";
  src: url("/fonts/fontawesome-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-size-adjust: none;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
}
.container-fluid {
  padding-right: 0px;
  padding-left: 0px;
}
.content-wrap > .container > .row {
  display: flex;
}
.content-wrap > .container > .row > .col-md-4 {
  background-color: var(--color-bg-1);
  border-left: 10px solid rgb(255, 255, 255);
  border-right: 10px solid rgb(255, 255, 255);
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  padding-top: 25px;
}
.img-sticker {
  width: 100%;
  padding-bottom: 67%;
  overflow: hidden;
}
.img-sticker img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 10%;
}
.hidden-sm {
  display: none;
}
@media screen and (max-width: 990px) {
  .content-wrap > .container > .row {
    display: block;
  }
  .content-wrap > .container > .row > .col-md-4 {
    border-left: 0px solid rgb(255, 255, 255);
    border-right: 0px solid rgb(255, 255, 255);
  }
}
@media screen and (max-width: 768px) {
  .hidden-sm {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    padding-top: 0px !important;
  }
}
@media screen and (max-width: 768px) {
  a#hllogin:hover {
    background-color: rgb(238, 238, 238) !important;
  }
}
.navbar-header {
  margin-right: 0px !important;
}
.sprite-icon {
  background: url("/img/tsol-spritesv6.svg");
}
.header__nav-mega {
  top: 41px;
  position: absolute;
}
.nav--mega {
  order: 4;
  width: 100%;
  margin: auto;
  background-color: rgb(255, 255, 255);
  z-index: 1001;
  overflow: auto;
  height: 100vh;
  padding-bottom: 50px;
}
.nav--mega .nav__content {
  display: flex;
  flex-direction: column;
  max-width: 1260px;
}
.nav__title {
  font-weight: 600;
  background-color: rgb(238, 238, 238);
  display: flex;
  width: 100%;
  padding: 12px 10px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1rem;
  font-size: 14px;
}
.nav__lists {
  padding: 10px 0px 0px;
}
.nav__lists li a {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 0px;
}
@media (min-width: 992px) {
  .nav--mega .nav__content {
    flex-flow: column wrap;
    gap: 20px;
    margin: 15px auto;
    height: 600px;
  }
  .nav__title {
    border-bottom: 0px;
  }
  .nav__lists li a {
    padding: 7.5px 10px;
  }
}
.form--search {
  padding: 12px 10px;
  border-top: 1px solid rgb(214, 214, 214);
}
.navbar-toggle .icon-x {
  display: none;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
}
.border-b {
  border-bottom: 1px solid rgb(214, 214, 214);
}
.show--tablet-f {
  display: none;
}
@media (max-width: 991px) {
  .nav__lists {
    column-count: 2;
    padding: 12px 20px;
  }
  .show--tablet-f {
    display: flex;
  }
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0px;
}
.input-group .btn:focus,
.input-group > .form-control:focus {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.mega-nav-toggle.navbar-toggle {
  display: flex;
  flex-direction: column;
  padding: 13px 8px 0px;
}
.navbar-toggle .icon-bar {
  width: 16px;
  border: 1.5px solid var(--color-on-bg-1);
}
#tsolnavbar ul.nav li a {
  padding: 11px 10px !important;
}
ul.social-branding li {
  padding: 13px 0px;
}
.nav .btn--subscribe {
  padding: 5px 10px;
  margin-top: 4px;
  margin-right: 8px;
  color: rgb(255, 255, 255) !important;
}
@media (max-width: 990px) {
  .navbar-header .navbar-brand.brand-mobile {
    top: 4px;
  }
  .navbar-toggle {
    margin-right: 0px;
    padding: 15px 12px 5px 13px;
  }
  #navbar-main.navbar {
    min-height: 48px;
  }
  .header__nav-mega {
    top: 46px;
  }
}
@media (min-width: 991px) {
  .navbar-brand.brand-prime {
    margin-left: -0.55em;
  }
  .mega-nav-toggle.navbar-toggle {
    margin-left: -0.5em;
  }
  .branding .navbar-brand {
    top: 4.5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  ul.nav.navbar-nav.navbar-right {
    padding-top: 3px;
  }
  .navbar-toggle {
    padding: 16px 13px 5px 14px;
    margin-left: -1em;
    margin-right: 14px;
  }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 3.1px;
  }
  #page-header nav .navbar-right {
    margin-right: -0.6rem !important;
  }
  .nav > li > a.login {
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  ul.nav.navbar-nav.navbar-right {
    padding-top: 2px;
  }
  .nav .btn--subscribe {
    padding: 5px 10px;
    margin-right: 5px;
  }
  .nav > li > a.login {
    margin-right: 0px;
    padding: 5px 10px;
  }
}
@media (max-width: 1024px) {
  #page-header nav .navbar-right {
    top: 0px;
    right: 0px;
    margin-right: 0px;
  }
}
.widgettop {
  width: 100%;
  padding: 0px 5px;
  background-color: rgb(255, 203, 113);
  top: 0px;
  text-align: center;
  display: block;
  z-index: 999999;
  font-family: Lato, sans-serif;
  font-weight: 400;
  color: rgb(74, 74, 74);
  position: absolute;
}
.widgettop .firinfo {
  width: 95%;
  font-size: 12px;
  padding: 10px 0px;
}
.widgettop .close {
  cursor: pointer;
  padding: 10px 0px;
}
.widgettop .flex-container {
  display: flex;
}
.articleDetails {
  overflow: hidden;
  display: block;
  padding-top: 25px;
}
.articleDetails .img-sticker img {
  object-fit: contain;
}
@media print {
  a::after {
    content: "";
  }
  body {
    padding-top: 0px !important;
    print-color-adjust: exact;
  }
  .story-wrapper,
  .story-wrapper * {
    visibility: visible;
  }
  .story-wrapper .story-pg h1 {
    font-size: 1.7em;
  }
  ul#sideNote {
    max-width: 100% !important;
  }
  #navbar-main,
  .social-branding,
  .Inline.Ads-slot,
  #widget-1326,
  #widget-1332,
  .col-md-4.col-xs-12 {
    display: none;
  }
  .navbar-brand {
    float: none;
    margin: 0px auto;
    text-align: center;
  }
  ul.side-note {
    position: static;
    width: 100%;
    max-width: 800px;
  }
  ul#sideNote {
    position: static !important;
  }
  .story-content {
    margin-left: 0px;
    width: 100%;
  }
  .story-set .col-xs-12.in-sec-story {
    width: 33.3333%;
  }
  .story-set .in-sec-story img {
    display: none;
  }
  .story-set .col-xs-12.in-sec-story .col-xs-7 {
    width: 100%;
  }
  .footer-bottom {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .footer-bottom p {
    color: rgb(34, 34, 34) !important;
  }
}
.mobilenav {
  z-index: 1000;
}
.wrapper-maincontent {
  z-index: 1000 !important;
}
.flex-container {
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #thestar-global-bar {
    display: none;
  }
  body {
    padding-top: 0px !important;
  }
}
.sassize {
  --breakpoint: desktop;
}
@media (max-width: 991px) {
  .sassize {
    --breakpoint: tablet;
  }
}
@media (max-width: 767px) {
  .sassize {
    --breakpoint: mobile;
  }
}
#installContainer {
  background-color: white;
  position: initial;
  display: inline-block;
}
#imgBox {
  margin-left: 30px;
}
#btnAdd {
  border: 1px solid rgb(214, 214, 214);
  padding: 1px 8px;
  text-align: center;
  text-decoration: none;
  position: absolute;
  border-radius: 3px;
  right: 10%;
  top: 30%;
}
#btnClose {
  position: absolute;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  margin: 0px;
  padding: 0px;
  left: 3%;
  top: 10%;
  font-size: 32px;
}
:root {
  --text-base-color: #222;
  --text-primary-color: #fff;
  --text-second-color: #666;
  --text-dark-color: #333;
  --text-disable-color: #999;
  --text-link-color: #005eb8;
  --text-error-color: #ef3340;
  --primary-color: #005fb8;
  --red-color: #ef3340;
  --red-2-color: #cc2c37;
  --black-color: #000000;
  --gray-color: #7f7f7f;
  --gray-2-color: #d2d2d2;
  --gray-3-color: #e6e6e6;
  --gray-4-color: #666666;
  --gray-5-color: #60656f;
  --gray-6-color: #aaaaaa;
  --blue-active-color: #194e8d;
  --blue-second-color: #f5f9fc;
  --blue-second-2-color: #f8f8fc;
  --blue-2-color: #004f99;
  --blue-3-color: #f0f6fa;
  --divider-color: #e3eef1;
  --divider-2-color: #c2cee0;
  --border-box-color: #d2d8d9;
  --background-color: #fff;
  --background-primary-color: #edeef7;
  --background-transparent-03: rgba(0, 0, 0, 0.3);
  --btn-primary-color: #005fb8;
  --btn-second-color: #fff;
  --btn-hover-color: #3a72b6;
  --btn-primary-hover-color: #f5f9fc;
  --btn-active-color: #194e8d;
  --btn-primary-active-color: #e0ebf7;
  --btn-disable-color: #bbbbbb;
  --btn-outline-border-color: #e0e0e0;
  --accent-1: #f5f5f5;
  --accent-2: #dddddd;
  --accent-3: #aaaaaa;
  --accent-4: #898989;
  --accent-5: #999999;
  --accent-6: #f2f2f2;
  --accent-7: #cccccc;
  --text-normal-font-size: 12px;
  --text-medium-font-size: 14px;
  --text-large-font-size: 16px;
  --font-family: "Roboto";
  --btn-border-radius: 3px;
  --box-border-radius: 2px;
  --box-border-radius-3: 3px;
  --box-border-radius-5: 5px;
  --table-header-bg-color: #f0f6fa;
  --table-header-border-color: #c0daf0;
  --table-body-border-color: #e3eef1;
  --animate-duration: 800ms;
}
html div#Antsomi-content-cdp-media-fzn588v0 *,
html div#Antsomi-content-cdp-media-fzn588v0 ::before,
html div#Antsomi-content-cdp-media-fzn588v0 ::after {
  box-sizing: border-box;
  border-width: 0px;
  border-style: solid;
  border-color: currentcolor;
}
html div#Antsomi-content-cdp-media-fzn588v0 ::before,
html div#Antsomi-content-cdp-media-fzn588v0 ::after {
  --tw-content: "";
}
html div#Antsomi-content-cdp-media-fzn588v0 abbr:where([title]) {
  text-decoration: underline dotted;
}
html div#Antsomi-content-cdp-media-fzn588v0 a {
  color: inherit;
  text-decoration: inherit;
}
html div#Antsomi-content-cdp-media-fzn588v0 strong {
  font-weight: bold;
}
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-inner-spin-button,
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-outer-spin-button {
  height: auto;
}
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-search-decoration {
  appearance: none;
}
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}
html div#Antsomi-content-cdp-media-fzn588v0 p {
  margin: 0px;
}
html div#Antsomi-content-cdp-media-fzn588v0 :disabled {
  cursor: default;
}
html div#Antsomi-content-cdp-media-fzn588v0 img {
  display: block;
  vertical-align: middle;
}
html div#Antsomi-content-cdp-media-fzn588v0 img {
  max-width: 100%;
  height: auto;
}
html div#Antsomi-content-cdp-media-fzn588v0 *,
html div#Antsomi-content-cdp-media-fzn588v0 ::before,
html div#Antsomi-content-cdp-media-fzn588v0 ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
html div#Antsomi-content-cdp-media-fzn588v0 img {
  user-select: none;
}
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-scrollbar-track {
  background: var(--accent-6);
}
html div#Antsomi-content-cdp-media-fzn588v0 ::-webkit-scrollbar-thumb {
  background: var(--accent-7);
}
html div#Antsomi-content-cdp-media-fzn588v0 .fr-element.fr-view {
  cursor: text;
}
html div#Antsomi-content-cdp-media-fzn588v0 .fr-box .fr-wrapper .fr-element * {
  word-break: break-word;
}
.ants-h-full {
  height: 100%;
}
.ants-w-full {
  width: 100%;
}
.ants-justify-between {
  justify-content: space-between;
}
.\!ants-border-none {
  border-style: none !important;
}
:is(.row__block).cq_1b9e94a64edf43e8f7f2ca9a28795066 {
  flex-wrap: wrap !important;
}
:is(.column__block).cq_1b9e94a64edf43e8f7f2ca9a28795066 {
  width: 50% !important;
}
:is(
  .column__block[data-columnslength="1"]
).cq_1b9e94a64edf43e8f7f2ca9a28795066 {
  width: 100% !important;
}
:is(.row__block).cq_b13e5ecab32ea9763c50649e518b31 {
  flex-wrap: wrap !important;
}
:is(.column__block).cq_b13e5ecab32ea9763c50649e518b31 {
  width: 100% !important;
}
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
.kYUYrk {
  min-height: 0px;
  padding: 0px;
}
.kYUYrk p {
  line-height: 1;
}
.eswibD {
  position: relative;
  display: flex;
  z-index: 0;
  overflow: auto;
}
.jpXGZZ {
  position: relative;
  height: max-content;
}
.dUbqUn {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.upwxK {
  position: relative;
  width: 100%;
  height: 100%;
}
.upwxK.--invisible {
  box-shadow: unset !important;
  outline: none !important;
}
.upwxK.--outside {
  min-height: 10px;
}
.iTLRHS {
  transition:
    0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color;
}
.gaxZEw a {
  color: inherit;
}
.jYmMKK {
  position: relative;
  overflow: hidden;
}
.cdyzSr {
  position: relative;
  height: 100%;
}
.bNHUeU {
  cursor: pointer;
  height: 100%;
  padding: 0px;
}
.fBIvFK {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}
.jOeeZm {
  height: auto !important;
  min-width: 0px !important;
}
.jOeeZm:hover {
  z-index: unset !important;
}
.dlzYRr {
  height: auto;
}
.iROWiw {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media only screen and (max-width: 640px) {
  #mt-77785-1f6gcrwjl9-usv0nnvy4k .content-i4n45e1s0a2cgjytxmxj > .row__block {
    flex-wrap: wrap !important;
  }
  #mt-77785-1f6gcrwjl9-usv0nnvy4k
    .content-i4n45e1s0a2cgjytxmxj
    > .row__block
    .column__block {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .fb-comment__btn {
    font-size: 10px !important;
  }
}
.fb-comment__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0px;
  border-bottom: 1px solid rgb(233, 235, 238);
  align-items: center;
}
.fb-comment__container {
  margin: 20px 0px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
.fb-comment__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0px;
  border-bottom: 1px solid rgb(233, 235, 238);
}
.fb-comment__colvo {
  font-weight: 600;
  font-size: 14px;
  color: rgb(75, 79, 86);
}
.fb-comment__sort_title {
  color: rgb(75, 79, 86);
  font-size: 14px;
}
.fb-comment__sort_by {
  background-color: rgb(245, 246, 247);
  color: rgb(75, 79, 86);
  line-height: 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 4px;
  border-radius: 2px;
  border: 1px solid rgb(204, 208, 213);
  appearance: unset !important;
}
.fb-comment__form-block {
  display: flex;
  gap: 10px;
  margin: 15px 0px;
}
.fb-comment__form-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}
.fb-comment__form {
  border: 1px solid rgb(211, 214, 219);
  flex-grow: 1;
}
.fb-comment__add-comment {
  min-height: 40px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  cursor: text;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  resize: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  outline: none;
}
.fb-comment__add-comment:focus {
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
}
.fb-comment__form-post {
  border-top: 1px solid rgb(211, 214, 219);
  background: rgb(245, 246, 247);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.fb-comment__also {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fb-comment__also-text {
  font-size: 11px;
  color: rgb(144, 148, 156);
}
.fb-comment__btn {
  background-color: rgb(156, 180, 216);
  cursor: not-allowed;
  color: rgb(255, 255, 255);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 2px;
  flex-shrink: 0;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
}
.fb-comment__body {
  margin-top: 20px;
}
.fb-comment__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0px;
}
.fb-comment__comment-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fb-comment__comment {
  display: flex;
  gap: 15px;
}
.fb-comment__person-photo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}
.fb-comment__comment-content {
  flex-direction: column;
}
.fb-comment__name {
  font-weight: 600;
  color: rgb(54, 88, 153);
  font-size: 14px;
  line-height: 1.4;
}
.fb-comment__text {
  font-size: 14px;
  color: rgb(75, 79, 86);
  margin: 4px 0px 8px !important;
}
.fb-comment__meta {
  display: flex;
  gap: 6px;
  align-items: center;
}
.fb-comment__like {
  color: rgb(66, 103, 178);
  font-size: 12px;
  cursor: pointer;
}
.fb-comment__reply {
  color: rgb(66, 103, 178);
  font-size: 12px;
  cursor: pointer;
}
.fb-comment__like-colvo {
  font-size: 12px;
  color: rgb(144, 148, 156);
  display: flex;
  gap: 3px;
}
.fb-comment__date {
  font-size: 12px;
  color: rgb(144, 148, 156);
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOejbdhzrA.woff2")
    format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  overflow-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.fa-star::before {
  content: "";
}
.fa-times::before {
  content: "";
}
.fa-sr-only-focusable:not(:focus),
.sr-only,
.sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  white-space: nowrap;
  border-width: 0px;
}
@media only screen and (max-width: 767px) {
  .nav > li > a.login {
    margin-right: 0px;
    padding: 3px 7px;
  }
  .med-rec {
    width: 100%;
    height: auto;
  }
  #tsolnavbar {
    display: none;
  }
  ul.social-branding {
    display: none;
  }
  .navbar-toggle {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  ul.navbar-nav {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .navbar-brand.brand-prime {
    display: none;
  }
  .navbar-brand.brand-mobile {
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -12px;
    text-align: center;
    margin: 0px auto;
  }
  .topics {
    margin-top: 2px;
  }
  #page-header .navbar-right {
    float: right;
  }
  #page-header .navbar-right li {
    display: inline-block;
  }
  #page-header .navbar-right {
    float: none;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .story-set {
    margin-bottom: 0px;
  }
  .tab-content > .tab-pane,
  .tab-content > .tab-pane.active {
    margin-bottom: 0px;
  }
  .in-sec-story h2 {
    font-size: 1em;
  }
  .trending ul.trend-list p.trend-list-num {
    font-size: 1.813em;
  }
  .trending p {
    font-size: 0.95em;
  }
  .trending ul.trend-list {
    height: auto;
  }
  .trending ul.trend-list li:nth-child(2) {
    padding: 0px;
  }
  .market-trans .linedlist:nth-child(10),
  .market-trans .linedlist:nth-child(6),
  .market-trans .linedlist:nth-child(7),
  .market-trans .linedlist:nth-child(8),
  .market-trans .linedlist:nth-child(9) {
    display: none;
  }
  .tab-panel-2 .nav-pills > li.active > a {
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
  }
  .tab-panel-2 .nav-pills > li {
    text-align: left;
  }
}
