/* J-BAST MASTER HTML5 RESETATRON */
/* HTML5 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, div, span {
  display: block;
  position: relative;
}

span {
  display: inline-block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

/* BASE */
html {
  font-size: 70%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #aad0d9;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #aad0d9;
  color: #fff;
  text-shadow: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-size: 1.6em;
  padding: 0px;
  margin: 0px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 0.7em 40px;
  font-style: italic;
  color: #999;
  font-size: 14px;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  clear: left;
}

ins {
  background: #e8ebb7;
  color: #000;
  text-decoration: none;
}

mark {
  background: #e8ebb7;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

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

small {
  font-size: 75%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  position: relative;
}

li {
  list-style: none;
}

dd {
  margin: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  font-size: 150%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid #CCC;
  color: #999;
}

button, input {
  line-height: normal;
  padding: 4px 6px;
  margin: 0;
}

button, input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
  color: #666;
  font-size: 130%;
  border: 1px solid #ADADAD;
}

button[disabled], input[disabled] {
  cursor: default;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:invalid, textarea:invalid {
  background-color: #f0dddd;
}

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

td {
  vertical-align: top;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
/* non-semantic helper classes */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* print styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}
::-moz-selection, ::selection {
  background: #222;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: aliased;
  font-size: 63%;
}

div {
  box-sizing: border-box;
}

* {
  outline: 0 !important;
}

a {
  color: #222;
}
a:visited, a:hover {
  color: #121212;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
a, a:hover {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #0067ee;
}

:-moz-placeholder {
  color: #0067ee;
}

::-moz-placeholder {
  color: #0067ee;
}

:-ms-input-placeholder {
  color: #0067ee;
}

.reset {
  all: unset;
}

body {
  font-size: 4em;
  font-family: "Inter", sans-serif;
  color: #121212;
  background: #fff;
  font-weight: 400;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}

.smart-view-case {
  width: 100%;
  height: auto;
}

#nav-back {
  display: inline-block;
  height: 36px;
  font-size: 2rem;
  margin-right: 2px;
  padding: 0 0 0 4px;
  vertical-align: top;
}
#nav-back img {
  width: 14px;
  position: relative;
  vertical-align: middle;
}

h1, h2, h3, h4 {
  font-weight: 700;
  font-weight: normal;
}

#lobby h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  padding: 0 0 4px;
  display: block;
  margin-top: 8px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}
#lobby h1 a {
  color: #333 !important;
}
#lobby h2 {
  font-size: 2.8rem;
  padding: 0;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0;
  line-height: 3.2rem;
  margin-bottom: 6px;
  text-transform: capitalize;
}
#lobby h2 a {
  color: #333;
}
#lobby .race-nav {
  margin-bottom: 20px;
}
#lobby .top-bar {
  padding: 14px 26px;
}

#racecard h1 {
  font-size: 5.2rem;
  line-height: 5.2rem;
  padding: 0 0 4px;
  display: block;
  margin-top: 8px;
  font-family: "Fira Sans Condensed", sans-serif;
}
#racecard h1 a {
  color: #fff !important;
}
#racecard h1 a.selected {
  color: #182C61;
}
#racecard h1 strong {
  color: #50CECE;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
}
#racecard h2 {
  font-size: 2.8rem;
  padding: 0;
  font-weight: 600;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  line-height: 3.2rem;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-family: "Fira Sans Condensed", sans-serif;
}
#racing #racecard h2 {
  color: #0067ee;
  line-height: 3.4rem;
}
#racecard h2 a {
  color: #333;
}

h3 {
  font-size: 1.6rem;
  color: #182C61;
}
h3.subtitle {
  padding: 12px 0 8px;
  margin-top: 6px;
  text-align: left;
  font-weight: 600;
}
h3.center {
  text-align: center;
}

p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin: 0;
  width: 90%;
  max-width: 700px;
}
p strong {
  font-weight: bold;
}

ul, li {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

strong, b {
  font-weight: 700;
}

hr.xsmall-spacer {
  border: 0;
  height: 12px;
}
hr.small-spacer {
  border: 0;
  height: 20px;
}

.lobby {
  padding: 0 20px 18px;
}

#lobby .svlogo {
  width: 100%;
  max-width: 300px;
}

.row {
  height: auto;
}
.row .inner {
  width: 100%;
  margin: 0px auto;
  max-width: 860px;
  background: #fff;
  padding: 0 0 32px;
  font-size: 0;
}
.row .inner.nopadd {
  padding: 0;
}

.race-nav {
  margin-bottom: 0;
  width: 100%;
  background: #D8E3E8;
  font-family: "Fira Sans Condensed", sans-serif;
  overflow: hidden;
}
.race-nav span {
  display: inline-block;
  border-bottom: 0px solid transparent;
  margin: 0;
}
.race-nav span a {
  padding: 9px;
  width: auto;
  margin: 0;
  text-align: center;
  font-size: 2rem;
  display: inline-block;
}
.race-nav span.active {
  border-bottom-color: transparent;
  font-weight: 500;
  background: #182C61;
}
.race-nav span.active a {
  color: #50CECE;
}
.race-nav span.racerun a {
  color: #999 !important;
  cursor: default !important;
}
#lobby .race-nav {
  border-radius: 12px;
}

.top-bar {
  padding: 24px 26px 14px;
  background: #182C61;
  color: #fff;
}
.top-bar .badges {
  position: absolute;
  top: 34px;
  right: 20px;
  width: clamp(80px, 30%, 150px);
}

.race-info {
  font-family: "Fira Sans Condensed", sans-serif;
  background: #D8E3E8;
  border: 0px solid #e5e5e5;
  padding: 16px 26px;
  line-height: 24px;
}
.race-info strong {
  font-weight: 600;
}
.race-info p {
  margin-bottom: 14px;
  width: 80%;
}
.race-info .logos {
  display: flex;
  align-items: middle;
  justify-content: space-between;
}
.race-info .logos .svlogo, .race-info .logos .stadium {
  height: 60px;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: top;
}
.race-info .logos .svlogo {
  height: 64px;
  margin-top: 10px;
}

#tips #ntips {
  font-weight: 600;
  background: #eee;
}

#news #nnews {
  font-weight: 600;
  background: #eee;
}

#giveaway #ngiveaway {
  font-weight: 600;
  background: #eee;
}

#racebyrace #nracebyrace {
  font-weight: 600;
  background: #eee;
}

#offers #noffers {
  font-weight: 600;
  background: #eee;
}

#tips #ftips a {
  color: #222;
}

#news #fnews a {
  color: #222;
}

#giveaway #fgiveaway a {
  color: #222;
}

#racebyrace #fracebyrace a {
  color: #222;
}

#offers #foffers a {
  color: #222;
}

.pill {
  display: block;
  margin: 0;
  color: #121212;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 12px 12px;
  border-radius: 4px;
  text-align: center;
  line-height: 2.2rem;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}
.pill:after {
  height: 12px;
  width: 17px;
  content: "";
  display: block;
  filter: none;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-outline-black.svg);
  background-repeat: no-repeat;
}
.pill.btt {
  margin-bottom: 20px;
}
.pill.btt:after {
  background: none;
}
.pill.skyblue {
  background: #222;
  color: #fff;
  border-color: #182C61;
}

.runners {
  margin-top: 20px;
}

.easyview-card {
  font-size: 14px;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  display: flex;
  margin: 0 20px 18px;
  border-radius: 12px;
  padding: 12px 16px;
  background: #D8E3E8;
  text-align: left;
}
.easyview-card .details, .easyview-card .statistics {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.easyview-card .details {
  border-bottom: 0px solid #e5e5e5;
  padding-bottom: 6px;
}
.easyview-card .details .silk {
  min-width: 60px;
  max-width: 90px;
}
.easyview-card .details .silk img, .easyview-card .details .silk svg {
  width: 100%;
  margin-top: 3px;
}
.easyview-card .details .names {
  flex: 2.4;
  color: #666;
}
.easyview-card .details .names em {
  color: #666;
  font-size: 2.4rem;
  font-style: normal;
  text-align: center;
  width: 30px;
  letter-spacing: -2px;
}
.easyview-card .details .names h4 {
  margin-bottom: 0;
  letter-spacing: -0.5px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3.6rem;
  line-height: 3.7rem;
  font-weight: 400;
}
.easyview-card .details .names h4, .easyview-card .details .names strong {
  color: #121212;
}
.easyview-card .details .names strong {
  margin-bottom: 1px;
  display: inline-block;
  font-weight: 500;
}
.easyview-card .details .names h4 em {
  font-size: inherit;
  font-weight: 400;
  margin-right: 8px;
}
.easyview-card .details .price {
  flex: 1.1;
  text-align: right;
}
.easyview-card .details .price a {
  font-size: 2.8rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  display: block !important;
  background-color: #e6f0f5;
  padding: 10px 0;
  border: 1px solid #33333311;
}
.easyview-card .statistics {
  align-items: start;
  padding-top: 12px;
}
.easyview-card .statistics .bars-left, .easyview-card .statistics .bars-right {
  flex: 1;
}
.easyview-card .statistics .bars-left strong, .easyview-card .statistics .bars-right strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 400;
}
.easyview-card .statistics .rating {
  flex: 0.75;
  text-align: center;
}
.easyview-card .statistics .rating strong {
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.5px;
}
.easyview-card .statistics .rating strong u {
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.easyview-card .statistics .rating a {
  background: #789eaf;
  font-size: 2.4rem;
  display: block;
  color: #fff;
  letter-spacing: 0px;
  margin-top: 2px;
  padding: 5px 0;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 6px;
  font-weight: 400;
  border: 1px solid #33333333;
  text-shadow: 0 1px 4px #33333355;
}
.easyview-card .statistics .rating a.high {
  background: #43BD35;
}
.easyview-card .statistics .rating .form-string {
  display: flex;
  text-align: center;
  margin-top: 2px;
  gap: 2px;
}
.easyview-card .statistics .rating .form-string span {
  flex: 1;
  margin-bottom: 4px;
  background: #fff;
  text-align: center;
  width: auto;
  padding: 3px 0px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1.2rem;
  border: 1px solid #33333322;
}
.easyview-card .bar {
  height: 14px;
  width: 100%;
  display: block;
  margin: 0 0 6px;
  background: #fff;
  z-index: 0;
  border-radius: 3px;
  overflow: hidden;
}
.easyview-card .bar .bar-inner {
  height: 14px;
  background: #000;
  z-index: 1;
}
.easyview-card .bar .bar-inner.red {
  background: #FF0000;
}
.easyview-card .bar .bar-inner.orange {
  background: #FAA627;
}
.easyview-card .bar .bar-inner.lightgreen {
  background: #43BD35;
}
.easyview-card .bar .bar-inner.green {
  background: #578319;
}
.easyview-card .bar:last-of-type {
  margin-bottom: 0;
}
.easyview-card .bar span {
  width: 1px;
  height: 14px;
  background: #eee;
  position: absolute;
  top: 0;
  z-index: 2;
}
.easyview-card .bar span:nth-of-type(1) {
  left: calc(10% - 1px);
}
.easyview-card .bar span:nth-of-type(2) {
  left: calc(20% - 1px);
}
.easyview-card .bar span:nth-of-type(3) {
  left: calc(30% - 1px);
}
.easyview-card .bar span:nth-of-type(4) {
  left: calc(40% - 1px);
}
.easyview-card .bar span:nth-of-type(5) {
  left: calc(50% - 1px);
}
.easyview-card .bar span:nth-of-type(6) {
  left: calc(60% - 1px);
}
.easyview-card .bar span:nth-of-type(7) {
  left: calc(70% - 1px);
}
.easyview-card .bar span:nth-of-type(8) {
  left: calc(80% - 1px);
}
.easyview-card .bar span:nth-of-type(9) {
  left: calc(90% - 1px);
}
.easyview-card.non-runner {
  filter: grayscale(1);
  opacity: 0.7;
}
.easyview-card.non-runner .details .price a {
  margin-top: 0;
}

.passbetslip {
  cursor: pointer;
}
.passbetslip[data-status=added] {
  color: transparent !important;
  background: #fff url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTUuMC4yLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgd2lkdGg9IjExLjVweCIgaGVpZ2h0PSI5LjgwOHB4IiB2aWV3Qm94PSIwIDAgMTEuNSA5LjgwOCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTEuNSA5LjgwODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8ZyBpZD0iU2hhcGVfMV9jb3B5XzRfMV8iIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgICAgOyI+Cgk8ZyBpZD0iU2hhcGVfMV9jb3B5XzQiPgoJCTxnPgoJCQk8cGF0aCBzdHlsZT0iZmlsbDojMzMzMzMzOyIgZD0iTTExLjE0NywxLjY1M2MtMC40NzMtMC40NzktMS4yMzItMC40NzktMS43MDIsMGwtNS4xMTcsNS4yMUwyLjA4LDQuODE3CgkJCQljLTAuNDctMC40NzktMS4yMjktMC40NzktMS43MDIsMGMtMC40NywwLjQ3OS0wLjQ3LDEuMjU0LDAsMS43MzJsMy4wOTQsMi45MDNjMC4yMzYsMC4yNDQsMC41NTQsMC4zNiwwLjg2NCwwLjM1NgoJCQkJQzQuNjQ3LDkuODA5LDQuOTU2LDkuNjksNS4xOTEsOS40NWw1Ljk1Ny02LjA2NUMxMS42MTgsMi45MDcsMTEuNjE4LDIuMTMyLDExLjE0NywxLjY1M3oiLz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==") center no-repeat;
  background-size: 12px;
}

@media only screen and (max-width: 640px) {
  .top-bar {
    padding: 24px 20px 14px;
  }
  .top-bar .badges {
    top: 15px;
    right: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .race-nav span a {
    padding: 8px 6px;
  }

  h1 {
    font-size: 3.6rem;
  }
  h1 strong {
    letter-spacing: 2px;
  }

  h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  p {
    font-size: 1.4rem;
    line-height: 2rem;
    width: 95%;
  }

  .top-bar {
    padding: 24px 16px 14px;
  }
  .top-bar .badges {
    top: 20px;
  }

  .race-info {
    padding-left: 14px;
    padding-right: 14px;
  }
  .race-info p {
    width: 100%;
  }

  .easyview-card {
    margin: 0 10px 18px;
    font-size: 13px;
  }
  .easyview-card .details {
    align-items: start;
  }
  .easyview-card .details .silk {
    max-width: 60px;
    min-width: 40px;
  }
  .easyview-card .details .names {
    line-height: 1.5rem;
  }
  .easyview-card .details .names h4 {
    font-size: 2.2rem;
    line-height: 3.1rem;
    margin-bottom: 0;
  }
  .easyview-card .statistics .rating strong {
    line-height: 1.4rem;
  }
  .easyview-card .statistics .rating a {
    padding: 0;
  }
  .easyview-card .statistics .rating .form-string {
    gap: 1px;
  }
  .easyview-card .details, .easyview-card .statistics {
    gap: 12px;
  }
  .easyview-card .bar {
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 430px) {
  .race-nav span a {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.8rem;
    width: 100%;
  }

  #racecard h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
  #racecard h2 {
    font-size: 2.3rem;
  }

  .top-bar {
    padding-top: 18px;
  }

  #nav-back img {
    margin-top: 0;
    width: 10px;
  }

  p {
    width: 100%;
  }

  .easyview-card {
    font-size: 12px;
  }
  .easyview-card .details {
    gap: 4px;
  }
  .easyview-card .details .silk {
    max-width: 50px;
  }
  .easyview-card .bar {
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=aesthetics.css.map */
